diff --git a/README b/README index d47f76f..5173aed 100644 --- a/README +++ b/README @@ -52,16 +52,11 @@ For source installation follow these steps: Install the program: python setup.by install -The installed files can be found in your local python installation directory. +The installed pyhton modules can be found in your local python installation directory. The default location should be: - /usr/lib/python2.4/site-packages/cryptobox - -Adapt the directories given in /etc/cryptobox-server/cryptobox.conf to your -local installation. The paths below /usr/share should be below your python -directoy instead (see above) - sorry for this inconvenience! - -The CryptoBox webserver daemon that is given in /etc/init.d/cryptobox-server -may have to be changed to /usr/bin instead of /usr/sbin. + /usr/lib/python2.4/site-packages/cryptobox/ +The data files are (by default) installed to: + /usr/share/cryptobox-server/ As some actions of the cryptobox require root privileges, you have to add the following line to /etc/super.tab: diff --git a/README.proxy b/README.proxy index d71c420..eed29e8 100644 --- a/README.proxy +++ b/README.proxy @@ -32,9 +32,11 @@ forwarding requests to the cherrypy server of the CryptoBox. ProxyPass http://localhost:8080/ ProxyPassReverse http://localhost:8080/ RequestHeader set CryptoBox-Location /cryptobox + # uncomment the next line for ssl-enabled virtualhosts + RequestHeader set X-SSL-Request 1 - - Now you should to a restart of apache2. + + Now you should restart apache2. 3) Testing diff --git a/README.ssl b/README.ssl index 341560e..0176978 100644 --- a/README.ssl +++ b/README.ssl @@ -14,8 +14,9 @@ There are two ways for setting up a SSL connection: ssl encryption. The CryptoBox webserver cannot detect whether the connection is encrypted - or not since it is behind the proxy webserver. Thus you have to tell the - CryptoBox whether the connection is encrypted or not. + or not since it is behind the proxy webserver and does not share its + environment. Thus you have to tell the CryptoBox in the request header + whether the connection is encrypted or not. for apache2: 1) enable the 'headers' module (for debian: "a2enmod headers") @@ -49,7 +50,7 @@ There are two ways for setting up a SSL connection: If the CryptoBox continues to complain about the unencrypted connection, even if it runs behind an ssl-enabled webserver or behind stunnel, then you can do one of the following things: - - set the request header value "X-SSL-Request" to "1" (one) + - set the request header value "X-SSL-Request" to "1" (the digit 'one') - set the environment setting "HTTPS" to a non-empty value during the startup of the CryptoBox webserver. Maybe /etc/default/cryptobox-server would be the right place for this. diff --git a/bin-perl-old/Makefile b/bin-perl-old/Makefile deleted file mode 100644 index 6023795..0000000 --- a/bin-perl-old/Makefile +++ /dev/null @@ -1,37 +0,0 @@ -# Makefile to compile the binary suid-wrapper for cryptobox -# -# LIB_DIR should be defined in the higher level Makefile -# - -HEADER_FILE = cryptobox_wrapper.h -SRC_FILE = cryptobox_wrapper.c -CGI_SUID_FILE = cryptobox_cgi_wrapper -ROOT_SUID_FILE = cryptobox_root_wrapper - -CGI_FILENAME = cryptobox.pl -ROOT_SCRIPT_FILENAME = cbox-root-actions.sh -# fall back to default, if not overwritten -LIB_DIR = /usr/local/lib/cryptobox - - -# _always_ recompile (in case of a changed LIB_DIR) -.PHONY: build clean $(CGI_SUID_FILE) $(ROOT_SUID_FILE) - -build: $(CGI_SUID_FILE) $(ROOT_SUID_FILE) - - -$(CGI_SUID_FILE): $(SRC_FILE) - @echo '#define EXEC_PATH "$(LIB_DIR)/$(CGI_FILENAME)"' >$(HEADER_FILE) - $(CC) -o $(CGI_SUID_FILE) $(SRC_FILE) - -rm $(HEADER_FILE) - - -$(ROOT_SUID_FILE): $(SRC_FILE) - @echo '#define EXEC_PATH "$(LIB_DIR)/$(ROOT_SCRIPT_FILENAME)"' >$(HEADER_FILE) - $(CC) -o $(ROOT_SUID_FILE) $(SRC_FILE) - -rm $(HEADER_FILE) - - -clean: - -rm -f $(CGI_SUID_FILE) $(ROOT_SUID_FILE) $(HEADER_FILE) - diff --git a/bin-perl-old/cbox-manage.sh b/bin-perl-old/cbox-manage.sh deleted file mode 100755 index 30a82a6..0000000 --- a/bin-perl-old/cbox-manage.sh +++ /dev/null @@ -1,474 +0,0 @@ -#!/bin/sh -# -# Copyright (c) 02005 sense.lab -# -# License: This script is distributed under the terms of version 2 -# of the GNU GPL. See the LICENSE file included with the package. -# -# $Id$ -# -# this script does EVERYTHING -# all other scripts are only frontends :) -# -# called by: -# - some rc-scripts -# - the web frontend cgi -# - -# TODO: check permissions and owners of config files, directories and scripts before -# running cbox-root-actions.sh - -set -eu - - -# default location of config file -CONF_FILE=/etc/cryptobox/cryptobox.conf - -LIB_DIR=$(dirname "$0") - -# to determine a nice default partition name -DEVICE_NAME_PREFIX="Disk #" - -# read the default setting file, if it exists -test -e /etc/default/cryptobox && . /etc/default/cryptobox - -test ! -e "$CONF_FILE" && echo "Could not find the configuration file: $CONF_FILE" >&2 && exit 1 - -# parse config file -. "$CONF_FILE" - -test ! -e "$CONF_FILE" && echo "Could not find the distribution specific configuration file: $CONF_FILE" >&2 && exit 1 - -# parse the distribution specific file -. "$DISTRIBUTION_CONF" - -# check for writable log file -test -w "$LOG_FILE" || LOG_FILE=/tmp/$(basename "$LOG_FILE") - -# retrieve configuration directory -CONFIG_DIR="$(getent passwd $CRYPTOBOX_USER | cut -d ':' -f 6)/config" -CONFIG_MARKER=cryptobox.marker - -## configuration -ROOT_PERM_SCRIPT="$LIB_DIR/cryptobox_root_wrapper" -# ROOT_PERM_SCRIPT needs the MNT_PARENT setting -export MNT_PARENT="$(cd ~; pwd)/mnt" - -######## stuff ########## - -# all partitions with a trailing number -ALL_PARTITIONS=$(cat /proc/partitions | sed '1,2d; s/ */ /g; s/^ *//' | cut -d " " -f 4 | grep '[0-9]$') - -######################### - -function log_msg() -{ - # the log file is (maybe) not writable during boot - try - # before writing ... - test -w "$LOG_FILE" || return 0 - echo >>"$LOG_FILE" - echo "##### `date` #####" >>"$LOG_FILE" - echo "$1" >>"$LOG_FILE" -} - - -function error_msg() -# parameters: ExitCode ErrorMessage -{ - local all=$@ - test $# -ne 2 && error_msg 1 "*** invalid call of error_msg *** $all" - echo "[`date`] - $2" | tee -a "$LOG_FILE" >&2 - # print the execution stack - not usable with busybox - # caller | sed 's/^/\t/' >&2 - exit "$1" -} - - -# Parameter: device -function is_device_allowed() { - # check for invalid characters and exit if one is found - local device=$(echo "$1" | sed 's#[^a-zA-Z0-9_\-\./]##g') - test "$1" = "$device" || return 1 - # remove leading "/dev/" - device=$(echo "$device" | sed 's#^/dev/##') - # return for empty name - test -z "$device" && return 1 - for a in $ALL_PARTITIONS - do echo "$device" | grep -q "^$a.*" && return 0 - done - # no matching device found - exit with error - return 1 -} - -function config_set_value() -# parameters: SettingName [SettingValue] -# read from stdin if SettingValue is not defined -{ - if test $# -gt 1 - then echo "$2" > "$CONFIG_DIR/$1" - else cat - >"$CONFIG_DIR/$1" - fi -} - - -function config_get_value() -# parameters: SettingName -{ - # use mounted config, if it exists - otherwise use defaults - local conf_dir - test -z "$1" && error_msg 1 "empty setting name" - # check for existence - maybe use default values (even for old - # releases that did not contain this setting) - if test -e "$CONFIG_DIR/$1" - then cat "$CONFIG_DIR/$1" - elif test -e "$CONFIG_DEFAULTS_DIR/$1" - then cat "$CONFIG_DEFAULTS_DIR/$1" - else case "$1" in - # you may place default values for older versions here - # for compatibility - * ) - error_msg 2 "unknown configuration value ($1)" - ;; - esac - fi - return 0 -} - - -function list_partitions_of_type() -# parameter: { config | crypto | plaindata | unused } -{ - local config= - local crypto= - local plaindata= - local unused= - for a in $ALL_PARTITIONS - do if "$ROOT_PERM_SCRIPT" is_crypto_partition "/dev/$a" - then crypto="$crypto /dev/$a" - elif "$ROOT_PERM_SCRIPT" is_config_partition "/dev/$a" - then config="$config /dev/$a" - elif "$ROOT_PERM_SCRIPT" is_plaindata_partition "/dev/$a" - then plaindata="$plaindata /dev/$a" - else unused="$unused /dev/$a" - fi - done - case "$1" in - config ) - echo "$config" - ;; - crypto ) - echo "$crypto" - ;; - plaindata ) - echo "$plaindata" - ;; - unused ) - echo "$unused" - ;; - * ) - error_msg 11 "wrong parameter ($1) for list_partition_types in $(basename $0)" - ;; - esac | tr " " "\n" | grep -v '^$' - return 0 -} - - -# Parameter: DEVICE -function get_device_mnt_name() { - "$ROOT_PERM_SCRIPT" get_device_mnt_name "$1" -} - - -# Parameter: DEVICE -function get_device_uuid() { - "$ROOT_PERM_SCRIPT" get_device_uuid "$1" -} - - -# Parameter: DEVICE -# return the readable name of the crypto container, if it is already defined -# if undefined - return the uuid -function get_device_name() { - local uuid=$(get_device_uuid "$1") - local dbname=$(config_get_value "names.db" | grep "^$uuid:" | cut -d ":" -f 2-) - # return dbname if it exists - test -n "$dbname" && echo "$dbname" && return 0 - # find a nice name for the new partition - local counter=1 - local test_name - local test_uuid - local test_result - # try to find a name with the defined "prefix" followed by a number ... - while true - do test_name="$DEVICE_NAME_PREFIX$counter" - if config_get_value "names.db" | grep -q ":$test_name$" - then counter=$((counter+1)) - else # save it for next time - set_device_name "$1" "$test_name" - echo "$test_name" - return 0 - fi - done -} - - -function set_device_name() -# TODO: the implementation is quite ugly, but it works (tm) -# Parameter: DEVICE NAME -{ - local uuid=$(get_device_uuid "$1") - # remove the old setting for this device and every possible entry with the same name - local new_config=$(config_get_value 'names.db' | sed "/^$uuid:/d; /^[^:]*:$2$/d"; echo "$uuid:$2") - echo "$new_config" | config_set_value "names.db" -} - - -function does_crypto_name_exist() -# Parameter: NAME -{ - config_get_value 'names.db' | grep -q "^[^:]*:$1$" -} - - -function create_crypto() -# Parameter: DEVICE NAME KEYFILE -# keyfile is necessary, to allow background execution via 'at' -{ - local device=$1 - local name=$2 - local keyfile=$3 - # otherwise the web interface will hang - # passphrase may be passed via command line - local key=$(<"$keyfile") - # remove the passphrase-file as soon as possible - dd if=/dev/zero of="$keyfile" bs=512 count=1 2>/dev/null - rm "$keyfile" - - log_msg "Creating crypto partition with the cipher $DEFAULT_CIPHER on $device" - echo "$key" | "$ROOT_PERM_SCRIPT" create_crypto "$device" - - set_crypto_name "$device" "$name" -} - - -function is_config_active() { - test -f "$CONFIG_DIR/$CONFIG_MARKER" -} - - -# Parameter: DEVICE -function is_mounted() { - local name=$(get_device_mnt_name "$1") - test -n "$name" && mountpoint -q "$MNT_PARENT/$name" -} - - -# Parameter: DEVICE -function is_plain() { - "$ROOT_PERM_SCRIPT" is_plain_partition "$1" -} - - -# Parameter: DEVICE -function is_encrypted() { - "$ROOT_PERM_SCRIPT" is_crypto_partition "$1" -} - - -# list which allowed disks are at the moment connected with the cbox -function get_available_disks() { - for scan in $SCAN_DEVICES - do for avail in $ALL_PARTITIONS - do echo "$avail" | grep -q "^$scan[^/]*" && echo "/dev/$avail" - done - done - return 0 -} - - -# Parameter: DEVICE -function mount_crypto() { - local device=$1 - test -z "$device" && error_msg 4 'No valid harddisk found!' - is_mounted "$device" && echo "The crypto filesystem is already active!" && return - # passphrase is read from stdin - log_msg "Mounting a crypto partition from $device" - "$ROOT_PERM_SCRIPT" mount "$device" >>"$LOG_FILE" 2>&1 -} - - -function umount_partition() { -# Parameter: device - local container=$(get_device_name "$1") - "$ROOT_PERM_SCRIPT" umount "$1" -} - - -function box_purge() -# removing just the first bytes from the harddisk should be enough -# every harddisk will be overriden! -# this feature is only useful for validation -{ - # TODO: not ALL harddisks, please! - get_available_disks | while read a - do log_msg "Purging $a ..." - "$ROOT_PERM_SCRIPT" trash_device "$a" - done -} - - -function turn_off_all_containers() { - # TODO - needs to be implemented - return 0 -} - - -### main ### - -# set PATH because thttpd removes /sbin and /usr/sbin for cgis -export PATH=/usr/sbin:/usr/bin:/sbin:/bin - - -ACTION=help -test $# -gt 0 && ACTION=$1 && shift - -case "$ACTION" in - crypto-up ) - test $# -ne 1 && error_msg 10 "invalid number of parameters for 'crypto-up'" - is_device_allowed "$1" || error_msg 12 "invalid device: $1" - mount_crypto "$1" - ;; - crypto-down ) - test $# -ne 1 && error_msg 10 "invalid number of parameters for 'crypto-down'" - is_device_allowed "$1" || error_msg 12 "invalid device: $1" - umount_partition "$1" - ;; - init ) - init_cryptobox >"$LOG_FILE" 2>&1 - ;; - list_container ) - test $# -ne 1 && error_msg 10 "invalid number of parameters for 'list_container'" - case "$1" in - config | unused | plaindata | crypto ) - list_partitions_of_type "$1" - ;; - * ) - return 1 - ;; - esac - return 0 - ;; - get_device_name ) - # Parameter: DEVICE - test $# -ne 1 && error_msg 10 "invalid number of parameters for 'get_device_name'" - is_device_allowed "$1" || error_msg 12 "invalid device: $1" - get_device_name "$1" - ;; - set_device_name ) - # Parameter: DEVICE NAME - test $# -ne 2 && error_msg 10 "invalid number of parameters for 'set_device_name'" - is_device_allowed "$1" || error_msg 12 "invalid device: $1" - set_device_name "$1" "$2" - ;; - device_init ) - # Parameter: DEVICE [KEYFILE] - test $# -lt 1 && error_msg 10 "invalid number of parameters for 'device_init' ($@)" - test $# -gt 2 && error_msg 10 "invalid number of parameters for 'device_init' ($@)" - if test $# -eq 2 - then test -z "$2" -o ! -e "$2" && error_msg 11 "invalid keyfile ($2) given for 'device_init'" - fi - is_device_allowed "$1" || error_msg 12 "invalid device: $1" - if test $# -eq 2 - then "$ROOT_PERM_SCRIPT" create_crypto "$1" "$2" - else "$ROOT_PERM_SCRIPT" create_plain "$1" - fi - true - ;; - is_mounted ) - test $# -ne 1 && error_msg 10 "invalid number of parameters for 'is_mounted'" - is_device_allowed "$1" || error_msg 12 "invalid device: $1" - is_mounted "$1" - ;; - is_encrypted ) - test $# -ne 1 && error_msg 10 "invalid number of parameters for 'is_encrypted'" - is_device_allowed "$1" || error_msg 12 "invalid device: $1" - is_encrypted "$1" - ;; - is_plain ) - test $# -ne 1 && error_msg 10 "invalid number of parameters for 'is_plain'" - is_device_allowed "$1" || error_msg 12 "invalid device: $1" - is_plain "$1" - ;; - check_config) - is_config_active - ;; - get_available_disks ) - get_available_disks - ;; - set_config ) - test $# -ne 2 && error_msg 7 "'set_config' requires two parameters" - config_set_value "$1" "$2" - ;; - get_config ) - test $# -ne 1 && error_msg 6 "'get_config' requires exactly one parameter" - config_get_value "$1" - ;; - get_capacity_info ) - test $# -ne 1 && error_msg 6 "'get_capacity_info' requires exactly one parameter" - is_device_allowed "$1" || error_msg 12 "invalid device: $1" - is_mounted "$1" || error_msg 13 "the device is not mounted: $1" - name=$(get_device_mnt_name "$1") - df -h "$MNT_PARENT/$name" | tail -1 - ;; - diskinfo ) - get_available_disks | while read a - do "$ROOT_PERM_SCRIPT" diskinfo "$a" - done 2>/dev/null - ;; - box-purge ) - log_msg "Cleaning the CryptoBox ..." - turn_off_all_containers - "$0" config-down - box_purge >>"$LOG_FILE" 2>&1 - ;; - poweroff ) - log_msg "Shutting down the Cryptobox ..." - turn_off_all_containers - "$ROOT_PERM_SCRIPT" poweroff - ;; - reboot ) - log_msg "Rebooting the Cryptobox ..." - turn_off_all_containers - "$ROOT_PERM_SCRIPT" reboot - ;; - umount_all ) - log_msg "Unmounting all volumes ..." - turn_off_all_containers - ;; - * ) - echo "[$(basename $0)] - unknown action: $ACTION" >&2 - echo "Syntax: $(basename $0) ACTION [PARAMS]" - echo " crypto-up - mount crypto partition" - echo " crypto-down - unmount crypto partition" - echo " crypto-create - a wrapper for 'crypto-create-bg'" - echo " crypto-create-bg - create encrypted blockdevice and run mkfs" - echo " is_mounted - check, if crypto partition is mounted" - echo " check_config - check, if the configuration is usable" - echo " get_available_disks - shows all accessible disks" - echo " get_current_ip - get the current IP of the network interface" - echo " set_config NAME VALUE - change a configuration setting" - echo " get_config NAME - retrieve a configuration setting" - echo " get_device_name DEVICE - retrieve the human readable name of a partition" - echo " set_device_name DEVICE - set the human readable name of a partition" - echo " device_init DEVICE KEYFILE - initialize the filesystem of a partition (the keyfile just contains the passphrase)" - echo " get_capacity_info - print the output of 'df' for the (mounted) partition" - echo " diskinfo - show the partition table of the harddisk" - echo " box-purge - destroy the partition tables of all harddisks (delete everything)" - echo " poweroff - turn off the computer" - echo " reboot - reboot the computer" - echo - ;; - esac - -exit 0 - diff --git a/bin-perl-old/cbox-root-actions.sh b/bin-perl-old/cbox-root-actions.sh deleted file mode 100755 index 9e25d7d..0000000 --- a/bin-perl-old/cbox-root-actions.sh +++ /dev/null @@ -1,341 +0,0 @@ -#!/bin/sh -# -# Copyright (c) 02005 sense.lab -# -# License: This script is distributed under the terms of version 2 -# of the GNU GPL. See the LICENSE file included with the package. -# -# $Id$ -# -# this script is responsible for all dangerous actions, that require root privileges -# every action should be checked at least TWICE a day for open holes :) -# usually will get call via sudo -# -# called by: -# - cbox-manage.sh -# - -set -eu - -LIB_DIR=$(dirname "$0") -LIB_DIR=$(cd "$LIB_DIR"; pwd) - -test "$(id -u)" -ne 0 && echo "$(basename $0) - only root may call this script" >&2 && exit 100 - -# read the default setting file, if it exists -test -e /etc/default/cryptobox && . /etc/default/cryptobox - -# set CONF_FILE to default value, if not configured in /etc/default/cryptobox -CONF_FILE=${CONF_FILE:-/etc/cryptobox/cryptobox.conf} -# parse config file -. "$CONF_FILE" -# parse distribution specific file -. "$DISTRIBUTION_CONF" - -CB_SCRIPT="$LIB_DIR/cbox-manage.sh" -CONFIG_MARKER=cryptobox.marker - - -############ some useful functions ############### - -# check if the given device is part of the SCAN_DEVICE list -# every entry in SCAN_DEVICES is matched as "^/dev/${SCAN_DEVICE}[^/]*$" against -# the given device -# other devices may not be touched -function is_device_allowed() -# parameter: device -{ - for a in $SCAN_DEVICES - do echo "$1" | grep -q "^/dev/${a}[^/]*$" && return 0 - done - return 1 -} - - -# return the uuid of the partition (if possible) -# this works at least for luks, ext2/3 and vfat partitions -function get_device_uuid() { - local UUID - # check for luksUUID or ext2/3-uuid - if is_luks_device "$1" - then UUID=$("$CRYPTSETUP" luksUUID "$1") - else test -x "$BLKID" && UUID=$("$BLKID" -s UUID -o value -c /dev/null -w /dev/null "$1" 2>/dev/null) - fi - if test -z "$UUID" - then get_device_flat_name "$1" - else echo "$UUID" - fi - return 0 -} - - -# the device name is "flattened" -function get_device_flat_name() { - echo "$1" | sed 's#/#_#g' -} - - -# the basename of the mountpoint for this device - should be somehow human_readable -function get_device_mnt_name() { - "$CB_SCRIPT" get_device_name "$1" -} - - -# every devmapper name should look like a UUID -function is_uuid_valid() { - local hex=[0-9a-f] - echo "$1" | grep -q "^$hex\{8\}-$hex\{4\}-$hex\{4\}-$hex\{4\}-$hex\{12\}$" -} - - -# parameter ExitCode ErrorMessage -function error_msg() { - echo "CBOX-ERROR: [$(basename $0) - $ACTION] - $2" >&2 - exit $1 -} - - -# parameter: device sfdisk_layout_setup -# e.g.: /dev/hda "0,1,L \n,,L\n" -function partition_device() { - # TODO: allow different layouts - # TODO: skip config partition if a configuration is already active - # sfdisk -n doesn't actually write (for testing purpose) - if echo -e "$2" | "$SFDISK" -n "$1" - then echo -e "$2" | "$SFDISK" "$1" || return 1 - else return 2 - fi - true -} - - -function is_luks_device() -# parameter: device -{ - "$CRYPTSETUP" isLuks "$1" 2>/dev/null -} - - -################ main #################### - -ACTION=unknown -test $# -gt 0 && ACTION=$1 && shift - - -case "$ACTION" in - partition_disk ) - test $# -ne 2 && error_msg 1 "wrong number of parameters" - is_device_allowed "$1" || \ - error_msg 3 "this device ($1) is not listed in SCAN_DEVICES (see $CONF_FILE)" - partition_device "$1" "$2" || \ - error_msg 2 "failed to create new partition table on device $1" - ;; - mount ) - # parameters: device - # returns the relative name of the mointpoint for success - test $# -ne 1 && error_msg 1 "wrong number of parameters" - is_device_allowed "$1" || \ - error_msg 3 "this device ($1) is not listed in SCAN_DEVICES (see $CONF_FILE)" - mnt_name=$(get_device_mnt_name "$1") - mountpoint -q "$MNT_PARENT/$mnt_name" && \ - error_msg 5 "a device with the same name ($mnt_name) is already mounted" - mkdir -p "$MNT_PARENT/$mnt_name" - if is_luks_device "$1" - then "$CRYPTSETUP" luksOpen "$1" "$mnt_name" || \ - error_msg 6 "could not open encrypted device $1" - if mount "$DEV_MAPPER_DIR/$mnt_name" "$MNT_PARENT/$mnt_name" - then true - else "$CRYPTSETUP" luksClose "$mnt_name" || true - error_msg 7 "wrong password for $1 supplied" - fi - else mount "$1" "$MNT_PARENT/$mnt_name" || \ - error_msg 8 "invalid filesystem on device $1" - fi - # just in case, that there is no ext2/3 filesystem: - # set uid option (will fail silently for ext2/3) - # TODO: there is no FILE_USER setting anymore - do we still need it? - #mount -o remount,uid="$FILE_USER" "$MNT_PARENT/$name" 2>/dev/null || true - # adapt top-level permission to current setup - again: may fail silently - #chown "$FILE_USER" "$MNT_PARENT/$name" 2>/dev/null || true - true - ;; - umount ) - #parameter: device - test $# -ne 1 && error_msg 1 "wrong number of parameters" - is_device_allowed "$1" || \ - error_msg 3 "this device ($1) is not listed in SCAN_DEVICES (see $CONF_FILE)" - mnt_name=$(get_device_mnt_name "$1") - mountpoint -q "$MNT_PARENT/$mnt_name" || \ - error_msg 9 "the device ($1) is not mounted as '$mnt_name'" - # try to unmount - do it in lazy mode - umount -l "$MNT_PARENT/$mnt_name" - # TODO: check, what happens, if there are open files - does the device gets mapping removed? - # remove (if necessary) the device mapping - if test -e "$DEV_MAPPER_DIR/$mnt_name" - then "$CRYPTSETUP" luksClose "$mnt_name" || \ - error_msg 11 "could not remove the device mapper ($mnt_name) for device $1" - fi - # try to remove the mountpoint - a failure is not important - rmdir "$MNT_PARENT/$mnt_name" || true - # set exitcode - mountpoint -q "$MNT_PARENT/$mnt_name" && exit 1 - true - ;; - create_crypto ) - # parameter: device keyfile - test $# -ne 2 && error_msg 1 "wrong number of parameters" - keyfile=$2 - test -e "$keyfile" || error_msg 2 "keyfile ($keyfile) not found" - is_device_allowed "$1" || \ - error_msg 3 "this device ($1) is not listed in SCAN_DEVICES (see $CONF_FILE)" - # read the passphrase from stdin - # the iter-time is in milliseconds - keep it low for fast mounting - cat "$keyfile" | \ - "$CRYPTSETUP" --cipher "$DEFAULT_CIPHER" --iter-time 2000 --batch-mode luksFormat "$1" || \ - error_msg 11 "failed to create the encrypted partition" - name=$(get_device_mnt_name "$1") - cat "$keyfile" | "$CRYPTSETUP" --batch-mode luksOpen "$1" "$name" || \ - error_msg 12 "failed to open the encrypted partition" - # trash the passphrase in keyfile - echo "0123456789abcdefghijklmnopqrstuvwxyz" > "$keyfile" - # the disk cache surely prevents the previous line from being written, but we do it anyway ... - echo "zyxwvutsrqponmlkjihgfedcba9876543210" > "$keyfile" - rm "$keyfile" - # complete in background - ( - "$MKFS_DATA" "$DEV_MAPPER_DIR/$name" || \ - error_msg 13 "failed to create the encrypted filesystem" - "$CRYPTSETUP" --batch-mode luksClose "$name" || \ - error_msg 14 "failed to close the encrypted mapped device" - ) /dev/null 2>/dev/null & - true - ;; - create_plain ) - # parameter: device - test $# -ne 1 && error_msg 1 "wrong number of parameters for 'create_plain'" - is_device_allowed "$1" || \ - error_msg 3 "this device ($1) is not listed in SCAN_DEVICES (see $CONF_FILE)" - # complete in background - ( - "$MKFS_DATA" "$1" || \ - error_msg 15 "failed to create the plaintext filesystem" - ) /dev/null 2>/dev/null & - true - ;; - get_device_mnt_name ) - # parameter: device - test $# -ne 1 && error_msg 1 "wrong number of parameters" - is_device_allowed "$1" || \ - error_msg 3 "this device ($1) is not listed in SCAN_DEVICES (see $CONF_FILE)" - get_device_mnt_name "$1" - ;; - get_device_uuid ) - # parameter: device - test $# -ne 1 && error_msg 1 "wrong number of parameters" - is_device_allowed "$1" || \ - error_msg 3 "this device ($1) is not listed in SCAN_DEVICES (see $CONF_FILE)" - get_device_uuid "$1" - ;; - is_config_partition ) - # parameter: device - # returns exitcode 0 if the device contains a configuration - test $# -ne 1 && error_msg 1 "wrong number of parameters" - is_device_allowed "$1" || \ - error_msg 3 "this device ($1) is not listed in SCAN_DEVICES (see $CONF_FILE)" - is_config=0 - tmp_dir=/tmp/$(basename $0)-$$-mnt - mkdir -p "$tmp_dir" - # error means "no config partition" - if mount "$1" "$CONFIG_DIR" - then test -e "$CONFIG_DIR/$CONFIG_MARKER" && is_config=1 - umount "$CONFIG_DIR" || \ - error_msg 14 "unable to unmount configation partition after probing" - fi - rmdir "$tmp_dir" || true - # return 0 if $device is a config partition - test "$is_config" -eq 1 && exit 0 - exit 1 - ;; - is_crypto_partition ) - # parameter: device - # returns exitcode 0 if the device contains a luks header - test $# -ne 1 && error_msg 1 "wrong number of parameters" - is_device_allowed "$1" || \ - error_msg 3 "this device ($1) is not listed in SCAN_DEVICES (see $CONF_FILE)" - is_luks_device "$1" - ;; - is_plain_partition ) - # parameter: device - # returns exitcode 0 if the device contains a readable filesystem - test $# -ne 1 && error_msg 1 "wrong number of parameters" - is_device_allowed "$1" || \ - error_msg 3 "this device ($1) is not listed in SCAN_DEVICES (see $CONF_FILE)" - status=0 - tmp_dir=/tmp/$(basename $0)-$$-mnt - mkdir -p "$tmp_dir" - if mount "$1" "$tmp_dir" >/dev/null 2>/dev/null - then test ! -e "$tmp_dir/$CONFIG_MARKER" && status=1 - umount "$tmp_dir" - fi - rmdir "$tmp_dir" || true - test "$status" -eq 1 && exit 0 - exit 1 - ;; - trash_device ) - # parameter: device - test $# -ne 1 && error_msg 1 "wrong number of parameters" - is_device_allowed "$1" || \ - error_msg 3 "this device ($1) is not listed in SCAN_DEVICES (see $CONF_FILE)" - dd if=/dev/urandom of="$1" bs=512 count=1 2>/dev/null - ;; - diskinfo ) - # parameter: device - test $# -ne 1 && error_msg 1 "wrong number of parameters" - is_device_allowed "$1" || \ - error_msg 3 "this device ($1) is not listed in SCAN_DEVICES (see $CONF_FILE)" - "$SFDISK" -L -q -l "$1" - ;; - update_network ) - # parameter: none - ip= - # TODO: can we avoid to hard-code the filename ($CONFIG_DIR/ip) here? - test -e "$CONFIG_DIR/ip" && ip=$(<"$CONFIG_DIR/ip") - test -n "$z" && ifconfig "$NET_IFACE" "$ip" - ;; - poweroff ) - # TODO: check configuration setting before - "$POWEROFF" - ;; - reboot ) - # TODO: check configuration setting before - "$REBOOT" - ;; - * ) - echo "[$(basename $0)] - unknown action: $ACTION" >&2 - echo "Syntax: $(basename $0) ACTION PARAMETERS" - echo ' partition_disk $device $disk_layout' - echo ' get_device_name $device' - echo ' get_device_uuid $device' - echo ' create_crypto $device' - echo ' mount $device' - echo ' umount $name' - echo ' create_config $device' - echo ' mount_config $device' - echo ' remount_config { ro | rw }' - echo ' umount_config' - echo ' is_config_partition $device' - echo ' is_plain_partition $device' - echo ' is_crypto_partition $device' - echo ' trash_device $device' - echo ' diskinfo $device' - echo ' update_network' - echo ' poweroff' - echo ' reboot' - echo ' help' - echo - test "$ACTION" = "help" && exit 0 - # return error for any unknown/unspecified action - exit 1 - ;; - esac - diff --git a/bin-perl-old/cryptobox.pl b/bin-perl-old/cryptobox.pl deleted file mode 100755 index 7f36806..0000000 --- a/bin-perl-old/cryptobox.pl +++ /dev/null @@ -1,946 +0,0 @@ -#!/usr/bin/perl -# -# Copyright (c) 02005 sense.lab -# -# License: This script is distributed under the terms of version 2 -# of the GNU GPL. See the LICENSE file included with the package. -# -# $Id$ -# -# the web interface of the CryptoBox -# - - -############################################### - -use strict; -use CGI; -use ClearSilver; -use ConfigFile; -use English; -use CGI::Carp; -use IO::File; -use POSIX; - -use constant CRYPTOBOX_VERSION => 0.3; - -# debug levels -use constant DEBUG_NONE => 0; -use constant DEBUG_ERROR => 1; -use constant DEBUG_WARN => 2; -use constant DEBUG_INFO => 3; - -# drop privileges -$UID = $EUID; -$GID = $EGID; - -# necessary for suid perl scripts (see 'man perlsec' for details) -$ENV{'PATH'} = '/bin:/usr/bin'; -delete @ENV{qw(IFS CDPATH ENV BASH_ENV)}; # Make %ENV safer - -my $CONFIG_FILE = '/etc/cryptobox/cryptobox.conf'; - -my $pagedata; - -my ($LANGUAGE_DIR, $DEFAULT_LANGUAGE, $HTML_TEMPLATE_DIR, $DOC_DIR); -my ($CB_SCRIPT, $LOG_FILE, $IS_DEVEL, $STYLESHEET_URL, $DEBUG_LEVEL); - -# get the directory of the cryptobox scripts/binaries and untaint it -$CB_SCRIPT = $0; -$CB_SCRIPT =~ m/^(.*)\/[^\/]*$/; -$CB_SCRIPT = ($1)? "$1/cbox-manage.sh" : './cbox-manage.sh'; - -&fatal_error ("could not find configuration file ($CONFIG_FILE)") unless (-e $CONFIG_FILE); -my $config = ConfigFile::read_config_file($CONFIG_FILE); - -$LOG_FILE = $config->{LOG_FILE}; -$LANGUAGE_DIR = $config->{LANGUAGE_DIR}; -$DEFAULT_LANGUAGE = $config->{LANGUAGE}; -$HTML_TEMPLATE_DIR = $config->{HTML_TEMPLATE_DIR}; -$DOC_DIR = $config->{DOC_DIR}; -$IS_DEVEL = ( -e $config->{DEV_FEATURES_SCRIPT}); -$STYLESHEET_URL = $config->{STYLESHEET_URL}; -if (defined($config->{DEBUG_LEVEL})) { - $DEBUG_LEVEL = $config->{DEBUG_LEVEL}; -} else { - $DEBUG_LEVEL = DEBUG_ERROR; # default debug level -} - -my $query = new CGI; - -#################### subs ###################### - -# for fatal errors without the chance of clearsilver-rendering -sub fatal_error() { - my $message = shift; - - print "Content-Type: text/html\n\n"; - print "CryptoBox\n"; - print "\n"; - print '

' . $message . "

\n"; - print "\n"; - die "[CryptoBox]: $message"; -} - - -sub debug_msg() { - my ($level, $message) = @_; - return 0 unless ($level >= $DEBUG_LEVEL); - warn "[cryptobox]: $message"; -} - - -sub load_hdf { - my $hdf = ClearSilver::HDF->new(); - - my $fname = "$HTML_TEMPLATE_DIR/main.cs"; - &fatal_error ("Template directory is invalid ($fname not found)!") unless (-e "$fname"); - $hdf->setValue("Settings.TemplateDir","$HTML_TEMPLATE_DIR"); - - &fatal_error ("Documentation directory ($DOC_DIR) not found!") unless (-d "$DOC_DIR"); - $hdf->setValue("Settings.DocDir","$DOC_DIR"); - - # if it was requested as directory index (link from index.html), we should - # set a real script name - otherwise links with a query string will break - # ignore POST part of the SCRIPT_NAME (after "&") - (my $script_url = $ENV{'SCRIPT_NAME'}) =~ m/^[^&]*/; - $hdf->setValue("ScriptName", ($ENV{'SCRIPT_NAME'} eq '/')? '/cryptobox' : $script_url ); - - # set stylesheet url - $hdf->setValue("Settings.Stylesheet",$STYLESHEET_URL); - - &load_selected_language($hdf); - - &get_available_languages($hdf); - - return $hdf; -} - - -sub load_selected_language { - my $data = shift; - my $config_language; - - # load $DEFAULT_LANGUAGE - this is necessary, if a translation is incomplete - $data->readFile("$LANGUAGE_DIR/$DEFAULT_LANGUAGE" . ".hdf"); - - # load configured language, if it is valid - $config_language = &get_cbox_config("language"); - $config_language = $DEFAULT_LANGUAGE unless (&validate_language("$config_language")); - - # check for preferred browser language, if the box was not initialized yet - if ( ! &check_config()) - { - my $prefLang = &get_browser_language(); - # take it, if a supported browser language was found - $config_language = $prefLang unless ($prefLang eq ''); - } - - ######### temporary language setting? ############ - # the default language can be overriden by the language links in the - # upper right of the page - if ($query->param('weblang')) { - my $weblang = $query->param('weblang'); - if (&validate_language($weblang)) { - # load the data - $config_language = "$weblang"; - # add the setting to every link - # how it should be done now ... - $data->setValue('Settings.LinkAttrs.weblang', "$weblang"); - # old way of doing this ... (TODO: to be removed) - $data->setValue('Data.PostData.weblang', "$weblang"); - } else { - # no valid language was selected - so you may ignore it - $data->setValue('Data.Warning', 'InvalidLanguage'); - } - } - # import the configured resp. the temporarily selected language - $data->readFile("$LANGUAGE_DIR/$config_language" . ".hdf"); - - ########## select documentation language ########## - if (&validate_doc_language($config_language)) { - # selected web interface language - $data->setValue('Settings.DocLang', "$config_language"); - } elsif (&validate_doc_language($DEFAULT_LANGUAGE)) { - # configured CryptoBox language - $data->setValue('Settings.DocLang', "$DEFAULT_LANGUAGE"); - } else { - # default hardcoded language (english) - $data->setValue('Settings.DocLang', "en"); - } -} - - -# import the names of all available languages -sub get_available_languages { - my $data = shift; - my ($file, @files, $hdf, $lang_name); - - opendir(DIR, $LANGUAGE_DIR) or &fatal_error ("Language directory ($LANGUAGE_DIR) not accessible!"); - @files = sort grep { /.*\.hdf$/ } readdir(DIR); - close(DIR); - - foreach $file (@files) { - $hdf = ClearSilver::HDF->new(); - $hdf->readFile("$LANGUAGE_DIR/$file"); - substr($file, -4) = ""; - $lang_name = $hdf->getValue("Lang.Name", "$file"); - $data->setValue("Data.Languages." . "$file", "$lang_name"); - } -} - - -# look for preferred browser language setting -# this code was adapted from Per Cederberg - http://www.percederberg.net/home/perl/select.perl -# it returns an empty string, if no supported language was found -sub get_browser_language { - my ($str, @langs, @res); - - # Use language preference settings - if ($ENV{'HTTP_ACCEPT_LANGUAGE'} ne '') - { - @langs = split(/,/, $ENV{'HTTP_ACCEPT_LANGUAGE'}); - foreach (@langs) - { - # get the first part of the language setting - ($str) = ($_ =~ m/([a-z]+)/); - # check, if it supported by the cryptobox - $res[$#res+1] = $str if validate_language($str); - } - } - - # if everything fails - return empty string - $res[0] = "" if ($#res lt 0); - return $res[0]; -} - - -sub log_msg { - my $text = shift; - open(LOGFILE,">> $LOG_FILE"); - print LOGFILE "$text"; - close(LOGFILE); -} - - -sub check_ssl { - # check, if we are behind a proxy with ssl (e.g. pound) - return (0==0) if ($ENV{'HTTP_FRONT_END_HTTPS'} =~ m/^on$/i); - # environment variable set (e.g. via apache directive "SetEnv HTTPS On") - return (0==0) if ($ENV{'HTTPS'} =~ m/^on$/i); - # port 80 -> not encrypted - return (0==1) if ($ENV{'SERVER_PORT'} == 80); - # other ports -> maybe ok - we accept it - return (0==0); -} - - -# check, if the given device is mounted/used somehow -# Paramter: device -sub check_mounted { - my ($dev) = @_; - return (system($CB_SCRIPT,"is_mounted",$dev) == 0); -} - - -sub check_config { - return (system($CB_SCRIPT,"check_config") == 0); -} - - -sub exec_cb_script { - my (@params) = @_; - my ($pid, @result); - &fatal_error("unable to fork process") unless defined($pid = open(PROG_OUT, "-|")); - if (!$pid) { - # child - exec($CB_SCRIPT, @params) or &fatal_error("failed to execute $CB_SCRIPT!"); - exit 0; - } else { - # parent - # only read lines containing at least one non-whitespace character - @result = grep /\S/, ; - foreach (@result) { chomp; } - unless (close PROG_OUT) { - &debug_msg(DEBUG_WARN, "error while running $CB_SCRIPT (params:" . join(" ",@params) . "): $?"); - return undef; - } - } - if (wantarray) { - return @result; - } elsif (@result > 0) { - return join('',@result); - } else { - return ""; - } -} - - -sub check_init_running { - # TODO: improve this - return (0==1); -} - - -# Parameter: device -sub check_device_plaintext { - return (system("$CB_SCRIPT","is_plain",$1) == 0); -} - - -# Parameter: device -sub check_device_encryption { - return (system("$CB_SCRIPT","is_encrypted",$1) == 0); -} - - -sub is_harddisk_available { - my @all_disks = &exec_cb_script("get_available_disks"); - return @all_disks > 0; -} - - -sub get_available_disks { - my @all_disks = &exec_cb_script("get_available_disks"); - my ($disk, @return_disks); - foreach $disk (@all_disks) { - $disk =~ m#^([/\._\-\w]*)$#; - push @return_disks, $1 if ($1); - } - return @return_disks; -} - - -sub get_disk_name { - my ($dev) = @_; - my $disk_name = &exec_cb_script("get_device_name", $dev); - return $disk_name; -} - - -# return the value of a configuration setting (timeout, language, ip, ...) -# Parameter: setting_name -sub get_cbox_config { - my ($setting) = @_; - # tell the exec function, that we want a scalar instead of an array - my $scalar = &exec_cb_script("get_config",$setting); - return $scalar; -} - - -sub render { - my $pagefile = "$HTML_TEMPLATE_DIR/main.cs"; - print "Content-Type: text/html\n\n"; - - my $cs = ClearSilver::CS->new($pagedata); - $cs->parseFile($pagefile); - - print $cs->render(); -} - - -# mount an encrypted volume -# Parameter: device password -sub mount_vol { - my ($device, $pw) = @_; - - if (&check_mounted($device)) { - $pagedata->setValue('Data.Warning', 'IsMounted'); - } else { - if ($pw eq '') { - &exec_cb_script("crypto-up", $device); - } else { - open(PW_INPUT, "| $CB_SCRIPT crypto-up $device"); - print PW_INPUT $pw; - close(PW_INPUT); - } - } -} - - -# unmount a volume -# Parameter: device -sub umount_vol { - my ($device) = @_; - if (&check_mounted($device)) { - system($CB_SCRIPT, "crypto-down",$device); - } else { - $pagedata->setValue('Data.Warning', 'NotMounted'); - } -} - - -# Parameter: device passphrase -# ignore passphrase (or leave it empty) to create a plaintext volume -sub volume_init { - my ($device, $crypto_pw) = @_; - my $result; - - # only for encrypted volumes: - # write passphrase to a file - necessary as perl in secured mode does not allow - # the 'open(FH, "|/bin/prog ....")' call because of possible shell expansion - stupid 'open' :( - if ($crypto_pw) { - my ($fh, $temp_file); - # generate a temporary filename (as suggested by the Perl Cookbook) - do { $temp_file = POSIX::tmpnam() } - # TODO: reduce the file mask to the minimum - maybe 0600 would be a good choice - until $fh = IO::File->new($temp_file, O_RDWR|O_CREAT|O_EXCL); - close $fh; - unless (open(TMP, ">$temp_file")) { - &debug_msg(DEBUG_ERROR, "could not open a temporary file"); - return (1==0); - } - print TMP $crypto_pw; - close TMP; - $result = &exec_cb_script("device_init", $device, $temp_file); - unlink ($temp_file) if (-e $temp_file); - } else { - $result = &exec_cb_script("device_init", $device); - } - # just to be sure, that the file does not get left behind - # usually the script should overwrite and remove it - return defined($result); -} - - -sub box_purge { - &exec_cb_script("box-purge"); -} - - -sub system_poweroff { - &exec_cb_script("poweroff"); -} - - -sub system_reboot { - &exec_cb_script("reboot"); -} - - -sub validate_ip { - my $ip = shift; - my @octets = split /\./, $ip; - return 0 if ($#octets == 4); - # check for values and non-digits - return 0 if (($octets[0] <= 0) || ($octets[0] >= 255) || ($octets[0] =~ /\D/)); - return 0 if (($octets[1] < 0) || ($octets[1] >= 255) || ($octets[1] =~ /\D/)); - return 0 if (($octets[2] < 0) || ($octets[2] >= 255) || ($octets[2] =~ /\D/)); - return 0 if (($octets[3] <= 0) || ($octets[3] >= 255) || ($octets[3] =~ /\D/)); - return 1; -} - - -sub validate_timeout { - my $timeout = shift; - return 0 if ($timeout =~ /\D/); - return 1; -} - - -# check for a valid interface language -sub validate_language { - my $language = shift; - # check for non-alphanumeric character - return 0 if ($language =~ /\W/); - return 0 if ($language eq ""); - return 0 if ( ! -e "$LANGUAGE_DIR/$language" . '.hdf'); - return 1; -} - - -# check for a valid documentation language -sub validate_doc_language { - my $language = shift; - # check for non-alphanumeric character - return 0 if ($language =~ /\W/); - return 0 if ($language eq ""); - return 0 if ( ! -e "$DOC_DIR/$language"); - return 1; -} - - -################### main ######################### - - -$pagedata = load_hdf(); -my $current_admin_pw; - -my $action = $query->param('action'); -$action =~ m#^([\w\._\-]*)$#; -$action = ($1)? $1 : ''; - -my $device = $query->param('device'); -$device =~ m#^([/_\-\w\.]*)$#; -$device = ($1)? $1 : ''; - -# BEWARE: there are two kinds of actions: -# * some require a harddisk -# * some do not require a harddisk -# take care, that you put a new action into the appropriate block below - -# first: check for ssl! -if ( ! &check_ssl()) { - $pagedata->setValue('Data.Error', 'NoSSL'); - # remove port number from HTTP_HOST - my $hostname = $ENV{'HTTP_HOST'}; - $hostname =~ s/:[0-9]*//; - $pagedata->setValue('Data.Redirect.URL', "https://" . $hostname . $ENV{'SCRIPT_NAME'}); - $pagedata->setValue('Data.Redirect.Delay', "3"); -} elsif ($query->param('action')) { - #--------------------------------------------------------------# - # here you may define all cases that do not require a harddisk # - # put all other cases below the harddisk check # - #--------------------------------------------------------------# - #################### show_log ####################### - if ($action eq 'show_log') { - $pagedata->setValue('Data.Action', 'show_log'); - ##################### doc ############################ - } elsif ($action eq 'doc') { - if ($query->param('page')) { - $pagedata->setValue('Data.Doc.Page', $query->param('page')); - $pagedata->setValue('Data.Action', 'show_doc'); - } else { - $pagedata->setValue('Data.Doc.Page', 'CryptoBoxUser'); - $pagedata->setValue('Data.Action', 'show_doc'); - } - ##################### poweroff ###################### - } elsif ($action eq 'system_ask') { - $pagedata->setValue('Data.Action', 'form_system'); - ##################### reboot ######################## - } elsif ($action eq 'shutdown_do') { - if ($query->param('type') eq 'reboot') { - &system_reboot(); - $pagedata->setValue('Data.Success', 'ReBoot'); - $pagedata->setValue('Data.Redirect.Action', 'show_status'); - $pagedata->setValue('Data.Redirect.Delay', "180"); - } else { - &system_poweroff(); - $pagedata->setValue('Data.Success', 'PowerOff'); - } - $pagedata->setValue('Data.Action', 'empty'); - ##################### check for a harddisk ########################## - # catch this error, to prevent all following actions from execution # - ##################################################################### - } elsif ( ! &is_harddisk_available()) { - $pagedata->setValue('Data.Error', 'NoHardDisk'); - #-------------------------------------------------------# - # here you may define all cases that require a harddisk # - #-------------------------------------------------------# - ################ umount_do ####################### - } elsif ($action eq 'umount_do') { - if ($device eq '') { - &debug_msg(DEBUG_INFO, "invalid device: " . $query->param('device')); - $pagedata->setValue('Data.Warning', 'InvalidDevice'); - $pagedata->setValue('Data.Action', 'emptu'); - } elsif ( ! &check_config()) { - $pagedata->setValue('Data.Warning', 'NotInitialized'); - $pagedata->setValue('Data.Action', 'form_init'); - } elsif (&check_init_running()) { - $pagedata->setValue('Data.Warning', 'InitNotFinished'); - $pagedata->setValue('Data.Action', 'empty'); - $pagedata->setValue('Data.Redirect.Action', 'form_config'); - $pagedata->setValue('Data.Redirect.Delay', "30"); - } elsif ( ! &check_mounted($device)) { - $pagedata->setValue('Data.Warning', 'NotMounted'); - $pagedata->setValue('Data.Action', 'show_volume'); - } else { - # unmounten - &umount_vol($device); - if (&check_mounted($device)) { - $pagedata->setValue('Data.Warning', 'UmountFailed'); - $pagedata->setValue('Data.Action', 'show_volume'); - } else { - #$pagedata->setValue('Data.Success', 'UmountDone'); - $pagedata->setValue('Data.Action', 'show_volume'); - } - } - ################ mount_do ######################## - } elsif ($action eq 'mount_do') { - my $is_encrypted = &check_device_encryption($device) if ($device ne ''); - if ($device eq '') { - &debug_msg(DEBUG_INFO, "invalid device: " . $query->param('device')); - $pagedata->setValue('Data.Warning', 'InvalidDevice'); - $pagedata->setValue('Data.Action', 'empty'); - } elsif ( ! &check_config()) { - $pagedata->setValue('Data.Warning', 'NotInitialized'); - $pagedata->setValue('Data.Action', 'form_init'); - } elsif (&check_init_running()) { - $pagedata->setValue('Data.Warning', 'InitNotFinished'); - $pagedata->setValue('Data.Action', 'empty'); - $pagedata->setValue('Data.Redirect.Action', 'form_config'); - $pagedata->setValue('Data.Redirect.Delay', "30"); - } elsif (&check_mounted($device)) { - $pagedata->setValue('Data.Warning', 'IsMounted'); - $pagedata->setValue('Data.Action', 'show_volume'); - } elsif ($is_encrypted && ($query->param('crypto_password') eq '')) { - # leeres Passwort - $pagedata->setValue('Data.Warning', 'EmptyCryptoPassword'); - $pagedata->setValue('Data.Action', 'show_volume'); - } else { - # mounten - if ($is_encrypted) { - &mount_vol($device, $query->param('crypto_password')); - } else { - &mount_vol($device); - } - if (!&check_mounted($device)) { - $pagedata->setValue('Data.Warning', 'MountFailed'); - $pagedata->setValue('Data.Action', 'show_volume'); - } else { - #$pagedata->setValue('Data.Success', 'MountDone'); - $pagedata->setValue('Data.Action', 'show_volume'); - } - } - ################## mount_ask ####################### - } elsif ($action eq 'mount_ask') { - if ( ! &check_config()) { - $pagedata->setValue('Data.Warning', 'NotInitialized'); - $pagedata->setValue('Data.Action', 'form_init'); - } elsif (&check_init_running()) { - $pagedata->setValue('Data.Warning', 'InitNotFinished'); - $pagedata->setValue('Data.Action', 'empty'); - $pagedata->setValue('Data.Redirect.Action', 'form_config'); - $pagedata->setValue('Data.Redirect.Delay', "30"); - } else { - $pagedata->setValue('Data.Action', 'form_mount'); - } - ################# umount_ask ######################## - } elsif ($action eq 'umount_ask') { - if ( ! &check_config()) { - $pagedata->setValue('Data.Warning', 'NotInitialized'); - $pagedata->setValue('Data.Action', 'form_init'); - } else { - $pagedata->setValue('Data.Action', 'form_umount'); - } - ################## init_ask ######################### - } elsif ($action eq 'init_ask') { - if (&check_init_running()) { - $pagedata->setValue('Data.Warning', 'InitNotFinished'); - $pagedata->setValue('Data.Action', 'form_config'); - } elsif (&check_config()) { - $pagedata->setValue('Data.Warning', 'AlreadyConfigured'); - $pagedata->setValue('Data.Action', 'form_init'); - } else { - $pagedata->setValue('Data.Action', 'form_init'); - } - #################### init_do ######################## - } elsif ($action eq 'init_do') { - $current_admin_pw = &get_cbox_config("admin_pw"); - if ($current_admin_pw ne '' && $current_admin_pw ne $query->param('current_admin_password')) { - $pagedata->setValue('Data.Warning', 'WrongAdminPassword'); - $pagedata->setValue('Data.Action', 'form_init'); - } elsif ($query->param('admin_password') ne $query->param('admin_password2')) { - # different admin-passwords - $pagedata->setValue('Data.Warning', 'DifferentAdminPasswords'); - $pagedata->setValue('Data.Action', 'form_init'); - } elsif ($query->param('crypto_password') ne $query->param('crypto_password2')) { - # different crypto-passwords - $pagedata->setValue('Data.Warning', 'DifferentCryptoPasswords'); - $pagedata->setValue('Data.Action', 'form_init'); - } elsif ($query->param('crypto_password') eq '') { - # empty password - $pagedata->setValue('Data.Warning', 'EmptyCryptoPassword'); - $pagedata->setValue('Data.Action', 'form_init'); - } elsif ($query->param('confirm') ne $pagedata->getValue('Lang.Text.ConfirmInit','')) { - # wrong confirm string - $pagedata->setValue('Data.Warning', 'InitNotConfirmed'); - $pagedata->setValue('Data.Action', 'form_init'); - } else { - if (&volume_init($query->param('crypto_password'),$query->param('admin_password'))) { - #$pagedata->setValue('Data.Success', 'InitRunning'); - $pagedata->setValue('Data.Action', 'form_config'); - } else { - $pagedata->setValue('Data.Error', 'InitFailed'); - } - } - #################### config_ask ###################### - } elsif ($action eq 'config_ask') { - if ( ! &check_config()) { - $pagedata->setValue('Data.Warning', 'NotInitialized'); - $pagedata->setValue('Data.Action', 'form_init'); - } else { - $pagedata->setValue('Data.Action', 'form_config'); - } - #################### config_do ####################### - } elsif ($action eq 'config_do') { - my $query_language = $query->param('language'); - $query_language =~ m/^(\w+)$/; $query_language = $1; - my $query_timeout = $query->param('timeout'); - $query_timeout =~ m/^(\d+)$/; $query_timeout = $1; - if ( ! &check_config()) { - $pagedata->setValue('Data.Warning', 'NotInitialized'); - $pagedata->setValue('Data.Action', 'form_init'); - } else { - $current_admin_pw = &get_cbox_config("admin_pw"); - if ($current_admin_pw ne '' && $current_admin_pw ne $query->param('current_admin_password')) { - $pagedata->setValue('Data.Warning', 'WrongAdminPassword'); - $pagedata->setValue('Data.Action', 'form_config'); - } elsif ( ! &validate_language($query_language)) { - $pagedata->setValue('Data.Warning', 'InvalidLanguage'); - $pagedata->setValue('Data.Action', 'form_config'); - } elsif ( ! &validate_timeout($query_timeout)) { - $pagedata->setValue('Data.Warning', 'InvalidTimeOut'); - $pagedata->setValue('Data.Action', 'form_config'); - } else { - system($CB_SCRIPT, "set_config", "language", $query_language); - &load_selected_language($pagedata); - system($CB_SCRIPT, "set_config", "timeout", $query_timeout); - # check, if the ip was reconfigured - # TODO: IP stuff should be moved to the live-cd stuff - if (defined($query->param('ip')) && ($query->param('ip') ne &get_cbox_config("ip"))) { - # set the new value - system($CB_SCRIPT, "set_config", "ip", $query->param('ip')); - # redirect to the new address - $pagedata->setValue('Data.Redirect.URL', "https://" . $query->param('ip') . $ENV{'SCRIPT_NAME'}); - $pagedata->setValue('Data.Redirect.Delay', "5"); - # display a warning for the redirection - $pagedata->setValue('Data.Warning', 'IPAddressChanged'); - } - # check for success - if (defined($query->param('timeout')) - && (&get_cbox_config("timeout") ne $query->param('timeout'))) { - $pagedata->setValue('Data.Warning', 'ConfigTimeOutFailed'); - } elsif (defined($query->param('ip')) && - (&get_cbox_config("ip") ne $query->param('ip'))) { - $pagedata->setValue('Data.Warning', 'ConfigIPFailed'); - } elsif (defined($query->param('language')) - && (&get_cbox_config("language") ne $query->param('language'))) { - $pagedata->setValue('Data.Warning', 'ConfigLanguageFailed'); - } else { - #$pagedata->setValue('Data.Success', 'ConfigSaved'); - } - $pagedata->setValue('Data.Action', 'show_status'); - $pagedata->setValue('Data.Redirect.Action', 'show_status'); - $pagedata->setValue('Data.Redirect.Delay', "30"); - } - } - ############## change volume name ################### - } elsif ($action eq 'volume_name_set') { - my $volume_name = $query->param('volume_name'); - # remove all special characters which are not white-listed - $volume_name =~ s#[^\w \-_\#/\(\)\[\]]##g; - # untaint variable - $volume_name =~ m#^(.*)$#; $volume_name = $1; - if ($device eq '') { - &debug_msg(DEBUG_INFO, "invalid device: " . $query->param('device')); - $pagedata->setValue('Data.Warning', 'InvalidDevice'); - $pagedata->setValue('Data.Action', 'show_status'); - } elsif (&check_mounted($device)) { - $pagedata->setValue('Data.Warning','VolumeMayNotBeMounted'); - $pagedata->setValue('Data.Action', 'show_volume'); - } elsif ($volume_name eq '') { - $pagedata->setValue('Data.Warning','InvalidVolumeName'); - $pagedata->setValue('Data.Action', 'show_volume'); - } else { - &exec_cb_script('set_device_name',$device,$volume_name); - my $new_volume_name = &exec_cb_script('get_device_name',$device); - $pagedata->setValue('Data.Warning','SetVolumeNameFailed') unless ($new_volume_name eq $volume_name); - $pagedata->setValue('Data.Action', 'show_volume'); - } - ############ initialize volume (form) ############### - } elsif ($action eq 'volume_init_ask') { - if ($device eq '') { - &debug_msg(DEBUG_INFO, "invalid device: " . $query->param('device')); - $pagedata->setValue('Data.Warning', 'InvalidDevice'); - $pagedata->setValue('Data.Action', 'show_status'); - } elsif (&check_mounted($device)) { - $pagedata->setValue('Data.Warning','VolumeMayNotBeMounted'); - $pagedata->setValue('Data.Action', 'show_volume'); - } else { - $pagedata->setValue('Data.CurrentDisk.InitParams.encrypted',defined($query->param('encryption'))? 1 : 0); - $pagedata->setValue('Data.Action', 'form_init_partition'); - } - ############### initialize volume ################### - } elsif ($action eq 'volume_init_do') { - $current_admin_pw = &get_cbox_config("admin_pw"); - # remember the current "encryption" setting - just in case, we want to emit a warning and - # return to the same screen - $pagedata->setValue('Data.CurrentDisk.InitParams.encrypted',defined($query->param('encryption'))? 1 : 0); - if ($device eq '') { - &debug_msg(DEBUG_INFO, "invalid device: " . $query->param('device')); - $pagedata->setValue('Data.Warning', 'InvalidDevice'); - $pagedata->setValue('Data.Action', 'show_status'); - } elsif (&check_mounted($device)) { - $pagedata->setValue('Data.Warning','VolumeMayNotBeMounted'); - $pagedata->setValue('Data.Action', 'show_volume'); - } elsif ($current_admin_pw ne '' - && $current_admin_pw ne $query->param('current_admin_password')) { - $pagedata->setValue('Data.Warning', 'WrongAdminPassword'); - $pagedata->setValue('Data.Action', 'form_init_partition'); - } elsif (defined($query->param('encryption')) && ($query->param('crypto_password') ne $query->param('crypto_password2'))) { - # different crypto-passwords - $pagedata->setValue('Data.Warning', 'DifferentCryptoPasswords'); - $pagedata->setValue('Data.Action', 'form_init_partition'); - } elsif (defined($query->param('encryption')) && ($query->param('crypto_password') eq '')) { - # empty password - $pagedata->setValue('Data.Warning', 'EmptyCryptoPassword'); - $pagedata->setValue('Data.Action', 'form_init_partition'); - } elsif ($query->param('confirm') ne $pagedata->getValue('Lang.Text.ConfirmInit','')) { - # wrong confirm string - $pagedata->setValue('Data.Warning', 'InitNotConfirmed'); - $pagedata->setValue('Data.Action', 'form_init_partition'); - } else { - my $init_result; - if (defined($query->param('encryption'))) { - $init_result = &volume_init($device,$query->param('crypto_password')); - } else { - $init_result = &volume_init($device); - } - if ($init_result) { - #$pagedata->setValue('Data.Success', 'InitRunning'); - $pagedata->setValue('Data.Action', 'show_volume'); - } else { - $pagedata->setValue('Data.Error', 'InitFailed'); - $pagedata->setValue('Data.Action', 'show_volume'); - } - } - ################## volume info ###################### - } elsif ($action eq 'show_volume') { - if ($device eq '') { - &debug_msg(DEBUG_INFO, "invalid device: " . $query->param('device')); - $pagedata->setValue('Data.Warning', 'InvalidDevice'); - $pagedata->setValue('Data.Action', 'show_status'); - } else { - $pagedata->setValue('Data.Action', 'show_volume'); - } - #################### status ######################### - } elsif ($action eq 'show_status') { - if ( ! &check_config()) { - $pagedata->setValue('Data.Warning', 'NotInitialized'); - $pagedata->setValue('Data.Action', 'form_init'); - } elsif (&check_init_running()) { - $pagedata->setValue('Data.Warning', 'InitNotFinished'); - $pagedata->setValue('Data.Action', 'empty'); - $pagedata->setValue('Data.Redirect.Action', 'form_config'); - $pagedata->setValue('Data.Redirect.Delay', "30"); - } else { - $pagedata->setValue('Data.Action', 'show_status'); - $pagedata->setValue('Data.Redirect.Action', 'show_status'); - $pagedata->setValue('Data.Redirect.Delay', "60"); - } - ################### box_purge ####################### - # if we find an existing config partition, then check the adminpw - } elsif ($action eq 'do_purge') { - if ( &check_config()) { - $current_admin_pw = &get_cbox_config("admin_pw"); - if ($current_admin_pw ne '' && $current_admin_pw ne $query->param('current_admin_password')) { - $pagedata->setValue('Data.Warning', 'WrongAdminPassword'); - $pagedata->setValue('Data.Action', 'form_config'); - } else { - &box_purge; - $pagedata->setValue('Data.Action', 'form_init'); - } - } - ################### unknown ######################### - } else { - $pagedata->setValue('Data.Error', 'UnknownAction'); - } -#################### default action ########################## -# check for a harddisk again, as this check was skipped -# because there was no action defined -} elsif ( ! &is_harddisk_available()) { - $pagedata->setValue('Data.Error', 'NoHardDisk'); -} else { - if (&check_init_running()) { - $pagedata->setValue('Data.Warning', 'InitNotFinished'); - $pagedata->setValue('Data.Action', 'empty'); - $pagedata->setValue('Data.Redirect.Action', 'form_config'); - $pagedata->setValue('Data.Redirect.Delay', "60"); - } elsif (&check_config()) { - $pagedata->setValue('Data.Action', 'show_status'); - $pagedata->setValue('Data.Redirect.Action', 'show_status'); - $pagedata->setValue('Data.Redirect.Delay', "60"); - } else { - $pagedata->setValue('Data.Action', 'form_init'); - } -} - -# check state of the cryptobox -$pagedata->setValue('Data.Status.Config', &check_config() ? 1 : 0); -$pagedata->setValue('Data.Status.InitRunning', &check_init_running() ? 1 : 0); - -my $output = &get_cbox_config("admin_pw"); -$pagedata->setValue('Data.Config.AdminPasswordIsSet', 1) if ($output ne ''); - -$output = join ("
", &exec_cb_script("diskinfo")); -$pagedata->setValue('Data.PartitionInfo',"$output"); - -# preset config settings for clearsilver -$pagedata->setValue('Data.Config.IP', &get_cbox_config("ip")); -$pagedata->setValue('Data.Config.TimeOut', &get_cbox_config("timeout")); -$pagedata->setValue('Data.Config.Language', &get_cbox_config("language")); - -# read log and add html linebreaks -$output = ''; -if (-e "$LOG_FILE") { - open(LOGFILE, "< $LOG_FILE"); - while () { $output .= "$_
" } - close(LOGFILE); -} -$pagedata->setValue('Data.Log',"$output"); - -$pagedata->setValue('Data.Status.DevelopmentMode', 1) if ($IS_DEVEL); - -# save QUERY_STRING (e.g. for weblang-links) -my $querystring = $ENV{'QUERY_STRING'}; -# remove weblang setting -$querystring =~ s/weblang=\w\w&?//; -$pagedata->setValue('Data.QueryString', "$querystring") if ($querystring ne ''); - -$pagedata->setValue('Data.Version', CRYPTOBOX_VERSION); - -my ($one_disk, $one_name, $isActive, $isEncrypted, $isPlaintext); -my $avail_counter = 0; my $active_counter = 0; my $passive_counter = 0; -for $one_disk (&get_available_disks()) { - $one_name = &get_disk_name($one_disk); - $isEncrypted = &check_device_encryption($one_disk); - $isPlaintext = &check_device_plaintext($one_disk); - $pagedata->setValue("Data.Disks.available.${avail_counter}.device",$one_disk); - $pagedata->setValue("Data.Disks.available.${avail_counter}.name",$one_name); - $pagedata->setValue("Data.Disks.available.${avail_counter}.encryption", $isEncrypted? 1 : 0); - $pagedata->setValue("Data.Disks.available.${avail_counter}.plaintext", $isPlaintext? 1 : 0); - $isActive = &check_mounted($one_disk); - if ($isActive) { - $pagedata->setValue("Data.Disks.available.${avail_counter}.isActive",1); - $pagedata->setValue("Data.Disks.active.${active_counter}.device",$one_disk); - $pagedata->setValue("Data.Disks.active.${active_counter}.name",$one_name); - $pagedata->setValue("Data.Disks.active.${active_counter}.encryption", $isEncrypted? 1 : 0); - $pagedata->setValue("Data.Disks.active.${active_counter}.plaintext", $isPlaintext? 1 : 0); - $active_counter++; - } else { - $pagedata->setValue("Data.Disks.available.${avail_counter}.isActive",0); - $pagedata->setValue("Data.Disks.passive.${passive_counter}.device",$one_disk); - $pagedata->setValue("Data.Disks.passive.${passive_counter}.name",$one_name); - $pagedata->setValue("Data.Disks.passive.${passive_counter}.encryption", $isEncrypted? 1 : 0); - $pagedata->setValue("Data.Disks.passive.${passive_counter}.plaintext", $isPlaintext? 1 : 0); - $passive_counter++; - } - if ($device eq $one_disk) { - $pagedata->setValue('Data.CurrentDisk.device', $one_disk); - $pagedata->setValue('Data.CurrentDisk.name', $one_name); - $pagedata->setValue('Data.CurrentDisk.active', $isActive? 1 : 0); - $pagedata->setValue("Data.CurrentDisk.encryption", $isEncrypted? 1 : 0); - $pagedata->setValue("Data.CurrentDisk.plaintext", $isPlaintext? 1 : 0); - # retrieve capacity information if the device is mounted - if (&check_mounted($device)) { - my $cap_info = &exec_cb_script("get_capacity_info",$device); - # filter the relevant values (a simple split is not working, as the device name may - # contain spaces - $cap_info =~ m#^.*\s+([0-9\.,]+\w)\s+([0-9\.,]+\w)\s+([0-9\.,]+\w)\s+([0-9\.,]+\%)\s+#; - my ($cap_size, $cap_used, $cap_free, $cap_percent) = ($1, $2, $3, $4); - $pagedata->setValue('Data.CurrentDisk.capacity.used', $cap_used); - $pagedata->setValue('Data.CurrentDisk.capacity.free', $cap_free); - $pagedata->setValue('Data.CurrentDisk.capacity.size', $cap_size); - $pagedata->setValue('Data.CurrentDisk.capacity.percent', $cap_percent); - } - } - $avail_counter++; -} - -&render(); - -close STDOUT; - -exit 0; - diff --git a/bin-perl-old/cryptobox_wrapper.c b/bin-perl-old/cryptobox_wrapper.c deleted file mode 100644 index b2f6e5b..0000000 --- a/bin-perl-old/cryptobox_wrapper.c +++ /dev/null @@ -1,21 +0,0 @@ -/* $Id$ */ - -// define the location of your cryptobox.pl file in this header file -#include "cryptobox_wrapper.h" - -#include -#include - -/* C wrapper to allow cryptobox to run under a different uid */ -/* Copyright (C) 02006, senselab, All Rights Reserved */ -/* See the LICENSE file in this distribution for copyright information */ - -int main(int argc, char *argv[]) { - - // necessary for mount action of the root-script - setreuid(geteuid(), -1); - - argv[0] = EXEC_PATH; - execv(EXEC_PATH, argv); - -} diff --git a/bin-perl-old/ro-system.sh b/bin-perl-old/ro-system.sh deleted file mode 100644 index 2d6e9d7..0000000 --- a/bin-perl-old/ro-system.sh +++ /dev/null @@ -1,191 +0,0 @@ -function create_config() -# Parameter: device -{ - local device=$1 - unload_config - # create the new configuration filesystem if it is not static - if [ "$USE_SEPERATE_CONFIG_PARTITION" != "1" ] - then log_msg "Using static configuration ..." - else log_msg "Creating config filesystem ..." - "$ROOT_PERM_SCRIPT" create_config "$device" - log_msg "Mounting config partition ..." - "$ROOT_PERM_SCRIPT" mount_config "$device" - "$ROOT_PERM_SCRIPT" remount_config rw - fi - log_msg "Copying configuration defaults ..." - cp -a "$CONFIG_DEFAULTS_DIR/." "$CONFIG_DIR" - - log_msg "Copying temporary certificate file to config filesystem ..." - log_msg "Setting inital values ..." - # beware: config_set_value remounts the config partition read-only - config_set_value "ip" "$(get_current_ip)" - # create database of readable names - config_set_value "names.db" "" - # create a marker to recognize a cryptobox partition - # this should be the last step, to prevent a half-initialized state - config_set_value "$CONFIG_MARKER" "$(date -I)" -} - - -function find_harddisk() -# look for the harddisk to be partitioned -{ - local device=$(get_available_disks | head -1) - if [ -z "$device" ] ; then - log_msg "no valid harddisk for initialisation found!" - cat /proc/partitions >>"$LOG_FILE" - # do not return with an error, to avoid a failing of the script ('break on error') - # the caller of this function should handle an empty return string - fi - echo -n "$device" -} - - -function load_config() -{ - unload_config - local status=0 - # look for a configuration partition - [ "$USE_SEPERATE_CONFIG_PARTITION" = "1" ] && \ - list_partitions_of_type config | while read part && [ "$status" = 0 ] - do log_msg "configuraton found on $part" - # error check? - "$ROOT_PERM_SCRIPT" mount_config "/dev/$part" - status=1 - done - if is_config_active - then return 0 - else log_msg "failed to locate config partition" - return 1 - fi -} - - -function unload_config() -{ - is_config_active || return - # only try to unmount, if it is not static (the config of a live-cd is always dynamic) - if [ "$USE_SEPERATE_CONFIG_PARTITION" = "1" ] - then "$ROOT_PERM_SCRIPT" umount_config - else return 0 - fi -} - - -# rename to "prepare_cryptobox" -function init_cryptobox() -# this is only the first part of initialisation that takes no time - good for a smooth web interface -{ - local device=$(find_harddisk) - [ -z "$device" ] && log_msg 'No valid harddisk found!' && return 1 - turn_off_all_crypto - unload_config || true - log_msg "Partitioning the device ($device) ..." - "$ROOT_PERM_SCRIPT" partition_disk "$device" "0,1,L \n,,L\n" - log_msg "Initializing config partition on ${device}1 ..." - # TODO: this should not be hard-coded - create_config "${device}1" -} - - -case "$ACTION" of - network-up ) - if [ "$SKIP_NETWORK_CONFIG" != 1 ] - then conf_ip=$(config_get_value "ip") - log_msg "Configuring $NET_IFACE for $conf_ip ..." - echo "Configuring network interface for $NET_IFACE: $conf_ip" - "$IFCONFIG" "$NET_IFACE" "$conf_ip" - fi - if [ "$EXEC_FIREWALL_RULES" = 1 ] - then log_msg "Starting the firewall ..." - "$FIREWALL_SCRIPT" start - fi - if [ "$USE_STUNNEL" = 1 ] - then # start stunnel - if [ -f "$CERT_FILE" ] - then USE_CERT=$CERT_FILE - else USE_CERT=$CERT_TEMP - $MAKE_CERT_SCRIPT "$CERT_TEMP" >>"$LOG_FILE" 2>&1 - # TODO: this could be dangerous - right? - # this is necessary, to allow www-data to copy the certificate - chown "$WEB_USER" "$CERT_TEMP" - fi - log_msg "Starting stunnel ..." - stunnel -p "$USE_CERT" -r localhost:80 -d 443 \ - || echo "$USE_CERT not found - not starting stunnel" - fi - ;; - network-down ) - if [ "$EXEC_FIREWALL_RULES" = 1 ] - then log_msg "Stopping the firewall ..." - "$FIREWALL_SCRIPT" stop - fi - if [ "$USE_STUNNEL" = 1 ] - then log_msg "Stopping stunnel ..." - # TODO: what about a pid? - killall stunnel 2>/dev/null || true - fi - if [ "$SKIP_NETWORK_CONFIG" != 1 ] - then log_msg "Shutting the network interface down ..." - "$IFCONFIG" "$NET_IFACE" down - fi - ;; - services-up ) - # the mount point has to be writeable - # this action is called as root - so we are allowed to umount - # TODO: do this only for ro-filesystem - # TODO: this way of mounting is evil - if mountpoint -q "$MNT_PARENT" - then true - else mount -t tmpfs tmpfs "$MNT_PARENT" - fi - true - ;; - services-down ) - # this action is called as root - so we are allowed to umount - mountpoint -q "$MNT_PARENT" && umount "$MNT_PARENT" - # TODO: we should not depend on samba and thttpd - # /etc/init.d/samba stop || true - # /etc/init.d/thttpd stop || true - true - ;; - is_harddisk_available ) - [ -z "$(find_harddisk)" ] && exit 1 - exit 0 - ;; - update_ip_address ) - # reconfigure the network interface to a new IP address - # wait for 5 seconds to finish present http requests - if [ "$SKIP_NETWORK_CONFIG" != 1 ] - then echo -n "sleep 5; \"$ROOT_PERM_SCRIPT\" update_network" | at now - fi - ;; - poweroff ) - log_msg "Turning off the CryptoBox ..." - turn_off_all_crypto - echo "poweroff" | at now - ;; - reboot ) - log_msg "Rebooting the CryptoBox ..." - turn_off_all_crypto - echo "reboot" | at now - ;; - * ) - echo "Syntax: $(basename $0) ACTION" - echo " config-up - scan for configuration partition and mount it" - echo " config-down - unmount configuration partition" - echo " network-up - enable network interface" - echo " network-down - disable network interface" - echo " services-up - run some cryptobox specific daemons" - echo " services-down - stop some cryptobox specific daemons" - echo " update_ip_address - update the network interface after reconfiguration" - echo " is_config_mounted - check, if configuration partition is mounted" - echo " box-init - initialize cryptobox (ALL data is LOST)" - echo " box-init-fg - the first part of initialization" - echo " box-init-bg - the last part of initialization (background)" - echo " is_harddisk_available - check, if there is a usable harddisk" - echo " poweroff - shutdown the cryptobox" - echo " reboot - reboot the cryptobox" - echo - ;; - esac diff --git a/bin/CryptoBoxRootActions b/bin/CryptoBoxRootActions index 22664d3..c519729 100755 --- a/bin/CryptoBoxRootActions +++ b/bin/CryptoBoxRootActions @@ -48,6 +48,9 @@ allowedProgs = { "blkid": "/sbin/blkid", } +## this line is necessary to run unittests - otherwise these tests are too strict +# TODO: check this before every release! +OVERRIDE_FILECHECK = True DEV_TYPES = { "pipe":1, "char":2, "dir":4, "block":6, "file":8, "link":10, "socket":12} EVENT_MARKER = '_event_scripts_' @@ -55,6 +58,9 @@ EVENT_MARKER = '_event_scripts_' def checkIfFileIsSafe(fname): """check if the file and its parents are only writeable for root""" + ## the override setting may be turned off temporarily to allow unittests + if OVERRIDE_FILECHECK: + return True props = os.stat(fname) ## check if it is owned by non-root if props.st_uid != 0: return False diff --git a/bin/CryptoBoxWebserver b/bin/CryptoBoxWebserver index b2f9d46..e676cee 100755 --- a/bin/CryptoBoxWebserver +++ b/bin/CryptoBoxWebserver @@ -84,13 +84,7 @@ class CryptoBoxWebserver: sys.stderr.write("Error: the CryptoBox is misconfigured - please fix it!\n") sys.stderr.write("%s\n" % str(errMsg)) sys.exit(1) - #expose static content: - #I currently have no idea how to cleanly extract the stylesheet path from - #the config object without an extra cryptobox.core.main.CryptoBoxProps instance. - #perhaps put config handling into a separate class in CryptoBox.py? - # - # the following manual mapping is necessary, as we may not use relative - # paths in the config file + ## expose static content and set options cherrypy.config.update({ "global": { "server.socket_port" : int(opts.port), diff --git a/bin/cryptobox-unittests.conf b/bin/cryptobox-unittests.conf index 3cf6f8a..5808dba 100644 --- a/bin/cryptobox-unittests.conf +++ b/bin/cryptobox-unittests.conf @@ -84,5 +84,5 @@ umount = /bin/umount nice = /usr/bin/nice super = /usr/bin/super # this is the "program" name as defined in /etc/super.tab -CryptoBoxRootActions = CryptoBoxRootActions +CryptoBoxRootActions = CryptoBoxRootActionsLocal diff --git a/bin/do_unittests.sh b/bin/do_unittests.sh index 00e3608..e410613 100755 --- a/bin/do_unittests.sh +++ b/bin/do_unittests.sh @@ -2,11 +2,26 @@ # # run this script _before_ you do a commit and fix errors before uploading # +# preparations: +# - add the following lines to /etc/super.tab: +# :global_options relative_path=y +# CryptoBoxRootActionsLocal ./CryptoBoxRootActions cryptobox +# BASE_DIR=$(cd "$(dirname $0)/.."; pwd) export PYTHONPATH=$BASE_DIR/src +function disable_filecheck() +{ + sed -i "s/^OVERRIDE_FILECHECK = .*$/OVERRIDE_FILECHECK = True/" "$BASE_DIR/bin/CryptoBoxRootActions" +} + +function enable_filecheck() +{ + sed -i "s/^OVERRIDE_FILECHECK = .*$/OVERRIDE_FILECHECK = False/" "$BASE_DIR/bin/CryptoBoxRootActions" +} + # check if /dev/loop1 is available - otherwise some tests will fail! if /sbin/losetup /dev/loop1 &>/dev/null || test -e /dev/ubdb then true @@ -28,6 +43,8 @@ while test $# -gt 0 # chdir to 'bin' - all config settings depend on this cd "${BASE_DIR}/bin" +disable_filecheck + if test -n "$files" then # do the specified tests for a in $files @@ -39,3 +56,4 @@ if test -n "$files" done fi +enable_filecheck diff --git a/bin/run_webserver.sh b/bin/run_webserver.sh index 6e7cd83..587e069 100755 --- a/bin/run_webserver.sh +++ b/bin/run_webserver.sh @@ -9,6 +9,8 @@ BIN_DIR=$(cd "$(dirname $0)"; pwd) ## add the local python directory to the search path export PYTHONPATH="$BIN_DIR/../src" +## disable ssl detection +#export HTTPS=1 ## create necessary directories mkdir -p "$BIN_DIR/../ttt/mnt" diff --git a/changelog b/changelog index f57e3f5..28ce450 100644 --- a/changelog +++ b/changelog @@ -1,4 +1,13 @@ -Version 0.3 - 02/15/02007 +Version 0.3.0.1 - 02/18/02007 + * fixed broken interface of 'partition' plugin for ie + * fixed rendering bug of volume_properties for ie + * fixed screen width in a mozilla/ie compatible way + * fixed config management of 'plugin_manager' plugin + * fixed filtering of log level messages for 'logs' plugin + * added some german translations + * changed default language to english + +Version 0.3.0 - 02/15/02007 * new interface * manage multiple disks * support custom partitioning diff --git a/conf-examples/cryptobox.conf b/conf-examples/cryptobox.conf index 778773b..9024751 100644 --- a/conf-examples/cryptobox.conf +++ b/conf-examples/cryptobox.conf @@ -67,11 +67,10 @@ Stylesheet = cryptobox-misc/cryptobox.css # comma seperated list of available languages for the web interface # the first language is the default # all other languages serve as fallbacks for an incomplete translation -# please check the current state of the translation before activating a language -# see /usr/share/locale for a list of possible language codes -# if a translated string is not available, then the english original is displayed # available languages: cs, da, de, en, es, fi, fr, hu, it, ja, nl, pl, pt, ru, sl, sv -Languages = de, en, fr, es, sl +# well supported languages: en, de +# partly translated: sl +Languages = en, de, sl [Programs] diff --git a/debian/changelog b/debian/changelog index f80b8e6..7676fc8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +cryptobox (0.3.0.1-1) unstable; urgency=low + + * new upstream release + + -- Lars Kruse Mon, 18 Dec 2006 09:07:32 +0100 + cryptobox (0.3.0-1) unstable; urgency=low * first release of the CryptoBox as a seperate package diff --git a/debian/cryptobox-server.init b/debian/cryptobox-server.init index ddd10bf..a881f90 100644 --- a/debian/cryptobox-server.init +++ b/debian/cryptobox-server.init @@ -32,6 +32,8 @@ CONF_FILE=/etc/cryptobox-server/cryptobox.conf [ "$NO_START" = "1" ] && exit 0 DAEMON=/usr/sbin/CryptoBoxWebserver +# default install location is /usr/bin/ - debian installation requires /usr/sbin/ +test -x "$DAEMON" || DAEMON=/usr/bin/CryptoBoxWebserver PYTHON_EXEC=/usr/bin/python PIDFILE=/var/run/cryptobox-server/webserver.pid DESC="CryptoBox Daemon (webinterface)" diff --git a/debian/rules b/debian/rules index 64c1282..7543328 100755 --- a/debian/rules +++ b/debian/rules @@ -59,11 +59,8 @@ install: build mv $(DEB_BUILD_DIR)/usr/bin/CryptoBoxRootActions $(DEB_BUILD_DIR)/usr/sbin/ # remove tests rm -r $(CB_PYDIR)/tests - # remove duplicate documentation files - rm -r $(CB_PYDIR)/doc - # move shared files - mv $(CB_PYDIR)/share/* $(DEB_BUILD_DIR)/usr/share/cryptobox-server/ - rmdir $(CB_PYDIR)/share + # remove doc directory (installed by debian scripts anyway) + rm -r $(DEB_BUILD_DIR)/usr/share/doc/cryptobox-server # install lintian override file: for multiple dependency caused by {python:Depends} install -D -m 644 debian/cryptobox-server.lintian \ $(DEB_BUILD_DIR)/usr/share/lintian/overrides/cryptobox-server diff --git a/design/background_frame_corner.svg b/design/background_frame_corner.svg index 5b44c25..b8d2d03 100644 --- a/design/background_frame_corner.svg +++ b/design/background_frame_corner.svg @@ -21,6 +21,44 @@ inkscape:export-ydpi="76.669998"> + + + + + + + + + + + + + + volume_property_framevolume_property_frame1800x1600 + + help_background1600x600 + + environment_warning_background1600x400 diff --git a/intl/cryptobox-server.pot b/intl/cryptobox-server.pot index bf92c49..6f41c9d 100644 --- a/intl/cryptobox-server.pot +++ b/intl/cryptobox-server.pot @@ -1,21 +1,3 @@ -msgid "" -msgstr "" -"Project-Id-Version: CryptoBox-Server 0.3\n" -"Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: sense.lab \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: utf-8\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Translate Toolkit 0.10.1\n" - -#: Name -msgid "English" -msgstr "" - #: Title.Top msgid "The CryptoBox" msgstr "" @@ -57,11 +39,27 @@ msgid "The CryptoBox is a project of" msgstr "" #: Text.ContainerName -msgid "Container's name" +msgid "Volume's name" msgstr "" -#: Button.HelpForForm -msgid "Get help" +#: Button.EnableHelp +msgid "Enable help" +msgstr "" + +#: Button.DisableHelp +msgid "Disable help" +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Title +msgid "Disk is busy" +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Text +msgid "This disk is currently busy. Please wait for a moment." +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Link.Text +msgid "Show all disks" msgstr "" #: WarningMessage.AccessDenied.Title @@ -69,7 +67,7 @@ msgid "Invalid access credentials" msgstr "" #: WarningMessage.AccessDenied.Text -msgid "Sorry - you are not allowed to do this!" +msgid "Sorry - you did not enter the right credentials! Maybe you should try the default setting: username=>'admin' / password=>'admin'." msgstr "" #: WarningMessage.EmptyPassword.Title @@ -105,15 +103,15 @@ msgid "The device you have chosen is invalid!" msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Title -msgid "The container is mounted" +msgid "The volume is open" msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Text -msgid "This action is not available while the container is active. Please turn it off first." +msgid "This action is not available while the volume is active. Please close it first." msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Link.Text -msgid "Deactivate volume" +msgid "Close volume" msgstr "" #: WarningMessage.InvalidAction.Title @@ -151,59 +149,3 @@ msgstr "" #: EnvironmentWarning.NoSSL.Link.Text msgid "Use encrypted connection" msgstr "" - -#: AdviceMessage.VolumeIsBusy.Title -msgid "Disk is busy" -msgstr "" - -#: AdviceMessage.VolumeIsBusy.Text -msgid "This disk is currently busy. Please wait for a moment." -msgstr "" - -#: AdviceMessage.VolumeIsBusy.Link.Text -msgid "Show all disks" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! (Try user 'admin' and password 'admin' and change this setting soon.)" -msgstr "" - -#: WarningMessage.AccessDenied.Link.Text -msgid "Change password now" -msgstr "" - -#: Text.ContainerName -msgid "Volume's name" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! (Maybe try the default setting: username=>'admin' / password=>'admin'.)" -msgstr "" - -#: Text.ProjectNote -msgid "The CryptoBox is a project by" -msgstr "" - -#: Button.EnableHelp -msgid "Enable help" -msgstr "" - -#: Button.DisableHelp -msgid "Disable help" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! Maybe you should try the default setting: username=>'admin' / password=>'admin'." -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Title -msgid "The volume is open" -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Text -msgid "This action is not available while the volume is active. Please close it first." -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Link.Text -msgid "Close volume" -msgstr "" diff --git a/intl/cs/cryptobox-server.po b/intl/cs/cryptobox-server.po index 3d2dcf7..d41f89a 100644 --- a/intl/cs/cryptobox-server.po +++ b/intl/cs/cryptobox-server.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:38+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,10 +13,6 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Translate Toolkit 0.10.1\n" -#: Name -msgid "English" -msgstr "" - #: Title.Top msgid "The CryptoBox" msgstr "" @@ -58,11 +54,27 @@ msgid "The CryptoBox is a project of" msgstr "" #: Text.ContainerName -msgid "Container's name" +msgid "Volume's name" msgstr "" -#: Button.HelpForForm -msgid "Get help" +#: Button.EnableHelp +msgid "Enable help" +msgstr "" + +#: Button.DisableHelp +msgid "Disable help" +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Title +msgid "Disk is busy" +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Text +msgid "This disk is currently busy. Please wait for a moment." +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Link.Text +msgid "Show all disks" msgstr "" #: WarningMessage.AccessDenied.Title @@ -70,7 +82,7 @@ msgid "Invalid access credentials" msgstr "" #: WarningMessage.AccessDenied.Text -msgid "Sorry - you are not allowed to do this!" +msgid "Sorry - you did not enter the right credentials! Maybe you should try the default setting: username=>'admin' / password=>'admin'." msgstr "" #: WarningMessage.EmptyPassword.Title @@ -106,15 +118,15 @@ msgid "The device you have chosen is invalid!" msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Title -msgid "The container is mounted" +msgid "The volume is open" msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Text -msgid "This action is not available while the container is active. Please turn it off first." +msgid "This action is not available while the volume is active. Please close it first." msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Link.Text -msgid "Deactivate volume" +msgid "Close volume" msgstr "" #: WarningMessage.InvalidAction.Title @@ -152,59 +164,3 @@ msgstr "" #: EnvironmentWarning.NoSSL.Link.Text msgid "Use encrypted connection" msgstr "" - -#: AdviceMessage.VolumeIsBusy.Title -msgid "Disk is busy" -msgstr "" - -#: AdviceMessage.VolumeIsBusy.Text -msgid "This disk is currently busy. Please wait for a moment." -msgstr "" - -#: AdviceMessage.VolumeIsBusy.Link.Text -msgid "Show all disks" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! (Try user 'admin' and password 'admin' and change this setting soon.)" -msgstr "" - -#: WarningMessage.AccessDenied.Link.Text -msgid "Change password now" -msgstr "" - -#: Text.ContainerName -msgid "Volume's name" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! (Maybe try the default setting: username=>'admin' / password=>'admin'.)" -msgstr "" - -#: Text.ProjectNote -msgid "The CryptoBox is a project by" -msgstr "" - -#: Button.EnableHelp -msgid "Enable help" -msgstr "" - -#: Button.DisableHelp -msgid "Disable help" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! Maybe you should try the default setting: username=>'admin' / password=>'admin'." -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Title -msgid "The volume is open" -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Text -msgid "This action is not available while the volume is active. Please close it first." -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Link.Text -msgid "Close volume" -msgstr "" diff --git a/intl/da/cryptobox-server.po b/intl/da/cryptobox-server.po index 3d2dcf7..d41f89a 100644 --- a/intl/da/cryptobox-server.po +++ b/intl/da/cryptobox-server.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:38+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,10 +13,6 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Translate Toolkit 0.10.1\n" -#: Name -msgid "English" -msgstr "" - #: Title.Top msgid "The CryptoBox" msgstr "" @@ -58,11 +54,27 @@ msgid "The CryptoBox is a project of" msgstr "" #: Text.ContainerName -msgid "Container's name" +msgid "Volume's name" msgstr "" -#: Button.HelpForForm -msgid "Get help" +#: Button.EnableHelp +msgid "Enable help" +msgstr "" + +#: Button.DisableHelp +msgid "Disable help" +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Title +msgid "Disk is busy" +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Text +msgid "This disk is currently busy. Please wait for a moment." +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Link.Text +msgid "Show all disks" msgstr "" #: WarningMessage.AccessDenied.Title @@ -70,7 +82,7 @@ msgid "Invalid access credentials" msgstr "" #: WarningMessage.AccessDenied.Text -msgid "Sorry - you are not allowed to do this!" +msgid "Sorry - you did not enter the right credentials! Maybe you should try the default setting: username=>'admin' / password=>'admin'." msgstr "" #: WarningMessage.EmptyPassword.Title @@ -106,15 +118,15 @@ msgid "The device you have chosen is invalid!" msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Title -msgid "The container is mounted" +msgid "The volume is open" msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Text -msgid "This action is not available while the container is active. Please turn it off first." +msgid "This action is not available while the volume is active. Please close it first." msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Link.Text -msgid "Deactivate volume" +msgid "Close volume" msgstr "" #: WarningMessage.InvalidAction.Title @@ -152,59 +164,3 @@ msgstr "" #: EnvironmentWarning.NoSSL.Link.Text msgid "Use encrypted connection" msgstr "" - -#: AdviceMessage.VolumeIsBusy.Title -msgid "Disk is busy" -msgstr "" - -#: AdviceMessage.VolumeIsBusy.Text -msgid "This disk is currently busy. Please wait for a moment." -msgstr "" - -#: AdviceMessage.VolumeIsBusy.Link.Text -msgid "Show all disks" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! (Try user 'admin' and password 'admin' and change this setting soon.)" -msgstr "" - -#: WarningMessage.AccessDenied.Link.Text -msgid "Change password now" -msgstr "" - -#: Text.ContainerName -msgid "Volume's name" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! (Maybe try the default setting: username=>'admin' / password=>'admin'.)" -msgstr "" - -#: Text.ProjectNote -msgid "The CryptoBox is a project by" -msgstr "" - -#: Button.EnableHelp -msgid "Enable help" -msgstr "" - -#: Button.DisableHelp -msgid "Disable help" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! Maybe you should try the default setting: username=>'admin' / password=>'admin'." -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Title -msgid "The volume is open" -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Text -msgid "This action is not available while the volume is active. Please close it first." -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Link.Text -msgid "Close volume" -msgstr "" diff --git a/intl/en/cryptobox-server.po b/intl/en/cryptobox-server.po index fd005ba..77e9505 100644 --- a/intl/en/cryptobox-server.po +++ b/intl/en/cryptobox-server.po @@ -1,9 +1,3 @@ -msgid "" -msgstr "" - -#: Name -msgid "English" -msgstr "English" #: Title.Top msgid "The CryptoBox" @@ -46,20 +40,36 @@ msgid "The CryptoBox is a project of" msgstr "The CryptoBox is a project of" #: Text.ContainerName -msgid "Container's name" -msgstr "Container's name" +msgid "Volume's name" +msgstr "Volume's name" -#: Button.HelpForForm -msgid "Get help" -msgstr "Get help" +#: Button.EnableHelp +msgid "Enable help" +msgstr "Enable help" + +#: Button.DisableHelp +msgid "Disable help" +msgstr "Disable help" + +#: AdviceMessage.VolumeIsBusy.Title +msgid "Disk is busy" +msgstr "Disk is busy" + +#: AdviceMessage.VolumeIsBusy.Text +msgid "This disk is currently busy. Please wait for a moment." +msgstr "This disk is currently busy. Please wait for a moment." + +#: AdviceMessage.VolumeIsBusy.Link.Text +msgid "Show all disks" +msgstr "Show all disks" #: WarningMessage.AccessDenied.Title msgid "Invalid access credentials" msgstr "Invalid access credentials" #: WarningMessage.AccessDenied.Text -msgid "Sorry - you are not allowed to do this!" -msgstr "Sorry - you are not allowed to do this!" +msgid "Sorry - you did not enter the right credentials! Maybe you should try the default setting: username=>'admin' / password=>'admin'." +msgstr "Sorry - you did not enter the right credentials! Maybe you should try the default setting: username=>'admin' / password=>'admin'." #: WarningMessage.EmptyPassword.Title msgid "Missing password" @@ -94,34 +104,24 @@ msgid "The device you have chosen is invalid!" msgstr "The device you have chosen is invalid!" #: WarningMessage.VolumeMayNotBeMounted.Title -msgid "The container is mounted" -msgstr "The container is mounted" +msgid "The volume is open" +msgstr "The volume is open" #: WarningMessage.VolumeMayNotBeMounted.Text -msgid "" -"This action is not available while the container is active. Please turn it " -"off first." -msgstr "" -"This action is not available while the container is active. Please turn it " -"off first." +msgid "This action is not available while the volume is active. Please close it first." +msgstr "This action is not available while the volume is active. Please close it first." #: WarningMessage.VolumeMayNotBeMounted.Link.Text -msgid "Deactivate volume" -msgstr "Deactivate volume" +msgid "Close volume" +msgstr "Close volume" #: WarningMessage.InvalidAction.Title msgid "Invalid request" msgstr "Invalid request" #: WarningMessage.InvalidAction.Text -msgid "" -"Sorry - I do not know how to handle this request. If you think, that this is " -"a bug, then you should send the most recent part of the CryptoBox log to " -"info@cryptobox.org." -msgstr "" -"Sorry - I do not know how to handle this request. If you think, that this is " -"a bug, then you should send the most recent part of the CryptoBox log to " -"info@cryptobox.org." +msgid "Sorry - I do not know how to handle this request. If you think, that this is a bug, then you should send the most recent part of the CryptoBox log to info@cryptobox.org." +msgstr "Sorry - I do not know how to handle this request. If you think, that this is a bug, then you should send the most recent part of the CryptoBox log to info@cryptobox.org." #: WarningMessage.InvalidAction.Link.Text msgid "View log" @@ -132,22 +132,12 @@ msgid "Something weird happened" msgstr "Something weird happened" #: WarningMessage.RuntimeError.Text -msgid "" -"We (the developer of the CryptoBox) would like to fix this problem for you " -"and others. Please send the most recent part of the CryptoBox log to " -"info@cryptobox.org. Thanks for your contribution!" -msgstr "" -"We (the developer of the CryptoBox) would like to fix this problem for you " -"and others. Please send the most recent part of the CryptoBox log to " -"info@cryptobox.org. Thanks for your contribution!" +msgid "We (the developer of the CryptoBox) would like to fix this problem for you and others. Please send the most recent part of the CryptoBox log to info@cryptobox.org. Thanks for your contribution!" +msgstr "We (the developer of the CryptoBox) would like to fix this problem for you and others. Please send the most recent part of the CryptoBox log to info@cryptobox.org. Thanks for your contribution!" #: EnvironmentWarning.ReadOnlyConfig.Text -msgid "" -"Read-only setup detected - probably you should create a configuration " -"partition." -msgstr "" -"Read-only setup detected - probably you should create a configuration " -"partition." +msgid "Read-only setup detected - probably you should create a configuration partition." +msgstr "Read-only setup detected - probably you should create a configuration partition." #: EnvironmentWarning.ReadOnlyConfig.Link.Text msgid "Initialize partition" @@ -161,77 +151,65 @@ msgstr "The connection is not encrypted - passwords can be easily intercepted." msgid "Use encrypted connection" msgstr "Use encrypted connection" -#: AdviceMessage.VolumeIsBusy.Title -msgid "Disk is busy" -msgstr "Disk is busy" +#, fuzzy +#~ msgid "" +#~ msgstr "" +#~ "Project-Id-Version: PACKAGE VERSION\n" +#~ "Report-Msgid-Bugs-To: \n" +#~ "POT-Creation-Date: 2006-12-17 23:59+0100\n" +#~ "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +#~ "Last-Translator: FULL NAME \n" +#~ "Language-Team: LANGUAGE \n" +#~ "MIME-Version: 1.0\n" +#~ "Content-Type: text/plain; charset=UTF-8\n" +#~ "Content-Transfer-Encoding: 8bit\n" +#~ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" +#~ "X-Generator: Translate Toolkit 0.10.1\n" -#: AdviceMessage.VolumeIsBusy.Text -msgid "This disk is currently busy. Please wait for a moment." -msgstr "This disk is currently busy. Please wait for a moment." +#~ msgid "English" +#~ msgstr "English" -#: AdviceMessage.VolumeIsBusy.Link.Text -msgid "Show all disks" -msgstr "Show all disks" +#~ msgid "Container's name" +#~ msgstr "Container's name" -#: WarningMessage.AccessDenied.Text -msgid "" -"Sorry - you did not enter the right credentials! (Try user 'admin' and " -"password 'admin' and change this setting soon.)" -msgstr "" -"Sorry - you did not enter the right credentials! (Try user 'admin' and " -"password 'admin' and change this setting soon.)" +#~ msgid "Get help" +#~ msgstr "Get help" -#: WarningMessage.AccessDenied.Link.Text -msgid "Change password now" -msgstr "Change password now" +#~ msgid "Sorry - you are not allowed to do this!" +#~ msgstr "Sorry - you are not allowed to do this!" -#: Text.ContainerName -msgid "Volume's name" -msgstr "Volume's name" +#~ msgid "The container is mounted" +#~ msgstr "The container is mounted" -#: WarningMessage.AccessDenied.Text -msgid "" -"Sorry - you did not enter the right credentials! (Maybe try the default " -"setting: username=>'admin' / password=>'admin'.)" -msgstr "" -"Sorry - you did not enter the right credentials! (Maybe try the default " -"setting: username=>'admin' / password=>'admin'.)" +#~ msgid "" +#~ "This action is not available while the container is active. Please turn " +#~ "it off first." +#~ msgstr "" +#~ "This action is not available while the container is active. Please turn " +#~ "it off first." -#: Text.ProjectNote -msgid "The CryptoBox is a project by" -msgstr "The CryptoBox is a project by" +#~ msgid "Deactivate volume" +#~ msgstr "Deactivate volume" -#: Button.EnableHelp -msgid "Enable help" -msgstr "Enable help" +#~ msgid "" +#~ "Sorry - you did not enter the right credentials! (Try user 'admin' and " +#~ "password 'admin' and change this setting soon.)" +#~ msgstr "" +#~ "Sorry - you did not enter the right credentials! (Try user 'admin' and " +#~ "password 'admin' and change this setting soon.)" -#: Button.DisableHelp -msgid "Disable help" -msgstr "Disable help" +#~ msgid "Change password now" +#~ msgstr "Change password now" -#: WarningMessage.AccessDenied.Text -msgid "" -"Sorry - you did not enter the right credentials! Maybe you should try the " -"default setting: username=>'admin' / password=>'admin'." -msgstr "" -"Sorry - you did not enter the right credentials! Maybe you should try the " -"default setting: username=>'admin' / password=>'admin'." +#~ msgid "" +#~ "Sorry - you did not enter the right credentials! (Maybe try the default " +#~ "setting: username=>'admin' / password=>'admin'.)" +#~ msgstr "" +#~ "Sorry - you did not enter the right credentials! (Maybe try the default " +#~ "setting: username=>'admin' / password=>'admin'.)" -#: WarningMessage.VolumeMayNotBeMounted.Title -msgid "The volume is open" -msgstr "The volume is open" - -#: WarningMessage.VolumeMayNotBeMounted.Text -msgid "" -"This action is not available while the volume is active. Please close it " -"first." -msgstr "" -"This action is not available while the volume is active. Please close it " -"first." - -#: WarningMessage.VolumeMayNotBeMounted.Link.Text -msgid "Close volume" -msgstr "Close volume" +#~ msgid "The CryptoBox is a project by" +#~ msgstr "The CryptoBox is a project by" #~ msgid "" #~ "This request is not defined. If you think, this is a bug, get in contact " diff --git a/intl/es/cryptobox-server.po b/intl/es/cryptobox-server.po index 3d2dcf7..d41f89a 100644 --- a/intl/es/cryptobox-server.po +++ b/intl/es/cryptobox-server.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:38+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,10 +13,6 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Translate Toolkit 0.10.1\n" -#: Name -msgid "English" -msgstr "" - #: Title.Top msgid "The CryptoBox" msgstr "" @@ -58,11 +54,27 @@ msgid "The CryptoBox is a project of" msgstr "" #: Text.ContainerName -msgid "Container's name" +msgid "Volume's name" msgstr "" -#: Button.HelpForForm -msgid "Get help" +#: Button.EnableHelp +msgid "Enable help" +msgstr "" + +#: Button.DisableHelp +msgid "Disable help" +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Title +msgid "Disk is busy" +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Text +msgid "This disk is currently busy. Please wait for a moment." +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Link.Text +msgid "Show all disks" msgstr "" #: WarningMessage.AccessDenied.Title @@ -70,7 +82,7 @@ msgid "Invalid access credentials" msgstr "" #: WarningMessage.AccessDenied.Text -msgid "Sorry - you are not allowed to do this!" +msgid "Sorry - you did not enter the right credentials! Maybe you should try the default setting: username=>'admin' / password=>'admin'." msgstr "" #: WarningMessage.EmptyPassword.Title @@ -106,15 +118,15 @@ msgid "The device you have chosen is invalid!" msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Title -msgid "The container is mounted" +msgid "The volume is open" msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Text -msgid "This action is not available while the container is active. Please turn it off first." +msgid "This action is not available while the volume is active. Please close it first." msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Link.Text -msgid "Deactivate volume" +msgid "Close volume" msgstr "" #: WarningMessage.InvalidAction.Title @@ -152,59 +164,3 @@ msgstr "" #: EnvironmentWarning.NoSSL.Link.Text msgid "Use encrypted connection" msgstr "" - -#: AdviceMessage.VolumeIsBusy.Title -msgid "Disk is busy" -msgstr "" - -#: AdviceMessage.VolumeIsBusy.Text -msgid "This disk is currently busy. Please wait for a moment." -msgstr "" - -#: AdviceMessage.VolumeIsBusy.Link.Text -msgid "Show all disks" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! (Try user 'admin' and password 'admin' and change this setting soon.)" -msgstr "" - -#: WarningMessage.AccessDenied.Link.Text -msgid "Change password now" -msgstr "" - -#: Text.ContainerName -msgid "Volume's name" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! (Maybe try the default setting: username=>'admin' / password=>'admin'.)" -msgstr "" - -#: Text.ProjectNote -msgid "The CryptoBox is a project by" -msgstr "" - -#: Button.EnableHelp -msgid "Enable help" -msgstr "" - -#: Button.DisableHelp -msgid "Disable help" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! Maybe you should try the default setting: username=>'admin' / password=>'admin'." -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Title -msgid "The volume is open" -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Text -msgid "This action is not available while the volume is active. Please close it first." -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Link.Text -msgid "Close volume" -msgstr "" diff --git a/intl/fi/cryptobox-server.po b/intl/fi/cryptobox-server.po index 3d2dcf7..d41f89a 100644 --- a/intl/fi/cryptobox-server.po +++ b/intl/fi/cryptobox-server.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:38+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,10 +13,6 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Translate Toolkit 0.10.1\n" -#: Name -msgid "English" -msgstr "" - #: Title.Top msgid "The CryptoBox" msgstr "" @@ -58,11 +54,27 @@ msgid "The CryptoBox is a project of" msgstr "" #: Text.ContainerName -msgid "Container's name" +msgid "Volume's name" msgstr "" -#: Button.HelpForForm -msgid "Get help" +#: Button.EnableHelp +msgid "Enable help" +msgstr "" + +#: Button.DisableHelp +msgid "Disable help" +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Title +msgid "Disk is busy" +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Text +msgid "This disk is currently busy. Please wait for a moment." +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Link.Text +msgid "Show all disks" msgstr "" #: WarningMessage.AccessDenied.Title @@ -70,7 +82,7 @@ msgid "Invalid access credentials" msgstr "" #: WarningMessage.AccessDenied.Text -msgid "Sorry - you are not allowed to do this!" +msgid "Sorry - you did not enter the right credentials! Maybe you should try the default setting: username=>'admin' / password=>'admin'." msgstr "" #: WarningMessage.EmptyPassword.Title @@ -106,15 +118,15 @@ msgid "The device you have chosen is invalid!" msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Title -msgid "The container is mounted" +msgid "The volume is open" msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Text -msgid "This action is not available while the container is active. Please turn it off first." +msgid "This action is not available while the volume is active. Please close it first." msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Link.Text -msgid "Deactivate volume" +msgid "Close volume" msgstr "" #: WarningMessage.InvalidAction.Title @@ -152,59 +164,3 @@ msgstr "" #: EnvironmentWarning.NoSSL.Link.Text msgid "Use encrypted connection" msgstr "" - -#: AdviceMessage.VolumeIsBusy.Title -msgid "Disk is busy" -msgstr "" - -#: AdviceMessage.VolumeIsBusy.Text -msgid "This disk is currently busy. Please wait for a moment." -msgstr "" - -#: AdviceMessage.VolumeIsBusy.Link.Text -msgid "Show all disks" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! (Try user 'admin' and password 'admin' and change this setting soon.)" -msgstr "" - -#: WarningMessage.AccessDenied.Link.Text -msgid "Change password now" -msgstr "" - -#: Text.ContainerName -msgid "Volume's name" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! (Maybe try the default setting: username=>'admin' / password=>'admin'.)" -msgstr "" - -#: Text.ProjectNote -msgid "The CryptoBox is a project by" -msgstr "" - -#: Button.EnableHelp -msgid "Enable help" -msgstr "" - -#: Button.DisableHelp -msgid "Disable help" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! Maybe you should try the default setting: username=>'admin' / password=>'admin'." -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Title -msgid "The volume is open" -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Text -msgid "This action is not available while the volume is active. Please close it first." -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Link.Text -msgid "Close volume" -msgstr "" diff --git a/intl/fr/cryptobox-server.po b/intl/fr/cryptobox-server.po index 5fd1e7a..9b59970 100644 --- a/intl/fr/cryptobox-server.po +++ b/intl/fr/cryptobox-server.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:38+0100\n" "PO-Revision-Date: 2006-11-30 08:49+0100\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,10 +12,6 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Translate Toolkit 0.10.1\n" -#: Name -msgid "English" -msgstr "" - #: Title.Top msgid "The CryptoBox" msgstr "La CryptoBox" @@ -57,11 +53,27 @@ msgid "The CryptoBox is a project of" msgstr "" #: Text.ContainerName -msgid "Container's name" +msgid "Volume's name" msgstr "" -#: Button.HelpForForm -msgid "Get help" +#: Button.EnableHelp +msgid "Enable help" +msgstr "" + +#: Button.DisableHelp +msgid "Disable help" +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Title +msgid "Disk is busy" +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Text +msgid "This disk is currently busy. Please wait for a moment." +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Link.Text +msgid "Show all disks" msgstr "" #: WarningMessage.AccessDenied.Title @@ -69,7 +81,7 @@ msgid "Invalid access credentials" msgstr "" #: WarningMessage.AccessDenied.Text -msgid "Sorry - you are not allowed to do this!" +msgid "Sorry - you did not enter the right credentials! Maybe you should try the default setting: username=>'admin' / password=>'admin'." msgstr "" #: WarningMessage.EmptyPassword.Title @@ -105,15 +117,15 @@ msgid "The device you have chosen is invalid!" msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Title -msgid "The container is mounted" +msgid "The volume is open" msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Text -msgid "This action is not available while the container is active. Please turn it off first." +msgid "This action is not available while the volume is active. Please close it first." msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Link.Text -msgid "Deactivate volume" +msgid "Close volume" msgstr "" #: WarningMessage.InvalidAction.Title @@ -151,59 +163,3 @@ msgstr "" #: EnvironmentWarning.NoSSL.Link.Text msgid "Use encrypted connection" msgstr "" - -#: AdviceMessage.VolumeIsBusy.Title -msgid "Disk is busy" -msgstr "" - -#: AdviceMessage.VolumeIsBusy.Text -msgid "This disk is currently busy. Please wait for a moment." -msgstr "" - -#: AdviceMessage.VolumeIsBusy.Link.Text -msgid "Show all disks" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! (Try user 'admin' and password 'admin' and change this setting soon.)" -msgstr "" - -#: WarningMessage.AccessDenied.Link.Text -msgid "Change password now" -msgstr "" - -#: Text.ContainerName -msgid "Volume's name" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! (Maybe try the default setting: username=>'admin' / password=>'admin'.)" -msgstr "" - -#: Text.ProjectNote -msgid "The CryptoBox is a project by" -msgstr "" - -#: Button.EnableHelp -msgid "Enable help" -msgstr "" - -#: Button.DisableHelp -msgid "Disable help" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! Maybe you should try the default setting: username=>'admin' / password=>'admin'." -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Title -msgid "The volume is open" -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Text -msgid "This action is not available while the volume is active. Please close it first." -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Link.Text -msgid "Close volume" -msgstr "" diff --git a/intl/hu/cryptobox-server.po b/intl/hu/cryptobox-server.po index 3d2dcf7..d41f89a 100644 --- a/intl/hu/cryptobox-server.po +++ b/intl/hu/cryptobox-server.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:38+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,10 +13,6 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Translate Toolkit 0.10.1\n" -#: Name -msgid "English" -msgstr "" - #: Title.Top msgid "The CryptoBox" msgstr "" @@ -58,11 +54,27 @@ msgid "The CryptoBox is a project of" msgstr "" #: Text.ContainerName -msgid "Container's name" +msgid "Volume's name" msgstr "" -#: Button.HelpForForm -msgid "Get help" +#: Button.EnableHelp +msgid "Enable help" +msgstr "" + +#: Button.DisableHelp +msgid "Disable help" +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Title +msgid "Disk is busy" +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Text +msgid "This disk is currently busy. Please wait for a moment." +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Link.Text +msgid "Show all disks" msgstr "" #: WarningMessage.AccessDenied.Title @@ -70,7 +82,7 @@ msgid "Invalid access credentials" msgstr "" #: WarningMessage.AccessDenied.Text -msgid "Sorry - you are not allowed to do this!" +msgid "Sorry - you did not enter the right credentials! Maybe you should try the default setting: username=>'admin' / password=>'admin'." msgstr "" #: WarningMessage.EmptyPassword.Title @@ -106,15 +118,15 @@ msgid "The device you have chosen is invalid!" msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Title -msgid "The container is mounted" +msgid "The volume is open" msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Text -msgid "This action is not available while the container is active. Please turn it off first." +msgid "This action is not available while the volume is active. Please close it first." msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Link.Text -msgid "Deactivate volume" +msgid "Close volume" msgstr "" #: WarningMessage.InvalidAction.Title @@ -152,59 +164,3 @@ msgstr "" #: EnvironmentWarning.NoSSL.Link.Text msgid "Use encrypted connection" msgstr "" - -#: AdviceMessage.VolumeIsBusy.Title -msgid "Disk is busy" -msgstr "" - -#: AdviceMessage.VolumeIsBusy.Text -msgid "This disk is currently busy. Please wait for a moment." -msgstr "" - -#: AdviceMessage.VolumeIsBusy.Link.Text -msgid "Show all disks" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! (Try user 'admin' and password 'admin' and change this setting soon.)" -msgstr "" - -#: WarningMessage.AccessDenied.Link.Text -msgid "Change password now" -msgstr "" - -#: Text.ContainerName -msgid "Volume's name" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! (Maybe try the default setting: username=>'admin' / password=>'admin'.)" -msgstr "" - -#: Text.ProjectNote -msgid "The CryptoBox is a project by" -msgstr "" - -#: Button.EnableHelp -msgid "Enable help" -msgstr "" - -#: Button.DisableHelp -msgid "Disable help" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! Maybe you should try the default setting: username=>'admin' / password=>'admin'." -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Title -msgid "The volume is open" -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Text -msgid "This action is not available while the volume is active. Please close it first." -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Link.Text -msgid "Close volume" -msgstr "" diff --git a/intl/it/cryptobox-server.po b/intl/it/cryptobox-server.po index 3d2dcf7..d41f89a 100644 --- a/intl/it/cryptobox-server.po +++ b/intl/it/cryptobox-server.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:38+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,10 +13,6 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Translate Toolkit 0.10.1\n" -#: Name -msgid "English" -msgstr "" - #: Title.Top msgid "The CryptoBox" msgstr "" @@ -58,11 +54,27 @@ msgid "The CryptoBox is a project of" msgstr "" #: Text.ContainerName -msgid "Container's name" +msgid "Volume's name" msgstr "" -#: Button.HelpForForm -msgid "Get help" +#: Button.EnableHelp +msgid "Enable help" +msgstr "" + +#: Button.DisableHelp +msgid "Disable help" +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Title +msgid "Disk is busy" +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Text +msgid "This disk is currently busy. Please wait for a moment." +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Link.Text +msgid "Show all disks" msgstr "" #: WarningMessage.AccessDenied.Title @@ -70,7 +82,7 @@ msgid "Invalid access credentials" msgstr "" #: WarningMessage.AccessDenied.Text -msgid "Sorry - you are not allowed to do this!" +msgid "Sorry - you did not enter the right credentials! Maybe you should try the default setting: username=>'admin' / password=>'admin'." msgstr "" #: WarningMessage.EmptyPassword.Title @@ -106,15 +118,15 @@ msgid "The device you have chosen is invalid!" msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Title -msgid "The container is mounted" +msgid "The volume is open" msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Text -msgid "This action is not available while the container is active. Please turn it off first." +msgid "This action is not available while the volume is active. Please close it first." msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Link.Text -msgid "Deactivate volume" +msgid "Close volume" msgstr "" #: WarningMessage.InvalidAction.Title @@ -152,59 +164,3 @@ msgstr "" #: EnvironmentWarning.NoSSL.Link.Text msgid "Use encrypted connection" msgstr "" - -#: AdviceMessage.VolumeIsBusy.Title -msgid "Disk is busy" -msgstr "" - -#: AdviceMessage.VolumeIsBusy.Text -msgid "This disk is currently busy. Please wait for a moment." -msgstr "" - -#: AdviceMessage.VolumeIsBusy.Link.Text -msgid "Show all disks" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! (Try user 'admin' and password 'admin' and change this setting soon.)" -msgstr "" - -#: WarningMessage.AccessDenied.Link.Text -msgid "Change password now" -msgstr "" - -#: Text.ContainerName -msgid "Volume's name" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! (Maybe try the default setting: username=>'admin' / password=>'admin'.)" -msgstr "" - -#: Text.ProjectNote -msgid "The CryptoBox is a project by" -msgstr "" - -#: Button.EnableHelp -msgid "Enable help" -msgstr "" - -#: Button.DisableHelp -msgid "Disable help" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! Maybe you should try the default setting: username=>'admin' / password=>'admin'." -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Title -msgid "The volume is open" -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Text -msgid "This action is not available while the volume is active. Please close it first." -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Link.Text -msgid "Close volume" -msgstr "" diff --git a/intl/ja/cryptobox-server.po b/intl/ja/cryptobox-server.po index 3d2dcf7..d41f89a 100644 --- a/intl/ja/cryptobox-server.po +++ b/intl/ja/cryptobox-server.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:38+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,10 +13,6 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Translate Toolkit 0.10.1\n" -#: Name -msgid "English" -msgstr "" - #: Title.Top msgid "The CryptoBox" msgstr "" @@ -58,11 +54,27 @@ msgid "The CryptoBox is a project of" msgstr "" #: Text.ContainerName -msgid "Container's name" +msgid "Volume's name" msgstr "" -#: Button.HelpForForm -msgid "Get help" +#: Button.EnableHelp +msgid "Enable help" +msgstr "" + +#: Button.DisableHelp +msgid "Disable help" +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Title +msgid "Disk is busy" +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Text +msgid "This disk is currently busy. Please wait for a moment." +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Link.Text +msgid "Show all disks" msgstr "" #: WarningMessage.AccessDenied.Title @@ -70,7 +82,7 @@ msgid "Invalid access credentials" msgstr "" #: WarningMessage.AccessDenied.Text -msgid "Sorry - you are not allowed to do this!" +msgid "Sorry - you did not enter the right credentials! Maybe you should try the default setting: username=>'admin' / password=>'admin'." msgstr "" #: WarningMessage.EmptyPassword.Title @@ -106,15 +118,15 @@ msgid "The device you have chosen is invalid!" msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Title -msgid "The container is mounted" +msgid "The volume is open" msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Text -msgid "This action is not available while the container is active. Please turn it off first." +msgid "This action is not available while the volume is active. Please close it first." msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Link.Text -msgid "Deactivate volume" +msgid "Close volume" msgstr "" #: WarningMessage.InvalidAction.Title @@ -152,59 +164,3 @@ msgstr "" #: EnvironmentWarning.NoSSL.Link.Text msgid "Use encrypted connection" msgstr "" - -#: AdviceMessage.VolumeIsBusy.Title -msgid "Disk is busy" -msgstr "" - -#: AdviceMessage.VolumeIsBusy.Text -msgid "This disk is currently busy. Please wait for a moment." -msgstr "" - -#: AdviceMessage.VolumeIsBusy.Link.Text -msgid "Show all disks" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! (Try user 'admin' and password 'admin' and change this setting soon.)" -msgstr "" - -#: WarningMessage.AccessDenied.Link.Text -msgid "Change password now" -msgstr "" - -#: Text.ContainerName -msgid "Volume's name" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! (Maybe try the default setting: username=>'admin' / password=>'admin'.)" -msgstr "" - -#: Text.ProjectNote -msgid "The CryptoBox is a project by" -msgstr "" - -#: Button.EnableHelp -msgid "Enable help" -msgstr "" - -#: Button.DisableHelp -msgid "Disable help" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! Maybe you should try the default setting: username=>'admin' / password=>'admin'." -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Title -msgid "The volume is open" -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Text -msgid "This action is not available while the volume is active. Please close it first." -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Link.Text -msgid "Close volume" -msgstr "" diff --git a/intl/nl/cryptobox-server.po b/intl/nl/cryptobox-server.po index 3d2dcf7..d41f89a 100644 --- a/intl/nl/cryptobox-server.po +++ b/intl/nl/cryptobox-server.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:38+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,10 +13,6 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Translate Toolkit 0.10.1\n" -#: Name -msgid "English" -msgstr "" - #: Title.Top msgid "The CryptoBox" msgstr "" @@ -58,11 +54,27 @@ msgid "The CryptoBox is a project of" msgstr "" #: Text.ContainerName -msgid "Container's name" +msgid "Volume's name" msgstr "" -#: Button.HelpForForm -msgid "Get help" +#: Button.EnableHelp +msgid "Enable help" +msgstr "" + +#: Button.DisableHelp +msgid "Disable help" +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Title +msgid "Disk is busy" +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Text +msgid "This disk is currently busy. Please wait for a moment." +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Link.Text +msgid "Show all disks" msgstr "" #: WarningMessage.AccessDenied.Title @@ -70,7 +82,7 @@ msgid "Invalid access credentials" msgstr "" #: WarningMessage.AccessDenied.Text -msgid "Sorry - you are not allowed to do this!" +msgid "Sorry - you did not enter the right credentials! Maybe you should try the default setting: username=>'admin' / password=>'admin'." msgstr "" #: WarningMessage.EmptyPassword.Title @@ -106,15 +118,15 @@ msgid "The device you have chosen is invalid!" msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Title -msgid "The container is mounted" +msgid "The volume is open" msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Text -msgid "This action is not available while the container is active. Please turn it off first." +msgid "This action is not available while the volume is active. Please close it first." msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Link.Text -msgid "Deactivate volume" +msgid "Close volume" msgstr "" #: WarningMessage.InvalidAction.Title @@ -152,59 +164,3 @@ msgstr "" #: EnvironmentWarning.NoSSL.Link.Text msgid "Use encrypted connection" msgstr "" - -#: AdviceMessage.VolumeIsBusy.Title -msgid "Disk is busy" -msgstr "" - -#: AdviceMessage.VolumeIsBusy.Text -msgid "This disk is currently busy. Please wait for a moment." -msgstr "" - -#: AdviceMessage.VolumeIsBusy.Link.Text -msgid "Show all disks" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! (Try user 'admin' and password 'admin' and change this setting soon.)" -msgstr "" - -#: WarningMessage.AccessDenied.Link.Text -msgid "Change password now" -msgstr "" - -#: Text.ContainerName -msgid "Volume's name" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! (Maybe try the default setting: username=>'admin' / password=>'admin'.)" -msgstr "" - -#: Text.ProjectNote -msgid "The CryptoBox is a project by" -msgstr "" - -#: Button.EnableHelp -msgid "Enable help" -msgstr "" - -#: Button.DisableHelp -msgid "Disable help" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! Maybe you should try the default setting: username=>'admin' / password=>'admin'." -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Title -msgid "The volume is open" -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Text -msgid "This action is not available while the volume is active. Please close it first." -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Link.Text -msgid "Close volume" -msgstr "" diff --git a/intl/pl/cryptobox-server.po b/intl/pl/cryptobox-server.po index 3d2dcf7..d41f89a 100644 --- a/intl/pl/cryptobox-server.po +++ b/intl/pl/cryptobox-server.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:38+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,10 +13,6 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Translate Toolkit 0.10.1\n" -#: Name -msgid "English" -msgstr "" - #: Title.Top msgid "The CryptoBox" msgstr "" @@ -58,11 +54,27 @@ msgid "The CryptoBox is a project of" msgstr "" #: Text.ContainerName -msgid "Container's name" +msgid "Volume's name" msgstr "" -#: Button.HelpForForm -msgid "Get help" +#: Button.EnableHelp +msgid "Enable help" +msgstr "" + +#: Button.DisableHelp +msgid "Disable help" +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Title +msgid "Disk is busy" +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Text +msgid "This disk is currently busy. Please wait for a moment." +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Link.Text +msgid "Show all disks" msgstr "" #: WarningMessage.AccessDenied.Title @@ -70,7 +82,7 @@ msgid "Invalid access credentials" msgstr "" #: WarningMessage.AccessDenied.Text -msgid "Sorry - you are not allowed to do this!" +msgid "Sorry - you did not enter the right credentials! Maybe you should try the default setting: username=>'admin' / password=>'admin'." msgstr "" #: WarningMessage.EmptyPassword.Title @@ -106,15 +118,15 @@ msgid "The device you have chosen is invalid!" msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Title -msgid "The container is mounted" +msgid "The volume is open" msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Text -msgid "This action is not available while the container is active. Please turn it off first." +msgid "This action is not available while the volume is active. Please close it first." msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Link.Text -msgid "Deactivate volume" +msgid "Close volume" msgstr "" #: WarningMessage.InvalidAction.Title @@ -152,59 +164,3 @@ msgstr "" #: EnvironmentWarning.NoSSL.Link.Text msgid "Use encrypted connection" msgstr "" - -#: AdviceMessage.VolumeIsBusy.Title -msgid "Disk is busy" -msgstr "" - -#: AdviceMessage.VolumeIsBusy.Text -msgid "This disk is currently busy. Please wait for a moment." -msgstr "" - -#: AdviceMessage.VolumeIsBusy.Link.Text -msgid "Show all disks" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! (Try user 'admin' and password 'admin' and change this setting soon.)" -msgstr "" - -#: WarningMessage.AccessDenied.Link.Text -msgid "Change password now" -msgstr "" - -#: Text.ContainerName -msgid "Volume's name" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! (Maybe try the default setting: username=>'admin' / password=>'admin'.)" -msgstr "" - -#: Text.ProjectNote -msgid "The CryptoBox is a project by" -msgstr "" - -#: Button.EnableHelp -msgid "Enable help" -msgstr "" - -#: Button.DisableHelp -msgid "Disable help" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! Maybe you should try the default setting: username=>'admin' / password=>'admin'." -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Title -msgid "The volume is open" -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Text -msgid "This action is not available while the volume is active. Please close it first." -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Link.Text -msgid "Close volume" -msgstr "" diff --git a/intl/pt/cryptobox-server.po b/intl/pt/cryptobox-server.po index 3d2dcf7..d41f89a 100644 --- a/intl/pt/cryptobox-server.po +++ b/intl/pt/cryptobox-server.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:38+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,10 +13,6 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Translate Toolkit 0.10.1\n" -#: Name -msgid "English" -msgstr "" - #: Title.Top msgid "The CryptoBox" msgstr "" @@ -58,11 +54,27 @@ msgid "The CryptoBox is a project of" msgstr "" #: Text.ContainerName -msgid "Container's name" +msgid "Volume's name" msgstr "" -#: Button.HelpForForm -msgid "Get help" +#: Button.EnableHelp +msgid "Enable help" +msgstr "" + +#: Button.DisableHelp +msgid "Disable help" +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Title +msgid "Disk is busy" +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Text +msgid "This disk is currently busy. Please wait for a moment." +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Link.Text +msgid "Show all disks" msgstr "" #: WarningMessage.AccessDenied.Title @@ -70,7 +82,7 @@ msgid "Invalid access credentials" msgstr "" #: WarningMessage.AccessDenied.Text -msgid "Sorry - you are not allowed to do this!" +msgid "Sorry - you did not enter the right credentials! Maybe you should try the default setting: username=>'admin' / password=>'admin'." msgstr "" #: WarningMessage.EmptyPassword.Title @@ -106,15 +118,15 @@ msgid "The device you have chosen is invalid!" msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Title -msgid "The container is mounted" +msgid "The volume is open" msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Text -msgid "This action is not available while the container is active. Please turn it off first." +msgid "This action is not available while the volume is active. Please close it first." msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Link.Text -msgid "Deactivate volume" +msgid "Close volume" msgstr "" #: WarningMessage.InvalidAction.Title @@ -152,59 +164,3 @@ msgstr "" #: EnvironmentWarning.NoSSL.Link.Text msgid "Use encrypted connection" msgstr "" - -#: AdviceMessage.VolumeIsBusy.Title -msgid "Disk is busy" -msgstr "" - -#: AdviceMessage.VolumeIsBusy.Text -msgid "This disk is currently busy. Please wait for a moment." -msgstr "" - -#: AdviceMessage.VolumeIsBusy.Link.Text -msgid "Show all disks" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! (Try user 'admin' and password 'admin' and change this setting soon.)" -msgstr "" - -#: WarningMessage.AccessDenied.Link.Text -msgid "Change password now" -msgstr "" - -#: Text.ContainerName -msgid "Volume's name" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! (Maybe try the default setting: username=>'admin' / password=>'admin'.)" -msgstr "" - -#: Text.ProjectNote -msgid "The CryptoBox is a project by" -msgstr "" - -#: Button.EnableHelp -msgid "Enable help" -msgstr "" - -#: Button.DisableHelp -msgid "Disable help" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! Maybe you should try the default setting: username=>'admin' / password=>'admin'." -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Title -msgid "The volume is open" -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Text -msgid "This action is not available while the volume is active. Please close it first." -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Link.Text -msgid "Close volume" -msgstr "" diff --git a/intl/ru/cryptobox-server.po b/intl/ru/cryptobox-server.po index 3d2dcf7..d41f89a 100644 --- a/intl/ru/cryptobox-server.po +++ b/intl/ru/cryptobox-server.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:38+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,10 +13,6 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Translate Toolkit 0.10.1\n" -#: Name -msgid "English" -msgstr "" - #: Title.Top msgid "The CryptoBox" msgstr "" @@ -58,11 +54,27 @@ msgid "The CryptoBox is a project of" msgstr "" #: Text.ContainerName -msgid "Container's name" +msgid "Volume's name" msgstr "" -#: Button.HelpForForm -msgid "Get help" +#: Button.EnableHelp +msgid "Enable help" +msgstr "" + +#: Button.DisableHelp +msgid "Disable help" +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Title +msgid "Disk is busy" +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Text +msgid "This disk is currently busy. Please wait for a moment." +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Link.Text +msgid "Show all disks" msgstr "" #: WarningMessage.AccessDenied.Title @@ -70,7 +82,7 @@ msgid "Invalid access credentials" msgstr "" #: WarningMessage.AccessDenied.Text -msgid "Sorry - you are not allowed to do this!" +msgid "Sorry - you did not enter the right credentials! Maybe you should try the default setting: username=>'admin' / password=>'admin'." msgstr "" #: WarningMessage.EmptyPassword.Title @@ -106,15 +118,15 @@ msgid "The device you have chosen is invalid!" msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Title -msgid "The container is mounted" +msgid "The volume is open" msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Text -msgid "This action is not available while the container is active. Please turn it off first." +msgid "This action is not available while the volume is active. Please close it first." msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Link.Text -msgid "Deactivate volume" +msgid "Close volume" msgstr "" #: WarningMessage.InvalidAction.Title @@ -152,59 +164,3 @@ msgstr "" #: EnvironmentWarning.NoSSL.Link.Text msgid "Use encrypted connection" msgstr "" - -#: AdviceMessage.VolumeIsBusy.Title -msgid "Disk is busy" -msgstr "" - -#: AdviceMessage.VolumeIsBusy.Text -msgid "This disk is currently busy. Please wait for a moment." -msgstr "" - -#: AdviceMessage.VolumeIsBusy.Link.Text -msgid "Show all disks" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! (Try user 'admin' and password 'admin' and change this setting soon.)" -msgstr "" - -#: WarningMessage.AccessDenied.Link.Text -msgid "Change password now" -msgstr "" - -#: Text.ContainerName -msgid "Volume's name" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! (Maybe try the default setting: username=>'admin' / password=>'admin'.)" -msgstr "" - -#: Text.ProjectNote -msgid "The CryptoBox is a project by" -msgstr "" - -#: Button.EnableHelp -msgid "Enable help" -msgstr "" - -#: Button.DisableHelp -msgid "Disable help" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! Maybe you should try the default setting: username=>'admin' / password=>'admin'." -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Title -msgid "The volume is open" -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Text -msgid "This action is not available while the volume is active. Please close it first." -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Link.Text -msgid "Close volume" -msgstr "" diff --git a/intl/sl/cryptobox-server.po b/intl/sl/cryptobox-server.po index a1b5fec..08029db 100644 --- a/intl/sl/cryptobox-server.po +++ b/intl/sl/cryptobox-server.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:38+0100\n" "PO-Revision-Date: 2006-12-11 01:40+0100\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -12,10 +12,6 @@ msgstr "" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" "X-Generator: Translate Toolkit 0.10.1\n" -#: Name -msgid "English" -msgstr "" - #: Title.Top msgid "The CryptoBox" msgstr "" @@ -57,11 +53,27 @@ msgid "The CryptoBox is a project of" msgstr "" #: Text.ContainerName -msgid "Container's name" +msgid "Volume's name" msgstr "" -#: Button.HelpForForm -msgid "Get help" +#: Button.EnableHelp +msgid "Enable help" +msgstr "" + +#: Button.DisableHelp +msgid "Disable help" +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Title +msgid "Disk is busy" +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Text +msgid "This disk is currently busy. Please wait for a moment." +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Link.Text +msgid "Show all disks" msgstr "" #: WarningMessage.AccessDenied.Title @@ -69,7 +81,7 @@ msgid "Invalid access credentials" msgstr "" #: WarningMessage.AccessDenied.Text -msgid "Sorry - you are not allowed to do this!" +msgid "Sorry - you did not enter the right credentials! Maybe you should try the default setting: username=>'admin' / password=>'admin'." msgstr "" #: WarningMessage.EmptyPassword.Title @@ -105,15 +117,15 @@ msgid "The device you have chosen is invalid!" msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Title -msgid "The container is mounted" +msgid "The volume is open" msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Text -msgid "This action is not available while the container is active. Please turn it off first." +msgid "This action is not available while the volume is active. Please close it first." msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Link.Text -msgid "Deactivate volume" +msgid "Close volume" msgstr "" #: WarningMessage.InvalidAction.Title @@ -151,59 +163,3 @@ msgstr "" #: EnvironmentWarning.NoSSL.Link.Text msgid "Use encrypted connection" msgstr "" - -#: AdviceMessage.VolumeIsBusy.Title -msgid "Disk is busy" -msgstr "" - -#: AdviceMessage.VolumeIsBusy.Text -msgid "This disk is currently busy. Please wait for a moment." -msgstr "" - -#: AdviceMessage.VolumeIsBusy.Link.Text -msgid "Show all disks" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! (Try user 'admin' and password 'admin' and change this setting soon.)" -msgstr "" - -#: WarningMessage.AccessDenied.Link.Text -msgid "Change password now" -msgstr "" - -#: Text.ContainerName -msgid "Volume's name" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! (Maybe try the default setting: username=>'admin' / password=>'admin'.)" -msgstr "" - -#: Text.ProjectNote -msgid "The CryptoBox is a project by" -msgstr "" - -#: Button.EnableHelp -msgid "Enable help" -msgstr "" - -#: Button.DisableHelp -msgid "Disable help" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! Maybe you should try the default setting: username=>'admin' / password=>'admin'." -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Title -msgid "The volume is open" -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Text -msgid "This action is not available while the volume is active. Please close it first." -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Link.Text -msgid "Close volume" -msgstr "" diff --git a/intl/sv/cryptobox-server.po b/intl/sv/cryptobox-server.po index 3d2dcf7..d41f89a 100644 --- a/intl/sv/cryptobox-server.po +++ b/intl/sv/cryptobox-server.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:38+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,10 +13,6 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Translate Toolkit 0.10.1\n" -#: Name -msgid "English" -msgstr "" - #: Title.Top msgid "The CryptoBox" msgstr "" @@ -58,11 +54,27 @@ msgid "The CryptoBox is a project of" msgstr "" #: Text.ContainerName -msgid "Container's name" +msgid "Volume's name" msgstr "" -#: Button.HelpForForm -msgid "Get help" +#: Button.EnableHelp +msgid "Enable help" +msgstr "" + +#: Button.DisableHelp +msgid "Disable help" +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Title +msgid "Disk is busy" +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Text +msgid "This disk is currently busy. Please wait for a moment." +msgstr "" + +#: AdviceMessage.VolumeIsBusy.Link.Text +msgid "Show all disks" msgstr "" #: WarningMessage.AccessDenied.Title @@ -70,7 +82,7 @@ msgid "Invalid access credentials" msgstr "" #: WarningMessage.AccessDenied.Text -msgid "Sorry - you are not allowed to do this!" +msgid "Sorry - you did not enter the right credentials! Maybe you should try the default setting: username=>'admin' / password=>'admin'." msgstr "" #: WarningMessage.EmptyPassword.Title @@ -106,15 +118,15 @@ msgid "The device you have chosen is invalid!" msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Title -msgid "The container is mounted" +msgid "The volume is open" msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Text -msgid "This action is not available while the container is active. Please turn it off first." +msgid "This action is not available while the volume is active. Please close it first." msgstr "" #: WarningMessage.VolumeMayNotBeMounted.Link.Text -msgid "Deactivate volume" +msgid "Close volume" msgstr "" #: WarningMessage.InvalidAction.Title @@ -152,59 +164,3 @@ msgstr "" #: EnvironmentWarning.NoSSL.Link.Text msgid "Use encrypted connection" msgstr "" - -#: AdviceMessage.VolumeIsBusy.Title -msgid "Disk is busy" -msgstr "" - -#: AdviceMessage.VolumeIsBusy.Text -msgid "This disk is currently busy. Please wait for a moment." -msgstr "" - -#: AdviceMessage.VolumeIsBusy.Link.Text -msgid "Show all disks" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! (Try user 'admin' and password 'admin' and change this setting soon.)" -msgstr "" - -#: WarningMessage.AccessDenied.Link.Text -msgid "Change password now" -msgstr "" - -#: Text.ContainerName -msgid "Volume's name" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! (Maybe try the default setting: username=>'admin' / password=>'admin'.)" -msgstr "" - -#: Text.ProjectNote -msgid "The CryptoBox is a project by" -msgstr "" - -#: Button.EnableHelp -msgid "Enable help" -msgstr "" - -#: Button.DisableHelp -msgid "Disable help" -msgstr "" - -#: WarningMessage.AccessDenied.Text -msgid "Sorry - you did not enter the right credentials! Maybe you should try the default setting: username=>'admin' / password=>'admin'." -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Title -msgid "The volume is open" -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Text -msgid "This action is not available while the volume is active. Please close it first." -msgstr "" - -#: WarningMessage.VolumeMayNotBeMounted.Link.Text -msgid "Close volume" -msgstr "" diff --git a/package.exclude b/package.exclude index d7942cc..7f6fad0 100644 --- a/package.exclude +++ b/package.exclude @@ -1,5 +1,4 @@ debian design stuff -bin-perl-old package.exclude diff --git a/plugins/date/intl/cryptobox-server-feature-date.pot b/plugins/date/intl/cryptobox-server-feature-date.pot index eab13c1..48457a3 100644 --- a/plugins/date/intl/cryptobox-server-feature-date.pot +++ b/plugins/date/intl/cryptobox-server-feature-date.pot @@ -1,17 +1,3 @@ -msgid "" -msgstr "" -"Project-Id-Version: CryptoBox-Server 0.3\n" -"Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: sense.lab \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: utf-8\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Translate Toolkit 0.10.1\n" - #: Name msgid "Change date and time" msgstr "" @@ -84,6 +70,10 @@ msgstr "" msgid "December" msgstr "" +#: Help.ChangeDate +msgid "Change the time and date for the CryptoBox server." +msgstr "" + #: SuccessMessage.DateChanged.Title msgid "Date changed" msgstr "" @@ -99,7 +89,3 @@ msgstr "" #: WarningMessage.InvalidDate.Text msgid "An invalid value for date or time was supplied. Please try again." msgstr "" - -#: Help.ChangeDate -msgid "Change the time and date for the CryptoBox server." -msgstr "" diff --git a/plugins/date/intl/cs/cryptobox-server-feature-date.po b/plugins/date/intl/cs/cryptobox-server-feature-date.po index f46fdb6..579e19f 100644 --- a/plugins/date/intl/cs/cryptobox-server-feature-date.po +++ b/plugins/date/intl/cs/cryptobox-server-feature-date.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -85,6 +85,10 @@ msgstr "" msgid "December" msgstr "" +#: Help.ChangeDate +msgid "Change the time and date for the CryptoBox server." +msgstr "" + #: SuccessMessage.DateChanged.Title msgid "Date changed" msgstr "" @@ -100,7 +104,3 @@ msgstr "" #: WarningMessage.InvalidDate.Text msgid "An invalid value for date or time was supplied. Please try again." msgstr "" - -#: Help.ChangeDate -msgid "Change the time and date for the CryptoBox server." -msgstr "" diff --git a/plugins/date/intl/da/cryptobox-server-feature-date.po b/plugins/date/intl/da/cryptobox-server-feature-date.po index f46fdb6..579e19f 100644 --- a/plugins/date/intl/da/cryptobox-server-feature-date.po +++ b/plugins/date/intl/da/cryptobox-server-feature-date.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -85,6 +85,10 @@ msgstr "" msgid "December" msgstr "" +#: Help.ChangeDate +msgid "Change the time and date for the CryptoBox server." +msgstr "" + #: SuccessMessage.DateChanged.Title msgid "Date changed" msgstr "" @@ -100,7 +104,3 @@ msgstr "" #: WarningMessage.InvalidDate.Text msgid "An invalid value for date or time was supplied. Please try again." msgstr "" - -#: Help.ChangeDate -msgid "Change the time and date for the CryptoBox server." -msgstr "" diff --git a/plugins/date/intl/de/cryptobox-server-feature-date.po b/plugins/date/intl/de/cryptobox-server-feature-date.po index e549da0..fa39077 100644 --- a/plugins/date/intl/de/cryptobox-server-feature-date.po +++ b/plugins/date/intl/de/cryptobox-server-feature-date.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: 2006-12-14 03:43+0100\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -84,6 +84,10 @@ msgstr "November" msgid "December" msgstr "Dezember" +#: Help.ChangeDate +msgid "Change the time and date for the CryptoBox server." +msgstr "Einstellen der Uhrzeit und des Datums des CryptoBox-Servers." + #: SuccessMessage.DateChanged.Title msgid "Date changed" msgstr "Datum gesetzt" @@ -99,7 +103,3 @@ msgstr "Ungültiger Eingabewert" #: WarningMessage.InvalidDate.Text msgid "An invalid value for date or time was supplied. Please try again." msgstr "Es wurde ein ungültiger Wert für das Datum oder die Uhrzeit eingegeben. Bitte versuche es erneut." - -#: Help.ChangeDate -msgid "Change the time and date for the CryptoBox server." -msgstr "Einstellen der Uhrzeit und des Datums des CryptoBox-Servers." diff --git a/plugins/date/intl/en/cryptobox-server-feature-date.po b/plugins/date/intl/en/cryptobox-server-feature-date.po index a1c8892..30a6a00 100644 --- a/plugins/date/intl/en/cryptobox-server-feature-date.po +++ b/plugins/date/intl/en/cryptobox-server-feature-date.po @@ -1,5 +1,3 @@ -msgid "" -msgstr "" #: Name msgid "Change date and time" @@ -73,6 +71,10 @@ msgstr "November" msgid "December" msgstr "December" +#: Help.ChangeDate +msgid "Change the time and date for the CryptoBox server." +msgstr "Change the time and date for the CryptoBox server." + #: SuccessMessage.DateChanged.Title msgid "Date changed" msgstr "Date changed" @@ -88,7 +90,3 @@ msgstr "Invalid value" #: WarningMessage.InvalidDate.Text msgid "An invalid value for date or time was supplied. Please try again." msgstr "An invalid value for date or time was supplied. Please try again." - -#: Help.ChangeDate -msgid "Change the time and date for the CryptoBox server." -msgstr "Change the time and date for the CryptoBox server." diff --git a/plugins/date/intl/es/cryptobox-server-feature-date.po b/plugins/date/intl/es/cryptobox-server-feature-date.po index f46fdb6..579e19f 100644 --- a/plugins/date/intl/es/cryptobox-server-feature-date.po +++ b/plugins/date/intl/es/cryptobox-server-feature-date.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -85,6 +85,10 @@ msgstr "" msgid "December" msgstr "" +#: Help.ChangeDate +msgid "Change the time and date for the CryptoBox server." +msgstr "" + #: SuccessMessage.DateChanged.Title msgid "Date changed" msgstr "" @@ -100,7 +104,3 @@ msgstr "" #: WarningMessage.InvalidDate.Text msgid "An invalid value for date or time was supplied. Please try again." msgstr "" - -#: Help.ChangeDate -msgid "Change the time and date for the CryptoBox server." -msgstr "" diff --git a/plugins/date/intl/fi/cryptobox-server-feature-date.po b/plugins/date/intl/fi/cryptobox-server-feature-date.po index f46fdb6..579e19f 100644 --- a/plugins/date/intl/fi/cryptobox-server-feature-date.po +++ b/plugins/date/intl/fi/cryptobox-server-feature-date.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -85,6 +85,10 @@ msgstr "" msgid "December" msgstr "" +#: Help.ChangeDate +msgid "Change the time and date for the CryptoBox server." +msgstr "" + #: SuccessMessage.DateChanged.Title msgid "Date changed" msgstr "" @@ -100,7 +104,3 @@ msgstr "" #: WarningMessage.InvalidDate.Text msgid "An invalid value for date or time was supplied. Please try again." msgstr "" - -#: Help.ChangeDate -msgid "Change the time and date for the CryptoBox server." -msgstr "" diff --git a/plugins/date/intl/fr/cryptobox-server-feature-date.po b/plugins/date/intl/fr/cryptobox-server-feature-date.po index f46fdb6..579e19f 100644 --- a/plugins/date/intl/fr/cryptobox-server-feature-date.po +++ b/plugins/date/intl/fr/cryptobox-server-feature-date.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -85,6 +85,10 @@ msgstr "" msgid "December" msgstr "" +#: Help.ChangeDate +msgid "Change the time and date for the CryptoBox server." +msgstr "" + #: SuccessMessage.DateChanged.Title msgid "Date changed" msgstr "" @@ -100,7 +104,3 @@ msgstr "" #: WarningMessage.InvalidDate.Text msgid "An invalid value for date or time was supplied. Please try again." msgstr "" - -#: Help.ChangeDate -msgid "Change the time and date for the CryptoBox server." -msgstr "" diff --git a/plugins/date/intl/hu/cryptobox-server-feature-date.po b/plugins/date/intl/hu/cryptobox-server-feature-date.po index f46fdb6..579e19f 100644 --- a/plugins/date/intl/hu/cryptobox-server-feature-date.po +++ b/plugins/date/intl/hu/cryptobox-server-feature-date.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -85,6 +85,10 @@ msgstr "" msgid "December" msgstr "" +#: Help.ChangeDate +msgid "Change the time and date for the CryptoBox server." +msgstr "" + #: SuccessMessage.DateChanged.Title msgid "Date changed" msgstr "" @@ -100,7 +104,3 @@ msgstr "" #: WarningMessage.InvalidDate.Text msgid "An invalid value for date or time was supplied. Please try again." msgstr "" - -#: Help.ChangeDate -msgid "Change the time and date for the CryptoBox server." -msgstr "" diff --git a/plugins/date/intl/it/cryptobox-server-feature-date.po b/plugins/date/intl/it/cryptobox-server-feature-date.po index f46fdb6..579e19f 100644 --- a/plugins/date/intl/it/cryptobox-server-feature-date.po +++ b/plugins/date/intl/it/cryptobox-server-feature-date.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -85,6 +85,10 @@ msgstr "" msgid "December" msgstr "" +#: Help.ChangeDate +msgid "Change the time and date for the CryptoBox server." +msgstr "" + #: SuccessMessage.DateChanged.Title msgid "Date changed" msgstr "" @@ -100,7 +104,3 @@ msgstr "" #: WarningMessage.InvalidDate.Text msgid "An invalid value for date or time was supplied. Please try again." msgstr "" - -#: Help.ChangeDate -msgid "Change the time and date for the CryptoBox server." -msgstr "" diff --git a/plugins/date/intl/ja/cryptobox-server-feature-date.po b/plugins/date/intl/ja/cryptobox-server-feature-date.po index f46fdb6..579e19f 100644 --- a/plugins/date/intl/ja/cryptobox-server-feature-date.po +++ b/plugins/date/intl/ja/cryptobox-server-feature-date.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -85,6 +85,10 @@ msgstr "" msgid "December" msgstr "" +#: Help.ChangeDate +msgid "Change the time and date for the CryptoBox server." +msgstr "" + #: SuccessMessage.DateChanged.Title msgid "Date changed" msgstr "" @@ -100,7 +104,3 @@ msgstr "" #: WarningMessage.InvalidDate.Text msgid "An invalid value for date or time was supplied. Please try again." msgstr "" - -#: Help.ChangeDate -msgid "Change the time and date for the CryptoBox server." -msgstr "" diff --git a/plugins/date/intl/nl/cryptobox-server-feature-date.po b/plugins/date/intl/nl/cryptobox-server-feature-date.po index f46fdb6..579e19f 100644 --- a/plugins/date/intl/nl/cryptobox-server-feature-date.po +++ b/plugins/date/intl/nl/cryptobox-server-feature-date.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -85,6 +85,10 @@ msgstr "" msgid "December" msgstr "" +#: Help.ChangeDate +msgid "Change the time and date for the CryptoBox server." +msgstr "" + #: SuccessMessage.DateChanged.Title msgid "Date changed" msgstr "" @@ -100,7 +104,3 @@ msgstr "" #: WarningMessage.InvalidDate.Text msgid "An invalid value for date or time was supplied. Please try again." msgstr "" - -#: Help.ChangeDate -msgid "Change the time and date for the CryptoBox server." -msgstr "" diff --git a/plugins/date/intl/pl/cryptobox-server-feature-date.po b/plugins/date/intl/pl/cryptobox-server-feature-date.po index f46fdb6..579e19f 100644 --- a/plugins/date/intl/pl/cryptobox-server-feature-date.po +++ b/plugins/date/intl/pl/cryptobox-server-feature-date.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -85,6 +85,10 @@ msgstr "" msgid "December" msgstr "" +#: Help.ChangeDate +msgid "Change the time and date for the CryptoBox server." +msgstr "" + #: SuccessMessage.DateChanged.Title msgid "Date changed" msgstr "" @@ -100,7 +104,3 @@ msgstr "" #: WarningMessage.InvalidDate.Text msgid "An invalid value for date or time was supplied. Please try again." msgstr "" - -#: Help.ChangeDate -msgid "Change the time and date for the CryptoBox server." -msgstr "" diff --git a/plugins/date/intl/pt/cryptobox-server-feature-date.po b/plugins/date/intl/pt/cryptobox-server-feature-date.po index f46fdb6..579e19f 100644 --- a/plugins/date/intl/pt/cryptobox-server-feature-date.po +++ b/plugins/date/intl/pt/cryptobox-server-feature-date.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -85,6 +85,10 @@ msgstr "" msgid "December" msgstr "" +#: Help.ChangeDate +msgid "Change the time and date for the CryptoBox server." +msgstr "" + #: SuccessMessage.DateChanged.Title msgid "Date changed" msgstr "" @@ -100,7 +104,3 @@ msgstr "" #: WarningMessage.InvalidDate.Text msgid "An invalid value for date or time was supplied. Please try again." msgstr "" - -#: Help.ChangeDate -msgid "Change the time and date for the CryptoBox server." -msgstr "" diff --git a/plugins/date/intl/ru/cryptobox-server-feature-date.po b/plugins/date/intl/ru/cryptobox-server-feature-date.po index f46fdb6..579e19f 100644 --- a/plugins/date/intl/ru/cryptobox-server-feature-date.po +++ b/plugins/date/intl/ru/cryptobox-server-feature-date.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -85,6 +85,10 @@ msgstr "" msgid "December" msgstr "" +#: Help.ChangeDate +msgid "Change the time and date for the CryptoBox server." +msgstr "" + #: SuccessMessage.DateChanged.Title msgid "Date changed" msgstr "" @@ -100,7 +104,3 @@ msgstr "" #: WarningMessage.InvalidDate.Text msgid "An invalid value for date or time was supplied. Please try again." msgstr "" - -#: Help.ChangeDate -msgid "Change the time and date for the CryptoBox server." -msgstr "" diff --git a/plugins/date/intl/sl/cryptobox-server-feature-date.po b/plugins/date/intl/sl/cryptobox-server-feature-date.po index 24e918f..00d1a90 100644 --- a/plugins/date/intl/sl/cryptobox-server-feature-date.po +++ b/plugins/date/intl/sl/cryptobox-server-feature-date.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: 2006-12-09 17:00+0100\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -84,6 +84,10 @@ msgstr "November" msgid "December" msgstr "December" +#: Help.ChangeDate +msgid "Change the time and date for the CryptoBox server." +msgstr "" + #: SuccessMessage.DateChanged.Title msgid "Date changed" msgstr "Datum je spremenjen" @@ -99,7 +103,3 @@ msgstr "Neveljavna vrednost" #: WarningMessage.InvalidDate.Text msgid "An invalid value for date or time was supplied. Please try again." msgstr "Nepravilen vnos datuma ali časa. Prosimo poskusite ponovno." - -#: Help.ChangeDate -msgid "Change the time and date for the CryptoBox server." -msgstr "" diff --git a/plugins/date/intl/sv/cryptobox-server-feature-date.po b/plugins/date/intl/sv/cryptobox-server-feature-date.po index f46fdb6..579e19f 100644 --- a/plugins/date/intl/sv/cryptobox-server-feature-date.po +++ b/plugins/date/intl/sv/cryptobox-server-feature-date.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -85,6 +85,10 @@ msgstr "" msgid "December" msgstr "" +#: Help.ChangeDate +msgid "Change the time and date for the CryptoBox server." +msgstr "" + #: SuccessMessage.DateChanged.Title msgid "Date changed" msgstr "" @@ -100,7 +104,3 @@ msgstr "" #: WarningMessage.InvalidDate.Text msgid "An invalid value for date or time was supplied. Please try again." msgstr "" - -#: Help.ChangeDate -msgid "Change the time and date for the CryptoBox server." -msgstr "" diff --git a/plugins/disks/intl/cryptobox-server-feature-disks.pot b/plugins/disks/intl/cryptobox-server-feature-disks.pot index 29314ca..4fc54a1 100644 --- a/plugins/disks/intl/cryptobox-server-feature-disks.pot +++ b/plugins/disks/intl/cryptobox-server-feature-disks.pot @@ -1,17 +1,3 @@ -msgid "" -msgstr "" -"Project-Id-Version: CryptoBox-Server 0.3\n" -"Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: sense.lab \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: utf-8\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Translate Toolkit 0.10.1\n" - #: Name msgid "Disk overview" msgstr "" diff --git a/plugins/disks/intl/cs/cryptobox-server-feature-disks.po b/plugins/disks/intl/cs/cryptobox-server-feature-disks.po index f3f5e67..7e1b25d 100644 --- a/plugins/disks/intl/cs/cryptobox-server-feature-disks.po +++ b/plugins/disks/intl/cs/cryptobox-server-feature-disks.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/disks/intl/da/cryptobox-server-feature-disks.po b/plugins/disks/intl/da/cryptobox-server-feature-disks.po index f3f5e67..7e1b25d 100644 --- a/plugins/disks/intl/da/cryptobox-server-feature-disks.po +++ b/plugins/disks/intl/da/cryptobox-server-feature-disks.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/disks/intl/de/cryptobox-server-feature-disks.po b/plugins/disks/intl/de/cryptobox-server-feature-disks.po index 040cf1e..51faa6a 100644 --- a/plugins/disks/intl/de/cryptobox-server-feature-disks.po +++ b/plugins/disks/intl/de/cryptobox-server-feature-disks.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: 2006-12-14 03:46+0100\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/disks/intl/en/cryptobox-server-feature-disks.po b/plugins/disks/intl/en/cryptobox-server-feature-disks.po index cdf113e..4f232c5 100644 --- a/plugins/disks/intl/en/cryptobox-server-feature-disks.po +++ b/plugins/disks/intl/en/cryptobox-server-feature-disks.po @@ -1,5 +1,3 @@ -msgid "" -msgstr "" #: Name msgid "Disk overview" diff --git a/plugins/disks/intl/es/cryptobox-server-feature-disks.po b/plugins/disks/intl/es/cryptobox-server-feature-disks.po index f3f5e67..7e1b25d 100644 --- a/plugins/disks/intl/es/cryptobox-server-feature-disks.po +++ b/plugins/disks/intl/es/cryptobox-server-feature-disks.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/disks/intl/fi/cryptobox-server-feature-disks.po b/plugins/disks/intl/fi/cryptobox-server-feature-disks.po index f3f5e67..7e1b25d 100644 --- a/plugins/disks/intl/fi/cryptobox-server-feature-disks.po +++ b/plugins/disks/intl/fi/cryptobox-server-feature-disks.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/disks/intl/fr/cryptobox-server-feature-disks.po b/plugins/disks/intl/fr/cryptobox-server-feature-disks.po index f3f5e67..7e1b25d 100644 --- a/plugins/disks/intl/fr/cryptobox-server-feature-disks.po +++ b/plugins/disks/intl/fr/cryptobox-server-feature-disks.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/disks/intl/hu/cryptobox-server-feature-disks.po b/plugins/disks/intl/hu/cryptobox-server-feature-disks.po index f3f5e67..7e1b25d 100644 --- a/plugins/disks/intl/hu/cryptobox-server-feature-disks.po +++ b/plugins/disks/intl/hu/cryptobox-server-feature-disks.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/disks/intl/it/cryptobox-server-feature-disks.po b/plugins/disks/intl/it/cryptobox-server-feature-disks.po index f3f5e67..7e1b25d 100644 --- a/plugins/disks/intl/it/cryptobox-server-feature-disks.po +++ b/plugins/disks/intl/it/cryptobox-server-feature-disks.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/disks/intl/ja/cryptobox-server-feature-disks.po b/plugins/disks/intl/ja/cryptobox-server-feature-disks.po index f3f5e67..7e1b25d 100644 --- a/plugins/disks/intl/ja/cryptobox-server-feature-disks.po +++ b/plugins/disks/intl/ja/cryptobox-server-feature-disks.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/disks/intl/nl/cryptobox-server-feature-disks.po b/plugins/disks/intl/nl/cryptobox-server-feature-disks.po index f3f5e67..7e1b25d 100644 --- a/plugins/disks/intl/nl/cryptobox-server-feature-disks.po +++ b/plugins/disks/intl/nl/cryptobox-server-feature-disks.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/disks/intl/pl/cryptobox-server-feature-disks.po b/plugins/disks/intl/pl/cryptobox-server-feature-disks.po index f3f5e67..7e1b25d 100644 --- a/plugins/disks/intl/pl/cryptobox-server-feature-disks.po +++ b/plugins/disks/intl/pl/cryptobox-server-feature-disks.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/disks/intl/pt/cryptobox-server-feature-disks.po b/plugins/disks/intl/pt/cryptobox-server-feature-disks.po index f3f5e67..7e1b25d 100644 --- a/plugins/disks/intl/pt/cryptobox-server-feature-disks.po +++ b/plugins/disks/intl/pt/cryptobox-server-feature-disks.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/disks/intl/ru/cryptobox-server-feature-disks.po b/plugins/disks/intl/ru/cryptobox-server-feature-disks.po index f3f5e67..7e1b25d 100644 --- a/plugins/disks/intl/ru/cryptobox-server-feature-disks.po +++ b/plugins/disks/intl/ru/cryptobox-server-feature-disks.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/disks/intl/sl/cryptobox-server-feature-disks.po b/plugins/disks/intl/sl/cryptobox-server-feature-disks.po index f3f5e67..7e1b25d 100644 --- a/plugins/disks/intl/sl/cryptobox-server-feature-disks.po +++ b/plugins/disks/intl/sl/cryptobox-server-feature-disks.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/disks/intl/sv/cryptobox-server-feature-disks.po b/plugins/disks/intl/sv/cryptobox-server-feature-disks.po index f3f5e67..7e1b25d 100644 --- a/plugins/disks/intl/sv/cryptobox-server-feature-disks.po +++ b/plugins/disks/intl/sv/cryptobox-server-feature-disks.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/help/intl/cryptobox-server-feature-help.pot b/plugins/help/intl/cryptobox-server-feature-help.pot index 4414223..e159aa9 100644 --- a/plugins/help/intl/cryptobox-server-feature-help.pot +++ b/plugins/help/intl/cryptobox-server-feature-help.pot @@ -1,17 +1,3 @@ -msgid "" -msgstr "" -"Project-Id-Version: CryptoBox-Server 0.3\n" -"Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: sense.lab \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: utf-8\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Translate Toolkit 0.10.1\n" - #: Name msgid "User manual" msgstr "" diff --git a/plugins/help/intl/cs/cryptobox-server-feature-help.po b/plugins/help/intl/cs/cryptobox-server-feature-help.po index 591e6ea..ec68aa6 100644 --- a/plugins/help/intl/cs/cryptobox-server-feature-help.po +++ b/plugins/help/intl/cs/cryptobox-server-feature-help.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/help/intl/da/cryptobox-server-feature-help.po b/plugins/help/intl/da/cryptobox-server-feature-help.po index 591e6ea..ec68aa6 100644 --- a/plugins/help/intl/da/cryptobox-server-feature-help.po +++ b/plugins/help/intl/da/cryptobox-server-feature-help.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/help/intl/de/cryptobox-server-feature-help.po b/plugins/help/intl/de/cryptobox-server-feature-help.po index ba944d4..626ecee 100644 --- a/plugins/help/intl/de/cryptobox-server-feature-help.po +++ b/plugins/help/intl/de/cryptobox-server-feature-help.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: 2006-12-14 03:47+0100\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/help/intl/en/cryptobox-server-feature-help.po b/plugins/help/intl/en/cryptobox-server-feature-help.po index e7e7e8e..71cb809 100644 --- a/plugins/help/intl/en/cryptobox-server-feature-help.po +++ b/plugins/help/intl/en/cryptobox-server-feature-help.po @@ -1,5 +1,3 @@ -msgid "" -msgstr "" #: Name msgid "User manual" diff --git a/plugins/help/intl/es/cryptobox-server-feature-help.po b/plugins/help/intl/es/cryptobox-server-feature-help.po index 591e6ea..ec68aa6 100644 --- a/plugins/help/intl/es/cryptobox-server-feature-help.po +++ b/plugins/help/intl/es/cryptobox-server-feature-help.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/help/intl/fi/cryptobox-server-feature-help.po b/plugins/help/intl/fi/cryptobox-server-feature-help.po index 591e6ea..ec68aa6 100644 --- a/plugins/help/intl/fi/cryptobox-server-feature-help.po +++ b/plugins/help/intl/fi/cryptobox-server-feature-help.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/help/intl/fr/cryptobox-server-feature-help.po b/plugins/help/intl/fr/cryptobox-server-feature-help.po index 591e6ea..ec68aa6 100644 --- a/plugins/help/intl/fr/cryptobox-server-feature-help.po +++ b/plugins/help/intl/fr/cryptobox-server-feature-help.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/help/intl/hu/cryptobox-server-feature-help.po b/plugins/help/intl/hu/cryptobox-server-feature-help.po index 591e6ea..ec68aa6 100644 --- a/plugins/help/intl/hu/cryptobox-server-feature-help.po +++ b/plugins/help/intl/hu/cryptobox-server-feature-help.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/help/intl/it/cryptobox-server-feature-help.po b/plugins/help/intl/it/cryptobox-server-feature-help.po index 591e6ea..ec68aa6 100644 --- a/plugins/help/intl/it/cryptobox-server-feature-help.po +++ b/plugins/help/intl/it/cryptobox-server-feature-help.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/help/intl/ja/cryptobox-server-feature-help.po b/plugins/help/intl/ja/cryptobox-server-feature-help.po index 591e6ea..ec68aa6 100644 --- a/plugins/help/intl/ja/cryptobox-server-feature-help.po +++ b/plugins/help/intl/ja/cryptobox-server-feature-help.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/help/intl/nl/cryptobox-server-feature-help.po b/plugins/help/intl/nl/cryptobox-server-feature-help.po index 591e6ea..ec68aa6 100644 --- a/plugins/help/intl/nl/cryptobox-server-feature-help.po +++ b/plugins/help/intl/nl/cryptobox-server-feature-help.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/help/intl/pl/cryptobox-server-feature-help.po b/plugins/help/intl/pl/cryptobox-server-feature-help.po index 591e6ea..ec68aa6 100644 --- a/plugins/help/intl/pl/cryptobox-server-feature-help.po +++ b/plugins/help/intl/pl/cryptobox-server-feature-help.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/help/intl/pt/cryptobox-server-feature-help.po b/plugins/help/intl/pt/cryptobox-server-feature-help.po index 591e6ea..ec68aa6 100644 --- a/plugins/help/intl/pt/cryptobox-server-feature-help.po +++ b/plugins/help/intl/pt/cryptobox-server-feature-help.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/help/intl/ru/cryptobox-server-feature-help.po b/plugins/help/intl/ru/cryptobox-server-feature-help.po index 591e6ea..ec68aa6 100644 --- a/plugins/help/intl/ru/cryptobox-server-feature-help.po +++ b/plugins/help/intl/ru/cryptobox-server-feature-help.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/help/intl/sl/cryptobox-server-feature-help.po b/plugins/help/intl/sl/cryptobox-server-feature-help.po index 80f6b31..600ef42 100644 --- a/plugins/help/intl/sl/cryptobox-server-feature-help.po +++ b/plugins/help/intl/sl/cryptobox-server-feature-help.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: 2006-12-09 16:28+0100\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/help/intl/sv/cryptobox-server-feature-help.po b/plugins/help/intl/sv/cryptobox-server-feature-help.po index 591e6ea..ec68aa6 100644 --- a/plugins/help/intl/sv/cryptobox-server-feature-help.po +++ b/plugins/help/intl/sv/cryptobox-server-feature-help.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/language_selection/intl/cryptobox-server-feature-language_selection.pot b/plugins/language_selection/intl/cryptobox-server-feature-language_selection.pot index a510c28..53c2ef9 100644 --- a/plugins/language_selection/intl/cryptobox-server-feature-language_selection.pot +++ b/plugins/language_selection/intl/cryptobox-server-feature-language_selection.pot @@ -1,17 +1,3 @@ -msgid "" -msgstr "" -"Project-Id-Version: CryptoBox-Server 0.3\n" -"Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: sense.lab \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: utf-8\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Translate Toolkit 0.10.1\n" - #: Name msgid "Choose interface language" msgstr "" diff --git a/plugins/language_selection/intl/cs/cryptobox-server-feature-language_selection.po b/plugins/language_selection/intl/cs/cryptobox-server-feature-language_selection.po index 21fcb7f..8567cfa 100644 --- a/plugins/language_selection/intl/cs/cryptobox-server-feature-language_selection.po +++ b/plugins/language_selection/intl/cs/cryptobox-server-feature-language_selection.po @@ -1,9 +1,8 @@ -#, fuzzy msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/language_selection/intl/da/cryptobox-server-feature-language_selection.po b/plugins/language_selection/intl/da/cryptobox-server-feature-language_selection.po index 21fcb7f..8567cfa 100644 --- a/plugins/language_selection/intl/da/cryptobox-server-feature-language_selection.po +++ b/plugins/language_selection/intl/da/cryptobox-server-feature-language_selection.po @@ -1,9 +1,8 @@ -#, fuzzy msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/language_selection/intl/de/cryptobox-server-feature-language_selection.po b/plugins/language_selection/intl/de/cryptobox-server-feature-language_selection.po index 044e5ec..533da62 100644 --- a/plugins/language_selection/intl/de/cryptobox-server-feature-language_selection.po +++ b/plugins/language_selection/intl/de/cryptobox-server-feature-language_selection.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: 2006-12-14 03:53+0100\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/language_selection/intl/en/cryptobox-server-feature-language_selection.po b/plugins/language_selection/intl/en/cryptobox-server-feature-language_selection.po index e168a55..d5f67b6 100644 --- a/plugins/language_selection/intl/en/cryptobox-server-feature-language_selection.po +++ b/plugins/language_selection/intl/en/cryptobox-server-feature-language_selection.po @@ -1,5 +1,3 @@ -msgid "" -msgstr "" #: Name msgid "Choose interface language" @@ -14,12 +12,8 @@ msgid "Choose an interface language" msgstr "Choose an interface language" #: Help.Select -msgid "" -"Choose your preferred interface language. This setting will be kept for your " -"browsing session." -msgstr "" -"Choose your preferred interface language. This setting will be kept for your " -"browsing session." +msgid "Choose your preferred interface language. This setting will be kept for your browsing session." +msgstr "Choose your preferred interface language. This setting will be kept for your browsing session." #~ msgid "Choose your interface language" #~ msgstr "Choose youur interface language" diff --git a/plugins/language_selection/intl/es/cryptobox-server-feature-language_selection.po b/plugins/language_selection/intl/es/cryptobox-server-feature-language_selection.po index 21fcb7f..daf7b2a 100644 --- a/plugins/language_selection/intl/es/cryptobox-server-feature-language_selection.po +++ b/plugins/language_selection/intl/es/cryptobox-server-feature-language_selection.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/language_selection/intl/fi/cryptobox-server-feature-language_selection.po b/plugins/language_selection/intl/fi/cryptobox-server-feature-language_selection.po index 21fcb7f..daf7b2a 100644 --- a/plugins/language_selection/intl/fi/cryptobox-server-feature-language_selection.po +++ b/plugins/language_selection/intl/fi/cryptobox-server-feature-language_selection.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/language_selection/intl/fr/cryptobox-server-feature-language_selection.po b/plugins/language_selection/intl/fr/cryptobox-server-feature-language_selection.po index 21fcb7f..daf7b2a 100644 --- a/plugins/language_selection/intl/fr/cryptobox-server-feature-language_selection.po +++ b/plugins/language_selection/intl/fr/cryptobox-server-feature-language_selection.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/language_selection/intl/hu/cryptobox-server-feature-language_selection.po b/plugins/language_selection/intl/hu/cryptobox-server-feature-language_selection.po index 21fcb7f..daf7b2a 100644 --- a/plugins/language_selection/intl/hu/cryptobox-server-feature-language_selection.po +++ b/plugins/language_selection/intl/hu/cryptobox-server-feature-language_selection.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/language_selection/intl/it/cryptobox-server-feature-language_selection.po b/plugins/language_selection/intl/it/cryptobox-server-feature-language_selection.po index 21fcb7f..daf7b2a 100644 --- a/plugins/language_selection/intl/it/cryptobox-server-feature-language_selection.po +++ b/plugins/language_selection/intl/it/cryptobox-server-feature-language_selection.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/language_selection/intl/ja/cryptobox-server-feature-language_selection.po b/plugins/language_selection/intl/ja/cryptobox-server-feature-language_selection.po index 21fcb7f..daf7b2a 100644 --- a/plugins/language_selection/intl/ja/cryptobox-server-feature-language_selection.po +++ b/plugins/language_selection/intl/ja/cryptobox-server-feature-language_selection.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/language_selection/intl/nl/cryptobox-server-feature-language_selection.po b/plugins/language_selection/intl/nl/cryptobox-server-feature-language_selection.po index 21fcb7f..daf7b2a 100644 --- a/plugins/language_selection/intl/nl/cryptobox-server-feature-language_selection.po +++ b/plugins/language_selection/intl/nl/cryptobox-server-feature-language_selection.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/language_selection/intl/pl/cryptobox-server-feature-language_selection.po b/plugins/language_selection/intl/pl/cryptobox-server-feature-language_selection.po index 21fcb7f..daf7b2a 100644 --- a/plugins/language_selection/intl/pl/cryptobox-server-feature-language_selection.po +++ b/plugins/language_selection/intl/pl/cryptobox-server-feature-language_selection.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/language_selection/intl/pt/cryptobox-server-feature-language_selection.po b/plugins/language_selection/intl/pt/cryptobox-server-feature-language_selection.po index 21fcb7f..daf7b2a 100644 --- a/plugins/language_selection/intl/pt/cryptobox-server-feature-language_selection.po +++ b/plugins/language_selection/intl/pt/cryptobox-server-feature-language_selection.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/language_selection/intl/ru/cryptobox-server-feature-language_selection.po b/plugins/language_selection/intl/ru/cryptobox-server-feature-language_selection.po index 21fcb7f..daf7b2a 100644 --- a/plugins/language_selection/intl/ru/cryptobox-server-feature-language_selection.po +++ b/plugins/language_selection/intl/ru/cryptobox-server-feature-language_selection.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/language_selection/intl/sl/cryptobox-server-feature-language_selection.po b/plugins/language_selection/intl/sl/cryptobox-server-feature-language_selection.po index c2adc62..4149ddb 100644 --- a/plugins/language_selection/intl/sl/cryptobox-server-feature-language_selection.po +++ b/plugins/language_selection/intl/sl/cryptobox-server-feature-language_selection.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: 2006-12-09 16:33+0100\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/language_selection/intl/sv/cryptobox-server-feature-language_selection.po b/plugins/language_selection/intl/sv/cryptobox-server-feature-language_selection.po index 21fcb7f..daf7b2a 100644 --- a/plugins/language_selection/intl/sv/cryptobox-server-feature-language_selection.po +++ b/plugins/language_selection/intl/sv/cryptobox-server-feature-language_selection.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/logs/intl/cryptobox-server-feature-logs.pot b/plugins/logs/intl/cryptobox-server-feature-logs.pot index 8c088f5..db7f18a 100644 --- a/plugins/logs/intl/cryptobox-server-feature-logs.pot +++ b/plugins/logs/intl/cryptobox-server-feature-logs.pot @@ -1,37 +1,3 @@ -msgid "" -msgstr "" -"Project-Id-Version: CryptoBox-Server 0.3\n" -"Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: sense.lab \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: utf-8\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Translate Toolkit 0.10.1\n" - -#: Name -msgid "Show the content of the log file" -msgstr "" - -#: Link -msgid "Show log file" -msgstr "" - -#: Title.Log -msgid "CryptoBox logfiles" -msgstr "" - -#: Text.EmptyLog -msgid "The logfile of the CryptoBox is empty." -msgstr "" - -#: Text.Refresh -msgid "Refresh" -msgstr "" - #: Name msgid "Show event log" msgstr "" @@ -80,6 +46,10 @@ msgstr "" msgid "seconds" msgstr "" +#: Help.EventLog +msgid "Here you can see the event log of the CryptoBox. Every message belongs to one of the following groups: information/warning/error as represented by the symbol in the leftmost column. You may choose to see all or only some selected messages. If you encounter any problems with the CryptoBox then you should send the most recent warnings and errors besides a detailed description to info@cryptobox.org." +msgstr "" + #: AdviceMessage.EmptyLog.Text msgid "There are no messages available." msgstr "" @@ -91,7 +61,3 @@ msgstr "" #: AdviceMessage.NoLogFileConfigured.Text msgid "The CryptoBox is not configured to log events to a file. Thus it is not possible to review log events." msgstr "" - -#: Help.EventLog -msgid "Here you can see the event log of the CryptoBox. Every message belongs to one of the following groups: information/warning/error as represented by the symbol in the leftmost column. You may choose to see all or only some selected messages. If you encounter any problems with the CryptoBox then you should send the most recent warnings and messages besides a detailed description to info@cryptobox.org." -msgstr "" diff --git a/plugins/logs/intl/cs/cryptobox-server-feature-logs.po b/plugins/logs/intl/cs/cryptobox-server-feature-logs.po index fa1431e..1cee52c 100644 --- a/plugins/logs/intl/cs/cryptobox-server-feature-logs.po +++ b/plugins/logs/intl/cs/cryptobox-server-feature-logs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:40+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,26 +13,6 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Translate Toolkit 0.10.1\n" -#: Name -msgid "Show the content of the log file" -msgstr "" - -#: Link -msgid "Show log file" -msgstr "" - -#: Title.Log -msgid "CryptoBox logfiles" -msgstr "" - -#: Text.EmptyLog -msgid "The logfile of the CryptoBox is empty." -msgstr "" - -#: Text.Refresh -msgid "Refresh" -msgstr "" - #: Name msgid "Show event log" msgstr "" @@ -81,6 +61,10 @@ msgstr "" msgid "seconds" msgstr "" +#: Help.EventLog +msgid "Here you can see the event log of the CryptoBox. Every message belongs to one of the following groups: information/warning/error as represented by the symbol in the leftmost column. You may choose to see all or only some selected messages. If you encounter any problems with the CryptoBox then you should send the most recent warnings and errors besides a detailed description to info@cryptobox.org." +msgstr "" + #: AdviceMessage.EmptyLog.Text msgid "There are no messages available." msgstr "" @@ -92,7 +76,3 @@ msgstr "" #: AdviceMessage.NoLogFileConfigured.Text msgid "The CryptoBox is not configured to log events to a file. Thus it is not possible to review log events." msgstr "" - -#: Help.EventLog -msgid "Here you can see the event log of the CryptoBox. Every message belongs to one of the following groups: information/warning/error as represented by the symbol in the leftmost column. You may choose to see all or only some selected messages. If you encounter any problems with the CryptoBox then you should send the most recent warnings and messages besides a detailed description to info@cryptobox.org." -msgstr "" diff --git a/plugins/logs/intl/da/cryptobox-server-feature-logs.po b/plugins/logs/intl/da/cryptobox-server-feature-logs.po index fa1431e..1cee52c 100644 --- a/plugins/logs/intl/da/cryptobox-server-feature-logs.po +++ b/plugins/logs/intl/da/cryptobox-server-feature-logs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:40+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,26 +13,6 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Translate Toolkit 0.10.1\n" -#: Name -msgid "Show the content of the log file" -msgstr "" - -#: Link -msgid "Show log file" -msgstr "" - -#: Title.Log -msgid "CryptoBox logfiles" -msgstr "" - -#: Text.EmptyLog -msgid "The logfile of the CryptoBox is empty." -msgstr "" - -#: Text.Refresh -msgid "Refresh" -msgstr "" - #: Name msgid "Show event log" msgstr "" @@ -81,6 +61,10 @@ msgstr "" msgid "seconds" msgstr "" +#: Help.EventLog +msgid "Here you can see the event log of the CryptoBox. Every message belongs to one of the following groups: information/warning/error as represented by the symbol in the leftmost column. You may choose to see all or only some selected messages. If you encounter any problems with the CryptoBox then you should send the most recent warnings and errors besides a detailed description to info@cryptobox.org." +msgstr "" + #: AdviceMessage.EmptyLog.Text msgid "There are no messages available." msgstr "" @@ -92,7 +76,3 @@ msgstr "" #: AdviceMessage.NoLogFileConfigured.Text msgid "The CryptoBox is not configured to log events to a file. Thus it is not possible to review log events." msgstr "" - -#: Help.EventLog -msgid "Here you can see the event log of the CryptoBox. Every message belongs to one of the following groups: information/warning/error as represented by the symbol in the leftmost column. You may choose to see all or only some selected messages. If you encounter any problems with the CryptoBox then you should send the most recent warnings and messages besides a detailed description to info@cryptobox.org." -msgstr "" diff --git a/plugins/logs/intl/de/cryptobox-server-feature-logs.po b/plugins/logs/intl/de/cryptobox-server-feature-logs.po index a39dbf2..98d6b5d 100644 --- a/plugins/logs/intl/de/cryptobox-server-feature-logs.po +++ b/plugins/logs/intl/de/cryptobox-server-feature-logs.po @@ -2,9 +2,9 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" -"PO-Revision-Date: 2006-12-16 02:11+0100\n" -"Last-Translator: Henning \n" +"POT-Creation-Date: 2006-12-18 11:40+0100\n" +"PO-Revision-Date: 2006-12-18 10:48+0100\n" +"Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -12,41 +12,21 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 0.10.1\n" -#: Name -msgid "Show the content of the log file" -msgstr "Zeige den Inhalt der Logdatei" - -#: Link -msgid "Show log file" -msgstr "Zeige Logdatei" - -#: Title.Log -msgid "CryptoBox logfiles" -msgstr "CryptoBox Logdateien" - -#: Text.EmptyLog -msgid "The logfile of the CryptoBox is empty." -msgstr "Die Logdatei der CryptoBox ist leer." - -#: Text.Refresh -msgid "Refresh" -msgstr "Aktualisieren" - #: Name msgid "Show event log" -msgstr "Zeige Ereignis Log" +msgstr "Zeige Ereignis-Protokoll" #: Link msgid "Event log" -msgstr "Ereignis Log" +msgstr "Protokoll" #: Title.Log msgid "CryptoBox event log" -msgstr "CryptoBox Ereignis Log" +msgstr "CryptoBox Ereignis-Protokoll" #: Text.ShowAll msgid "Show all messages" -msgstr "Zeige alle Benachrichtigungen" +msgstr "Zeige alle Ereignisse" #: Text.AtLeastWarnings msgid "Show warnings and errors" @@ -80,18 +60,18 @@ msgstr "Minuten" msgid "seconds" msgstr "Sekunden" +#: Help.EventLog +msgid "Here you can see the event log of the CryptoBox. Every message belongs to one of the following groups: information/warning/error as represented by the symbol in the leftmost column. You may choose to see all or only some selected messages. If you encounter any problems with the CryptoBox then you should send the most recent warnings and errors besides a detailed description to info@cryptobox.org." +msgstr "Hier kannst du das Ereignis-Protokoll der CryptoBox verfolgen. Jedes Ereignis gehört zu einer der folgenden Gruppen: Information / Warnung / Fehler - sie werden durch die Symbole in der linke Spalte repräsentiert. Du kannst wählen, ob (1) alle Ereignisse, (2) Warnungen und Fehler oder (3) nur Fehler angezeigt werden sollen. Falls du irgendwelche Probleme mit der CryptoBox hast, dann sende bitte die aktuellsten Warnungen und Fehler inklusive einer detaillierten Beschreibung des Problems an info@cryptobox.org." + #: AdviceMessage.EmptyLog.Text msgid "There are no messages available." -msgstr "Es sind keine Benachrichtigungen vorhanden." +msgstr "Es sind keine Ereignisse vorhanden." #: AdviceMessage.NoLogFileConfigured.Title msgid "No log file configured" -msgstr "Keine Logdatei konfiguriert" +msgstr "Keine Protokoll-Datei konfiguriert" #: AdviceMessage.NoLogFileConfigured.Text msgid "The CryptoBox is not configured to log events to a file. Thus it is not possible to review log events." -msgstr "Die CryptoBox ist nicht konfiguriert, um Ereignisse in eine Datei zu loggen. Deswegen sind keine vergangenen Ereignisse betrachtbar." - -#: Help.EventLog -msgid "Here you can see the event log of the CryptoBox. Every message belongs to one of the following groups: information/warning/error as represented by the symbol in the leftmost column. You may choose to see all or only some selected messages. If you encounter any problems with the CryptoBox then you should send the most recent warnings and messages besides a detailed description to info@cryptobox.org." -msgstr "Hier kannst du das Ereignis Logbuch der CryptoBox betrachten. Jede Meldung gehört zu einer der folgenden Gruppen: Info/Warnung/Fehler, die durch ein Symbol in der linken Spalte repräsentiert werden. Du kannst nur bestimmte Meldungen anzeigen lassen. Falls du Probleme mit der CryptoBox hast, schicke die letzten Meldungen mit einer ausführlichen Beschreibung deiner Aktionen an info@cryptobox.org." +msgstr "Die CryptoBox ist nicht konfiguriert, um das Ereignis-Protokoll in einer Datei abzuspeichern. Deshalb ist es nicht möglich, das Ereignis-Protokoll nachzuvollziehen." diff --git a/plugins/logs/intl/en/cryptobox-server-feature-logs.po b/plugins/logs/intl/en/cryptobox-server-feature-logs.po index 4fb5ccb..0de8c61 100644 --- a/plugins/logs/intl/en/cryptobox-server-feature-logs.po +++ b/plugins/logs/intl/en/cryptobox-server-feature-logs.po @@ -1,25 +1,3 @@ -msgid "" -msgstr "" - -#: Name -msgid "Show the content of the log file" -msgstr "Show the content of the log file" - -#: Link -msgid "Show log file" -msgstr "Show log file" - -#: Title.Log -msgid "CryptoBox logfiles" -msgstr "CryptoBox logfiles" - -#: Text.EmptyLog -msgid "The logfile of the CryptoBox is empty." -msgstr "The logfile of the CryptoBox is empty." - -#: Text.Refresh -msgid "Refresh" -msgstr "Refresh" #: Name msgid "Show event log" @@ -69,6 +47,11 @@ msgstr "minutes" msgid "seconds" msgstr "seconds" +#: Help.EventLog +#, fuzzy +msgid "Here you can see the event log of the CryptoBox. Every message belongs to one of the following groups: information/warning/error as represented by the symbol in the leftmost column. You may choose to see all or only some selected messages. If you encounter any problems with the CryptoBox then you should send the most recent warnings and errors besides a detailed description to info@cryptobox.org." +msgstr "Here you can see the event log of the CryptoBox. Every message belongs to one of the following groups: information/warning/error as represented by the symbol in the leftmost column. You may choose to see all or only some selected messages. If you encounter any problems with the CryptoBox then you should send the most recent warnings and errors besides a detailed description to info@cryptobox.org." + #: AdviceMessage.EmptyLog.Text msgid "There are no messages available." msgstr "There are no messages available." @@ -78,25 +61,20 @@ msgid "No log file configured" msgstr "No log file configured" #: AdviceMessage.NoLogFileConfigured.Text -msgid "" -"The CryptoBox is not configured to log events to a file. Thus it is not " -"possible to review log events." -msgstr "" -"The CryptoBox is not configured to log events to a file. Thus it is not " -"possible to review log events." +msgid "The CryptoBox is not configured to log events to a file. Thus it is not possible to review log events." +msgstr "The CryptoBox is not configured to log events to a file. Thus it is not possible to review log events." -#: Help.EventLog -msgid "" -"Here you can see the event log of the CryptoBox. Every message belongs to " -"one of the following groups: information/warning/error as represented by the " -"symbol in the leftmost column. You may choose to see all or only some " -"selected messages. If you encounter any problems with the CryptoBox then you " -"should send the most recent warnings and messages besides a detailed " -"description to info@cryptobox.org." -msgstr "" -"Here you can see the event log of the CryptoBox. Every message belongs to " -"one of the following groups: information/warning/error as represented by the " -"symbol in the leftmost column. You may choose to see all or only some " -"selected messages. If you encounter any problems with the CryptoBox then you " -"should send the most recent warnings and messages besides a detailed " -"description to info@cryptobox.org." +#~ msgid "Show the content of the log file" +#~ msgstr "Show the content of the log file" + +#~ msgid "Show log file" +#~ msgstr "Show log file" + +#~ msgid "CryptoBox logfiles" +#~ msgstr "CryptoBox logfiles" + +#~ msgid "The logfile of the CryptoBox is empty." +#~ msgstr "The logfile of the CryptoBox is empty." + +#~ msgid "Refresh" +#~ msgstr "Refresh" diff --git a/plugins/logs/intl/es/cryptobox-server-feature-logs.po b/plugins/logs/intl/es/cryptobox-server-feature-logs.po index fa1431e..1cee52c 100644 --- a/plugins/logs/intl/es/cryptobox-server-feature-logs.po +++ b/plugins/logs/intl/es/cryptobox-server-feature-logs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:40+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,26 +13,6 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Translate Toolkit 0.10.1\n" -#: Name -msgid "Show the content of the log file" -msgstr "" - -#: Link -msgid "Show log file" -msgstr "" - -#: Title.Log -msgid "CryptoBox logfiles" -msgstr "" - -#: Text.EmptyLog -msgid "The logfile of the CryptoBox is empty." -msgstr "" - -#: Text.Refresh -msgid "Refresh" -msgstr "" - #: Name msgid "Show event log" msgstr "" @@ -81,6 +61,10 @@ msgstr "" msgid "seconds" msgstr "" +#: Help.EventLog +msgid "Here you can see the event log of the CryptoBox. Every message belongs to one of the following groups: information/warning/error as represented by the symbol in the leftmost column. You may choose to see all or only some selected messages. If you encounter any problems with the CryptoBox then you should send the most recent warnings and errors besides a detailed description to info@cryptobox.org." +msgstr "" + #: AdviceMessage.EmptyLog.Text msgid "There are no messages available." msgstr "" @@ -92,7 +76,3 @@ msgstr "" #: AdviceMessage.NoLogFileConfigured.Text msgid "The CryptoBox is not configured to log events to a file. Thus it is not possible to review log events." msgstr "" - -#: Help.EventLog -msgid "Here you can see the event log of the CryptoBox. Every message belongs to one of the following groups: information/warning/error as represented by the symbol in the leftmost column. You may choose to see all or only some selected messages. If you encounter any problems with the CryptoBox then you should send the most recent warnings and messages besides a detailed description to info@cryptobox.org." -msgstr "" diff --git a/plugins/logs/intl/fi/cryptobox-server-feature-logs.po b/plugins/logs/intl/fi/cryptobox-server-feature-logs.po index fa1431e..1cee52c 100644 --- a/plugins/logs/intl/fi/cryptobox-server-feature-logs.po +++ b/plugins/logs/intl/fi/cryptobox-server-feature-logs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:40+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,26 +13,6 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Translate Toolkit 0.10.1\n" -#: Name -msgid "Show the content of the log file" -msgstr "" - -#: Link -msgid "Show log file" -msgstr "" - -#: Title.Log -msgid "CryptoBox logfiles" -msgstr "" - -#: Text.EmptyLog -msgid "The logfile of the CryptoBox is empty." -msgstr "" - -#: Text.Refresh -msgid "Refresh" -msgstr "" - #: Name msgid "Show event log" msgstr "" @@ -81,6 +61,10 @@ msgstr "" msgid "seconds" msgstr "" +#: Help.EventLog +msgid "Here you can see the event log of the CryptoBox. Every message belongs to one of the following groups: information/warning/error as represented by the symbol in the leftmost column. You may choose to see all or only some selected messages. If you encounter any problems with the CryptoBox then you should send the most recent warnings and errors besides a detailed description to info@cryptobox.org." +msgstr "" + #: AdviceMessage.EmptyLog.Text msgid "There are no messages available." msgstr "" @@ -92,7 +76,3 @@ msgstr "" #: AdviceMessage.NoLogFileConfigured.Text msgid "The CryptoBox is not configured to log events to a file. Thus it is not possible to review log events." msgstr "" - -#: Help.EventLog -msgid "Here you can see the event log of the CryptoBox. Every message belongs to one of the following groups: information/warning/error as represented by the symbol in the leftmost column. You may choose to see all or only some selected messages. If you encounter any problems with the CryptoBox then you should send the most recent warnings and messages besides a detailed description to info@cryptobox.org." -msgstr "" diff --git a/plugins/logs/intl/fr/cryptobox-server-feature-logs.po b/plugins/logs/intl/fr/cryptobox-server-feature-logs.po index fa1431e..1cee52c 100644 --- a/plugins/logs/intl/fr/cryptobox-server-feature-logs.po +++ b/plugins/logs/intl/fr/cryptobox-server-feature-logs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:40+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,26 +13,6 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Translate Toolkit 0.10.1\n" -#: Name -msgid "Show the content of the log file" -msgstr "" - -#: Link -msgid "Show log file" -msgstr "" - -#: Title.Log -msgid "CryptoBox logfiles" -msgstr "" - -#: Text.EmptyLog -msgid "The logfile of the CryptoBox is empty." -msgstr "" - -#: Text.Refresh -msgid "Refresh" -msgstr "" - #: Name msgid "Show event log" msgstr "" @@ -81,6 +61,10 @@ msgstr "" msgid "seconds" msgstr "" +#: Help.EventLog +msgid "Here you can see the event log of the CryptoBox. Every message belongs to one of the following groups: information/warning/error as represented by the symbol in the leftmost column. You may choose to see all or only some selected messages. If you encounter any problems with the CryptoBox then you should send the most recent warnings and errors besides a detailed description to info@cryptobox.org." +msgstr "" + #: AdviceMessage.EmptyLog.Text msgid "There are no messages available." msgstr "" @@ -92,7 +76,3 @@ msgstr "" #: AdviceMessage.NoLogFileConfigured.Text msgid "The CryptoBox is not configured to log events to a file. Thus it is not possible to review log events." msgstr "" - -#: Help.EventLog -msgid "Here you can see the event log of the CryptoBox. Every message belongs to one of the following groups: information/warning/error as represented by the symbol in the leftmost column. You may choose to see all or only some selected messages. If you encounter any problems with the CryptoBox then you should send the most recent warnings and messages besides a detailed description to info@cryptobox.org." -msgstr "" diff --git a/plugins/logs/intl/hu/cryptobox-server-feature-logs.po b/plugins/logs/intl/hu/cryptobox-server-feature-logs.po index fa1431e..1cee52c 100644 --- a/plugins/logs/intl/hu/cryptobox-server-feature-logs.po +++ b/plugins/logs/intl/hu/cryptobox-server-feature-logs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:40+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,26 +13,6 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Translate Toolkit 0.10.1\n" -#: Name -msgid "Show the content of the log file" -msgstr "" - -#: Link -msgid "Show log file" -msgstr "" - -#: Title.Log -msgid "CryptoBox logfiles" -msgstr "" - -#: Text.EmptyLog -msgid "The logfile of the CryptoBox is empty." -msgstr "" - -#: Text.Refresh -msgid "Refresh" -msgstr "" - #: Name msgid "Show event log" msgstr "" @@ -81,6 +61,10 @@ msgstr "" msgid "seconds" msgstr "" +#: Help.EventLog +msgid "Here you can see the event log of the CryptoBox. Every message belongs to one of the following groups: information/warning/error as represented by the symbol in the leftmost column. You may choose to see all or only some selected messages. If you encounter any problems with the CryptoBox then you should send the most recent warnings and errors besides a detailed description to info@cryptobox.org." +msgstr "" + #: AdviceMessage.EmptyLog.Text msgid "There are no messages available." msgstr "" @@ -92,7 +76,3 @@ msgstr "" #: AdviceMessage.NoLogFileConfigured.Text msgid "The CryptoBox is not configured to log events to a file. Thus it is not possible to review log events." msgstr "" - -#: Help.EventLog -msgid "Here you can see the event log of the CryptoBox. Every message belongs to one of the following groups: information/warning/error as represented by the symbol in the leftmost column. You may choose to see all or only some selected messages. If you encounter any problems with the CryptoBox then you should send the most recent warnings and messages besides a detailed description to info@cryptobox.org." -msgstr "" diff --git a/plugins/logs/intl/it/cryptobox-server-feature-logs.po b/plugins/logs/intl/it/cryptobox-server-feature-logs.po index fa1431e..1cee52c 100644 --- a/plugins/logs/intl/it/cryptobox-server-feature-logs.po +++ b/plugins/logs/intl/it/cryptobox-server-feature-logs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:40+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,26 +13,6 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Translate Toolkit 0.10.1\n" -#: Name -msgid "Show the content of the log file" -msgstr "" - -#: Link -msgid "Show log file" -msgstr "" - -#: Title.Log -msgid "CryptoBox logfiles" -msgstr "" - -#: Text.EmptyLog -msgid "The logfile of the CryptoBox is empty." -msgstr "" - -#: Text.Refresh -msgid "Refresh" -msgstr "" - #: Name msgid "Show event log" msgstr "" @@ -81,6 +61,10 @@ msgstr "" msgid "seconds" msgstr "" +#: Help.EventLog +msgid "Here you can see the event log of the CryptoBox. Every message belongs to one of the following groups: information/warning/error as represented by the symbol in the leftmost column. You may choose to see all or only some selected messages. If you encounter any problems with the CryptoBox then you should send the most recent warnings and errors besides a detailed description to info@cryptobox.org." +msgstr "" + #: AdviceMessage.EmptyLog.Text msgid "There are no messages available." msgstr "" @@ -92,7 +76,3 @@ msgstr "" #: AdviceMessage.NoLogFileConfigured.Text msgid "The CryptoBox is not configured to log events to a file. Thus it is not possible to review log events." msgstr "" - -#: Help.EventLog -msgid "Here you can see the event log of the CryptoBox. Every message belongs to one of the following groups: information/warning/error as represented by the symbol in the leftmost column. You may choose to see all or only some selected messages. If you encounter any problems with the CryptoBox then you should send the most recent warnings and messages besides a detailed description to info@cryptobox.org." -msgstr "" diff --git a/plugins/logs/intl/ja/cryptobox-server-feature-logs.po b/plugins/logs/intl/ja/cryptobox-server-feature-logs.po index fa1431e..1cee52c 100644 --- a/plugins/logs/intl/ja/cryptobox-server-feature-logs.po +++ b/plugins/logs/intl/ja/cryptobox-server-feature-logs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:40+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,26 +13,6 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Translate Toolkit 0.10.1\n" -#: Name -msgid "Show the content of the log file" -msgstr "" - -#: Link -msgid "Show log file" -msgstr "" - -#: Title.Log -msgid "CryptoBox logfiles" -msgstr "" - -#: Text.EmptyLog -msgid "The logfile of the CryptoBox is empty." -msgstr "" - -#: Text.Refresh -msgid "Refresh" -msgstr "" - #: Name msgid "Show event log" msgstr "" @@ -81,6 +61,10 @@ msgstr "" msgid "seconds" msgstr "" +#: Help.EventLog +msgid "Here you can see the event log of the CryptoBox. Every message belongs to one of the following groups: information/warning/error as represented by the symbol in the leftmost column. You may choose to see all or only some selected messages. If you encounter any problems with the CryptoBox then you should send the most recent warnings and errors besides a detailed description to info@cryptobox.org." +msgstr "" + #: AdviceMessage.EmptyLog.Text msgid "There are no messages available." msgstr "" @@ -92,7 +76,3 @@ msgstr "" #: AdviceMessage.NoLogFileConfigured.Text msgid "The CryptoBox is not configured to log events to a file. Thus it is not possible to review log events." msgstr "" - -#: Help.EventLog -msgid "Here you can see the event log of the CryptoBox. Every message belongs to one of the following groups: information/warning/error as represented by the symbol in the leftmost column. You may choose to see all or only some selected messages. If you encounter any problems with the CryptoBox then you should send the most recent warnings and messages besides a detailed description to info@cryptobox.org." -msgstr "" diff --git a/plugins/logs/intl/nl/cryptobox-server-feature-logs.po b/plugins/logs/intl/nl/cryptobox-server-feature-logs.po index fa1431e..1cee52c 100644 --- a/plugins/logs/intl/nl/cryptobox-server-feature-logs.po +++ b/plugins/logs/intl/nl/cryptobox-server-feature-logs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:40+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,26 +13,6 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Translate Toolkit 0.10.1\n" -#: Name -msgid "Show the content of the log file" -msgstr "" - -#: Link -msgid "Show log file" -msgstr "" - -#: Title.Log -msgid "CryptoBox logfiles" -msgstr "" - -#: Text.EmptyLog -msgid "The logfile of the CryptoBox is empty." -msgstr "" - -#: Text.Refresh -msgid "Refresh" -msgstr "" - #: Name msgid "Show event log" msgstr "" @@ -81,6 +61,10 @@ msgstr "" msgid "seconds" msgstr "" +#: Help.EventLog +msgid "Here you can see the event log of the CryptoBox. Every message belongs to one of the following groups: information/warning/error as represented by the symbol in the leftmost column. You may choose to see all or only some selected messages. If you encounter any problems with the CryptoBox then you should send the most recent warnings and errors besides a detailed description to info@cryptobox.org." +msgstr "" + #: AdviceMessage.EmptyLog.Text msgid "There are no messages available." msgstr "" @@ -92,7 +76,3 @@ msgstr "" #: AdviceMessage.NoLogFileConfigured.Text msgid "The CryptoBox is not configured to log events to a file. Thus it is not possible to review log events." msgstr "" - -#: Help.EventLog -msgid "Here you can see the event log of the CryptoBox. Every message belongs to one of the following groups: information/warning/error as represented by the symbol in the leftmost column. You may choose to see all or only some selected messages. If you encounter any problems with the CryptoBox then you should send the most recent warnings and messages besides a detailed description to info@cryptobox.org." -msgstr "" diff --git a/plugins/logs/intl/pl/cryptobox-server-feature-logs.po b/plugins/logs/intl/pl/cryptobox-server-feature-logs.po index fa1431e..1cee52c 100644 --- a/plugins/logs/intl/pl/cryptobox-server-feature-logs.po +++ b/plugins/logs/intl/pl/cryptobox-server-feature-logs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:40+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,26 +13,6 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Translate Toolkit 0.10.1\n" -#: Name -msgid "Show the content of the log file" -msgstr "" - -#: Link -msgid "Show log file" -msgstr "" - -#: Title.Log -msgid "CryptoBox logfiles" -msgstr "" - -#: Text.EmptyLog -msgid "The logfile of the CryptoBox is empty." -msgstr "" - -#: Text.Refresh -msgid "Refresh" -msgstr "" - #: Name msgid "Show event log" msgstr "" @@ -81,6 +61,10 @@ msgstr "" msgid "seconds" msgstr "" +#: Help.EventLog +msgid "Here you can see the event log of the CryptoBox. Every message belongs to one of the following groups: information/warning/error as represented by the symbol in the leftmost column. You may choose to see all or only some selected messages. If you encounter any problems with the CryptoBox then you should send the most recent warnings and errors besides a detailed description to info@cryptobox.org." +msgstr "" + #: AdviceMessage.EmptyLog.Text msgid "There are no messages available." msgstr "" @@ -92,7 +76,3 @@ msgstr "" #: AdviceMessage.NoLogFileConfigured.Text msgid "The CryptoBox is not configured to log events to a file. Thus it is not possible to review log events." msgstr "" - -#: Help.EventLog -msgid "Here you can see the event log of the CryptoBox. Every message belongs to one of the following groups: information/warning/error as represented by the symbol in the leftmost column. You may choose to see all or only some selected messages. If you encounter any problems with the CryptoBox then you should send the most recent warnings and messages besides a detailed description to info@cryptobox.org." -msgstr "" diff --git a/plugins/logs/intl/pt/cryptobox-server-feature-logs.po b/plugins/logs/intl/pt/cryptobox-server-feature-logs.po index fa1431e..be38380 100644 --- a/plugins/logs/intl/pt/cryptobox-server-feature-logs.po +++ b/plugins/logs/intl/pt/cryptobox-server-feature-logs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:41+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,26 +13,6 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Translate Toolkit 0.10.1\n" -#: Name -msgid "Show the content of the log file" -msgstr "" - -#: Link -msgid "Show log file" -msgstr "" - -#: Title.Log -msgid "CryptoBox logfiles" -msgstr "" - -#: Text.EmptyLog -msgid "The logfile of the CryptoBox is empty." -msgstr "" - -#: Text.Refresh -msgid "Refresh" -msgstr "" - #: Name msgid "Show event log" msgstr "" @@ -81,6 +61,10 @@ msgstr "" msgid "seconds" msgstr "" +#: Help.EventLog +msgid "Here you can see the event log of the CryptoBox. Every message belongs to one of the following groups: information/warning/error as represented by the symbol in the leftmost column. You may choose to see all or only some selected messages. If you encounter any problems with the CryptoBox then you should send the most recent warnings and errors besides a detailed description to info@cryptobox.org." +msgstr "" + #: AdviceMessage.EmptyLog.Text msgid "There are no messages available." msgstr "" @@ -92,7 +76,3 @@ msgstr "" #: AdviceMessage.NoLogFileConfigured.Text msgid "The CryptoBox is not configured to log events to a file. Thus it is not possible to review log events." msgstr "" - -#: Help.EventLog -msgid "Here you can see the event log of the CryptoBox. Every message belongs to one of the following groups: information/warning/error as represented by the symbol in the leftmost column. You may choose to see all or only some selected messages. If you encounter any problems with the CryptoBox then you should send the most recent warnings and messages besides a detailed description to info@cryptobox.org." -msgstr "" diff --git a/plugins/logs/intl/ru/cryptobox-server-feature-logs.po b/plugins/logs/intl/ru/cryptobox-server-feature-logs.po index fa1431e..be38380 100644 --- a/plugins/logs/intl/ru/cryptobox-server-feature-logs.po +++ b/plugins/logs/intl/ru/cryptobox-server-feature-logs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:41+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,26 +13,6 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Translate Toolkit 0.10.1\n" -#: Name -msgid "Show the content of the log file" -msgstr "" - -#: Link -msgid "Show log file" -msgstr "" - -#: Title.Log -msgid "CryptoBox logfiles" -msgstr "" - -#: Text.EmptyLog -msgid "The logfile of the CryptoBox is empty." -msgstr "" - -#: Text.Refresh -msgid "Refresh" -msgstr "" - #: Name msgid "Show event log" msgstr "" @@ -81,6 +61,10 @@ msgstr "" msgid "seconds" msgstr "" +#: Help.EventLog +msgid "Here you can see the event log of the CryptoBox. Every message belongs to one of the following groups: information/warning/error as represented by the symbol in the leftmost column. You may choose to see all or only some selected messages. If you encounter any problems with the CryptoBox then you should send the most recent warnings and errors besides a detailed description to info@cryptobox.org." +msgstr "" + #: AdviceMessage.EmptyLog.Text msgid "There are no messages available." msgstr "" @@ -92,7 +76,3 @@ msgstr "" #: AdviceMessage.NoLogFileConfigured.Text msgid "The CryptoBox is not configured to log events to a file. Thus it is not possible to review log events." msgstr "" - -#: Help.EventLog -msgid "Here you can see the event log of the CryptoBox. Every message belongs to one of the following groups: information/warning/error as represented by the symbol in the leftmost column. You may choose to see all or only some selected messages. If you encounter any problems with the CryptoBox then you should send the most recent warnings and messages besides a detailed description to info@cryptobox.org." -msgstr "" diff --git a/plugins/logs/intl/sl/cryptobox-server-feature-logs.po b/plugins/logs/intl/sl/cryptobox-server-feature-logs.po index fa1431e..be38380 100644 --- a/plugins/logs/intl/sl/cryptobox-server-feature-logs.po +++ b/plugins/logs/intl/sl/cryptobox-server-feature-logs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:41+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,26 +13,6 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Translate Toolkit 0.10.1\n" -#: Name -msgid "Show the content of the log file" -msgstr "" - -#: Link -msgid "Show log file" -msgstr "" - -#: Title.Log -msgid "CryptoBox logfiles" -msgstr "" - -#: Text.EmptyLog -msgid "The logfile of the CryptoBox is empty." -msgstr "" - -#: Text.Refresh -msgid "Refresh" -msgstr "" - #: Name msgid "Show event log" msgstr "" @@ -81,6 +61,10 @@ msgstr "" msgid "seconds" msgstr "" +#: Help.EventLog +msgid "Here you can see the event log of the CryptoBox. Every message belongs to one of the following groups: information/warning/error as represented by the symbol in the leftmost column. You may choose to see all or only some selected messages. If you encounter any problems with the CryptoBox then you should send the most recent warnings and errors besides a detailed description to info@cryptobox.org." +msgstr "" + #: AdviceMessage.EmptyLog.Text msgid "There are no messages available." msgstr "" @@ -92,7 +76,3 @@ msgstr "" #: AdviceMessage.NoLogFileConfigured.Text msgid "The CryptoBox is not configured to log events to a file. Thus it is not possible to review log events." msgstr "" - -#: Help.EventLog -msgid "Here you can see the event log of the CryptoBox. Every message belongs to one of the following groups: information/warning/error as represented by the symbol in the leftmost column. You may choose to see all or only some selected messages. If you encounter any problems with the CryptoBox then you should send the most recent warnings and messages besides a detailed description to info@cryptobox.org." -msgstr "" diff --git a/plugins/logs/intl/sv/cryptobox-server-feature-logs.po b/plugins/logs/intl/sv/cryptobox-server-feature-logs.po index fa1431e..be38380 100644 --- a/plugins/logs/intl/sv/cryptobox-server-feature-logs.po +++ b/plugins/logs/intl/sv/cryptobox-server-feature-logs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:41+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -13,26 +13,6 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Translate Toolkit 0.10.1\n" -#: Name -msgid "Show the content of the log file" -msgstr "" - -#: Link -msgid "Show log file" -msgstr "" - -#: Title.Log -msgid "CryptoBox logfiles" -msgstr "" - -#: Text.EmptyLog -msgid "The logfile of the CryptoBox is empty." -msgstr "" - -#: Text.Refresh -msgid "Refresh" -msgstr "" - #: Name msgid "Show event log" msgstr "" @@ -81,6 +61,10 @@ msgstr "" msgid "seconds" msgstr "" +#: Help.EventLog +msgid "Here you can see the event log of the CryptoBox. Every message belongs to one of the following groups: information/warning/error as represented by the symbol in the leftmost column. You may choose to see all or only some selected messages. If you encounter any problems with the CryptoBox then you should send the most recent warnings and errors besides a detailed description to info@cryptobox.org." +msgstr "" + #: AdviceMessage.EmptyLog.Text msgid "There are no messages available." msgstr "" @@ -92,7 +76,3 @@ msgstr "" #: AdviceMessage.NoLogFileConfigured.Text msgid "The CryptoBox is not configured to log events to a file. Thus it is not possible to review log events." msgstr "" - -#: Help.EventLog -msgid "Here you can see the event log of the CryptoBox. Every message belongs to one of the following groups: information/warning/error as represented by the symbol in the leftmost column. You may choose to see all or only some selected messages. If you encounter any problems with the CryptoBox then you should send the most recent warnings and messages besides a detailed description to info@cryptobox.org." -msgstr "" diff --git a/plugins/logs/language.hdf b/plugins/logs/language.hdf index 16c8659..466cf4b 100644 --- a/plugins/logs/language.hdf +++ b/plugins/logs/language.hdf @@ -17,7 +17,7 @@ Text { } } -Help.EventLog = Here you can see the event log of the CryptoBox. Every message belongs to one of the following groups: information/warning/error as represented by the symbol in the leftmost column. You may choose to see all or only some selected messages. If you encounter any problems with the CryptoBox then you should send the most recent warnings and messages besides a detailed description to info@cryptobox.org. +Help.EventLog = Here you can see the event log of the CryptoBox. Every message belongs to one of the following groups: information/warning/error as represented by the symbol in the leftmost column. You may choose to see all or only some selected messages. If you encounter any problems with the CryptoBox then you should send the most recent warnings and errors besides a detailed description to info@cryptobox.org. AdviceMessage { EmptyLog.Text = There are no messages available. diff --git a/plugins/logs/logs.py b/plugins/logs/logs.py index 5470e49..94d5fd8 100644 --- a/plugins/logs/logs.py +++ b/plugins/logs/logs.py @@ -69,8 +69,6 @@ class logs(cryptobox.plugins.base.CryptoBoxPlugin): level = None for (index, line) in enumerate(self.__filter_log_content(lines, size, level)): self.__set_line_hdf_data(self.hdf_prefix + "Content.%d" % index, line) - self.hdf[self.hdf_prefix + "StyleSheetFile"] = os.path.abspath(os.path.join( - self.plugin_dir, "logs.css")) self.hdf[self.hdf_prefix + "Destination"] = self.cbox.prefs["Log"]["Destination"].lower() return "show_log" @@ -95,8 +93,9 @@ class logs(cryptobox.plugins.base.CryptoBoxPlugin): content = [] current_length = 0 for line in self.__get_log_data(): + ## search for matching lines for the given log level for one_level in filtered_levels: - if line.find(one_level) != -1: + if line.find(" %s: " % one_level) != -1: break else: ## the line does not contain an appropriate level name diff --git a/plugins/logs/show_log.cs b/plugins/logs/show_log.cs index 75026fb..d68c4cb 100644 --- a/plugins/logs/show_log.cs +++ b/plugins/logs/show_log.cs @@ -1,9 +1,5 @@ - -

diff --git a/plugins/network/form_network.cs b/plugins/network/form_network.cs index 47dfc01..99c9ee1 100644 --- a/plugins/network/form_network.cs +++ b/plugins/network/form_network.cs @@ -1,9 +1,5 @@ - -

diff --git a/plugins/network/intl/cryptobox-server-feature-network.pot b/plugins/network/intl/cryptobox-server-feature-network.pot index 84afbbc..253fca3 100644 --- a/plugins/network/intl/cryptobox-server-feature-network.pot +++ b/plugins/network/intl/cryptobox-server-feature-network.pot @@ -1,17 +1,3 @@ -msgid "" -msgstr "" -"Project-Id-Version: CryptoBox-Server 0.3\n" -"Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: sense.lab \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: utf-8\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Translate Toolkit 0.10.1\n" - #: Name msgid "Configure network" msgstr "" @@ -28,6 +14,10 @@ msgstr "" msgid "Network address" msgstr "" +#: Help.Network +msgid "Change the network address of the CryptoBox server. Be aware that you may lose your connection to the server under some circumstances." +msgstr "" + #: WarningMessage.InvalidIP.Title msgid "Invalid value" msgstr "" @@ -43,7 +33,3 @@ msgstr "" #: SuccessMessage.IPChanged.Text msgid "The network address has been changed. In a few seconds you will get redirected to the new address." msgstr "" - -#: Help.Network -msgid "Change the network address of the CryptoBox server. Be aware that you may lose your connection to the server under some circumstances." -msgstr "" diff --git a/plugins/network/intl/cs/cryptobox-server-feature-network.po b/plugins/network/intl/cs/cryptobox-server-feature-network.po index 11a71b0..be47b0b 100644 --- a/plugins/network/intl/cs/cryptobox-server-feature-network.po +++ b/plugins/network/intl/cs/cryptobox-server-feature-network.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,6 +29,10 @@ msgstr "" msgid "Network address" msgstr "" +#: Help.Network +msgid "Change the network address of the CryptoBox server. Be aware that you may lose your connection to the server under some circumstances." +msgstr "" + #: WarningMessage.InvalidIP.Title msgid "Invalid value" msgstr "" @@ -44,7 +48,3 @@ msgstr "" #: SuccessMessage.IPChanged.Text msgid "The network address has been changed. In a few seconds you will get redirected to the new address." msgstr "" - -#: Help.Network -msgid "Change the network address of the CryptoBox server. Be aware that you may lose your connection to the server under some circumstances." -msgstr "" diff --git a/plugins/network/intl/da/cryptobox-server-feature-network.po b/plugins/network/intl/da/cryptobox-server-feature-network.po index 11a71b0..be47b0b 100644 --- a/plugins/network/intl/da/cryptobox-server-feature-network.po +++ b/plugins/network/intl/da/cryptobox-server-feature-network.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,6 +29,10 @@ msgstr "" msgid "Network address" msgstr "" +#: Help.Network +msgid "Change the network address of the CryptoBox server. Be aware that you may lose your connection to the server under some circumstances." +msgstr "" + #: WarningMessage.InvalidIP.Title msgid "Invalid value" msgstr "" @@ -44,7 +48,3 @@ msgstr "" #: SuccessMessage.IPChanged.Text msgid "The network address has been changed. In a few seconds you will get redirected to the new address." msgstr "" - -#: Help.Network -msgid "Change the network address of the CryptoBox server. Be aware that you may lose your connection to the server under some circumstances." -msgstr "" diff --git a/plugins/network/intl/de/cryptobox-server-feature-network.po b/plugins/network/intl/de/cryptobox-server-feature-network.po index f5a79fc..0d1971b 100644 --- a/plugins/network/intl/de/cryptobox-server-feature-network.po +++ b/plugins/network/intl/de/cryptobox-server-feature-network.po @@ -2,9 +2,9 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" -"PO-Revision-Date: 2006-12-16 02:27+0100\n" -"Last-Translator: Henning \n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" +"PO-Revision-Date: 2006-12-18 00:50+0100\n" +"Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,19 +18,23 @@ msgstr "Netzwerk einrichten" #: Title.Network msgid "Network settings" -msgstr "Netzwerk Einstellungen" +msgstr "Netzwerkeinstellungen" #: Button.Network msgid "Update network settings" -msgstr "Netzwerk Einstellungen übernehmen" +msgstr "Netzwerkeinstellungen speichern" #: Text.IP msgid "Network address" msgstr "Netzwerkadresse" +#: Help.Network +msgid "Change the network address of the CryptoBox server. Be aware that you may lose your connection to the server under some circumstances." +msgstr "Konfiguriere die Netzwerkadresse des CryptoBox-Servers. Beachte bitte, dass du dabei unter Umständen die Verbindung zu dem Server verlieren kannst." + #: WarningMessage.InvalidIP.Title msgid "Invalid value" -msgstr "ungültiger Wert" +msgstr "Ungültige Adresseingabe" #: WarningMessage.InvalidIP.Text msgid "An invalid network address (IP) was supplied. Please try again." @@ -42,8 +46,5 @@ msgstr "Netzwerkadresse geändert" #: SuccessMessage.IPChanged.Text msgid "The network address has been changed. In a few seconds you will get redirected to the new address." -msgstr "" +msgstr "Die Netzwerkadresse wurde geändert. In wenigen Sekunden wirst du zu der neuen Adresse umgeleitet." -#: Help.Network -msgid "Change the network address of the CryptoBox server. Be aware that you may lose your connection to the server under some circumstances." -msgstr "" diff --git a/plugins/network/intl/en/cryptobox-server-feature-network.po b/plugins/network/intl/en/cryptobox-server-feature-network.po index 457ccf5..8684888 100644 --- a/plugins/network/intl/en/cryptobox-server-feature-network.po +++ b/plugins/network/intl/en/cryptobox-server-feature-network.po @@ -1,5 +1,3 @@ -msgid "" -msgstr "" #: Name msgid "Configure network" @@ -17,6 +15,10 @@ msgstr "Update network settings" msgid "Network address" msgstr "Network address" +#: Help.Network +msgid "Change the network address of the CryptoBox server. Be aware that you may lose your connection to the server under some circumstances." +msgstr "Change the network address of the CryptoBox server. Be aware that you may lose your connection to the server under some circumstances." + #: WarningMessage.InvalidIP.Title msgid "Invalid value" msgstr "Invalid value" @@ -30,20 +32,8 @@ msgid "Network address changed" msgstr "Network address changed" #: SuccessMessage.IPChanged.Text -msgid "" -"The network address has been changed. In a few seconds you will get " -"redirected to the new address." -msgstr "" -"The network address has been changed. In a few seconds you will get " -"redirected to the new address." - -#: Help.Network -msgid "" -"Change the network address of the CryptoBox server. Be aware that you may " -"lose your connection to the server under some circumstances." -msgstr "" -"Change the network address of the CryptoBox server. Be aware that you may " -"lose your connection to the server under some circumstances." +msgid "The network address has been changed. In a few seconds you will get redirected to the new address." +msgstr "The network address has been changed. In a few seconds you will get redirected to the new address." #~ msgid "The network address (IP) was invalid and therefore not changed." #~ msgstr "The network address (IP) was invalid and therefore not changed." diff --git a/plugins/network/intl/es/cryptobox-server-feature-network.po b/plugins/network/intl/es/cryptobox-server-feature-network.po index 11a71b0..be47b0b 100644 --- a/plugins/network/intl/es/cryptobox-server-feature-network.po +++ b/plugins/network/intl/es/cryptobox-server-feature-network.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,6 +29,10 @@ msgstr "" msgid "Network address" msgstr "" +#: Help.Network +msgid "Change the network address of the CryptoBox server. Be aware that you may lose your connection to the server under some circumstances." +msgstr "" + #: WarningMessage.InvalidIP.Title msgid "Invalid value" msgstr "" @@ -44,7 +48,3 @@ msgstr "" #: SuccessMessage.IPChanged.Text msgid "The network address has been changed. In a few seconds you will get redirected to the new address." msgstr "" - -#: Help.Network -msgid "Change the network address of the CryptoBox server. Be aware that you may lose your connection to the server under some circumstances." -msgstr "" diff --git a/plugins/network/intl/fi/cryptobox-server-feature-network.po b/plugins/network/intl/fi/cryptobox-server-feature-network.po index 11a71b0..be47b0b 100644 --- a/plugins/network/intl/fi/cryptobox-server-feature-network.po +++ b/plugins/network/intl/fi/cryptobox-server-feature-network.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,6 +29,10 @@ msgstr "" msgid "Network address" msgstr "" +#: Help.Network +msgid "Change the network address of the CryptoBox server. Be aware that you may lose your connection to the server under some circumstances." +msgstr "" + #: WarningMessage.InvalidIP.Title msgid "Invalid value" msgstr "" @@ -44,7 +48,3 @@ msgstr "" #: SuccessMessage.IPChanged.Text msgid "The network address has been changed. In a few seconds you will get redirected to the new address." msgstr "" - -#: Help.Network -msgid "Change the network address of the CryptoBox server. Be aware that you may lose your connection to the server under some circumstances." -msgstr "" diff --git a/plugins/network/intl/fr/cryptobox-server-feature-network.po b/plugins/network/intl/fr/cryptobox-server-feature-network.po index 11a71b0..be47b0b 100644 --- a/plugins/network/intl/fr/cryptobox-server-feature-network.po +++ b/plugins/network/intl/fr/cryptobox-server-feature-network.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,6 +29,10 @@ msgstr "" msgid "Network address" msgstr "" +#: Help.Network +msgid "Change the network address of the CryptoBox server. Be aware that you may lose your connection to the server under some circumstances." +msgstr "" + #: WarningMessage.InvalidIP.Title msgid "Invalid value" msgstr "" @@ -44,7 +48,3 @@ msgstr "" #: SuccessMessage.IPChanged.Text msgid "The network address has been changed. In a few seconds you will get redirected to the new address." msgstr "" - -#: Help.Network -msgid "Change the network address of the CryptoBox server. Be aware that you may lose your connection to the server under some circumstances." -msgstr "" diff --git a/plugins/network/intl/hu/cryptobox-server-feature-network.po b/plugins/network/intl/hu/cryptobox-server-feature-network.po index 11a71b0..be47b0b 100644 --- a/plugins/network/intl/hu/cryptobox-server-feature-network.po +++ b/plugins/network/intl/hu/cryptobox-server-feature-network.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,6 +29,10 @@ msgstr "" msgid "Network address" msgstr "" +#: Help.Network +msgid "Change the network address of the CryptoBox server. Be aware that you may lose your connection to the server under some circumstances." +msgstr "" + #: WarningMessage.InvalidIP.Title msgid "Invalid value" msgstr "" @@ -44,7 +48,3 @@ msgstr "" #: SuccessMessage.IPChanged.Text msgid "The network address has been changed. In a few seconds you will get redirected to the new address." msgstr "" - -#: Help.Network -msgid "Change the network address of the CryptoBox server. Be aware that you may lose your connection to the server under some circumstances." -msgstr "" diff --git a/plugins/network/intl/it/cryptobox-server-feature-network.po b/plugins/network/intl/it/cryptobox-server-feature-network.po index 11a71b0..be47b0b 100644 --- a/plugins/network/intl/it/cryptobox-server-feature-network.po +++ b/plugins/network/intl/it/cryptobox-server-feature-network.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,6 +29,10 @@ msgstr "" msgid "Network address" msgstr "" +#: Help.Network +msgid "Change the network address of the CryptoBox server. Be aware that you may lose your connection to the server under some circumstances." +msgstr "" + #: WarningMessage.InvalidIP.Title msgid "Invalid value" msgstr "" @@ -44,7 +48,3 @@ msgstr "" #: SuccessMessage.IPChanged.Text msgid "The network address has been changed. In a few seconds you will get redirected to the new address." msgstr "" - -#: Help.Network -msgid "Change the network address of the CryptoBox server. Be aware that you may lose your connection to the server under some circumstances." -msgstr "" diff --git a/plugins/network/intl/ja/cryptobox-server-feature-network.po b/plugins/network/intl/ja/cryptobox-server-feature-network.po index 11a71b0..be47b0b 100644 --- a/plugins/network/intl/ja/cryptobox-server-feature-network.po +++ b/plugins/network/intl/ja/cryptobox-server-feature-network.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,6 +29,10 @@ msgstr "" msgid "Network address" msgstr "" +#: Help.Network +msgid "Change the network address of the CryptoBox server. Be aware that you may lose your connection to the server under some circumstances." +msgstr "" + #: WarningMessage.InvalidIP.Title msgid "Invalid value" msgstr "" @@ -44,7 +48,3 @@ msgstr "" #: SuccessMessage.IPChanged.Text msgid "The network address has been changed. In a few seconds you will get redirected to the new address." msgstr "" - -#: Help.Network -msgid "Change the network address of the CryptoBox server. Be aware that you may lose your connection to the server under some circumstances." -msgstr "" diff --git a/plugins/network/intl/nl/cryptobox-server-feature-network.po b/plugins/network/intl/nl/cryptobox-server-feature-network.po index 11a71b0..be47b0b 100644 --- a/plugins/network/intl/nl/cryptobox-server-feature-network.po +++ b/plugins/network/intl/nl/cryptobox-server-feature-network.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,6 +29,10 @@ msgstr "" msgid "Network address" msgstr "" +#: Help.Network +msgid "Change the network address of the CryptoBox server. Be aware that you may lose your connection to the server under some circumstances." +msgstr "" + #: WarningMessage.InvalidIP.Title msgid "Invalid value" msgstr "" @@ -44,7 +48,3 @@ msgstr "" #: SuccessMessage.IPChanged.Text msgid "The network address has been changed. In a few seconds you will get redirected to the new address." msgstr "" - -#: Help.Network -msgid "Change the network address of the CryptoBox server. Be aware that you may lose your connection to the server under some circumstances." -msgstr "" diff --git a/plugins/network/intl/pl/cryptobox-server-feature-network.po b/plugins/network/intl/pl/cryptobox-server-feature-network.po index 11a71b0..be47b0b 100644 --- a/plugins/network/intl/pl/cryptobox-server-feature-network.po +++ b/plugins/network/intl/pl/cryptobox-server-feature-network.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,6 +29,10 @@ msgstr "" msgid "Network address" msgstr "" +#: Help.Network +msgid "Change the network address of the CryptoBox server. Be aware that you may lose your connection to the server under some circumstances." +msgstr "" + #: WarningMessage.InvalidIP.Title msgid "Invalid value" msgstr "" @@ -44,7 +48,3 @@ msgstr "" #: SuccessMessage.IPChanged.Text msgid "The network address has been changed. In a few seconds you will get redirected to the new address." msgstr "" - -#: Help.Network -msgid "Change the network address of the CryptoBox server. Be aware that you may lose your connection to the server under some circumstances." -msgstr "" diff --git a/plugins/network/intl/pt/cryptobox-server-feature-network.po b/plugins/network/intl/pt/cryptobox-server-feature-network.po index 11a71b0..be47b0b 100644 --- a/plugins/network/intl/pt/cryptobox-server-feature-network.po +++ b/plugins/network/intl/pt/cryptobox-server-feature-network.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,6 +29,10 @@ msgstr "" msgid "Network address" msgstr "" +#: Help.Network +msgid "Change the network address of the CryptoBox server. Be aware that you may lose your connection to the server under some circumstances." +msgstr "" + #: WarningMessage.InvalidIP.Title msgid "Invalid value" msgstr "" @@ -44,7 +48,3 @@ msgstr "" #: SuccessMessage.IPChanged.Text msgid "The network address has been changed. In a few seconds you will get redirected to the new address." msgstr "" - -#: Help.Network -msgid "Change the network address of the CryptoBox server. Be aware that you may lose your connection to the server under some circumstances." -msgstr "" diff --git a/plugins/network/intl/ru/cryptobox-server-feature-network.po b/plugins/network/intl/ru/cryptobox-server-feature-network.po index 11a71b0..be47b0b 100644 --- a/plugins/network/intl/ru/cryptobox-server-feature-network.po +++ b/plugins/network/intl/ru/cryptobox-server-feature-network.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,6 +29,10 @@ msgstr "" msgid "Network address" msgstr "" +#: Help.Network +msgid "Change the network address of the CryptoBox server. Be aware that you may lose your connection to the server under some circumstances." +msgstr "" + #: WarningMessage.InvalidIP.Title msgid "Invalid value" msgstr "" @@ -44,7 +48,3 @@ msgstr "" #: SuccessMessage.IPChanged.Text msgid "The network address has been changed. In a few seconds you will get redirected to the new address." msgstr "" - -#: Help.Network -msgid "Change the network address of the CryptoBox server. Be aware that you may lose your connection to the server under some circumstances." -msgstr "" diff --git a/plugins/network/intl/sl/cryptobox-server-feature-network.po b/plugins/network/intl/sl/cryptobox-server-feature-network.po index 11a71b0..be47b0b 100644 --- a/plugins/network/intl/sl/cryptobox-server-feature-network.po +++ b/plugins/network/intl/sl/cryptobox-server-feature-network.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,6 +29,10 @@ msgstr "" msgid "Network address" msgstr "" +#: Help.Network +msgid "Change the network address of the CryptoBox server. Be aware that you may lose your connection to the server under some circumstances." +msgstr "" + #: WarningMessage.InvalidIP.Title msgid "Invalid value" msgstr "" @@ -44,7 +48,3 @@ msgstr "" #: SuccessMessage.IPChanged.Text msgid "The network address has been changed. In a few seconds you will get redirected to the new address." msgstr "" - -#: Help.Network -msgid "Change the network address of the CryptoBox server. Be aware that you may lose your connection to the server under some circumstances." -msgstr "" diff --git a/plugins/network/intl/sv/cryptobox-server-feature-network.po b/plugins/network/intl/sv/cryptobox-server-feature-network.po index 11a71b0..51e5eeb 100644 --- a/plugins/network/intl/sv/cryptobox-server-feature-network.po +++ b/plugins/network/intl/sv/cryptobox-server-feature-network.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:40+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,6 +29,10 @@ msgstr "" msgid "Network address" msgstr "" +#: Help.Network +msgid "Change the network address of the CryptoBox server. Be aware that you may lose your connection to the server under some circumstances." +msgstr "" + #: WarningMessage.InvalidIP.Title msgid "Invalid value" msgstr "" @@ -44,7 +48,3 @@ msgstr "" #: SuccessMessage.IPChanged.Text msgid "The network address has been changed. In a few seconds you will get redirected to the new address." msgstr "" - -#: Help.Network -msgid "Change the network address of the CryptoBox server. Be aware that you may lose your connection to the server under some circumstances." -msgstr "" diff --git a/plugins/network/network.css b/plugins/network/network.css new file mode 100644 index 0000000..44986c1 --- /dev/null +++ b/plugins/network/network.css @@ -0,0 +1,2 @@ +input.ipnum { text-align: center } + diff --git a/plugins/partition/intl/cryptobox-server-feature-partition.pot b/plugins/partition/intl/cryptobox-server-feature-partition.pot index 3a0649b..9a1e7a4 100644 --- a/plugins/partition/intl/cryptobox-server-feature-partition.pot +++ b/plugins/partition/intl/cryptobox-server-feature-partition.pot @@ -1,17 +1,3 @@ -msgid "" -msgstr "" -"Project-Id-Version: CryptoBox-Server 0.3\n" -"Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: sense.lab \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: utf-8\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Translate Toolkit 0.10.1\n" - #: Name msgid "Disk partitioning" msgstr "" @@ -48,6 +34,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: Text.Confirm +msgid "Yes, I know what I am doing!" +msgstr "" + #: Text.FS.Type msgid "Filesystem type" msgstr "" @@ -93,7 +83,35 @@ msgid "Automatically creating a configuration partition." msgstr "" #: Text.RemovalContainers -msgid "These disks will be destroyed, if you continue" +msgid "These volumes will be removed:" +msgstr "" + +#: Text.SpecifyPartitions +msgid "Add partitions" +msgstr "" + +#: Help.Partitioning +msgid "You can split every disk into one ore more parts, which are called 'partitions'. This is useful if you want to seperate your data or if you want to encrypt only a part of your disk." +msgstr "" + +#: Help.SelectDevice +msgid "Choose one of the disks given in the list. Be aware that you lose all data on the partitions of this disk." +msgstr "" + +#: Help.PartMode +msgid "You may choose between 'automatic' and 'manual' partitioning. Automatic partitioning creates only one partition for the whole disk. With manual partition you can split the disk into multiple parts of different size." +msgstr "" + +#: Help.ConfigPartition +msgid "This CryptoBox is configured to store its runtime settings on a separate disk partition. It will be created automatically if necessary. This reduces the available size of the disk by 5 megabyte." +msgstr "" + +#: Help.RemoveExistingContainers +msgid "Whenever you change the partition table of a disk, you will loose all volumes that were previously defined inside of it." +msgstr "" + +#: Help.PartitionList +msgid "Choose a size for your partitions and add it to the list by clicking on 'Add'. Nothing will get written to your disk until you click on 'Write new partition table' below. Be very careful: you will erase all data on this disk." msgstr "" #: AdviceMessage.DeviceDataIsLost.Text @@ -116,6 +134,14 @@ msgstr "" msgid "Automatic initialization was finished successfully." msgstr "" +#: WarningMessage.FormatNotConfirmed.Title +msgid "Confirmation missing" +msgstr "" + +#: WarningMessage.FormatNotConfirmed.Text +msgid "You did not confirm this action by activating the checkbox." +msgstr "" + #: WarningMessage.NoDisksAvailable.Title msgid "No disks found" msgstr "" @@ -132,12 +158,16 @@ msgstr "" msgid "The partitioning of the device failed for some reason - sorry!" msgstr "" +#: WarningMessage.PartitioningFailed.Link.Text +msgid "Show log messages" +msgstr "" + #: WarningMessage.FormattingFailed.Title msgid "Formatting failed" msgstr "" #: WarningMessage.FormattingFailed.Text -msgid "The formatting of the filesystems of the device failed - sorry!" +msgid "Formatting of at least one volume failed - sorry!" msgstr "" #: WarningMessage.DiskIsBusy.Title @@ -145,7 +175,7 @@ msgid "This disk is busy" msgstr "" #: WarningMessage.DiskIsBusy.Text -msgid "Please deactivate all containers of this disk before partitioning." +msgid "Please close all volumes of this disk before partitioning." msgstr "" #: WarningMessage.DiskIsBusy.Link.Text @@ -156,42 +186,6 @@ msgstr "" msgid "Invalid size" msgstr "" -#: WarningMessage.PartitionTooBig.Text -msgid "The container size you entered exceeded the available size of the disk." -msgstr "" - -#: WarningMessage.PartitionTooSmall.Text -msgid "The minimum size of a container is 10 megabytes." -msgstr "" - -#: WarningMessage.PartitioningFailed.Link.Text -msgid "Show log messages" -msgstr "" - -#: Help.Partitioning -msgid "You can split every disk into one ore more parts, which are called 'partitions'. This is useful if you want to seperate your data or if you want to encrypt only a part of your disk." -msgstr "" - -#: Help.SelectDevice -msgid "Choose one of the disks given in the list. Be aware that you lose all data on the partitions of this disk if you confirm this action later." -msgstr "" - -#: Help.PartMode -msgid "You may choose between 'automatic' and 'manual' partitioning. Automatic partitioning creates only one partition for the whole disk. With manual partition you can split the disk into multiple parts of different size." -msgstr "" - -#: Help.PartitionList -msgid "Choose a size for your partitions and add it to the list by clicking on the corresponding button. You may remove any partition later. Nothing will get written to your disk until you click on the 'write partition table' button. Be very careful as you destroy all data on this disk." -msgstr "" - -#: WarningMessage.FormattingFailed.Text -msgid "Formatting of at least one volume failed - sorry!" -msgstr "" - -#: WarningMessage.DiskIsBusy.Text -msgid "Please close all volumes of this disk before partitioning." -msgstr "" - #: WarningMessage.PartitionTooBig.Text msgid "The volume size you entered exceeded the available size of the disk." msgstr "" @@ -199,15 +193,3 @@ msgstr "" #: WarningMessage.PartitionTooSmall.Text msgid "The minimum size of a volume is 10 megabytes." msgstr "" - -#: Text.Confirm -msgid "Yes, I know what I am doing!" -msgstr "" - -#: WarningMessage.FormatNotConfirmed.Title -msgid "Confirmation missing" -msgstr "" - -#: WarningMessage.FormatNotConfirmed.Text -msgid "You did not confirm this action by activating the checkbox." -msgstr "" diff --git a/plugins/partition/intl/cs/cryptobox-server-feature-partition.po b/plugins/partition/intl/cs/cryptobox-server-feature-partition.po index 9bcde16..bf08265 100644 --- a/plugins/partition/intl/cs/cryptobox-server-feature-partition.po +++ b/plugins/partition/intl/cs/cryptobox-server-feature-partition.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:44+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -49,6 +49,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: Text.Confirm +msgid "Yes, I know what I am doing!" +msgstr "" + #: Text.FS.Type msgid "Filesystem type" msgstr "" @@ -94,7 +98,35 @@ msgid "Automatically creating a configuration partition." msgstr "" #: Text.RemovalContainers -msgid "These disks will be destroyed, if you continue" +msgid "These volumes will be removed:" +msgstr "" + +#: Text.SpecifyPartitions +msgid "Add partitions" +msgstr "" + +#: Help.Partitioning +msgid "You can split every disk into one ore more parts, which are called 'partitions'. This is useful if you want to seperate your data or if you want to encrypt only a part of your disk." +msgstr "" + +#: Help.SelectDevice +msgid "Choose one of the disks given in the list. Be aware that you lose all data on the partitions of this disk." +msgstr "" + +#: Help.PartMode +msgid "You may choose between 'automatic' and 'manual' partitioning. Automatic partitioning creates only one partition for the whole disk. With manual partition you can split the disk into multiple parts of different size." +msgstr "" + +#: Help.ConfigPartition +msgid "This CryptoBox is configured to store its runtime settings on a separate disk partition. It will be created automatically if necessary. This reduces the available size of the disk by 5 megabyte." +msgstr "" + +#: Help.RemoveExistingContainers +msgid "Whenever you change the partition table of a disk, you will loose all volumes that were previously defined inside of it." +msgstr "" + +#: Help.PartitionList +msgid "Choose a size for your partitions and add it to the list by clicking on 'Add'. Nothing will get written to your disk until you click on 'Write new partition table' below. Be very careful: you will erase all data on this disk." msgstr "" #: AdviceMessage.DeviceDataIsLost.Text @@ -117,6 +149,14 @@ msgstr "" msgid "Automatic initialization was finished successfully." msgstr "" +#: WarningMessage.FormatNotConfirmed.Title +msgid "Confirmation missing" +msgstr "" + +#: WarningMessage.FormatNotConfirmed.Text +msgid "You did not confirm this action by activating the checkbox." +msgstr "" + #: WarningMessage.NoDisksAvailable.Title msgid "No disks found" msgstr "" @@ -133,12 +173,16 @@ msgstr "" msgid "The partitioning of the device failed for some reason - sorry!" msgstr "" +#: WarningMessage.PartitioningFailed.Link.Text +msgid "Show log messages" +msgstr "" + #: WarningMessage.FormattingFailed.Title msgid "Formatting failed" msgstr "" #: WarningMessage.FormattingFailed.Text -msgid "The formatting of the filesystems of the device failed - sorry!" +msgid "Formatting of at least one volume failed - sorry!" msgstr "" #: WarningMessage.DiskIsBusy.Title @@ -146,7 +190,7 @@ msgid "This disk is busy" msgstr "" #: WarningMessage.DiskIsBusy.Text -msgid "Please deactivate all containers of this disk before partitioning." +msgid "Please close all volumes of this disk before partitioning." msgstr "" #: WarningMessage.DiskIsBusy.Link.Text @@ -157,42 +201,6 @@ msgstr "" msgid "Invalid size" msgstr "" -#: WarningMessage.PartitionTooBig.Text -msgid "The container size you entered exceeded the available size of the disk." -msgstr "" - -#: WarningMessage.PartitionTooSmall.Text -msgid "The minimum size of a container is 10 megabytes." -msgstr "" - -#: WarningMessage.PartitioningFailed.Link.Text -msgid "Show log messages" -msgstr "" - -#: Help.Partitioning -msgid "You can split every disk into one ore more parts, which are called 'partitions'. This is useful if you want to seperate your data or if you want to encrypt only a part of your disk." -msgstr "" - -#: Help.SelectDevice -msgid "Choose one of the disks given in the list. Be aware that you lose all data on the partitions of this disk if you confirm this action later." -msgstr "" - -#: Help.PartMode -msgid "You may choose between 'automatic' and 'manual' partitioning. Automatic partitioning creates only one partition for the whole disk. With manual partition you can split the disk into multiple parts of different size." -msgstr "" - -#: Help.PartitionList -msgid "Choose a size for your partitions and add it to the list by clicking on the corresponding button. You may remove any partition later. Nothing will get written to your disk until you click on the 'write partition table' button. Be very careful as you destroy all data on this disk." -msgstr "" - -#: WarningMessage.FormattingFailed.Text -msgid "Formatting of at least one volume failed - sorry!" -msgstr "" - -#: WarningMessage.DiskIsBusy.Text -msgid "Please close all volumes of this disk before partitioning." -msgstr "" - #: WarningMessage.PartitionTooBig.Text msgid "The volume size you entered exceeded the available size of the disk." msgstr "" @@ -200,15 +208,3 @@ msgstr "" #: WarningMessage.PartitionTooSmall.Text msgid "The minimum size of a volume is 10 megabytes." msgstr "" - -#: Text.Confirm -msgid "Yes, I know what I am doing!" -msgstr "" - -#: WarningMessage.FormatNotConfirmed.Title -msgid "Confirmation missing" -msgstr "" - -#: WarningMessage.FormatNotConfirmed.Text -msgid "You did not confirm this action by activating the checkbox." -msgstr "" diff --git a/plugins/partition/intl/da/cryptobox-server-feature-partition.po b/plugins/partition/intl/da/cryptobox-server-feature-partition.po index 9bcde16..bf08265 100644 --- a/plugins/partition/intl/da/cryptobox-server-feature-partition.po +++ b/plugins/partition/intl/da/cryptobox-server-feature-partition.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:44+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -49,6 +49,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: Text.Confirm +msgid "Yes, I know what I am doing!" +msgstr "" + #: Text.FS.Type msgid "Filesystem type" msgstr "" @@ -94,7 +98,35 @@ msgid "Automatically creating a configuration partition." msgstr "" #: Text.RemovalContainers -msgid "These disks will be destroyed, if you continue" +msgid "These volumes will be removed:" +msgstr "" + +#: Text.SpecifyPartitions +msgid "Add partitions" +msgstr "" + +#: Help.Partitioning +msgid "You can split every disk into one ore more parts, which are called 'partitions'. This is useful if you want to seperate your data or if you want to encrypt only a part of your disk." +msgstr "" + +#: Help.SelectDevice +msgid "Choose one of the disks given in the list. Be aware that you lose all data on the partitions of this disk." +msgstr "" + +#: Help.PartMode +msgid "You may choose between 'automatic' and 'manual' partitioning. Automatic partitioning creates only one partition for the whole disk. With manual partition you can split the disk into multiple parts of different size." +msgstr "" + +#: Help.ConfigPartition +msgid "This CryptoBox is configured to store its runtime settings on a separate disk partition. It will be created automatically if necessary. This reduces the available size of the disk by 5 megabyte." +msgstr "" + +#: Help.RemoveExistingContainers +msgid "Whenever you change the partition table of a disk, you will loose all volumes that were previously defined inside of it." +msgstr "" + +#: Help.PartitionList +msgid "Choose a size for your partitions and add it to the list by clicking on 'Add'. Nothing will get written to your disk until you click on 'Write new partition table' below. Be very careful: you will erase all data on this disk." msgstr "" #: AdviceMessage.DeviceDataIsLost.Text @@ -117,6 +149,14 @@ msgstr "" msgid "Automatic initialization was finished successfully." msgstr "" +#: WarningMessage.FormatNotConfirmed.Title +msgid "Confirmation missing" +msgstr "" + +#: WarningMessage.FormatNotConfirmed.Text +msgid "You did not confirm this action by activating the checkbox." +msgstr "" + #: WarningMessage.NoDisksAvailable.Title msgid "No disks found" msgstr "" @@ -133,12 +173,16 @@ msgstr "" msgid "The partitioning of the device failed for some reason - sorry!" msgstr "" +#: WarningMessage.PartitioningFailed.Link.Text +msgid "Show log messages" +msgstr "" + #: WarningMessage.FormattingFailed.Title msgid "Formatting failed" msgstr "" #: WarningMessage.FormattingFailed.Text -msgid "The formatting of the filesystems of the device failed - sorry!" +msgid "Formatting of at least one volume failed - sorry!" msgstr "" #: WarningMessage.DiskIsBusy.Title @@ -146,7 +190,7 @@ msgid "This disk is busy" msgstr "" #: WarningMessage.DiskIsBusy.Text -msgid "Please deactivate all containers of this disk before partitioning." +msgid "Please close all volumes of this disk before partitioning." msgstr "" #: WarningMessage.DiskIsBusy.Link.Text @@ -157,42 +201,6 @@ msgstr "" msgid "Invalid size" msgstr "" -#: WarningMessage.PartitionTooBig.Text -msgid "The container size you entered exceeded the available size of the disk." -msgstr "" - -#: WarningMessage.PartitionTooSmall.Text -msgid "The minimum size of a container is 10 megabytes." -msgstr "" - -#: WarningMessage.PartitioningFailed.Link.Text -msgid "Show log messages" -msgstr "" - -#: Help.Partitioning -msgid "You can split every disk into one ore more parts, which are called 'partitions'. This is useful if you want to seperate your data or if you want to encrypt only a part of your disk." -msgstr "" - -#: Help.SelectDevice -msgid "Choose one of the disks given in the list. Be aware that you lose all data on the partitions of this disk if you confirm this action later." -msgstr "" - -#: Help.PartMode -msgid "You may choose between 'automatic' and 'manual' partitioning. Automatic partitioning creates only one partition for the whole disk. With manual partition you can split the disk into multiple parts of different size." -msgstr "" - -#: Help.PartitionList -msgid "Choose a size for your partitions and add it to the list by clicking on the corresponding button. You may remove any partition later. Nothing will get written to your disk until you click on the 'write partition table' button. Be very careful as you destroy all data on this disk." -msgstr "" - -#: WarningMessage.FormattingFailed.Text -msgid "Formatting of at least one volume failed - sorry!" -msgstr "" - -#: WarningMessage.DiskIsBusy.Text -msgid "Please close all volumes of this disk before partitioning." -msgstr "" - #: WarningMessage.PartitionTooBig.Text msgid "The volume size you entered exceeded the available size of the disk." msgstr "" @@ -200,15 +208,3 @@ msgstr "" #: WarningMessage.PartitionTooSmall.Text msgid "The minimum size of a volume is 10 megabytes." msgstr "" - -#: Text.Confirm -msgid "Yes, I know what I am doing!" -msgstr "" - -#: WarningMessage.FormatNotConfirmed.Title -msgid "Confirmation missing" -msgstr "" - -#: WarningMessage.FormatNotConfirmed.Text -msgid "You did not confirm this action by activating the checkbox." -msgstr "" diff --git a/plugins/partition/intl/de/cryptobox-server-feature-partition.po b/plugins/partition/intl/de/cryptobox-server-feature-partition.po index 9bcde16..bf08265 100644 --- a/plugins/partition/intl/de/cryptobox-server-feature-partition.po +++ b/plugins/partition/intl/de/cryptobox-server-feature-partition.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:44+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -49,6 +49,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: Text.Confirm +msgid "Yes, I know what I am doing!" +msgstr "" + #: Text.FS.Type msgid "Filesystem type" msgstr "" @@ -94,7 +98,35 @@ msgid "Automatically creating a configuration partition." msgstr "" #: Text.RemovalContainers -msgid "These disks will be destroyed, if you continue" +msgid "These volumes will be removed:" +msgstr "" + +#: Text.SpecifyPartitions +msgid "Add partitions" +msgstr "" + +#: Help.Partitioning +msgid "You can split every disk into one ore more parts, which are called 'partitions'. This is useful if you want to seperate your data or if you want to encrypt only a part of your disk." +msgstr "" + +#: Help.SelectDevice +msgid "Choose one of the disks given in the list. Be aware that you lose all data on the partitions of this disk." +msgstr "" + +#: Help.PartMode +msgid "You may choose between 'automatic' and 'manual' partitioning. Automatic partitioning creates only one partition for the whole disk. With manual partition you can split the disk into multiple parts of different size." +msgstr "" + +#: Help.ConfigPartition +msgid "This CryptoBox is configured to store its runtime settings on a separate disk partition. It will be created automatically if necessary. This reduces the available size of the disk by 5 megabyte." +msgstr "" + +#: Help.RemoveExistingContainers +msgid "Whenever you change the partition table of a disk, you will loose all volumes that were previously defined inside of it." +msgstr "" + +#: Help.PartitionList +msgid "Choose a size for your partitions and add it to the list by clicking on 'Add'. Nothing will get written to your disk until you click on 'Write new partition table' below. Be very careful: you will erase all data on this disk." msgstr "" #: AdviceMessage.DeviceDataIsLost.Text @@ -117,6 +149,14 @@ msgstr "" msgid "Automatic initialization was finished successfully." msgstr "" +#: WarningMessage.FormatNotConfirmed.Title +msgid "Confirmation missing" +msgstr "" + +#: WarningMessage.FormatNotConfirmed.Text +msgid "You did not confirm this action by activating the checkbox." +msgstr "" + #: WarningMessage.NoDisksAvailable.Title msgid "No disks found" msgstr "" @@ -133,12 +173,16 @@ msgstr "" msgid "The partitioning of the device failed for some reason - sorry!" msgstr "" +#: WarningMessage.PartitioningFailed.Link.Text +msgid "Show log messages" +msgstr "" + #: WarningMessage.FormattingFailed.Title msgid "Formatting failed" msgstr "" #: WarningMessage.FormattingFailed.Text -msgid "The formatting of the filesystems of the device failed - sorry!" +msgid "Formatting of at least one volume failed - sorry!" msgstr "" #: WarningMessage.DiskIsBusy.Title @@ -146,7 +190,7 @@ msgid "This disk is busy" msgstr "" #: WarningMessage.DiskIsBusy.Text -msgid "Please deactivate all containers of this disk before partitioning." +msgid "Please close all volumes of this disk before partitioning." msgstr "" #: WarningMessage.DiskIsBusy.Link.Text @@ -157,42 +201,6 @@ msgstr "" msgid "Invalid size" msgstr "" -#: WarningMessage.PartitionTooBig.Text -msgid "The container size you entered exceeded the available size of the disk." -msgstr "" - -#: WarningMessage.PartitionTooSmall.Text -msgid "The minimum size of a container is 10 megabytes." -msgstr "" - -#: WarningMessage.PartitioningFailed.Link.Text -msgid "Show log messages" -msgstr "" - -#: Help.Partitioning -msgid "You can split every disk into one ore more parts, which are called 'partitions'. This is useful if you want to seperate your data or if you want to encrypt only a part of your disk." -msgstr "" - -#: Help.SelectDevice -msgid "Choose one of the disks given in the list. Be aware that you lose all data on the partitions of this disk if you confirm this action later." -msgstr "" - -#: Help.PartMode -msgid "You may choose between 'automatic' and 'manual' partitioning. Automatic partitioning creates only one partition for the whole disk. With manual partition you can split the disk into multiple parts of different size." -msgstr "" - -#: Help.PartitionList -msgid "Choose a size for your partitions and add it to the list by clicking on the corresponding button. You may remove any partition later. Nothing will get written to your disk until you click on the 'write partition table' button. Be very careful as you destroy all data on this disk." -msgstr "" - -#: WarningMessage.FormattingFailed.Text -msgid "Formatting of at least one volume failed - sorry!" -msgstr "" - -#: WarningMessage.DiskIsBusy.Text -msgid "Please close all volumes of this disk before partitioning." -msgstr "" - #: WarningMessage.PartitionTooBig.Text msgid "The volume size you entered exceeded the available size of the disk." msgstr "" @@ -200,15 +208,3 @@ msgstr "" #: WarningMessage.PartitionTooSmall.Text msgid "The minimum size of a volume is 10 megabytes." msgstr "" - -#: Text.Confirm -msgid "Yes, I know what I am doing!" -msgstr "" - -#: WarningMessage.FormatNotConfirmed.Title -msgid "Confirmation missing" -msgstr "" - -#: WarningMessage.FormatNotConfirmed.Text -msgid "You did not confirm this action by activating the checkbox." -msgstr "" diff --git a/plugins/partition/intl/en/cryptobox-server-feature-partition.po b/plugins/partition/intl/en/cryptobox-server-feature-partition.po index 07c6a2b..4d4fe90 100644 --- a/plugins/partition/intl/en/cryptobox-server-feature-partition.po +++ b/plugins/partition/intl/en/cryptobox-server-feature-partition.po @@ -1,5 +1,3 @@ -msgid "" -msgstr "" #: Name msgid "Disk partitioning" @@ -37,6 +35,10 @@ msgstr "Write new partition table" msgid "Cancel" msgstr "Cancel" +#: Text.Confirm +msgid "Yes, I know what I am doing!" +msgstr "Yes, I know what I am doing!" + #: Text.FS.Type msgid "Filesystem type" msgstr "Filesystem type" @@ -82,16 +84,40 @@ msgid "Automatically creating a configuration partition." msgstr "Automatically creating a configuration partition." #: Text.RemovalContainers -msgid "These disks will be destroyed, if you continue" -msgstr "These disks will be destroyed, if you continue" +msgid "These volumes will be removed:" +msgstr "These volumes will be removed:" + +#: Text.SpecifyPartitions +msgid "Add partitions" +msgstr "Add partitions" + +#: Help.Partitioning +msgid "You can split every disk into one ore more parts, which are called 'partitions'. This is useful if you want to seperate your data or if you want to encrypt only a part of your disk." +msgstr "You can split every disk into one ore more parts, which are called 'partitions'. This is useful if you want to seperate your data or if you want to encrypt only a part of your disk." + +#: Help.SelectDevice +msgid "Choose one of the disks given in the list. Be aware that you lose all data on the partitions of this disk." +msgstr "Choose one of the disks given in the list. Be aware that you lose all data on the partitions of this disk." + +#: Help.PartMode +msgid "You may choose between 'automatic' and 'manual' partitioning. Automatic partitioning creates only one partition for the whole disk. With manual partition you can split the disk into multiple parts of different size." +msgstr "You may choose between 'automatic' and 'manual' partitioning. Automatic partitioning creates only one partition for the whole disk. With manual partition you can split the disk into multiple parts of different size." + +#: Help.ConfigPartition +msgid "This CryptoBox is configured to store its runtime settings on a separate disk partition. It will be created automatically if necessary. This reduces the available size of the disk by 5 megabyte." +msgstr "This CryptoBox is configured to store its runtime settings on a separate disk partition. It will be created automatically if necessary. This reduces the available size of the disk by 5 megabyte." + +#: Help.RemoveExistingContainers +msgid "Whenever you change the partition table of a disk, you will loose all volumes that were previously defined inside of it." +msgstr "Whenever you change the partition table of a disk, you will loose all volumes that were previously defined inside of it." + +#: Help.PartitionList +msgid "Choose a size for your partitions and add it to the list by clicking on 'Add'. Nothing will get written to your disk until you click on 'Write new partition table' below. Be very careful: you will erase all data on this disk." +msgstr "Choose a size for your partitions and add it to the list by clicking on 'Add'. Nothing will get written to your disk until you click on 'Write new partition table' below. Be very careful: you will erase all data on this disk." #: AdviceMessage.DeviceDataIsLost.Text -msgid "" -"If you continue, you will destroy all data on the choosen disk. Please be " -"VERY careful!" -msgstr "" -"If you continue, you will destroy all data on the choosen disk. Please be " -"VERY careful!" +msgid "If you continue, you will destroy all data on the choosen disk. Please be VERY careful!" +msgstr "If you continue, you will destroy all data on the choosen disk. Please be VERY careful!" #: SuccessMessage.Partitioned.Title msgid "Partitioning complete" @@ -109,15 +135,21 @@ msgstr "Initialization completed" msgid "Automatic initialization was finished successfully." msgstr "Automatic initialization was finished successfully." +#: WarningMessage.FormatNotConfirmed.Title +msgid "Confirmation missing" +msgstr "Confirmation missing" + +#: WarningMessage.FormatNotConfirmed.Text +msgid "You did not confirm this action by activating the checkbox." +msgstr "You did not confirm this action by activating the checkbox." + #: WarningMessage.NoDisksAvailable.Title msgid "No disks found" msgstr "No disks found" #: WarningMessage.NoDisksAvailable.Text -msgid "" -"No suitable disks found - please check your configuration and hardware setup." -msgstr "" -"No suitable disks found - please check your configuration and hardware setup." +msgid "No suitable disks found - please check your configuration and hardware setup." +msgstr "No suitable disks found - please check your configuration and hardware setup." #: WarningMessage.PartitioningFailed.Title msgid "Partitioning failed" @@ -127,21 +159,25 @@ msgstr "Partitioning failed" msgid "The partitioning of the device failed for some reason - sorry!" msgstr "The partitioning of the device failed for some reason - sorry!" +#: WarningMessage.PartitioningFailed.Link.Text +msgid "Show log messages" +msgstr "Show log messages" + #: WarningMessage.FormattingFailed.Title msgid "Formatting failed" msgstr "Formatting failed" #: WarningMessage.FormattingFailed.Text -msgid "The formatting of the filesystems of the device failed - sorry!" -msgstr "The formatting of the filesystems of the device failed - sorry!" +msgid "Formatting of at least one volume failed - sorry!" +msgstr "Formatting of at least one volume failed - sorry!" #: WarningMessage.DiskIsBusy.Title msgid "This disk is busy" msgstr "This disk is busy" #: WarningMessage.DiskIsBusy.Text -msgid "Please deactivate all containers of this disk before partitioning." -msgstr "Please deactivate all containers of this disk before partitioning." +msgid "Please close all volumes of this disk before partitioning." +msgstr "Please close all volumes of this disk before partitioning." #: WarningMessage.DiskIsBusy.Link.Text msgid "Show all disks" @@ -151,67 +187,6 @@ msgstr "Show all disks" msgid "Invalid size" msgstr "Invalid size" -#: WarningMessage.PartitionTooBig.Text -msgid "The container size you entered exceeded the available size of the disk." -msgstr "" -"The container size you entered exceeded the available size of the disk." - -#: WarningMessage.PartitionTooSmall.Text -msgid "The minimum size of a container is 10 megabytes." -msgstr "The minimum size of a container is 10 megabytes." - -#: WarningMessage.PartitioningFailed.Link.Text -msgid "Show log messages" -msgstr "Show log messages" - -#: Help.Partitioning -msgid "" -"You can split every disk into one ore more parts, which are called " -"'partitions'. This is useful if you want to seperate your data or if you " -"want to encrypt only a part of your disk." -msgstr "" -"You can split every disk into one ore more parts, which are called " -"'partitions'. This is useful if you want to seperate your data or if you " -"want to encrypt only a part of your disk." - -#: Help.SelectDevice -msgid "" -"Choose one of the disks given in the list. Be aware that you lose all data " -"on the partitions of this disk if you confirm this action later." -msgstr "" -"Choose one of the disks given in the list. Be aware that you lose all data " -"on the partitions of this disk if you confirm this action later." - -#: Help.PartMode -msgid "" -"You may choose between 'automatic' and 'manual' partitioning. Automatic " -"partitioning creates only one partition for the whole disk. With manual " -"partition you can split the disk into multiple parts of different size." -msgstr "" -"You may choose between 'automatic' and 'manual' partitioning. Automatic " -"partitioning creates only one partition for the whole disk. With manual " -"partition you can split the disk into multiple parts of different size." - -#: Help.PartitionList -msgid "" -"Choose a size for your partitions and add it to the list by clicking on the " -"corresponding button. You may remove any partition later. Nothing will get " -"written to your disk until you click on the 'write partition table' button. " -"Be very careful as you destroy all data on this disk." -msgstr "" -"Choose a size for your partitions and add it to the list by clicking on the " -"corresponding button. You may remove any partition later. Nothing will get " -"written to your disk until you click on the 'write partition table' button. " -"Be very careful as you destroy all data on this disk." - -#: WarningMessage.FormattingFailed.Text -msgid "Formatting of at least one volume failed - sorry!" -msgstr "Formatting of at least one volume failed - sorry!" - -#: WarningMessage.DiskIsBusy.Text -msgid "Please close all volumes of this disk before partitioning." -msgstr "Please close all volumes of this disk before partitioning." - #: WarningMessage.PartitionTooBig.Text msgid "The volume size you entered exceeded the available size of the disk." msgstr "The volume size you entered exceeded the available size of the disk." @@ -220,17 +195,40 @@ msgstr "The volume size you entered exceeded the available size of the disk." msgid "The minimum size of a volume is 10 megabytes." msgstr "The minimum size of a volume is 10 megabytes." -#: Text.Confirm -msgid "Yes, I know what I am doing!" -msgstr "Yes, I know what I am doing!" +#~ msgid "These disks will be destroyed, if you continue" +#~ msgstr "These disks will be destroyed, if you continue" -#: WarningMessage.FormatNotConfirmed.Title -msgid "Confirmation missing" -msgstr "Confirmation missing" +#~ msgid "The formatting of the filesystems of the device failed - sorry!" +#~ msgstr "The formatting of the filesystems of the device failed - sorry!" -#: WarningMessage.FormatNotConfirmed.Text -msgid "You did not confirm this action by activating the checkbox." -msgstr "You did not confirm this action by activating the checkbox." +#~ msgid "Please deactivate all containers of this disk before partitioning." +#~ msgstr "Please deactivate all containers of this disk before partitioning." + +#~ msgid "" +#~ "The container size you entered exceeded the available size of the disk." +#~ msgstr "" +#~ "The container size you entered exceeded the available size of the disk." + +#~ msgid "The minimum size of a container is 10 megabytes." +#~ msgstr "The minimum size of a container is 10 megabytes." + +#~ msgid "" +#~ "Choose one of the disks given in the list. Be aware that you lose all " +#~ "data on the partitions of this disk if you confirm this action later." +#~ msgstr "" +#~ "Choose one of the disks given in the list. Be aware that you lose all " +#~ "data on the partitions of this disk if you confirm this action later." + +#~ msgid "" +#~ "Choose a size for your partitions and add it to the list by clicking on " +#~ "the corresponding button. You may remove any partition later. Nothing " +#~ "will get written to your disk until you click on the 'write partition " +#~ "table' button. Be very careful as you destroy all data on this disk." +#~ msgstr "" +#~ "Choose a size for your partitions and add it to the list by clicking on " +#~ "the corresponding button. You may remove any partition later. Nothing " +#~ "will get written to your disk until you click on the 'write partition " +#~ "table' button. Be very careful as you destroy all data on this disk." #~ msgid "Manage volumes" #~ msgstr "Manage volumes" diff --git a/plugins/partition/intl/es/cryptobox-server-feature-partition.po b/plugins/partition/intl/es/cryptobox-server-feature-partition.po index 9bcde16..34f92f9 100644 --- a/plugins/partition/intl/es/cryptobox-server-feature-partition.po +++ b/plugins/partition/intl/es/cryptobox-server-feature-partition.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:45+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -49,6 +49,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: Text.Confirm +msgid "Yes, I know what I am doing!" +msgstr "" + #: Text.FS.Type msgid "Filesystem type" msgstr "" @@ -94,7 +98,35 @@ msgid "Automatically creating a configuration partition." msgstr "" #: Text.RemovalContainers -msgid "These disks will be destroyed, if you continue" +msgid "These volumes will be removed:" +msgstr "" + +#: Text.SpecifyPartitions +msgid "Add partitions" +msgstr "" + +#: Help.Partitioning +msgid "You can split every disk into one ore more parts, which are called 'partitions'. This is useful if you want to seperate your data or if you want to encrypt only a part of your disk." +msgstr "" + +#: Help.SelectDevice +msgid "Choose one of the disks given in the list. Be aware that you lose all data on the partitions of this disk." +msgstr "" + +#: Help.PartMode +msgid "You may choose between 'automatic' and 'manual' partitioning. Automatic partitioning creates only one partition for the whole disk. With manual partition you can split the disk into multiple parts of different size." +msgstr "" + +#: Help.ConfigPartition +msgid "This CryptoBox is configured to store its runtime settings on a separate disk partition. It will be created automatically if necessary. This reduces the available size of the disk by 5 megabyte." +msgstr "" + +#: Help.RemoveExistingContainers +msgid "Whenever you change the partition table of a disk, you will loose all volumes that were previously defined inside of it." +msgstr "" + +#: Help.PartitionList +msgid "Choose a size for your partitions and add it to the list by clicking on 'Add'. Nothing will get written to your disk until you click on 'Write new partition table' below. Be very careful: you will erase all data on this disk." msgstr "" #: AdviceMessage.DeviceDataIsLost.Text @@ -117,6 +149,14 @@ msgstr "" msgid "Automatic initialization was finished successfully." msgstr "" +#: WarningMessage.FormatNotConfirmed.Title +msgid "Confirmation missing" +msgstr "" + +#: WarningMessage.FormatNotConfirmed.Text +msgid "You did not confirm this action by activating the checkbox." +msgstr "" + #: WarningMessage.NoDisksAvailable.Title msgid "No disks found" msgstr "" @@ -133,12 +173,16 @@ msgstr "" msgid "The partitioning of the device failed for some reason - sorry!" msgstr "" +#: WarningMessage.PartitioningFailed.Link.Text +msgid "Show log messages" +msgstr "" + #: WarningMessage.FormattingFailed.Title msgid "Formatting failed" msgstr "" #: WarningMessage.FormattingFailed.Text -msgid "The formatting of the filesystems of the device failed - sorry!" +msgid "Formatting of at least one volume failed - sorry!" msgstr "" #: WarningMessage.DiskIsBusy.Title @@ -146,7 +190,7 @@ msgid "This disk is busy" msgstr "" #: WarningMessage.DiskIsBusy.Text -msgid "Please deactivate all containers of this disk before partitioning." +msgid "Please close all volumes of this disk before partitioning." msgstr "" #: WarningMessage.DiskIsBusy.Link.Text @@ -157,42 +201,6 @@ msgstr "" msgid "Invalid size" msgstr "" -#: WarningMessage.PartitionTooBig.Text -msgid "The container size you entered exceeded the available size of the disk." -msgstr "" - -#: WarningMessage.PartitionTooSmall.Text -msgid "The minimum size of a container is 10 megabytes." -msgstr "" - -#: WarningMessage.PartitioningFailed.Link.Text -msgid "Show log messages" -msgstr "" - -#: Help.Partitioning -msgid "You can split every disk into one ore more parts, which are called 'partitions'. This is useful if you want to seperate your data or if you want to encrypt only a part of your disk." -msgstr "" - -#: Help.SelectDevice -msgid "Choose one of the disks given in the list. Be aware that you lose all data on the partitions of this disk if you confirm this action later." -msgstr "" - -#: Help.PartMode -msgid "You may choose between 'automatic' and 'manual' partitioning. Automatic partitioning creates only one partition for the whole disk. With manual partition you can split the disk into multiple parts of different size." -msgstr "" - -#: Help.PartitionList -msgid "Choose a size for your partitions and add it to the list by clicking on the corresponding button. You may remove any partition later. Nothing will get written to your disk until you click on the 'write partition table' button. Be very careful as you destroy all data on this disk." -msgstr "" - -#: WarningMessage.FormattingFailed.Text -msgid "Formatting of at least one volume failed - sorry!" -msgstr "" - -#: WarningMessage.DiskIsBusy.Text -msgid "Please close all volumes of this disk before partitioning." -msgstr "" - #: WarningMessage.PartitionTooBig.Text msgid "The volume size you entered exceeded the available size of the disk." msgstr "" @@ -200,15 +208,3 @@ msgstr "" #: WarningMessage.PartitionTooSmall.Text msgid "The minimum size of a volume is 10 megabytes." msgstr "" - -#: Text.Confirm -msgid "Yes, I know what I am doing!" -msgstr "" - -#: WarningMessage.FormatNotConfirmed.Title -msgid "Confirmation missing" -msgstr "" - -#: WarningMessage.FormatNotConfirmed.Text -msgid "You did not confirm this action by activating the checkbox." -msgstr "" diff --git a/plugins/partition/intl/fi/cryptobox-server-feature-partition.po b/plugins/partition/intl/fi/cryptobox-server-feature-partition.po index 9bcde16..bd464bb 100644 --- a/plugins/partition/intl/fi/cryptobox-server-feature-partition.po +++ b/plugins/partition/intl/fi/cryptobox-server-feature-partition.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:46+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -49,6 +49,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: Text.Confirm +msgid "Yes, I know what I am doing!" +msgstr "" + #: Text.FS.Type msgid "Filesystem type" msgstr "" @@ -94,7 +98,35 @@ msgid "Automatically creating a configuration partition." msgstr "" #: Text.RemovalContainers -msgid "These disks will be destroyed, if you continue" +msgid "These volumes will be removed:" +msgstr "" + +#: Text.SpecifyPartitions +msgid "Add partitions" +msgstr "" + +#: Help.Partitioning +msgid "You can split every disk into one ore more parts, which are called 'partitions'. This is useful if you want to seperate your data or if you want to encrypt only a part of your disk." +msgstr "" + +#: Help.SelectDevice +msgid "Choose one of the disks given in the list. Be aware that you lose all data on the partitions of this disk." +msgstr "" + +#: Help.PartMode +msgid "You may choose between 'automatic' and 'manual' partitioning. Automatic partitioning creates only one partition for the whole disk. With manual partition you can split the disk into multiple parts of different size." +msgstr "" + +#: Help.ConfigPartition +msgid "This CryptoBox is configured to store its runtime settings on a separate disk partition. It will be created automatically if necessary. This reduces the available size of the disk by 5 megabyte." +msgstr "" + +#: Help.RemoveExistingContainers +msgid "Whenever you change the partition table of a disk, you will loose all volumes that were previously defined inside of it." +msgstr "" + +#: Help.PartitionList +msgid "Choose a size for your partitions and add it to the list by clicking on 'Add'. Nothing will get written to your disk until you click on 'Write new partition table' below. Be very careful: you will erase all data on this disk." msgstr "" #: AdviceMessage.DeviceDataIsLost.Text @@ -117,6 +149,14 @@ msgstr "" msgid "Automatic initialization was finished successfully." msgstr "" +#: WarningMessage.FormatNotConfirmed.Title +msgid "Confirmation missing" +msgstr "" + +#: WarningMessage.FormatNotConfirmed.Text +msgid "You did not confirm this action by activating the checkbox." +msgstr "" + #: WarningMessage.NoDisksAvailable.Title msgid "No disks found" msgstr "" @@ -133,12 +173,16 @@ msgstr "" msgid "The partitioning of the device failed for some reason - sorry!" msgstr "" +#: WarningMessage.PartitioningFailed.Link.Text +msgid "Show log messages" +msgstr "" + #: WarningMessage.FormattingFailed.Title msgid "Formatting failed" msgstr "" #: WarningMessage.FormattingFailed.Text -msgid "The formatting of the filesystems of the device failed - sorry!" +msgid "Formatting of at least one volume failed - sorry!" msgstr "" #: WarningMessage.DiskIsBusy.Title @@ -146,7 +190,7 @@ msgid "This disk is busy" msgstr "" #: WarningMessage.DiskIsBusy.Text -msgid "Please deactivate all containers of this disk before partitioning." +msgid "Please close all volumes of this disk before partitioning." msgstr "" #: WarningMessage.DiskIsBusy.Link.Text @@ -157,42 +201,6 @@ msgstr "" msgid "Invalid size" msgstr "" -#: WarningMessage.PartitionTooBig.Text -msgid "The container size you entered exceeded the available size of the disk." -msgstr "" - -#: WarningMessage.PartitionTooSmall.Text -msgid "The minimum size of a container is 10 megabytes." -msgstr "" - -#: WarningMessage.PartitioningFailed.Link.Text -msgid "Show log messages" -msgstr "" - -#: Help.Partitioning -msgid "You can split every disk into one ore more parts, which are called 'partitions'. This is useful if you want to seperate your data or if you want to encrypt only a part of your disk." -msgstr "" - -#: Help.SelectDevice -msgid "Choose one of the disks given in the list. Be aware that you lose all data on the partitions of this disk if you confirm this action later." -msgstr "" - -#: Help.PartMode -msgid "You may choose between 'automatic' and 'manual' partitioning. Automatic partitioning creates only one partition for the whole disk. With manual partition you can split the disk into multiple parts of different size." -msgstr "" - -#: Help.PartitionList -msgid "Choose a size for your partitions and add it to the list by clicking on the corresponding button. You may remove any partition later. Nothing will get written to your disk until you click on the 'write partition table' button. Be very careful as you destroy all data on this disk." -msgstr "" - -#: WarningMessage.FormattingFailed.Text -msgid "Formatting of at least one volume failed - sorry!" -msgstr "" - -#: WarningMessage.DiskIsBusy.Text -msgid "Please close all volumes of this disk before partitioning." -msgstr "" - #: WarningMessage.PartitionTooBig.Text msgid "The volume size you entered exceeded the available size of the disk." msgstr "" @@ -200,15 +208,3 @@ msgstr "" #: WarningMessage.PartitionTooSmall.Text msgid "The minimum size of a volume is 10 megabytes." msgstr "" - -#: Text.Confirm -msgid "Yes, I know what I am doing!" -msgstr "" - -#: WarningMessage.FormatNotConfirmed.Title -msgid "Confirmation missing" -msgstr "" - -#: WarningMessage.FormatNotConfirmed.Text -msgid "You did not confirm this action by activating the checkbox." -msgstr "" diff --git a/plugins/partition/intl/fr/cryptobox-server-feature-partition.po b/plugins/partition/intl/fr/cryptobox-server-feature-partition.po index 9bcde16..bd464bb 100644 --- a/plugins/partition/intl/fr/cryptobox-server-feature-partition.po +++ b/plugins/partition/intl/fr/cryptobox-server-feature-partition.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:46+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -49,6 +49,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: Text.Confirm +msgid "Yes, I know what I am doing!" +msgstr "" + #: Text.FS.Type msgid "Filesystem type" msgstr "" @@ -94,7 +98,35 @@ msgid "Automatically creating a configuration partition." msgstr "" #: Text.RemovalContainers -msgid "These disks will be destroyed, if you continue" +msgid "These volumes will be removed:" +msgstr "" + +#: Text.SpecifyPartitions +msgid "Add partitions" +msgstr "" + +#: Help.Partitioning +msgid "You can split every disk into one ore more parts, which are called 'partitions'. This is useful if you want to seperate your data or if you want to encrypt only a part of your disk." +msgstr "" + +#: Help.SelectDevice +msgid "Choose one of the disks given in the list. Be aware that you lose all data on the partitions of this disk." +msgstr "" + +#: Help.PartMode +msgid "You may choose between 'automatic' and 'manual' partitioning. Automatic partitioning creates only one partition for the whole disk. With manual partition you can split the disk into multiple parts of different size." +msgstr "" + +#: Help.ConfigPartition +msgid "This CryptoBox is configured to store its runtime settings on a separate disk partition. It will be created automatically if necessary. This reduces the available size of the disk by 5 megabyte." +msgstr "" + +#: Help.RemoveExistingContainers +msgid "Whenever you change the partition table of a disk, you will loose all volumes that were previously defined inside of it." +msgstr "" + +#: Help.PartitionList +msgid "Choose a size for your partitions and add it to the list by clicking on 'Add'. Nothing will get written to your disk until you click on 'Write new partition table' below. Be very careful: you will erase all data on this disk." msgstr "" #: AdviceMessage.DeviceDataIsLost.Text @@ -117,6 +149,14 @@ msgstr "" msgid "Automatic initialization was finished successfully." msgstr "" +#: WarningMessage.FormatNotConfirmed.Title +msgid "Confirmation missing" +msgstr "" + +#: WarningMessage.FormatNotConfirmed.Text +msgid "You did not confirm this action by activating the checkbox." +msgstr "" + #: WarningMessage.NoDisksAvailable.Title msgid "No disks found" msgstr "" @@ -133,12 +173,16 @@ msgstr "" msgid "The partitioning of the device failed for some reason - sorry!" msgstr "" +#: WarningMessage.PartitioningFailed.Link.Text +msgid "Show log messages" +msgstr "" + #: WarningMessage.FormattingFailed.Title msgid "Formatting failed" msgstr "" #: WarningMessage.FormattingFailed.Text -msgid "The formatting of the filesystems of the device failed - sorry!" +msgid "Formatting of at least one volume failed - sorry!" msgstr "" #: WarningMessage.DiskIsBusy.Title @@ -146,7 +190,7 @@ msgid "This disk is busy" msgstr "" #: WarningMessage.DiskIsBusy.Text -msgid "Please deactivate all containers of this disk before partitioning." +msgid "Please close all volumes of this disk before partitioning." msgstr "" #: WarningMessage.DiskIsBusy.Link.Text @@ -157,42 +201,6 @@ msgstr "" msgid "Invalid size" msgstr "" -#: WarningMessage.PartitionTooBig.Text -msgid "The container size you entered exceeded the available size of the disk." -msgstr "" - -#: WarningMessage.PartitionTooSmall.Text -msgid "The minimum size of a container is 10 megabytes." -msgstr "" - -#: WarningMessage.PartitioningFailed.Link.Text -msgid "Show log messages" -msgstr "" - -#: Help.Partitioning -msgid "You can split every disk into one ore more parts, which are called 'partitions'. This is useful if you want to seperate your data or if you want to encrypt only a part of your disk." -msgstr "" - -#: Help.SelectDevice -msgid "Choose one of the disks given in the list. Be aware that you lose all data on the partitions of this disk if you confirm this action later." -msgstr "" - -#: Help.PartMode -msgid "You may choose between 'automatic' and 'manual' partitioning. Automatic partitioning creates only one partition for the whole disk. With manual partition you can split the disk into multiple parts of different size." -msgstr "" - -#: Help.PartitionList -msgid "Choose a size for your partitions and add it to the list by clicking on the corresponding button. You may remove any partition later. Nothing will get written to your disk until you click on the 'write partition table' button. Be very careful as you destroy all data on this disk." -msgstr "" - -#: WarningMessage.FormattingFailed.Text -msgid "Formatting of at least one volume failed - sorry!" -msgstr "" - -#: WarningMessage.DiskIsBusy.Text -msgid "Please close all volumes of this disk before partitioning." -msgstr "" - #: WarningMessage.PartitionTooBig.Text msgid "The volume size you entered exceeded the available size of the disk." msgstr "" @@ -200,15 +208,3 @@ msgstr "" #: WarningMessage.PartitionTooSmall.Text msgid "The minimum size of a volume is 10 megabytes." msgstr "" - -#: Text.Confirm -msgid "Yes, I know what I am doing!" -msgstr "" - -#: WarningMessage.FormatNotConfirmed.Title -msgid "Confirmation missing" -msgstr "" - -#: WarningMessage.FormatNotConfirmed.Text -msgid "You did not confirm this action by activating the checkbox." -msgstr "" diff --git a/plugins/partition/intl/hu/cryptobox-server-feature-partition.po b/plugins/partition/intl/hu/cryptobox-server-feature-partition.po index 9bcde16..bd464bb 100644 --- a/plugins/partition/intl/hu/cryptobox-server-feature-partition.po +++ b/plugins/partition/intl/hu/cryptobox-server-feature-partition.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:46+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -49,6 +49,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: Text.Confirm +msgid "Yes, I know what I am doing!" +msgstr "" + #: Text.FS.Type msgid "Filesystem type" msgstr "" @@ -94,7 +98,35 @@ msgid "Automatically creating a configuration partition." msgstr "" #: Text.RemovalContainers -msgid "These disks will be destroyed, if you continue" +msgid "These volumes will be removed:" +msgstr "" + +#: Text.SpecifyPartitions +msgid "Add partitions" +msgstr "" + +#: Help.Partitioning +msgid "You can split every disk into one ore more parts, which are called 'partitions'. This is useful if you want to seperate your data or if you want to encrypt only a part of your disk." +msgstr "" + +#: Help.SelectDevice +msgid "Choose one of the disks given in the list. Be aware that you lose all data on the partitions of this disk." +msgstr "" + +#: Help.PartMode +msgid "You may choose between 'automatic' and 'manual' partitioning. Automatic partitioning creates only one partition for the whole disk. With manual partition you can split the disk into multiple parts of different size." +msgstr "" + +#: Help.ConfigPartition +msgid "This CryptoBox is configured to store its runtime settings on a separate disk partition. It will be created automatically if necessary. This reduces the available size of the disk by 5 megabyte." +msgstr "" + +#: Help.RemoveExistingContainers +msgid "Whenever you change the partition table of a disk, you will loose all volumes that were previously defined inside of it." +msgstr "" + +#: Help.PartitionList +msgid "Choose a size for your partitions and add it to the list by clicking on 'Add'. Nothing will get written to your disk until you click on 'Write new partition table' below. Be very careful: you will erase all data on this disk." msgstr "" #: AdviceMessage.DeviceDataIsLost.Text @@ -117,6 +149,14 @@ msgstr "" msgid "Automatic initialization was finished successfully." msgstr "" +#: WarningMessage.FormatNotConfirmed.Title +msgid "Confirmation missing" +msgstr "" + +#: WarningMessage.FormatNotConfirmed.Text +msgid "You did not confirm this action by activating the checkbox." +msgstr "" + #: WarningMessage.NoDisksAvailable.Title msgid "No disks found" msgstr "" @@ -133,12 +173,16 @@ msgstr "" msgid "The partitioning of the device failed for some reason - sorry!" msgstr "" +#: WarningMessage.PartitioningFailed.Link.Text +msgid "Show log messages" +msgstr "" + #: WarningMessage.FormattingFailed.Title msgid "Formatting failed" msgstr "" #: WarningMessage.FormattingFailed.Text -msgid "The formatting of the filesystems of the device failed - sorry!" +msgid "Formatting of at least one volume failed - sorry!" msgstr "" #: WarningMessage.DiskIsBusy.Title @@ -146,7 +190,7 @@ msgid "This disk is busy" msgstr "" #: WarningMessage.DiskIsBusy.Text -msgid "Please deactivate all containers of this disk before partitioning." +msgid "Please close all volumes of this disk before partitioning." msgstr "" #: WarningMessage.DiskIsBusy.Link.Text @@ -157,42 +201,6 @@ msgstr "" msgid "Invalid size" msgstr "" -#: WarningMessage.PartitionTooBig.Text -msgid "The container size you entered exceeded the available size of the disk." -msgstr "" - -#: WarningMessage.PartitionTooSmall.Text -msgid "The minimum size of a container is 10 megabytes." -msgstr "" - -#: WarningMessage.PartitioningFailed.Link.Text -msgid "Show log messages" -msgstr "" - -#: Help.Partitioning -msgid "You can split every disk into one ore more parts, which are called 'partitions'. This is useful if you want to seperate your data or if you want to encrypt only a part of your disk." -msgstr "" - -#: Help.SelectDevice -msgid "Choose one of the disks given in the list. Be aware that you lose all data on the partitions of this disk if you confirm this action later." -msgstr "" - -#: Help.PartMode -msgid "You may choose between 'automatic' and 'manual' partitioning. Automatic partitioning creates only one partition for the whole disk. With manual partition you can split the disk into multiple parts of different size." -msgstr "" - -#: Help.PartitionList -msgid "Choose a size for your partitions and add it to the list by clicking on the corresponding button. You may remove any partition later. Nothing will get written to your disk until you click on the 'write partition table' button. Be very careful as you destroy all data on this disk." -msgstr "" - -#: WarningMessage.FormattingFailed.Text -msgid "Formatting of at least one volume failed - sorry!" -msgstr "" - -#: WarningMessage.DiskIsBusy.Text -msgid "Please close all volumes of this disk before partitioning." -msgstr "" - #: WarningMessage.PartitionTooBig.Text msgid "The volume size you entered exceeded the available size of the disk." msgstr "" @@ -200,15 +208,3 @@ msgstr "" #: WarningMessage.PartitionTooSmall.Text msgid "The minimum size of a volume is 10 megabytes." msgstr "" - -#: Text.Confirm -msgid "Yes, I know what I am doing!" -msgstr "" - -#: WarningMessage.FormatNotConfirmed.Title -msgid "Confirmation missing" -msgstr "" - -#: WarningMessage.FormatNotConfirmed.Text -msgid "You did not confirm this action by activating the checkbox." -msgstr "" diff --git a/plugins/partition/intl/it/cryptobox-server-feature-partition.po b/plugins/partition/intl/it/cryptobox-server-feature-partition.po index 9bcde16..da63e7c 100644 --- a/plugins/partition/intl/it/cryptobox-server-feature-partition.po +++ b/plugins/partition/intl/it/cryptobox-server-feature-partition.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -49,6 +49,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: Text.Confirm +msgid "Yes, I know what I am doing!" +msgstr "" + #: Text.FS.Type msgid "Filesystem type" msgstr "" @@ -94,7 +98,35 @@ msgid "Automatically creating a configuration partition." msgstr "" #: Text.RemovalContainers -msgid "These disks will be destroyed, if you continue" +msgid "These volumes will be removed:" +msgstr "" + +#: Text.SpecifyPartitions +msgid "Add partitions" +msgstr "" + +#: Help.Partitioning +msgid "You can split every disk into one ore more parts, which are called 'partitions'. This is useful if you want to seperate your data or if you want to encrypt only a part of your disk." +msgstr "" + +#: Help.SelectDevice +msgid "Choose one of the disks given in the list. Be aware that you lose all data on the partitions of this disk." +msgstr "" + +#: Help.PartMode +msgid "You may choose between 'automatic' and 'manual' partitioning. Automatic partitioning creates only one partition for the whole disk. With manual partition you can split the disk into multiple parts of different size." +msgstr "" + +#: Help.ConfigPartition +msgid "This CryptoBox is configured to store its runtime settings on a separate disk partition. It will be created automatically if necessary. This reduces the available size of the disk by 5 megabyte." +msgstr "" + +#: Help.RemoveExistingContainers +msgid "Whenever you change the partition table of a disk, you will loose all volumes that were previously defined inside of it." +msgstr "" + +#: Help.PartitionList +msgid "Choose a size for your partitions and add it to the list by clicking on 'Add'. Nothing will get written to your disk until you click on 'Write new partition table' below. Be very careful: you will erase all data on this disk." msgstr "" #: AdviceMessage.DeviceDataIsLost.Text @@ -117,6 +149,14 @@ msgstr "" msgid "Automatic initialization was finished successfully." msgstr "" +#: WarningMessage.FormatNotConfirmed.Title +msgid "Confirmation missing" +msgstr "" + +#: WarningMessage.FormatNotConfirmed.Text +msgid "You did not confirm this action by activating the checkbox." +msgstr "" + #: WarningMessage.NoDisksAvailable.Title msgid "No disks found" msgstr "" @@ -133,12 +173,16 @@ msgstr "" msgid "The partitioning of the device failed for some reason - sorry!" msgstr "" +#: WarningMessage.PartitioningFailed.Link.Text +msgid "Show log messages" +msgstr "" + #: WarningMessage.FormattingFailed.Title msgid "Formatting failed" msgstr "" #: WarningMessage.FormattingFailed.Text -msgid "The formatting of the filesystems of the device failed - sorry!" +msgid "Formatting of at least one volume failed - sorry!" msgstr "" #: WarningMessage.DiskIsBusy.Title @@ -146,7 +190,7 @@ msgid "This disk is busy" msgstr "" #: WarningMessage.DiskIsBusy.Text -msgid "Please deactivate all containers of this disk before partitioning." +msgid "Please close all volumes of this disk before partitioning." msgstr "" #: WarningMessage.DiskIsBusy.Link.Text @@ -157,42 +201,6 @@ msgstr "" msgid "Invalid size" msgstr "" -#: WarningMessage.PartitionTooBig.Text -msgid "The container size you entered exceeded the available size of the disk." -msgstr "" - -#: WarningMessage.PartitionTooSmall.Text -msgid "The minimum size of a container is 10 megabytes." -msgstr "" - -#: WarningMessage.PartitioningFailed.Link.Text -msgid "Show log messages" -msgstr "" - -#: Help.Partitioning -msgid "You can split every disk into one ore more parts, which are called 'partitions'. This is useful if you want to seperate your data or if you want to encrypt only a part of your disk." -msgstr "" - -#: Help.SelectDevice -msgid "Choose one of the disks given in the list. Be aware that you lose all data on the partitions of this disk if you confirm this action later." -msgstr "" - -#: Help.PartMode -msgid "You may choose between 'automatic' and 'manual' partitioning. Automatic partitioning creates only one partition for the whole disk. With manual partition you can split the disk into multiple parts of different size." -msgstr "" - -#: Help.PartitionList -msgid "Choose a size for your partitions and add it to the list by clicking on the corresponding button. You may remove any partition later. Nothing will get written to your disk until you click on the 'write partition table' button. Be very careful as you destroy all data on this disk." -msgstr "" - -#: WarningMessage.FormattingFailed.Text -msgid "Formatting of at least one volume failed - sorry!" -msgstr "" - -#: WarningMessage.DiskIsBusy.Text -msgid "Please close all volumes of this disk before partitioning." -msgstr "" - #: WarningMessage.PartitionTooBig.Text msgid "The volume size you entered exceeded the available size of the disk." msgstr "" @@ -200,15 +208,3 @@ msgstr "" #: WarningMessage.PartitionTooSmall.Text msgid "The minimum size of a volume is 10 megabytes." msgstr "" - -#: Text.Confirm -msgid "Yes, I know what I am doing!" -msgstr "" - -#: WarningMessage.FormatNotConfirmed.Title -msgid "Confirmation missing" -msgstr "" - -#: WarningMessage.FormatNotConfirmed.Text -msgid "You did not confirm this action by activating the checkbox." -msgstr "" diff --git a/plugins/partition/intl/ja/cryptobox-server-feature-partition.po b/plugins/partition/intl/ja/cryptobox-server-feature-partition.po index 9bcde16..da63e7c 100644 --- a/plugins/partition/intl/ja/cryptobox-server-feature-partition.po +++ b/plugins/partition/intl/ja/cryptobox-server-feature-partition.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -49,6 +49,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: Text.Confirm +msgid "Yes, I know what I am doing!" +msgstr "" + #: Text.FS.Type msgid "Filesystem type" msgstr "" @@ -94,7 +98,35 @@ msgid "Automatically creating a configuration partition." msgstr "" #: Text.RemovalContainers -msgid "These disks will be destroyed, if you continue" +msgid "These volumes will be removed:" +msgstr "" + +#: Text.SpecifyPartitions +msgid "Add partitions" +msgstr "" + +#: Help.Partitioning +msgid "You can split every disk into one ore more parts, which are called 'partitions'. This is useful if you want to seperate your data or if you want to encrypt only a part of your disk." +msgstr "" + +#: Help.SelectDevice +msgid "Choose one of the disks given in the list. Be aware that you lose all data on the partitions of this disk." +msgstr "" + +#: Help.PartMode +msgid "You may choose between 'automatic' and 'manual' partitioning. Automatic partitioning creates only one partition for the whole disk. With manual partition you can split the disk into multiple parts of different size." +msgstr "" + +#: Help.ConfigPartition +msgid "This CryptoBox is configured to store its runtime settings on a separate disk partition. It will be created automatically if necessary. This reduces the available size of the disk by 5 megabyte." +msgstr "" + +#: Help.RemoveExistingContainers +msgid "Whenever you change the partition table of a disk, you will loose all volumes that were previously defined inside of it." +msgstr "" + +#: Help.PartitionList +msgid "Choose a size for your partitions and add it to the list by clicking on 'Add'. Nothing will get written to your disk until you click on 'Write new partition table' below. Be very careful: you will erase all data on this disk." msgstr "" #: AdviceMessage.DeviceDataIsLost.Text @@ -117,6 +149,14 @@ msgstr "" msgid "Automatic initialization was finished successfully." msgstr "" +#: WarningMessage.FormatNotConfirmed.Title +msgid "Confirmation missing" +msgstr "" + +#: WarningMessage.FormatNotConfirmed.Text +msgid "You did not confirm this action by activating the checkbox." +msgstr "" + #: WarningMessage.NoDisksAvailable.Title msgid "No disks found" msgstr "" @@ -133,12 +173,16 @@ msgstr "" msgid "The partitioning of the device failed for some reason - sorry!" msgstr "" +#: WarningMessage.PartitioningFailed.Link.Text +msgid "Show log messages" +msgstr "" + #: WarningMessage.FormattingFailed.Title msgid "Formatting failed" msgstr "" #: WarningMessage.FormattingFailed.Text -msgid "The formatting of the filesystems of the device failed - sorry!" +msgid "Formatting of at least one volume failed - sorry!" msgstr "" #: WarningMessage.DiskIsBusy.Title @@ -146,7 +190,7 @@ msgid "This disk is busy" msgstr "" #: WarningMessage.DiskIsBusy.Text -msgid "Please deactivate all containers of this disk before partitioning." +msgid "Please close all volumes of this disk before partitioning." msgstr "" #: WarningMessage.DiskIsBusy.Link.Text @@ -157,42 +201,6 @@ msgstr "" msgid "Invalid size" msgstr "" -#: WarningMessage.PartitionTooBig.Text -msgid "The container size you entered exceeded the available size of the disk." -msgstr "" - -#: WarningMessage.PartitionTooSmall.Text -msgid "The minimum size of a container is 10 megabytes." -msgstr "" - -#: WarningMessage.PartitioningFailed.Link.Text -msgid "Show log messages" -msgstr "" - -#: Help.Partitioning -msgid "You can split every disk into one ore more parts, which are called 'partitions'. This is useful if you want to seperate your data or if you want to encrypt only a part of your disk." -msgstr "" - -#: Help.SelectDevice -msgid "Choose one of the disks given in the list. Be aware that you lose all data on the partitions of this disk if you confirm this action later." -msgstr "" - -#: Help.PartMode -msgid "You may choose between 'automatic' and 'manual' partitioning. Automatic partitioning creates only one partition for the whole disk. With manual partition you can split the disk into multiple parts of different size." -msgstr "" - -#: Help.PartitionList -msgid "Choose a size for your partitions and add it to the list by clicking on the corresponding button. You may remove any partition later. Nothing will get written to your disk until you click on the 'write partition table' button. Be very careful as you destroy all data on this disk." -msgstr "" - -#: WarningMessage.FormattingFailed.Text -msgid "Formatting of at least one volume failed - sorry!" -msgstr "" - -#: WarningMessage.DiskIsBusy.Text -msgid "Please close all volumes of this disk before partitioning." -msgstr "" - #: WarningMessage.PartitionTooBig.Text msgid "The volume size you entered exceeded the available size of the disk." msgstr "" @@ -200,15 +208,3 @@ msgstr "" #: WarningMessage.PartitionTooSmall.Text msgid "The minimum size of a volume is 10 megabytes." msgstr "" - -#: Text.Confirm -msgid "Yes, I know what I am doing!" -msgstr "" - -#: WarningMessage.FormatNotConfirmed.Title -msgid "Confirmation missing" -msgstr "" - -#: WarningMessage.FormatNotConfirmed.Text -msgid "You did not confirm this action by activating the checkbox." -msgstr "" diff --git a/plugins/partition/intl/nl/cryptobox-server-feature-partition.po b/plugins/partition/intl/nl/cryptobox-server-feature-partition.po index 9bcde16..da63e7c 100644 --- a/plugins/partition/intl/nl/cryptobox-server-feature-partition.po +++ b/plugins/partition/intl/nl/cryptobox-server-feature-partition.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:47+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -49,6 +49,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: Text.Confirm +msgid "Yes, I know what I am doing!" +msgstr "" + #: Text.FS.Type msgid "Filesystem type" msgstr "" @@ -94,7 +98,35 @@ msgid "Automatically creating a configuration partition." msgstr "" #: Text.RemovalContainers -msgid "These disks will be destroyed, if you continue" +msgid "These volumes will be removed:" +msgstr "" + +#: Text.SpecifyPartitions +msgid "Add partitions" +msgstr "" + +#: Help.Partitioning +msgid "You can split every disk into one ore more parts, which are called 'partitions'. This is useful if you want to seperate your data or if you want to encrypt only a part of your disk." +msgstr "" + +#: Help.SelectDevice +msgid "Choose one of the disks given in the list. Be aware that you lose all data on the partitions of this disk." +msgstr "" + +#: Help.PartMode +msgid "You may choose between 'automatic' and 'manual' partitioning. Automatic partitioning creates only one partition for the whole disk. With manual partition you can split the disk into multiple parts of different size." +msgstr "" + +#: Help.ConfigPartition +msgid "This CryptoBox is configured to store its runtime settings on a separate disk partition. It will be created automatically if necessary. This reduces the available size of the disk by 5 megabyte." +msgstr "" + +#: Help.RemoveExistingContainers +msgid "Whenever you change the partition table of a disk, you will loose all volumes that were previously defined inside of it." +msgstr "" + +#: Help.PartitionList +msgid "Choose a size for your partitions and add it to the list by clicking on 'Add'. Nothing will get written to your disk until you click on 'Write new partition table' below. Be very careful: you will erase all data on this disk." msgstr "" #: AdviceMessage.DeviceDataIsLost.Text @@ -117,6 +149,14 @@ msgstr "" msgid "Automatic initialization was finished successfully." msgstr "" +#: WarningMessage.FormatNotConfirmed.Title +msgid "Confirmation missing" +msgstr "" + +#: WarningMessage.FormatNotConfirmed.Text +msgid "You did not confirm this action by activating the checkbox." +msgstr "" + #: WarningMessage.NoDisksAvailable.Title msgid "No disks found" msgstr "" @@ -133,12 +173,16 @@ msgstr "" msgid "The partitioning of the device failed for some reason - sorry!" msgstr "" +#: WarningMessage.PartitioningFailed.Link.Text +msgid "Show log messages" +msgstr "" + #: WarningMessage.FormattingFailed.Title msgid "Formatting failed" msgstr "" #: WarningMessage.FormattingFailed.Text -msgid "The formatting of the filesystems of the device failed - sorry!" +msgid "Formatting of at least one volume failed - sorry!" msgstr "" #: WarningMessage.DiskIsBusy.Title @@ -146,7 +190,7 @@ msgid "This disk is busy" msgstr "" #: WarningMessage.DiskIsBusy.Text -msgid "Please deactivate all containers of this disk before partitioning." +msgid "Please close all volumes of this disk before partitioning." msgstr "" #: WarningMessage.DiskIsBusy.Link.Text @@ -157,42 +201,6 @@ msgstr "" msgid "Invalid size" msgstr "" -#: WarningMessage.PartitionTooBig.Text -msgid "The container size you entered exceeded the available size of the disk." -msgstr "" - -#: WarningMessage.PartitionTooSmall.Text -msgid "The minimum size of a container is 10 megabytes." -msgstr "" - -#: WarningMessage.PartitioningFailed.Link.Text -msgid "Show log messages" -msgstr "" - -#: Help.Partitioning -msgid "You can split every disk into one ore more parts, which are called 'partitions'. This is useful if you want to seperate your data or if you want to encrypt only a part of your disk." -msgstr "" - -#: Help.SelectDevice -msgid "Choose one of the disks given in the list. Be aware that you lose all data on the partitions of this disk if you confirm this action later." -msgstr "" - -#: Help.PartMode -msgid "You may choose between 'automatic' and 'manual' partitioning. Automatic partitioning creates only one partition for the whole disk. With manual partition you can split the disk into multiple parts of different size." -msgstr "" - -#: Help.PartitionList -msgid "Choose a size for your partitions and add it to the list by clicking on the corresponding button. You may remove any partition later. Nothing will get written to your disk until you click on the 'write partition table' button. Be very careful as you destroy all data on this disk." -msgstr "" - -#: WarningMessage.FormattingFailed.Text -msgid "Formatting of at least one volume failed - sorry!" -msgstr "" - -#: WarningMessage.DiskIsBusy.Text -msgid "Please close all volumes of this disk before partitioning." -msgstr "" - #: WarningMessage.PartitionTooBig.Text msgid "The volume size you entered exceeded the available size of the disk." msgstr "" @@ -200,15 +208,3 @@ msgstr "" #: WarningMessage.PartitionTooSmall.Text msgid "The minimum size of a volume is 10 megabytes." msgstr "" - -#: Text.Confirm -msgid "Yes, I know what I am doing!" -msgstr "" - -#: WarningMessage.FormatNotConfirmed.Title -msgid "Confirmation missing" -msgstr "" - -#: WarningMessage.FormatNotConfirmed.Text -msgid "You did not confirm this action by activating the checkbox." -msgstr "" diff --git a/plugins/partition/intl/pl/cryptobox-server-feature-partition.po b/plugins/partition/intl/pl/cryptobox-server-feature-partition.po index 9bcde16..c3f37b5 100644 --- a/plugins/partition/intl/pl/cryptobox-server-feature-partition.po +++ b/plugins/partition/intl/pl/cryptobox-server-feature-partition.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:48+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -49,6 +49,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: Text.Confirm +msgid "Yes, I know what I am doing!" +msgstr "" + #: Text.FS.Type msgid "Filesystem type" msgstr "" @@ -94,7 +98,35 @@ msgid "Automatically creating a configuration partition." msgstr "" #: Text.RemovalContainers -msgid "These disks will be destroyed, if you continue" +msgid "These volumes will be removed:" +msgstr "" + +#: Text.SpecifyPartitions +msgid "Add partitions" +msgstr "" + +#: Help.Partitioning +msgid "You can split every disk into one ore more parts, which are called 'partitions'. This is useful if you want to seperate your data or if you want to encrypt only a part of your disk." +msgstr "" + +#: Help.SelectDevice +msgid "Choose one of the disks given in the list. Be aware that you lose all data on the partitions of this disk." +msgstr "" + +#: Help.PartMode +msgid "You may choose between 'automatic' and 'manual' partitioning. Automatic partitioning creates only one partition for the whole disk. With manual partition you can split the disk into multiple parts of different size." +msgstr "" + +#: Help.ConfigPartition +msgid "This CryptoBox is configured to store its runtime settings on a separate disk partition. It will be created automatically if necessary. This reduces the available size of the disk by 5 megabyte." +msgstr "" + +#: Help.RemoveExistingContainers +msgid "Whenever you change the partition table of a disk, you will loose all volumes that were previously defined inside of it." +msgstr "" + +#: Help.PartitionList +msgid "Choose a size for your partitions and add it to the list by clicking on 'Add'. Nothing will get written to your disk until you click on 'Write new partition table' below. Be very careful: you will erase all data on this disk." msgstr "" #: AdviceMessage.DeviceDataIsLost.Text @@ -117,6 +149,14 @@ msgstr "" msgid "Automatic initialization was finished successfully." msgstr "" +#: WarningMessage.FormatNotConfirmed.Title +msgid "Confirmation missing" +msgstr "" + +#: WarningMessage.FormatNotConfirmed.Text +msgid "You did not confirm this action by activating the checkbox." +msgstr "" + #: WarningMessage.NoDisksAvailable.Title msgid "No disks found" msgstr "" @@ -133,12 +173,16 @@ msgstr "" msgid "The partitioning of the device failed for some reason - sorry!" msgstr "" +#: WarningMessage.PartitioningFailed.Link.Text +msgid "Show log messages" +msgstr "" + #: WarningMessage.FormattingFailed.Title msgid "Formatting failed" msgstr "" #: WarningMessage.FormattingFailed.Text -msgid "The formatting of the filesystems of the device failed - sorry!" +msgid "Formatting of at least one volume failed - sorry!" msgstr "" #: WarningMessage.DiskIsBusy.Title @@ -146,7 +190,7 @@ msgid "This disk is busy" msgstr "" #: WarningMessage.DiskIsBusy.Text -msgid "Please deactivate all containers of this disk before partitioning." +msgid "Please close all volumes of this disk before partitioning." msgstr "" #: WarningMessage.DiskIsBusy.Link.Text @@ -157,42 +201,6 @@ msgstr "" msgid "Invalid size" msgstr "" -#: WarningMessage.PartitionTooBig.Text -msgid "The container size you entered exceeded the available size of the disk." -msgstr "" - -#: WarningMessage.PartitionTooSmall.Text -msgid "The minimum size of a container is 10 megabytes." -msgstr "" - -#: WarningMessage.PartitioningFailed.Link.Text -msgid "Show log messages" -msgstr "" - -#: Help.Partitioning -msgid "You can split every disk into one ore more parts, which are called 'partitions'. This is useful if you want to seperate your data or if you want to encrypt only a part of your disk." -msgstr "" - -#: Help.SelectDevice -msgid "Choose one of the disks given in the list. Be aware that you lose all data on the partitions of this disk if you confirm this action later." -msgstr "" - -#: Help.PartMode -msgid "You may choose between 'automatic' and 'manual' partitioning. Automatic partitioning creates only one partition for the whole disk. With manual partition you can split the disk into multiple parts of different size." -msgstr "" - -#: Help.PartitionList -msgid "Choose a size for your partitions and add it to the list by clicking on the corresponding button. You may remove any partition later. Nothing will get written to your disk until you click on the 'write partition table' button. Be very careful as you destroy all data on this disk." -msgstr "" - -#: WarningMessage.FormattingFailed.Text -msgid "Formatting of at least one volume failed - sorry!" -msgstr "" - -#: WarningMessage.DiskIsBusy.Text -msgid "Please close all volumes of this disk before partitioning." -msgstr "" - #: WarningMessage.PartitionTooBig.Text msgid "The volume size you entered exceeded the available size of the disk." msgstr "" @@ -200,15 +208,3 @@ msgstr "" #: WarningMessage.PartitionTooSmall.Text msgid "The minimum size of a volume is 10 megabytes." msgstr "" - -#: Text.Confirm -msgid "Yes, I know what I am doing!" -msgstr "" - -#: WarningMessage.FormatNotConfirmed.Title -msgid "Confirmation missing" -msgstr "" - -#: WarningMessage.FormatNotConfirmed.Text -msgid "You did not confirm this action by activating the checkbox." -msgstr "" diff --git a/plugins/partition/intl/pt/cryptobox-server-feature-partition.po b/plugins/partition/intl/pt/cryptobox-server-feature-partition.po index 9bcde16..c3f37b5 100644 --- a/plugins/partition/intl/pt/cryptobox-server-feature-partition.po +++ b/plugins/partition/intl/pt/cryptobox-server-feature-partition.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:48+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -49,6 +49,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: Text.Confirm +msgid "Yes, I know what I am doing!" +msgstr "" + #: Text.FS.Type msgid "Filesystem type" msgstr "" @@ -94,7 +98,35 @@ msgid "Automatically creating a configuration partition." msgstr "" #: Text.RemovalContainers -msgid "These disks will be destroyed, if you continue" +msgid "These volumes will be removed:" +msgstr "" + +#: Text.SpecifyPartitions +msgid "Add partitions" +msgstr "" + +#: Help.Partitioning +msgid "You can split every disk into one ore more parts, which are called 'partitions'. This is useful if you want to seperate your data or if you want to encrypt only a part of your disk." +msgstr "" + +#: Help.SelectDevice +msgid "Choose one of the disks given in the list. Be aware that you lose all data on the partitions of this disk." +msgstr "" + +#: Help.PartMode +msgid "You may choose between 'automatic' and 'manual' partitioning. Automatic partitioning creates only one partition for the whole disk. With manual partition you can split the disk into multiple parts of different size." +msgstr "" + +#: Help.ConfigPartition +msgid "This CryptoBox is configured to store its runtime settings on a separate disk partition. It will be created automatically if necessary. This reduces the available size of the disk by 5 megabyte." +msgstr "" + +#: Help.RemoveExistingContainers +msgid "Whenever you change the partition table of a disk, you will loose all volumes that were previously defined inside of it." +msgstr "" + +#: Help.PartitionList +msgid "Choose a size for your partitions and add it to the list by clicking on 'Add'. Nothing will get written to your disk until you click on 'Write new partition table' below. Be very careful: you will erase all data on this disk." msgstr "" #: AdviceMessage.DeviceDataIsLost.Text @@ -117,6 +149,14 @@ msgstr "" msgid "Automatic initialization was finished successfully." msgstr "" +#: WarningMessage.FormatNotConfirmed.Title +msgid "Confirmation missing" +msgstr "" + +#: WarningMessage.FormatNotConfirmed.Text +msgid "You did not confirm this action by activating the checkbox." +msgstr "" + #: WarningMessage.NoDisksAvailable.Title msgid "No disks found" msgstr "" @@ -133,12 +173,16 @@ msgstr "" msgid "The partitioning of the device failed for some reason - sorry!" msgstr "" +#: WarningMessage.PartitioningFailed.Link.Text +msgid "Show log messages" +msgstr "" + #: WarningMessage.FormattingFailed.Title msgid "Formatting failed" msgstr "" #: WarningMessage.FormattingFailed.Text -msgid "The formatting of the filesystems of the device failed - sorry!" +msgid "Formatting of at least one volume failed - sorry!" msgstr "" #: WarningMessage.DiskIsBusy.Title @@ -146,7 +190,7 @@ msgid "This disk is busy" msgstr "" #: WarningMessage.DiskIsBusy.Text -msgid "Please deactivate all containers of this disk before partitioning." +msgid "Please close all volumes of this disk before partitioning." msgstr "" #: WarningMessage.DiskIsBusy.Link.Text @@ -157,42 +201,6 @@ msgstr "" msgid "Invalid size" msgstr "" -#: WarningMessage.PartitionTooBig.Text -msgid "The container size you entered exceeded the available size of the disk." -msgstr "" - -#: WarningMessage.PartitionTooSmall.Text -msgid "The minimum size of a container is 10 megabytes." -msgstr "" - -#: WarningMessage.PartitioningFailed.Link.Text -msgid "Show log messages" -msgstr "" - -#: Help.Partitioning -msgid "You can split every disk into one ore more parts, which are called 'partitions'. This is useful if you want to seperate your data or if you want to encrypt only a part of your disk." -msgstr "" - -#: Help.SelectDevice -msgid "Choose one of the disks given in the list. Be aware that you lose all data on the partitions of this disk if you confirm this action later." -msgstr "" - -#: Help.PartMode -msgid "You may choose between 'automatic' and 'manual' partitioning. Automatic partitioning creates only one partition for the whole disk. With manual partition you can split the disk into multiple parts of different size." -msgstr "" - -#: Help.PartitionList -msgid "Choose a size for your partitions and add it to the list by clicking on the corresponding button. You may remove any partition later. Nothing will get written to your disk until you click on the 'write partition table' button. Be very careful as you destroy all data on this disk." -msgstr "" - -#: WarningMessage.FormattingFailed.Text -msgid "Formatting of at least one volume failed - sorry!" -msgstr "" - -#: WarningMessage.DiskIsBusy.Text -msgid "Please close all volumes of this disk before partitioning." -msgstr "" - #: WarningMessage.PartitionTooBig.Text msgid "The volume size you entered exceeded the available size of the disk." msgstr "" @@ -200,15 +208,3 @@ msgstr "" #: WarningMessage.PartitionTooSmall.Text msgid "The minimum size of a volume is 10 megabytes." msgstr "" - -#: Text.Confirm -msgid "Yes, I know what I am doing!" -msgstr "" - -#: WarningMessage.FormatNotConfirmed.Title -msgid "Confirmation missing" -msgstr "" - -#: WarningMessage.FormatNotConfirmed.Text -msgid "You did not confirm this action by activating the checkbox." -msgstr "" diff --git a/plugins/partition/intl/ru/cryptobox-server-feature-partition.po b/plugins/partition/intl/ru/cryptobox-server-feature-partition.po index 9bcde16..17d8559 100644 --- a/plugins/partition/intl/ru/cryptobox-server-feature-partition.po +++ b/plugins/partition/intl/ru/cryptobox-server-feature-partition.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:49+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -49,6 +49,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: Text.Confirm +msgid "Yes, I know what I am doing!" +msgstr "" + #: Text.FS.Type msgid "Filesystem type" msgstr "" @@ -94,7 +98,35 @@ msgid "Automatically creating a configuration partition." msgstr "" #: Text.RemovalContainers -msgid "These disks will be destroyed, if you continue" +msgid "These volumes will be removed:" +msgstr "" + +#: Text.SpecifyPartitions +msgid "Add partitions" +msgstr "" + +#: Help.Partitioning +msgid "You can split every disk into one ore more parts, which are called 'partitions'. This is useful if you want to seperate your data or if you want to encrypt only a part of your disk." +msgstr "" + +#: Help.SelectDevice +msgid "Choose one of the disks given in the list. Be aware that you lose all data on the partitions of this disk." +msgstr "" + +#: Help.PartMode +msgid "You may choose between 'automatic' and 'manual' partitioning. Automatic partitioning creates only one partition for the whole disk. With manual partition you can split the disk into multiple parts of different size." +msgstr "" + +#: Help.ConfigPartition +msgid "This CryptoBox is configured to store its runtime settings on a separate disk partition. It will be created automatically if necessary. This reduces the available size of the disk by 5 megabyte." +msgstr "" + +#: Help.RemoveExistingContainers +msgid "Whenever you change the partition table of a disk, you will loose all volumes that were previously defined inside of it." +msgstr "" + +#: Help.PartitionList +msgid "Choose a size for your partitions and add it to the list by clicking on 'Add'. Nothing will get written to your disk until you click on 'Write new partition table' below. Be very careful: you will erase all data on this disk." msgstr "" #: AdviceMessage.DeviceDataIsLost.Text @@ -117,6 +149,14 @@ msgstr "" msgid "Automatic initialization was finished successfully." msgstr "" +#: WarningMessage.FormatNotConfirmed.Title +msgid "Confirmation missing" +msgstr "" + +#: WarningMessage.FormatNotConfirmed.Text +msgid "You did not confirm this action by activating the checkbox." +msgstr "" + #: WarningMessage.NoDisksAvailable.Title msgid "No disks found" msgstr "" @@ -133,12 +173,16 @@ msgstr "" msgid "The partitioning of the device failed for some reason - sorry!" msgstr "" +#: WarningMessage.PartitioningFailed.Link.Text +msgid "Show log messages" +msgstr "" + #: WarningMessage.FormattingFailed.Title msgid "Formatting failed" msgstr "" #: WarningMessage.FormattingFailed.Text -msgid "The formatting of the filesystems of the device failed - sorry!" +msgid "Formatting of at least one volume failed - sorry!" msgstr "" #: WarningMessage.DiskIsBusy.Title @@ -146,7 +190,7 @@ msgid "This disk is busy" msgstr "" #: WarningMessage.DiskIsBusy.Text -msgid "Please deactivate all containers of this disk before partitioning." +msgid "Please close all volumes of this disk before partitioning." msgstr "" #: WarningMessage.DiskIsBusy.Link.Text @@ -157,42 +201,6 @@ msgstr "" msgid "Invalid size" msgstr "" -#: WarningMessage.PartitionTooBig.Text -msgid "The container size you entered exceeded the available size of the disk." -msgstr "" - -#: WarningMessage.PartitionTooSmall.Text -msgid "The minimum size of a container is 10 megabytes." -msgstr "" - -#: WarningMessage.PartitioningFailed.Link.Text -msgid "Show log messages" -msgstr "" - -#: Help.Partitioning -msgid "You can split every disk into one ore more parts, which are called 'partitions'. This is useful if you want to seperate your data or if you want to encrypt only a part of your disk." -msgstr "" - -#: Help.SelectDevice -msgid "Choose one of the disks given in the list. Be aware that you lose all data on the partitions of this disk if you confirm this action later." -msgstr "" - -#: Help.PartMode -msgid "You may choose between 'automatic' and 'manual' partitioning. Automatic partitioning creates only one partition for the whole disk. With manual partition you can split the disk into multiple parts of different size." -msgstr "" - -#: Help.PartitionList -msgid "Choose a size for your partitions and add it to the list by clicking on the corresponding button. You may remove any partition later. Nothing will get written to your disk until you click on the 'write partition table' button. Be very careful as you destroy all data on this disk." -msgstr "" - -#: WarningMessage.FormattingFailed.Text -msgid "Formatting of at least one volume failed - sorry!" -msgstr "" - -#: WarningMessage.DiskIsBusy.Text -msgid "Please close all volumes of this disk before partitioning." -msgstr "" - #: WarningMessage.PartitionTooBig.Text msgid "The volume size you entered exceeded the available size of the disk." msgstr "" @@ -200,15 +208,3 @@ msgstr "" #: WarningMessage.PartitionTooSmall.Text msgid "The minimum size of a volume is 10 megabytes." msgstr "" - -#: Text.Confirm -msgid "Yes, I know what I am doing!" -msgstr "" - -#: WarningMessage.FormatNotConfirmed.Title -msgid "Confirmation missing" -msgstr "" - -#: WarningMessage.FormatNotConfirmed.Text -msgid "You did not confirm this action by activating the checkbox." -msgstr "" diff --git a/plugins/partition/intl/sl/cryptobox-server-feature-partition.po b/plugins/partition/intl/sl/cryptobox-server-feature-partition.po index 9bcde16..17d8559 100644 --- a/plugins/partition/intl/sl/cryptobox-server-feature-partition.po +++ b/plugins/partition/intl/sl/cryptobox-server-feature-partition.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:49+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -49,6 +49,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: Text.Confirm +msgid "Yes, I know what I am doing!" +msgstr "" + #: Text.FS.Type msgid "Filesystem type" msgstr "" @@ -94,7 +98,35 @@ msgid "Automatically creating a configuration partition." msgstr "" #: Text.RemovalContainers -msgid "These disks will be destroyed, if you continue" +msgid "These volumes will be removed:" +msgstr "" + +#: Text.SpecifyPartitions +msgid "Add partitions" +msgstr "" + +#: Help.Partitioning +msgid "You can split every disk into one ore more parts, which are called 'partitions'. This is useful if you want to seperate your data or if you want to encrypt only a part of your disk." +msgstr "" + +#: Help.SelectDevice +msgid "Choose one of the disks given in the list. Be aware that you lose all data on the partitions of this disk." +msgstr "" + +#: Help.PartMode +msgid "You may choose between 'automatic' and 'manual' partitioning. Automatic partitioning creates only one partition for the whole disk. With manual partition you can split the disk into multiple parts of different size." +msgstr "" + +#: Help.ConfigPartition +msgid "This CryptoBox is configured to store its runtime settings on a separate disk partition. It will be created automatically if necessary. This reduces the available size of the disk by 5 megabyte." +msgstr "" + +#: Help.RemoveExistingContainers +msgid "Whenever you change the partition table of a disk, you will loose all volumes that were previously defined inside of it." +msgstr "" + +#: Help.PartitionList +msgid "Choose a size for your partitions and add it to the list by clicking on 'Add'. Nothing will get written to your disk until you click on 'Write new partition table' below. Be very careful: you will erase all data on this disk." msgstr "" #: AdviceMessage.DeviceDataIsLost.Text @@ -117,6 +149,14 @@ msgstr "" msgid "Automatic initialization was finished successfully." msgstr "" +#: WarningMessage.FormatNotConfirmed.Title +msgid "Confirmation missing" +msgstr "" + +#: WarningMessage.FormatNotConfirmed.Text +msgid "You did not confirm this action by activating the checkbox." +msgstr "" + #: WarningMessage.NoDisksAvailable.Title msgid "No disks found" msgstr "" @@ -133,12 +173,16 @@ msgstr "" msgid "The partitioning of the device failed for some reason - sorry!" msgstr "" +#: WarningMessage.PartitioningFailed.Link.Text +msgid "Show log messages" +msgstr "" + #: WarningMessage.FormattingFailed.Title msgid "Formatting failed" msgstr "" #: WarningMessage.FormattingFailed.Text -msgid "The formatting of the filesystems of the device failed - sorry!" +msgid "Formatting of at least one volume failed - sorry!" msgstr "" #: WarningMessage.DiskIsBusy.Title @@ -146,7 +190,7 @@ msgid "This disk is busy" msgstr "" #: WarningMessage.DiskIsBusy.Text -msgid "Please deactivate all containers of this disk before partitioning." +msgid "Please close all volumes of this disk before partitioning." msgstr "" #: WarningMessage.DiskIsBusy.Link.Text @@ -157,42 +201,6 @@ msgstr "" msgid "Invalid size" msgstr "" -#: WarningMessage.PartitionTooBig.Text -msgid "The container size you entered exceeded the available size of the disk." -msgstr "" - -#: WarningMessage.PartitionTooSmall.Text -msgid "The minimum size of a container is 10 megabytes." -msgstr "" - -#: WarningMessage.PartitioningFailed.Link.Text -msgid "Show log messages" -msgstr "" - -#: Help.Partitioning -msgid "You can split every disk into one ore more parts, which are called 'partitions'. This is useful if you want to seperate your data or if you want to encrypt only a part of your disk." -msgstr "" - -#: Help.SelectDevice -msgid "Choose one of the disks given in the list. Be aware that you lose all data on the partitions of this disk if you confirm this action later." -msgstr "" - -#: Help.PartMode -msgid "You may choose between 'automatic' and 'manual' partitioning. Automatic partitioning creates only one partition for the whole disk. With manual partition you can split the disk into multiple parts of different size." -msgstr "" - -#: Help.PartitionList -msgid "Choose a size for your partitions and add it to the list by clicking on the corresponding button. You may remove any partition later. Nothing will get written to your disk until you click on the 'write partition table' button. Be very careful as you destroy all data on this disk." -msgstr "" - -#: WarningMessage.FormattingFailed.Text -msgid "Formatting of at least one volume failed - sorry!" -msgstr "" - -#: WarningMessage.DiskIsBusy.Text -msgid "Please close all volumes of this disk before partitioning." -msgstr "" - #: WarningMessage.PartitionTooBig.Text msgid "The volume size you entered exceeded the available size of the disk." msgstr "" @@ -200,15 +208,3 @@ msgstr "" #: WarningMessage.PartitionTooSmall.Text msgid "The minimum size of a volume is 10 megabytes." msgstr "" - -#: Text.Confirm -msgid "Yes, I know what I am doing!" -msgstr "" - -#: WarningMessage.FormatNotConfirmed.Title -msgid "Confirmation missing" -msgstr "" - -#: WarningMessage.FormatNotConfirmed.Text -msgid "You did not confirm this action by activating the checkbox." -msgstr "" diff --git a/plugins/partition/intl/sv/cryptobox-server-feature-partition.po b/plugins/partition/intl/sv/cryptobox-server-feature-partition.po index 9bcde16..17d8559 100644 --- a/plugins/partition/intl/sv/cryptobox-server-feature-partition.po +++ b/plugins/partition/intl/sv/cryptobox-server-feature-partition.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:49+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -49,6 +49,10 @@ msgstr "" msgid "Cancel" msgstr "" +#: Text.Confirm +msgid "Yes, I know what I am doing!" +msgstr "" + #: Text.FS.Type msgid "Filesystem type" msgstr "" @@ -94,7 +98,35 @@ msgid "Automatically creating a configuration partition." msgstr "" #: Text.RemovalContainers -msgid "These disks will be destroyed, if you continue" +msgid "These volumes will be removed:" +msgstr "" + +#: Text.SpecifyPartitions +msgid "Add partitions" +msgstr "" + +#: Help.Partitioning +msgid "You can split every disk into one ore more parts, which are called 'partitions'. This is useful if you want to seperate your data or if you want to encrypt only a part of your disk." +msgstr "" + +#: Help.SelectDevice +msgid "Choose one of the disks given in the list. Be aware that you lose all data on the partitions of this disk." +msgstr "" + +#: Help.PartMode +msgid "You may choose between 'automatic' and 'manual' partitioning. Automatic partitioning creates only one partition for the whole disk. With manual partition you can split the disk into multiple parts of different size." +msgstr "" + +#: Help.ConfigPartition +msgid "This CryptoBox is configured to store its runtime settings on a separate disk partition. It will be created automatically if necessary. This reduces the available size of the disk by 5 megabyte." +msgstr "" + +#: Help.RemoveExistingContainers +msgid "Whenever you change the partition table of a disk, you will loose all volumes that were previously defined inside of it." +msgstr "" + +#: Help.PartitionList +msgid "Choose a size for your partitions and add it to the list by clicking on 'Add'. Nothing will get written to your disk until you click on 'Write new partition table' below. Be very careful: you will erase all data on this disk." msgstr "" #: AdviceMessage.DeviceDataIsLost.Text @@ -117,6 +149,14 @@ msgstr "" msgid "Automatic initialization was finished successfully." msgstr "" +#: WarningMessage.FormatNotConfirmed.Title +msgid "Confirmation missing" +msgstr "" + +#: WarningMessage.FormatNotConfirmed.Text +msgid "You did not confirm this action by activating the checkbox." +msgstr "" + #: WarningMessage.NoDisksAvailable.Title msgid "No disks found" msgstr "" @@ -133,12 +173,16 @@ msgstr "" msgid "The partitioning of the device failed for some reason - sorry!" msgstr "" +#: WarningMessage.PartitioningFailed.Link.Text +msgid "Show log messages" +msgstr "" + #: WarningMessage.FormattingFailed.Title msgid "Formatting failed" msgstr "" #: WarningMessage.FormattingFailed.Text -msgid "The formatting of the filesystems of the device failed - sorry!" +msgid "Formatting of at least one volume failed - sorry!" msgstr "" #: WarningMessage.DiskIsBusy.Title @@ -146,7 +190,7 @@ msgid "This disk is busy" msgstr "" #: WarningMessage.DiskIsBusy.Text -msgid "Please deactivate all containers of this disk before partitioning." +msgid "Please close all volumes of this disk before partitioning." msgstr "" #: WarningMessage.DiskIsBusy.Link.Text @@ -157,42 +201,6 @@ msgstr "" msgid "Invalid size" msgstr "" -#: WarningMessage.PartitionTooBig.Text -msgid "The container size you entered exceeded the available size of the disk." -msgstr "" - -#: WarningMessage.PartitionTooSmall.Text -msgid "The minimum size of a container is 10 megabytes." -msgstr "" - -#: WarningMessage.PartitioningFailed.Link.Text -msgid "Show log messages" -msgstr "" - -#: Help.Partitioning -msgid "You can split every disk into one ore more parts, which are called 'partitions'. This is useful if you want to seperate your data or if you want to encrypt only a part of your disk." -msgstr "" - -#: Help.SelectDevice -msgid "Choose one of the disks given in the list. Be aware that you lose all data on the partitions of this disk if you confirm this action later." -msgstr "" - -#: Help.PartMode -msgid "You may choose between 'automatic' and 'manual' partitioning. Automatic partitioning creates only one partition for the whole disk. With manual partition you can split the disk into multiple parts of different size." -msgstr "" - -#: Help.PartitionList -msgid "Choose a size for your partitions and add it to the list by clicking on the corresponding button. You may remove any partition later. Nothing will get written to your disk until you click on the 'write partition table' button. Be very careful as you destroy all data on this disk." -msgstr "" - -#: WarningMessage.FormattingFailed.Text -msgid "Formatting of at least one volume failed - sorry!" -msgstr "" - -#: WarningMessage.DiskIsBusy.Text -msgid "Please close all volumes of this disk before partitioning." -msgstr "" - #: WarningMessage.PartitionTooBig.Text msgid "The volume size you entered exceeded the available size of the disk." msgstr "" @@ -200,15 +208,3 @@ msgstr "" #: WarningMessage.PartitionTooSmall.Text msgid "The minimum size of a volume is 10 megabytes." msgstr "" - -#: Text.Confirm -msgid "Yes, I know what I am doing!" -msgstr "" - -#: WarningMessage.FormatNotConfirmed.Title -msgid "Confirmation missing" -msgstr "" - -#: WarningMessage.FormatNotConfirmed.Text -msgid "You did not confirm this action by activating the checkbox." -msgstr "" diff --git a/plugins/partition/language.hdf b/plugins/partition/language.hdf index ac25d42..797b0cc 100644 --- a/plugins/partition/language.hdf +++ b/plugins/partition/language.hdf @@ -27,15 +27,18 @@ Text { SelectDevice = Choose a disk for partitioning ProgressInfo = Progress of formatting: CreateConfigPartition = Automatically creating a configuration partition. - RemovalContainers = These disks will be destroyed, if you continue + RemovalContainers = These volumes will be removed: + SpecifyPartitions = Add partitions } Help { Partitioning = You can split every disk into one ore more parts, which are called 'partitions'. This is useful if you want to seperate your data or if you want to encrypt only a part of your disk. - SelectDevice = Choose one of the disks given in the list. Be aware that you lose all data on the partitions of this disk if you confirm this action later. + SelectDevice = Choose one of the disks given in the list. Be aware that you lose all data on the partitions of this disk. PartMode = You may choose between 'automatic' and 'manual' partitioning. Automatic partitioning creates only one partition for the whole disk. With manual partition you can split the disk into multiple parts of different size. - PartitionList = Choose a size for your partitions and add it to the list by clicking on the corresponding button. You may remove any partition later. Nothing will get written to your disk until you click on the 'write partition table' button. Be very careful as you destroy all data on this disk. + ConfigPartition = This CryptoBox is configured to store its runtime settings on a separate disk partition. It will be created automatically if necessary. This reduces the available size of the disk by 5 megabyte. + RemoveExistingContainers = Whenever you change the partition table of a disk, you will loose all volumes that were previously defined inside of it. + PartitionList = Choose a size for your partitions and add it to the list by clicking on 'Add'. Nothing will get written to your disk until you click on 'Write new partition table' below. Be very careful: you will erase all data on this disk. } diff --git a/plugins/partition/partition.py b/plugins/partition/partition.py index b4e23ec..cb312dd 100644 --- a/plugins/partition/partition.py +++ b/plugins/partition/partition.py @@ -26,7 +26,7 @@ __revision__ = "$Id" import subprocess import os import logging -import cryptobox.core.tools as cbxTools +import cryptobox.core.tools as cbox_tools import cryptobox.plugins.base from cryptobox.core.exceptions import * @@ -53,41 +53,40 @@ class partition(cryptobox.plugins.base.CryptoBoxPlugin): def do_action(self, **args): """Show the partitioning form and execute the requested action. """ + import re ## load default hdf values self.__prepare_dataset() ## retrieve some values from 'args' - defaults are empty - self.device = self.__get_selected_device(args) + self.blockdevice = self.__get_selected_device(args) self.with_config_partition = self.__is_with_config_partition() - self.cbox.log.debug("partition plugin: selected device=%s" % str(self.device)) - self.device_size = self.__get_available_device_size(self.device) - try: - step = args["step"] - del args["step"] - except KeyError: - step = "select_device" - try: - ## this way of selecting the easy setup is necessary: - ## see select_device.cs for details (button values for ie) - if args["easy"]: - step = "easy" - except KeyError: - pass + self.cbox.log.debug( + "partition plugin: selected device=%s" % str(self.blockdevice)) + self.blockdevice_size = self.__get_available_device_size(self.blockdevice) ## no (or invalid) device was supplied - if not self.device: - step = "select_device" + if not self.blockdevice: + return self.__action_select_device() ## no confirm setting? if not args.has_key("confirm") or (args["confirm"] != "1"): - if self.device: - self.hdf["Data.Warning"] = "Plugins.partition.FormatNotConfirmed" + self.hdf["Data.Warning"] = "Plugins.partition.FormatNotConfirmed" return self.__action_select_device() - if step == "add_partition": - return self.__action_add_partition(args) - elif step == "del_partition": - return self.__action_del_partition(args) - elif step == "finish": - return self.__action_finish(args) - elif step == "easy": + elif args.has_key("easy"): return self.__action_easy_setup() + elif args.has_key("add_part"): + return self.__action_add_partition(args) + elif args.has_key("finish"): + return self.__action_finish(args) + elif args.has_key("cancel"): + return self.__action_select_device() + ## check if we should remove a partition + del_args = [ e for e in args.keys() if re.match(r"del_part_[\d]+$", e) ] + if len(del_args) == 1: + try: + num_part = int(del_args[0][9:]) + except ValueError: + self.cbox.log.warn( + "partition: invalid partition number to delete (%s)" % del_args[0]) + return self.__action_select_device() + return self.__action_del_partition(args, num_part) else: # for "select_device" and for invalid targets return self.__action_select_device() @@ -95,53 +94,53 @@ class partition(cryptobox.plugins.base.CryptoBoxPlugin): def get_status(self): """The status of this plugin is the selected device and some information. """ - return "%s / %s / %s" % (self.device, self.device_size, + return "%s / %s / %s" % (self.blockdevice, self.blockdevice_size, self.with_config_partition) def __prepare_dataset(self): """Set some hdf values. """ - self.hdf[self.hdf_prefix + "StyleSheetFile"] = \ + self.hdf["Data.AdditionalStylesheets.%s" % self.get_name()] = \ os.path.join(self.plugin_dir, "partition.css") + self.hdf[self.hdf_prefix + "PluginDir"] = self.plugin_dir def __get_selected_device(self, args): """Check the selected device (valid, not busy, ...). """ try: - device = args["block_device"] + blockdevice = args["block_device"] except KeyError: return None - if not self.__is_device_valid(device): + if not self.__is_device_valid(blockdevice): return None - if self.__is_device_busy(device): + if self.__is_device_busy(blockdevice): self.hdf["Data.Warning"] = "Plugins.partition.DiskIsBusy" return None - return device + return blockdevice - def __is_device_valid(self, device): + def __is_device_valid(self, blockdevice): """Check if the device is valid and allowed. """ - if not device: + if not blockdevice: return False - if not self.cbox.is_device_allowed(device): + if not self.cbox.is_device_allowed(blockdevice): return False - if not device in cbxTools.get_parent_blockdevices(): + if not blockdevice in cbox_tools.get_parent_blockdevices(): return False return True - def __is_device_busy(self, device): + def __is_device_busy(self, blockdevice): """check if the device (or one of its partitions) is mounted """ - # the config partition is ignored, as it will get unmounted if necessary - import re + ## the config partition is ignored, as it will get unmounted if necessary for cont in self.cbox.get_container_list(): - if re.match(device + "\d*$", cont.get_device()): - if cont.is_mounted(): - return True + if cbox_tools.is_part_of_blockdevice(blockdevice, cont.get_device()) \ + and cont.is_mounted(): + return True return False @@ -149,13 +148,13 @@ class partition(cryptobox.plugins.base.CryptoBoxPlugin): """Show a form to select the device for partitioning. """ block_devices = [e - for e in cbxTools.get_parent_blockdevices() + for e in cbox_tools.get_parent_blockdevices() if self.cbox.is_device_allowed(e)] counter = 0 for dev in block_devices: self.hdf[self.hdf_prefix + "BlockDevices.%d.name" % counter] = dev self.hdf[self.hdf_prefix + "BlockDevices.%d.size" % counter] = \ - cbxTools.get_blockdevice_size_humanly(dev) + cbox_tools.get_blockdevice_size_humanly(dev) self.cbox.log.debug("found a suitable block device: %s" % dev) counter += 1 if self.with_config_partition: @@ -169,28 +168,22 @@ class partition(cryptobox.plugins.base.CryptoBoxPlugin): def __action_add_partition(self, args): """Add a selected partition to the currently proposed partition table. """ - self.hdf[self.hdf_prefix + "Device"] = self.device - self.hdf[self.hdf_prefix + "Device.Size"] = self.device_size + self.hdf[self.hdf_prefix + "Device"] = self.blockdevice + self.hdf[self.hdf_prefix + "Device.Size"] = self.blockdevice_size parts = self.__get_partitions_from_args(args) self.__set_partition_data(parts) return "set_partitions" - def __action_del_partition(self, args): + def __action_del_partition(self, args, part_num): """Remove a partition from the proposed partition table. """ - try: - part_num = int(args["del_num"]) - except (TypeError,KeyError): - return self.__action_add_partition(args) - self.hdf[self.hdf_prefix + "Device"] = self.device - self.hdf[self.hdf_prefix + "Device.Size"] = self.device_size + self.hdf[self.hdf_prefix + "Device"] = self.blockdevice + self.hdf[self.hdf_prefix + "Device.Size"] = self.blockdevice_size parts = self.__get_partitions_from_args(args) ## valid partition number to be deleted? if part_num < len(parts): del parts[part_num] - else: - return self.__action_add_partition(args) self.__set_partition_data(parts) return "set_partitions" @@ -201,13 +194,13 @@ class partition(cryptobox.plugins.base.CryptoBoxPlugin): parts = self.__get_partitions_from_args(args) if parts: self.__set_partition_data(parts) - if cbxTools.is_part_of_blockdevice(self.device, + if cbox_tools.is_part_of_blockdevice(self.blockdevice, self.cbox.prefs.get_active_partition()): self.cbox.prefs.umount_partition() if not self.__run_fdisk(parts): self.hdf["Data.Warning"] = "Plugins.partition.PartitioningFailed" self.cbox.log.warn( - "partition: failed to partition device: %s" % self.device) + "partition: failed to partition device: %s" % self.blockdevice) return self.__action_add_partition(args) else: ## tricky problem: if the device was partitioned, then a created config @@ -255,9 +248,9 @@ class partition(cryptobox.plugins.base.CryptoBoxPlugin): """ import types ## we do not have to take special care for a possible config partition - parts = [ { "size": self.device_size, "type": "windows" } ] + parts = [ { "size": self.blockdevice_size, "type": "windows" } ] ## umount partition if necessary - if cbxTools.is_part_of_blockdevice(self.device, + if cbox_tools.is_part_of_blockdevice(self.blockdevice, self.cbox.prefs.get_active_partition()): self.cbox.prefs.umount_partition() ## partition it @@ -289,7 +282,7 @@ class partition(cryptobox.plugins.base.CryptoBoxPlugin): def __set_partition_data(self, parts): """Set some hdf values for the currently proposed partition table. """ - avail_size = self.device_size + avail_size = self.blockdevice_size i = 0 for part in parts: self.cbox.log.debug(part) @@ -304,12 +297,10 @@ class partition(cryptobox.plugins.base.CryptoBoxPlugin): self.hdf[self.hdf_prefix + "Types.%s" % ptype] = ptype ## store the currently existing partitions of the choosen block device current_containers = [ e for e in self.cbox.get_container_list() - if cbxTools.is_part_of_blockdevice(self.device, e.get_device()) ] + if cbox_tools.is_part_of_blockdevice(self.blockdevice, e.get_device()) ] for (index, cont) in enumerate(current_containers): - self.hdf[self.hdf_prefix + "ExistingContainers.%d.name" % index] = \ - cont.get_name() - self.hdf[self.hdf_prefix + "ExistingContainers.%d.size" % index] = \ - cbxTools.get_blockdevice_size_humanly(cont.get_device()) + self.hdf[self.hdf_prefix + "ExistingContainers.%d" % index] = \ + cont.get_device() def __get_partitions_from_args(self, args): @@ -317,11 +308,15 @@ class partition(cryptobox.plugins.base.CryptoBoxPlugin): """ parts = [] done = False - avail_size = self.device_size + avail_size = self.blockdevice_size i = -1 while not done: i += 1 try: + ## skip every unconfirmed (probably the last) partition if we should not add it + if args.has_key("part%d_unconfirmed" % i) and \ + not args.has_key("add_part"): + continue size = int(args["part%d_size" % i]) part_type = args["part%d_type" % i] if int(size) > avail_size: @@ -345,7 +340,7 @@ class partition(cryptobox.plugins.base.CryptoBoxPlugin): """calculate the available size (MB) of the device also consider a (possible) configuration partition """ - device_size = cbxTools.get_blockdevice_size(device) + device_size = cbox_tools.get_blockdevice_size(device) if device_size < 0: return 0 if self.with_config_partition: @@ -362,7 +357,7 @@ class partition(cryptobox.plugins.base.CryptoBoxPlugin): if not active: return True ## check if the active one is part of the current device - return cbxTools.is_part_of_blockdevice(self.device, active) + return cbox_tools.is_part_of_blockdevice(self.blockdevice, active) return False @@ -370,7 +365,7 @@ class partition(cryptobox.plugins.base.CryptoBoxPlugin): """Call fdisk to partition the device. """ ## check if the device is completely filled (to avoid some empty last blocks) - avail_size = self.device_size + avail_size = self.blockdevice_size for one_part in parts: avail_size -= one_part["size"] self.cbox.log.debug("remaining size: %d" % avail_size) @@ -386,7 +381,7 @@ class partition(cryptobox.plugins.base.CryptoBoxPlugin): "plugin", os.path.join(self.plugin_dir, "root_action.py"), "partition", - self.device]) + self.blockdevice]) for line in self.__get_sfdisk_layout(parts, is_filled): proc.stdin.write(line + "\n") #TODO: if running inside of an uml, then sfdisk hangs at "nanosleep({3,0})" @@ -439,14 +434,14 @@ class partition(cryptobox.plugins.base.CryptoBoxPlugin): part_num = 1 ## maybe a config partition? if self.with_config_partition: - dev_name = self.device + str(part_num) + dev_name = self.blockdevice + str(part_num) self.cbox.log.info("formatting config partition (%s)" % dev_name) if self.__format_one_partition(dev_name, CONFIGPARTITION["fs"]): self.__set_label_of_partition(dev_name, self.cbox.prefs["Main"]["ConfigVolumeLabel"]) part_num += 1 ## the first data partition - dev_name = self.device + str(part_num) + dev_name = self.blockdevice + str(part_num) part_type = PARTTYPES[parts[0]["type"]][1] self.cbox.log.info("formatting partition (%s) as '%s'" % (dev_name, part_type)) yield self.__format_one_partition(dev_name, part_type) @@ -454,7 +449,7 @@ class partition(cryptobox.plugins.base.CryptoBoxPlugin): ## other data partitions part_num = 5 while parts: - dev_name = self.device + str(part_num) + dev_name = self.blockdevice + str(part_num) part_type = PARTTYPES[parts[0]["type"]][1] self.cbox.log.info("formatting partition (%s) as '%s'" % \ (dev_name, part_type)) diff --git a/plugins/partition/select_device.cs b/plugins/partition/select_device.cs index 0d1a41a..d0e466e 100644 --- a/plugins/partition/select_device.cs +++ b/plugins/partition/select_device.cs @@ -1,7 +1,5 @@ - -

@@ -24,8 +22,6 @@

- -

@@ -35,8 +31,8 @@ - - + + diff --git a/plugins/partition/set_partitions.cs b/plugins/partition/set_partitions.cs index 05f328f..c452b32 100644 --- a/plugins/partition/set_partitions.cs +++ b/plugins/partition/set_partitions.cs @@ -1,7 +1,5 @@ - - 0) || (subcount(Data.Plugins.partition.Parts) > 0) ?> @@ -9,73 +7,91 @@ + +

+ + -
- - - - - - - - - - - - - - -

+
+ - - 0 ?> -
- - - - - - - - - - +
- - - - - - -
- -
+ + + + + + + + + + + + + + + + + + 0 ?> + + + + + + + + +
+ +
+ + +
+
+ + + +

- - +
-

+ + +
+ + + +
+ 0 ?> + + +
- -

-

- - - - -
: -
    - -
  • ()
  • - -
+ + +
+
diff --git a/plugins/plugin-interface.txt b/plugins/plugin-interface.txt index b3ce245..b02c2ce 100644 --- a/plugins/plugin-interface.txt +++ b/plugins/plugin-interface.txt @@ -1,8 +1,9 @@ The following directory structure is required: - python code: plugins/PLUGINNAME/PLUGINNAME.py (all lower case is recommended) - - language files: plugins/PLUGINNAME/lang/(en|de|??).hdf + - language file: plugins/PLUGINNAME/language.hdf - clearsilver templates: plugins/PLUGINNAME/*.cs - icon (128x128px recommended): plugins/PLUGINNAME/plugin_icon.png + - css stylesheets (optional): plugins/PLUGINNAME/PLUGINNAME.css Python code interface: @@ -52,7 +53,7 @@ Python code interface: Language file structure: - the content of the language file will be added to the hdf dataset below "Lang.Plugins.PLUGINNAME" (this avoids namespace conflicts) - - the following values _must_ be defined: + - the following top level settings _must_ be defined: Name (a short description) Link (the visible text for links to this plugin) - all warnings, hints and success messages should be stored below WarningMessage.??? @@ -71,4 +72,3 @@ Clearsilver template: - links to the plugin (e.g. in form headers) could look like the following: - diff --git a/plugins/plugin_manager/intl/cryptobox-server-feature-plugin_manager.pot b/plugins/plugin_manager/intl/cryptobox-server-feature-plugin_manager.pot index 267caff..c851dba 100644 --- a/plugins/plugin_manager/intl/cryptobox-server-feature-plugin_manager.pot +++ b/plugins/plugin_manager/intl/cryptobox-server-feature-plugin_manager.pot @@ -1,25 +1,15 @@ -msgid "" -msgstr "" -"Project-Id-Version: CryptoBox-Server 0.3\n" -"Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: sense.lab \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: utf-8\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Translate Toolkit 0.10.1\n" - #: Name -msgid "Plugin Manager" +msgid "Plugin manager" msgstr "" #: Link msgid "Manage plugins" msgstr "" +#: Title.PluginManager +msgid "Plugin Manager" +msgstr "" + #: Title.VolumePlugins msgid "Volume plugins" msgstr "" @@ -72,10 +62,6 @@ msgstr "" msgid "Where visible?" msgstr "" -#: Name -msgid "Plugin manager" -msgstr "" - #: Help.PluginManager msgid "All features of the CryptoBox are provided by plugins. This makes it possible to extend the CryptoBox easily. Here you may disable some of the available plugins to prevent unwanted user actions. Alternatively you can demand administrative privileges (see 'User manager') to protect dangerous actions from random access. The rightmost colum 'order' can be used to change the order of appearance of the plugins." msgstr "" diff --git a/plugins/plugin_manager/intl/cs/cryptobox-server-feature-plugin_manager.po b/plugins/plugin_manager/intl/cs/cryptobox-server-feature-plugin_manager.po index bbcf062..dc5e702 100644 --- a/plugins/plugin_manager/intl/cs/cryptobox-server-feature-plugin_manager.po +++ b/plugins/plugin_manager/intl/cs/cryptobox-server-feature-plugin_manager.po @@ -1,9 +1,8 @@ -#, fuzzy msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:38+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,13 +13,17 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "Plugin Manager" +msgid "Plugin manager" msgstr "" #: Link msgid "Manage plugins" msgstr "" +#: Title.PluginManager +msgid "Plugin Manager" +msgstr "" + #: Title.VolumePlugins msgid "Volume plugins" msgstr "" @@ -73,10 +76,6 @@ msgstr "" msgid "Where visible?" msgstr "" -#: Name -msgid "Plugin manager" -msgstr "" - #: Help.PluginManager msgid "All features of the CryptoBox are provided by plugins. This makes it possible to extend the CryptoBox easily. Here you may disable some of the available plugins to prevent unwanted user actions. Alternatively you can demand administrative privileges (see 'User manager') to protect dangerous actions from random access. The rightmost colum 'order' can be used to change the order of appearance of the plugins." msgstr "" diff --git a/plugins/plugin_manager/intl/da/cryptobox-server-feature-plugin_manager.po b/plugins/plugin_manager/intl/da/cryptobox-server-feature-plugin_manager.po index bbcf062..dc5e702 100644 --- a/plugins/plugin_manager/intl/da/cryptobox-server-feature-plugin_manager.po +++ b/plugins/plugin_manager/intl/da/cryptobox-server-feature-plugin_manager.po @@ -1,9 +1,8 @@ -#, fuzzy msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:38+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,13 +13,17 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "Plugin Manager" +msgid "Plugin manager" msgstr "" #: Link msgid "Manage plugins" msgstr "" +#: Title.PluginManager +msgid "Plugin Manager" +msgstr "" + #: Title.VolumePlugins msgid "Volume plugins" msgstr "" @@ -73,10 +76,6 @@ msgstr "" msgid "Where visible?" msgstr "" -#: Name -msgid "Plugin manager" -msgstr "" - #: Help.PluginManager msgid "All features of the CryptoBox are provided by plugins. This makes it possible to extend the CryptoBox easily. Here you may disable some of the available plugins to prevent unwanted user actions. Alternatively you can demand administrative privileges (see 'User manager') to protect dangerous actions from random access. The rightmost colum 'order' can be used to change the order of appearance of the plugins." msgstr "" diff --git a/plugins/plugin_manager/intl/de/cryptobox-server-feature-plugin_manager.po b/plugins/plugin_manager/intl/de/cryptobox-server-feature-plugin_manager.po index bbcf062..76fbf08 100644 --- a/plugins/plugin_manager/intl/de/cryptobox-server-feature-plugin_manager.po +++ b/plugins/plugin_manager/intl/de/cryptobox-server-feature-plugin_manager.po @@ -1,90 +1,89 @@ -#, fuzzy msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"POT-Creation-Date: 2006-12-18 11:38+0100\n" +"PO-Revision-Date: 2006-12-18 11:37+0100\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Translate Toolkit 0.10.1\n" - -#: Name -msgid "Plugin Manager" -msgstr "" - -#: Link -msgid "Manage plugins" -msgstr "" - -#: Title.VolumePlugins -msgid "Volume plugins" -msgstr "" - -#: Title.SystemPlugins -msgid "System plugins" -msgstr "" - -#: Button.SaveSettings -msgid "Save settings" -msgstr "" - -#: Button.Up -msgid "move up" -msgstr "" - -#: Button.Down -msgid "move down" -msgstr "" - -#: Text.PluginName -msgid "Plugin" -msgstr "" - -#: Text.PluginRank -msgid "Order" -msgstr "" - -#: Text.RequestsAuth -msgid "Requires admin?" -msgstr "" - -#: Text.InMenu -msgid "Main menu" -msgstr "" - -#: Text.InPreferences -msgid "Preferences" -msgstr "" - -#: Text.InVolumeRegister -msgid "Register" -msgstr "" - -#: Text.InVolumeProperties -msgid "Properties" -msgstr "" - -#: Text.WhereVisible -msgid "Where visible?" -msgstr "" +"X-Generator: Pootle 0.10.1\n" #: Name msgid "Plugin manager" -msgstr "" +msgstr "Erweiterungsverwaltung" + +#: Link +msgid "Manage plugins" +msgstr "Erweiterungen verwalten" + +#: Title.PluginManager +msgid "Plugin Manager" +msgstr "Erweiterungsverwaltung" + +#: Title.VolumePlugins +msgid "Volume plugins" +msgstr "Datenträger-Erweiterungen" + +#: Title.SystemPlugins +msgid "System plugins" +msgstr "System-Erweiterungen" + +#: Button.SaveSettings +msgid "Save settings" +msgstr "Einstellungen speichern" + +#: Button.Up +msgid "move up" +msgstr "hoch" + +#: Button.Down +msgid "move down" +msgstr "runter" + +#: Text.PluginName +msgid "Plugin" +msgstr "Erweiterung" + +#: Text.PluginRank +msgid "Order" +msgstr "Reihenfolge" + +#: Text.RequestsAuth +msgid "Requires admin?" +msgstr "Administrator erforderlich?" + +#: Text.InMenu +msgid "Main menu" +msgstr "Hauptmenü" + +#: Text.InPreferences +msgid "Preferences" +msgstr "Einstellungen" + +#: Text.InVolumeRegister +msgid "Register" +msgstr "Register" + +#: Text.InVolumeProperties +msgid "Properties" +msgstr "Eigenschaften" + +#: Text.WhereVisible +msgid "Where visible?" +msgstr "Wo sichtbar?" #: Help.PluginManager msgid "All features of the CryptoBox are provided by plugins. This makes it possible to extend the CryptoBox easily. Here you may disable some of the available plugins to prevent unwanted user actions. Alternatively you can demand administrative privileges (see 'User manager') to protect dangerous actions from random access. The rightmost colum 'order' can be used to change the order of appearance of the plugins." -msgstr "" +msgstr "Alle Fähigkeiten der CryptoBox werden durch Erweiterungen bereitgestellt. Dadurch wird es möglich, die CryptoBox auf einfache Art und Weise zu erweitern. Hier kannst du Erweiterungen abschalten, um sie vor ungewollter Nutzung zu schützen. Außerdem können ausgewählte Erweiterungen nur für AdministratorInnnen freigeschaltet werden, um unauthorisierten Zugriff auf gefährliche Aktionen zu verhindern. In der rechten Spalte \"Reihenfolge\" kannst du die Sortierung der Erweiterungen verändern." #: Help.VolumePlugins msgid "Volume plugins are used to manipulate volumes in any way. The plugin 'Volume properties' can be used as a container for other plugins to increase the clearness of the interface. 'Register' is the tab-based main interface for volume management." -msgstr "" +msgstr "Datenträger-Erweiterungen werden zur Bearbeitung der Datenträger in jeglicher Hinsicht verwendet. \"Eigenschaften\" kann als Behälter für andere Erweiterungen benutzt werden, um die Oberfläche zu vereinfachen. Das \"Register\" ist das tab-basierte Menü für die Verwaltung eines Datenträgers." #: Help.SystemPlugins msgid "System plugins can change various aspects of the CryptoBox. They may be listed in the main navigation bar (the leftmost part of every page) and/or in the 'System preferences' container. You should never disable the 'Plugin manager'." -msgstr "" +msgstr "System-Erweiterungen können verschiedenste Aspekte der CryptoBox konfigurieren. Sie können im Hauptmenü (am linken Bildschirmrand) oder in den \"Einstellungen\" aufgelistet werden. Bitte achte darauf, nicht die \"Erweiterungsverwaltung\" abzuschalten, sonst wirst du keine Änderungen rückgängig machen können." diff --git a/plugins/plugin_manager/intl/en/cryptobox-server-feature-plugin_manager.po b/plugins/plugin_manager/intl/en/cryptobox-server-feature-plugin_manager.po index 827316f..8a3da75 100644 --- a/plugins/plugin_manager/intl/en/cryptobox-server-feature-plugin_manager.po +++ b/plugins/plugin_manager/intl/en/cryptobox-server-feature-plugin_manager.po @@ -1,14 +1,16 @@ -msgid "" -msgstr "" #: Name -msgid "Plugin Manager" -msgstr "Plugin Manager" +msgid "Plugin manager" +msgstr "Plugin manager" #: Link msgid "Manage plugins" msgstr "Manage plugins" +#: Title.PluginManager +msgid "Plugin Manager" +msgstr "Plugin Manager" + #: Title.VolumePlugins msgid "Volume plugins" msgstr "Volume plugins" @@ -61,46 +63,14 @@ msgstr "Properties" msgid "Where visible?" msgstr "Where visible?" -#: Name -msgid "Plugin manager" -msgstr "Plugin manager" - #: Help.PluginManager -msgid "" -"All features of the CryptoBox are provided by plugins. This makes it " -"possible to extend the CryptoBox easily. Here you may disable some of the " -"available plugins to prevent unwanted user actions. Alternatively you can " -"demand administrative privileges (see 'User manager') to protect dangerous " -"actions from random access. The rightmost colum 'order' can be used to " -"change the order of appearance of the plugins." -msgstr "" -"All features of the CryptoBox are provided by plugins. This makes it " -"possible to extend the CryptoBox easily. Here you may disable some of the " -"available plugins to prevent unwanted user actions. Alternatively you can " -"demand administrative privileges (see 'User manager') to protect dangerous " -"actions from random access. The rightmost colum 'order' can be used to " -"change the order of appearance of the plugins." +msgid "All features of the CryptoBox are provided by plugins. This makes it possible to extend the CryptoBox easily. Here you may disable some of the available plugins to prevent unwanted user actions. Alternatively you can demand administrative privileges (see 'User manager') to protect dangerous actions from random access. The rightmost colum 'order' can be used to change the order of appearance of the plugins." +msgstr "All features of the CryptoBox are provided by plugins. This makes it possible to extend the CryptoBox easily. Here you may disable some of the available plugins to prevent unwanted user actions. Alternatively you can demand administrative privileges (see 'User manager') to protect dangerous actions from random access. The rightmost colum 'order' can be used to change the order of appearance of the plugins." #: Help.VolumePlugins -msgid "" -"Volume plugins are used to manipulate volumes in any way. The plugin 'Volume " -"properties' can be used as a container for other plugins to increase the " -"clearness of the interface. 'Register' is the tab-based main interface for " -"volume management." -msgstr "" -"Volume plugins are used to manipulate volumes in any way. The plugin 'Volume " -"properties' can be used as a container for other plugins to increase the " -"clearness of the interface. 'Register' is the tab-based main interface for " -"volume management." +msgid "Volume plugins are used to manipulate volumes in any way. The plugin 'Volume properties' can be used as a container for other plugins to increase the clearness of the interface. 'Register' is the tab-based main interface for volume management." +msgstr "Volume plugins are used to manipulate volumes in any way. The plugin 'Volume properties' can be used as a container for other plugins to increase the clearness of the interface. 'Register' is the tab-based main interface for volume management." #: Help.SystemPlugins -msgid "" -"System plugins can change various aspects of the CryptoBox. They may be " -"listed in the main navigation bar (the leftmost part of every page) and/or " -"in the 'System preferences' container. You should never disable the 'Plugin " -"manager'." -msgstr "" -"System plugins can change various aspects of the CryptoBox. They may be " -"listed in the main navigation bar (the leftmost part of every page) and/or " -"in the 'System preferences' container. You should never disable the 'Plugin " -"manager'." +msgid "System plugins can change various aspects of the CryptoBox. They may be listed in the main navigation bar (the leftmost part of every page) and/or in the 'System preferences' container. You should never disable the 'Plugin manager'." +msgstr "System plugins can change various aspects of the CryptoBox. They may be listed in the main navigation bar (the leftmost part of every page) and/or in the 'System preferences' container. You should never disable the 'Plugin manager'." diff --git a/plugins/plugin_manager/intl/es/cryptobox-server-feature-plugin_manager.po b/plugins/plugin_manager/intl/es/cryptobox-server-feature-plugin_manager.po index bbcf062..dc5e702 100644 --- a/plugins/plugin_manager/intl/es/cryptobox-server-feature-plugin_manager.po +++ b/plugins/plugin_manager/intl/es/cryptobox-server-feature-plugin_manager.po @@ -1,9 +1,8 @@ -#, fuzzy msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:38+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,13 +13,17 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "Plugin Manager" +msgid "Plugin manager" msgstr "" #: Link msgid "Manage plugins" msgstr "" +#: Title.PluginManager +msgid "Plugin Manager" +msgstr "" + #: Title.VolumePlugins msgid "Volume plugins" msgstr "" @@ -73,10 +76,6 @@ msgstr "" msgid "Where visible?" msgstr "" -#: Name -msgid "Plugin manager" -msgstr "" - #: Help.PluginManager msgid "All features of the CryptoBox are provided by plugins. This makes it possible to extend the CryptoBox easily. Here you may disable some of the available plugins to prevent unwanted user actions. Alternatively you can demand administrative privileges (see 'User manager') to protect dangerous actions from random access. The rightmost colum 'order' can be used to change the order of appearance of the plugins." msgstr "" diff --git a/plugins/plugin_manager/intl/fi/cryptobox-server-feature-plugin_manager.po b/plugins/plugin_manager/intl/fi/cryptobox-server-feature-plugin_manager.po index bbcf062..dc5e702 100644 --- a/plugins/plugin_manager/intl/fi/cryptobox-server-feature-plugin_manager.po +++ b/plugins/plugin_manager/intl/fi/cryptobox-server-feature-plugin_manager.po @@ -1,9 +1,8 @@ -#, fuzzy msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:38+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,13 +13,17 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "Plugin Manager" +msgid "Plugin manager" msgstr "" #: Link msgid "Manage plugins" msgstr "" +#: Title.PluginManager +msgid "Plugin Manager" +msgstr "" + #: Title.VolumePlugins msgid "Volume plugins" msgstr "" @@ -73,10 +76,6 @@ msgstr "" msgid "Where visible?" msgstr "" -#: Name -msgid "Plugin manager" -msgstr "" - #: Help.PluginManager msgid "All features of the CryptoBox are provided by plugins. This makes it possible to extend the CryptoBox easily. Here you may disable some of the available plugins to prevent unwanted user actions. Alternatively you can demand administrative privileges (see 'User manager') to protect dangerous actions from random access. The rightmost colum 'order' can be used to change the order of appearance of the plugins." msgstr "" diff --git a/plugins/plugin_manager/intl/fr/cryptobox-server-feature-plugin_manager.po b/plugins/plugin_manager/intl/fr/cryptobox-server-feature-plugin_manager.po index bbcf062..dc5e702 100644 --- a/plugins/plugin_manager/intl/fr/cryptobox-server-feature-plugin_manager.po +++ b/plugins/plugin_manager/intl/fr/cryptobox-server-feature-plugin_manager.po @@ -1,9 +1,8 @@ -#, fuzzy msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:38+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,13 +13,17 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "Plugin Manager" +msgid "Plugin manager" msgstr "" #: Link msgid "Manage plugins" msgstr "" +#: Title.PluginManager +msgid "Plugin Manager" +msgstr "" + #: Title.VolumePlugins msgid "Volume plugins" msgstr "" @@ -73,10 +76,6 @@ msgstr "" msgid "Where visible?" msgstr "" -#: Name -msgid "Plugin manager" -msgstr "" - #: Help.PluginManager msgid "All features of the CryptoBox are provided by plugins. This makes it possible to extend the CryptoBox easily. Here you may disable some of the available plugins to prevent unwanted user actions. Alternatively you can demand administrative privileges (see 'User manager') to protect dangerous actions from random access. The rightmost colum 'order' can be used to change the order of appearance of the plugins." msgstr "" diff --git a/plugins/plugin_manager/intl/hu/cryptobox-server-feature-plugin_manager.po b/plugins/plugin_manager/intl/hu/cryptobox-server-feature-plugin_manager.po index bbcf062..dc5e702 100644 --- a/plugins/plugin_manager/intl/hu/cryptobox-server-feature-plugin_manager.po +++ b/plugins/plugin_manager/intl/hu/cryptobox-server-feature-plugin_manager.po @@ -1,9 +1,8 @@ -#, fuzzy msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:38+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,13 +13,17 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "Plugin Manager" +msgid "Plugin manager" msgstr "" #: Link msgid "Manage plugins" msgstr "" +#: Title.PluginManager +msgid "Plugin Manager" +msgstr "" + #: Title.VolumePlugins msgid "Volume plugins" msgstr "" @@ -73,10 +76,6 @@ msgstr "" msgid "Where visible?" msgstr "" -#: Name -msgid "Plugin manager" -msgstr "" - #: Help.PluginManager msgid "All features of the CryptoBox are provided by plugins. This makes it possible to extend the CryptoBox easily. Here you may disable some of the available plugins to prevent unwanted user actions. Alternatively you can demand administrative privileges (see 'User manager') to protect dangerous actions from random access. The rightmost colum 'order' can be used to change the order of appearance of the plugins." msgstr "" diff --git a/plugins/plugin_manager/intl/it/cryptobox-server-feature-plugin_manager.po b/plugins/plugin_manager/intl/it/cryptobox-server-feature-plugin_manager.po index bbcf062..dc5e702 100644 --- a/plugins/plugin_manager/intl/it/cryptobox-server-feature-plugin_manager.po +++ b/plugins/plugin_manager/intl/it/cryptobox-server-feature-plugin_manager.po @@ -1,9 +1,8 @@ -#, fuzzy msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:38+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,13 +13,17 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "Plugin Manager" +msgid "Plugin manager" msgstr "" #: Link msgid "Manage plugins" msgstr "" +#: Title.PluginManager +msgid "Plugin Manager" +msgstr "" + #: Title.VolumePlugins msgid "Volume plugins" msgstr "" @@ -73,10 +76,6 @@ msgstr "" msgid "Where visible?" msgstr "" -#: Name -msgid "Plugin manager" -msgstr "" - #: Help.PluginManager msgid "All features of the CryptoBox are provided by plugins. This makes it possible to extend the CryptoBox easily. Here you may disable some of the available plugins to prevent unwanted user actions. Alternatively you can demand administrative privileges (see 'User manager') to protect dangerous actions from random access. The rightmost colum 'order' can be used to change the order of appearance of the plugins." msgstr "" diff --git a/plugins/plugin_manager/intl/ja/cryptobox-server-feature-plugin_manager.po b/plugins/plugin_manager/intl/ja/cryptobox-server-feature-plugin_manager.po index bbcf062..dc5e702 100644 --- a/plugins/plugin_manager/intl/ja/cryptobox-server-feature-plugin_manager.po +++ b/plugins/plugin_manager/intl/ja/cryptobox-server-feature-plugin_manager.po @@ -1,9 +1,8 @@ -#, fuzzy msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:38+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,13 +13,17 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "Plugin Manager" +msgid "Plugin manager" msgstr "" #: Link msgid "Manage plugins" msgstr "" +#: Title.PluginManager +msgid "Plugin Manager" +msgstr "" + #: Title.VolumePlugins msgid "Volume plugins" msgstr "" @@ -73,10 +76,6 @@ msgstr "" msgid "Where visible?" msgstr "" -#: Name -msgid "Plugin manager" -msgstr "" - #: Help.PluginManager msgid "All features of the CryptoBox are provided by plugins. This makes it possible to extend the CryptoBox easily. Here you may disable some of the available plugins to prevent unwanted user actions. Alternatively you can demand administrative privileges (see 'User manager') to protect dangerous actions from random access. The rightmost colum 'order' can be used to change the order of appearance of the plugins." msgstr "" diff --git a/plugins/plugin_manager/intl/nl/cryptobox-server-feature-plugin_manager.po b/plugins/plugin_manager/intl/nl/cryptobox-server-feature-plugin_manager.po index bbcf062..dc5e702 100644 --- a/plugins/plugin_manager/intl/nl/cryptobox-server-feature-plugin_manager.po +++ b/plugins/plugin_manager/intl/nl/cryptobox-server-feature-plugin_manager.po @@ -1,9 +1,8 @@ -#, fuzzy msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:38+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,13 +13,17 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "Plugin Manager" +msgid "Plugin manager" msgstr "" #: Link msgid "Manage plugins" msgstr "" +#: Title.PluginManager +msgid "Plugin Manager" +msgstr "" + #: Title.VolumePlugins msgid "Volume plugins" msgstr "" @@ -73,10 +76,6 @@ msgstr "" msgid "Where visible?" msgstr "" -#: Name -msgid "Plugin manager" -msgstr "" - #: Help.PluginManager msgid "All features of the CryptoBox are provided by plugins. This makes it possible to extend the CryptoBox easily. Here you may disable some of the available plugins to prevent unwanted user actions. Alternatively you can demand administrative privileges (see 'User manager') to protect dangerous actions from random access. The rightmost colum 'order' can be used to change the order of appearance of the plugins." msgstr "" diff --git a/plugins/plugin_manager/intl/pl/cryptobox-server-feature-plugin_manager.po b/plugins/plugin_manager/intl/pl/cryptobox-server-feature-plugin_manager.po index bbcf062..dc5e702 100644 --- a/plugins/plugin_manager/intl/pl/cryptobox-server-feature-plugin_manager.po +++ b/plugins/plugin_manager/intl/pl/cryptobox-server-feature-plugin_manager.po @@ -1,9 +1,8 @@ -#, fuzzy msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:38+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,13 +13,17 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "Plugin Manager" +msgid "Plugin manager" msgstr "" #: Link msgid "Manage plugins" msgstr "" +#: Title.PluginManager +msgid "Plugin Manager" +msgstr "" + #: Title.VolumePlugins msgid "Volume plugins" msgstr "" @@ -73,10 +76,6 @@ msgstr "" msgid "Where visible?" msgstr "" -#: Name -msgid "Plugin manager" -msgstr "" - #: Help.PluginManager msgid "All features of the CryptoBox are provided by plugins. This makes it possible to extend the CryptoBox easily. Here you may disable some of the available plugins to prevent unwanted user actions. Alternatively you can demand administrative privileges (see 'User manager') to protect dangerous actions from random access. The rightmost colum 'order' can be used to change the order of appearance of the plugins." msgstr "" diff --git a/plugins/plugin_manager/intl/pt/cryptobox-server-feature-plugin_manager.po b/plugins/plugin_manager/intl/pt/cryptobox-server-feature-plugin_manager.po index bbcf062..dc5e702 100644 --- a/plugins/plugin_manager/intl/pt/cryptobox-server-feature-plugin_manager.po +++ b/plugins/plugin_manager/intl/pt/cryptobox-server-feature-plugin_manager.po @@ -1,9 +1,8 @@ -#, fuzzy msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:38+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,13 +13,17 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "Plugin Manager" +msgid "Plugin manager" msgstr "" #: Link msgid "Manage plugins" msgstr "" +#: Title.PluginManager +msgid "Plugin Manager" +msgstr "" + #: Title.VolumePlugins msgid "Volume plugins" msgstr "" @@ -73,10 +76,6 @@ msgstr "" msgid "Where visible?" msgstr "" -#: Name -msgid "Plugin manager" -msgstr "" - #: Help.PluginManager msgid "All features of the CryptoBox are provided by plugins. This makes it possible to extend the CryptoBox easily. Here you may disable some of the available plugins to prevent unwanted user actions. Alternatively you can demand administrative privileges (see 'User manager') to protect dangerous actions from random access. The rightmost colum 'order' can be used to change the order of appearance of the plugins." msgstr "" diff --git a/plugins/plugin_manager/intl/ru/cryptobox-server-feature-plugin_manager.po b/plugins/plugin_manager/intl/ru/cryptobox-server-feature-plugin_manager.po index bbcf062..dc5e702 100644 --- a/plugins/plugin_manager/intl/ru/cryptobox-server-feature-plugin_manager.po +++ b/plugins/plugin_manager/intl/ru/cryptobox-server-feature-plugin_manager.po @@ -1,9 +1,8 @@ -#, fuzzy msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:38+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,13 +13,17 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "Plugin Manager" +msgid "Plugin manager" msgstr "" #: Link msgid "Manage plugins" msgstr "" +#: Title.PluginManager +msgid "Plugin Manager" +msgstr "" + #: Title.VolumePlugins msgid "Volume plugins" msgstr "" @@ -73,10 +76,6 @@ msgstr "" msgid "Where visible?" msgstr "" -#: Name -msgid "Plugin manager" -msgstr "" - #: Help.PluginManager msgid "All features of the CryptoBox are provided by plugins. This makes it possible to extend the CryptoBox easily. Here you may disable some of the available plugins to prevent unwanted user actions. Alternatively you can demand administrative privileges (see 'User manager') to protect dangerous actions from random access. The rightmost colum 'order' can be used to change the order of appearance of the plugins." msgstr "" diff --git a/plugins/plugin_manager/intl/sl/cryptobox-server-feature-plugin_manager.po b/plugins/plugin_manager/intl/sl/cryptobox-server-feature-plugin_manager.po index bbcf062..dc5e702 100644 --- a/plugins/plugin_manager/intl/sl/cryptobox-server-feature-plugin_manager.po +++ b/plugins/plugin_manager/intl/sl/cryptobox-server-feature-plugin_manager.po @@ -1,9 +1,8 @@ -#, fuzzy msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:38+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,13 +13,17 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "Plugin Manager" +msgid "Plugin manager" msgstr "" #: Link msgid "Manage plugins" msgstr "" +#: Title.PluginManager +msgid "Plugin Manager" +msgstr "" + #: Title.VolumePlugins msgid "Volume plugins" msgstr "" @@ -73,10 +76,6 @@ msgstr "" msgid "Where visible?" msgstr "" -#: Name -msgid "Plugin manager" -msgstr "" - #: Help.PluginManager msgid "All features of the CryptoBox are provided by plugins. This makes it possible to extend the CryptoBox easily. Here you may disable some of the available plugins to prevent unwanted user actions. Alternatively you can demand administrative privileges (see 'User manager') to protect dangerous actions from random access. The rightmost colum 'order' can be used to change the order of appearance of the plugins." msgstr "" diff --git a/plugins/plugin_manager/intl/sv/cryptobox-server-feature-plugin_manager.po b/plugins/plugin_manager/intl/sv/cryptobox-server-feature-plugin_manager.po index bbcf062..dc5e702 100644 --- a/plugins/plugin_manager/intl/sv/cryptobox-server-feature-plugin_manager.po +++ b/plugins/plugin_manager/intl/sv/cryptobox-server-feature-plugin_manager.po @@ -1,9 +1,8 @@ -#, fuzzy msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:38+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,13 +13,17 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "Plugin Manager" +msgid "Plugin manager" msgstr "" #: Link msgid "Manage plugins" msgstr "" +#: Title.PluginManager +msgid "Plugin Manager" +msgstr "" + #: Title.VolumePlugins msgid "Volume plugins" msgstr "" @@ -73,10 +76,6 @@ msgstr "" msgid "Where visible?" msgstr "" -#: Name -msgid "Plugin manager" -msgstr "" - #: Help.PluginManager msgid "All features of the CryptoBox are provided by plugins. This makes it possible to extend the CryptoBox easily. Here you may disable some of the available plugins to prevent unwanted user actions. Alternatively you can demand administrative privileges (see 'User manager') to protect dangerous actions from random access. The rightmost colum 'order' can be used to change the order of appearance of the plugins." msgstr "" diff --git a/plugins/plugin_manager/plugin_list.cs b/plugins/plugin_manager/plugin_list.cs index daea4f3..ccd5118 100644 --- a/plugins/plugin_manager/plugin_list.cs +++ b/plugins/plugin_manager/plugin_list.cs @@ -1,32 +1,5 @@ - - -

@@ -72,13 +45,13 @@ each:x = Settings.PluginList ?> &x=#volume_plugins">&x=#volume_plugins"><?cs
 				var:html_escape(Lang.Plugins.plugin_manager.Button.Down) ?>&x=&x=#volume_plugins" ><?cs
 				var:html_escape(Lang.Plugins.plugin_manager.Button.Up) ?> &x=#system_plugins">&x=#system_plugins"><?cs
 				var:html_escape(Lang.Plugins.plugin_manager.Button.Down) ?>&x=&x=#" ><?cs
 				var:html_escape(Lang.Plugins.plugin_manager.Button.Up) ?>=0 and r<=100: - setting["rank"] = r - except (KeyError, ValueError): - pass - setting["requestAuth"] = False - try: - if args[name + "_auth"]: - setting["requestAuth"] = True - except (KeyError, ValueError): - pass + if vis_type: + setting["visibility"].append(vis_type) + if args.has_key("%s_auth" % name): + setting["requestAuth"] = True + else: + setting["requestAuth"] = False self.cbox.prefs.plugin_conf[name] = setting diff --git a/plugins/shutdown/intl/cryptobox-server-feature-shutdown.pot b/plugins/shutdown/intl/cryptobox-server-feature-shutdown.pot index 52eaedd..0a7ee82 100644 --- a/plugins/shutdown/intl/cryptobox-server-feature-shutdown.pot +++ b/plugins/shutdown/intl/cryptobox-server-feature-shutdown.pot @@ -1,17 +1,3 @@ -msgid "" -msgstr "" -"Project-Id-Version: CryptoBox-Server 0.3\n" -"Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: sense.lab \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: utf-8\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Translate Toolkit 0.10.1\n" - #: Name msgid "Shutdown or reboot the computer" msgstr "" @@ -40,6 +26,10 @@ msgstr "" msgid "Reboot" msgstr "" +#: Help.Shutdown +msgid "You can poweroff or reboot the CryptoBox server. You should close all open files before." +msgstr "" + #: SuccessMessage.Shutdown.Title msgid "Shutting down the system" msgstr "" @@ -71,7 +61,3 @@ msgstr "" #: WarningMessage.RebootFailed.Text msgid "Reboot of the system failed for some reason - sorry!" msgstr "" - -#: Help.Shutdown -msgid "You can poweroff or reboot the CryptoBox server. You should close all open files before." -msgstr "" diff --git a/plugins/shutdown/intl/cs/cryptobox-server-feature-shutdown.po b/plugins/shutdown/intl/cs/cryptobox-server-feature-shutdown.po index 97f2d85..075444e 100644 --- a/plugins/shutdown/intl/cs/cryptobox-server-feature-shutdown.po +++ b/plugins/shutdown/intl/cs/cryptobox-server-feature-shutdown.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -41,6 +41,10 @@ msgstr "" msgid "Reboot" msgstr "" +#: Help.Shutdown +msgid "You can poweroff or reboot the CryptoBox server. You should close all open files before." +msgstr "" + #: SuccessMessage.Shutdown.Title msgid "Shutting down the system" msgstr "" @@ -72,7 +76,3 @@ msgstr "" #: WarningMessage.RebootFailed.Text msgid "Reboot of the system failed for some reason - sorry!" msgstr "" - -#: Help.Shutdown -msgid "You can poweroff or reboot the CryptoBox server. You should close all open files before." -msgstr "" diff --git a/plugins/shutdown/intl/da/cryptobox-server-feature-shutdown.po b/plugins/shutdown/intl/da/cryptobox-server-feature-shutdown.po index 97f2d85..075444e 100644 --- a/plugins/shutdown/intl/da/cryptobox-server-feature-shutdown.po +++ b/plugins/shutdown/intl/da/cryptobox-server-feature-shutdown.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -41,6 +41,10 @@ msgstr "" msgid "Reboot" msgstr "" +#: Help.Shutdown +msgid "You can poweroff or reboot the CryptoBox server. You should close all open files before." +msgstr "" + #: SuccessMessage.Shutdown.Title msgid "Shutting down the system" msgstr "" @@ -72,7 +76,3 @@ msgstr "" #: WarningMessage.RebootFailed.Text msgid "Reboot of the system failed for some reason - sorry!" msgstr "" - -#: Help.Shutdown -msgid "You can poweroff or reboot the CryptoBox server. You should close all open files before." -msgstr "" diff --git a/plugins/shutdown/intl/de/cryptobox-server-feature-shutdown.po b/plugins/shutdown/intl/de/cryptobox-server-feature-shutdown.po index 97f2d85..efbebb6 100644 --- a/plugins/shutdown/intl/de/cryptobox-server-feature-shutdown.po +++ b/plugins/shutdown/intl/de/cryptobox-server-feature-shutdown.po @@ -1,78 +1,77 @@ -#, fuzzy msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" +"PO-Revision-Date: 2006-12-17 15:24+0100\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Translate Toolkit 0.10.1\n" +"X-Generator: Pootle 0.10.1\n" #: Name msgid "Shutdown or reboot the computer" -msgstr "" +msgstr "Computer ausschalten oder neustarten" #: Link msgid "Shutdown" -msgstr "" +msgstr "Ausschalten" #: Title.Shutdown msgid "Shutdown computer" -msgstr "" +msgstr "Computer ausschalten" #: Title.ProgressShutdown msgid "The CryptoBox is shutting down" -msgstr "" +msgstr "DIe CryptoBox schaltet sich gerade aus." #: Title.ProgressReboot msgid "The CryptoBox is rebooting" -msgstr "" +msgstr "Die CryptoBox startet neu" #: Button.Shutdown msgid "Poweroff" -msgstr "" +msgstr "Ausschalten" #: Button.Reboot msgid "Reboot" -msgstr "" - -#: SuccessMessage.Shutdown.Title -msgid "Shutting down the system" -msgstr "" - -#: SuccessMessage.Shutdown.Text -msgid "If the computer does not turn off itself within a minute, then you should plug it off manually." -msgstr "" - -#: SuccessMessage.Reboot.Title -msgid "Rebooting the system" -msgstr "" - -#: SuccessMessage.Reboot.Text -msgid "This may take a while (depending on your hardware) ..." -msgstr "" - -#: WarningMessage.ShutdownFailed.Title -msgid "Shutdown failed" -msgstr "" - -#: WarningMessage.ShutdownFailed.Text -msgid "Shutting down of the system failed for some reason - sorry!" -msgstr "" - -#: WarningMessage.RebootFailed.Title -msgid "Reboot failed" -msgstr "" - -#: WarningMessage.RebootFailed.Text -msgid "Reboot of the system failed for some reason - sorry!" -msgstr "" +msgstr "Neustarten" #: Help.Shutdown msgid "You can poweroff or reboot the CryptoBox server. You should close all open files before." -msgstr "" +msgstr "Du kannst den CryptoBox-Server abschalten oder neustarten. Schliesse vorher alle offenen Dateien." + +#: SuccessMessage.Shutdown.Title +msgid "Shutting down the system" +msgstr "Abschaltung des Systems" + +#: SuccessMessage.Shutdown.Text +msgid "If the computer does not turn off itself within a minute, then you should plug it off manually." +msgstr "Falls der Computer sich nicht innerhalb der nächsten Minuten ausschaltet, dann solltest du es per Hand abschalten." + +#: SuccessMessage.Reboot.Title +msgid "Rebooting the system" +msgstr "Neustart des System" + +#: SuccessMessage.Reboot.Text +msgid "This may take a while (depending on your hardware) ..." +msgstr "Dies kann (abhängig von deinem Rechner) eine Weile dauern ..." + +#: WarningMessage.ShutdownFailed.Title +msgid "Shutdown failed" +msgstr "Abschaltung schlug fehl" + +#: WarningMessage.ShutdownFailed.Text +msgid "Shutting down of the system failed for some reason - sorry!" +msgstr "Aus unklaren Gründen schlug die Abschaltung fehl!" + +#: WarningMessage.RebootFailed.Title +msgid "Reboot failed" +msgstr "Neustart fehlgeschlagen" + +#: WarningMessage.RebootFailed.Text +msgid "Reboot of the system failed for some reason - sorry!" +msgstr "Aus unklaren Gründen schlug der Neustart fehl!" diff --git a/plugins/shutdown/intl/en/cryptobox-server-feature-shutdown.po b/plugins/shutdown/intl/en/cryptobox-server-feature-shutdown.po index 9bff4aa..98a8d3a 100644 --- a/plugins/shutdown/intl/en/cryptobox-server-feature-shutdown.po +++ b/plugins/shutdown/intl/en/cryptobox-server-feature-shutdown.po @@ -1,5 +1,3 @@ -msgid "" -msgstr "" #: Name msgid "Shutdown or reboot the computer" @@ -29,17 +27,17 @@ msgstr "Poweroff" msgid "Reboot" msgstr "Reboot" +#: Help.Shutdown +msgid "You can poweroff or reboot the CryptoBox server. You should close all open files before." +msgstr "You can poweroff or reboot the CryptoBox server. You should close all open files before." + #: SuccessMessage.Shutdown.Title msgid "Shutting down the system" msgstr "Shutting down the system" #: SuccessMessage.Shutdown.Text -msgid "" -"If the computer does not turn off itself within a minute, then you should " -"plug it off manually." -msgstr "" -"If the computer does not turn off itself within a minute, then you should " -"plug it off manually." +msgid "If the computer does not turn off itself within a minute, then you should plug it off manually." +msgstr "If the computer does not turn off itself within a minute, then you should plug it off manually." #: SuccessMessage.Reboot.Title msgid "Rebooting the system" @@ -64,11 +62,3 @@ msgstr "Reboot failed" #: WarningMessage.RebootFailed.Text msgid "Reboot of the system failed for some reason - sorry!" msgstr "Reboot of the system failed for some reason - sorry!" - -#: Help.Shutdown -msgid "" -"You can poweroff or reboot the CryptoBox server. You should close all open " -"files before." -msgstr "" -"You can poweroff or reboot the CryptoBox server. You should close all open " -"files before." diff --git a/plugins/shutdown/intl/es/cryptobox-server-feature-shutdown.po b/plugins/shutdown/intl/es/cryptobox-server-feature-shutdown.po index 97f2d85..075444e 100644 --- a/plugins/shutdown/intl/es/cryptobox-server-feature-shutdown.po +++ b/plugins/shutdown/intl/es/cryptobox-server-feature-shutdown.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -41,6 +41,10 @@ msgstr "" msgid "Reboot" msgstr "" +#: Help.Shutdown +msgid "You can poweroff or reboot the CryptoBox server. You should close all open files before." +msgstr "" + #: SuccessMessage.Shutdown.Title msgid "Shutting down the system" msgstr "" @@ -72,7 +76,3 @@ msgstr "" #: WarningMessage.RebootFailed.Text msgid "Reboot of the system failed for some reason - sorry!" msgstr "" - -#: Help.Shutdown -msgid "You can poweroff or reboot the CryptoBox server. You should close all open files before." -msgstr "" diff --git a/plugins/shutdown/intl/fi/cryptobox-server-feature-shutdown.po b/plugins/shutdown/intl/fi/cryptobox-server-feature-shutdown.po index 97f2d85..075444e 100644 --- a/plugins/shutdown/intl/fi/cryptobox-server-feature-shutdown.po +++ b/plugins/shutdown/intl/fi/cryptobox-server-feature-shutdown.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -41,6 +41,10 @@ msgstr "" msgid "Reboot" msgstr "" +#: Help.Shutdown +msgid "You can poweroff or reboot the CryptoBox server. You should close all open files before." +msgstr "" + #: SuccessMessage.Shutdown.Title msgid "Shutting down the system" msgstr "" @@ -72,7 +76,3 @@ msgstr "" #: WarningMessage.RebootFailed.Text msgid "Reboot of the system failed for some reason - sorry!" msgstr "" - -#: Help.Shutdown -msgid "You can poweroff or reboot the CryptoBox server. You should close all open files before." -msgstr "" diff --git a/plugins/shutdown/intl/fr/cryptobox-server-feature-shutdown.po b/plugins/shutdown/intl/fr/cryptobox-server-feature-shutdown.po index 97f2d85..075444e 100644 --- a/plugins/shutdown/intl/fr/cryptobox-server-feature-shutdown.po +++ b/plugins/shutdown/intl/fr/cryptobox-server-feature-shutdown.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -41,6 +41,10 @@ msgstr "" msgid "Reboot" msgstr "" +#: Help.Shutdown +msgid "You can poweroff or reboot the CryptoBox server. You should close all open files before." +msgstr "" + #: SuccessMessage.Shutdown.Title msgid "Shutting down the system" msgstr "" @@ -72,7 +76,3 @@ msgstr "" #: WarningMessage.RebootFailed.Text msgid "Reboot of the system failed for some reason - sorry!" msgstr "" - -#: Help.Shutdown -msgid "You can poweroff or reboot the CryptoBox server. You should close all open files before." -msgstr "" diff --git a/plugins/shutdown/intl/hu/cryptobox-server-feature-shutdown.po b/plugins/shutdown/intl/hu/cryptobox-server-feature-shutdown.po index 97f2d85..075444e 100644 --- a/plugins/shutdown/intl/hu/cryptobox-server-feature-shutdown.po +++ b/plugins/shutdown/intl/hu/cryptobox-server-feature-shutdown.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -41,6 +41,10 @@ msgstr "" msgid "Reboot" msgstr "" +#: Help.Shutdown +msgid "You can poweroff or reboot the CryptoBox server. You should close all open files before." +msgstr "" + #: SuccessMessage.Shutdown.Title msgid "Shutting down the system" msgstr "" @@ -72,7 +76,3 @@ msgstr "" #: WarningMessage.RebootFailed.Text msgid "Reboot of the system failed for some reason - sorry!" msgstr "" - -#: Help.Shutdown -msgid "You can poweroff or reboot the CryptoBox server. You should close all open files before." -msgstr "" diff --git a/plugins/shutdown/intl/it/cryptobox-server-feature-shutdown.po b/plugins/shutdown/intl/it/cryptobox-server-feature-shutdown.po index 97f2d85..075444e 100644 --- a/plugins/shutdown/intl/it/cryptobox-server-feature-shutdown.po +++ b/plugins/shutdown/intl/it/cryptobox-server-feature-shutdown.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -41,6 +41,10 @@ msgstr "" msgid "Reboot" msgstr "" +#: Help.Shutdown +msgid "You can poweroff or reboot the CryptoBox server. You should close all open files before." +msgstr "" + #: SuccessMessage.Shutdown.Title msgid "Shutting down the system" msgstr "" @@ -72,7 +76,3 @@ msgstr "" #: WarningMessage.RebootFailed.Text msgid "Reboot of the system failed for some reason - sorry!" msgstr "" - -#: Help.Shutdown -msgid "You can poweroff or reboot the CryptoBox server. You should close all open files before." -msgstr "" diff --git a/plugins/shutdown/intl/ja/cryptobox-server-feature-shutdown.po b/plugins/shutdown/intl/ja/cryptobox-server-feature-shutdown.po index 97f2d85..075444e 100644 --- a/plugins/shutdown/intl/ja/cryptobox-server-feature-shutdown.po +++ b/plugins/shutdown/intl/ja/cryptobox-server-feature-shutdown.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -41,6 +41,10 @@ msgstr "" msgid "Reboot" msgstr "" +#: Help.Shutdown +msgid "You can poweroff or reboot the CryptoBox server. You should close all open files before." +msgstr "" + #: SuccessMessage.Shutdown.Title msgid "Shutting down the system" msgstr "" @@ -72,7 +76,3 @@ msgstr "" #: WarningMessage.RebootFailed.Text msgid "Reboot of the system failed for some reason - sorry!" msgstr "" - -#: Help.Shutdown -msgid "You can poweroff or reboot the CryptoBox server. You should close all open files before." -msgstr "" diff --git a/plugins/shutdown/intl/nl/cryptobox-server-feature-shutdown.po b/plugins/shutdown/intl/nl/cryptobox-server-feature-shutdown.po index 97f2d85..075444e 100644 --- a/plugins/shutdown/intl/nl/cryptobox-server-feature-shutdown.po +++ b/plugins/shutdown/intl/nl/cryptobox-server-feature-shutdown.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -41,6 +41,10 @@ msgstr "" msgid "Reboot" msgstr "" +#: Help.Shutdown +msgid "You can poweroff or reboot the CryptoBox server. You should close all open files before." +msgstr "" + #: SuccessMessage.Shutdown.Title msgid "Shutting down the system" msgstr "" @@ -72,7 +76,3 @@ msgstr "" #: WarningMessage.RebootFailed.Text msgid "Reboot of the system failed for some reason - sorry!" msgstr "" - -#: Help.Shutdown -msgid "You can poweroff or reboot the CryptoBox server. You should close all open files before." -msgstr "" diff --git a/plugins/shutdown/intl/pl/cryptobox-server-feature-shutdown.po b/plugins/shutdown/intl/pl/cryptobox-server-feature-shutdown.po index 97f2d85..075444e 100644 --- a/plugins/shutdown/intl/pl/cryptobox-server-feature-shutdown.po +++ b/plugins/shutdown/intl/pl/cryptobox-server-feature-shutdown.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -41,6 +41,10 @@ msgstr "" msgid "Reboot" msgstr "" +#: Help.Shutdown +msgid "You can poweroff or reboot the CryptoBox server. You should close all open files before." +msgstr "" + #: SuccessMessage.Shutdown.Title msgid "Shutting down the system" msgstr "" @@ -72,7 +76,3 @@ msgstr "" #: WarningMessage.RebootFailed.Text msgid "Reboot of the system failed for some reason - sorry!" msgstr "" - -#: Help.Shutdown -msgid "You can poweroff or reboot the CryptoBox server. You should close all open files before." -msgstr "" diff --git a/plugins/shutdown/intl/pt/cryptobox-server-feature-shutdown.po b/plugins/shutdown/intl/pt/cryptobox-server-feature-shutdown.po index 97f2d85..075444e 100644 --- a/plugins/shutdown/intl/pt/cryptobox-server-feature-shutdown.po +++ b/plugins/shutdown/intl/pt/cryptobox-server-feature-shutdown.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -41,6 +41,10 @@ msgstr "" msgid "Reboot" msgstr "" +#: Help.Shutdown +msgid "You can poweroff or reboot the CryptoBox server. You should close all open files before." +msgstr "" + #: SuccessMessage.Shutdown.Title msgid "Shutting down the system" msgstr "" @@ -72,7 +76,3 @@ msgstr "" #: WarningMessage.RebootFailed.Text msgid "Reboot of the system failed for some reason - sorry!" msgstr "" - -#: Help.Shutdown -msgid "You can poweroff or reboot the CryptoBox server. You should close all open files before." -msgstr "" diff --git a/plugins/shutdown/intl/ru/cryptobox-server-feature-shutdown.po b/plugins/shutdown/intl/ru/cryptobox-server-feature-shutdown.po index 97f2d85..075444e 100644 --- a/plugins/shutdown/intl/ru/cryptobox-server-feature-shutdown.po +++ b/plugins/shutdown/intl/ru/cryptobox-server-feature-shutdown.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -41,6 +41,10 @@ msgstr "" msgid "Reboot" msgstr "" +#: Help.Shutdown +msgid "You can poweroff or reboot the CryptoBox server. You should close all open files before." +msgstr "" + #: SuccessMessage.Shutdown.Title msgid "Shutting down the system" msgstr "" @@ -72,7 +76,3 @@ msgstr "" #: WarningMessage.RebootFailed.Text msgid "Reboot of the system failed for some reason - sorry!" msgstr "" - -#: Help.Shutdown -msgid "You can poweroff or reboot the CryptoBox server. You should close all open files before." -msgstr "" diff --git a/plugins/shutdown/intl/sl/cryptobox-server-feature-shutdown.po b/plugins/shutdown/intl/sl/cryptobox-server-feature-shutdown.po index 97f2d85..075444e 100644 --- a/plugins/shutdown/intl/sl/cryptobox-server-feature-shutdown.po +++ b/plugins/shutdown/intl/sl/cryptobox-server-feature-shutdown.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -41,6 +41,10 @@ msgstr "" msgid "Reboot" msgstr "" +#: Help.Shutdown +msgid "You can poweroff or reboot the CryptoBox server. You should close all open files before." +msgstr "" + #: SuccessMessage.Shutdown.Title msgid "Shutting down the system" msgstr "" @@ -72,7 +76,3 @@ msgstr "" #: WarningMessage.RebootFailed.Text msgid "Reboot of the system failed for some reason - sorry!" msgstr "" - -#: Help.Shutdown -msgid "You can poweroff or reboot the CryptoBox server. You should close all open files before." -msgstr "" diff --git a/plugins/shutdown/intl/sv/cryptobox-server-feature-shutdown.po b/plugins/shutdown/intl/sv/cryptobox-server-feature-shutdown.po index 97f2d85..075444e 100644 --- a/plugins/shutdown/intl/sv/cryptobox-server-feature-shutdown.po +++ b/plugins/shutdown/intl/sv/cryptobox-server-feature-shutdown.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -41,6 +41,10 @@ msgstr "" msgid "Reboot" msgstr "" +#: Help.Shutdown +msgid "You can poweroff or reboot the CryptoBox server. You should close all open files before." +msgstr "" + #: SuccessMessage.Shutdown.Title msgid "Shutting down the system" msgstr "" @@ -72,7 +76,3 @@ msgstr "" #: WarningMessage.RebootFailed.Text msgid "Reboot of the system failed for some reason - sorry!" msgstr "" - -#: Help.Shutdown -msgid "You can poweroff or reboot the CryptoBox server. You should close all open files before." -msgstr "" diff --git a/plugins/system_preferences/intl/cryptobox-server-feature-system_preferences.pot b/plugins/system_preferences/intl/cryptobox-server-feature-system_preferences.pot index 248995d..c1574b6 100644 --- a/plugins/system_preferences/intl/cryptobox-server-feature-system_preferences.pot +++ b/plugins/system_preferences/intl/cryptobox-server-feature-system_preferences.pot @@ -1,17 +1,3 @@ -msgid "" -msgstr "" -"Project-Id-Version: CryptoBox-Server 0.3\n" -"Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: sense.lab \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: utf-8\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Translate Toolkit 0.10.1\n" - #: Name msgid "System preferences" msgstr "" diff --git a/plugins/system_preferences/intl/cs/cryptobox-server-feature-system_preferences.po b/plugins/system_preferences/intl/cs/cryptobox-server-feature-system_preferences.po index 607a309..9970860 100644 --- a/plugins/system_preferences/intl/cs/cryptobox-server-feature-system_preferences.po +++ b/plugins/system_preferences/intl/cs/cryptobox-server-feature-system_preferences.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:41+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/system_preferences/intl/da/cryptobox-server-feature-system_preferences.po b/plugins/system_preferences/intl/da/cryptobox-server-feature-system_preferences.po index 607a309..9970860 100644 --- a/plugins/system_preferences/intl/da/cryptobox-server-feature-system_preferences.po +++ b/plugins/system_preferences/intl/da/cryptobox-server-feature-system_preferences.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:41+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/system_preferences/intl/de/cryptobox-server-feature-system_preferences.po b/plugins/system_preferences/intl/de/cryptobox-server-feature-system_preferences.po index cbfdcf1..167857b 100644 --- a/plugins/system_preferences/intl/de/cryptobox-server-feature-system_preferences.po +++ b/plugins/system_preferences/intl/de/cryptobox-server-feature-system_preferences.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:41+0100\n" "PO-Revision-Date: 2006-12-14 03:54+0100\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/system_preferences/intl/en/cryptobox-server-feature-system_preferences.po b/plugins/system_preferences/intl/en/cryptobox-server-feature-system_preferences.po index 028be13..ca10a92 100644 --- a/plugins/system_preferences/intl/en/cryptobox-server-feature-system_preferences.po +++ b/plugins/system_preferences/intl/en/cryptobox-server-feature-system_preferences.po @@ -1,5 +1,3 @@ -msgid "" -msgstr "" #: Name msgid "System preferences" diff --git a/plugins/system_preferences/intl/es/cryptobox-server-feature-system_preferences.po b/plugins/system_preferences/intl/es/cryptobox-server-feature-system_preferences.po index 607a309..9970860 100644 --- a/plugins/system_preferences/intl/es/cryptobox-server-feature-system_preferences.po +++ b/plugins/system_preferences/intl/es/cryptobox-server-feature-system_preferences.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:41+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/system_preferences/intl/fi/cryptobox-server-feature-system_preferences.po b/plugins/system_preferences/intl/fi/cryptobox-server-feature-system_preferences.po index 607a309..9970860 100644 --- a/plugins/system_preferences/intl/fi/cryptobox-server-feature-system_preferences.po +++ b/plugins/system_preferences/intl/fi/cryptobox-server-feature-system_preferences.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:41+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/system_preferences/intl/fr/cryptobox-server-feature-system_preferences.po b/plugins/system_preferences/intl/fr/cryptobox-server-feature-system_preferences.po index 607a309..9970860 100644 --- a/plugins/system_preferences/intl/fr/cryptobox-server-feature-system_preferences.po +++ b/plugins/system_preferences/intl/fr/cryptobox-server-feature-system_preferences.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:41+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/system_preferences/intl/hu/cryptobox-server-feature-system_preferences.po b/plugins/system_preferences/intl/hu/cryptobox-server-feature-system_preferences.po index 607a309..9970860 100644 --- a/plugins/system_preferences/intl/hu/cryptobox-server-feature-system_preferences.po +++ b/plugins/system_preferences/intl/hu/cryptobox-server-feature-system_preferences.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:41+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/system_preferences/intl/it/cryptobox-server-feature-system_preferences.po b/plugins/system_preferences/intl/it/cryptobox-server-feature-system_preferences.po index 607a309..9970860 100644 --- a/plugins/system_preferences/intl/it/cryptobox-server-feature-system_preferences.po +++ b/plugins/system_preferences/intl/it/cryptobox-server-feature-system_preferences.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:41+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/system_preferences/intl/ja/cryptobox-server-feature-system_preferences.po b/plugins/system_preferences/intl/ja/cryptobox-server-feature-system_preferences.po index 607a309..9970860 100644 --- a/plugins/system_preferences/intl/ja/cryptobox-server-feature-system_preferences.po +++ b/plugins/system_preferences/intl/ja/cryptobox-server-feature-system_preferences.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:41+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/system_preferences/intl/nl/cryptobox-server-feature-system_preferences.po b/plugins/system_preferences/intl/nl/cryptobox-server-feature-system_preferences.po index 607a309..9970860 100644 --- a/plugins/system_preferences/intl/nl/cryptobox-server-feature-system_preferences.po +++ b/plugins/system_preferences/intl/nl/cryptobox-server-feature-system_preferences.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:41+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/system_preferences/intl/pl/cryptobox-server-feature-system_preferences.po b/plugins/system_preferences/intl/pl/cryptobox-server-feature-system_preferences.po index 607a309..9970860 100644 --- a/plugins/system_preferences/intl/pl/cryptobox-server-feature-system_preferences.po +++ b/plugins/system_preferences/intl/pl/cryptobox-server-feature-system_preferences.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:41+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/system_preferences/intl/pt/cryptobox-server-feature-system_preferences.po b/plugins/system_preferences/intl/pt/cryptobox-server-feature-system_preferences.po index 607a309..9970860 100644 --- a/plugins/system_preferences/intl/pt/cryptobox-server-feature-system_preferences.po +++ b/plugins/system_preferences/intl/pt/cryptobox-server-feature-system_preferences.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:41+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/system_preferences/intl/ru/cryptobox-server-feature-system_preferences.po b/plugins/system_preferences/intl/ru/cryptobox-server-feature-system_preferences.po index 607a309..9970860 100644 --- a/plugins/system_preferences/intl/ru/cryptobox-server-feature-system_preferences.po +++ b/plugins/system_preferences/intl/ru/cryptobox-server-feature-system_preferences.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:41+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/system_preferences/intl/sl/cryptobox-server-feature-system_preferences.po b/plugins/system_preferences/intl/sl/cryptobox-server-feature-system_preferences.po index 607a309..9970860 100644 --- a/plugins/system_preferences/intl/sl/cryptobox-server-feature-system_preferences.po +++ b/plugins/system_preferences/intl/sl/cryptobox-server-feature-system_preferences.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:41+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/system_preferences/intl/sv/cryptobox-server-feature-system_preferences.po b/plugins/system_preferences/intl/sv/cryptobox-server-feature-system_preferences.po index 607a309..9970860 100644 --- a/plugins/system_preferences/intl/sv/cryptobox-server-feature-system_preferences.po +++ b/plugins/system_preferences/intl/sv/cryptobox-server-feature-system_preferences.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:41+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/system_preferences/show_plugins.cs b/plugins/system_preferences/show_plugins.cs index 6946f78..12e19bc 100644 --- a/plugins/system_preferences/show_plugins.cs +++ b/plugins/system_preferences/show_plugins.cs @@ -10,10 +10,10 @@ ?>
<?cs
 				var:html_escape('icon: ' + x.Name) ?>
diff --git a/plugins/system_preferences/system_preferences.py b/plugins/system_preferences/system_preferences.py index 0d1aadf..7cc3420 100644 --- a/plugins/system_preferences/system_preferences.py +++ b/plugins/system_preferences/system_preferences.py @@ -27,7 +27,7 @@ class system_preferences(cryptobox.plugins.base.CryptoBoxPlugin): plugin_capabilities = [ "system" ] plugin_visibility = [ "menu" ] request_auth = False - rank = 20 + rank = 25 def do_action(self): return "show_plugins" diff --git a/plugins/user_manager/intl/cryptobox-server-feature-user_manager.pot b/plugins/user_manager/intl/cryptobox-server-feature-user_manager.pot index 499d6a0..9f858c4 100644 --- a/plugins/user_manager/intl/cryptobox-server-feature-user_manager.pot +++ b/plugins/user_manager/intl/cryptobox-server-feature-user_manager.pot @@ -1,19 +1,5 @@ -msgid "" -msgstr "" -"Project-Id-Version: CryptoBox-Server 0.3\n" -"Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: sense.lab \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: utf-8\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Translate Toolkit 0.10.1\n" - #: Name -msgid "User Manager" +msgid "User manager" msgstr "" #: Link @@ -48,6 +34,22 @@ msgstr "" msgid "Change user's password" msgstr "" +#: Help.UserManagement +msgid "Some settings and actions of the CryptoBox are restricted to authenticated users. Common actions like opening and closing of volumes are usually possible without administrative permissions. Be careful when adding new users as they will have control over all features of the CryptoBox including partitioning, formatting and user management." +msgstr "" + +#: Help.AddUser +msgid "Add a new administrative user and define its password by entering it twice." +msgstr "" + +#: Help.ChangePassword +msgid "Choose a user of the following list and enter the new password twice." +msgstr "" + +#: Help.DelUser +msgid "Remove an administrative user. The user 'admin' is reserved and can not be removed." +msgstr "" + #: SuccessMessage.UserAdded.Title msgid "User added" msgstr "" @@ -80,14 +82,6 @@ msgstr "" msgid "The choosen username is invalid: only letters and digits are allowed." msgstr "" -#: WarningMessage.UserAlreadyExists.Title -msgid "User exists" -msgstr "" - -#: WarningMessage.UserAlreadyExists.Text -msgid "The choosen username does already exist. Please choose another one." -msgstr "" - #: WarningMessage.NeverRemoveReservedUser.Title msgid "Reserved user" msgstr "" @@ -96,22 +90,10 @@ msgstr "" msgid "You may not remove a reserved user. Sorry!" msgstr "" -#: Name -msgid "User manager" +#: WarningMessage.UserAlreadyExists.Title +msgid "User exists" msgstr "" -#: Help.UserManagement -msgid "Some settings and actions of the CryptoBox are restricted to authenticated users. Common actions like opening and closing of volumes are usually possible without administrative permissions. Be careful when adding new users as they will have control over all features of the CryptoBox including partitioning, formatting and user management." -msgstr "" - -#: Help.AddUser -msgid "Add a new administrative user and define its password by entering it twice." -msgstr "" - -#: Help.ChangePassword -msgid "Choose a user of the following list and enter the new password twice." -msgstr "" - -#: Help.DelUser -msgid "Remove an administrative user. The user 'admin' is reserved and can not be removed." +#: WarningMessage.UserAlreadyExists.Text +msgid "The choosen username does already exist. Please choose another one." msgstr "" diff --git a/plugins/user_manager/intl/cs/cryptobox-server-feature-user_manager.po b/plugins/user_manager/intl/cs/cryptobox-server-feature-user_manager.po index 5370780..6d35584 100644 --- a/plugins/user_manager/intl/cs/cryptobox-server-feature-user_manager.po +++ b/plugins/user_manager/intl/cs/cryptobox-server-feature-user_manager.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:41+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "User Manager" +msgid "User manager" msgstr "" #: Link @@ -49,6 +49,22 @@ msgstr "" msgid "Change user's password" msgstr "" +#: Help.UserManagement +msgid "Some settings and actions of the CryptoBox are restricted to authenticated users. Common actions like opening and closing of volumes are usually possible without administrative permissions. Be careful when adding new users as they will have control over all features of the CryptoBox including partitioning, formatting and user management." +msgstr "" + +#: Help.AddUser +msgid "Add a new administrative user and define its password by entering it twice." +msgstr "" + +#: Help.ChangePassword +msgid "Choose a user of the following list and enter the new password twice." +msgstr "" + +#: Help.DelUser +msgid "Remove an administrative user. The user 'admin' is reserved and can not be removed." +msgstr "" + #: SuccessMessage.UserAdded.Title msgid "User added" msgstr "" @@ -81,14 +97,6 @@ msgstr "" msgid "The choosen username is invalid: only letters and digits are allowed." msgstr "" -#: WarningMessage.UserAlreadyExists.Title -msgid "User exists" -msgstr "" - -#: WarningMessage.UserAlreadyExists.Text -msgid "The choosen username does already exist. Please choose another one." -msgstr "" - #: WarningMessage.NeverRemoveReservedUser.Title msgid "Reserved user" msgstr "" @@ -97,22 +105,10 @@ msgstr "" msgid "You may not remove a reserved user. Sorry!" msgstr "" -#: Name -msgid "User manager" +#: WarningMessage.UserAlreadyExists.Title +msgid "User exists" msgstr "" -#: Help.UserManagement -msgid "Some settings and actions of the CryptoBox are restricted to authenticated users. Common actions like opening and closing of volumes are usually possible without administrative permissions. Be careful when adding new users as they will have control over all features of the CryptoBox including partitioning, formatting and user management." -msgstr "" - -#: Help.AddUser -msgid "Add a new administrative user and define its password by entering it twice." -msgstr "" - -#: Help.ChangePassword -msgid "Choose a user of the following list and enter the new password twice." -msgstr "" - -#: Help.DelUser -msgid "Remove an administrative user. The user 'admin' is reserved and can not be removed." +#: WarningMessage.UserAlreadyExists.Text +msgid "The choosen username does already exist. Please choose another one." msgstr "" diff --git a/plugins/user_manager/intl/da/cryptobox-server-feature-user_manager.po b/plugins/user_manager/intl/da/cryptobox-server-feature-user_manager.po index 5370780..6d35584 100644 --- a/plugins/user_manager/intl/da/cryptobox-server-feature-user_manager.po +++ b/plugins/user_manager/intl/da/cryptobox-server-feature-user_manager.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:41+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "User Manager" +msgid "User manager" msgstr "" #: Link @@ -49,6 +49,22 @@ msgstr "" msgid "Change user's password" msgstr "" +#: Help.UserManagement +msgid "Some settings and actions of the CryptoBox are restricted to authenticated users. Common actions like opening and closing of volumes are usually possible without administrative permissions. Be careful when adding new users as they will have control over all features of the CryptoBox including partitioning, formatting and user management." +msgstr "" + +#: Help.AddUser +msgid "Add a new administrative user and define its password by entering it twice." +msgstr "" + +#: Help.ChangePassword +msgid "Choose a user of the following list and enter the new password twice." +msgstr "" + +#: Help.DelUser +msgid "Remove an administrative user. The user 'admin' is reserved and can not be removed." +msgstr "" + #: SuccessMessage.UserAdded.Title msgid "User added" msgstr "" @@ -81,14 +97,6 @@ msgstr "" msgid "The choosen username is invalid: only letters and digits are allowed." msgstr "" -#: WarningMessage.UserAlreadyExists.Title -msgid "User exists" -msgstr "" - -#: WarningMessage.UserAlreadyExists.Text -msgid "The choosen username does already exist. Please choose another one." -msgstr "" - #: WarningMessage.NeverRemoveReservedUser.Title msgid "Reserved user" msgstr "" @@ -97,22 +105,10 @@ msgstr "" msgid "You may not remove a reserved user. Sorry!" msgstr "" -#: Name -msgid "User manager" +#: WarningMessage.UserAlreadyExists.Title +msgid "User exists" msgstr "" -#: Help.UserManagement -msgid "Some settings and actions of the CryptoBox are restricted to authenticated users. Common actions like opening and closing of volumes are usually possible without administrative permissions. Be careful when adding new users as they will have control over all features of the CryptoBox including partitioning, formatting and user management." -msgstr "" - -#: Help.AddUser -msgid "Add a new administrative user and define its password by entering it twice." -msgstr "" - -#: Help.ChangePassword -msgid "Choose a user of the following list and enter the new password twice." -msgstr "" - -#: Help.DelUser -msgid "Remove an administrative user. The user 'admin' is reserved and can not be removed." +#: WarningMessage.UserAlreadyExists.Text +msgid "The choosen username does already exist. Please choose another one." msgstr "" diff --git a/plugins/user_manager/intl/de/cryptobox-server-feature-user_manager.po b/plugins/user_manager/intl/de/cryptobox-server-feature-user_manager.po index 5370780..6d35584 100644 --- a/plugins/user_manager/intl/de/cryptobox-server-feature-user_manager.po +++ b/plugins/user_manager/intl/de/cryptobox-server-feature-user_manager.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:41+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "User Manager" +msgid "User manager" msgstr "" #: Link @@ -49,6 +49,22 @@ msgstr "" msgid "Change user's password" msgstr "" +#: Help.UserManagement +msgid "Some settings and actions of the CryptoBox are restricted to authenticated users. Common actions like opening and closing of volumes are usually possible without administrative permissions. Be careful when adding new users as they will have control over all features of the CryptoBox including partitioning, formatting and user management." +msgstr "" + +#: Help.AddUser +msgid "Add a new administrative user and define its password by entering it twice." +msgstr "" + +#: Help.ChangePassword +msgid "Choose a user of the following list and enter the new password twice." +msgstr "" + +#: Help.DelUser +msgid "Remove an administrative user. The user 'admin' is reserved and can not be removed." +msgstr "" + #: SuccessMessage.UserAdded.Title msgid "User added" msgstr "" @@ -81,14 +97,6 @@ msgstr "" msgid "The choosen username is invalid: only letters and digits are allowed." msgstr "" -#: WarningMessage.UserAlreadyExists.Title -msgid "User exists" -msgstr "" - -#: WarningMessage.UserAlreadyExists.Text -msgid "The choosen username does already exist. Please choose another one." -msgstr "" - #: WarningMessage.NeverRemoveReservedUser.Title msgid "Reserved user" msgstr "" @@ -97,22 +105,10 @@ msgstr "" msgid "You may not remove a reserved user. Sorry!" msgstr "" -#: Name -msgid "User manager" +#: WarningMessage.UserAlreadyExists.Title +msgid "User exists" msgstr "" -#: Help.UserManagement -msgid "Some settings and actions of the CryptoBox are restricted to authenticated users. Common actions like opening and closing of volumes are usually possible without administrative permissions. Be careful when adding new users as they will have control over all features of the CryptoBox including partitioning, formatting and user management." -msgstr "" - -#: Help.AddUser -msgid "Add a new administrative user and define its password by entering it twice." -msgstr "" - -#: Help.ChangePassword -msgid "Choose a user of the following list and enter the new password twice." -msgstr "" - -#: Help.DelUser -msgid "Remove an administrative user. The user 'admin' is reserved and can not be removed." +#: WarningMessage.UserAlreadyExists.Text +msgid "The choosen username does already exist. Please choose another one." msgstr "" diff --git a/plugins/user_manager/intl/en/cryptobox-server-feature-user_manager.po b/plugins/user_manager/intl/en/cryptobox-server-feature-user_manager.po index 225f584..f88acdf 100644 --- a/plugins/user_manager/intl/en/cryptobox-server-feature-user_manager.po +++ b/plugins/user_manager/intl/en/cryptobox-server-feature-user_manager.po @@ -1,9 +1,7 @@ -msgid "" -msgstr "" #: Name -msgid "User Manager" -msgstr "User Manager" +msgid "User manager" +msgstr "User manager" #: Link msgid "Manage users" @@ -37,6 +35,22 @@ msgstr "User to remove" msgid "Change user's password" msgstr "Change user's password" +#: Help.UserManagement +msgid "Some settings and actions of the CryptoBox are restricted to authenticated users. Common actions like opening and closing of volumes are usually possible without administrative permissions. Be careful when adding new users as they will have control over all features of the CryptoBox including partitioning, formatting and user management." +msgstr "Some settings and actions of the CryptoBox are restricted to authenticated users. Common actions like opening and closing of volumes are usually possible without administrative permissions. Be careful when adding new users as they will have control over all features of the CryptoBox including partitioning, formatting and user management." + +#: Help.AddUser +msgid "Add a new administrative user and define its password by entering it twice." +msgstr "Add a new administrative user and define its password by entering it twice." + +#: Help.ChangePassword +msgid "Choose a user of the following list and enter the new password twice." +msgstr "Choose a user of the following list and enter the new password twice." + +#: Help.DelUser +msgid "Remove an administrative user. The user 'admin' is reserved and can not be removed." +msgstr "Remove an administrative user. The user 'admin' is reserved and can not be removed." + #: SuccessMessage.UserAdded.Title msgid "User added" msgstr "User added" @@ -69,14 +83,6 @@ msgstr "Invalid username" msgid "The choosen username is invalid: only letters and digits are allowed." msgstr "The choosen username is invalid: only letters and digits are allowed." -#: WarningMessage.UserAlreadyExists.Title -msgid "User exists" -msgstr "User exists" - -#: WarningMessage.UserAlreadyExists.Text -msgid "The choosen username does already exist. Please choose another one." -msgstr "The choosen username does already exist. Please choose another one." - #: WarningMessage.NeverRemoveReservedUser.Title msgid "Reserved user" msgstr "Reserved user" @@ -85,38 +91,13 @@ msgstr "Reserved user" msgid "You may not remove a reserved user. Sorry!" msgstr "You may not remove a reserved user. Sorry!" -#: Name -msgid "User manager" -msgstr "User manager" +#: WarningMessage.UserAlreadyExists.Title +msgid "User exists" +msgstr "User exists" -#: Help.UserManagement -msgid "" -"Some settings and actions of the CryptoBox are restricted to authenticated " -"users. Common actions like opening and closing of volumes are usually " -"possible without administrative permissions. Be careful when adding new " -"users as they will have control over all features of the CryptoBox including " -"partitioning, formatting and user management." -msgstr "" -"Some settings and actions of the CryptoBox are restricted to authenticated " -"users. Common actions like opening and closing of volumes are usually " -"possible without administrative permissions. Be careful when adding new " -"users as they will have control over all features of the CryptoBox including " -"partitioning, formatting and user management." +#: WarningMessage.UserAlreadyExists.Text +msgid "The choosen username does already exist. Please choose another one." +msgstr "The choosen username does already exist. Please choose another one." -#: Help.AddUser -msgid "" -"Add a new administrative user and define its password by entering it twice." -msgstr "" -"Add a new administrative user and define its password by entering it twice." - -#: Help.ChangePassword -msgid "Choose a user of the following list and enter the new password twice." -msgstr "Choose a user of the following list and enter the new password twice." - -#: Help.DelUser -msgid "" -"Remove an administrative user. The user 'admin' is reserved and can not be " -"removed." -msgstr "" -"Remove an administrative user. The user 'admin' is reserved and can not be " -"removed." +#~ msgid "User Manager" +#~ msgstr "User Manager" diff --git a/plugins/user_manager/intl/es/cryptobox-server-feature-user_manager.po b/plugins/user_manager/intl/es/cryptobox-server-feature-user_manager.po index 5370780..b143fd9 100644 --- a/plugins/user_manager/intl/es/cryptobox-server-feature-user_manager.po +++ b/plugins/user_manager/intl/es/cryptobox-server-feature-user_manager.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:42+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "User Manager" +msgid "User manager" msgstr "" #: Link @@ -49,6 +49,22 @@ msgstr "" msgid "Change user's password" msgstr "" +#: Help.UserManagement +msgid "Some settings and actions of the CryptoBox are restricted to authenticated users. Common actions like opening and closing of volumes are usually possible without administrative permissions. Be careful when adding new users as they will have control over all features of the CryptoBox including partitioning, formatting and user management." +msgstr "" + +#: Help.AddUser +msgid "Add a new administrative user and define its password by entering it twice." +msgstr "" + +#: Help.ChangePassword +msgid "Choose a user of the following list and enter the new password twice." +msgstr "" + +#: Help.DelUser +msgid "Remove an administrative user. The user 'admin' is reserved and can not be removed." +msgstr "" + #: SuccessMessage.UserAdded.Title msgid "User added" msgstr "" @@ -81,14 +97,6 @@ msgstr "" msgid "The choosen username is invalid: only letters and digits are allowed." msgstr "" -#: WarningMessage.UserAlreadyExists.Title -msgid "User exists" -msgstr "" - -#: WarningMessage.UserAlreadyExists.Text -msgid "The choosen username does already exist. Please choose another one." -msgstr "" - #: WarningMessage.NeverRemoveReservedUser.Title msgid "Reserved user" msgstr "" @@ -97,22 +105,10 @@ msgstr "" msgid "You may not remove a reserved user. Sorry!" msgstr "" -#: Name -msgid "User manager" +#: WarningMessage.UserAlreadyExists.Title +msgid "User exists" msgstr "" -#: Help.UserManagement -msgid "Some settings and actions of the CryptoBox are restricted to authenticated users. Common actions like opening and closing of volumes are usually possible without administrative permissions. Be careful when adding new users as they will have control over all features of the CryptoBox including partitioning, formatting and user management." -msgstr "" - -#: Help.AddUser -msgid "Add a new administrative user and define its password by entering it twice." -msgstr "" - -#: Help.ChangePassword -msgid "Choose a user of the following list and enter the new password twice." -msgstr "" - -#: Help.DelUser -msgid "Remove an administrative user. The user 'admin' is reserved and can not be removed." +#: WarningMessage.UserAlreadyExists.Text +msgid "The choosen username does already exist. Please choose another one." msgstr "" diff --git a/plugins/user_manager/intl/fi/cryptobox-server-feature-user_manager.po b/plugins/user_manager/intl/fi/cryptobox-server-feature-user_manager.po index 5370780..b143fd9 100644 --- a/plugins/user_manager/intl/fi/cryptobox-server-feature-user_manager.po +++ b/plugins/user_manager/intl/fi/cryptobox-server-feature-user_manager.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:42+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "User Manager" +msgid "User manager" msgstr "" #: Link @@ -49,6 +49,22 @@ msgstr "" msgid "Change user's password" msgstr "" +#: Help.UserManagement +msgid "Some settings and actions of the CryptoBox are restricted to authenticated users. Common actions like opening and closing of volumes are usually possible without administrative permissions. Be careful when adding new users as they will have control over all features of the CryptoBox including partitioning, formatting and user management." +msgstr "" + +#: Help.AddUser +msgid "Add a new administrative user and define its password by entering it twice." +msgstr "" + +#: Help.ChangePassword +msgid "Choose a user of the following list and enter the new password twice." +msgstr "" + +#: Help.DelUser +msgid "Remove an administrative user. The user 'admin' is reserved and can not be removed." +msgstr "" + #: SuccessMessage.UserAdded.Title msgid "User added" msgstr "" @@ -81,14 +97,6 @@ msgstr "" msgid "The choosen username is invalid: only letters and digits are allowed." msgstr "" -#: WarningMessage.UserAlreadyExists.Title -msgid "User exists" -msgstr "" - -#: WarningMessage.UserAlreadyExists.Text -msgid "The choosen username does already exist. Please choose another one." -msgstr "" - #: WarningMessage.NeverRemoveReservedUser.Title msgid "Reserved user" msgstr "" @@ -97,22 +105,10 @@ msgstr "" msgid "You may not remove a reserved user. Sorry!" msgstr "" -#: Name -msgid "User manager" +#: WarningMessage.UserAlreadyExists.Title +msgid "User exists" msgstr "" -#: Help.UserManagement -msgid "Some settings and actions of the CryptoBox are restricted to authenticated users. Common actions like opening and closing of volumes are usually possible without administrative permissions. Be careful when adding new users as they will have control over all features of the CryptoBox including partitioning, formatting and user management." -msgstr "" - -#: Help.AddUser -msgid "Add a new administrative user and define its password by entering it twice." -msgstr "" - -#: Help.ChangePassword -msgid "Choose a user of the following list and enter the new password twice." -msgstr "" - -#: Help.DelUser -msgid "Remove an administrative user. The user 'admin' is reserved and can not be removed." +#: WarningMessage.UserAlreadyExists.Text +msgid "The choosen username does already exist. Please choose another one." msgstr "" diff --git a/plugins/user_manager/intl/fr/cryptobox-server-feature-user_manager.po b/plugins/user_manager/intl/fr/cryptobox-server-feature-user_manager.po index 5370780..b143fd9 100644 --- a/plugins/user_manager/intl/fr/cryptobox-server-feature-user_manager.po +++ b/plugins/user_manager/intl/fr/cryptobox-server-feature-user_manager.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:42+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "User Manager" +msgid "User manager" msgstr "" #: Link @@ -49,6 +49,22 @@ msgstr "" msgid "Change user's password" msgstr "" +#: Help.UserManagement +msgid "Some settings and actions of the CryptoBox are restricted to authenticated users. Common actions like opening and closing of volumes are usually possible without administrative permissions. Be careful when adding new users as they will have control over all features of the CryptoBox including partitioning, formatting and user management." +msgstr "" + +#: Help.AddUser +msgid "Add a new administrative user and define its password by entering it twice." +msgstr "" + +#: Help.ChangePassword +msgid "Choose a user of the following list and enter the new password twice." +msgstr "" + +#: Help.DelUser +msgid "Remove an administrative user. The user 'admin' is reserved and can not be removed." +msgstr "" + #: SuccessMessage.UserAdded.Title msgid "User added" msgstr "" @@ -81,14 +97,6 @@ msgstr "" msgid "The choosen username is invalid: only letters and digits are allowed." msgstr "" -#: WarningMessage.UserAlreadyExists.Title -msgid "User exists" -msgstr "" - -#: WarningMessage.UserAlreadyExists.Text -msgid "The choosen username does already exist. Please choose another one." -msgstr "" - #: WarningMessage.NeverRemoveReservedUser.Title msgid "Reserved user" msgstr "" @@ -97,22 +105,10 @@ msgstr "" msgid "You may not remove a reserved user. Sorry!" msgstr "" -#: Name -msgid "User manager" +#: WarningMessage.UserAlreadyExists.Title +msgid "User exists" msgstr "" -#: Help.UserManagement -msgid "Some settings and actions of the CryptoBox are restricted to authenticated users. Common actions like opening and closing of volumes are usually possible without administrative permissions. Be careful when adding new users as they will have control over all features of the CryptoBox including partitioning, formatting and user management." -msgstr "" - -#: Help.AddUser -msgid "Add a new administrative user and define its password by entering it twice." -msgstr "" - -#: Help.ChangePassword -msgid "Choose a user of the following list and enter the new password twice." -msgstr "" - -#: Help.DelUser -msgid "Remove an administrative user. The user 'admin' is reserved and can not be removed." +#: WarningMessage.UserAlreadyExists.Text +msgid "The choosen username does already exist. Please choose another one." msgstr "" diff --git a/plugins/user_manager/intl/hu/cryptobox-server-feature-user_manager.po b/plugins/user_manager/intl/hu/cryptobox-server-feature-user_manager.po index 5370780..b143fd9 100644 --- a/plugins/user_manager/intl/hu/cryptobox-server-feature-user_manager.po +++ b/plugins/user_manager/intl/hu/cryptobox-server-feature-user_manager.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:42+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "User Manager" +msgid "User manager" msgstr "" #: Link @@ -49,6 +49,22 @@ msgstr "" msgid "Change user's password" msgstr "" +#: Help.UserManagement +msgid "Some settings and actions of the CryptoBox are restricted to authenticated users. Common actions like opening and closing of volumes are usually possible without administrative permissions. Be careful when adding new users as they will have control over all features of the CryptoBox including partitioning, formatting and user management." +msgstr "" + +#: Help.AddUser +msgid "Add a new administrative user and define its password by entering it twice." +msgstr "" + +#: Help.ChangePassword +msgid "Choose a user of the following list and enter the new password twice." +msgstr "" + +#: Help.DelUser +msgid "Remove an administrative user. The user 'admin' is reserved and can not be removed." +msgstr "" + #: SuccessMessage.UserAdded.Title msgid "User added" msgstr "" @@ -81,14 +97,6 @@ msgstr "" msgid "The choosen username is invalid: only letters and digits are allowed." msgstr "" -#: WarningMessage.UserAlreadyExists.Title -msgid "User exists" -msgstr "" - -#: WarningMessage.UserAlreadyExists.Text -msgid "The choosen username does already exist. Please choose another one." -msgstr "" - #: WarningMessage.NeverRemoveReservedUser.Title msgid "Reserved user" msgstr "" @@ -97,22 +105,10 @@ msgstr "" msgid "You may not remove a reserved user. Sorry!" msgstr "" -#: Name -msgid "User manager" +#: WarningMessage.UserAlreadyExists.Title +msgid "User exists" msgstr "" -#: Help.UserManagement -msgid "Some settings and actions of the CryptoBox are restricted to authenticated users. Common actions like opening and closing of volumes are usually possible without administrative permissions. Be careful when adding new users as they will have control over all features of the CryptoBox including partitioning, formatting and user management." -msgstr "" - -#: Help.AddUser -msgid "Add a new administrative user and define its password by entering it twice." -msgstr "" - -#: Help.ChangePassword -msgid "Choose a user of the following list and enter the new password twice." -msgstr "" - -#: Help.DelUser -msgid "Remove an administrative user. The user 'admin' is reserved and can not be removed." +#: WarningMessage.UserAlreadyExists.Text +msgid "The choosen username does already exist. Please choose another one." msgstr "" diff --git a/plugins/user_manager/intl/it/cryptobox-server-feature-user_manager.po b/plugins/user_manager/intl/it/cryptobox-server-feature-user_manager.po index 5370780..b143fd9 100644 --- a/plugins/user_manager/intl/it/cryptobox-server-feature-user_manager.po +++ b/plugins/user_manager/intl/it/cryptobox-server-feature-user_manager.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:42+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "User Manager" +msgid "User manager" msgstr "" #: Link @@ -49,6 +49,22 @@ msgstr "" msgid "Change user's password" msgstr "" +#: Help.UserManagement +msgid "Some settings and actions of the CryptoBox are restricted to authenticated users. Common actions like opening and closing of volumes are usually possible without administrative permissions. Be careful when adding new users as they will have control over all features of the CryptoBox including partitioning, formatting and user management." +msgstr "" + +#: Help.AddUser +msgid "Add a new administrative user and define its password by entering it twice." +msgstr "" + +#: Help.ChangePassword +msgid "Choose a user of the following list and enter the new password twice." +msgstr "" + +#: Help.DelUser +msgid "Remove an administrative user. The user 'admin' is reserved and can not be removed." +msgstr "" + #: SuccessMessage.UserAdded.Title msgid "User added" msgstr "" @@ -81,14 +97,6 @@ msgstr "" msgid "The choosen username is invalid: only letters and digits are allowed." msgstr "" -#: WarningMessage.UserAlreadyExists.Title -msgid "User exists" -msgstr "" - -#: WarningMessage.UserAlreadyExists.Text -msgid "The choosen username does already exist. Please choose another one." -msgstr "" - #: WarningMessage.NeverRemoveReservedUser.Title msgid "Reserved user" msgstr "" @@ -97,22 +105,10 @@ msgstr "" msgid "You may not remove a reserved user. Sorry!" msgstr "" -#: Name -msgid "User manager" +#: WarningMessage.UserAlreadyExists.Title +msgid "User exists" msgstr "" -#: Help.UserManagement -msgid "Some settings and actions of the CryptoBox are restricted to authenticated users. Common actions like opening and closing of volumes are usually possible without administrative permissions. Be careful when adding new users as they will have control over all features of the CryptoBox including partitioning, formatting and user management." -msgstr "" - -#: Help.AddUser -msgid "Add a new administrative user and define its password by entering it twice." -msgstr "" - -#: Help.ChangePassword -msgid "Choose a user of the following list and enter the new password twice." -msgstr "" - -#: Help.DelUser -msgid "Remove an administrative user. The user 'admin' is reserved and can not be removed." +#: WarningMessage.UserAlreadyExists.Text +msgid "The choosen username does already exist. Please choose another one." msgstr "" diff --git a/plugins/user_manager/intl/ja/cryptobox-server-feature-user_manager.po b/plugins/user_manager/intl/ja/cryptobox-server-feature-user_manager.po index 5370780..516948e 100644 --- a/plugins/user_manager/intl/ja/cryptobox-server-feature-user_manager.po +++ b/plugins/user_manager/intl/ja/cryptobox-server-feature-user_manager.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:43+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "User Manager" +msgid "User manager" msgstr "" #: Link @@ -49,6 +49,22 @@ msgstr "" msgid "Change user's password" msgstr "" +#: Help.UserManagement +msgid "Some settings and actions of the CryptoBox are restricted to authenticated users. Common actions like opening and closing of volumes are usually possible without administrative permissions. Be careful when adding new users as they will have control over all features of the CryptoBox including partitioning, formatting and user management." +msgstr "" + +#: Help.AddUser +msgid "Add a new administrative user and define its password by entering it twice." +msgstr "" + +#: Help.ChangePassword +msgid "Choose a user of the following list and enter the new password twice." +msgstr "" + +#: Help.DelUser +msgid "Remove an administrative user. The user 'admin' is reserved and can not be removed." +msgstr "" + #: SuccessMessage.UserAdded.Title msgid "User added" msgstr "" @@ -81,14 +97,6 @@ msgstr "" msgid "The choosen username is invalid: only letters and digits are allowed." msgstr "" -#: WarningMessage.UserAlreadyExists.Title -msgid "User exists" -msgstr "" - -#: WarningMessage.UserAlreadyExists.Text -msgid "The choosen username does already exist. Please choose another one." -msgstr "" - #: WarningMessage.NeverRemoveReservedUser.Title msgid "Reserved user" msgstr "" @@ -97,22 +105,10 @@ msgstr "" msgid "You may not remove a reserved user. Sorry!" msgstr "" -#: Name -msgid "User manager" +#: WarningMessage.UserAlreadyExists.Title +msgid "User exists" msgstr "" -#: Help.UserManagement -msgid "Some settings and actions of the CryptoBox are restricted to authenticated users. Common actions like opening and closing of volumes are usually possible without administrative permissions. Be careful when adding new users as they will have control over all features of the CryptoBox including partitioning, formatting and user management." -msgstr "" - -#: Help.AddUser -msgid "Add a new administrative user and define its password by entering it twice." -msgstr "" - -#: Help.ChangePassword -msgid "Choose a user of the following list and enter the new password twice." -msgstr "" - -#: Help.DelUser -msgid "Remove an administrative user. The user 'admin' is reserved and can not be removed." +#: WarningMessage.UserAlreadyExists.Text +msgid "The choosen username does already exist. Please choose another one." msgstr "" diff --git a/plugins/user_manager/intl/nl/cryptobox-server-feature-user_manager.po b/plugins/user_manager/intl/nl/cryptobox-server-feature-user_manager.po index 5370780..516948e 100644 --- a/plugins/user_manager/intl/nl/cryptobox-server-feature-user_manager.po +++ b/plugins/user_manager/intl/nl/cryptobox-server-feature-user_manager.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:43+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "User Manager" +msgid "User manager" msgstr "" #: Link @@ -49,6 +49,22 @@ msgstr "" msgid "Change user's password" msgstr "" +#: Help.UserManagement +msgid "Some settings and actions of the CryptoBox are restricted to authenticated users. Common actions like opening and closing of volumes are usually possible without administrative permissions. Be careful when adding new users as they will have control over all features of the CryptoBox including partitioning, formatting and user management." +msgstr "" + +#: Help.AddUser +msgid "Add a new administrative user and define its password by entering it twice." +msgstr "" + +#: Help.ChangePassword +msgid "Choose a user of the following list and enter the new password twice." +msgstr "" + +#: Help.DelUser +msgid "Remove an administrative user. The user 'admin' is reserved and can not be removed." +msgstr "" + #: SuccessMessage.UserAdded.Title msgid "User added" msgstr "" @@ -81,14 +97,6 @@ msgstr "" msgid "The choosen username is invalid: only letters and digits are allowed." msgstr "" -#: WarningMessage.UserAlreadyExists.Title -msgid "User exists" -msgstr "" - -#: WarningMessage.UserAlreadyExists.Text -msgid "The choosen username does already exist. Please choose another one." -msgstr "" - #: WarningMessage.NeverRemoveReservedUser.Title msgid "Reserved user" msgstr "" @@ -97,22 +105,10 @@ msgstr "" msgid "You may not remove a reserved user. Sorry!" msgstr "" -#: Name -msgid "User manager" +#: WarningMessage.UserAlreadyExists.Title +msgid "User exists" msgstr "" -#: Help.UserManagement -msgid "Some settings and actions of the CryptoBox are restricted to authenticated users. Common actions like opening and closing of volumes are usually possible without administrative permissions. Be careful when adding new users as they will have control over all features of the CryptoBox including partitioning, formatting and user management." -msgstr "" - -#: Help.AddUser -msgid "Add a new administrative user and define its password by entering it twice." -msgstr "" - -#: Help.ChangePassword -msgid "Choose a user of the following list and enter the new password twice." -msgstr "" - -#: Help.DelUser -msgid "Remove an administrative user. The user 'admin' is reserved and can not be removed." +#: WarningMessage.UserAlreadyExists.Text +msgid "The choosen username does already exist. Please choose another one." msgstr "" diff --git a/plugins/user_manager/intl/pl/cryptobox-server-feature-user_manager.po b/plugins/user_manager/intl/pl/cryptobox-server-feature-user_manager.po index 5370780..516948e 100644 --- a/plugins/user_manager/intl/pl/cryptobox-server-feature-user_manager.po +++ b/plugins/user_manager/intl/pl/cryptobox-server-feature-user_manager.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:43+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "User Manager" +msgid "User manager" msgstr "" #: Link @@ -49,6 +49,22 @@ msgstr "" msgid "Change user's password" msgstr "" +#: Help.UserManagement +msgid "Some settings and actions of the CryptoBox are restricted to authenticated users. Common actions like opening and closing of volumes are usually possible without administrative permissions. Be careful when adding new users as they will have control over all features of the CryptoBox including partitioning, formatting and user management." +msgstr "" + +#: Help.AddUser +msgid "Add a new administrative user and define its password by entering it twice." +msgstr "" + +#: Help.ChangePassword +msgid "Choose a user of the following list and enter the new password twice." +msgstr "" + +#: Help.DelUser +msgid "Remove an administrative user. The user 'admin' is reserved and can not be removed." +msgstr "" + #: SuccessMessage.UserAdded.Title msgid "User added" msgstr "" @@ -81,14 +97,6 @@ msgstr "" msgid "The choosen username is invalid: only letters and digits are allowed." msgstr "" -#: WarningMessage.UserAlreadyExists.Title -msgid "User exists" -msgstr "" - -#: WarningMessage.UserAlreadyExists.Text -msgid "The choosen username does already exist. Please choose another one." -msgstr "" - #: WarningMessage.NeverRemoveReservedUser.Title msgid "Reserved user" msgstr "" @@ -97,22 +105,10 @@ msgstr "" msgid "You may not remove a reserved user. Sorry!" msgstr "" -#: Name -msgid "User manager" +#: WarningMessage.UserAlreadyExists.Title +msgid "User exists" msgstr "" -#: Help.UserManagement -msgid "Some settings and actions of the CryptoBox are restricted to authenticated users. Common actions like opening and closing of volumes are usually possible without administrative permissions. Be careful when adding new users as they will have control over all features of the CryptoBox including partitioning, formatting and user management." -msgstr "" - -#: Help.AddUser -msgid "Add a new administrative user and define its password by entering it twice." -msgstr "" - -#: Help.ChangePassword -msgid "Choose a user of the following list and enter the new password twice." -msgstr "" - -#: Help.DelUser -msgid "Remove an administrative user. The user 'admin' is reserved and can not be removed." +#: WarningMessage.UserAlreadyExists.Text +msgid "The choosen username does already exist. Please choose another one." msgstr "" diff --git a/plugins/user_manager/intl/pt/cryptobox-server-feature-user_manager.po b/plugins/user_manager/intl/pt/cryptobox-server-feature-user_manager.po index 5370780..516948e 100644 --- a/plugins/user_manager/intl/pt/cryptobox-server-feature-user_manager.po +++ b/plugins/user_manager/intl/pt/cryptobox-server-feature-user_manager.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:43+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "User Manager" +msgid "User manager" msgstr "" #: Link @@ -49,6 +49,22 @@ msgstr "" msgid "Change user's password" msgstr "" +#: Help.UserManagement +msgid "Some settings and actions of the CryptoBox are restricted to authenticated users. Common actions like opening and closing of volumes are usually possible without administrative permissions. Be careful when adding new users as they will have control over all features of the CryptoBox including partitioning, formatting and user management." +msgstr "" + +#: Help.AddUser +msgid "Add a new administrative user and define its password by entering it twice." +msgstr "" + +#: Help.ChangePassword +msgid "Choose a user of the following list and enter the new password twice." +msgstr "" + +#: Help.DelUser +msgid "Remove an administrative user. The user 'admin' is reserved and can not be removed." +msgstr "" + #: SuccessMessage.UserAdded.Title msgid "User added" msgstr "" @@ -81,14 +97,6 @@ msgstr "" msgid "The choosen username is invalid: only letters and digits are allowed." msgstr "" -#: WarningMessage.UserAlreadyExists.Title -msgid "User exists" -msgstr "" - -#: WarningMessage.UserAlreadyExists.Text -msgid "The choosen username does already exist. Please choose another one." -msgstr "" - #: WarningMessage.NeverRemoveReservedUser.Title msgid "Reserved user" msgstr "" @@ -97,22 +105,10 @@ msgstr "" msgid "You may not remove a reserved user. Sorry!" msgstr "" -#: Name -msgid "User manager" +#: WarningMessage.UserAlreadyExists.Title +msgid "User exists" msgstr "" -#: Help.UserManagement -msgid "Some settings and actions of the CryptoBox are restricted to authenticated users. Common actions like opening and closing of volumes are usually possible without administrative permissions. Be careful when adding new users as they will have control over all features of the CryptoBox including partitioning, formatting and user management." -msgstr "" - -#: Help.AddUser -msgid "Add a new administrative user and define its password by entering it twice." -msgstr "" - -#: Help.ChangePassword -msgid "Choose a user of the following list and enter the new password twice." -msgstr "" - -#: Help.DelUser -msgid "Remove an administrative user. The user 'admin' is reserved and can not be removed." +#: WarningMessage.UserAlreadyExists.Text +msgid "The choosen username does already exist. Please choose another one." msgstr "" diff --git a/plugins/user_manager/intl/ru/cryptobox-server-feature-user_manager.po b/plugins/user_manager/intl/ru/cryptobox-server-feature-user_manager.po index 5370780..516948e 100644 --- a/plugins/user_manager/intl/ru/cryptobox-server-feature-user_manager.po +++ b/plugins/user_manager/intl/ru/cryptobox-server-feature-user_manager.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:43+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "User Manager" +msgid "User manager" msgstr "" #: Link @@ -49,6 +49,22 @@ msgstr "" msgid "Change user's password" msgstr "" +#: Help.UserManagement +msgid "Some settings and actions of the CryptoBox are restricted to authenticated users. Common actions like opening and closing of volumes are usually possible without administrative permissions. Be careful when adding new users as they will have control over all features of the CryptoBox including partitioning, formatting and user management." +msgstr "" + +#: Help.AddUser +msgid "Add a new administrative user and define its password by entering it twice." +msgstr "" + +#: Help.ChangePassword +msgid "Choose a user of the following list and enter the new password twice." +msgstr "" + +#: Help.DelUser +msgid "Remove an administrative user. The user 'admin' is reserved and can not be removed." +msgstr "" + #: SuccessMessage.UserAdded.Title msgid "User added" msgstr "" @@ -81,14 +97,6 @@ msgstr "" msgid "The choosen username is invalid: only letters and digits are allowed." msgstr "" -#: WarningMessage.UserAlreadyExists.Title -msgid "User exists" -msgstr "" - -#: WarningMessage.UserAlreadyExists.Text -msgid "The choosen username does already exist. Please choose another one." -msgstr "" - #: WarningMessage.NeverRemoveReservedUser.Title msgid "Reserved user" msgstr "" @@ -97,22 +105,10 @@ msgstr "" msgid "You may not remove a reserved user. Sorry!" msgstr "" -#: Name -msgid "User manager" +#: WarningMessage.UserAlreadyExists.Title +msgid "User exists" msgstr "" -#: Help.UserManagement -msgid "Some settings and actions of the CryptoBox are restricted to authenticated users. Common actions like opening and closing of volumes are usually possible without administrative permissions. Be careful when adding new users as they will have control over all features of the CryptoBox including partitioning, formatting and user management." -msgstr "" - -#: Help.AddUser -msgid "Add a new administrative user and define its password by entering it twice." -msgstr "" - -#: Help.ChangePassword -msgid "Choose a user of the following list and enter the new password twice." -msgstr "" - -#: Help.DelUser -msgid "Remove an administrative user. The user 'admin' is reserved and can not be removed." +#: WarningMessage.UserAlreadyExists.Text +msgid "The choosen username does already exist. Please choose another one." msgstr "" diff --git a/plugins/user_manager/intl/sl/cryptobox-server-feature-user_manager.po b/plugins/user_manager/intl/sl/cryptobox-server-feature-user_manager.po index 5370780..80063ab 100644 --- a/plugins/user_manager/intl/sl/cryptobox-server-feature-user_manager.po +++ b/plugins/user_manager/intl/sl/cryptobox-server-feature-user_manager.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:44+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "User Manager" +msgid "User manager" msgstr "" #: Link @@ -49,6 +49,22 @@ msgstr "" msgid "Change user's password" msgstr "" +#: Help.UserManagement +msgid "Some settings and actions of the CryptoBox are restricted to authenticated users. Common actions like opening and closing of volumes are usually possible without administrative permissions. Be careful when adding new users as they will have control over all features of the CryptoBox including partitioning, formatting and user management." +msgstr "" + +#: Help.AddUser +msgid "Add a new administrative user and define its password by entering it twice." +msgstr "" + +#: Help.ChangePassword +msgid "Choose a user of the following list and enter the new password twice." +msgstr "" + +#: Help.DelUser +msgid "Remove an administrative user. The user 'admin' is reserved and can not be removed." +msgstr "" + #: SuccessMessage.UserAdded.Title msgid "User added" msgstr "" @@ -81,14 +97,6 @@ msgstr "" msgid "The choosen username is invalid: only letters and digits are allowed." msgstr "" -#: WarningMessage.UserAlreadyExists.Title -msgid "User exists" -msgstr "" - -#: WarningMessage.UserAlreadyExists.Text -msgid "The choosen username does already exist. Please choose another one." -msgstr "" - #: WarningMessage.NeverRemoveReservedUser.Title msgid "Reserved user" msgstr "" @@ -97,22 +105,10 @@ msgstr "" msgid "You may not remove a reserved user. Sorry!" msgstr "" -#: Name -msgid "User manager" +#: WarningMessage.UserAlreadyExists.Title +msgid "User exists" msgstr "" -#: Help.UserManagement -msgid "Some settings and actions of the CryptoBox are restricted to authenticated users. Common actions like opening and closing of volumes are usually possible without administrative permissions. Be careful when adding new users as they will have control over all features of the CryptoBox including partitioning, formatting and user management." -msgstr "" - -#: Help.AddUser -msgid "Add a new administrative user and define its password by entering it twice." -msgstr "" - -#: Help.ChangePassword -msgid "Choose a user of the following list and enter the new password twice." -msgstr "" - -#: Help.DelUser -msgid "Remove an administrative user. The user 'admin' is reserved and can not be removed." +#: WarningMessage.UserAlreadyExists.Text +msgid "The choosen username does already exist. Please choose another one." msgstr "" diff --git a/plugins/user_manager/intl/sv/cryptobox-server-feature-user_manager.po b/plugins/user_manager/intl/sv/cryptobox-server-feature-user_manager.po index 5370780..80063ab 100644 --- a/plugins/user_manager/intl/sv/cryptobox-server-feature-user_manager.po +++ b/plugins/user_manager/intl/sv/cryptobox-server-feature-user_manager.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:44+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "User Manager" +msgid "User manager" msgstr "" #: Link @@ -49,6 +49,22 @@ msgstr "" msgid "Change user's password" msgstr "" +#: Help.UserManagement +msgid "Some settings and actions of the CryptoBox are restricted to authenticated users. Common actions like opening and closing of volumes are usually possible without administrative permissions. Be careful when adding new users as they will have control over all features of the CryptoBox including partitioning, formatting and user management." +msgstr "" + +#: Help.AddUser +msgid "Add a new administrative user and define its password by entering it twice." +msgstr "" + +#: Help.ChangePassword +msgid "Choose a user of the following list and enter the new password twice." +msgstr "" + +#: Help.DelUser +msgid "Remove an administrative user. The user 'admin' is reserved and can not be removed." +msgstr "" + #: SuccessMessage.UserAdded.Title msgid "User added" msgstr "" @@ -81,14 +97,6 @@ msgstr "" msgid "The choosen username is invalid: only letters and digits are allowed." msgstr "" -#: WarningMessage.UserAlreadyExists.Title -msgid "User exists" -msgstr "" - -#: WarningMessage.UserAlreadyExists.Text -msgid "The choosen username does already exist. Please choose another one." -msgstr "" - #: WarningMessage.NeverRemoveReservedUser.Title msgid "Reserved user" msgstr "" @@ -97,22 +105,10 @@ msgstr "" msgid "You may not remove a reserved user. Sorry!" msgstr "" -#: Name -msgid "User manager" +#: WarningMessage.UserAlreadyExists.Title +msgid "User exists" msgstr "" -#: Help.UserManagement -msgid "Some settings and actions of the CryptoBox are restricted to authenticated users. Common actions like opening and closing of volumes are usually possible without administrative permissions. Be careful when adding new users as they will have control over all features of the CryptoBox including partitioning, formatting and user management." -msgstr "" - -#: Help.AddUser -msgid "Add a new administrative user and define its password by entering it twice." -msgstr "" - -#: Help.ChangePassword -msgid "Choose a user of the following list and enter the new password twice." -msgstr "" - -#: Help.DelUser -msgid "Remove an administrative user. The user 'admin' is reserved and can not be removed." +#: WarningMessage.UserAlreadyExists.Text +msgid "The choosen username does already exist. Please choose another one." msgstr "" diff --git a/plugins/user_manager/user_list.cs b/plugins/user_manager/user_list.cs index 9249230..1a2bc93 100644 --- a/plugins/user_manager/user_list.cs +++ b/plugins/user_manager/user_list.cs @@ -1,14 +1,5 @@ - - -

@@ -19,7 +10,7 @@ - +
@@ -43,7 +34,7 @@ -
+
-
+ +

- +
- -

+

+ diff --git a/plugins/volume_chpasswd/intl/cryptobox-server-feature-volume_chpasswd.pot b/plugins/volume_chpasswd/intl/cryptobox-server-feature-volume_chpasswd.pot index d7b1409..469dbec 100644 --- a/plugins/volume_chpasswd/intl/cryptobox-server-feature-volume_chpasswd.pot +++ b/plugins/volume_chpasswd/intl/cryptobox-server-feature-volume_chpasswd.pot @@ -1,17 +1,3 @@ -msgid "" -msgstr "" -"Project-Id-Version: CryptoBox-Server 0.3\n" -"Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: sense.lab \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: utf-8\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Translate Toolkit 0.10.1\n" - #: Name msgid "Change volume password" msgstr "" @@ -28,12 +14,12 @@ msgstr "" msgid "Change password" msgstr "" -#: Button.FormatContainer -msgid "Format volume" +#: Help.Password +msgid "You can change the password of an encrypted volume easily. Just enter the current password and type the new password twice. No data will get lost." msgstr "" #: AdviceMessage.FormatForEncryptionSupport.Text -msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will destroy all data of this container." +msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will erase all data from this volume." msgstr "" #: AdviceMessage.FormatForEncryptionSupport.Link.Text @@ -55,11 +41,3 @@ msgstr "" #: AdviceMessage.WarningMessage.PasswordChange.Text msgid "The password of this volume could not be changed - sorry!" msgstr "" - -#: AdviceMessage.FormatForEncryptionSupport.Text -msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will destroy all data of this volume." -msgstr "" - -#: Help.Password -msgid "You can change the password of an encrypted volume easily. Just enter the current password and type the new password twice. No data will get lost." -msgstr "" diff --git a/plugins/volume_chpasswd/intl/cs/cryptobox-server-feature-volume_chpasswd.po b/plugins/volume_chpasswd/intl/cs/cryptobox-server-feature-volume_chpasswd.po index aee0684..aa6c0cb 100644 --- a/plugins/volume_chpasswd/intl/cs/cryptobox-server-feature-volume_chpasswd.po +++ b/plugins/volume_chpasswd/intl/cs/cryptobox-server-feature-volume_chpasswd.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,12 +29,12 @@ msgstr "" msgid "Change password" msgstr "" -#: Button.FormatContainer -msgid "Format volume" +#: Help.Password +msgid "You can change the password of an encrypted volume easily. Just enter the current password and type the new password twice. No data will get lost." msgstr "" #: AdviceMessage.FormatForEncryptionSupport.Text -msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will destroy all data of this container." +msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will erase all data from this volume." msgstr "" #: AdviceMessage.FormatForEncryptionSupport.Link.Text @@ -56,11 +56,3 @@ msgstr "" #: AdviceMessage.WarningMessage.PasswordChange.Text msgid "The password of this volume could not be changed - sorry!" msgstr "" - -#: AdviceMessage.FormatForEncryptionSupport.Text -msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will destroy all data of this volume." -msgstr "" - -#: Help.Password -msgid "You can change the password of an encrypted volume easily. Just enter the current password and type the new password twice. No data will get lost." -msgstr "" diff --git a/plugins/volume_chpasswd/intl/da/cryptobox-server-feature-volume_chpasswd.po b/plugins/volume_chpasswd/intl/da/cryptobox-server-feature-volume_chpasswd.po index aee0684..aa6c0cb 100644 --- a/plugins/volume_chpasswd/intl/da/cryptobox-server-feature-volume_chpasswd.po +++ b/plugins/volume_chpasswd/intl/da/cryptobox-server-feature-volume_chpasswd.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,12 +29,12 @@ msgstr "" msgid "Change password" msgstr "" -#: Button.FormatContainer -msgid "Format volume" +#: Help.Password +msgid "You can change the password of an encrypted volume easily. Just enter the current password and type the new password twice. No data will get lost." msgstr "" #: AdviceMessage.FormatForEncryptionSupport.Text -msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will destroy all data of this container." +msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will erase all data from this volume." msgstr "" #: AdviceMessage.FormatForEncryptionSupport.Link.Text @@ -56,11 +56,3 @@ msgstr "" #: AdviceMessage.WarningMessage.PasswordChange.Text msgid "The password of this volume could not be changed - sorry!" msgstr "" - -#: AdviceMessage.FormatForEncryptionSupport.Text -msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will destroy all data of this volume." -msgstr "" - -#: Help.Password -msgid "You can change the password of an encrypted volume easily. Just enter the current password and type the new password twice. No data will get lost." -msgstr "" diff --git a/plugins/volume_chpasswd/intl/de/cryptobox-server-feature-volume_chpasswd.po b/plugins/volume_chpasswd/intl/de/cryptobox-server-feature-volume_chpasswd.po index aee0684..6392186 100644 --- a/plugins/volume_chpasswd/intl/de/cryptobox-server-feature-volume_chpasswd.po +++ b/plugins/volume_chpasswd/intl/de/cryptobox-server-feature-volume_chpasswd.po @@ -1,66 +1,57 @@ -#, fuzzy msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" +"PO-Revision-Date: 2006-12-18 08:27+0100\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Translate Toolkit 0.10.1\n" +"X-Generator: Pootle 0.10.1\n" #: Name msgid "Change volume password" -msgstr "" +msgstr "Datenträger-Passwort ändern" #: Link msgid "Password" -msgstr "" +msgstr "Passwort" #: Title.ChangePassword msgid "Change the password of this volume" -msgstr "" +msgstr "Änderung des Datenträger-Passworts" #: Button.ChangePassword msgid "Change password" -msgstr "" - -#: Button.FormatContainer -msgid "Format volume" -msgstr "" - -#: AdviceMessage.FormatForEncryptionSupport.Text -msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will destroy all data of this container." -msgstr "" - -#: AdviceMessage.FormatForEncryptionSupport.Link.Text -msgid "Format this volume" -msgstr "" - -#: AdviceMessage.SuccessMessage.PasswordChange.Title -msgid "Password changed" -msgstr "" - -#: AdviceMessage.SuccessMessage.PasswordChange.Text -msgid "The password of this volume was changed successfully." -msgstr "" - -#: AdviceMessage.WarningMessage.PasswordChange.Title -msgid "Could not change password" -msgstr "" - -#: AdviceMessage.WarningMessage.PasswordChange.Text -msgid "The password of this volume could not be changed - sorry!" -msgstr "" - -#: AdviceMessage.FormatForEncryptionSupport.Text -msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will destroy all data of this volume." -msgstr "" +msgstr "Passwort ändern" #: Help.Password msgid "You can change the password of an encrypted volume easily. Just enter the current password and type the new password twice. No data will get lost." -msgstr "" +msgstr "Das Passwort eines verschlüsselten Datenträgers lässt sich problemlos ändern. Gib einfach das aktuelle Passwort und (zweimal) das neue Passwort ein. Dabei gehen keinerlei Daten verloren." + +#: AdviceMessage.FormatForEncryptionSupport.Text +msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will erase all data from this volume." +msgstr "Dieser Datenträger ist nicht verschlüsselt. Falls die Verschlüsselung eingeschaltet werden soll, dann muss der Datenträger formatiert werden. Beachte, dass dabei alle Daten des Datenträgers gelöscht werden." + +#: AdviceMessage.FormatForEncryptionSupport.Link.Text +msgid "Format this volume" +msgstr "Datenträger formatieren" + +#: AdviceMessage.SuccessMessage.PasswordChange.Title +msgid "Password changed" +msgstr "Passwort geändert" + +#: AdviceMessage.SuccessMessage.PasswordChange.Text +msgid "The password of this volume was changed successfully." +msgstr "Das Passwort des Datenträgers wurde erfolgreich geändert." + +#: AdviceMessage.WarningMessage.PasswordChange.Title +msgid "Could not change password" +msgstr "Passwortänderung fehlgeschlagen" + +#: AdviceMessage.WarningMessage.PasswordChange.Text +msgid "The password of this volume could not be changed - sorry!" +msgstr "Das Passwort des Datenträgers konnte nicht verändert werden!" diff --git a/plugins/volume_chpasswd/intl/en/cryptobox-server-feature-volume_chpasswd.po b/plugins/volume_chpasswd/intl/en/cryptobox-server-feature-volume_chpasswd.po index 4f77637..09da5df 100644 --- a/plugins/volume_chpasswd/intl/en/cryptobox-server-feature-volume_chpasswd.po +++ b/plugins/volume_chpasswd/intl/en/cryptobox-server-feature-volume_chpasswd.po @@ -1,5 +1,3 @@ -msgid "" -msgstr "" #: Name msgid "Change volume password" @@ -17,19 +15,13 @@ msgstr "Change the password of this volume" msgid "Change password" msgstr "Change password" -#: Button.FormatContainer -msgid "Format volume" -msgstr "Format volume" +#: Help.Password +msgid "You can change the password of an encrypted volume easily. Just enter the current password and type the new password twice. No data will get lost." +msgstr "You can change the password of an encrypted volume easily. Just enter the current password and type the new password twice. No data will get lost." #: AdviceMessage.FormatForEncryptionSupport.Text -msgid "" -"This volume is not encrypted. If you want to turn on encryption, then you " -"have to format the volume. Beware: this will destroy all data of this " -"container." -msgstr "" -"This volume is not encrypted. If you want to turn on encryption, then you " -"have to format the volume. Beware: this will destroy all data of this " -"container." +msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will erase all data from this volume." +msgstr "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will erase all data from this volume." #: AdviceMessage.FormatForEncryptionSupport.Link.Text msgid "Format this volume" @@ -51,21 +43,26 @@ msgstr "Could not change password" msgid "The password of this volume could not be changed - sorry!" msgstr "The password of this volume could not be changed - sorry!" -#: AdviceMessage.FormatForEncryptionSupport.Text -msgid "" -"This volume is not encrypted. If you want to turn on encryption, then you " -"have to format the volume. Beware: this will destroy all data of this volume." -msgstr "" -"This volume is not encrypted. If you want to turn on encryption, then you " -"have to format the volume. Beware: this will destroy all data of this volume." +#~ msgid "Format volume" +#~ msgstr "Format volume" -#: Help.Password -msgid "" -"You can change the password of an encrypted volume easily. Just enter the " -"current password and type the new password twice. No data will get lost." -msgstr "" -"You can change the password of an encrypted volume easily. Just enter the " -"current password and type the new password twice. No data will get lost." +#~ msgid "" +#~ "This volume is not encrypted. If you want to turn on encryption, then you " +#~ "have to format the volume. Beware: this will destroy all data of this " +#~ "container." +#~ msgstr "" +#~ "This volume is not encrypted. If you want to turn on encryption, then you " +#~ "have to format the volume. Beware: this will destroy all data of this " +#~ "container." + +#~ msgid "" +#~ "This volume is not encrypted. If you want to turn on encryption, then you " +#~ "have to format the volume. Beware: this will destroy all data of this " +#~ "volume." +#~ msgstr "" +#~ "This volume is not encrypted. If you want to turn on encryption, then you " +#~ "have to format the volume. Beware: this will destroy all data of this " +#~ "volume." #~ msgid "volume_format_fs" #~ msgstr "volume_format_fs" diff --git a/plugins/volume_chpasswd/intl/es/cryptobox-server-feature-volume_chpasswd.po b/plugins/volume_chpasswd/intl/es/cryptobox-server-feature-volume_chpasswd.po index aee0684..aa6c0cb 100644 --- a/plugins/volume_chpasswd/intl/es/cryptobox-server-feature-volume_chpasswd.po +++ b/plugins/volume_chpasswd/intl/es/cryptobox-server-feature-volume_chpasswd.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,12 +29,12 @@ msgstr "" msgid "Change password" msgstr "" -#: Button.FormatContainer -msgid "Format volume" +#: Help.Password +msgid "You can change the password of an encrypted volume easily. Just enter the current password and type the new password twice. No data will get lost." msgstr "" #: AdviceMessage.FormatForEncryptionSupport.Text -msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will destroy all data of this container." +msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will erase all data from this volume." msgstr "" #: AdviceMessage.FormatForEncryptionSupport.Link.Text @@ -56,11 +56,3 @@ msgstr "" #: AdviceMessage.WarningMessage.PasswordChange.Text msgid "The password of this volume could not be changed - sorry!" msgstr "" - -#: AdviceMessage.FormatForEncryptionSupport.Text -msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will destroy all data of this volume." -msgstr "" - -#: Help.Password -msgid "You can change the password of an encrypted volume easily. Just enter the current password and type the new password twice. No data will get lost." -msgstr "" diff --git a/plugins/volume_chpasswd/intl/fi/cryptobox-server-feature-volume_chpasswd.po b/plugins/volume_chpasswd/intl/fi/cryptobox-server-feature-volume_chpasswd.po index aee0684..aa6c0cb 100644 --- a/plugins/volume_chpasswd/intl/fi/cryptobox-server-feature-volume_chpasswd.po +++ b/plugins/volume_chpasswd/intl/fi/cryptobox-server-feature-volume_chpasswd.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,12 +29,12 @@ msgstr "" msgid "Change password" msgstr "" -#: Button.FormatContainer -msgid "Format volume" +#: Help.Password +msgid "You can change the password of an encrypted volume easily. Just enter the current password and type the new password twice. No data will get lost." msgstr "" #: AdviceMessage.FormatForEncryptionSupport.Text -msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will destroy all data of this container." +msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will erase all data from this volume." msgstr "" #: AdviceMessage.FormatForEncryptionSupport.Link.Text @@ -56,11 +56,3 @@ msgstr "" #: AdviceMessage.WarningMessage.PasswordChange.Text msgid "The password of this volume could not be changed - sorry!" msgstr "" - -#: AdviceMessage.FormatForEncryptionSupport.Text -msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will destroy all data of this volume." -msgstr "" - -#: Help.Password -msgid "You can change the password of an encrypted volume easily. Just enter the current password and type the new password twice. No data will get lost." -msgstr "" diff --git a/plugins/volume_chpasswd/intl/fr/cryptobox-server-feature-volume_chpasswd.po b/plugins/volume_chpasswd/intl/fr/cryptobox-server-feature-volume_chpasswd.po index aee0684..aa6c0cb 100644 --- a/plugins/volume_chpasswd/intl/fr/cryptobox-server-feature-volume_chpasswd.po +++ b/plugins/volume_chpasswd/intl/fr/cryptobox-server-feature-volume_chpasswd.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,12 +29,12 @@ msgstr "" msgid "Change password" msgstr "" -#: Button.FormatContainer -msgid "Format volume" +#: Help.Password +msgid "You can change the password of an encrypted volume easily. Just enter the current password and type the new password twice. No data will get lost." msgstr "" #: AdviceMessage.FormatForEncryptionSupport.Text -msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will destroy all data of this container." +msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will erase all data from this volume." msgstr "" #: AdviceMessage.FormatForEncryptionSupport.Link.Text @@ -56,11 +56,3 @@ msgstr "" #: AdviceMessage.WarningMessage.PasswordChange.Text msgid "The password of this volume could not be changed - sorry!" msgstr "" - -#: AdviceMessage.FormatForEncryptionSupport.Text -msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will destroy all data of this volume." -msgstr "" - -#: Help.Password -msgid "You can change the password of an encrypted volume easily. Just enter the current password and type the new password twice. No data will get lost." -msgstr "" diff --git a/plugins/volume_chpasswd/intl/hu/cryptobox-server-feature-volume_chpasswd.po b/plugins/volume_chpasswd/intl/hu/cryptobox-server-feature-volume_chpasswd.po index aee0684..aa6c0cb 100644 --- a/plugins/volume_chpasswd/intl/hu/cryptobox-server-feature-volume_chpasswd.po +++ b/plugins/volume_chpasswd/intl/hu/cryptobox-server-feature-volume_chpasswd.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,12 +29,12 @@ msgstr "" msgid "Change password" msgstr "" -#: Button.FormatContainer -msgid "Format volume" +#: Help.Password +msgid "You can change the password of an encrypted volume easily. Just enter the current password and type the new password twice. No data will get lost." msgstr "" #: AdviceMessage.FormatForEncryptionSupport.Text -msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will destroy all data of this container." +msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will erase all data from this volume." msgstr "" #: AdviceMessage.FormatForEncryptionSupport.Link.Text @@ -56,11 +56,3 @@ msgstr "" #: AdviceMessage.WarningMessage.PasswordChange.Text msgid "The password of this volume could not be changed - sorry!" msgstr "" - -#: AdviceMessage.FormatForEncryptionSupport.Text -msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will destroy all data of this volume." -msgstr "" - -#: Help.Password -msgid "You can change the password of an encrypted volume easily. Just enter the current password and type the new password twice. No data will get lost." -msgstr "" diff --git a/plugins/volume_chpasswd/intl/it/cryptobox-server-feature-volume_chpasswd.po b/plugins/volume_chpasswd/intl/it/cryptobox-server-feature-volume_chpasswd.po index aee0684..aa6c0cb 100644 --- a/plugins/volume_chpasswd/intl/it/cryptobox-server-feature-volume_chpasswd.po +++ b/plugins/volume_chpasswd/intl/it/cryptobox-server-feature-volume_chpasswd.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,12 +29,12 @@ msgstr "" msgid "Change password" msgstr "" -#: Button.FormatContainer -msgid "Format volume" +#: Help.Password +msgid "You can change the password of an encrypted volume easily. Just enter the current password and type the new password twice. No data will get lost." msgstr "" #: AdviceMessage.FormatForEncryptionSupport.Text -msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will destroy all data of this container." +msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will erase all data from this volume." msgstr "" #: AdviceMessage.FormatForEncryptionSupport.Link.Text @@ -56,11 +56,3 @@ msgstr "" #: AdviceMessage.WarningMessage.PasswordChange.Text msgid "The password of this volume could not be changed - sorry!" msgstr "" - -#: AdviceMessage.FormatForEncryptionSupport.Text -msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will destroy all data of this volume." -msgstr "" - -#: Help.Password -msgid "You can change the password of an encrypted volume easily. Just enter the current password and type the new password twice. No data will get lost." -msgstr "" diff --git a/plugins/volume_chpasswd/intl/ja/cryptobox-server-feature-volume_chpasswd.po b/plugins/volume_chpasswd/intl/ja/cryptobox-server-feature-volume_chpasswd.po index aee0684..aa6c0cb 100644 --- a/plugins/volume_chpasswd/intl/ja/cryptobox-server-feature-volume_chpasswd.po +++ b/plugins/volume_chpasswd/intl/ja/cryptobox-server-feature-volume_chpasswd.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,12 +29,12 @@ msgstr "" msgid "Change password" msgstr "" -#: Button.FormatContainer -msgid "Format volume" +#: Help.Password +msgid "You can change the password of an encrypted volume easily. Just enter the current password and type the new password twice. No data will get lost." msgstr "" #: AdviceMessage.FormatForEncryptionSupport.Text -msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will destroy all data of this container." +msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will erase all data from this volume." msgstr "" #: AdviceMessage.FormatForEncryptionSupport.Link.Text @@ -56,11 +56,3 @@ msgstr "" #: AdviceMessage.WarningMessage.PasswordChange.Text msgid "The password of this volume could not be changed - sorry!" msgstr "" - -#: AdviceMessage.FormatForEncryptionSupport.Text -msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will destroy all data of this volume." -msgstr "" - -#: Help.Password -msgid "You can change the password of an encrypted volume easily. Just enter the current password and type the new password twice. No data will get lost." -msgstr "" diff --git a/plugins/volume_chpasswd/intl/nl/cryptobox-server-feature-volume_chpasswd.po b/plugins/volume_chpasswd/intl/nl/cryptobox-server-feature-volume_chpasswd.po index aee0684..aa6c0cb 100644 --- a/plugins/volume_chpasswd/intl/nl/cryptobox-server-feature-volume_chpasswd.po +++ b/plugins/volume_chpasswd/intl/nl/cryptobox-server-feature-volume_chpasswd.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,12 +29,12 @@ msgstr "" msgid "Change password" msgstr "" -#: Button.FormatContainer -msgid "Format volume" +#: Help.Password +msgid "You can change the password of an encrypted volume easily. Just enter the current password and type the new password twice. No data will get lost." msgstr "" #: AdviceMessage.FormatForEncryptionSupport.Text -msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will destroy all data of this container." +msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will erase all data from this volume." msgstr "" #: AdviceMessage.FormatForEncryptionSupport.Link.Text @@ -56,11 +56,3 @@ msgstr "" #: AdviceMessage.WarningMessage.PasswordChange.Text msgid "The password of this volume could not be changed - sorry!" msgstr "" - -#: AdviceMessage.FormatForEncryptionSupport.Text -msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will destroy all data of this volume." -msgstr "" - -#: Help.Password -msgid "You can change the password of an encrypted volume easily. Just enter the current password and type the new password twice. No data will get lost." -msgstr "" diff --git a/plugins/volume_chpasswd/intl/pl/cryptobox-server-feature-volume_chpasswd.po b/plugins/volume_chpasswd/intl/pl/cryptobox-server-feature-volume_chpasswd.po index aee0684..aa6c0cb 100644 --- a/plugins/volume_chpasswd/intl/pl/cryptobox-server-feature-volume_chpasswd.po +++ b/plugins/volume_chpasswd/intl/pl/cryptobox-server-feature-volume_chpasswd.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,12 +29,12 @@ msgstr "" msgid "Change password" msgstr "" -#: Button.FormatContainer -msgid "Format volume" +#: Help.Password +msgid "You can change the password of an encrypted volume easily. Just enter the current password and type the new password twice. No data will get lost." msgstr "" #: AdviceMessage.FormatForEncryptionSupport.Text -msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will destroy all data of this container." +msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will erase all data from this volume." msgstr "" #: AdviceMessage.FormatForEncryptionSupport.Link.Text @@ -56,11 +56,3 @@ msgstr "" #: AdviceMessage.WarningMessage.PasswordChange.Text msgid "The password of this volume could not be changed - sorry!" msgstr "" - -#: AdviceMessage.FormatForEncryptionSupport.Text -msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will destroy all data of this volume." -msgstr "" - -#: Help.Password -msgid "You can change the password of an encrypted volume easily. Just enter the current password and type the new password twice. No data will get lost." -msgstr "" diff --git a/plugins/volume_chpasswd/intl/pt/cryptobox-server-feature-volume_chpasswd.po b/plugins/volume_chpasswd/intl/pt/cryptobox-server-feature-volume_chpasswd.po index aee0684..aa6c0cb 100644 --- a/plugins/volume_chpasswd/intl/pt/cryptobox-server-feature-volume_chpasswd.po +++ b/plugins/volume_chpasswd/intl/pt/cryptobox-server-feature-volume_chpasswd.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,12 +29,12 @@ msgstr "" msgid "Change password" msgstr "" -#: Button.FormatContainer -msgid "Format volume" +#: Help.Password +msgid "You can change the password of an encrypted volume easily. Just enter the current password and type the new password twice. No data will get lost." msgstr "" #: AdviceMessage.FormatForEncryptionSupport.Text -msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will destroy all data of this container." +msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will erase all data from this volume." msgstr "" #: AdviceMessage.FormatForEncryptionSupport.Link.Text @@ -56,11 +56,3 @@ msgstr "" #: AdviceMessage.WarningMessage.PasswordChange.Text msgid "The password of this volume could not be changed - sorry!" msgstr "" - -#: AdviceMessage.FormatForEncryptionSupport.Text -msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will destroy all data of this volume." -msgstr "" - -#: Help.Password -msgid "You can change the password of an encrypted volume easily. Just enter the current password and type the new password twice. No data will get lost." -msgstr "" diff --git a/plugins/volume_chpasswd/intl/ru/cryptobox-server-feature-volume_chpasswd.po b/plugins/volume_chpasswd/intl/ru/cryptobox-server-feature-volume_chpasswd.po index aee0684..aa6c0cb 100644 --- a/plugins/volume_chpasswd/intl/ru/cryptobox-server-feature-volume_chpasswd.po +++ b/plugins/volume_chpasswd/intl/ru/cryptobox-server-feature-volume_chpasswd.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,12 +29,12 @@ msgstr "" msgid "Change password" msgstr "" -#: Button.FormatContainer -msgid "Format volume" +#: Help.Password +msgid "You can change the password of an encrypted volume easily. Just enter the current password and type the new password twice. No data will get lost." msgstr "" #: AdviceMessage.FormatForEncryptionSupport.Text -msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will destroy all data of this container." +msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will erase all data from this volume." msgstr "" #: AdviceMessage.FormatForEncryptionSupport.Link.Text @@ -56,11 +56,3 @@ msgstr "" #: AdviceMessage.WarningMessage.PasswordChange.Text msgid "The password of this volume could not be changed - sorry!" msgstr "" - -#: AdviceMessage.FormatForEncryptionSupport.Text -msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will destroy all data of this volume." -msgstr "" - -#: Help.Password -msgid "You can change the password of an encrypted volume easily. Just enter the current password and type the new password twice. No data will get lost." -msgstr "" diff --git a/plugins/volume_chpasswd/intl/sl/cryptobox-server-feature-volume_chpasswd.po b/plugins/volume_chpasswd/intl/sl/cryptobox-server-feature-volume_chpasswd.po index aee0684..aa6c0cb 100644 --- a/plugins/volume_chpasswd/intl/sl/cryptobox-server-feature-volume_chpasswd.po +++ b/plugins/volume_chpasswd/intl/sl/cryptobox-server-feature-volume_chpasswd.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,12 +29,12 @@ msgstr "" msgid "Change password" msgstr "" -#: Button.FormatContainer -msgid "Format volume" +#: Help.Password +msgid "You can change the password of an encrypted volume easily. Just enter the current password and type the new password twice. No data will get lost." msgstr "" #: AdviceMessage.FormatForEncryptionSupport.Text -msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will destroy all data of this container." +msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will erase all data from this volume." msgstr "" #: AdviceMessage.FormatForEncryptionSupport.Link.Text @@ -56,11 +56,3 @@ msgstr "" #: AdviceMessage.WarningMessage.PasswordChange.Text msgid "The password of this volume could not be changed - sorry!" msgstr "" - -#: AdviceMessage.FormatForEncryptionSupport.Text -msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will destroy all data of this volume." -msgstr "" - -#: Help.Password -msgid "You can change the password of an encrypted volume easily. Just enter the current password and type the new password twice. No data will get lost." -msgstr "" diff --git a/plugins/volume_chpasswd/intl/sv/cryptobox-server-feature-volume_chpasswd.po b/plugins/volume_chpasswd/intl/sv/cryptobox-server-feature-volume_chpasswd.po index aee0684..aa6c0cb 100644 --- a/plugins/volume_chpasswd/intl/sv/cryptobox-server-feature-volume_chpasswd.po +++ b/plugins/volume_chpasswd/intl/sv/cryptobox-server-feature-volume_chpasswd.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,12 +29,12 @@ msgstr "" msgid "Change password" msgstr "" -#: Button.FormatContainer -msgid "Format volume" +#: Help.Password +msgid "You can change the password of an encrypted volume easily. Just enter the current password and type the new password twice. No data will get lost." msgstr "" #: AdviceMessage.FormatForEncryptionSupport.Text -msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will destroy all data of this container." +msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will erase all data from this volume." msgstr "" #: AdviceMessage.FormatForEncryptionSupport.Link.Text @@ -56,11 +56,3 @@ msgstr "" #: AdviceMessage.WarningMessage.PasswordChange.Text msgid "The password of this volume could not be changed - sorry!" msgstr "" - -#: AdviceMessage.FormatForEncryptionSupport.Text -msgid "This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will destroy all data of this volume." -msgstr "" - -#: Help.Password -msgid "You can change the password of an encrypted volume easily. Just enter the current password and type the new password twice. No data will get lost." -msgstr "" diff --git a/plugins/volume_chpasswd/language.hdf b/plugins/volume_chpasswd/language.hdf index 025dad8..705bd99 100644 --- a/plugins/volume_chpasswd/language.hdf +++ b/plugins/volume_chpasswd/language.hdf @@ -8,7 +8,6 @@ Title { Button { ChangePassword = Change password - FormatContainer = Format volume } @@ -17,7 +16,7 @@ Help.Password = You can change the password of an encrypted volume easily. Just AdviceMessage { FormatForEncryptionSupport { - Text = This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will destroy all data of this volume. + Text = This volume is not encrypted. If you want to turn on encryption, then you have to format the volume. Beware: this will erase all data from this volume. Link.Text = Format this volume Link.Rel = volume_format_fs } diff --git a/plugins/volume_details/intl/cryptobox-server-feature-volume_details.pot b/plugins/volume_details/intl/cryptobox-server-feature-volume_details.pot index 552f7ca..cd68346 100644 --- a/plugins/volume_details/intl/cryptobox-server-feature-volume_details.pot +++ b/plugins/volume_details/intl/cryptobox-server-feature-volume_details.pot @@ -1,17 +1,3 @@ -msgid "" -msgstr "" -"Project-Id-Version: CryptoBox-Server 0.3\n" -"Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: sense.lab \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: utf-8\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Translate Toolkit 0.10.1\n" - #: Name msgid "Technical details of a volume" msgstr "" @@ -33,11 +19,11 @@ msgid "Status" msgstr "" #: Text.StatusActive -msgid "active" +msgid "open" msgstr "" #: Text.StatusPassive -msgid "passive" +msgid "closed" msgstr "" #: Text.EncryptionStatus @@ -63,11 +49,3 @@ msgstr "" #: Text.Size.Used msgid "Used space of volume" msgstr "" - -#: Text.StatusActive -msgid "open" -msgstr "" - -#: Text.StatusPassive -msgid "closed" -msgstr "" diff --git a/plugins/volume_details/intl/cs/cryptobox-server-feature-volume_details.po b/plugins/volume_details/intl/cs/cryptobox-server-feature-volume_details.po index 2416052..31c3ccb 100644 --- a/plugins/volume_details/intl/cs/cryptobox-server-feature-volume_details.po +++ b/plugins/volume_details/intl/cs/cryptobox-server-feature-volume_details.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -34,11 +34,11 @@ msgid "Status" msgstr "" #: Text.StatusActive -msgid "active" +msgid "open" msgstr "" #: Text.StatusPassive -msgid "passive" +msgid "closed" msgstr "" #: Text.EncryptionStatus @@ -64,11 +64,3 @@ msgstr "" #: Text.Size.Used msgid "Used space of volume" msgstr "" - -#: Text.StatusActive -msgid "open" -msgstr "" - -#: Text.StatusPassive -msgid "closed" -msgstr "" diff --git a/plugins/volume_details/intl/da/cryptobox-server-feature-volume_details.po b/plugins/volume_details/intl/da/cryptobox-server-feature-volume_details.po index 2416052..31c3ccb 100644 --- a/plugins/volume_details/intl/da/cryptobox-server-feature-volume_details.po +++ b/plugins/volume_details/intl/da/cryptobox-server-feature-volume_details.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -34,11 +34,11 @@ msgid "Status" msgstr "" #: Text.StatusActive -msgid "active" +msgid "open" msgstr "" #: Text.StatusPassive -msgid "passive" +msgid "closed" msgstr "" #: Text.EncryptionStatus @@ -64,11 +64,3 @@ msgstr "" #: Text.Size.Used msgid "Used space of volume" msgstr "" - -#: Text.StatusActive -msgid "open" -msgstr "" - -#: Text.StatusPassive -msgid "closed" -msgstr "" diff --git a/plugins/volume_details/intl/de/cryptobox-server-feature-volume_details.po b/plugins/volume_details/intl/de/cryptobox-server-feature-volume_details.po index 2416052..306e492 100644 --- a/plugins/volume_details/intl/de/cryptobox-server-feature-volume_details.po +++ b/plugins/volume_details/intl/de/cryptobox-server-feature-volume_details.po @@ -1,74 +1,65 @@ -#, fuzzy msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" +"PO-Revision-Date: 2006-12-18 00:55+0100\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Translate Toolkit 0.10.1\n" +"X-Generator: Pootle 0.10.1\n" #: Name msgid "Technical details of a volume" -msgstr "" +msgstr "Technische Details eines Datenträgers" #: Link msgid "Details" -msgstr "" +msgstr "Details" #: Title.Details msgid "Technical details" -msgstr "" +msgstr "Technische Details" #: Text.DeviceName msgid "Name of device" -msgstr "" +msgstr "Name des Geräts" #: Text.Status msgid "Status" -msgstr "" - -#: Text.StatusActive -msgid "active" -msgstr "" - -#: Text.StatusPassive -msgid "passive" -msgstr "" - -#: Text.EncryptionStatus -msgid "Encryption" -msgstr "" - -#: Text.Yes -msgid "Yes" -msgstr "" - -#: Text.No -msgid "No" -msgstr "" - -#: Text.Size.All -msgid "Space of volume" -msgstr "" - -#: Text.Size.Avail -msgid "Available space of volume" -msgstr "" - -#: Text.Size.Used -msgid "Used space of volume" -msgstr "" +msgstr "Status" #: Text.StatusActive msgid "open" -msgstr "" +msgstr "geöffnet" #: Text.StatusPassive msgid "closed" -msgstr "" +msgstr "geschlossen" + +#: Text.EncryptionStatus +msgid "Encryption" +msgstr "Verschlüsselung" + +#: Text.Yes +msgid "Yes" +msgstr "Ja" + +#: Text.No +msgid "No" +msgstr "Nein" + +#: Text.Size.All +msgid "Space of volume" +msgstr "Kapazität des Datenträgers" + +#: Text.Size.Avail +msgid "Available space of volume" +msgstr "Verfügbarer Speicherplatz des Datenträgers" + +#: Text.Size.Used +msgid "Used space of volume" +msgstr "Belegter Speicherplatz des Datenträgers" diff --git a/plugins/volume_details/intl/en/cryptobox-server-feature-volume_details.po b/plugins/volume_details/intl/en/cryptobox-server-feature-volume_details.po index 3a5c796..a8fd068 100644 --- a/plugins/volume_details/intl/en/cryptobox-server-feature-volume_details.po +++ b/plugins/volume_details/intl/en/cryptobox-server-feature-volume_details.po @@ -1,5 +1,3 @@ -msgid "" -msgstr "" #: Name msgid "Technical details of a volume" @@ -22,12 +20,12 @@ msgid "Status" msgstr "Status" #: Text.StatusActive -msgid "active" -msgstr "active" +msgid "open" +msgstr "open" #: Text.StatusPassive -msgid "passive" -msgstr "passive" +msgid "closed" +msgstr "closed" #: Text.EncryptionStatus msgid "Encryption" @@ -53,10 +51,8 @@ msgstr "Available space of volume" msgid "Used space of volume" msgstr "Used space of volume" -#: Text.StatusActive -msgid "open" -msgstr "open" +#~ msgid "active" +#~ msgstr "active" -#: Text.StatusPassive -msgid "closed" -msgstr "closed" +#~ msgid "passive" +#~ msgstr "passive" diff --git a/plugins/volume_details/intl/es/cryptobox-server-feature-volume_details.po b/plugins/volume_details/intl/es/cryptobox-server-feature-volume_details.po index 2416052..31c3ccb 100644 --- a/plugins/volume_details/intl/es/cryptobox-server-feature-volume_details.po +++ b/plugins/volume_details/intl/es/cryptobox-server-feature-volume_details.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -34,11 +34,11 @@ msgid "Status" msgstr "" #: Text.StatusActive -msgid "active" +msgid "open" msgstr "" #: Text.StatusPassive -msgid "passive" +msgid "closed" msgstr "" #: Text.EncryptionStatus @@ -64,11 +64,3 @@ msgstr "" #: Text.Size.Used msgid "Used space of volume" msgstr "" - -#: Text.StatusActive -msgid "open" -msgstr "" - -#: Text.StatusPassive -msgid "closed" -msgstr "" diff --git a/plugins/volume_details/intl/fi/cryptobox-server-feature-volume_details.po b/plugins/volume_details/intl/fi/cryptobox-server-feature-volume_details.po index 2416052..31c3ccb 100644 --- a/plugins/volume_details/intl/fi/cryptobox-server-feature-volume_details.po +++ b/plugins/volume_details/intl/fi/cryptobox-server-feature-volume_details.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -34,11 +34,11 @@ msgid "Status" msgstr "" #: Text.StatusActive -msgid "active" +msgid "open" msgstr "" #: Text.StatusPassive -msgid "passive" +msgid "closed" msgstr "" #: Text.EncryptionStatus @@ -64,11 +64,3 @@ msgstr "" #: Text.Size.Used msgid "Used space of volume" msgstr "" - -#: Text.StatusActive -msgid "open" -msgstr "" - -#: Text.StatusPassive -msgid "closed" -msgstr "" diff --git a/plugins/volume_details/intl/fr/cryptobox-server-feature-volume_details.po b/plugins/volume_details/intl/fr/cryptobox-server-feature-volume_details.po index 2416052..31c3ccb 100644 --- a/plugins/volume_details/intl/fr/cryptobox-server-feature-volume_details.po +++ b/plugins/volume_details/intl/fr/cryptobox-server-feature-volume_details.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -34,11 +34,11 @@ msgid "Status" msgstr "" #: Text.StatusActive -msgid "active" +msgid "open" msgstr "" #: Text.StatusPassive -msgid "passive" +msgid "closed" msgstr "" #: Text.EncryptionStatus @@ -64,11 +64,3 @@ msgstr "" #: Text.Size.Used msgid "Used space of volume" msgstr "" - -#: Text.StatusActive -msgid "open" -msgstr "" - -#: Text.StatusPassive -msgid "closed" -msgstr "" diff --git a/plugins/volume_details/intl/hu/cryptobox-server-feature-volume_details.po b/plugins/volume_details/intl/hu/cryptobox-server-feature-volume_details.po index 2416052..31c3ccb 100644 --- a/plugins/volume_details/intl/hu/cryptobox-server-feature-volume_details.po +++ b/plugins/volume_details/intl/hu/cryptobox-server-feature-volume_details.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -34,11 +34,11 @@ msgid "Status" msgstr "" #: Text.StatusActive -msgid "active" +msgid "open" msgstr "" #: Text.StatusPassive -msgid "passive" +msgid "closed" msgstr "" #: Text.EncryptionStatus @@ -64,11 +64,3 @@ msgstr "" #: Text.Size.Used msgid "Used space of volume" msgstr "" - -#: Text.StatusActive -msgid "open" -msgstr "" - -#: Text.StatusPassive -msgid "closed" -msgstr "" diff --git a/plugins/volume_details/intl/it/cryptobox-server-feature-volume_details.po b/plugins/volume_details/intl/it/cryptobox-server-feature-volume_details.po index 2416052..31c3ccb 100644 --- a/plugins/volume_details/intl/it/cryptobox-server-feature-volume_details.po +++ b/plugins/volume_details/intl/it/cryptobox-server-feature-volume_details.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -34,11 +34,11 @@ msgid "Status" msgstr "" #: Text.StatusActive -msgid "active" +msgid "open" msgstr "" #: Text.StatusPassive -msgid "passive" +msgid "closed" msgstr "" #: Text.EncryptionStatus @@ -64,11 +64,3 @@ msgstr "" #: Text.Size.Used msgid "Used space of volume" msgstr "" - -#: Text.StatusActive -msgid "open" -msgstr "" - -#: Text.StatusPassive -msgid "closed" -msgstr "" diff --git a/plugins/volume_details/intl/ja/cryptobox-server-feature-volume_details.po b/plugins/volume_details/intl/ja/cryptobox-server-feature-volume_details.po index 2416052..31c3ccb 100644 --- a/plugins/volume_details/intl/ja/cryptobox-server-feature-volume_details.po +++ b/plugins/volume_details/intl/ja/cryptobox-server-feature-volume_details.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -34,11 +34,11 @@ msgid "Status" msgstr "" #: Text.StatusActive -msgid "active" +msgid "open" msgstr "" #: Text.StatusPassive -msgid "passive" +msgid "closed" msgstr "" #: Text.EncryptionStatus @@ -64,11 +64,3 @@ msgstr "" #: Text.Size.Used msgid "Used space of volume" msgstr "" - -#: Text.StatusActive -msgid "open" -msgstr "" - -#: Text.StatusPassive -msgid "closed" -msgstr "" diff --git a/plugins/volume_details/intl/nl/cryptobox-server-feature-volume_details.po b/plugins/volume_details/intl/nl/cryptobox-server-feature-volume_details.po index 2416052..31c3ccb 100644 --- a/plugins/volume_details/intl/nl/cryptobox-server-feature-volume_details.po +++ b/plugins/volume_details/intl/nl/cryptobox-server-feature-volume_details.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -34,11 +34,11 @@ msgid "Status" msgstr "" #: Text.StatusActive -msgid "active" +msgid "open" msgstr "" #: Text.StatusPassive -msgid "passive" +msgid "closed" msgstr "" #: Text.EncryptionStatus @@ -64,11 +64,3 @@ msgstr "" #: Text.Size.Used msgid "Used space of volume" msgstr "" - -#: Text.StatusActive -msgid "open" -msgstr "" - -#: Text.StatusPassive -msgid "closed" -msgstr "" diff --git a/plugins/volume_details/intl/pl/cryptobox-server-feature-volume_details.po b/plugins/volume_details/intl/pl/cryptobox-server-feature-volume_details.po index 2416052..31c3ccb 100644 --- a/plugins/volume_details/intl/pl/cryptobox-server-feature-volume_details.po +++ b/plugins/volume_details/intl/pl/cryptobox-server-feature-volume_details.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -34,11 +34,11 @@ msgid "Status" msgstr "" #: Text.StatusActive -msgid "active" +msgid "open" msgstr "" #: Text.StatusPassive -msgid "passive" +msgid "closed" msgstr "" #: Text.EncryptionStatus @@ -64,11 +64,3 @@ msgstr "" #: Text.Size.Used msgid "Used space of volume" msgstr "" - -#: Text.StatusActive -msgid "open" -msgstr "" - -#: Text.StatusPassive -msgid "closed" -msgstr "" diff --git a/plugins/volume_details/intl/pt/cryptobox-server-feature-volume_details.po b/plugins/volume_details/intl/pt/cryptobox-server-feature-volume_details.po index 2416052..31c3ccb 100644 --- a/plugins/volume_details/intl/pt/cryptobox-server-feature-volume_details.po +++ b/plugins/volume_details/intl/pt/cryptobox-server-feature-volume_details.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -34,11 +34,11 @@ msgid "Status" msgstr "" #: Text.StatusActive -msgid "active" +msgid "open" msgstr "" #: Text.StatusPassive -msgid "passive" +msgid "closed" msgstr "" #: Text.EncryptionStatus @@ -64,11 +64,3 @@ msgstr "" #: Text.Size.Used msgid "Used space of volume" msgstr "" - -#: Text.StatusActive -msgid "open" -msgstr "" - -#: Text.StatusPassive -msgid "closed" -msgstr "" diff --git a/plugins/volume_details/intl/ru/cryptobox-server-feature-volume_details.po b/plugins/volume_details/intl/ru/cryptobox-server-feature-volume_details.po index 2416052..31c3ccb 100644 --- a/plugins/volume_details/intl/ru/cryptobox-server-feature-volume_details.po +++ b/plugins/volume_details/intl/ru/cryptobox-server-feature-volume_details.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -34,11 +34,11 @@ msgid "Status" msgstr "" #: Text.StatusActive -msgid "active" +msgid "open" msgstr "" #: Text.StatusPassive -msgid "passive" +msgid "closed" msgstr "" #: Text.EncryptionStatus @@ -64,11 +64,3 @@ msgstr "" #: Text.Size.Used msgid "Used space of volume" msgstr "" - -#: Text.StatusActive -msgid "open" -msgstr "" - -#: Text.StatusPassive -msgid "closed" -msgstr "" diff --git a/plugins/volume_details/intl/sl/cryptobox-server-feature-volume_details.po b/plugins/volume_details/intl/sl/cryptobox-server-feature-volume_details.po index 2416052..31c3ccb 100644 --- a/plugins/volume_details/intl/sl/cryptobox-server-feature-volume_details.po +++ b/plugins/volume_details/intl/sl/cryptobox-server-feature-volume_details.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -34,11 +34,11 @@ msgid "Status" msgstr "" #: Text.StatusActive -msgid "active" +msgid "open" msgstr "" #: Text.StatusPassive -msgid "passive" +msgid "closed" msgstr "" #: Text.EncryptionStatus @@ -64,11 +64,3 @@ msgstr "" #: Text.Size.Used msgid "Used space of volume" msgstr "" - -#: Text.StatusActive -msgid "open" -msgstr "" - -#: Text.StatusPassive -msgid "closed" -msgstr "" diff --git a/plugins/volume_details/intl/sv/cryptobox-server-feature-volume_details.po b/plugins/volume_details/intl/sv/cryptobox-server-feature-volume_details.po index 2416052..31c3ccb 100644 --- a/plugins/volume_details/intl/sv/cryptobox-server-feature-volume_details.po +++ b/plugins/volume_details/intl/sv/cryptobox-server-feature-volume_details.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -34,11 +34,11 @@ msgid "Status" msgstr "" #: Text.StatusActive -msgid "active" +msgid "open" msgstr "" #: Text.StatusPassive -msgid "passive" +msgid "closed" msgstr "" #: Text.EncryptionStatus @@ -64,11 +64,3 @@ msgstr "" #: Text.Size.Used msgid "Used space of volume" msgstr "" - -#: Text.StatusActive -msgid "open" -msgstr "" - -#: Text.StatusPassive -msgid "closed" -msgstr "" diff --git a/plugins/volume_format_fs/intl/cryptobox-server-feature-volume_format_fs.pot b/plugins/volume_format_fs/intl/cryptobox-server-feature-volume_format_fs.pot index e39569b..5bb5f4b 100644 --- a/plugins/volume_format_fs/intl/cryptobox-server-feature-volume_format_fs.pot +++ b/plugins/volume_format_fs/intl/cryptobox-server-feature-volume_format_fs.pot @@ -1,17 +1,3 @@ -msgid "" -msgstr "" -"Project-Id-Version: CryptoBox-Server 0.3\n" -"Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: sense.lab \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: utf-8\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Translate Toolkit 0.10.1\n" - #: Name msgid "Create filesystems" msgstr "" @@ -48,24 +34,40 @@ msgstr "" msgid "No" msgstr "" +#: Help.Format +msgid "Usually you will only have to format a volume if you want to turn encryption on or off. Be aware, that you will erase all data from this volume." +msgstr "" + +#: Help.Filesystem +msgid "Use a filesystem of your choice. The linux filesystem (ext3) should be a good choice. The windows filesystem (Fat32) is only useful, if you plan to connect your harddisk directly to a computer running the windows operating system." +msgstr "" + +#: Help.Encryption +msgid "Enable encryption if you want to keep your data private. You have to enter the password to open an encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." +msgstr "" + +#: Help.Password +msgid "Please choose a very good password consisting of letters, digits and special characters. There is no minimal length required, but you should not use less than ten characters. Twenty or more are recommended." +msgstr "" + #: AdviceMessage.FormatWarning.Text msgid "All data of the selected filesystem will get lost!" msgstr "" #: AdviceMessage.UnmountBeforeInit.Text -msgid "You must deactivate this volume before you may initialize it." +msgid "You must close this volume before you may initialize it." msgstr "" #: AdviceMessage.UnmountBeforeInit.Link.Text -msgid "Deactive volume now" +msgid "Close volume now" msgstr "" #: SuccessMessage.FormatSuccess.Title -msgid "Formatting successful" +msgid "Formatting is running" msgstr "" #: SuccessMessage.FormatSuccess.Text -msgid "The selected filesystem was successfully formatted." +msgid "The selected filesystem is being formatted in the background. This may take some time (depending on the size of your disk)." msgstr "" #: WarningMessage.FormatNotConfirmed.Title @@ -84,42 +86,6 @@ msgstr "" msgid "Formatting of the selected filesystem failed for unknown reasons - sorry!" msgstr "" -#: SuccessMessage.FormatSuccess.Title -msgid "Formatting is running" -msgstr "" - -#: SuccessMessage.FormatSuccess.Text -msgid "The selected filesystem is being formatted in the background. This may take some time (depending on the size of your disk)." -msgstr "" - #: WarningMessage.FormatFailed.Link.Text msgid "View log messages" msgstr "" - -#: Help.Format -msgid "Usually you will only have to format a volume if you want to turn encryption on or off. Be aware, that you will destroy all data of this volume." -msgstr "" - -#: Help.Filesystem -msgid "Use a filesystem of your choice. The linux filesystem (ext3) should be a good choice. The windows filesystem (Fat32) is only useful, if you plan to connect your harddisk directly to a computer running the windows operating system." -msgstr "" - -#: Help.Encryption -msgid "Enable encryption if you want to keep your data private. You have to enter the password to open a encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." -msgstr "" - -#: Help.Password -msgid "Please choose a very good password consisting of letters, digits and special characters. There is no minimal length required, but you should not use less than ten characters. Twenty or more are recommended." -msgstr "" - -#: AdviceMessage.UnmountBeforeInit.Text -msgid "You must close this volume before you may initialize it." -msgstr "" - -#: AdviceMessage.UnmountBeforeInit.Link.Text -msgid "Close volume now" -msgstr "" - -#: Help.Encryption -msgid "Enable encryption if you want to keep your data private. You have to enter the password to open an encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." -msgstr "" diff --git a/plugins/volume_format_fs/intl/cs/cryptobox-server-feature-volume_format_fs.po b/plugins/volume_format_fs/intl/cs/cryptobox-server-feature-volume_format_fs.po index 6295b89..513ec96 100644 --- a/plugins/volume_format_fs/intl/cs/cryptobox-server-feature-volume_format_fs.po +++ b/plugins/volume_format_fs/intl/cs/cryptobox-server-feature-volume_format_fs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -49,24 +49,40 @@ msgstr "" msgid "No" msgstr "" +#: Help.Format +msgid "Usually you will only have to format a volume if you want to turn encryption on or off. Be aware, that you will erase all data from this volume." +msgstr "" + +#: Help.Filesystem +msgid "Use a filesystem of your choice. The linux filesystem (ext3) should be a good choice. The windows filesystem (Fat32) is only useful, if you plan to connect your harddisk directly to a computer running the windows operating system." +msgstr "" + +#: Help.Encryption +msgid "Enable encryption if you want to keep your data private. You have to enter the password to open an encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." +msgstr "" + +#: Help.Password +msgid "Please choose a very good password consisting of letters, digits and special characters. There is no minimal length required, but you should not use less than ten characters. Twenty or more are recommended." +msgstr "" + #: AdviceMessage.FormatWarning.Text msgid "All data of the selected filesystem will get lost!" msgstr "" #: AdviceMessage.UnmountBeforeInit.Text -msgid "You must deactivate this volume before you may initialize it." +msgid "You must close this volume before you may initialize it." msgstr "" #: AdviceMessage.UnmountBeforeInit.Link.Text -msgid "Deactive volume now" +msgid "Close volume now" msgstr "" #: SuccessMessage.FormatSuccess.Title -msgid "Formatting successful" +msgid "Formatting is running" msgstr "" #: SuccessMessage.FormatSuccess.Text -msgid "The selected filesystem was successfully formatted." +msgid "The selected filesystem is being formatted in the background. This may take some time (depending on the size of your disk)." msgstr "" #: WarningMessage.FormatNotConfirmed.Title @@ -85,42 +101,6 @@ msgstr "" msgid "Formatting of the selected filesystem failed for unknown reasons - sorry!" msgstr "" -#: SuccessMessage.FormatSuccess.Title -msgid "Formatting is running" -msgstr "" - -#: SuccessMessage.FormatSuccess.Text -msgid "The selected filesystem is being formatted in the background. This may take some time (depending on the size of your disk)." -msgstr "" - #: WarningMessage.FormatFailed.Link.Text msgid "View log messages" msgstr "" - -#: Help.Format -msgid "Usually you will only have to format a volume if you want to turn encryption on or off. Be aware, that you will destroy all data of this volume." -msgstr "" - -#: Help.Filesystem -msgid "Use a filesystem of your choice. The linux filesystem (ext3) should be a good choice. The windows filesystem (Fat32) is only useful, if you plan to connect your harddisk directly to a computer running the windows operating system." -msgstr "" - -#: Help.Encryption -msgid "Enable encryption if you want to keep your data private. You have to enter the password to open a encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." -msgstr "" - -#: Help.Password -msgid "Please choose a very good password consisting of letters, digits and special characters. There is no minimal length required, but you should not use less than ten characters. Twenty or more are recommended." -msgstr "" - -#: AdviceMessage.UnmountBeforeInit.Text -msgid "You must close this volume before you may initialize it." -msgstr "" - -#: AdviceMessage.UnmountBeforeInit.Link.Text -msgid "Close volume now" -msgstr "" - -#: Help.Encryption -msgid "Enable encryption if you want to keep your data private. You have to enter the password to open an encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." -msgstr "" diff --git a/plugins/volume_format_fs/intl/da/cryptobox-server-feature-volume_format_fs.po b/plugins/volume_format_fs/intl/da/cryptobox-server-feature-volume_format_fs.po index 6295b89..513ec96 100644 --- a/plugins/volume_format_fs/intl/da/cryptobox-server-feature-volume_format_fs.po +++ b/plugins/volume_format_fs/intl/da/cryptobox-server-feature-volume_format_fs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -49,24 +49,40 @@ msgstr "" msgid "No" msgstr "" +#: Help.Format +msgid "Usually you will only have to format a volume if you want to turn encryption on or off. Be aware, that you will erase all data from this volume." +msgstr "" + +#: Help.Filesystem +msgid "Use a filesystem of your choice. The linux filesystem (ext3) should be a good choice. The windows filesystem (Fat32) is only useful, if you plan to connect your harddisk directly to a computer running the windows operating system." +msgstr "" + +#: Help.Encryption +msgid "Enable encryption if you want to keep your data private. You have to enter the password to open an encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." +msgstr "" + +#: Help.Password +msgid "Please choose a very good password consisting of letters, digits and special characters. There is no minimal length required, but you should not use less than ten characters. Twenty or more are recommended." +msgstr "" + #: AdviceMessage.FormatWarning.Text msgid "All data of the selected filesystem will get lost!" msgstr "" #: AdviceMessage.UnmountBeforeInit.Text -msgid "You must deactivate this volume before you may initialize it." +msgid "You must close this volume before you may initialize it." msgstr "" #: AdviceMessage.UnmountBeforeInit.Link.Text -msgid "Deactive volume now" +msgid "Close volume now" msgstr "" #: SuccessMessage.FormatSuccess.Title -msgid "Formatting successful" +msgid "Formatting is running" msgstr "" #: SuccessMessage.FormatSuccess.Text -msgid "The selected filesystem was successfully formatted." +msgid "The selected filesystem is being formatted in the background. This may take some time (depending on the size of your disk)." msgstr "" #: WarningMessage.FormatNotConfirmed.Title @@ -85,42 +101,6 @@ msgstr "" msgid "Formatting of the selected filesystem failed for unknown reasons - sorry!" msgstr "" -#: SuccessMessage.FormatSuccess.Title -msgid "Formatting is running" -msgstr "" - -#: SuccessMessage.FormatSuccess.Text -msgid "The selected filesystem is being formatted in the background. This may take some time (depending on the size of your disk)." -msgstr "" - #: WarningMessage.FormatFailed.Link.Text msgid "View log messages" msgstr "" - -#: Help.Format -msgid "Usually you will only have to format a volume if you want to turn encryption on or off. Be aware, that you will destroy all data of this volume." -msgstr "" - -#: Help.Filesystem -msgid "Use a filesystem of your choice. The linux filesystem (ext3) should be a good choice. The windows filesystem (Fat32) is only useful, if you plan to connect your harddisk directly to a computer running the windows operating system." -msgstr "" - -#: Help.Encryption -msgid "Enable encryption if you want to keep your data private. You have to enter the password to open a encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." -msgstr "" - -#: Help.Password -msgid "Please choose a very good password consisting of letters, digits and special characters. There is no minimal length required, but you should not use less than ten characters. Twenty or more are recommended." -msgstr "" - -#: AdviceMessage.UnmountBeforeInit.Text -msgid "You must close this volume before you may initialize it." -msgstr "" - -#: AdviceMessage.UnmountBeforeInit.Link.Text -msgid "Close volume now" -msgstr "" - -#: Help.Encryption -msgid "Enable encryption if you want to keep your data private. You have to enter the password to open an encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." -msgstr "" diff --git a/plugins/volume_format_fs/intl/de/cryptobox-server-feature-volume_format_fs.po b/plugins/volume_format_fs/intl/de/cryptobox-server-feature-volume_format_fs.po index 6295b89..513ec96 100644 --- a/plugins/volume_format_fs/intl/de/cryptobox-server-feature-volume_format_fs.po +++ b/plugins/volume_format_fs/intl/de/cryptobox-server-feature-volume_format_fs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -49,24 +49,40 @@ msgstr "" msgid "No" msgstr "" +#: Help.Format +msgid "Usually you will only have to format a volume if you want to turn encryption on or off. Be aware, that you will erase all data from this volume." +msgstr "" + +#: Help.Filesystem +msgid "Use a filesystem of your choice. The linux filesystem (ext3) should be a good choice. The windows filesystem (Fat32) is only useful, if you plan to connect your harddisk directly to a computer running the windows operating system." +msgstr "" + +#: Help.Encryption +msgid "Enable encryption if you want to keep your data private. You have to enter the password to open an encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." +msgstr "" + +#: Help.Password +msgid "Please choose a very good password consisting of letters, digits and special characters. There is no minimal length required, but you should not use less than ten characters. Twenty or more are recommended." +msgstr "" + #: AdviceMessage.FormatWarning.Text msgid "All data of the selected filesystem will get lost!" msgstr "" #: AdviceMessage.UnmountBeforeInit.Text -msgid "You must deactivate this volume before you may initialize it." +msgid "You must close this volume before you may initialize it." msgstr "" #: AdviceMessage.UnmountBeforeInit.Link.Text -msgid "Deactive volume now" +msgid "Close volume now" msgstr "" #: SuccessMessage.FormatSuccess.Title -msgid "Formatting successful" +msgid "Formatting is running" msgstr "" #: SuccessMessage.FormatSuccess.Text -msgid "The selected filesystem was successfully formatted." +msgid "The selected filesystem is being formatted in the background. This may take some time (depending on the size of your disk)." msgstr "" #: WarningMessage.FormatNotConfirmed.Title @@ -85,42 +101,6 @@ msgstr "" msgid "Formatting of the selected filesystem failed for unknown reasons - sorry!" msgstr "" -#: SuccessMessage.FormatSuccess.Title -msgid "Formatting is running" -msgstr "" - -#: SuccessMessage.FormatSuccess.Text -msgid "The selected filesystem is being formatted in the background. This may take some time (depending on the size of your disk)." -msgstr "" - #: WarningMessage.FormatFailed.Link.Text msgid "View log messages" msgstr "" - -#: Help.Format -msgid "Usually you will only have to format a volume if you want to turn encryption on or off. Be aware, that you will destroy all data of this volume." -msgstr "" - -#: Help.Filesystem -msgid "Use a filesystem of your choice. The linux filesystem (ext3) should be a good choice. The windows filesystem (Fat32) is only useful, if you plan to connect your harddisk directly to a computer running the windows operating system." -msgstr "" - -#: Help.Encryption -msgid "Enable encryption if you want to keep your data private. You have to enter the password to open a encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." -msgstr "" - -#: Help.Password -msgid "Please choose a very good password consisting of letters, digits and special characters. There is no minimal length required, but you should not use less than ten characters. Twenty or more are recommended." -msgstr "" - -#: AdviceMessage.UnmountBeforeInit.Text -msgid "You must close this volume before you may initialize it." -msgstr "" - -#: AdviceMessage.UnmountBeforeInit.Link.Text -msgid "Close volume now" -msgstr "" - -#: Help.Encryption -msgid "Enable encryption if you want to keep your data private. You have to enter the password to open an encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." -msgstr "" diff --git a/plugins/volume_format_fs/intl/en/cryptobox-server-feature-volume_format_fs.po b/plugins/volume_format_fs/intl/en/cryptobox-server-feature-volume_format_fs.po index ad0b443..2edb09b 100644 --- a/plugins/volume_format_fs/intl/en/cryptobox-server-feature-volume_format_fs.po +++ b/plugins/volume_format_fs/intl/en/cryptobox-server-feature-volume_format_fs.po @@ -1,5 +1,3 @@ -msgid "" -msgstr "" #: Name msgid "Create filesystems" @@ -37,25 +35,41 @@ msgstr "Yes" msgid "No" msgstr "No" +#: Help.Format +msgid "Usually you will only have to format a volume if you want to turn encryption on or off. Be aware, that you will erase all data from this volume." +msgstr "Usually you will only have to format a volume if you want to turn encryption on or off. Be aware, that you will erase all data from this volume." + +#: Help.Filesystem +msgid "Use a filesystem of your choice. The linux filesystem (ext3) should be a good choice. The windows filesystem (Fat32) is only useful, if you plan to connect your harddisk directly to a computer running the windows operating system." +msgstr "Use a filesystem of your choice. The linux filesystem (ext3) should be a good choice. The windows filesystem (Fat32) is only useful, if you plan to connect your harddisk directly to a computer running the windows operating system." + +#: Help.Encryption +msgid "Enable encryption if you want to keep your data private. You have to enter the password to open an encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." +msgstr "Enable encryption if you want to keep your data private. You have to enter the password to open an encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." + +#: Help.Password +msgid "Please choose a very good password consisting of letters, digits and special characters. There is no minimal length required, but you should not use less than ten characters. Twenty or more are recommended." +msgstr "Please choose a very good password consisting of letters, digits and special characters. There is no minimal length required, but you should not use less than ten characters. Twenty or more are recommended." + #: AdviceMessage.FormatWarning.Text msgid "All data of the selected filesystem will get lost!" msgstr "All data of the selected filesystem will get lost!" #: AdviceMessage.UnmountBeforeInit.Text -msgid "You must deactivate this volume before you may initialize it." -msgstr "You must deactivate this volume before you may initialize it." +msgid "You must close this volume before you may initialize it." +msgstr "You must close this volume before you may initialize it." #: AdviceMessage.UnmountBeforeInit.Link.Text -msgid "Deactive volume now" -msgstr "Deactive volume now" +msgid "Close volume now" +msgstr "Close volume now" #: SuccessMessage.FormatSuccess.Title -msgid "Formatting successful" -msgstr "Formatting successful" +msgid "Formatting is running" +msgstr "Formatting is running" #: SuccessMessage.FormatSuccess.Text -msgid "The selected filesystem was successfully formatted." -msgstr "The selected filesystem was successfully formatted." +msgid "The selected filesystem is being formatted in the background. This may take some time (depending on the size of your disk)." +msgstr "The selected filesystem is being formatted in the background. This may take some time (depending on the size of your disk)." #: WarningMessage.FormatNotConfirmed.Title msgid "Confirmation missing" @@ -70,88 +84,44 @@ msgid "Formatting failed" msgstr "Formatting failed" #: WarningMessage.FormatFailed.Text -msgid "" -"Formatting of the selected filesystem failed for unknown reasons - sorry!" -msgstr "" -"Formatting of the selected filesystem failed for unknown reasons - sorry!" - -#: SuccessMessage.FormatSuccess.Title -msgid "Formatting is running" -msgstr "Formatting is running" - -#: SuccessMessage.FormatSuccess.Text -msgid "" -"The selected filesystem is being formatted in the background. This may take " -"some time (depending on the size of your disk)." -msgstr "" -"The selected filesystem is being formatted in the background. This may take " -"some time (depending on the size of your disk)." +msgid "Formatting of the selected filesystem failed for unknown reasons - sorry!" +msgstr "Formatting of the selected filesystem failed for unknown reasons - sorry!" #: WarningMessage.FormatFailed.Link.Text msgid "View log messages" msgstr "View log messages" -#: Help.Format -msgid "" -"Usually you will only have to format a volume if you want to turn encryption " -"on or off. Be aware, that you will destroy all data of this volume." -msgstr "" -"Usually you will only have to format a volume if you want to turn encryption " -"on or off. Be aware, that you will destroy all data of this volume." +#~ msgid "You must deactivate this volume before you may initialize it." +#~ msgstr "You must deactivate this volume before you may initialize it." -#: Help.Filesystem -msgid "" -"Use a filesystem of your choice. The linux filesystem (ext3) should be a " -"good choice. The windows filesystem (Fat32) is only useful, if you plan to " -"connect your harddisk directly to a computer running the windows operating " -"system." -msgstr "" -"Use a filesystem of your choice. The linux filesystem (ext3) should be a " -"good choice. The windows filesystem (Fat32) is only useful, if you plan to " -"connect your harddisk directly to a computer running the windows operating " -"system." +#~ msgid "Deactive volume now" +#~ msgstr "Deactive volume now" -#: Help.Encryption -msgid "" -"Enable encryption if you want to keep your data private. You have to enter " -"the password to open a encrypted container. Be aware that your encrypted " -"data is accessible for your local network. Close it, whenever you do not " -"need it anymore." -msgstr "" -"Enable encryption if you want to keep your data private. You have to enter " -"the password to open a encrypted container. Be aware that your encrypted " -"data is accessible for your local network. Close it, whenever you do not " -"need it anymore." +#~ msgid "Formatting successful" +#~ msgstr "Formatting successful" -#: Help.Password -msgid "" -"Please choose a very good password consisting of letters, digits and special " -"characters. There is no minimal length required, but you should not use less " -"than ten characters. Twenty or more are recommended." -msgstr "" -"Please choose a very good password consisting of letters, digits and special " -"characters. There is no minimal length required, but you should not use less " -"than ten characters. Twenty or more are recommended." +#~ msgid "The selected filesystem was successfully formatted." +#~ msgstr "The selected filesystem was successfully formatted." -#: AdviceMessage.UnmountBeforeInit.Text -msgid "You must close this volume before you may initialize it." -msgstr "You must close this volume before you may initialize it." +#~ msgid "" +#~ "Usually you will only have to format a volume if you want to turn " +#~ "encryption on or off. Be aware, that you will destroy all data of this " +#~ "volume." +#~ msgstr "" +#~ "Usually you will only have to format a volume if you want to turn " +#~ "encryption on or off. Be aware, that you will destroy all data of this " +#~ "volume." -#: AdviceMessage.UnmountBeforeInit.Link.Text -msgid "Close volume now" -msgstr "Close volume now" - -#: Help.Encryption -msgid "" -"Enable encryption if you want to keep your data private. You have to enter " -"the password to open an encrypted container. Be aware that your encrypted " -"data is accessible for your local network. Close it, whenever you do not " -"need it anymore." -msgstr "" -"Enable encryption if you want to keep your data private. You have to enter " -"the password to open an encrypted container. Be aware that your encrypted " -"data is accessible for your local network. Close it, whenever you do not " -"need it anymore." +#~ msgid "" +#~ "Enable encryption if you want to keep your data private. You have to " +#~ "enter the password to open a encrypted container. Be aware that your " +#~ "encrypted data is accessible for your local network. Close it, whenever " +#~ "you do not need it anymore." +#~ msgstr "" +#~ "Enable encryption if you want to keep your data private. You have to " +#~ "enter the password to open a encrypted container. Be aware that your " +#~ "encrypted data is accessible for your local network. Close it, whenever " +#~ "you do not need it anymore." #~ msgid "action" #~ msgstr "action" diff --git a/plugins/volume_format_fs/intl/es/cryptobox-server-feature-volume_format_fs.po b/plugins/volume_format_fs/intl/es/cryptobox-server-feature-volume_format_fs.po index 6295b89..513ec96 100644 --- a/plugins/volume_format_fs/intl/es/cryptobox-server-feature-volume_format_fs.po +++ b/plugins/volume_format_fs/intl/es/cryptobox-server-feature-volume_format_fs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -49,24 +49,40 @@ msgstr "" msgid "No" msgstr "" +#: Help.Format +msgid "Usually you will only have to format a volume if you want to turn encryption on or off. Be aware, that you will erase all data from this volume." +msgstr "" + +#: Help.Filesystem +msgid "Use a filesystem of your choice. The linux filesystem (ext3) should be a good choice. The windows filesystem (Fat32) is only useful, if you plan to connect your harddisk directly to a computer running the windows operating system." +msgstr "" + +#: Help.Encryption +msgid "Enable encryption if you want to keep your data private. You have to enter the password to open an encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." +msgstr "" + +#: Help.Password +msgid "Please choose a very good password consisting of letters, digits and special characters. There is no minimal length required, but you should not use less than ten characters. Twenty or more are recommended." +msgstr "" + #: AdviceMessage.FormatWarning.Text msgid "All data of the selected filesystem will get lost!" msgstr "" #: AdviceMessage.UnmountBeforeInit.Text -msgid "You must deactivate this volume before you may initialize it." +msgid "You must close this volume before you may initialize it." msgstr "" #: AdviceMessage.UnmountBeforeInit.Link.Text -msgid "Deactive volume now" +msgid "Close volume now" msgstr "" #: SuccessMessage.FormatSuccess.Title -msgid "Formatting successful" +msgid "Formatting is running" msgstr "" #: SuccessMessage.FormatSuccess.Text -msgid "The selected filesystem was successfully formatted." +msgid "The selected filesystem is being formatted in the background. This may take some time (depending on the size of your disk)." msgstr "" #: WarningMessage.FormatNotConfirmed.Title @@ -85,42 +101,6 @@ msgstr "" msgid "Formatting of the selected filesystem failed for unknown reasons - sorry!" msgstr "" -#: SuccessMessage.FormatSuccess.Title -msgid "Formatting is running" -msgstr "" - -#: SuccessMessage.FormatSuccess.Text -msgid "The selected filesystem is being formatted in the background. This may take some time (depending on the size of your disk)." -msgstr "" - #: WarningMessage.FormatFailed.Link.Text msgid "View log messages" msgstr "" - -#: Help.Format -msgid "Usually you will only have to format a volume if you want to turn encryption on or off. Be aware, that you will destroy all data of this volume." -msgstr "" - -#: Help.Filesystem -msgid "Use a filesystem of your choice. The linux filesystem (ext3) should be a good choice. The windows filesystem (Fat32) is only useful, if you plan to connect your harddisk directly to a computer running the windows operating system." -msgstr "" - -#: Help.Encryption -msgid "Enable encryption if you want to keep your data private. You have to enter the password to open a encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." -msgstr "" - -#: Help.Password -msgid "Please choose a very good password consisting of letters, digits and special characters. There is no minimal length required, but you should not use less than ten characters. Twenty or more are recommended." -msgstr "" - -#: AdviceMessage.UnmountBeforeInit.Text -msgid "You must close this volume before you may initialize it." -msgstr "" - -#: AdviceMessage.UnmountBeforeInit.Link.Text -msgid "Close volume now" -msgstr "" - -#: Help.Encryption -msgid "Enable encryption if you want to keep your data private. You have to enter the password to open an encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." -msgstr "" diff --git a/plugins/volume_format_fs/intl/fi/cryptobox-server-feature-volume_format_fs.po b/plugins/volume_format_fs/intl/fi/cryptobox-server-feature-volume_format_fs.po index 6295b89..513ec96 100644 --- a/plugins/volume_format_fs/intl/fi/cryptobox-server-feature-volume_format_fs.po +++ b/plugins/volume_format_fs/intl/fi/cryptobox-server-feature-volume_format_fs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -49,24 +49,40 @@ msgstr "" msgid "No" msgstr "" +#: Help.Format +msgid "Usually you will only have to format a volume if you want to turn encryption on or off. Be aware, that you will erase all data from this volume." +msgstr "" + +#: Help.Filesystem +msgid "Use a filesystem of your choice. The linux filesystem (ext3) should be a good choice. The windows filesystem (Fat32) is only useful, if you plan to connect your harddisk directly to a computer running the windows operating system." +msgstr "" + +#: Help.Encryption +msgid "Enable encryption if you want to keep your data private. You have to enter the password to open an encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." +msgstr "" + +#: Help.Password +msgid "Please choose a very good password consisting of letters, digits and special characters. There is no minimal length required, but you should not use less than ten characters. Twenty or more are recommended." +msgstr "" + #: AdviceMessage.FormatWarning.Text msgid "All data of the selected filesystem will get lost!" msgstr "" #: AdviceMessage.UnmountBeforeInit.Text -msgid "You must deactivate this volume before you may initialize it." +msgid "You must close this volume before you may initialize it." msgstr "" #: AdviceMessage.UnmountBeforeInit.Link.Text -msgid "Deactive volume now" +msgid "Close volume now" msgstr "" #: SuccessMessage.FormatSuccess.Title -msgid "Formatting successful" +msgid "Formatting is running" msgstr "" #: SuccessMessage.FormatSuccess.Text -msgid "The selected filesystem was successfully formatted." +msgid "The selected filesystem is being formatted in the background. This may take some time (depending on the size of your disk)." msgstr "" #: WarningMessage.FormatNotConfirmed.Title @@ -85,42 +101,6 @@ msgstr "" msgid "Formatting of the selected filesystem failed for unknown reasons - sorry!" msgstr "" -#: SuccessMessage.FormatSuccess.Title -msgid "Formatting is running" -msgstr "" - -#: SuccessMessage.FormatSuccess.Text -msgid "The selected filesystem is being formatted in the background. This may take some time (depending on the size of your disk)." -msgstr "" - #: WarningMessage.FormatFailed.Link.Text msgid "View log messages" msgstr "" - -#: Help.Format -msgid "Usually you will only have to format a volume if you want to turn encryption on or off. Be aware, that you will destroy all data of this volume." -msgstr "" - -#: Help.Filesystem -msgid "Use a filesystem of your choice. The linux filesystem (ext3) should be a good choice. The windows filesystem (Fat32) is only useful, if you plan to connect your harddisk directly to a computer running the windows operating system." -msgstr "" - -#: Help.Encryption -msgid "Enable encryption if you want to keep your data private. You have to enter the password to open a encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." -msgstr "" - -#: Help.Password -msgid "Please choose a very good password consisting of letters, digits and special characters. There is no minimal length required, but you should not use less than ten characters. Twenty or more are recommended." -msgstr "" - -#: AdviceMessage.UnmountBeforeInit.Text -msgid "You must close this volume before you may initialize it." -msgstr "" - -#: AdviceMessage.UnmountBeforeInit.Link.Text -msgid "Close volume now" -msgstr "" - -#: Help.Encryption -msgid "Enable encryption if you want to keep your data private. You have to enter the password to open an encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." -msgstr "" diff --git a/plugins/volume_format_fs/intl/fr/cryptobox-server-feature-volume_format_fs.po b/plugins/volume_format_fs/intl/fr/cryptobox-server-feature-volume_format_fs.po index 6295b89..513ec96 100644 --- a/plugins/volume_format_fs/intl/fr/cryptobox-server-feature-volume_format_fs.po +++ b/plugins/volume_format_fs/intl/fr/cryptobox-server-feature-volume_format_fs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -49,24 +49,40 @@ msgstr "" msgid "No" msgstr "" +#: Help.Format +msgid "Usually you will only have to format a volume if you want to turn encryption on or off. Be aware, that you will erase all data from this volume." +msgstr "" + +#: Help.Filesystem +msgid "Use a filesystem of your choice. The linux filesystem (ext3) should be a good choice. The windows filesystem (Fat32) is only useful, if you plan to connect your harddisk directly to a computer running the windows operating system." +msgstr "" + +#: Help.Encryption +msgid "Enable encryption if you want to keep your data private. You have to enter the password to open an encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." +msgstr "" + +#: Help.Password +msgid "Please choose a very good password consisting of letters, digits and special characters. There is no minimal length required, but you should not use less than ten characters. Twenty or more are recommended." +msgstr "" + #: AdviceMessage.FormatWarning.Text msgid "All data of the selected filesystem will get lost!" msgstr "" #: AdviceMessage.UnmountBeforeInit.Text -msgid "You must deactivate this volume before you may initialize it." +msgid "You must close this volume before you may initialize it." msgstr "" #: AdviceMessage.UnmountBeforeInit.Link.Text -msgid "Deactive volume now" +msgid "Close volume now" msgstr "" #: SuccessMessage.FormatSuccess.Title -msgid "Formatting successful" +msgid "Formatting is running" msgstr "" #: SuccessMessage.FormatSuccess.Text -msgid "The selected filesystem was successfully formatted." +msgid "The selected filesystem is being formatted in the background. This may take some time (depending on the size of your disk)." msgstr "" #: WarningMessage.FormatNotConfirmed.Title @@ -85,42 +101,6 @@ msgstr "" msgid "Formatting of the selected filesystem failed for unknown reasons - sorry!" msgstr "" -#: SuccessMessage.FormatSuccess.Title -msgid "Formatting is running" -msgstr "" - -#: SuccessMessage.FormatSuccess.Text -msgid "The selected filesystem is being formatted in the background. This may take some time (depending on the size of your disk)." -msgstr "" - #: WarningMessage.FormatFailed.Link.Text msgid "View log messages" msgstr "" - -#: Help.Format -msgid "Usually you will only have to format a volume if you want to turn encryption on or off. Be aware, that you will destroy all data of this volume." -msgstr "" - -#: Help.Filesystem -msgid "Use a filesystem of your choice. The linux filesystem (ext3) should be a good choice. The windows filesystem (Fat32) is only useful, if you plan to connect your harddisk directly to a computer running the windows operating system." -msgstr "" - -#: Help.Encryption -msgid "Enable encryption if you want to keep your data private. You have to enter the password to open a encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." -msgstr "" - -#: Help.Password -msgid "Please choose a very good password consisting of letters, digits and special characters. There is no minimal length required, but you should not use less than ten characters. Twenty or more are recommended." -msgstr "" - -#: AdviceMessage.UnmountBeforeInit.Text -msgid "You must close this volume before you may initialize it." -msgstr "" - -#: AdviceMessage.UnmountBeforeInit.Link.Text -msgid "Close volume now" -msgstr "" - -#: Help.Encryption -msgid "Enable encryption if you want to keep your data private. You have to enter the password to open an encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." -msgstr "" diff --git a/plugins/volume_format_fs/intl/hu/cryptobox-server-feature-volume_format_fs.po b/plugins/volume_format_fs/intl/hu/cryptobox-server-feature-volume_format_fs.po index 6295b89..513ec96 100644 --- a/plugins/volume_format_fs/intl/hu/cryptobox-server-feature-volume_format_fs.po +++ b/plugins/volume_format_fs/intl/hu/cryptobox-server-feature-volume_format_fs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -49,24 +49,40 @@ msgstr "" msgid "No" msgstr "" +#: Help.Format +msgid "Usually you will only have to format a volume if you want to turn encryption on or off. Be aware, that you will erase all data from this volume." +msgstr "" + +#: Help.Filesystem +msgid "Use a filesystem of your choice. The linux filesystem (ext3) should be a good choice. The windows filesystem (Fat32) is only useful, if you plan to connect your harddisk directly to a computer running the windows operating system." +msgstr "" + +#: Help.Encryption +msgid "Enable encryption if you want to keep your data private. You have to enter the password to open an encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." +msgstr "" + +#: Help.Password +msgid "Please choose a very good password consisting of letters, digits and special characters. There is no minimal length required, but you should not use less than ten characters. Twenty or more are recommended." +msgstr "" + #: AdviceMessage.FormatWarning.Text msgid "All data of the selected filesystem will get lost!" msgstr "" #: AdviceMessage.UnmountBeforeInit.Text -msgid "You must deactivate this volume before you may initialize it." +msgid "You must close this volume before you may initialize it." msgstr "" #: AdviceMessage.UnmountBeforeInit.Link.Text -msgid "Deactive volume now" +msgid "Close volume now" msgstr "" #: SuccessMessage.FormatSuccess.Title -msgid "Formatting successful" +msgid "Formatting is running" msgstr "" #: SuccessMessage.FormatSuccess.Text -msgid "The selected filesystem was successfully formatted." +msgid "The selected filesystem is being formatted in the background. This may take some time (depending on the size of your disk)." msgstr "" #: WarningMessage.FormatNotConfirmed.Title @@ -85,42 +101,6 @@ msgstr "" msgid "Formatting of the selected filesystem failed for unknown reasons - sorry!" msgstr "" -#: SuccessMessage.FormatSuccess.Title -msgid "Formatting is running" -msgstr "" - -#: SuccessMessage.FormatSuccess.Text -msgid "The selected filesystem is being formatted in the background. This may take some time (depending on the size of your disk)." -msgstr "" - #: WarningMessage.FormatFailed.Link.Text msgid "View log messages" msgstr "" - -#: Help.Format -msgid "Usually you will only have to format a volume if you want to turn encryption on or off. Be aware, that you will destroy all data of this volume." -msgstr "" - -#: Help.Filesystem -msgid "Use a filesystem of your choice. The linux filesystem (ext3) should be a good choice. The windows filesystem (Fat32) is only useful, if you plan to connect your harddisk directly to a computer running the windows operating system." -msgstr "" - -#: Help.Encryption -msgid "Enable encryption if you want to keep your data private. You have to enter the password to open a encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." -msgstr "" - -#: Help.Password -msgid "Please choose a very good password consisting of letters, digits and special characters. There is no minimal length required, but you should not use less than ten characters. Twenty or more are recommended." -msgstr "" - -#: AdviceMessage.UnmountBeforeInit.Text -msgid "You must close this volume before you may initialize it." -msgstr "" - -#: AdviceMessage.UnmountBeforeInit.Link.Text -msgid "Close volume now" -msgstr "" - -#: Help.Encryption -msgid "Enable encryption if you want to keep your data private. You have to enter the password to open an encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." -msgstr "" diff --git a/plugins/volume_format_fs/intl/it/cryptobox-server-feature-volume_format_fs.po b/plugins/volume_format_fs/intl/it/cryptobox-server-feature-volume_format_fs.po index 6295b89..513ec96 100644 --- a/plugins/volume_format_fs/intl/it/cryptobox-server-feature-volume_format_fs.po +++ b/plugins/volume_format_fs/intl/it/cryptobox-server-feature-volume_format_fs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -49,24 +49,40 @@ msgstr "" msgid "No" msgstr "" +#: Help.Format +msgid "Usually you will only have to format a volume if you want to turn encryption on or off. Be aware, that you will erase all data from this volume." +msgstr "" + +#: Help.Filesystem +msgid "Use a filesystem of your choice. The linux filesystem (ext3) should be a good choice. The windows filesystem (Fat32) is only useful, if you plan to connect your harddisk directly to a computer running the windows operating system." +msgstr "" + +#: Help.Encryption +msgid "Enable encryption if you want to keep your data private. You have to enter the password to open an encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." +msgstr "" + +#: Help.Password +msgid "Please choose a very good password consisting of letters, digits and special characters. There is no minimal length required, but you should not use less than ten characters. Twenty or more are recommended." +msgstr "" + #: AdviceMessage.FormatWarning.Text msgid "All data of the selected filesystem will get lost!" msgstr "" #: AdviceMessage.UnmountBeforeInit.Text -msgid "You must deactivate this volume before you may initialize it." +msgid "You must close this volume before you may initialize it." msgstr "" #: AdviceMessage.UnmountBeforeInit.Link.Text -msgid "Deactive volume now" +msgid "Close volume now" msgstr "" #: SuccessMessage.FormatSuccess.Title -msgid "Formatting successful" +msgid "Formatting is running" msgstr "" #: SuccessMessage.FormatSuccess.Text -msgid "The selected filesystem was successfully formatted." +msgid "The selected filesystem is being formatted in the background. This may take some time (depending on the size of your disk)." msgstr "" #: WarningMessage.FormatNotConfirmed.Title @@ -85,42 +101,6 @@ msgstr "" msgid "Formatting of the selected filesystem failed for unknown reasons - sorry!" msgstr "" -#: SuccessMessage.FormatSuccess.Title -msgid "Formatting is running" -msgstr "" - -#: SuccessMessage.FormatSuccess.Text -msgid "The selected filesystem is being formatted in the background. This may take some time (depending on the size of your disk)." -msgstr "" - #: WarningMessage.FormatFailed.Link.Text msgid "View log messages" msgstr "" - -#: Help.Format -msgid "Usually you will only have to format a volume if you want to turn encryption on or off. Be aware, that you will destroy all data of this volume." -msgstr "" - -#: Help.Filesystem -msgid "Use a filesystem of your choice. The linux filesystem (ext3) should be a good choice. The windows filesystem (Fat32) is only useful, if you plan to connect your harddisk directly to a computer running the windows operating system." -msgstr "" - -#: Help.Encryption -msgid "Enable encryption if you want to keep your data private. You have to enter the password to open a encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." -msgstr "" - -#: Help.Password -msgid "Please choose a very good password consisting of letters, digits and special characters. There is no minimal length required, but you should not use less than ten characters. Twenty or more are recommended." -msgstr "" - -#: AdviceMessage.UnmountBeforeInit.Text -msgid "You must close this volume before you may initialize it." -msgstr "" - -#: AdviceMessage.UnmountBeforeInit.Link.Text -msgid "Close volume now" -msgstr "" - -#: Help.Encryption -msgid "Enable encryption if you want to keep your data private. You have to enter the password to open an encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." -msgstr "" diff --git a/plugins/volume_format_fs/intl/ja/cryptobox-server-feature-volume_format_fs.po b/plugins/volume_format_fs/intl/ja/cryptobox-server-feature-volume_format_fs.po index 6295b89..513ec96 100644 --- a/plugins/volume_format_fs/intl/ja/cryptobox-server-feature-volume_format_fs.po +++ b/plugins/volume_format_fs/intl/ja/cryptobox-server-feature-volume_format_fs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -49,24 +49,40 @@ msgstr "" msgid "No" msgstr "" +#: Help.Format +msgid "Usually you will only have to format a volume if you want to turn encryption on or off. Be aware, that you will erase all data from this volume." +msgstr "" + +#: Help.Filesystem +msgid "Use a filesystem of your choice. The linux filesystem (ext3) should be a good choice. The windows filesystem (Fat32) is only useful, if you plan to connect your harddisk directly to a computer running the windows operating system." +msgstr "" + +#: Help.Encryption +msgid "Enable encryption if you want to keep your data private. You have to enter the password to open an encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." +msgstr "" + +#: Help.Password +msgid "Please choose a very good password consisting of letters, digits and special characters. There is no minimal length required, but you should not use less than ten characters. Twenty or more are recommended." +msgstr "" + #: AdviceMessage.FormatWarning.Text msgid "All data of the selected filesystem will get lost!" msgstr "" #: AdviceMessage.UnmountBeforeInit.Text -msgid "You must deactivate this volume before you may initialize it." +msgid "You must close this volume before you may initialize it." msgstr "" #: AdviceMessage.UnmountBeforeInit.Link.Text -msgid "Deactive volume now" +msgid "Close volume now" msgstr "" #: SuccessMessage.FormatSuccess.Title -msgid "Formatting successful" +msgid "Formatting is running" msgstr "" #: SuccessMessage.FormatSuccess.Text -msgid "The selected filesystem was successfully formatted." +msgid "The selected filesystem is being formatted in the background. This may take some time (depending on the size of your disk)." msgstr "" #: WarningMessage.FormatNotConfirmed.Title @@ -85,42 +101,6 @@ msgstr "" msgid "Formatting of the selected filesystem failed for unknown reasons - sorry!" msgstr "" -#: SuccessMessage.FormatSuccess.Title -msgid "Formatting is running" -msgstr "" - -#: SuccessMessage.FormatSuccess.Text -msgid "The selected filesystem is being formatted in the background. This may take some time (depending on the size of your disk)." -msgstr "" - #: WarningMessage.FormatFailed.Link.Text msgid "View log messages" msgstr "" - -#: Help.Format -msgid "Usually you will only have to format a volume if you want to turn encryption on or off. Be aware, that you will destroy all data of this volume." -msgstr "" - -#: Help.Filesystem -msgid "Use a filesystem of your choice. The linux filesystem (ext3) should be a good choice. The windows filesystem (Fat32) is only useful, if you plan to connect your harddisk directly to a computer running the windows operating system." -msgstr "" - -#: Help.Encryption -msgid "Enable encryption if you want to keep your data private. You have to enter the password to open a encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." -msgstr "" - -#: Help.Password -msgid "Please choose a very good password consisting of letters, digits and special characters. There is no minimal length required, but you should not use less than ten characters. Twenty or more are recommended." -msgstr "" - -#: AdviceMessage.UnmountBeforeInit.Text -msgid "You must close this volume before you may initialize it." -msgstr "" - -#: AdviceMessage.UnmountBeforeInit.Link.Text -msgid "Close volume now" -msgstr "" - -#: Help.Encryption -msgid "Enable encryption if you want to keep your data private. You have to enter the password to open an encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." -msgstr "" diff --git a/plugins/volume_format_fs/intl/nl/cryptobox-server-feature-volume_format_fs.po b/plugins/volume_format_fs/intl/nl/cryptobox-server-feature-volume_format_fs.po index 6295b89..513ec96 100644 --- a/plugins/volume_format_fs/intl/nl/cryptobox-server-feature-volume_format_fs.po +++ b/plugins/volume_format_fs/intl/nl/cryptobox-server-feature-volume_format_fs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -49,24 +49,40 @@ msgstr "" msgid "No" msgstr "" +#: Help.Format +msgid "Usually you will only have to format a volume if you want to turn encryption on or off. Be aware, that you will erase all data from this volume." +msgstr "" + +#: Help.Filesystem +msgid "Use a filesystem of your choice. The linux filesystem (ext3) should be a good choice. The windows filesystem (Fat32) is only useful, if you plan to connect your harddisk directly to a computer running the windows operating system." +msgstr "" + +#: Help.Encryption +msgid "Enable encryption if you want to keep your data private. You have to enter the password to open an encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." +msgstr "" + +#: Help.Password +msgid "Please choose a very good password consisting of letters, digits and special characters. There is no minimal length required, but you should not use less than ten characters. Twenty or more are recommended." +msgstr "" + #: AdviceMessage.FormatWarning.Text msgid "All data of the selected filesystem will get lost!" msgstr "" #: AdviceMessage.UnmountBeforeInit.Text -msgid "You must deactivate this volume before you may initialize it." +msgid "You must close this volume before you may initialize it." msgstr "" #: AdviceMessage.UnmountBeforeInit.Link.Text -msgid "Deactive volume now" +msgid "Close volume now" msgstr "" #: SuccessMessage.FormatSuccess.Title -msgid "Formatting successful" +msgid "Formatting is running" msgstr "" #: SuccessMessage.FormatSuccess.Text -msgid "The selected filesystem was successfully formatted." +msgid "The selected filesystem is being formatted in the background. This may take some time (depending on the size of your disk)." msgstr "" #: WarningMessage.FormatNotConfirmed.Title @@ -85,42 +101,6 @@ msgstr "" msgid "Formatting of the selected filesystem failed for unknown reasons - sorry!" msgstr "" -#: SuccessMessage.FormatSuccess.Title -msgid "Formatting is running" -msgstr "" - -#: SuccessMessage.FormatSuccess.Text -msgid "The selected filesystem is being formatted in the background. This may take some time (depending on the size of your disk)." -msgstr "" - #: WarningMessage.FormatFailed.Link.Text msgid "View log messages" msgstr "" - -#: Help.Format -msgid "Usually you will only have to format a volume if you want to turn encryption on or off. Be aware, that you will destroy all data of this volume." -msgstr "" - -#: Help.Filesystem -msgid "Use a filesystem of your choice. The linux filesystem (ext3) should be a good choice. The windows filesystem (Fat32) is only useful, if you plan to connect your harddisk directly to a computer running the windows operating system." -msgstr "" - -#: Help.Encryption -msgid "Enable encryption if you want to keep your data private. You have to enter the password to open a encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." -msgstr "" - -#: Help.Password -msgid "Please choose a very good password consisting of letters, digits and special characters. There is no minimal length required, but you should not use less than ten characters. Twenty or more are recommended." -msgstr "" - -#: AdviceMessage.UnmountBeforeInit.Text -msgid "You must close this volume before you may initialize it." -msgstr "" - -#: AdviceMessage.UnmountBeforeInit.Link.Text -msgid "Close volume now" -msgstr "" - -#: Help.Encryption -msgid "Enable encryption if you want to keep your data private. You have to enter the password to open an encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." -msgstr "" diff --git a/plugins/volume_format_fs/intl/pl/cryptobox-server-feature-volume_format_fs.po b/plugins/volume_format_fs/intl/pl/cryptobox-server-feature-volume_format_fs.po index 6295b89..513ec96 100644 --- a/plugins/volume_format_fs/intl/pl/cryptobox-server-feature-volume_format_fs.po +++ b/plugins/volume_format_fs/intl/pl/cryptobox-server-feature-volume_format_fs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -49,24 +49,40 @@ msgstr "" msgid "No" msgstr "" +#: Help.Format +msgid "Usually you will only have to format a volume if you want to turn encryption on or off. Be aware, that you will erase all data from this volume." +msgstr "" + +#: Help.Filesystem +msgid "Use a filesystem of your choice. The linux filesystem (ext3) should be a good choice. The windows filesystem (Fat32) is only useful, if you plan to connect your harddisk directly to a computer running the windows operating system." +msgstr "" + +#: Help.Encryption +msgid "Enable encryption if you want to keep your data private. You have to enter the password to open an encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." +msgstr "" + +#: Help.Password +msgid "Please choose a very good password consisting of letters, digits and special characters. There is no minimal length required, but you should not use less than ten characters. Twenty or more are recommended." +msgstr "" + #: AdviceMessage.FormatWarning.Text msgid "All data of the selected filesystem will get lost!" msgstr "" #: AdviceMessage.UnmountBeforeInit.Text -msgid "You must deactivate this volume before you may initialize it." +msgid "You must close this volume before you may initialize it." msgstr "" #: AdviceMessage.UnmountBeforeInit.Link.Text -msgid "Deactive volume now" +msgid "Close volume now" msgstr "" #: SuccessMessage.FormatSuccess.Title -msgid "Formatting successful" +msgid "Formatting is running" msgstr "" #: SuccessMessage.FormatSuccess.Text -msgid "The selected filesystem was successfully formatted." +msgid "The selected filesystem is being formatted in the background. This may take some time (depending on the size of your disk)." msgstr "" #: WarningMessage.FormatNotConfirmed.Title @@ -85,42 +101,6 @@ msgstr "" msgid "Formatting of the selected filesystem failed for unknown reasons - sorry!" msgstr "" -#: SuccessMessage.FormatSuccess.Title -msgid "Formatting is running" -msgstr "" - -#: SuccessMessage.FormatSuccess.Text -msgid "The selected filesystem is being formatted in the background. This may take some time (depending on the size of your disk)." -msgstr "" - #: WarningMessage.FormatFailed.Link.Text msgid "View log messages" msgstr "" - -#: Help.Format -msgid "Usually you will only have to format a volume if you want to turn encryption on or off. Be aware, that you will destroy all data of this volume." -msgstr "" - -#: Help.Filesystem -msgid "Use a filesystem of your choice. The linux filesystem (ext3) should be a good choice. The windows filesystem (Fat32) is only useful, if you plan to connect your harddisk directly to a computer running the windows operating system." -msgstr "" - -#: Help.Encryption -msgid "Enable encryption if you want to keep your data private. You have to enter the password to open a encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." -msgstr "" - -#: Help.Password -msgid "Please choose a very good password consisting of letters, digits and special characters. There is no minimal length required, but you should not use less than ten characters. Twenty or more are recommended." -msgstr "" - -#: AdviceMessage.UnmountBeforeInit.Text -msgid "You must close this volume before you may initialize it." -msgstr "" - -#: AdviceMessage.UnmountBeforeInit.Link.Text -msgid "Close volume now" -msgstr "" - -#: Help.Encryption -msgid "Enable encryption if you want to keep your data private. You have to enter the password to open an encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." -msgstr "" diff --git a/plugins/volume_format_fs/intl/pt/cryptobox-server-feature-volume_format_fs.po b/plugins/volume_format_fs/intl/pt/cryptobox-server-feature-volume_format_fs.po index 6295b89..513ec96 100644 --- a/plugins/volume_format_fs/intl/pt/cryptobox-server-feature-volume_format_fs.po +++ b/plugins/volume_format_fs/intl/pt/cryptobox-server-feature-volume_format_fs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -49,24 +49,40 @@ msgstr "" msgid "No" msgstr "" +#: Help.Format +msgid "Usually you will only have to format a volume if you want to turn encryption on or off. Be aware, that you will erase all data from this volume." +msgstr "" + +#: Help.Filesystem +msgid "Use a filesystem of your choice. The linux filesystem (ext3) should be a good choice. The windows filesystem (Fat32) is only useful, if you plan to connect your harddisk directly to a computer running the windows operating system." +msgstr "" + +#: Help.Encryption +msgid "Enable encryption if you want to keep your data private. You have to enter the password to open an encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." +msgstr "" + +#: Help.Password +msgid "Please choose a very good password consisting of letters, digits and special characters. There is no minimal length required, but you should not use less than ten characters. Twenty or more are recommended." +msgstr "" + #: AdviceMessage.FormatWarning.Text msgid "All data of the selected filesystem will get lost!" msgstr "" #: AdviceMessage.UnmountBeforeInit.Text -msgid "You must deactivate this volume before you may initialize it." +msgid "You must close this volume before you may initialize it." msgstr "" #: AdviceMessage.UnmountBeforeInit.Link.Text -msgid "Deactive volume now" +msgid "Close volume now" msgstr "" #: SuccessMessage.FormatSuccess.Title -msgid "Formatting successful" +msgid "Formatting is running" msgstr "" #: SuccessMessage.FormatSuccess.Text -msgid "The selected filesystem was successfully formatted." +msgid "The selected filesystem is being formatted in the background. This may take some time (depending on the size of your disk)." msgstr "" #: WarningMessage.FormatNotConfirmed.Title @@ -85,42 +101,6 @@ msgstr "" msgid "Formatting of the selected filesystem failed for unknown reasons - sorry!" msgstr "" -#: SuccessMessage.FormatSuccess.Title -msgid "Formatting is running" -msgstr "" - -#: SuccessMessage.FormatSuccess.Text -msgid "The selected filesystem is being formatted in the background. This may take some time (depending on the size of your disk)." -msgstr "" - #: WarningMessage.FormatFailed.Link.Text msgid "View log messages" msgstr "" - -#: Help.Format -msgid "Usually you will only have to format a volume if you want to turn encryption on or off. Be aware, that you will destroy all data of this volume." -msgstr "" - -#: Help.Filesystem -msgid "Use a filesystem of your choice. The linux filesystem (ext3) should be a good choice. The windows filesystem (Fat32) is only useful, if you plan to connect your harddisk directly to a computer running the windows operating system." -msgstr "" - -#: Help.Encryption -msgid "Enable encryption if you want to keep your data private. You have to enter the password to open a encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." -msgstr "" - -#: Help.Password -msgid "Please choose a very good password consisting of letters, digits and special characters. There is no minimal length required, but you should not use less than ten characters. Twenty or more are recommended." -msgstr "" - -#: AdviceMessage.UnmountBeforeInit.Text -msgid "You must close this volume before you may initialize it." -msgstr "" - -#: AdviceMessage.UnmountBeforeInit.Link.Text -msgid "Close volume now" -msgstr "" - -#: Help.Encryption -msgid "Enable encryption if you want to keep your data private. You have to enter the password to open an encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." -msgstr "" diff --git a/plugins/volume_format_fs/intl/ru/cryptobox-server-feature-volume_format_fs.po b/plugins/volume_format_fs/intl/ru/cryptobox-server-feature-volume_format_fs.po index 6295b89..513ec96 100644 --- a/plugins/volume_format_fs/intl/ru/cryptobox-server-feature-volume_format_fs.po +++ b/plugins/volume_format_fs/intl/ru/cryptobox-server-feature-volume_format_fs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -49,24 +49,40 @@ msgstr "" msgid "No" msgstr "" +#: Help.Format +msgid "Usually you will only have to format a volume if you want to turn encryption on or off. Be aware, that you will erase all data from this volume." +msgstr "" + +#: Help.Filesystem +msgid "Use a filesystem of your choice. The linux filesystem (ext3) should be a good choice. The windows filesystem (Fat32) is only useful, if you plan to connect your harddisk directly to a computer running the windows operating system." +msgstr "" + +#: Help.Encryption +msgid "Enable encryption if you want to keep your data private. You have to enter the password to open an encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." +msgstr "" + +#: Help.Password +msgid "Please choose a very good password consisting of letters, digits and special characters. There is no minimal length required, but you should not use less than ten characters. Twenty or more are recommended." +msgstr "" + #: AdviceMessage.FormatWarning.Text msgid "All data of the selected filesystem will get lost!" msgstr "" #: AdviceMessage.UnmountBeforeInit.Text -msgid "You must deactivate this volume before you may initialize it." +msgid "You must close this volume before you may initialize it." msgstr "" #: AdviceMessage.UnmountBeforeInit.Link.Text -msgid "Deactive volume now" +msgid "Close volume now" msgstr "" #: SuccessMessage.FormatSuccess.Title -msgid "Formatting successful" +msgid "Formatting is running" msgstr "" #: SuccessMessage.FormatSuccess.Text -msgid "The selected filesystem was successfully formatted." +msgid "The selected filesystem is being formatted in the background. This may take some time (depending on the size of your disk)." msgstr "" #: WarningMessage.FormatNotConfirmed.Title @@ -85,42 +101,6 @@ msgstr "" msgid "Formatting of the selected filesystem failed for unknown reasons - sorry!" msgstr "" -#: SuccessMessage.FormatSuccess.Title -msgid "Formatting is running" -msgstr "" - -#: SuccessMessage.FormatSuccess.Text -msgid "The selected filesystem is being formatted in the background. This may take some time (depending on the size of your disk)." -msgstr "" - #: WarningMessage.FormatFailed.Link.Text msgid "View log messages" msgstr "" - -#: Help.Format -msgid "Usually you will only have to format a volume if you want to turn encryption on or off. Be aware, that you will destroy all data of this volume." -msgstr "" - -#: Help.Filesystem -msgid "Use a filesystem of your choice. The linux filesystem (ext3) should be a good choice. The windows filesystem (Fat32) is only useful, if you plan to connect your harddisk directly to a computer running the windows operating system." -msgstr "" - -#: Help.Encryption -msgid "Enable encryption if you want to keep your data private. You have to enter the password to open a encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." -msgstr "" - -#: Help.Password -msgid "Please choose a very good password consisting of letters, digits and special characters. There is no minimal length required, but you should not use less than ten characters. Twenty or more are recommended." -msgstr "" - -#: AdviceMessage.UnmountBeforeInit.Text -msgid "You must close this volume before you may initialize it." -msgstr "" - -#: AdviceMessage.UnmountBeforeInit.Link.Text -msgid "Close volume now" -msgstr "" - -#: Help.Encryption -msgid "Enable encryption if you want to keep your data private. You have to enter the password to open an encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." -msgstr "" diff --git a/plugins/volume_format_fs/intl/sl/cryptobox-server-feature-volume_format_fs.po b/plugins/volume_format_fs/intl/sl/cryptobox-server-feature-volume_format_fs.po index 6295b89..513ec96 100644 --- a/plugins/volume_format_fs/intl/sl/cryptobox-server-feature-volume_format_fs.po +++ b/plugins/volume_format_fs/intl/sl/cryptobox-server-feature-volume_format_fs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -49,24 +49,40 @@ msgstr "" msgid "No" msgstr "" +#: Help.Format +msgid "Usually you will only have to format a volume if you want to turn encryption on or off. Be aware, that you will erase all data from this volume." +msgstr "" + +#: Help.Filesystem +msgid "Use a filesystem of your choice. The linux filesystem (ext3) should be a good choice. The windows filesystem (Fat32) is only useful, if you plan to connect your harddisk directly to a computer running the windows operating system." +msgstr "" + +#: Help.Encryption +msgid "Enable encryption if you want to keep your data private. You have to enter the password to open an encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." +msgstr "" + +#: Help.Password +msgid "Please choose a very good password consisting of letters, digits and special characters. There is no minimal length required, but you should not use less than ten characters. Twenty or more are recommended." +msgstr "" + #: AdviceMessage.FormatWarning.Text msgid "All data of the selected filesystem will get lost!" msgstr "" #: AdviceMessage.UnmountBeforeInit.Text -msgid "You must deactivate this volume before you may initialize it." +msgid "You must close this volume before you may initialize it." msgstr "" #: AdviceMessage.UnmountBeforeInit.Link.Text -msgid "Deactive volume now" +msgid "Close volume now" msgstr "" #: SuccessMessage.FormatSuccess.Title -msgid "Formatting successful" +msgid "Formatting is running" msgstr "" #: SuccessMessage.FormatSuccess.Text -msgid "The selected filesystem was successfully formatted." +msgid "The selected filesystem is being formatted in the background. This may take some time (depending on the size of your disk)." msgstr "" #: WarningMessage.FormatNotConfirmed.Title @@ -85,42 +101,6 @@ msgstr "" msgid "Formatting of the selected filesystem failed for unknown reasons - sorry!" msgstr "" -#: SuccessMessage.FormatSuccess.Title -msgid "Formatting is running" -msgstr "" - -#: SuccessMessage.FormatSuccess.Text -msgid "The selected filesystem is being formatted in the background. This may take some time (depending on the size of your disk)." -msgstr "" - #: WarningMessage.FormatFailed.Link.Text msgid "View log messages" msgstr "" - -#: Help.Format -msgid "Usually you will only have to format a volume if you want to turn encryption on or off. Be aware, that you will destroy all data of this volume." -msgstr "" - -#: Help.Filesystem -msgid "Use a filesystem of your choice. The linux filesystem (ext3) should be a good choice. The windows filesystem (Fat32) is only useful, if you plan to connect your harddisk directly to a computer running the windows operating system." -msgstr "" - -#: Help.Encryption -msgid "Enable encryption if you want to keep your data private. You have to enter the password to open a encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." -msgstr "" - -#: Help.Password -msgid "Please choose a very good password consisting of letters, digits and special characters. There is no minimal length required, but you should not use less than ten characters. Twenty or more are recommended." -msgstr "" - -#: AdviceMessage.UnmountBeforeInit.Text -msgid "You must close this volume before you may initialize it." -msgstr "" - -#: AdviceMessage.UnmountBeforeInit.Link.Text -msgid "Close volume now" -msgstr "" - -#: Help.Encryption -msgid "Enable encryption if you want to keep your data private. You have to enter the password to open an encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." -msgstr "" diff --git a/plugins/volume_format_fs/intl/sv/cryptobox-server-feature-volume_format_fs.po b/plugins/volume_format_fs/intl/sv/cryptobox-server-feature-volume_format_fs.po index 6295b89..513ec96 100644 --- a/plugins/volume_format_fs/intl/sv/cryptobox-server-feature-volume_format_fs.po +++ b/plugins/volume_format_fs/intl/sv/cryptobox-server-feature-volume_format_fs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -49,24 +49,40 @@ msgstr "" msgid "No" msgstr "" +#: Help.Format +msgid "Usually you will only have to format a volume if you want to turn encryption on or off. Be aware, that you will erase all data from this volume." +msgstr "" + +#: Help.Filesystem +msgid "Use a filesystem of your choice. The linux filesystem (ext3) should be a good choice. The windows filesystem (Fat32) is only useful, if you plan to connect your harddisk directly to a computer running the windows operating system." +msgstr "" + +#: Help.Encryption +msgid "Enable encryption if you want to keep your data private. You have to enter the password to open an encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." +msgstr "" + +#: Help.Password +msgid "Please choose a very good password consisting of letters, digits and special characters. There is no minimal length required, but you should not use less than ten characters. Twenty or more are recommended." +msgstr "" + #: AdviceMessage.FormatWarning.Text msgid "All data of the selected filesystem will get lost!" msgstr "" #: AdviceMessage.UnmountBeforeInit.Text -msgid "You must deactivate this volume before you may initialize it." +msgid "You must close this volume before you may initialize it." msgstr "" #: AdviceMessage.UnmountBeforeInit.Link.Text -msgid "Deactive volume now" +msgid "Close volume now" msgstr "" #: SuccessMessage.FormatSuccess.Title -msgid "Formatting successful" +msgid "Formatting is running" msgstr "" #: SuccessMessage.FormatSuccess.Text -msgid "The selected filesystem was successfully formatted." +msgid "The selected filesystem is being formatted in the background. This may take some time (depending on the size of your disk)." msgstr "" #: WarningMessage.FormatNotConfirmed.Title @@ -85,42 +101,6 @@ msgstr "" msgid "Formatting of the selected filesystem failed for unknown reasons - sorry!" msgstr "" -#: SuccessMessage.FormatSuccess.Title -msgid "Formatting is running" -msgstr "" - -#: SuccessMessage.FormatSuccess.Text -msgid "The selected filesystem is being formatted in the background. This may take some time (depending on the size of your disk)." -msgstr "" - #: WarningMessage.FormatFailed.Link.Text msgid "View log messages" msgstr "" - -#: Help.Format -msgid "Usually you will only have to format a volume if you want to turn encryption on or off. Be aware, that you will destroy all data of this volume." -msgstr "" - -#: Help.Filesystem -msgid "Use a filesystem of your choice. The linux filesystem (ext3) should be a good choice. The windows filesystem (Fat32) is only useful, if you plan to connect your harddisk directly to a computer running the windows operating system." -msgstr "" - -#: Help.Encryption -msgid "Enable encryption if you want to keep your data private. You have to enter the password to open a encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." -msgstr "" - -#: Help.Password -msgid "Please choose a very good password consisting of letters, digits and special characters. There is no minimal length required, but you should not use less than ten characters. Twenty or more are recommended." -msgstr "" - -#: AdviceMessage.UnmountBeforeInit.Text -msgid "You must close this volume before you may initialize it." -msgstr "" - -#: AdviceMessage.UnmountBeforeInit.Link.Text -msgid "Close volume now" -msgstr "" - -#: Help.Encryption -msgid "Enable encryption if you want to keep your data private. You have to enter the password to open an encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore." -msgstr "" diff --git a/plugins/volume_format_fs/language.hdf b/plugins/volume_format_fs/language.hdf index af3af65..df74277 100644 --- a/plugins/volume_format_fs/language.hdf +++ b/plugins/volume_format_fs/language.hdf @@ -15,7 +15,7 @@ Text { Help { - Format = Usually you will only have to format a volume if you want to turn encryption on or off. Be aware, that you will destroy all data of this volume. + Format = Usually you will only have to format a volume if you want to turn encryption on or off. Be aware, that you will erase all data from this volume. Filesystem = Use a filesystem of your choice. The linux filesystem (ext3) should be a good choice. The windows filesystem (Fat32) is only useful, if you plan to connect your harddisk directly to a computer running the windows operating system. Encryption = Enable encryption if you want to keep your data private. You have to enter the password to open an encrypted container. Be aware that your encrypted data is accessible for your local network. Close it, whenever you do not need it anymore. Password = Please choose a very good password consisting of letters, digits and special characters. There is no minimal length required, but you should not use less than ten characters. Twenty or more are recommended. diff --git a/plugins/volume_mount/intl/cryptobox-server-feature-volume_mount.pot b/plugins/volume_mount/intl/cryptobox-server-feature-volume_mount.pot index 55bb03b..3c46c14 100644 --- a/plugins/volume_mount/intl/cryptobox-server-feature-volume_mount.pot +++ b/plugins/volume_mount/intl/cryptobox-server-feature-volume_mount.pot @@ -1,19 +1,5 @@ -msgid "" -msgstr "" -"Project-Id-Version: CryptoBox-Server 0.3\n" -"Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: sense.lab \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: utf-8\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Translate Toolkit 0.10.1\n" - #: Name -msgid "Mount and umount volumes" +msgid "Open and close volumes" msgstr "" #: Link @@ -21,89 +7,29 @@ msgid "Activation" msgstr "" #: Title.Mount -msgid "Activate volume" +msgid "Opening a volume" msgstr "" #: Title.Umount -msgid "Deactivate volume" +msgid "Closing a volume" msgstr "" -#: SuccessMessage.MountDone.Title -msgid "Encrypted filesystem activated" -msgstr "" - -#: SuccessMessage.MountDone.Text -msgid "The encrypted filesystem is now available." -msgstr "" - -#: SuccessMessage.UmountDone.Title -msgid "Encrypted filesystem deactivated" -msgstr "" - -#: SuccessMessage.UmountDone.Text -msgid "The encrypted filesystem is now secured from all forms of access." -msgstr "" - -#: WarningMessage.MountFailed.Title -msgid "Activation failed" -msgstr "" - -#: WarningMessage.MountFailed.Text -msgid "The volume could not be activated for some reason. Sorry!" -msgstr "" - -#: WarningMessage.MountCryptoFailed.Text -msgid "Maybe you entered the wrong password?" -msgstr "" - -#: WarningMessage.InvalidContainerType.Title -msgid "Unknown format" -msgstr "" - -#: WarningMessage.InvalidContainerType.Text -msgid "The type of this volume ist not known. Maybe you want to initialize itfirst?" -msgstr "" - -#: WarningMessage.InvalidContainerType.Link.Text -msgid "Format volume" -msgstr "" - -#: WarningMessage.UmountFailed.Title -msgid "Deactivation failed" -msgstr "" - -#: WarningMessage.UmountFailed.Text -msgid "The volume could not be deactivated. Probably some files are still in use. In case of emergency just shut down the CryptoBox!" -msgstr "" - -#: WarningMessage.IsAlreadyMounted.Title -msgid "Already active" -msgstr "" - -#: WarningMessage.IsAlreadyMounted.Text -msgid "The volume is already active." -msgstr "" - -#: WarningMessage.IsNotMounted.Title -msgid "Inactive" -msgstr "" - -#: WarningMessage.IsNotMounted.Text -msgid "The volume is currently not active." -msgstr "" - -#: Title.Mount +#: Button.Mount msgid "Open volume" msgstr "" -#: Title.Umount -msgid "Turn on the volume" -msgstr "" - #: Button.Umount msgid "Close volume" msgstr "" +#: Help.Open +msgid "The volume is currently closed. If you open the volume, then you will be able to access the data of this volume. Just search in your network environment for the server and browse through its shares." +msgstr "" + +#: Help.Close +msgid "Currently the volume is open. All files are accessible for everyone who has access to your local network. Just search in your network environment for the server and browse through its shares. Before you close the volume you should quit all programs with open files on it." +msgstr "" + #: SuccessMessage.MountDone.Title msgid "Volume opened" msgstr "" @@ -120,6 +46,34 @@ msgstr "" msgid "The content of this volume is protected from access now." msgstr "" +#: WarningMessage.MountFailed.Title +msgid "Opening failed" +msgstr "" + +#: WarningMessage.MountFailed.Text +msgid "The volume could not be opened for some reason. Sorry!" +msgstr "" + +#: WarningMessage.MountFailed.Link.Text +msgid "View event log" +msgstr "" + +#: WarningMessage.MountCryptoFailed.Text +msgid "Maybe you entered the wrong password?" +msgstr "" + +#: WarningMessage.InvalidContainerType.Title +msgid "Unknown format" +msgstr "" + +#: WarningMessage.InvalidContainerType.Text +msgid "The type of this volume ist not known. Maybe you want to initialize itfirst?" +msgstr "" + +#: WarningMessage.InvalidContainerType.Link.Text +msgid "Format volume" +msgstr "" + #: WarningMessage.UmountFailed.Title msgid "Closing failed" msgstr "" @@ -143,35 +97,3 @@ msgstr "" #: WarningMessage.IsNotMounted.Text msgid "The volume is already closed." msgstr "" - -#: Title.Mount -msgid "Opening a volume" -msgstr "" - -#: Title.Umount -msgid "Closing a volume" -msgstr "" - -#: Help.Open -msgid "The volume is currently closed. If you open the volume, then you will be able to access the data of this volume. Just search in your network environment for the server and browse through its shares." -msgstr "" - -#: Help.Close -msgid "Currently the volume is open. All files are accessible for everyone who has access to your local network. Just search in your network environment for the server and browse through its shares. Before you close the volume you should quit all programs with open files on it." -msgstr "" - -#: WarningMessage.MountFailed.Title -msgid "Opening failed" -msgstr "" - -#: WarningMessage.MountFailed.Text -msgid "The volume could not be opened for some reason. Sorry!" -msgstr "" - -#: Name -msgid "Open and close volumes" -msgstr "" - -#: WarningMessage.MountFailed.Link.Text -msgid "View event log" -msgstr "" diff --git a/plugins/volume_mount/intl/cs/cryptobox-server-feature-volume_mount.po b/plugins/volume_mount/intl/cs/cryptobox-server-feature-volume_mount.po index 6b1d6bb..a038b15 100644 --- a/plugins/volume_mount/intl/cs/cryptobox-server-feature-volume_mount.po +++ b/plugins/volume_mount/intl/cs/cryptobox-server-feature-volume_mount.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "Mount and umount volumes" +msgid "Open and close volumes" msgstr "" #: Link @@ -22,89 +22,29 @@ msgid "Activation" msgstr "" #: Title.Mount -msgid "Activate volume" +msgid "Opening a volume" msgstr "" #: Title.Umount -msgid "Deactivate volume" +msgid "Closing a volume" msgstr "" -#: SuccessMessage.MountDone.Title -msgid "Encrypted filesystem activated" -msgstr "" - -#: SuccessMessage.MountDone.Text -msgid "The encrypted filesystem is now available." -msgstr "" - -#: SuccessMessage.UmountDone.Title -msgid "Encrypted filesystem deactivated" -msgstr "" - -#: SuccessMessage.UmountDone.Text -msgid "The encrypted filesystem is now secured from all forms of access." -msgstr "" - -#: WarningMessage.MountFailed.Title -msgid "Activation failed" -msgstr "" - -#: WarningMessage.MountFailed.Text -msgid "The volume could not be activated for some reason. Sorry!" -msgstr "" - -#: WarningMessage.MountCryptoFailed.Text -msgid "Maybe you entered the wrong password?" -msgstr "" - -#: WarningMessage.InvalidContainerType.Title -msgid "Unknown format" -msgstr "" - -#: WarningMessage.InvalidContainerType.Text -msgid "The type of this volume ist not known. Maybe you want to initialize itfirst?" -msgstr "" - -#: WarningMessage.InvalidContainerType.Link.Text -msgid "Format volume" -msgstr "" - -#: WarningMessage.UmountFailed.Title -msgid "Deactivation failed" -msgstr "" - -#: WarningMessage.UmountFailed.Text -msgid "The volume could not be deactivated. Probably some files are still in use. In case of emergency just shut down the CryptoBox!" -msgstr "" - -#: WarningMessage.IsAlreadyMounted.Title -msgid "Already active" -msgstr "" - -#: WarningMessage.IsAlreadyMounted.Text -msgid "The volume is already active." -msgstr "" - -#: WarningMessage.IsNotMounted.Title -msgid "Inactive" -msgstr "" - -#: WarningMessage.IsNotMounted.Text -msgid "The volume is currently not active." -msgstr "" - -#: Title.Mount +#: Button.Mount msgid "Open volume" msgstr "" -#: Title.Umount -msgid "Turn on the volume" -msgstr "" - #: Button.Umount msgid "Close volume" msgstr "" +#: Help.Open +msgid "The volume is currently closed. If you open the volume, then you will be able to access the data of this volume. Just search in your network environment for the server and browse through its shares." +msgstr "" + +#: Help.Close +msgid "Currently the volume is open. All files are accessible for everyone who has access to your local network. Just search in your network environment for the server and browse through its shares. Before you close the volume you should quit all programs with open files on it." +msgstr "" + #: SuccessMessage.MountDone.Title msgid "Volume opened" msgstr "" @@ -121,6 +61,34 @@ msgstr "" msgid "The content of this volume is protected from access now." msgstr "" +#: WarningMessage.MountFailed.Title +msgid "Opening failed" +msgstr "" + +#: WarningMessage.MountFailed.Text +msgid "The volume could not be opened for some reason. Sorry!" +msgstr "" + +#: WarningMessage.MountFailed.Link.Text +msgid "View event log" +msgstr "" + +#: WarningMessage.MountCryptoFailed.Text +msgid "Maybe you entered the wrong password?" +msgstr "" + +#: WarningMessage.InvalidContainerType.Title +msgid "Unknown format" +msgstr "" + +#: WarningMessage.InvalidContainerType.Text +msgid "The type of this volume ist not known. Maybe you want to initialize itfirst?" +msgstr "" + +#: WarningMessage.InvalidContainerType.Link.Text +msgid "Format volume" +msgstr "" + #: WarningMessage.UmountFailed.Title msgid "Closing failed" msgstr "" @@ -144,35 +112,3 @@ msgstr "" #: WarningMessage.IsNotMounted.Text msgid "The volume is already closed." msgstr "" - -#: Title.Mount -msgid "Opening a volume" -msgstr "" - -#: Title.Umount -msgid "Closing a volume" -msgstr "" - -#: Help.Open -msgid "The volume is currently closed. If you open the volume, then you will be able to access the data of this volume. Just search in your network environment for the server and browse through its shares." -msgstr "" - -#: Help.Close -msgid "Currently the volume is open. All files are accessible for everyone who has access to your local network. Just search in your network environment for the server and browse through its shares. Before you close the volume you should quit all programs with open files on it." -msgstr "" - -#: WarningMessage.MountFailed.Title -msgid "Opening failed" -msgstr "" - -#: WarningMessage.MountFailed.Text -msgid "The volume could not be opened for some reason. Sorry!" -msgstr "" - -#: Name -msgid "Open and close volumes" -msgstr "" - -#: WarningMessage.MountFailed.Link.Text -msgid "View event log" -msgstr "" diff --git a/plugins/volume_mount/intl/da/cryptobox-server-feature-volume_mount.po b/plugins/volume_mount/intl/da/cryptobox-server-feature-volume_mount.po index 6b1d6bb..a038b15 100644 --- a/plugins/volume_mount/intl/da/cryptobox-server-feature-volume_mount.po +++ b/plugins/volume_mount/intl/da/cryptobox-server-feature-volume_mount.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "Mount and umount volumes" +msgid "Open and close volumes" msgstr "" #: Link @@ -22,89 +22,29 @@ msgid "Activation" msgstr "" #: Title.Mount -msgid "Activate volume" +msgid "Opening a volume" msgstr "" #: Title.Umount -msgid "Deactivate volume" +msgid "Closing a volume" msgstr "" -#: SuccessMessage.MountDone.Title -msgid "Encrypted filesystem activated" -msgstr "" - -#: SuccessMessage.MountDone.Text -msgid "The encrypted filesystem is now available." -msgstr "" - -#: SuccessMessage.UmountDone.Title -msgid "Encrypted filesystem deactivated" -msgstr "" - -#: SuccessMessage.UmountDone.Text -msgid "The encrypted filesystem is now secured from all forms of access." -msgstr "" - -#: WarningMessage.MountFailed.Title -msgid "Activation failed" -msgstr "" - -#: WarningMessage.MountFailed.Text -msgid "The volume could not be activated for some reason. Sorry!" -msgstr "" - -#: WarningMessage.MountCryptoFailed.Text -msgid "Maybe you entered the wrong password?" -msgstr "" - -#: WarningMessage.InvalidContainerType.Title -msgid "Unknown format" -msgstr "" - -#: WarningMessage.InvalidContainerType.Text -msgid "The type of this volume ist not known. Maybe you want to initialize itfirst?" -msgstr "" - -#: WarningMessage.InvalidContainerType.Link.Text -msgid "Format volume" -msgstr "" - -#: WarningMessage.UmountFailed.Title -msgid "Deactivation failed" -msgstr "" - -#: WarningMessage.UmountFailed.Text -msgid "The volume could not be deactivated. Probably some files are still in use. In case of emergency just shut down the CryptoBox!" -msgstr "" - -#: WarningMessage.IsAlreadyMounted.Title -msgid "Already active" -msgstr "" - -#: WarningMessage.IsAlreadyMounted.Text -msgid "The volume is already active." -msgstr "" - -#: WarningMessage.IsNotMounted.Title -msgid "Inactive" -msgstr "" - -#: WarningMessage.IsNotMounted.Text -msgid "The volume is currently not active." -msgstr "" - -#: Title.Mount +#: Button.Mount msgid "Open volume" msgstr "" -#: Title.Umount -msgid "Turn on the volume" -msgstr "" - #: Button.Umount msgid "Close volume" msgstr "" +#: Help.Open +msgid "The volume is currently closed. If you open the volume, then you will be able to access the data of this volume. Just search in your network environment for the server and browse through its shares." +msgstr "" + +#: Help.Close +msgid "Currently the volume is open. All files are accessible for everyone who has access to your local network. Just search in your network environment for the server and browse through its shares. Before you close the volume you should quit all programs with open files on it." +msgstr "" + #: SuccessMessage.MountDone.Title msgid "Volume opened" msgstr "" @@ -121,6 +61,34 @@ msgstr "" msgid "The content of this volume is protected from access now." msgstr "" +#: WarningMessage.MountFailed.Title +msgid "Opening failed" +msgstr "" + +#: WarningMessage.MountFailed.Text +msgid "The volume could not be opened for some reason. Sorry!" +msgstr "" + +#: WarningMessage.MountFailed.Link.Text +msgid "View event log" +msgstr "" + +#: WarningMessage.MountCryptoFailed.Text +msgid "Maybe you entered the wrong password?" +msgstr "" + +#: WarningMessage.InvalidContainerType.Title +msgid "Unknown format" +msgstr "" + +#: WarningMessage.InvalidContainerType.Text +msgid "The type of this volume ist not known. Maybe you want to initialize itfirst?" +msgstr "" + +#: WarningMessage.InvalidContainerType.Link.Text +msgid "Format volume" +msgstr "" + #: WarningMessage.UmountFailed.Title msgid "Closing failed" msgstr "" @@ -144,35 +112,3 @@ msgstr "" #: WarningMessage.IsNotMounted.Text msgid "The volume is already closed." msgstr "" - -#: Title.Mount -msgid "Opening a volume" -msgstr "" - -#: Title.Umount -msgid "Closing a volume" -msgstr "" - -#: Help.Open -msgid "The volume is currently closed. If you open the volume, then you will be able to access the data of this volume. Just search in your network environment for the server and browse through its shares." -msgstr "" - -#: Help.Close -msgid "Currently the volume is open. All files are accessible for everyone who has access to your local network. Just search in your network environment for the server and browse through its shares. Before you close the volume you should quit all programs with open files on it." -msgstr "" - -#: WarningMessage.MountFailed.Title -msgid "Opening failed" -msgstr "" - -#: WarningMessage.MountFailed.Text -msgid "The volume could not be opened for some reason. Sorry!" -msgstr "" - -#: Name -msgid "Open and close volumes" -msgstr "" - -#: WarningMessage.MountFailed.Link.Text -msgid "View event log" -msgstr "" diff --git a/plugins/volume_mount/intl/de/cryptobox-server-feature-volume_mount.po b/plugins/volume_mount/intl/de/cryptobox-server-feature-volume_mount.po index 6b1d6bb..a038b15 100644 --- a/plugins/volume_mount/intl/de/cryptobox-server-feature-volume_mount.po +++ b/plugins/volume_mount/intl/de/cryptobox-server-feature-volume_mount.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "Mount and umount volumes" +msgid "Open and close volumes" msgstr "" #: Link @@ -22,89 +22,29 @@ msgid "Activation" msgstr "" #: Title.Mount -msgid "Activate volume" +msgid "Opening a volume" msgstr "" #: Title.Umount -msgid "Deactivate volume" +msgid "Closing a volume" msgstr "" -#: SuccessMessage.MountDone.Title -msgid "Encrypted filesystem activated" -msgstr "" - -#: SuccessMessage.MountDone.Text -msgid "The encrypted filesystem is now available." -msgstr "" - -#: SuccessMessage.UmountDone.Title -msgid "Encrypted filesystem deactivated" -msgstr "" - -#: SuccessMessage.UmountDone.Text -msgid "The encrypted filesystem is now secured from all forms of access." -msgstr "" - -#: WarningMessage.MountFailed.Title -msgid "Activation failed" -msgstr "" - -#: WarningMessage.MountFailed.Text -msgid "The volume could not be activated for some reason. Sorry!" -msgstr "" - -#: WarningMessage.MountCryptoFailed.Text -msgid "Maybe you entered the wrong password?" -msgstr "" - -#: WarningMessage.InvalidContainerType.Title -msgid "Unknown format" -msgstr "" - -#: WarningMessage.InvalidContainerType.Text -msgid "The type of this volume ist not known. Maybe you want to initialize itfirst?" -msgstr "" - -#: WarningMessage.InvalidContainerType.Link.Text -msgid "Format volume" -msgstr "" - -#: WarningMessage.UmountFailed.Title -msgid "Deactivation failed" -msgstr "" - -#: WarningMessage.UmountFailed.Text -msgid "The volume could not be deactivated. Probably some files are still in use. In case of emergency just shut down the CryptoBox!" -msgstr "" - -#: WarningMessage.IsAlreadyMounted.Title -msgid "Already active" -msgstr "" - -#: WarningMessage.IsAlreadyMounted.Text -msgid "The volume is already active." -msgstr "" - -#: WarningMessage.IsNotMounted.Title -msgid "Inactive" -msgstr "" - -#: WarningMessage.IsNotMounted.Text -msgid "The volume is currently not active." -msgstr "" - -#: Title.Mount +#: Button.Mount msgid "Open volume" msgstr "" -#: Title.Umount -msgid "Turn on the volume" -msgstr "" - #: Button.Umount msgid "Close volume" msgstr "" +#: Help.Open +msgid "The volume is currently closed. If you open the volume, then you will be able to access the data of this volume. Just search in your network environment for the server and browse through its shares." +msgstr "" + +#: Help.Close +msgid "Currently the volume is open. All files are accessible for everyone who has access to your local network. Just search in your network environment for the server and browse through its shares. Before you close the volume you should quit all programs with open files on it." +msgstr "" + #: SuccessMessage.MountDone.Title msgid "Volume opened" msgstr "" @@ -121,6 +61,34 @@ msgstr "" msgid "The content of this volume is protected from access now." msgstr "" +#: WarningMessage.MountFailed.Title +msgid "Opening failed" +msgstr "" + +#: WarningMessage.MountFailed.Text +msgid "The volume could not be opened for some reason. Sorry!" +msgstr "" + +#: WarningMessage.MountFailed.Link.Text +msgid "View event log" +msgstr "" + +#: WarningMessage.MountCryptoFailed.Text +msgid "Maybe you entered the wrong password?" +msgstr "" + +#: WarningMessage.InvalidContainerType.Title +msgid "Unknown format" +msgstr "" + +#: WarningMessage.InvalidContainerType.Text +msgid "The type of this volume ist not known. Maybe you want to initialize itfirst?" +msgstr "" + +#: WarningMessage.InvalidContainerType.Link.Text +msgid "Format volume" +msgstr "" + #: WarningMessage.UmountFailed.Title msgid "Closing failed" msgstr "" @@ -144,35 +112,3 @@ msgstr "" #: WarningMessage.IsNotMounted.Text msgid "The volume is already closed." msgstr "" - -#: Title.Mount -msgid "Opening a volume" -msgstr "" - -#: Title.Umount -msgid "Closing a volume" -msgstr "" - -#: Help.Open -msgid "The volume is currently closed. If you open the volume, then you will be able to access the data of this volume. Just search in your network environment for the server and browse through its shares." -msgstr "" - -#: Help.Close -msgid "Currently the volume is open. All files are accessible for everyone who has access to your local network. Just search in your network environment for the server and browse through its shares. Before you close the volume you should quit all programs with open files on it." -msgstr "" - -#: WarningMessage.MountFailed.Title -msgid "Opening failed" -msgstr "" - -#: WarningMessage.MountFailed.Text -msgid "The volume could not be opened for some reason. Sorry!" -msgstr "" - -#: Name -msgid "Open and close volumes" -msgstr "" - -#: WarningMessage.MountFailed.Link.Text -msgid "View event log" -msgstr "" diff --git a/plugins/volume_mount/intl/en/cryptobox-server-feature-volume_mount.po b/plugins/volume_mount/intl/en/cryptobox-server-feature-volume_mount.po index 8fa0a58..acb4506 100644 --- a/plugins/volume_mount/intl/en/cryptobox-server-feature-volume_mount.po +++ b/plugins/volume_mount/intl/en/cryptobox-server-feature-volume_mount.po @@ -1,104 +1,36 @@ -msgid "" -msgstr "" #: Name -msgid "Mount and umount volumes" -msgstr "Mount and umount volumes" +msgid "Open and close volumes" +msgstr "Open and close volumes" #: Link msgid "Activation" msgstr "Activation" #: Title.Mount -msgid "Activate volume" -msgstr "Activate volume" +msgid "Opening a volume" +msgstr "Opening a volume" #: Title.Umount -msgid "Deactivate volume" -msgstr "Deactivate volume" +msgid "Closing a volume" +msgstr "Closing a volume" -#: SuccessMessage.MountDone.Title -msgid "Encrypted filesystem activated" -msgstr "Encrypted filesystem activated" - -#: SuccessMessage.MountDone.Text -msgid "The encrypted filesystem is now available." -msgstr "The encrypted filesystem is now available." - -#: SuccessMessage.UmountDone.Title -msgid "Encrypted filesystem deactivated" -msgstr "Encrypted filesystem deactivated" - -#: SuccessMessage.UmountDone.Text -msgid "The encrypted filesystem is now secured from all forms of access." -msgstr "The encrypted filesystem is now secured from all forms of access." - -#: WarningMessage.MountFailed.Title -msgid "Activation failed" -msgstr "Activation failed" - -#: WarningMessage.MountFailed.Text -msgid "The volume could not be activated for some reason. Sorry!" -msgstr "The volume could not be activated for some reason. Sorry!" - -#: WarningMessage.MountCryptoFailed.Text -msgid "Maybe you entered the wrong password?" -msgstr "Maybe you entered the wrong password?" - -#: WarningMessage.InvalidContainerType.Title -msgid "Unknown format" -msgstr "Unknown format" - -#: WarningMessage.InvalidContainerType.Text -msgid "" -"The type of this volume ist not known. Maybe you want to initialize itfirst?" -msgstr "" -"The type of this volume ist not known. Maybe you want to initialize itfirst?" - -#: WarningMessage.InvalidContainerType.Link.Text -msgid "Format volume" -msgstr "Format volume" - -#: WarningMessage.UmountFailed.Title -msgid "Deactivation failed" -msgstr "Deactivation failed" - -#: WarningMessage.UmountFailed.Text -msgid "" -"The volume could not be deactivated. Probably some files are still in use. " -"In case of emergency just shut down the CryptoBox!" -msgstr "" -"The volume could not be deactivated. Probably some files are still in use. " -"In case of emergency just shut down the CryptoBox!" - -#: WarningMessage.IsAlreadyMounted.Title -msgid "Already active" -msgstr "Already active" - -#: WarningMessage.IsAlreadyMounted.Text -msgid "The volume is already active." -msgstr "The volume is already active." - -#: WarningMessage.IsNotMounted.Title -msgid "Inactive" -msgstr "Inactive" - -#: WarningMessage.IsNotMounted.Text -msgid "The volume is currently not active." -msgstr "The volume is currently not active." - -#: Title.Mount +#: Button.Mount msgid "Open volume" msgstr "Open volume" -#: Title.Umount -msgid "Turn on the volume" -msgstr "Turn on the volume" - #: Button.Umount msgid "Close volume" msgstr "Close volume" +#: Help.Open +msgid "The volume is currently closed. If you open the volume, then you will be able to access the data of this volume. Just search in your network environment for the server and browse through its shares." +msgstr "The volume is currently closed. If you open the volume, then you will be able to access the data of this volume. Just search in your network environment for the server and browse through its shares." + +#: Help.Close +msgid "Currently the volume is open. All files are accessible for everyone who has access to your local network. Just search in your network environment for the server and browse through its shares. Before you close the volume you should quit all programs with open files on it." +msgstr "Currently the volume is open. All files are accessible for everyone who has access to your local network. Just search in your network environment for the server and browse through its shares. Before you close the volume you should quit all programs with open files on it." + #: SuccessMessage.MountDone.Title msgid "Volume opened" msgstr "Volume opened" @@ -115,6 +47,34 @@ msgstr "Volume closed" msgid "The content of this volume is protected from access now." msgstr "The content of this volume is protected from access now." +#: WarningMessage.MountFailed.Title +msgid "Opening failed" +msgstr "Opening failed" + +#: WarningMessage.MountFailed.Text +msgid "The volume could not be opened for some reason. Sorry!" +msgstr "The volume could not be opened for some reason. Sorry!" + +#: WarningMessage.MountFailed.Link.Text +msgid "View event log" +msgstr "View event log" + +#: WarningMessage.MountCryptoFailed.Text +msgid "Maybe you entered the wrong password?" +msgstr "Maybe you entered the wrong password?" + +#: WarningMessage.InvalidContainerType.Title +msgid "Unknown format" +msgstr "Unknown format" + +#: WarningMessage.InvalidContainerType.Text +msgid "The type of this volume ist not known. Maybe you want to initialize itfirst?" +msgstr "The type of this volume ist not known. Maybe you want to initialize itfirst?" + +#: WarningMessage.InvalidContainerType.Link.Text +msgid "Format volume" +msgstr "Format volume" + #: WarningMessage.UmountFailed.Title msgid "Closing failed" msgstr "Closing failed" @@ -139,51 +99,57 @@ msgstr "Already closed" msgid "The volume is already closed." msgstr "The volume is already closed." -#: Title.Mount -msgid "Opening a volume" -msgstr "Opening a volume" +#~ msgid "Mount and umount volumes" +#~ msgstr "Mount and umount volumes" -#: Title.Umount -msgid "Closing a volume" -msgstr "Closing a volume" +#~ msgid "Activate volume" +#~ msgstr "Activate volume" -#: Help.Open -msgid "" -"The volume is currently closed. If you open the volume, then you will be " -"able to access the data of this volume. Just search in your network " -"environment for the server and browse through its shares." -msgstr "" -"The volume is currently closed. If you open the volume, then you will be " -"able to access the data of this volume. Just search in your network " -"environment for the server and browse through its shares." +#~ msgid "Deactivate volume" +#~ msgstr "Deactivate volume" -#: Help.Close -msgid "" -"Currently the volume is open. All files are accessible for everyone who has " -"access to your local network. Just search in your network environment for " -"the server and browse through its shares. Before you close the volume you " -"should quit all programs with open files on it." -msgstr "" -"Currently the volume is open. All files are accessible for everyone who has " -"access to your local network. Just search in your network environment for " -"the server and browse through its shares. Before you close the volume you " -"should quit all programs with open files on it." +#~ msgid "Encrypted filesystem activated" +#~ msgstr "Encrypted filesystem activated" -#: WarningMessage.MountFailed.Title -msgid "Opening failed" -msgstr "Opening failed" +#~ msgid "The encrypted filesystem is now available." +#~ msgstr "The encrypted filesystem is now available." -#: WarningMessage.MountFailed.Text -msgid "The volume could not be opened for some reason. Sorry!" -msgstr "The volume could not be opened for some reason. Sorry!" +#~ msgid "Encrypted filesystem deactivated" +#~ msgstr "Encrypted filesystem deactivated" -#: Name -msgid "Open and close volumes" -msgstr "Open and close volumes" +#~ msgid "The encrypted filesystem is now secured from all forms of access." +#~ msgstr "The encrypted filesystem is now secured from all forms of access." -#: WarningMessage.MountFailed.Link.Text -msgid "View event log" -msgstr "View event log" +#~ msgid "Activation failed" +#~ msgstr "Activation failed" + +#~ msgid "The volume could not be activated for some reason. Sorry!" +#~ msgstr "The volume could not be activated for some reason. Sorry!" + +#~ msgid "Deactivation failed" +#~ msgstr "Deactivation failed" + +#~ msgid "" +#~ "The volume could not be deactivated. Probably some files are still in " +#~ "use. In case of emergency just shut down the CryptoBox!" +#~ msgstr "" +#~ "The volume could not be deactivated. Probably some files are still in " +#~ "use. In case of emergency just shut down the CryptoBox!" + +#~ msgid "Already active" +#~ msgstr "Already active" + +#~ msgid "The volume is already active." +#~ msgstr "The volume is already active." + +#~ msgid "Inactive" +#~ msgstr "Inactive" + +#~ msgid "The volume is currently not active." +#~ msgstr "The volume is currently not active." + +#~ msgid "Turn on the volume" +#~ msgstr "Turn on the volume" #~ msgid "volume_format_fs" #~ msgstr "volume_format_fs" diff --git a/plugins/volume_mount/intl/es/cryptobox-server-feature-volume_mount.po b/plugins/volume_mount/intl/es/cryptobox-server-feature-volume_mount.po index 6b1d6bb..a038b15 100644 --- a/plugins/volume_mount/intl/es/cryptobox-server-feature-volume_mount.po +++ b/plugins/volume_mount/intl/es/cryptobox-server-feature-volume_mount.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "Mount and umount volumes" +msgid "Open and close volumes" msgstr "" #: Link @@ -22,89 +22,29 @@ msgid "Activation" msgstr "" #: Title.Mount -msgid "Activate volume" +msgid "Opening a volume" msgstr "" #: Title.Umount -msgid "Deactivate volume" +msgid "Closing a volume" msgstr "" -#: SuccessMessage.MountDone.Title -msgid "Encrypted filesystem activated" -msgstr "" - -#: SuccessMessage.MountDone.Text -msgid "The encrypted filesystem is now available." -msgstr "" - -#: SuccessMessage.UmountDone.Title -msgid "Encrypted filesystem deactivated" -msgstr "" - -#: SuccessMessage.UmountDone.Text -msgid "The encrypted filesystem is now secured from all forms of access." -msgstr "" - -#: WarningMessage.MountFailed.Title -msgid "Activation failed" -msgstr "" - -#: WarningMessage.MountFailed.Text -msgid "The volume could not be activated for some reason. Sorry!" -msgstr "" - -#: WarningMessage.MountCryptoFailed.Text -msgid "Maybe you entered the wrong password?" -msgstr "" - -#: WarningMessage.InvalidContainerType.Title -msgid "Unknown format" -msgstr "" - -#: WarningMessage.InvalidContainerType.Text -msgid "The type of this volume ist not known. Maybe you want to initialize itfirst?" -msgstr "" - -#: WarningMessage.InvalidContainerType.Link.Text -msgid "Format volume" -msgstr "" - -#: WarningMessage.UmountFailed.Title -msgid "Deactivation failed" -msgstr "" - -#: WarningMessage.UmountFailed.Text -msgid "The volume could not be deactivated. Probably some files are still in use. In case of emergency just shut down the CryptoBox!" -msgstr "" - -#: WarningMessage.IsAlreadyMounted.Title -msgid "Already active" -msgstr "" - -#: WarningMessage.IsAlreadyMounted.Text -msgid "The volume is already active." -msgstr "" - -#: WarningMessage.IsNotMounted.Title -msgid "Inactive" -msgstr "" - -#: WarningMessage.IsNotMounted.Text -msgid "The volume is currently not active." -msgstr "" - -#: Title.Mount +#: Button.Mount msgid "Open volume" msgstr "" -#: Title.Umount -msgid "Turn on the volume" -msgstr "" - #: Button.Umount msgid "Close volume" msgstr "" +#: Help.Open +msgid "The volume is currently closed. If you open the volume, then you will be able to access the data of this volume. Just search in your network environment for the server and browse through its shares." +msgstr "" + +#: Help.Close +msgid "Currently the volume is open. All files are accessible for everyone who has access to your local network. Just search in your network environment for the server and browse through its shares. Before you close the volume you should quit all programs with open files on it." +msgstr "" + #: SuccessMessage.MountDone.Title msgid "Volume opened" msgstr "" @@ -121,6 +61,34 @@ msgstr "" msgid "The content of this volume is protected from access now." msgstr "" +#: WarningMessage.MountFailed.Title +msgid "Opening failed" +msgstr "" + +#: WarningMessage.MountFailed.Text +msgid "The volume could not be opened for some reason. Sorry!" +msgstr "" + +#: WarningMessage.MountFailed.Link.Text +msgid "View event log" +msgstr "" + +#: WarningMessage.MountCryptoFailed.Text +msgid "Maybe you entered the wrong password?" +msgstr "" + +#: WarningMessage.InvalidContainerType.Title +msgid "Unknown format" +msgstr "" + +#: WarningMessage.InvalidContainerType.Text +msgid "The type of this volume ist not known. Maybe you want to initialize itfirst?" +msgstr "" + +#: WarningMessage.InvalidContainerType.Link.Text +msgid "Format volume" +msgstr "" + #: WarningMessage.UmountFailed.Title msgid "Closing failed" msgstr "" @@ -144,35 +112,3 @@ msgstr "" #: WarningMessage.IsNotMounted.Text msgid "The volume is already closed." msgstr "" - -#: Title.Mount -msgid "Opening a volume" -msgstr "" - -#: Title.Umount -msgid "Closing a volume" -msgstr "" - -#: Help.Open -msgid "The volume is currently closed. If you open the volume, then you will be able to access the data of this volume. Just search in your network environment for the server and browse through its shares." -msgstr "" - -#: Help.Close -msgid "Currently the volume is open. All files are accessible for everyone who has access to your local network. Just search in your network environment for the server and browse through its shares. Before you close the volume you should quit all programs with open files on it." -msgstr "" - -#: WarningMessage.MountFailed.Title -msgid "Opening failed" -msgstr "" - -#: WarningMessage.MountFailed.Text -msgid "The volume could not be opened for some reason. Sorry!" -msgstr "" - -#: Name -msgid "Open and close volumes" -msgstr "" - -#: WarningMessage.MountFailed.Link.Text -msgid "View event log" -msgstr "" diff --git a/plugins/volume_mount/intl/fi/cryptobox-server-feature-volume_mount.po b/plugins/volume_mount/intl/fi/cryptobox-server-feature-volume_mount.po index 6b1d6bb..a038b15 100644 --- a/plugins/volume_mount/intl/fi/cryptobox-server-feature-volume_mount.po +++ b/plugins/volume_mount/intl/fi/cryptobox-server-feature-volume_mount.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "Mount and umount volumes" +msgid "Open and close volumes" msgstr "" #: Link @@ -22,89 +22,29 @@ msgid "Activation" msgstr "" #: Title.Mount -msgid "Activate volume" +msgid "Opening a volume" msgstr "" #: Title.Umount -msgid "Deactivate volume" +msgid "Closing a volume" msgstr "" -#: SuccessMessage.MountDone.Title -msgid "Encrypted filesystem activated" -msgstr "" - -#: SuccessMessage.MountDone.Text -msgid "The encrypted filesystem is now available." -msgstr "" - -#: SuccessMessage.UmountDone.Title -msgid "Encrypted filesystem deactivated" -msgstr "" - -#: SuccessMessage.UmountDone.Text -msgid "The encrypted filesystem is now secured from all forms of access." -msgstr "" - -#: WarningMessage.MountFailed.Title -msgid "Activation failed" -msgstr "" - -#: WarningMessage.MountFailed.Text -msgid "The volume could not be activated for some reason. Sorry!" -msgstr "" - -#: WarningMessage.MountCryptoFailed.Text -msgid "Maybe you entered the wrong password?" -msgstr "" - -#: WarningMessage.InvalidContainerType.Title -msgid "Unknown format" -msgstr "" - -#: WarningMessage.InvalidContainerType.Text -msgid "The type of this volume ist not known. Maybe you want to initialize itfirst?" -msgstr "" - -#: WarningMessage.InvalidContainerType.Link.Text -msgid "Format volume" -msgstr "" - -#: WarningMessage.UmountFailed.Title -msgid "Deactivation failed" -msgstr "" - -#: WarningMessage.UmountFailed.Text -msgid "The volume could not be deactivated. Probably some files are still in use. In case of emergency just shut down the CryptoBox!" -msgstr "" - -#: WarningMessage.IsAlreadyMounted.Title -msgid "Already active" -msgstr "" - -#: WarningMessage.IsAlreadyMounted.Text -msgid "The volume is already active." -msgstr "" - -#: WarningMessage.IsNotMounted.Title -msgid "Inactive" -msgstr "" - -#: WarningMessage.IsNotMounted.Text -msgid "The volume is currently not active." -msgstr "" - -#: Title.Mount +#: Button.Mount msgid "Open volume" msgstr "" -#: Title.Umount -msgid "Turn on the volume" -msgstr "" - #: Button.Umount msgid "Close volume" msgstr "" +#: Help.Open +msgid "The volume is currently closed. If you open the volume, then you will be able to access the data of this volume. Just search in your network environment for the server and browse through its shares." +msgstr "" + +#: Help.Close +msgid "Currently the volume is open. All files are accessible for everyone who has access to your local network. Just search in your network environment for the server and browse through its shares. Before you close the volume you should quit all programs with open files on it." +msgstr "" + #: SuccessMessage.MountDone.Title msgid "Volume opened" msgstr "" @@ -121,6 +61,34 @@ msgstr "" msgid "The content of this volume is protected from access now." msgstr "" +#: WarningMessage.MountFailed.Title +msgid "Opening failed" +msgstr "" + +#: WarningMessage.MountFailed.Text +msgid "The volume could not be opened for some reason. Sorry!" +msgstr "" + +#: WarningMessage.MountFailed.Link.Text +msgid "View event log" +msgstr "" + +#: WarningMessage.MountCryptoFailed.Text +msgid "Maybe you entered the wrong password?" +msgstr "" + +#: WarningMessage.InvalidContainerType.Title +msgid "Unknown format" +msgstr "" + +#: WarningMessage.InvalidContainerType.Text +msgid "The type of this volume ist not known. Maybe you want to initialize itfirst?" +msgstr "" + +#: WarningMessage.InvalidContainerType.Link.Text +msgid "Format volume" +msgstr "" + #: WarningMessage.UmountFailed.Title msgid "Closing failed" msgstr "" @@ -144,35 +112,3 @@ msgstr "" #: WarningMessage.IsNotMounted.Text msgid "The volume is already closed." msgstr "" - -#: Title.Mount -msgid "Opening a volume" -msgstr "" - -#: Title.Umount -msgid "Closing a volume" -msgstr "" - -#: Help.Open -msgid "The volume is currently closed. If you open the volume, then you will be able to access the data of this volume. Just search in your network environment for the server and browse through its shares." -msgstr "" - -#: Help.Close -msgid "Currently the volume is open. All files are accessible for everyone who has access to your local network. Just search in your network environment for the server and browse through its shares. Before you close the volume you should quit all programs with open files on it." -msgstr "" - -#: WarningMessage.MountFailed.Title -msgid "Opening failed" -msgstr "" - -#: WarningMessage.MountFailed.Text -msgid "The volume could not be opened for some reason. Sorry!" -msgstr "" - -#: Name -msgid "Open and close volumes" -msgstr "" - -#: WarningMessage.MountFailed.Link.Text -msgid "View event log" -msgstr "" diff --git a/plugins/volume_mount/intl/fr/cryptobox-server-feature-volume_mount.po b/plugins/volume_mount/intl/fr/cryptobox-server-feature-volume_mount.po index 6b1d6bb..a038b15 100644 --- a/plugins/volume_mount/intl/fr/cryptobox-server-feature-volume_mount.po +++ b/plugins/volume_mount/intl/fr/cryptobox-server-feature-volume_mount.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "Mount and umount volumes" +msgid "Open and close volumes" msgstr "" #: Link @@ -22,89 +22,29 @@ msgid "Activation" msgstr "" #: Title.Mount -msgid "Activate volume" +msgid "Opening a volume" msgstr "" #: Title.Umount -msgid "Deactivate volume" +msgid "Closing a volume" msgstr "" -#: SuccessMessage.MountDone.Title -msgid "Encrypted filesystem activated" -msgstr "" - -#: SuccessMessage.MountDone.Text -msgid "The encrypted filesystem is now available." -msgstr "" - -#: SuccessMessage.UmountDone.Title -msgid "Encrypted filesystem deactivated" -msgstr "" - -#: SuccessMessage.UmountDone.Text -msgid "The encrypted filesystem is now secured from all forms of access." -msgstr "" - -#: WarningMessage.MountFailed.Title -msgid "Activation failed" -msgstr "" - -#: WarningMessage.MountFailed.Text -msgid "The volume could not be activated for some reason. Sorry!" -msgstr "" - -#: WarningMessage.MountCryptoFailed.Text -msgid "Maybe you entered the wrong password?" -msgstr "" - -#: WarningMessage.InvalidContainerType.Title -msgid "Unknown format" -msgstr "" - -#: WarningMessage.InvalidContainerType.Text -msgid "The type of this volume ist not known. Maybe you want to initialize itfirst?" -msgstr "" - -#: WarningMessage.InvalidContainerType.Link.Text -msgid "Format volume" -msgstr "" - -#: WarningMessage.UmountFailed.Title -msgid "Deactivation failed" -msgstr "" - -#: WarningMessage.UmountFailed.Text -msgid "The volume could not be deactivated. Probably some files are still in use. In case of emergency just shut down the CryptoBox!" -msgstr "" - -#: WarningMessage.IsAlreadyMounted.Title -msgid "Already active" -msgstr "" - -#: WarningMessage.IsAlreadyMounted.Text -msgid "The volume is already active." -msgstr "" - -#: WarningMessage.IsNotMounted.Title -msgid "Inactive" -msgstr "" - -#: WarningMessage.IsNotMounted.Text -msgid "The volume is currently not active." -msgstr "" - -#: Title.Mount +#: Button.Mount msgid "Open volume" msgstr "" -#: Title.Umount -msgid "Turn on the volume" -msgstr "" - #: Button.Umount msgid "Close volume" msgstr "" +#: Help.Open +msgid "The volume is currently closed. If you open the volume, then you will be able to access the data of this volume. Just search in your network environment for the server and browse through its shares." +msgstr "" + +#: Help.Close +msgid "Currently the volume is open. All files are accessible for everyone who has access to your local network. Just search in your network environment for the server and browse through its shares. Before you close the volume you should quit all programs with open files on it." +msgstr "" + #: SuccessMessage.MountDone.Title msgid "Volume opened" msgstr "" @@ -121,6 +61,34 @@ msgstr "" msgid "The content of this volume is protected from access now." msgstr "" +#: WarningMessage.MountFailed.Title +msgid "Opening failed" +msgstr "" + +#: WarningMessage.MountFailed.Text +msgid "The volume could not be opened for some reason. Sorry!" +msgstr "" + +#: WarningMessage.MountFailed.Link.Text +msgid "View event log" +msgstr "" + +#: WarningMessage.MountCryptoFailed.Text +msgid "Maybe you entered the wrong password?" +msgstr "" + +#: WarningMessage.InvalidContainerType.Title +msgid "Unknown format" +msgstr "" + +#: WarningMessage.InvalidContainerType.Text +msgid "The type of this volume ist not known. Maybe you want to initialize itfirst?" +msgstr "" + +#: WarningMessage.InvalidContainerType.Link.Text +msgid "Format volume" +msgstr "" + #: WarningMessage.UmountFailed.Title msgid "Closing failed" msgstr "" @@ -144,35 +112,3 @@ msgstr "" #: WarningMessage.IsNotMounted.Text msgid "The volume is already closed." msgstr "" - -#: Title.Mount -msgid "Opening a volume" -msgstr "" - -#: Title.Umount -msgid "Closing a volume" -msgstr "" - -#: Help.Open -msgid "The volume is currently closed. If you open the volume, then you will be able to access the data of this volume. Just search in your network environment for the server and browse through its shares." -msgstr "" - -#: Help.Close -msgid "Currently the volume is open. All files are accessible for everyone who has access to your local network. Just search in your network environment for the server and browse through its shares. Before you close the volume you should quit all programs with open files on it." -msgstr "" - -#: WarningMessage.MountFailed.Title -msgid "Opening failed" -msgstr "" - -#: WarningMessage.MountFailed.Text -msgid "The volume could not be opened for some reason. Sorry!" -msgstr "" - -#: Name -msgid "Open and close volumes" -msgstr "" - -#: WarningMessage.MountFailed.Link.Text -msgid "View event log" -msgstr "" diff --git a/plugins/volume_mount/intl/hu/cryptobox-server-feature-volume_mount.po b/plugins/volume_mount/intl/hu/cryptobox-server-feature-volume_mount.po index 6b1d6bb..a038b15 100644 --- a/plugins/volume_mount/intl/hu/cryptobox-server-feature-volume_mount.po +++ b/plugins/volume_mount/intl/hu/cryptobox-server-feature-volume_mount.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "Mount and umount volumes" +msgid "Open and close volumes" msgstr "" #: Link @@ -22,89 +22,29 @@ msgid "Activation" msgstr "" #: Title.Mount -msgid "Activate volume" +msgid "Opening a volume" msgstr "" #: Title.Umount -msgid "Deactivate volume" +msgid "Closing a volume" msgstr "" -#: SuccessMessage.MountDone.Title -msgid "Encrypted filesystem activated" -msgstr "" - -#: SuccessMessage.MountDone.Text -msgid "The encrypted filesystem is now available." -msgstr "" - -#: SuccessMessage.UmountDone.Title -msgid "Encrypted filesystem deactivated" -msgstr "" - -#: SuccessMessage.UmountDone.Text -msgid "The encrypted filesystem is now secured from all forms of access." -msgstr "" - -#: WarningMessage.MountFailed.Title -msgid "Activation failed" -msgstr "" - -#: WarningMessage.MountFailed.Text -msgid "The volume could not be activated for some reason. Sorry!" -msgstr "" - -#: WarningMessage.MountCryptoFailed.Text -msgid "Maybe you entered the wrong password?" -msgstr "" - -#: WarningMessage.InvalidContainerType.Title -msgid "Unknown format" -msgstr "" - -#: WarningMessage.InvalidContainerType.Text -msgid "The type of this volume ist not known. Maybe you want to initialize itfirst?" -msgstr "" - -#: WarningMessage.InvalidContainerType.Link.Text -msgid "Format volume" -msgstr "" - -#: WarningMessage.UmountFailed.Title -msgid "Deactivation failed" -msgstr "" - -#: WarningMessage.UmountFailed.Text -msgid "The volume could not be deactivated. Probably some files are still in use. In case of emergency just shut down the CryptoBox!" -msgstr "" - -#: WarningMessage.IsAlreadyMounted.Title -msgid "Already active" -msgstr "" - -#: WarningMessage.IsAlreadyMounted.Text -msgid "The volume is already active." -msgstr "" - -#: WarningMessage.IsNotMounted.Title -msgid "Inactive" -msgstr "" - -#: WarningMessage.IsNotMounted.Text -msgid "The volume is currently not active." -msgstr "" - -#: Title.Mount +#: Button.Mount msgid "Open volume" msgstr "" -#: Title.Umount -msgid "Turn on the volume" -msgstr "" - #: Button.Umount msgid "Close volume" msgstr "" +#: Help.Open +msgid "The volume is currently closed. If you open the volume, then you will be able to access the data of this volume. Just search in your network environment for the server and browse through its shares." +msgstr "" + +#: Help.Close +msgid "Currently the volume is open. All files are accessible for everyone who has access to your local network. Just search in your network environment for the server and browse through its shares. Before you close the volume you should quit all programs with open files on it." +msgstr "" + #: SuccessMessage.MountDone.Title msgid "Volume opened" msgstr "" @@ -121,6 +61,34 @@ msgstr "" msgid "The content of this volume is protected from access now." msgstr "" +#: WarningMessage.MountFailed.Title +msgid "Opening failed" +msgstr "" + +#: WarningMessage.MountFailed.Text +msgid "The volume could not be opened for some reason. Sorry!" +msgstr "" + +#: WarningMessage.MountFailed.Link.Text +msgid "View event log" +msgstr "" + +#: WarningMessage.MountCryptoFailed.Text +msgid "Maybe you entered the wrong password?" +msgstr "" + +#: WarningMessage.InvalidContainerType.Title +msgid "Unknown format" +msgstr "" + +#: WarningMessage.InvalidContainerType.Text +msgid "The type of this volume ist not known. Maybe you want to initialize itfirst?" +msgstr "" + +#: WarningMessage.InvalidContainerType.Link.Text +msgid "Format volume" +msgstr "" + #: WarningMessage.UmountFailed.Title msgid "Closing failed" msgstr "" @@ -144,35 +112,3 @@ msgstr "" #: WarningMessage.IsNotMounted.Text msgid "The volume is already closed." msgstr "" - -#: Title.Mount -msgid "Opening a volume" -msgstr "" - -#: Title.Umount -msgid "Closing a volume" -msgstr "" - -#: Help.Open -msgid "The volume is currently closed. If you open the volume, then you will be able to access the data of this volume. Just search in your network environment for the server and browse through its shares." -msgstr "" - -#: Help.Close -msgid "Currently the volume is open. All files are accessible for everyone who has access to your local network. Just search in your network environment for the server and browse through its shares. Before you close the volume you should quit all programs with open files on it." -msgstr "" - -#: WarningMessage.MountFailed.Title -msgid "Opening failed" -msgstr "" - -#: WarningMessage.MountFailed.Text -msgid "The volume could not be opened for some reason. Sorry!" -msgstr "" - -#: Name -msgid "Open and close volumes" -msgstr "" - -#: WarningMessage.MountFailed.Link.Text -msgid "View event log" -msgstr "" diff --git a/plugins/volume_mount/intl/it/cryptobox-server-feature-volume_mount.po b/plugins/volume_mount/intl/it/cryptobox-server-feature-volume_mount.po index 6b1d6bb..a038b15 100644 --- a/plugins/volume_mount/intl/it/cryptobox-server-feature-volume_mount.po +++ b/plugins/volume_mount/intl/it/cryptobox-server-feature-volume_mount.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "Mount and umount volumes" +msgid "Open and close volumes" msgstr "" #: Link @@ -22,89 +22,29 @@ msgid "Activation" msgstr "" #: Title.Mount -msgid "Activate volume" +msgid "Opening a volume" msgstr "" #: Title.Umount -msgid "Deactivate volume" +msgid "Closing a volume" msgstr "" -#: SuccessMessage.MountDone.Title -msgid "Encrypted filesystem activated" -msgstr "" - -#: SuccessMessage.MountDone.Text -msgid "The encrypted filesystem is now available." -msgstr "" - -#: SuccessMessage.UmountDone.Title -msgid "Encrypted filesystem deactivated" -msgstr "" - -#: SuccessMessage.UmountDone.Text -msgid "The encrypted filesystem is now secured from all forms of access." -msgstr "" - -#: WarningMessage.MountFailed.Title -msgid "Activation failed" -msgstr "" - -#: WarningMessage.MountFailed.Text -msgid "The volume could not be activated for some reason. Sorry!" -msgstr "" - -#: WarningMessage.MountCryptoFailed.Text -msgid "Maybe you entered the wrong password?" -msgstr "" - -#: WarningMessage.InvalidContainerType.Title -msgid "Unknown format" -msgstr "" - -#: WarningMessage.InvalidContainerType.Text -msgid "The type of this volume ist not known. Maybe you want to initialize itfirst?" -msgstr "" - -#: WarningMessage.InvalidContainerType.Link.Text -msgid "Format volume" -msgstr "" - -#: WarningMessage.UmountFailed.Title -msgid "Deactivation failed" -msgstr "" - -#: WarningMessage.UmountFailed.Text -msgid "The volume could not be deactivated. Probably some files are still in use. In case of emergency just shut down the CryptoBox!" -msgstr "" - -#: WarningMessage.IsAlreadyMounted.Title -msgid "Already active" -msgstr "" - -#: WarningMessage.IsAlreadyMounted.Text -msgid "The volume is already active." -msgstr "" - -#: WarningMessage.IsNotMounted.Title -msgid "Inactive" -msgstr "" - -#: WarningMessage.IsNotMounted.Text -msgid "The volume is currently not active." -msgstr "" - -#: Title.Mount +#: Button.Mount msgid "Open volume" msgstr "" -#: Title.Umount -msgid "Turn on the volume" -msgstr "" - #: Button.Umount msgid "Close volume" msgstr "" +#: Help.Open +msgid "The volume is currently closed. If you open the volume, then you will be able to access the data of this volume. Just search in your network environment for the server and browse through its shares." +msgstr "" + +#: Help.Close +msgid "Currently the volume is open. All files are accessible for everyone who has access to your local network. Just search in your network environment for the server and browse through its shares. Before you close the volume you should quit all programs with open files on it." +msgstr "" + #: SuccessMessage.MountDone.Title msgid "Volume opened" msgstr "" @@ -121,6 +61,34 @@ msgstr "" msgid "The content of this volume is protected from access now." msgstr "" +#: WarningMessage.MountFailed.Title +msgid "Opening failed" +msgstr "" + +#: WarningMessage.MountFailed.Text +msgid "The volume could not be opened for some reason. Sorry!" +msgstr "" + +#: WarningMessage.MountFailed.Link.Text +msgid "View event log" +msgstr "" + +#: WarningMessage.MountCryptoFailed.Text +msgid "Maybe you entered the wrong password?" +msgstr "" + +#: WarningMessage.InvalidContainerType.Title +msgid "Unknown format" +msgstr "" + +#: WarningMessage.InvalidContainerType.Text +msgid "The type of this volume ist not known. Maybe you want to initialize itfirst?" +msgstr "" + +#: WarningMessage.InvalidContainerType.Link.Text +msgid "Format volume" +msgstr "" + #: WarningMessage.UmountFailed.Title msgid "Closing failed" msgstr "" @@ -144,35 +112,3 @@ msgstr "" #: WarningMessage.IsNotMounted.Text msgid "The volume is already closed." msgstr "" - -#: Title.Mount -msgid "Opening a volume" -msgstr "" - -#: Title.Umount -msgid "Closing a volume" -msgstr "" - -#: Help.Open -msgid "The volume is currently closed. If you open the volume, then you will be able to access the data of this volume. Just search in your network environment for the server and browse through its shares." -msgstr "" - -#: Help.Close -msgid "Currently the volume is open. All files are accessible for everyone who has access to your local network. Just search in your network environment for the server and browse through its shares. Before you close the volume you should quit all programs with open files on it." -msgstr "" - -#: WarningMessage.MountFailed.Title -msgid "Opening failed" -msgstr "" - -#: WarningMessage.MountFailed.Text -msgid "The volume could not be opened for some reason. Sorry!" -msgstr "" - -#: Name -msgid "Open and close volumes" -msgstr "" - -#: WarningMessage.MountFailed.Link.Text -msgid "View event log" -msgstr "" diff --git a/plugins/volume_mount/intl/ja/cryptobox-server-feature-volume_mount.po b/plugins/volume_mount/intl/ja/cryptobox-server-feature-volume_mount.po index 6b1d6bb..a038b15 100644 --- a/plugins/volume_mount/intl/ja/cryptobox-server-feature-volume_mount.po +++ b/plugins/volume_mount/intl/ja/cryptobox-server-feature-volume_mount.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "Mount and umount volumes" +msgid "Open and close volumes" msgstr "" #: Link @@ -22,89 +22,29 @@ msgid "Activation" msgstr "" #: Title.Mount -msgid "Activate volume" +msgid "Opening a volume" msgstr "" #: Title.Umount -msgid "Deactivate volume" +msgid "Closing a volume" msgstr "" -#: SuccessMessage.MountDone.Title -msgid "Encrypted filesystem activated" -msgstr "" - -#: SuccessMessage.MountDone.Text -msgid "The encrypted filesystem is now available." -msgstr "" - -#: SuccessMessage.UmountDone.Title -msgid "Encrypted filesystem deactivated" -msgstr "" - -#: SuccessMessage.UmountDone.Text -msgid "The encrypted filesystem is now secured from all forms of access." -msgstr "" - -#: WarningMessage.MountFailed.Title -msgid "Activation failed" -msgstr "" - -#: WarningMessage.MountFailed.Text -msgid "The volume could not be activated for some reason. Sorry!" -msgstr "" - -#: WarningMessage.MountCryptoFailed.Text -msgid "Maybe you entered the wrong password?" -msgstr "" - -#: WarningMessage.InvalidContainerType.Title -msgid "Unknown format" -msgstr "" - -#: WarningMessage.InvalidContainerType.Text -msgid "The type of this volume ist not known. Maybe you want to initialize itfirst?" -msgstr "" - -#: WarningMessage.InvalidContainerType.Link.Text -msgid "Format volume" -msgstr "" - -#: WarningMessage.UmountFailed.Title -msgid "Deactivation failed" -msgstr "" - -#: WarningMessage.UmountFailed.Text -msgid "The volume could not be deactivated. Probably some files are still in use. In case of emergency just shut down the CryptoBox!" -msgstr "" - -#: WarningMessage.IsAlreadyMounted.Title -msgid "Already active" -msgstr "" - -#: WarningMessage.IsAlreadyMounted.Text -msgid "The volume is already active." -msgstr "" - -#: WarningMessage.IsNotMounted.Title -msgid "Inactive" -msgstr "" - -#: WarningMessage.IsNotMounted.Text -msgid "The volume is currently not active." -msgstr "" - -#: Title.Mount +#: Button.Mount msgid "Open volume" msgstr "" -#: Title.Umount -msgid "Turn on the volume" -msgstr "" - #: Button.Umount msgid "Close volume" msgstr "" +#: Help.Open +msgid "The volume is currently closed. If you open the volume, then you will be able to access the data of this volume. Just search in your network environment for the server and browse through its shares." +msgstr "" + +#: Help.Close +msgid "Currently the volume is open. All files are accessible for everyone who has access to your local network. Just search in your network environment for the server and browse through its shares. Before you close the volume you should quit all programs with open files on it." +msgstr "" + #: SuccessMessage.MountDone.Title msgid "Volume opened" msgstr "" @@ -121,6 +61,34 @@ msgstr "" msgid "The content of this volume is protected from access now." msgstr "" +#: WarningMessage.MountFailed.Title +msgid "Opening failed" +msgstr "" + +#: WarningMessage.MountFailed.Text +msgid "The volume could not be opened for some reason. Sorry!" +msgstr "" + +#: WarningMessage.MountFailed.Link.Text +msgid "View event log" +msgstr "" + +#: WarningMessage.MountCryptoFailed.Text +msgid "Maybe you entered the wrong password?" +msgstr "" + +#: WarningMessage.InvalidContainerType.Title +msgid "Unknown format" +msgstr "" + +#: WarningMessage.InvalidContainerType.Text +msgid "The type of this volume ist not known. Maybe you want to initialize itfirst?" +msgstr "" + +#: WarningMessage.InvalidContainerType.Link.Text +msgid "Format volume" +msgstr "" + #: WarningMessage.UmountFailed.Title msgid "Closing failed" msgstr "" @@ -144,35 +112,3 @@ msgstr "" #: WarningMessage.IsNotMounted.Text msgid "The volume is already closed." msgstr "" - -#: Title.Mount -msgid "Opening a volume" -msgstr "" - -#: Title.Umount -msgid "Closing a volume" -msgstr "" - -#: Help.Open -msgid "The volume is currently closed. If you open the volume, then you will be able to access the data of this volume. Just search in your network environment for the server and browse through its shares." -msgstr "" - -#: Help.Close -msgid "Currently the volume is open. All files are accessible for everyone who has access to your local network. Just search in your network environment for the server and browse through its shares. Before you close the volume you should quit all programs with open files on it." -msgstr "" - -#: WarningMessage.MountFailed.Title -msgid "Opening failed" -msgstr "" - -#: WarningMessage.MountFailed.Text -msgid "The volume could not be opened for some reason. Sorry!" -msgstr "" - -#: Name -msgid "Open and close volumes" -msgstr "" - -#: WarningMessage.MountFailed.Link.Text -msgid "View event log" -msgstr "" diff --git a/plugins/volume_mount/intl/nl/cryptobox-server-feature-volume_mount.po b/plugins/volume_mount/intl/nl/cryptobox-server-feature-volume_mount.po index 6b1d6bb..a038b15 100644 --- a/plugins/volume_mount/intl/nl/cryptobox-server-feature-volume_mount.po +++ b/plugins/volume_mount/intl/nl/cryptobox-server-feature-volume_mount.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "Mount and umount volumes" +msgid "Open and close volumes" msgstr "" #: Link @@ -22,89 +22,29 @@ msgid "Activation" msgstr "" #: Title.Mount -msgid "Activate volume" +msgid "Opening a volume" msgstr "" #: Title.Umount -msgid "Deactivate volume" +msgid "Closing a volume" msgstr "" -#: SuccessMessage.MountDone.Title -msgid "Encrypted filesystem activated" -msgstr "" - -#: SuccessMessage.MountDone.Text -msgid "The encrypted filesystem is now available." -msgstr "" - -#: SuccessMessage.UmountDone.Title -msgid "Encrypted filesystem deactivated" -msgstr "" - -#: SuccessMessage.UmountDone.Text -msgid "The encrypted filesystem is now secured from all forms of access." -msgstr "" - -#: WarningMessage.MountFailed.Title -msgid "Activation failed" -msgstr "" - -#: WarningMessage.MountFailed.Text -msgid "The volume could not be activated for some reason. Sorry!" -msgstr "" - -#: WarningMessage.MountCryptoFailed.Text -msgid "Maybe you entered the wrong password?" -msgstr "" - -#: WarningMessage.InvalidContainerType.Title -msgid "Unknown format" -msgstr "" - -#: WarningMessage.InvalidContainerType.Text -msgid "The type of this volume ist not known. Maybe you want to initialize itfirst?" -msgstr "" - -#: WarningMessage.InvalidContainerType.Link.Text -msgid "Format volume" -msgstr "" - -#: WarningMessage.UmountFailed.Title -msgid "Deactivation failed" -msgstr "" - -#: WarningMessage.UmountFailed.Text -msgid "The volume could not be deactivated. Probably some files are still in use. In case of emergency just shut down the CryptoBox!" -msgstr "" - -#: WarningMessage.IsAlreadyMounted.Title -msgid "Already active" -msgstr "" - -#: WarningMessage.IsAlreadyMounted.Text -msgid "The volume is already active." -msgstr "" - -#: WarningMessage.IsNotMounted.Title -msgid "Inactive" -msgstr "" - -#: WarningMessage.IsNotMounted.Text -msgid "The volume is currently not active." -msgstr "" - -#: Title.Mount +#: Button.Mount msgid "Open volume" msgstr "" -#: Title.Umount -msgid "Turn on the volume" -msgstr "" - #: Button.Umount msgid "Close volume" msgstr "" +#: Help.Open +msgid "The volume is currently closed. If you open the volume, then you will be able to access the data of this volume. Just search in your network environment for the server and browse through its shares." +msgstr "" + +#: Help.Close +msgid "Currently the volume is open. All files are accessible for everyone who has access to your local network. Just search in your network environment for the server and browse through its shares. Before you close the volume you should quit all programs with open files on it." +msgstr "" + #: SuccessMessage.MountDone.Title msgid "Volume opened" msgstr "" @@ -121,6 +61,34 @@ msgstr "" msgid "The content of this volume is protected from access now." msgstr "" +#: WarningMessage.MountFailed.Title +msgid "Opening failed" +msgstr "" + +#: WarningMessage.MountFailed.Text +msgid "The volume could not be opened for some reason. Sorry!" +msgstr "" + +#: WarningMessage.MountFailed.Link.Text +msgid "View event log" +msgstr "" + +#: WarningMessage.MountCryptoFailed.Text +msgid "Maybe you entered the wrong password?" +msgstr "" + +#: WarningMessage.InvalidContainerType.Title +msgid "Unknown format" +msgstr "" + +#: WarningMessage.InvalidContainerType.Text +msgid "The type of this volume ist not known. Maybe you want to initialize itfirst?" +msgstr "" + +#: WarningMessage.InvalidContainerType.Link.Text +msgid "Format volume" +msgstr "" + #: WarningMessage.UmountFailed.Title msgid "Closing failed" msgstr "" @@ -144,35 +112,3 @@ msgstr "" #: WarningMessage.IsNotMounted.Text msgid "The volume is already closed." msgstr "" - -#: Title.Mount -msgid "Opening a volume" -msgstr "" - -#: Title.Umount -msgid "Closing a volume" -msgstr "" - -#: Help.Open -msgid "The volume is currently closed. If you open the volume, then you will be able to access the data of this volume. Just search in your network environment for the server and browse through its shares." -msgstr "" - -#: Help.Close -msgid "Currently the volume is open. All files are accessible for everyone who has access to your local network. Just search in your network environment for the server and browse through its shares. Before you close the volume you should quit all programs with open files on it." -msgstr "" - -#: WarningMessage.MountFailed.Title -msgid "Opening failed" -msgstr "" - -#: WarningMessage.MountFailed.Text -msgid "The volume could not be opened for some reason. Sorry!" -msgstr "" - -#: Name -msgid "Open and close volumes" -msgstr "" - -#: WarningMessage.MountFailed.Link.Text -msgid "View event log" -msgstr "" diff --git a/plugins/volume_mount/intl/pl/cryptobox-server-feature-volume_mount.po b/plugins/volume_mount/intl/pl/cryptobox-server-feature-volume_mount.po index 6b1d6bb..a038b15 100644 --- a/plugins/volume_mount/intl/pl/cryptobox-server-feature-volume_mount.po +++ b/plugins/volume_mount/intl/pl/cryptobox-server-feature-volume_mount.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "Mount and umount volumes" +msgid "Open and close volumes" msgstr "" #: Link @@ -22,89 +22,29 @@ msgid "Activation" msgstr "" #: Title.Mount -msgid "Activate volume" +msgid "Opening a volume" msgstr "" #: Title.Umount -msgid "Deactivate volume" +msgid "Closing a volume" msgstr "" -#: SuccessMessage.MountDone.Title -msgid "Encrypted filesystem activated" -msgstr "" - -#: SuccessMessage.MountDone.Text -msgid "The encrypted filesystem is now available." -msgstr "" - -#: SuccessMessage.UmountDone.Title -msgid "Encrypted filesystem deactivated" -msgstr "" - -#: SuccessMessage.UmountDone.Text -msgid "The encrypted filesystem is now secured from all forms of access." -msgstr "" - -#: WarningMessage.MountFailed.Title -msgid "Activation failed" -msgstr "" - -#: WarningMessage.MountFailed.Text -msgid "The volume could not be activated for some reason. Sorry!" -msgstr "" - -#: WarningMessage.MountCryptoFailed.Text -msgid "Maybe you entered the wrong password?" -msgstr "" - -#: WarningMessage.InvalidContainerType.Title -msgid "Unknown format" -msgstr "" - -#: WarningMessage.InvalidContainerType.Text -msgid "The type of this volume ist not known. Maybe you want to initialize itfirst?" -msgstr "" - -#: WarningMessage.InvalidContainerType.Link.Text -msgid "Format volume" -msgstr "" - -#: WarningMessage.UmountFailed.Title -msgid "Deactivation failed" -msgstr "" - -#: WarningMessage.UmountFailed.Text -msgid "The volume could not be deactivated. Probably some files are still in use. In case of emergency just shut down the CryptoBox!" -msgstr "" - -#: WarningMessage.IsAlreadyMounted.Title -msgid "Already active" -msgstr "" - -#: WarningMessage.IsAlreadyMounted.Text -msgid "The volume is already active." -msgstr "" - -#: WarningMessage.IsNotMounted.Title -msgid "Inactive" -msgstr "" - -#: WarningMessage.IsNotMounted.Text -msgid "The volume is currently not active." -msgstr "" - -#: Title.Mount +#: Button.Mount msgid "Open volume" msgstr "" -#: Title.Umount -msgid "Turn on the volume" -msgstr "" - #: Button.Umount msgid "Close volume" msgstr "" +#: Help.Open +msgid "The volume is currently closed. If you open the volume, then you will be able to access the data of this volume. Just search in your network environment for the server and browse through its shares." +msgstr "" + +#: Help.Close +msgid "Currently the volume is open. All files are accessible for everyone who has access to your local network. Just search in your network environment for the server and browse through its shares. Before you close the volume you should quit all programs with open files on it." +msgstr "" + #: SuccessMessage.MountDone.Title msgid "Volume opened" msgstr "" @@ -121,6 +61,34 @@ msgstr "" msgid "The content of this volume is protected from access now." msgstr "" +#: WarningMessage.MountFailed.Title +msgid "Opening failed" +msgstr "" + +#: WarningMessage.MountFailed.Text +msgid "The volume could not be opened for some reason. Sorry!" +msgstr "" + +#: WarningMessage.MountFailed.Link.Text +msgid "View event log" +msgstr "" + +#: WarningMessage.MountCryptoFailed.Text +msgid "Maybe you entered the wrong password?" +msgstr "" + +#: WarningMessage.InvalidContainerType.Title +msgid "Unknown format" +msgstr "" + +#: WarningMessage.InvalidContainerType.Text +msgid "The type of this volume ist not known. Maybe you want to initialize itfirst?" +msgstr "" + +#: WarningMessage.InvalidContainerType.Link.Text +msgid "Format volume" +msgstr "" + #: WarningMessage.UmountFailed.Title msgid "Closing failed" msgstr "" @@ -144,35 +112,3 @@ msgstr "" #: WarningMessage.IsNotMounted.Text msgid "The volume is already closed." msgstr "" - -#: Title.Mount -msgid "Opening a volume" -msgstr "" - -#: Title.Umount -msgid "Closing a volume" -msgstr "" - -#: Help.Open -msgid "The volume is currently closed. If you open the volume, then you will be able to access the data of this volume. Just search in your network environment for the server and browse through its shares." -msgstr "" - -#: Help.Close -msgid "Currently the volume is open. All files are accessible for everyone who has access to your local network. Just search in your network environment for the server and browse through its shares. Before you close the volume you should quit all programs with open files on it." -msgstr "" - -#: WarningMessage.MountFailed.Title -msgid "Opening failed" -msgstr "" - -#: WarningMessage.MountFailed.Text -msgid "The volume could not be opened for some reason. Sorry!" -msgstr "" - -#: Name -msgid "Open and close volumes" -msgstr "" - -#: WarningMessage.MountFailed.Link.Text -msgid "View event log" -msgstr "" diff --git a/plugins/volume_mount/intl/pt/cryptobox-server-feature-volume_mount.po b/plugins/volume_mount/intl/pt/cryptobox-server-feature-volume_mount.po index 6b1d6bb..a038b15 100644 --- a/plugins/volume_mount/intl/pt/cryptobox-server-feature-volume_mount.po +++ b/plugins/volume_mount/intl/pt/cryptobox-server-feature-volume_mount.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "Mount and umount volumes" +msgid "Open and close volumes" msgstr "" #: Link @@ -22,89 +22,29 @@ msgid "Activation" msgstr "" #: Title.Mount -msgid "Activate volume" +msgid "Opening a volume" msgstr "" #: Title.Umount -msgid "Deactivate volume" +msgid "Closing a volume" msgstr "" -#: SuccessMessage.MountDone.Title -msgid "Encrypted filesystem activated" -msgstr "" - -#: SuccessMessage.MountDone.Text -msgid "The encrypted filesystem is now available." -msgstr "" - -#: SuccessMessage.UmountDone.Title -msgid "Encrypted filesystem deactivated" -msgstr "" - -#: SuccessMessage.UmountDone.Text -msgid "The encrypted filesystem is now secured from all forms of access." -msgstr "" - -#: WarningMessage.MountFailed.Title -msgid "Activation failed" -msgstr "" - -#: WarningMessage.MountFailed.Text -msgid "The volume could not be activated for some reason. Sorry!" -msgstr "" - -#: WarningMessage.MountCryptoFailed.Text -msgid "Maybe you entered the wrong password?" -msgstr "" - -#: WarningMessage.InvalidContainerType.Title -msgid "Unknown format" -msgstr "" - -#: WarningMessage.InvalidContainerType.Text -msgid "The type of this volume ist not known. Maybe you want to initialize itfirst?" -msgstr "" - -#: WarningMessage.InvalidContainerType.Link.Text -msgid "Format volume" -msgstr "" - -#: WarningMessage.UmountFailed.Title -msgid "Deactivation failed" -msgstr "" - -#: WarningMessage.UmountFailed.Text -msgid "The volume could not be deactivated. Probably some files are still in use. In case of emergency just shut down the CryptoBox!" -msgstr "" - -#: WarningMessage.IsAlreadyMounted.Title -msgid "Already active" -msgstr "" - -#: WarningMessage.IsAlreadyMounted.Text -msgid "The volume is already active." -msgstr "" - -#: WarningMessage.IsNotMounted.Title -msgid "Inactive" -msgstr "" - -#: WarningMessage.IsNotMounted.Text -msgid "The volume is currently not active." -msgstr "" - -#: Title.Mount +#: Button.Mount msgid "Open volume" msgstr "" -#: Title.Umount -msgid "Turn on the volume" -msgstr "" - #: Button.Umount msgid "Close volume" msgstr "" +#: Help.Open +msgid "The volume is currently closed. If you open the volume, then you will be able to access the data of this volume. Just search in your network environment for the server and browse through its shares." +msgstr "" + +#: Help.Close +msgid "Currently the volume is open. All files are accessible for everyone who has access to your local network. Just search in your network environment for the server and browse through its shares. Before you close the volume you should quit all programs with open files on it." +msgstr "" + #: SuccessMessage.MountDone.Title msgid "Volume opened" msgstr "" @@ -121,6 +61,34 @@ msgstr "" msgid "The content of this volume is protected from access now." msgstr "" +#: WarningMessage.MountFailed.Title +msgid "Opening failed" +msgstr "" + +#: WarningMessage.MountFailed.Text +msgid "The volume could not be opened for some reason. Sorry!" +msgstr "" + +#: WarningMessage.MountFailed.Link.Text +msgid "View event log" +msgstr "" + +#: WarningMessage.MountCryptoFailed.Text +msgid "Maybe you entered the wrong password?" +msgstr "" + +#: WarningMessage.InvalidContainerType.Title +msgid "Unknown format" +msgstr "" + +#: WarningMessage.InvalidContainerType.Text +msgid "The type of this volume ist not known. Maybe you want to initialize itfirst?" +msgstr "" + +#: WarningMessage.InvalidContainerType.Link.Text +msgid "Format volume" +msgstr "" + #: WarningMessage.UmountFailed.Title msgid "Closing failed" msgstr "" @@ -144,35 +112,3 @@ msgstr "" #: WarningMessage.IsNotMounted.Text msgid "The volume is already closed." msgstr "" - -#: Title.Mount -msgid "Opening a volume" -msgstr "" - -#: Title.Umount -msgid "Closing a volume" -msgstr "" - -#: Help.Open -msgid "The volume is currently closed. If you open the volume, then you will be able to access the data of this volume. Just search in your network environment for the server and browse through its shares." -msgstr "" - -#: Help.Close -msgid "Currently the volume is open. All files are accessible for everyone who has access to your local network. Just search in your network environment for the server and browse through its shares. Before you close the volume you should quit all programs with open files on it." -msgstr "" - -#: WarningMessage.MountFailed.Title -msgid "Opening failed" -msgstr "" - -#: WarningMessage.MountFailed.Text -msgid "The volume could not be opened for some reason. Sorry!" -msgstr "" - -#: Name -msgid "Open and close volumes" -msgstr "" - -#: WarningMessage.MountFailed.Link.Text -msgid "View event log" -msgstr "" diff --git a/plugins/volume_mount/intl/ru/cryptobox-server-feature-volume_mount.po b/plugins/volume_mount/intl/ru/cryptobox-server-feature-volume_mount.po index 6b1d6bb..a038b15 100644 --- a/plugins/volume_mount/intl/ru/cryptobox-server-feature-volume_mount.po +++ b/plugins/volume_mount/intl/ru/cryptobox-server-feature-volume_mount.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "Mount and umount volumes" +msgid "Open and close volumes" msgstr "" #: Link @@ -22,89 +22,29 @@ msgid "Activation" msgstr "" #: Title.Mount -msgid "Activate volume" +msgid "Opening a volume" msgstr "" #: Title.Umount -msgid "Deactivate volume" +msgid "Closing a volume" msgstr "" -#: SuccessMessage.MountDone.Title -msgid "Encrypted filesystem activated" -msgstr "" - -#: SuccessMessage.MountDone.Text -msgid "The encrypted filesystem is now available." -msgstr "" - -#: SuccessMessage.UmountDone.Title -msgid "Encrypted filesystem deactivated" -msgstr "" - -#: SuccessMessage.UmountDone.Text -msgid "The encrypted filesystem is now secured from all forms of access." -msgstr "" - -#: WarningMessage.MountFailed.Title -msgid "Activation failed" -msgstr "" - -#: WarningMessage.MountFailed.Text -msgid "The volume could not be activated for some reason. Sorry!" -msgstr "" - -#: WarningMessage.MountCryptoFailed.Text -msgid "Maybe you entered the wrong password?" -msgstr "" - -#: WarningMessage.InvalidContainerType.Title -msgid "Unknown format" -msgstr "" - -#: WarningMessage.InvalidContainerType.Text -msgid "The type of this volume ist not known. Maybe you want to initialize itfirst?" -msgstr "" - -#: WarningMessage.InvalidContainerType.Link.Text -msgid "Format volume" -msgstr "" - -#: WarningMessage.UmountFailed.Title -msgid "Deactivation failed" -msgstr "" - -#: WarningMessage.UmountFailed.Text -msgid "The volume could not be deactivated. Probably some files are still in use. In case of emergency just shut down the CryptoBox!" -msgstr "" - -#: WarningMessage.IsAlreadyMounted.Title -msgid "Already active" -msgstr "" - -#: WarningMessage.IsAlreadyMounted.Text -msgid "The volume is already active." -msgstr "" - -#: WarningMessage.IsNotMounted.Title -msgid "Inactive" -msgstr "" - -#: WarningMessage.IsNotMounted.Text -msgid "The volume is currently not active." -msgstr "" - -#: Title.Mount +#: Button.Mount msgid "Open volume" msgstr "" -#: Title.Umount -msgid "Turn on the volume" -msgstr "" - #: Button.Umount msgid "Close volume" msgstr "" +#: Help.Open +msgid "The volume is currently closed. If you open the volume, then you will be able to access the data of this volume. Just search in your network environment for the server and browse through its shares." +msgstr "" + +#: Help.Close +msgid "Currently the volume is open. All files are accessible for everyone who has access to your local network. Just search in your network environment for the server and browse through its shares. Before you close the volume you should quit all programs with open files on it." +msgstr "" + #: SuccessMessage.MountDone.Title msgid "Volume opened" msgstr "" @@ -121,6 +61,34 @@ msgstr "" msgid "The content of this volume is protected from access now." msgstr "" +#: WarningMessage.MountFailed.Title +msgid "Opening failed" +msgstr "" + +#: WarningMessage.MountFailed.Text +msgid "The volume could not be opened for some reason. Sorry!" +msgstr "" + +#: WarningMessage.MountFailed.Link.Text +msgid "View event log" +msgstr "" + +#: WarningMessage.MountCryptoFailed.Text +msgid "Maybe you entered the wrong password?" +msgstr "" + +#: WarningMessage.InvalidContainerType.Title +msgid "Unknown format" +msgstr "" + +#: WarningMessage.InvalidContainerType.Text +msgid "The type of this volume ist not known. Maybe you want to initialize itfirst?" +msgstr "" + +#: WarningMessage.InvalidContainerType.Link.Text +msgid "Format volume" +msgstr "" + #: WarningMessage.UmountFailed.Title msgid "Closing failed" msgstr "" @@ -144,35 +112,3 @@ msgstr "" #: WarningMessage.IsNotMounted.Text msgid "The volume is already closed." msgstr "" - -#: Title.Mount -msgid "Opening a volume" -msgstr "" - -#: Title.Umount -msgid "Closing a volume" -msgstr "" - -#: Help.Open -msgid "The volume is currently closed. If you open the volume, then you will be able to access the data of this volume. Just search in your network environment for the server and browse through its shares." -msgstr "" - -#: Help.Close -msgid "Currently the volume is open. All files are accessible for everyone who has access to your local network. Just search in your network environment for the server and browse through its shares. Before you close the volume you should quit all programs with open files on it." -msgstr "" - -#: WarningMessage.MountFailed.Title -msgid "Opening failed" -msgstr "" - -#: WarningMessage.MountFailed.Text -msgid "The volume could not be opened for some reason. Sorry!" -msgstr "" - -#: Name -msgid "Open and close volumes" -msgstr "" - -#: WarningMessage.MountFailed.Link.Text -msgid "View event log" -msgstr "" diff --git a/plugins/volume_mount/intl/sl/cryptobox-server-feature-volume_mount.po b/plugins/volume_mount/intl/sl/cryptobox-server-feature-volume_mount.po index 6b1d6bb..a038b15 100644 --- a/plugins/volume_mount/intl/sl/cryptobox-server-feature-volume_mount.po +++ b/plugins/volume_mount/intl/sl/cryptobox-server-feature-volume_mount.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "Mount and umount volumes" +msgid "Open and close volumes" msgstr "" #: Link @@ -22,89 +22,29 @@ msgid "Activation" msgstr "" #: Title.Mount -msgid "Activate volume" +msgid "Opening a volume" msgstr "" #: Title.Umount -msgid "Deactivate volume" +msgid "Closing a volume" msgstr "" -#: SuccessMessage.MountDone.Title -msgid "Encrypted filesystem activated" -msgstr "" - -#: SuccessMessage.MountDone.Text -msgid "The encrypted filesystem is now available." -msgstr "" - -#: SuccessMessage.UmountDone.Title -msgid "Encrypted filesystem deactivated" -msgstr "" - -#: SuccessMessage.UmountDone.Text -msgid "The encrypted filesystem is now secured from all forms of access." -msgstr "" - -#: WarningMessage.MountFailed.Title -msgid "Activation failed" -msgstr "" - -#: WarningMessage.MountFailed.Text -msgid "The volume could not be activated for some reason. Sorry!" -msgstr "" - -#: WarningMessage.MountCryptoFailed.Text -msgid "Maybe you entered the wrong password?" -msgstr "" - -#: WarningMessage.InvalidContainerType.Title -msgid "Unknown format" -msgstr "" - -#: WarningMessage.InvalidContainerType.Text -msgid "The type of this volume ist not known. Maybe you want to initialize itfirst?" -msgstr "" - -#: WarningMessage.InvalidContainerType.Link.Text -msgid "Format volume" -msgstr "" - -#: WarningMessage.UmountFailed.Title -msgid "Deactivation failed" -msgstr "" - -#: WarningMessage.UmountFailed.Text -msgid "The volume could not be deactivated. Probably some files are still in use. In case of emergency just shut down the CryptoBox!" -msgstr "" - -#: WarningMessage.IsAlreadyMounted.Title -msgid "Already active" -msgstr "" - -#: WarningMessage.IsAlreadyMounted.Text -msgid "The volume is already active." -msgstr "" - -#: WarningMessage.IsNotMounted.Title -msgid "Inactive" -msgstr "" - -#: WarningMessage.IsNotMounted.Text -msgid "The volume is currently not active." -msgstr "" - -#: Title.Mount +#: Button.Mount msgid "Open volume" msgstr "" -#: Title.Umount -msgid "Turn on the volume" -msgstr "" - #: Button.Umount msgid "Close volume" msgstr "" +#: Help.Open +msgid "The volume is currently closed. If you open the volume, then you will be able to access the data of this volume. Just search in your network environment for the server and browse through its shares." +msgstr "" + +#: Help.Close +msgid "Currently the volume is open. All files are accessible for everyone who has access to your local network. Just search in your network environment for the server and browse through its shares. Before you close the volume you should quit all programs with open files on it." +msgstr "" + #: SuccessMessage.MountDone.Title msgid "Volume opened" msgstr "" @@ -121,6 +61,34 @@ msgstr "" msgid "The content of this volume is protected from access now." msgstr "" +#: WarningMessage.MountFailed.Title +msgid "Opening failed" +msgstr "" + +#: WarningMessage.MountFailed.Text +msgid "The volume could not be opened for some reason. Sorry!" +msgstr "" + +#: WarningMessage.MountFailed.Link.Text +msgid "View event log" +msgstr "" + +#: WarningMessage.MountCryptoFailed.Text +msgid "Maybe you entered the wrong password?" +msgstr "" + +#: WarningMessage.InvalidContainerType.Title +msgid "Unknown format" +msgstr "" + +#: WarningMessage.InvalidContainerType.Text +msgid "The type of this volume ist not known. Maybe you want to initialize itfirst?" +msgstr "" + +#: WarningMessage.InvalidContainerType.Link.Text +msgid "Format volume" +msgstr "" + #: WarningMessage.UmountFailed.Title msgid "Closing failed" msgstr "" @@ -144,35 +112,3 @@ msgstr "" #: WarningMessage.IsNotMounted.Text msgid "The volume is already closed." msgstr "" - -#: Title.Mount -msgid "Opening a volume" -msgstr "" - -#: Title.Umount -msgid "Closing a volume" -msgstr "" - -#: Help.Open -msgid "The volume is currently closed. If you open the volume, then you will be able to access the data of this volume. Just search in your network environment for the server and browse through its shares." -msgstr "" - -#: Help.Close -msgid "Currently the volume is open. All files are accessible for everyone who has access to your local network. Just search in your network environment for the server and browse through its shares. Before you close the volume you should quit all programs with open files on it." -msgstr "" - -#: WarningMessage.MountFailed.Title -msgid "Opening failed" -msgstr "" - -#: WarningMessage.MountFailed.Text -msgid "The volume could not be opened for some reason. Sorry!" -msgstr "" - -#: Name -msgid "Open and close volumes" -msgstr "" - -#: WarningMessage.MountFailed.Link.Text -msgid "View event log" -msgstr "" diff --git a/plugins/volume_mount/intl/sv/cryptobox-server-feature-volume_mount.po b/plugins/volume_mount/intl/sv/cryptobox-server-feature-volume_mount.po index 6b1d6bb..a038b15 100644 --- a/plugins/volume_mount/intl/sv/cryptobox-server-feature-volume_mount.po +++ b/plugins/volume_mount/intl/sv/cryptobox-server-feature-volume_mount.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:03+0100\n" +"POT-Creation-Date: 2006-12-18 11:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,7 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 0.10.1\n" #: Name -msgid "Mount and umount volumes" +msgid "Open and close volumes" msgstr "" #: Link @@ -22,89 +22,29 @@ msgid "Activation" msgstr "" #: Title.Mount -msgid "Activate volume" +msgid "Opening a volume" msgstr "" #: Title.Umount -msgid "Deactivate volume" +msgid "Closing a volume" msgstr "" -#: SuccessMessage.MountDone.Title -msgid "Encrypted filesystem activated" -msgstr "" - -#: SuccessMessage.MountDone.Text -msgid "The encrypted filesystem is now available." -msgstr "" - -#: SuccessMessage.UmountDone.Title -msgid "Encrypted filesystem deactivated" -msgstr "" - -#: SuccessMessage.UmountDone.Text -msgid "The encrypted filesystem is now secured from all forms of access." -msgstr "" - -#: WarningMessage.MountFailed.Title -msgid "Activation failed" -msgstr "" - -#: WarningMessage.MountFailed.Text -msgid "The volume could not be activated for some reason. Sorry!" -msgstr "" - -#: WarningMessage.MountCryptoFailed.Text -msgid "Maybe you entered the wrong password?" -msgstr "" - -#: WarningMessage.InvalidContainerType.Title -msgid "Unknown format" -msgstr "" - -#: WarningMessage.InvalidContainerType.Text -msgid "The type of this volume ist not known. Maybe you want to initialize itfirst?" -msgstr "" - -#: WarningMessage.InvalidContainerType.Link.Text -msgid "Format volume" -msgstr "" - -#: WarningMessage.UmountFailed.Title -msgid "Deactivation failed" -msgstr "" - -#: WarningMessage.UmountFailed.Text -msgid "The volume could not be deactivated. Probably some files are still in use. In case of emergency just shut down the CryptoBox!" -msgstr "" - -#: WarningMessage.IsAlreadyMounted.Title -msgid "Already active" -msgstr "" - -#: WarningMessage.IsAlreadyMounted.Text -msgid "The volume is already active." -msgstr "" - -#: WarningMessage.IsNotMounted.Title -msgid "Inactive" -msgstr "" - -#: WarningMessage.IsNotMounted.Text -msgid "The volume is currently not active." -msgstr "" - -#: Title.Mount +#: Button.Mount msgid "Open volume" msgstr "" -#: Title.Umount -msgid "Turn on the volume" -msgstr "" - #: Button.Umount msgid "Close volume" msgstr "" +#: Help.Open +msgid "The volume is currently closed. If you open the volume, then you will be able to access the data of this volume. Just search in your network environment for the server and browse through its shares." +msgstr "" + +#: Help.Close +msgid "Currently the volume is open. All files are accessible for everyone who has access to your local network. Just search in your network environment for the server and browse through its shares. Before you close the volume you should quit all programs with open files on it." +msgstr "" + #: SuccessMessage.MountDone.Title msgid "Volume opened" msgstr "" @@ -121,6 +61,34 @@ msgstr "" msgid "The content of this volume is protected from access now." msgstr "" +#: WarningMessage.MountFailed.Title +msgid "Opening failed" +msgstr "" + +#: WarningMessage.MountFailed.Text +msgid "The volume could not be opened for some reason. Sorry!" +msgstr "" + +#: WarningMessage.MountFailed.Link.Text +msgid "View event log" +msgstr "" + +#: WarningMessage.MountCryptoFailed.Text +msgid "Maybe you entered the wrong password?" +msgstr "" + +#: WarningMessage.InvalidContainerType.Title +msgid "Unknown format" +msgstr "" + +#: WarningMessage.InvalidContainerType.Text +msgid "The type of this volume ist not known. Maybe you want to initialize itfirst?" +msgstr "" + +#: WarningMessage.InvalidContainerType.Link.Text +msgid "Format volume" +msgstr "" + #: WarningMessage.UmountFailed.Title msgid "Closing failed" msgstr "" @@ -144,35 +112,3 @@ msgstr "" #: WarningMessage.IsNotMounted.Text msgid "The volume is already closed." msgstr "" - -#: Title.Mount -msgid "Opening a volume" -msgstr "" - -#: Title.Umount -msgid "Closing a volume" -msgstr "" - -#: Help.Open -msgid "The volume is currently closed. If you open the volume, then you will be able to access the data of this volume. Just search in your network environment for the server and browse through its shares." -msgstr "" - -#: Help.Close -msgid "Currently the volume is open. All files are accessible for everyone who has access to your local network. Just search in your network environment for the server and browse through its shares. Before you close the volume you should quit all programs with open files on it." -msgstr "" - -#: WarningMessage.MountFailed.Title -msgid "Opening failed" -msgstr "" - -#: WarningMessage.MountFailed.Text -msgid "The volume could not be opened for some reason. Sorry!" -msgstr "" - -#: Name -msgid "Open and close volumes" -msgstr "" - -#: WarningMessage.MountFailed.Link.Text -msgid "View event log" -msgstr "" diff --git a/plugins/volume_mount/volume_mount.py b/plugins/volume_mount/volume_mount.py index fc02a96..99a9fe0 100644 --- a/plugins/volume_mount/volume_mount.py +++ b/plugins/volume_mount/volume_mount.py @@ -34,6 +34,7 @@ class volume_mount(cryptobox.plugins.base.CryptoBoxPlugin): def do_action(self, action=None, pw=None): + self.hdf[self.hdf_prefix + "PluginDir"] = self.plugin_dir self.container = self.cbox.get_container(self.device) if action == "mount_plain": return self.__do_mount_plain() diff --git a/plugins/volume_mount/volume_status.cs b/plugins/volume_mount/volume_status.cs index b0eb9cd..6c0175d 100644 --- a/plugins/volume_mount/volume_status.cs +++ b/plugins/volume_mount/volume_status.cs @@ -1,6 +1,6 @@ - + - + diff --git a/plugins/volume_props/intl/cryptobox-server-feature-volume_props.pot b/plugins/volume_props/intl/cryptobox-server-feature-volume_props.pot index 094f4de..be90498 100644 --- a/plugins/volume_props/intl/cryptobox-server-feature-volume_props.pot +++ b/plugins/volume_props/intl/cryptobox-server-feature-volume_props.pot @@ -1,17 +1,3 @@ -msgid "" -msgstr "" -"Project-Id-Version: CryptoBox-Server 0.3\n" -"Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: sense.lab \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: utf-8\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Translate Toolkit 0.10.1\n" - #: Name msgid "Volume properties" msgstr "" diff --git a/plugins/volume_props/intl/cs/cryptobox-server-feature-volume_props.po b/plugins/volume_props/intl/cs/cryptobox-server-feature-volume_props.po index d4d2e7e..394dbd5 100644 --- a/plugins/volume_props/intl/cs/cryptobox-server-feature-volume_props.po +++ b/plugins/volume_props/intl/cs/cryptobox-server-feature-volume_props.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:40+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/volume_props/intl/da/cryptobox-server-feature-volume_props.po b/plugins/volume_props/intl/da/cryptobox-server-feature-volume_props.po index d4d2e7e..394dbd5 100644 --- a/plugins/volume_props/intl/da/cryptobox-server-feature-volume_props.po +++ b/plugins/volume_props/intl/da/cryptobox-server-feature-volume_props.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:40+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/volume_props/intl/de/cryptobox-server-feature-volume_props.po b/plugins/volume_props/intl/de/cryptobox-server-feature-volume_props.po index 9221a8a..14c5c5f 100644 --- a/plugins/volume_props/intl/de/cryptobox-server-feature-volume_props.po +++ b/plugins/volume_props/intl/de/cryptobox-server-feature-volume_props.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:40+0100\n" "PO-Revision-Date: 2006-12-14 03:56+0100\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/volume_props/intl/en/cryptobox-server-feature-volume_props.po b/plugins/volume_props/intl/en/cryptobox-server-feature-volume_props.po index 2491d60..fd29952 100644 --- a/plugins/volume_props/intl/en/cryptobox-server-feature-volume_props.po +++ b/plugins/volume_props/intl/en/cryptobox-server-feature-volume_props.po @@ -1,5 +1,3 @@ -msgid "" -msgstr "" #: Name msgid "Volume properties" diff --git a/plugins/volume_props/intl/es/cryptobox-server-feature-volume_props.po b/plugins/volume_props/intl/es/cryptobox-server-feature-volume_props.po index d4d2e7e..394dbd5 100644 --- a/plugins/volume_props/intl/es/cryptobox-server-feature-volume_props.po +++ b/plugins/volume_props/intl/es/cryptobox-server-feature-volume_props.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:40+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/volume_props/intl/fi/cryptobox-server-feature-volume_props.po b/plugins/volume_props/intl/fi/cryptobox-server-feature-volume_props.po index d4d2e7e..394dbd5 100644 --- a/plugins/volume_props/intl/fi/cryptobox-server-feature-volume_props.po +++ b/plugins/volume_props/intl/fi/cryptobox-server-feature-volume_props.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:40+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/volume_props/intl/fr/cryptobox-server-feature-volume_props.po b/plugins/volume_props/intl/fr/cryptobox-server-feature-volume_props.po index d4d2e7e..394dbd5 100644 --- a/plugins/volume_props/intl/fr/cryptobox-server-feature-volume_props.po +++ b/plugins/volume_props/intl/fr/cryptobox-server-feature-volume_props.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:40+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/volume_props/intl/hu/cryptobox-server-feature-volume_props.po b/plugins/volume_props/intl/hu/cryptobox-server-feature-volume_props.po index d4d2e7e..394dbd5 100644 --- a/plugins/volume_props/intl/hu/cryptobox-server-feature-volume_props.po +++ b/plugins/volume_props/intl/hu/cryptobox-server-feature-volume_props.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:40+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/volume_props/intl/it/cryptobox-server-feature-volume_props.po b/plugins/volume_props/intl/it/cryptobox-server-feature-volume_props.po index d4d2e7e..394dbd5 100644 --- a/plugins/volume_props/intl/it/cryptobox-server-feature-volume_props.po +++ b/plugins/volume_props/intl/it/cryptobox-server-feature-volume_props.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:40+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/volume_props/intl/ja/cryptobox-server-feature-volume_props.po b/plugins/volume_props/intl/ja/cryptobox-server-feature-volume_props.po index d4d2e7e..394dbd5 100644 --- a/plugins/volume_props/intl/ja/cryptobox-server-feature-volume_props.po +++ b/plugins/volume_props/intl/ja/cryptobox-server-feature-volume_props.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:40+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/volume_props/intl/nl/cryptobox-server-feature-volume_props.po b/plugins/volume_props/intl/nl/cryptobox-server-feature-volume_props.po index d4d2e7e..394dbd5 100644 --- a/plugins/volume_props/intl/nl/cryptobox-server-feature-volume_props.po +++ b/plugins/volume_props/intl/nl/cryptobox-server-feature-volume_props.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:40+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/volume_props/intl/pl/cryptobox-server-feature-volume_props.po b/plugins/volume_props/intl/pl/cryptobox-server-feature-volume_props.po index d4d2e7e..394dbd5 100644 --- a/plugins/volume_props/intl/pl/cryptobox-server-feature-volume_props.po +++ b/plugins/volume_props/intl/pl/cryptobox-server-feature-volume_props.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:40+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/volume_props/intl/pt/cryptobox-server-feature-volume_props.po b/plugins/volume_props/intl/pt/cryptobox-server-feature-volume_props.po index d4d2e7e..394dbd5 100644 --- a/plugins/volume_props/intl/pt/cryptobox-server-feature-volume_props.po +++ b/plugins/volume_props/intl/pt/cryptobox-server-feature-volume_props.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:40+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/volume_props/intl/ru/cryptobox-server-feature-volume_props.po b/plugins/volume_props/intl/ru/cryptobox-server-feature-volume_props.po index d4d2e7e..394dbd5 100644 --- a/plugins/volume_props/intl/ru/cryptobox-server-feature-volume_props.po +++ b/plugins/volume_props/intl/ru/cryptobox-server-feature-volume_props.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:40+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/volume_props/intl/sl/cryptobox-server-feature-volume_props.po b/plugins/volume_props/intl/sl/cryptobox-server-feature-volume_props.po index d4d2e7e..394dbd5 100644 --- a/plugins/volume_props/intl/sl/cryptobox-server-feature-volume_props.po +++ b/plugins/volume_props/intl/sl/cryptobox-server-feature-volume_props.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:40+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/volume_props/intl/sv/cryptobox-server-feature-volume_props.po b/plugins/volume_props/intl/sv/cryptobox-server-feature-volume_props.po index d4d2e7e..394dbd5 100644 --- a/plugins/volume_props/intl/sv/cryptobox-server-feature-volume_props.po +++ b/plugins/volume_props/intl/sv/cryptobox-server-feature-volume_props.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:40+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/plugins/volume_rename/intl/cryptobox-server-feature-volume_rename.pot b/plugins/volume_rename/intl/cryptobox-server-feature-volume_rename.pot index e196c7a..3b4a06a 100644 --- a/plugins/volume_rename/intl/cryptobox-server-feature-volume_rename.pot +++ b/plugins/volume_rename/intl/cryptobox-server-feature-volume_rename.pot @@ -1,17 +1,3 @@ -msgid "" -msgstr "" -"Project-Id-Version: CryptoBox-Server 0.3\n" -"Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: sense.lab \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: utf-8\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Translate Toolkit 0.10.1\n" - #: Name msgid "Rename volume" msgstr "" @@ -28,12 +14,16 @@ msgstr "" msgid "Change name" msgstr "" +#: Help.Rename +msgid "Define a name for the volume. This should help you to manage multiple volumes easily." +msgstr "" + #: AdviceMessage.NoRenameIfActive.Text -msgid "You can not rename a volume while it is active." +msgid "You can not rename a volume while it is open." msgstr "" #: AdviceMessage.NoRenameIfActive.Link.Text -msgid "Deactivate volume now" +msgid "Close volume now" msgstr "" #: SuccessMessage.VolumeNameChanged.Title @@ -48,42 +38,10 @@ msgstr "" msgid "Failed to rename the volume" msgstr "" -#: WarningMessage.NoRenameIfActive.Text -msgid "You may not rename a volume while it is active." -msgstr "" - -#: WarningMessage.InvalidVolumeName.Title -msgid "Changing of container's name failed" -msgstr "" - -#: WarningMessage.InvalidVolumeName.Text -msgid "The supplied new name of the container was invalid. Please try again!" -msgstr "" - -#: WarningMessage.SetVolumeNameFailed.Text -msgid "Could not change the name of the container. Take a look at the log files for details." -msgstr "" - -#: WarningMessage.VolumeNameIsInUse.Title -msgid "Could not change volume name" -msgstr "" - -#: WarningMessage.VolumeNameIsInUse.Text -msgid "The new name is already in use by another volume." -msgstr "" - -#: AdviceMessage.NoRenameIfActive.Text -msgid "You can not rename a volume while it is open." -msgstr "" - #: WarningMessage.NoRenameIfActive.Text msgid "You may not rename a volume while it is open." msgstr "" -#: AdviceMessage.NoRenameIfActive.Link.Text -msgid "Close volume now" -msgstr "" - #: WarningMessage.InvalidVolumeName.Title msgid "Changing of volume's name failed" msgstr "" @@ -96,6 +54,10 @@ msgstr "" msgid "Could not change the name of the volume. Take a look at the log files for details." msgstr "" -#: Help.Rename -msgid "Define a name for the volume. This should help you to manage multiple volumes easily." +#: WarningMessage.VolumeNameIsInUse.Title +msgid "Could not change volume name" +msgstr "" + +#: WarningMessage.VolumeNameIsInUse.Text +msgid "The new name is already in use by another volume." msgstr "" diff --git a/plugins/volume_rename/intl/cs/cryptobox-server-feature-volume_rename.po b/plugins/volume_rename/intl/cs/cryptobox-server-feature-volume_rename.po index 341e4c0..44f9cb2 100644 --- a/plugins/volume_rename/intl/cs/cryptobox-server-feature-volume_rename.po +++ b/plugins/volume_rename/intl/cs/cryptobox-server-feature-volume_rename.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,12 +29,16 @@ msgstr "" msgid "Change name" msgstr "" +#: Help.Rename +msgid "Define a name for the volume. This should help you to manage multiple volumes easily." +msgstr "" + #: AdviceMessage.NoRenameIfActive.Text -msgid "You can not rename a volume while it is active." +msgid "You can not rename a volume while it is open." msgstr "" #: AdviceMessage.NoRenameIfActive.Link.Text -msgid "Deactivate volume now" +msgid "Close volume now" msgstr "" #: SuccessMessage.VolumeNameChanged.Title @@ -49,42 +53,10 @@ msgstr "" msgid "Failed to rename the volume" msgstr "" -#: WarningMessage.NoRenameIfActive.Text -msgid "You may not rename a volume while it is active." -msgstr "" - -#: WarningMessage.InvalidVolumeName.Title -msgid "Changing of container's name failed" -msgstr "" - -#: WarningMessage.InvalidVolumeName.Text -msgid "The supplied new name of the container was invalid. Please try again!" -msgstr "" - -#: WarningMessage.SetVolumeNameFailed.Text -msgid "Could not change the name of the container. Take a look at the log files for details." -msgstr "" - -#: WarningMessage.VolumeNameIsInUse.Title -msgid "Could not change volume name" -msgstr "" - -#: WarningMessage.VolumeNameIsInUse.Text -msgid "The new name is already in use by another volume." -msgstr "" - -#: AdviceMessage.NoRenameIfActive.Text -msgid "You can not rename a volume while it is open." -msgstr "" - #: WarningMessage.NoRenameIfActive.Text msgid "You may not rename a volume while it is open." msgstr "" -#: AdviceMessage.NoRenameIfActive.Link.Text -msgid "Close volume now" -msgstr "" - #: WarningMessage.InvalidVolumeName.Title msgid "Changing of volume's name failed" msgstr "" @@ -97,6 +69,10 @@ msgstr "" msgid "Could not change the name of the volume. Take a look at the log files for details." msgstr "" -#: Help.Rename -msgid "Define a name for the volume. This should help you to manage multiple volumes easily." +#: WarningMessage.VolumeNameIsInUse.Title +msgid "Could not change volume name" +msgstr "" + +#: WarningMessage.VolumeNameIsInUse.Text +msgid "The new name is already in use by another volume." msgstr "" diff --git a/plugins/volume_rename/intl/da/cryptobox-server-feature-volume_rename.po b/plugins/volume_rename/intl/da/cryptobox-server-feature-volume_rename.po index 341e4c0..44f9cb2 100644 --- a/plugins/volume_rename/intl/da/cryptobox-server-feature-volume_rename.po +++ b/plugins/volume_rename/intl/da/cryptobox-server-feature-volume_rename.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,12 +29,16 @@ msgstr "" msgid "Change name" msgstr "" +#: Help.Rename +msgid "Define a name for the volume. This should help you to manage multiple volumes easily." +msgstr "" + #: AdviceMessage.NoRenameIfActive.Text -msgid "You can not rename a volume while it is active." +msgid "You can not rename a volume while it is open." msgstr "" #: AdviceMessage.NoRenameIfActive.Link.Text -msgid "Deactivate volume now" +msgid "Close volume now" msgstr "" #: SuccessMessage.VolumeNameChanged.Title @@ -49,42 +53,10 @@ msgstr "" msgid "Failed to rename the volume" msgstr "" -#: WarningMessage.NoRenameIfActive.Text -msgid "You may not rename a volume while it is active." -msgstr "" - -#: WarningMessage.InvalidVolumeName.Title -msgid "Changing of container's name failed" -msgstr "" - -#: WarningMessage.InvalidVolumeName.Text -msgid "The supplied new name of the container was invalid. Please try again!" -msgstr "" - -#: WarningMessage.SetVolumeNameFailed.Text -msgid "Could not change the name of the container. Take a look at the log files for details." -msgstr "" - -#: WarningMessage.VolumeNameIsInUse.Title -msgid "Could not change volume name" -msgstr "" - -#: WarningMessage.VolumeNameIsInUse.Text -msgid "The new name is already in use by another volume." -msgstr "" - -#: AdviceMessage.NoRenameIfActive.Text -msgid "You can not rename a volume while it is open." -msgstr "" - #: WarningMessage.NoRenameIfActive.Text msgid "You may not rename a volume while it is open." msgstr "" -#: AdviceMessage.NoRenameIfActive.Link.Text -msgid "Close volume now" -msgstr "" - #: WarningMessage.InvalidVolumeName.Title msgid "Changing of volume's name failed" msgstr "" @@ -97,6 +69,10 @@ msgstr "" msgid "Could not change the name of the volume. Take a look at the log files for details." msgstr "" -#: Help.Rename -msgid "Define a name for the volume. This should help you to manage multiple volumes easily." +#: WarningMessage.VolumeNameIsInUse.Title +msgid "Could not change volume name" +msgstr "" + +#: WarningMessage.VolumeNameIsInUse.Text +msgid "The new name is already in use by another volume." msgstr "" diff --git a/plugins/volume_rename/intl/de/cryptobox-server-feature-volume_rename.po b/plugins/volume_rename/intl/de/cryptobox-server-feature-volume_rename.po index 341e4c0..0d159f2 100644 --- a/plugins/volume_rename/intl/de/cryptobox-server-feature-volume_rename.po +++ b/plugins/volume_rename/intl/de/cryptobox-server-feature-volume_rename.po @@ -1,102 +1,77 @@ -#, fuzzy msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" +"PO-Revision-Date: 2006-12-18 11:14+0100\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Translate Toolkit 0.10.1\n" +"X-Generator: Pootle 0.10.1\n" #: Name msgid "Rename volume" -msgstr "" +msgstr "Datenträger umbenennen" #: Link msgid "Rename" -msgstr "" +msgstr "Umbenennen" #: Title.ChangeVolumeName msgid "Change the name of this volume" -msgstr "" +msgstr "Änderung des Datenträgernamens" #: Button.ContainerNameSet msgid "Change name" -msgstr "" - -#: AdviceMessage.NoRenameIfActive.Text -msgid "You can not rename a volume while it is active." -msgstr "" - -#: AdviceMessage.NoRenameIfActive.Link.Text -msgid "Deactivate volume now" -msgstr "" - -#: SuccessMessage.VolumeNameChanged.Title -msgid "Name changed" -msgstr "" - -#: SuccessMessage.VolumeNameChanged.Text -msgid "The name of this volume was changed successfully." -msgstr "" - -#: WarningMessage.NoRenameIfActive.Title -msgid "Failed to rename the volume" -msgstr "" - -#: WarningMessage.NoRenameIfActive.Text -msgid "You may not rename a volume while it is active." -msgstr "" - -#: WarningMessage.InvalidVolumeName.Title -msgid "Changing of container's name failed" -msgstr "" - -#: WarningMessage.InvalidVolumeName.Text -msgid "The supplied new name of the container was invalid. Please try again!" -msgstr "" - -#: WarningMessage.SetVolumeNameFailed.Text -msgid "Could not change the name of the container. Take a look at the log files for details." -msgstr "" - -#: WarningMessage.VolumeNameIsInUse.Title -msgid "Could not change volume name" -msgstr "" - -#: WarningMessage.VolumeNameIsInUse.Text -msgid "The new name is already in use by another volume." -msgstr "" - -#: AdviceMessage.NoRenameIfActive.Text -msgid "You can not rename a volume while it is open." -msgstr "" - -#: WarningMessage.NoRenameIfActive.Text -msgid "You may not rename a volume while it is open." -msgstr "" - -#: AdviceMessage.NoRenameIfActive.Link.Text -msgid "Close volume now" -msgstr "" - -#: WarningMessage.InvalidVolumeName.Title -msgid "Changing of volume's name failed" -msgstr "" - -#: WarningMessage.InvalidVolumeName.Text -msgid "The supplied new name of the volume was invalid. Please try again!" -msgstr "" - -#: WarningMessage.SetVolumeNameFailed.Text -msgid "Could not change the name of the volume. Take a look at the log files for details." -msgstr "" +msgstr "Namen ändern" #: Help.Rename msgid "Define a name for the volume. This should help you to manage multiple volumes easily." -msgstr "" +msgstr "Setze den Namen des Datenträgers. Dies sollte die Verwaltung mehrerer Datenträger vereinfachen." + +#: AdviceMessage.NoRenameIfActive.Text +msgid "You can not rename a volume while it is open." +msgstr "Der Datenträger kann nicht umbenannt werden, solange er geöffnet ist." + +#: AdviceMessage.NoRenameIfActive.Link.Text +msgid "Close volume now" +msgstr "Datenträger schließen" + +#: SuccessMessage.VolumeNameChanged.Title +msgid "Name changed" +msgstr "Name geändert" + +#: SuccessMessage.VolumeNameChanged.Text +msgid "The name of this volume was changed successfully." +msgstr "Der Name des Datenträgers wurde erfolgreich geändert." + +#: WarningMessage.NoRenameIfActive.Title +msgid "Failed to rename the volume" +msgstr "Namensänderung fehlgeschlagen" + +#: WarningMessage.NoRenameIfActive.Text +msgid "You may not rename a volume while it is open." +msgstr "Der Name des Datenträgers kann nicht geändert werden, solange er geöffnet ist." + +#: WarningMessage.InvalidVolumeName.Title +msgid "Changing of volume's name failed" +msgstr "Änderung des Datenträgernamens fehlgeschlagen" + +#: WarningMessage.InvalidVolumeName.Text +msgid "The supplied new name of the volume was invalid. Please try again!" +msgstr "Der angegebene neue Name des Datenträgers ist ungültig. Versuche es bitte erneut!" + +#: WarningMessage.SetVolumeNameFailed.Text +msgid "Could not change the name of the volume. Take a look at the log files for details." +msgstr "Der Name des Datenträgers konnte nicht geändert werden. Im Ereignis-Protokoll solltest du genauere Informationen finden." + +#: WarningMessage.VolumeNameIsInUse.Title +msgid "Could not change volume name" +msgstr "Namensänderung fehlgeschlagen" + +#: WarningMessage.VolumeNameIsInUse.Text +msgid "The new name is already in use by another volume." +msgstr "Der Name wird bereits von einem anderen Datenträger verwendet." diff --git a/plugins/volume_rename/intl/en/cryptobox-server-feature-volume_rename.po b/plugins/volume_rename/intl/en/cryptobox-server-feature-volume_rename.po index 2f6ce1b..db094de 100644 --- a/plugins/volume_rename/intl/en/cryptobox-server-feature-volume_rename.po +++ b/plugins/volume_rename/intl/en/cryptobox-server-feature-volume_rename.po @@ -1,5 +1,3 @@ -msgid "" -msgstr "" #: Name msgid "Rename volume" @@ -17,13 +15,17 @@ msgstr "Change the name of this volume" msgid "Change name" msgstr "Change name" +#: Help.Rename +msgid "Define a name for the volume. This should help you to manage multiple volumes easily." +msgstr "Define a name for the volume. This should help you to manage multiple volumes easily." + #: AdviceMessage.NoRenameIfActive.Text -msgid "You can not rename a volume while it is active." -msgstr "You can not rename a volume while it is active." +msgid "You can not rename a volume while it is open." +msgstr "You can not rename a volume while it is open." #: AdviceMessage.NoRenameIfActive.Link.Text -msgid "Deactivate volume now" -msgstr "Deactivate volume now" +msgid "Close volume now" +msgstr "Close volume now" #: SuccessMessage.VolumeNameChanged.Title msgid "Name changed" @@ -37,46 +39,10 @@ msgstr "The name of this volume was changed successfully." msgid "Failed to rename the volume" msgstr "Failed to rename the volume" -#: WarningMessage.NoRenameIfActive.Text -msgid "You may not rename a volume while it is active." -msgstr "You may not rename a volume while it is active." - -#: WarningMessage.InvalidVolumeName.Title -msgid "Changing of container's name failed" -msgstr "Changing of container's name failed" - -#: WarningMessage.InvalidVolumeName.Text -msgid "The supplied new name of the container was invalid. Please try again!" -msgstr "The supplied new name of the container was invalid. Please try again!" - -#: WarningMessage.SetVolumeNameFailed.Text -msgid "" -"Could not change the name of the container. Take a look at the log files for " -"details." -msgstr "" -"Could not change the name of the container. Take a look at the log files for " -"details." - -#: WarningMessage.VolumeNameIsInUse.Title -msgid "Could not change volume name" -msgstr "Could not change volume name" - -#: WarningMessage.VolumeNameIsInUse.Text -msgid "The new name is already in use by another volume." -msgstr "The new name is already in use by another volume." - -#: AdviceMessage.NoRenameIfActive.Text -msgid "You can not rename a volume while it is open." -msgstr "You can not rename a volume while it is open." - #: WarningMessage.NoRenameIfActive.Text msgid "You may not rename a volume while it is open." msgstr "You may not rename a volume while it is open." -#: AdviceMessage.NoRenameIfActive.Link.Text -msgid "Close volume now" -msgstr "Close volume now" - #: WarningMessage.InvalidVolumeName.Title msgid "Changing of volume's name failed" msgstr "Changing of volume's name failed" @@ -86,20 +52,40 @@ msgid "The supplied new name of the volume was invalid. Please try again!" msgstr "The supplied new name of the volume was invalid. Please try again!" #: WarningMessage.SetVolumeNameFailed.Text -msgid "" -"Could not change the name of the volume. Take a look at the log files for " -"details." -msgstr "" -"Could not change the name of the volume. Take a look at the log files for " -"details." +msgid "Could not change the name of the volume. Take a look at the log files for details." +msgstr "Could not change the name of the volume. Take a look at the log files for details." -#: Help.Rename -msgid "" -"Define a name for the volume. This should help you to manage multiple " -"volumes easily." -msgstr "" -"Define a name for the volume. This should help you to manage multiple " -"volumes easily." +#: WarningMessage.VolumeNameIsInUse.Title +msgid "Could not change volume name" +msgstr "Could not change volume name" + +#: WarningMessage.VolumeNameIsInUse.Text +msgid "The new name is already in use by another volume." +msgstr "The new name is already in use by another volume." + +#~ msgid "You can not rename a volume while it is active." +#~ msgstr "You can not rename a volume while it is active." + +#~ msgid "Deactivate volume now" +#~ msgstr "Deactivate volume now" + +#~ msgid "You may not rename a volume while it is active." +#~ msgstr "You may not rename a volume while it is active." + +#~ msgid "Changing of container's name failed" +#~ msgstr "Changing of container's name failed" + +#~ msgid "" +#~ "The supplied new name of the container was invalid. Please try again!" +#~ msgstr "" +#~ "The supplied new name of the container was invalid. Please try again!" + +#~ msgid "" +#~ "Could not change the name of the container. Take a look at the log files " +#~ "for details." +#~ msgstr "" +#~ "Could not change the name of the container. Take a look at the log files " +#~ "for details." #~ msgid "action" #~ msgstr "action" diff --git a/plugins/volume_rename/intl/es/cryptobox-server-feature-volume_rename.po b/plugins/volume_rename/intl/es/cryptobox-server-feature-volume_rename.po index 341e4c0..44f9cb2 100644 --- a/plugins/volume_rename/intl/es/cryptobox-server-feature-volume_rename.po +++ b/plugins/volume_rename/intl/es/cryptobox-server-feature-volume_rename.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,12 +29,16 @@ msgstr "" msgid "Change name" msgstr "" +#: Help.Rename +msgid "Define a name for the volume. This should help you to manage multiple volumes easily." +msgstr "" + #: AdviceMessage.NoRenameIfActive.Text -msgid "You can not rename a volume while it is active." +msgid "You can not rename a volume while it is open." msgstr "" #: AdviceMessage.NoRenameIfActive.Link.Text -msgid "Deactivate volume now" +msgid "Close volume now" msgstr "" #: SuccessMessage.VolumeNameChanged.Title @@ -49,42 +53,10 @@ msgstr "" msgid "Failed to rename the volume" msgstr "" -#: WarningMessage.NoRenameIfActive.Text -msgid "You may not rename a volume while it is active." -msgstr "" - -#: WarningMessage.InvalidVolumeName.Title -msgid "Changing of container's name failed" -msgstr "" - -#: WarningMessage.InvalidVolumeName.Text -msgid "The supplied new name of the container was invalid. Please try again!" -msgstr "" - -#: WarningMessage.SetVolumeNameFailed.Text -msgid "Could not change the name of the container. Take a look at the log files for details." -msgstr "" - -#: WarningMessage.VolumeNameIsInUse.Title -msgid "Could not change volume name" -msgstr "" - -#: WarningMessage.VolumeNameIsInUse.Text -msgid "The new name is already in use by another volume." -msgstr "" - -#: AdviceMessage.NoRenameIfActive.Text -msgid "You can not rename a volume while it is open." -msgstr "" - #: WarningMessage.NoRenameIfActive.Text msgid "You may not rename a volume while it is open." msgstr "" -#: AdviceMessage.NoRenameIfActive.Link.Text -msgid "Close volume now" -msgstr "" - #: WarningMessage.InvalidVolumeName.Title msgid "Changing of volume's name failed" msgstr "" @@ -97,6 +69,10 @@ msgstr "" msgid "Could not change the name of the volume. Take a look at the log files for details." msgstr "" -#: Help.Rename -msgid "Define a name for the volume. This should help you to manage multiple volumes easily." +#: WarningMessage.VolumeNameIsInUse.Title +msgid "Could not change volume name" +msgstr "" + +#: WarningMessage.VolumeNameIsInUse.Text +msgid "The new name is already in use by another volume." msgstr "" diff --git a/plugins/volume_rename/intl/fi/cryptobox-server-feature-volume_rename.po b/plugins/volume_rename/intl/fi/cryptobox-server-feature-volume_rename.po index 341e4c0..44f9cb2 100644 --- a/plugins/volume_rename/intl/fi/cryptobox-server-feature-volume_rename.po +++ b/plugins/volume_rename/intl/fi/cryptobox-server-feature-volume_rename.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,12 +29,16 @@ msgstr "" msgid "Change name" msgstr "" +#: Help.Rename +msgid "Define a name for the volume. This should help you to manage multiple volumes easily." +msgstr "" + #: AdviceMessage.NoRenameIfActive.Text -msgid "You can not rename a volume while it is active." +msgid "You can not rename a volume while it is open." msgstr "" #: AdviceMessage.NoRenameIfActive.Link.Text -msgid "Deactivate volume now" +msgid "Close volume now" msgstr "" #: SuccessMessage.VolumeNameChanged.Title @@ -49,42 +53,10 @@ msgstr "" msgid "Failed to rename the volume" msgstr "" -#: WarningMessage.NoRenameIfActive.Text -msgid "You may not rename a volume while it is active." -msgstr "" - -#: WarningMessage.InvalidVolumeName.Title -msgid "Changing of container's name failed" -msgstr "" - -#: WarningMessage.InvalidVolumeName.Text -msgid "The supplied new name of the container was invalid. Please try again!" -msgstr "" - -#: WarningMessage.SetVolumeNameFailed.Text -msgid "Could not change the name of the container. Take a look at the log files for details." -msgstr "" - -#: WarningMessage.VolumeNameIsInUse.Title -msgid "Could not change volume name" -msgstr "" - -#: WarningMessage.VolumeNameIsInUse.Text -msgid "The new name is already in use by another volume." -msgstr "" - -#: AdviceMessage.NoRenameIfActive.Text -msgid "You can not rename a volume while it is open." -msgstr "" - #: WarningMessage.NoRenameIfActive.Text msgid "You may not rename a volume while it is open." msgstr "" -#: AdviceMessage.NoRenameIfActive.Link.Text -msgid "Close volume now" -msgstr "" - #: WarningMessage.InvalidVolumeName.Title msgid "Changing of volume's name failed" msgstr "" @@ -97,6 +69,10 @@ msgstr "" msgid "Could not change the name of the volume. Take a look at the log files for details." msgstr "" -#: Help.Rename -msgid "Define a name for the volume. This should help you to manage multiple volumes easily." +#: WarningMessage.VolumeNameIsInUse.Title +msgid "Could not change volume name" +msgstr "" + +#: WarningMessage.VolumeNameIsInUse.Text +msgid "The new name is already in use by another volume." msgstr "" diff --git a/plugins/volume_rename/intl/fr/cryptobox-server-feature-volume_rename.po b/plugins/volume_rename/intl/fr/cryptobox-server-feature-volume_rename.po index 341e4c0..44f9cb2 100644 --- a/plugins/volume_rename/intl/fr/cryptobox-server-feature-volume_rename.po +++ b/plugins/volume_rename/intl/fr/cryptobox-server-feature-volume_rename.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,12 +29,16 @@ msgstr "" msgid "Change name" msgstr "" +#: Help.Rename +msgid "Define a name for the volume. This should help you to manage multiple volumes easily." +msgstr "" + #: AdviceMessage.NoRenameIfActive.Text -msgid "You can not rename a volume while it is active." +msgid "You can not rename a volume while it is open." msgstr "" #: AdviceMessage.NoRenameIfActive.Link.Text -msgid "Deactivate volume now" +msgid "Close volume now" msgstr "" #: SuccessMessage.VolumeNameChanged.Title @@ -49,42 +53,10 @@ msgstr "" msgid "Failed to rename the volume" msgstr "" -#: WarningMessage.NoRenameIfActive.Text -msgid "You may not rename a volume while it is active." -msgstr "" - -#: WarningMessage.InvalidVolumeName.Title -msgid "Changing of container's name failed" -msgstr "" - -#: WarningMessage.InvalidVolumeName.Text -msgid "The supplied new name of the container was invalid. Please try again!" -msgstr "" - -#: WarningMessage.SetVolumeNameFailed.Text -msgid "Could not change the name of the container. Take a look at the log files for details." -msgstr "" - -#: WarningMessage.VolumeNameIsInUse.Title -msgid "Could not change volume name" -msgstr "" - -#: WarningMessage.VolumeNameIsInUse.Text -msgid "The new name is already in use by another volume." -msgstr "" - -#: AdviceMessage.NoRenameIfActive.Text -msgid "You can not rename a volume while it is open." -msgstr "" - #: WarningMessage.NoRenameIfActive.Text msgid "You may not rename a volume while it is open." msgstr "" -#: AdviceMessage.NoRenameIfActive.Link.Text -msgid "Close volume now" -msgstr "" - #: WarningMessage.InvalidVolumeName.Title msgid "Changing of volume's name failed" msgstr "" @@ -97,6 +69,10 @@ msgstr "" msgid "Could not change the name of the volume. Take a look at the log files for details." msgstr "" -#: Help.Rename -msgid "Define a name for the volume. This should help you to manage multiple volumes easily." +#: WarningMessage.VolumeNameIsInUse.Title +msgid "Could not change volume name" +msgstr "" + +#: WarningMessage.VolumeNameIsInUse.Text +msgid "The new name is already in use by another volume." msgstr "" diff --git a/plugins/volume_rename/intl/hu/cryptobox-server-feature-volume_rename.po b/plugins/volume_rename/intl/hu/cryptobox-server-feature-volume_rename.po index 341e4c0..44f9cb2 100644 --- a/plugins/volume_rename/intl/hu/cryptobox-server-feature-volume_rename.po +++ b/plugins/volume_rename/intl/hu/cryptobox-server-feature-volume_rename.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,12 +29,16 @@ msgstr "" msgid "Change name" msgstr "" +#: Help.Rename +msgid "Define a name for the volume. This should help you to manage multiple volumes easily." +msgstr "" + #: AdviceMessage.NoRenameIfActive.Text -msgid "You can not rename a volume while it is active." +msgid "You can not rename a volume while it is open." msgstr "" #: AdviceMessage.NoRenameIfActive.Link.Text -msgid "Deactivate volume now" +msgid "Close volume now" msgstr "" #: SuccessMessage.VolumeNameChanged.Title @@ -49,42 +53,10 @@ msgstr "" msgid "Failed to rename the volume" msgstr "" -#: WarningMessage.NoRenameIfActive.Text -msgid "You may not rename a volume while it is active." -msgstr "" - -#: WarningMessage.InvalidVolumeName.Title -msgid "Changing of container's name failed" -msgstr "" - -#: WarningMessage.InvalidVolumeName.Text -msgid "The supplied new name of the container was invalid. Please try again!" -msgstr "" - -#: WarningMessage.SetVolumeNameFailed.Text -msgid "Could not change the name of the container. Take a look at the log files for details." -msgstr "" - -#: WarningMessage.VolumeNameIsInUse.Title -msgid "Could not change volume name" -msgstr "" - -#: WarningMessage.VolumeNameIsInUse.Text -msgid "The new name is already in use by another volume." -msgstr "" - -#: AdviceMessage.NoRenameIfActive.Text -msgid "You can not rename a volume while it is open." -msgstr "" - #: WarningMessage.NoRenameIfActive.Text msgid "You may not rename a volume while it is open." msgstr "" -#: AdviceMessage.NoRenameIfActive.Link.Text -msgid "Close volume now" -msgstr "" - #: WarningMessage.InvalidVolumeName.Title msgid "Changing of volume's name failed" msgstr "" @@ -97,6 +69,10 @@ msgstr "" msgid "Could not change the name of the volume. Take a look at the log files for details." msgstr "" -#: Help.Rename -msgid "Define a name for the volume. This should help you to manage multiple volumes easily." +#: WarningMessage.VolumeNameIsInUse.Title +msgid "Could not change volume name" +msgstr "" + +#: WarningMessage.VolumeNameIsInUse.Text +msgid "The new name is already in use by another volume." msgstr "" diff --git a/plugins/volume_rename/intl/it/cryptobox-server-feature-volume_rename.po b/plugins/volume_rename/intl/it/cryptobox-server-feature-volume_rename.po index 341e4c0..44f9cb2 100644 --- a/plugins/volume_rename/intl/it/cryptobox-server-feature-volume_rename.po +++ b/plugins/volume_rename/intl/it/cryptobox-server-feature-volume_rename.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,12 +29,16 @@ msgstr "" msgid "Change name" msgstr "" +#: Help.Rename +msgid "Define a name for the volume. This should help you to manage multiple volumes easily." +msgstr "" + #: AdviceMessage.NoRenameIfActive.Text -msgid "You can not rename a volume while it is active." +msgid "You can not rename a volume while it is open." msgstr "" #: AdviceMessage.NoRenameIfActive.Link.Text -msgid "Deactivate volume now" +msgid "Close volume now" msgstr "" #: SuccessMessage.VolumeNameChanged.Title @@ -49,42 +53,10 @@ msgstr "" msgid "Failed to rename the volume" msgstr "" -#: WarningMessage.NoRenameIfActive.Text -msgid "You may not rename a volume while it is active." -msgstr "" - -#: WarningMessage.InvalidVolumeName.Title -msgid "Changing of container's name failed" -msgstr "" - -#: WarningMessage.InvalidVolumeName.Text -msgid "The supplied new name of the container was invalid. Please try again!" -msgstr "" - -#: WarningMessage.SetVolumeNameFailed.Text -msgid "Could not change the name of the container. Take a look at the log files for details." -msgstr "" - -#: WarningMessage.VolumeNameIsInUse.Title -msgid "Could not change volume name" -msgstr "" - -#: WarningMessage.VolumeNameIsInUse.Text -msgid "The new name is already in use by another volume." -msgstr "" - -#: AdviceMessage.NoRenameIfActive.Text -msgid "You can not rename a volume while it is open." -msgstr "" - #: WarningMessage.NoRenameIfActive.Text msgid "You may not rename a volume while it is open." msgstr "" -#: AdviceMessage.NoRenameIfActive.Link.Text -msgid "Close volume now" -msgstr "" - #: WarningMessage.InvalidVolumeName.Title msgid "Changing of volume's name failed" msgstr "" @@ -97,6 +69,10 @@ msgstr "" msgid "Could not change the name of the volume. Take a look at the log files for details." msgstr "" -#: Help.Rename -msgid "Define a name for the volume. This should help you to manage multiple volumes easily." +#: WarningMessage.VolumeNameIsInUse.Title +msgid "Could not change volume name" +msgstr "" + +#: WarningMessage.VolumeNameIsInUse.Text +msgid "The new name is already in use by another volume." msgstr "" diff --git a/plugins/volume_rename/intl/ja/cryptobox-server-feature-volume_rename.po b/plugins/volume_rename/intl/ja/cryptobox-server-feature-volume_rename.po index 341e4c0..44f9cb2 100644 --- a/plugins/volume_rename/intl/ja/cryptobox-server-feature-volume_rename.po +++ b/plugins/volume_rename/intl/ja/cryptobox-server-feature-volume_rename.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,12 +29,16 @@ msgstr "" msgid "Change name" msgstr "" +#: Help.Rename +msgid "Define a name for the volume. This should help you to manage multiple volumes easily." +msgstr "" + #: AdviceMessage.NoRenameIfActive.Text -msgid "You can not rename a volume while it is active." +msgid "You can not rename a volume while it is open." msgstr "" #: AdviceMessage.NoRenameIfActive.Link.Text -msgid "Deactivate volume now" +msgid "Close volume now" msgstr "" #: SuccessMessage.VolumeNameChanged.Title @@ -49,42 +53,10 @@ msgstr "" msgid "Failed to rename the volume" msgstr "" -#: WarningMessage.NoRenameIfActive.Text -msgid "You may not rename a volume while it is active." -msgstr "" - -#: WarningMessage.InvalidVolumeName.Title -msgid "Changing of container's name failed" -msgstr "" - -#: WarningMessage.InvalidVolumeName.Text -msgid "The supplied new name of the container was invalid. Please try again!" -msgstr "" - -#: WarningMessage.SetVolumeNameFailed.Text -msgid "Could not change the name of the container. Take a look at the log files for details." -msgstr "" - -#: WarningMessage.VolumeNameIsInUse.Title -msgid "Could not change volume name" -msgstr "" - -#: WarningMessage.VolumeNameIsInUse.Text -msgid "The new name is already in use by another volume." -msgstr "" - -#: AdviceMessage.NoRenameIfActive.Text -msgid "You can not rename a volume while it is open." -msgstr "" - #: WarningMessage.NoRenameIfActive.Text msgid "You may not rename a volume while it is open." msgstr "" -#: AdviceMessage.NoRenameIfActive.Link.Text -msgid "Close volume now" -msgstr "" - #: WarningMessage.InvalidVolumeName.Title msgid "Changing of volume's name failed" msgstr "" @@ -97,6 +69,10 @@ msgstr "" msgid "Could not change the name of the volume. Take a look at the log files for details." msgstr "" -#: Help.Rename -msgid "Define a name for the volume. This should help you to manage multiple volumes easily." +#: WarningMessage.VolumeNameIsInUse.Title +msgid "Could not change volume name" +msgstr "" + +#: WarningMessage.VolumeNameIsInUse.Text +msgid "The new name is already in use by another volume." msgstr "" diff --git a/plugins/volume_rename/intl/nl/cryptobox-server-feature-volume_rename.po b/plugins/volume_rename/intl/nl/cryptobox-server-feature-volume_rename.po index 341e4c0..44f9cb2 100644 --- a/plugins/volume_rename/intl/nl/cryptobox-server-feature-volume_rename.po +++ b/plugins/volume_rename/intl/nl/cryptobox-server-feature-volume_rename.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,12 +29,16 @@ msgstr "" msgid "Change name" msgstr "" +#: Help.Rename +msgid "Define a name for the volume. This should help you to manage multiple volumes easily." +msgstr "" + #: AdviceMessage.NoRenameIfActive.Text -msgid "You can not rename a volume while it is active." +msgid "You can not rename a volume while it is open." msgstr "" #: AdviceMessage.NoRenameIfActive.Link.Text -msgid "Deactivate volume now" +msgid "Close volume now" msgstr "" #: SuccessMessage.VolumeNameChanged.Title @@ -49,42 +53,10 @@ msgstr "" msgid "Failed to rename the volume" msgstr "" -#: WarningMessage.NoRenameIfActive.Text -msgid "You may not rename a volume while it is active." -msgstr "" - -#: WarningMessage.InvalidVolumeName.Title -msgid "Changing of container's name failed" -msgstr "" - -#: WarningMessage.InvalidVolumeName.Text -msgid "The supplied new name of the container was invalid. Please try again!" -msgstr "" - -#: WarningMessage.SetVolumeNameFailed.Text -msgid "Could not change the name of the container. Take a look at the log files for details." -msgstr "" - -#: WarningMessage.VolumeNameIsInUse.Title -msgid "Could not change volume name" -msgstr "" - -#: WarningMessage.VolumeNameIsInUse.Text -msgid "The new name is already in use by another volume." -msgstr "" - -#: AdviceMessage.NoRenameIfActive.Text -msgid "You can not rename a volume while it is open." -msgstr "" - #: WarningMessage.NoRenameIfActive.Text msgid "You may not rename a volume while it is open." msgstr "" -#: AdviceMessage.NoRenameIfActive.Link.Text -msgid "Close volume now" -msgstr "" - #: WarningMessage.InvalidVolumeName.Title msgid "Changing of volume's name failed" msgstr "" @@ -97,6 +69,10 @@ msgstr "" msgid "Could not change the name of the volume. Take a look at the log files for details." msgstr "" -#: Help.Rename -msgid "Define a name for the volume. This should help you to manage multiple volumes easily." +#: WarningMessage.VolumeNameIsInUse.Title +msgid "Could not change volume name" +msgstr "" + +#: WarningMessage.VolumeNameIsInUse.Text +msgid "The new name is already in use by another volume." msgstr "" diff --git a/plugins/volume_rename/intl/pl/cryptobox-server-feature-volume_rename.po b/plugins/volume_rename/intl/pl/cryptobox-server-feature-volume_rename.po index 341e4c0..44f9cb2 100644 --- a/plugins/volume_rename/intl/pl/cryptobox-server-feature-volume_rename.po +++ b/plugins/volume_rename/intl/pl/cryptobox-server-feature-volume_rename.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,12 +29,16 @@ msgstr "" msgid "Change name" msgstr "" +#: Help.Rename +msgid "Define a name for the volume. This should help you to manage multiple volumes easily." +msgstr "" + #: AdviceMessage.NoRenameIfActive.Text -msgid "You can not rename a volume while it is active." +msgid "You can not rename a volume while it is open." msgstr "" #: AdviceMessage.NoRenameIfActive.Link.Text -msgid "Deactivate volume now" +msgid "Close volume now" msgstr "" #: SuccessMessage.VolumeNameChanged.Title @@ -49,42 +53,10 @@ msgstr "" msgid "Failed to rename the volume" msgstr "" -#: WarningMessage.NoRenameIfActive.Text -msgid "You may not rename a volume while it is active." -msgstr "" - -#: WarningMessage.InvalidVolumeName.Title -msgid "Changing of container's name failed" -msgstr "" - -#: WarningMessage.InvalidVolumeName.Text -msgid "The supplied new name of the container was invalid. Please try again!" -msgstr "" - -#: WarningMessage.SetVolumeNameFailed.Text -msgid "Could not change the name of the container. Take a look at the log files for details." -msgstr "" - -#: WarningMessage.VolumeNameIsInUse.Title -msgid "Could not change volume name" -msgstr "" - -#: WarningMessage.VolumeNameIsInUse.Text -msgid "The new name is already in use by another volume." -msgstr "" - -#: AdviceMessage.NoRenameIfActive.Text -msgid "You can not rename a volume while it is open." -msgstr "" - #: WarningMessage.NoRenameIfActive.Text msgid "You may not rename a volume while it is open." msgstr "" -#: AdviceMessage.NoRenameIfActive.Link.Text -msgid "Close volume now" -msgstr "" - #: WarningMessage.InvalidVolumeName.Title msgid "Changing of volume's name failed" msgstr "" @@ -97,6 +69,10 @@ msgstr "" msgid "Could not change the name of the volume. Take a look at the log files for details." msgstr "" -#: Help.Rename -msgid "Define a name for the volume. This should help you to manage multiple volumes easily." +#: WarningMessage.VolumeNameIsInUse.Title +msgid "Could not change volume name" +msgstr "" + +#: WarningMessage.VolumeNameIsInUse.Text +msgid "The new name is already in use by another volume." msgstr "" diff --git a/plugins/volume_rename/intl/pt/cryptobox-server-feature-volume_rename.po b/plugins/volume_rename/intl/pt/cryptobox-server-feature-volume_rename.po index 341e4c0..44f9cb2 100644 --- a/plugins/volume_rename/intl/pt/cryptobox-server-feature-volume_rename.po +++ b/plugins/volume_rename/intl/pt/cryptobox-server-feature-volume_rename.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,12 +29,16 @@ msgstr "" msgid "Change name" msgstr "" +#: Help.Rename +msgid "Define a name for the volume. This should help you to manage multiple volumes easily." +msgstr "" + #: AdviceMessage.NoRenameIfActive.Text -msgid "You can not rename a volume while it is active." +msgid "You can not rename a volume while it is open." msgstr "" #: AdviceMessage.NoRenameIfActive.Link.Text -msgid "Deactivate volume now" +msgid "Close volume now" msgstr "" #: SuccessMessage.VolumeNameChanged.Title @@ -49,42 +53,10 @@ msgstr "" msgid "Failed to rename the volume" msgstr "" -#: WarningMessage.NoRenameIfActive.Text -msgid "You may not rename a volume while it is active." -msgstr "" - -#: WarningMessage.InvalidVolumeName.Title -msgid "Changing of container's name failed" -msgstr "" - -#: WarningMessage.InvalidVolumeName.Text -msgid "The supplied new name of the container was invalid. Please try again!" -msgstr "" - -#: WarningMessage.SetVolumeNameFailed.Text -msgid "Could not change the name of the container. Take a look at the log files for details." -msgstr "" - -#: WarningMessage.VolumeNameIsInUse.Title -msgid "Could not change volume name" -msgstr "" - -#: WarningMessage.VolumeNameIsInUse.Text -msgid "The new name is already in use by another volume." -msgstr "" - -#: AdviceMessage.NoRenameIfActive.Text -msgid "You can not rename a volume while it is open." -msgstr "" - #: WarningMessage.NoRenameIfActive.Text msgid "You may not rename a volume while it is open." msgstr "" -#: AdviceMessage.NoRenameIfActive.Link.Text -msgid "Close volume now" -msgstr "" - #: WarningMessage.InvalidVolumeName.Title msgid "Changing of volume's name failed" msgstr "" @@ -97,6 +69,10 @@ msgstr "" msgid "Could not change the name of the volume. Take a look at the log files for details." msgstr "" -#: Help.Rename -msgid "Define a name for the volume. This should help you to manage multiple volumes easily." +#: WarningMessage.VolumeNameIsInUse.Title +msgid "Could not change volume name" +msgstr "" + +#: WarningMessage.VolumeNameIsInUse.Text +msgid "The new name is already in use by another volume." msgstr "" diff --git a/plugins/volume_rename/intl/ru/cryptobox-server-feature-volume_rename.po b/plugins/volume_rename/intl/ru/cryptobox-server-feature-volume_rename.po index 341e4c0..44f9cb2 100644 --- a/plugins/volume_rename/intl/ru/cryptobox-server-feature-volume_rename.po +++ b/plugins/volume_rename/intl/ru/cryptobox-server-feature-volume_rename.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,12 +29,16 @@ msgstr "" msgid "Change name" msgstr "" +#: Help.Rename +msgid "Define a name for the volume. This should help you to manage multiple volumes easily." +msgstr "" + #: AdviceMessage.NoRenameIfActive.Text -msgid "You can not rename a volume while it is active." +msgid "You can not rename a volume while it is open." msgstr "" #: AdviceMessage.NoRenameIfActive.Link.Text -msgid "Deactivate volume now" +msgid "Close volume now" msgstr "" #: SuccessMessage.VolumeNameChanged.Title @@ -49,42 +53,10 @@ msgstr "" msgid "Failed to rename the volume" msgstr "" -#: WarningMessage.NoRenameIfActive.Text -msgid "You may not rename a volume while it is active." -msgstr "" - -#: WarningMessage.InvalidVolumeName.Title -msgid "Changing of container's name failed" -msgstr "" - -#: WarningMessage.InvalidVolumeName.Text -msgid "The supplied new name of the container was invalid. Please try again!" -msgstr "" - -#: WarningMessage.SetVolumeNameFailed.Text -msgid "Could not change the name of the container. Take a look at the log files for details." -msgstr "" - -#: WarningMessage.VolumeNameIsInUse.Title -msgid "Could not change volume name" -msgstr "" - -#: WarningMessage.VolumeNameIsInUse.Text -msgid "The new name is already in use by another volume." -msgstr "" - -#: AdviceMessage.NoRenameIfActive.Text -msgid "You can not rename a volume while it is open." -msgstr "" - #: WarningMessage.NoRenameIfActive.Text msgid "You may not rename a volume while it is open." msgstr "" -#: AdviceMessage.NoRenameIfActive.Link.Text -msgid "Close volume now" -msgstr "" - #: WarningMessage.InvalidVolumeName.Title msgid "Changing of volume's name failed" msgstr "" @@ -97,6 +69,10 @@ msgstr "" msgid "Could not change the name of the volume. Take a look at the log files for details." msgstr "" -#: Help.Rename -msgid "Define a name for the volume. This should help you to manage multiple volumes easily." +#: WarningMessage.VolumeNameIsInUse.Title +msgid "Could not change volume name" +msgstr "" + +#: WarningMessage.VolumeNameIsInUse.Text +msgid "The new name is already in use by another volume." msgstr "" diff --git a/plugins/volume_rename/intl/sl/cryptobox-server-feature-volume_rename.po b/plugins/volume_rename/intl/sl/cryptobox-server-feature-volume_rename.po index 341e4c0..44f9cb2 100644 --- a/plugins/volume_rename/intl/sl/cryptobox-server-feature-volume_rename.po +++ b/plugins/volume_rename/intl/sl/cryptobox-server-feature-volume_rename.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,12 +29,16 @@ msgstr "" msgid "Change name" msgstr "" +#: Help.Rename +msgid "Define a name for the volume. This should help you to manage multiple volumes easily." +msgstr "" + #: AdviceMessage.NoRenameIfActive.Text -msgid "You can not rename a volume while it is active." +msgid "You can not rename a volume while it is open." msgstr "" #: AdviceMessage.NoRenameIfActive.Link.Text -msgid "Deactivate volume now" +msgid "Close volume now" msgstr "" #: SuccessMessage.VolumeNameChanged.Title @@ -49,42 +53,10 @@ msgstr "" msgid "Failed to rename the volume" msgstr "" -#: WarningMessage.NoRenameIfActive.Text -msgid "You may not rename a volume while it is active." -msgstr "" - -#: WarningMessage.InvalidVolumeName.Title -msgid "Changing of container's name failed" -msgstr "" - -#: WarningMessage.InvalidVolumeName.Text -msgid "The supplied new name of the container was invalid. Please try again!" -msgstr "" - -#: WarningMessage.SetVolumeNameFailed.Text -msgid "Could not change the name of the container. Take a look at the log files for details." -msgstr "" - -#: WarningMessage.VolumeNameIsInUse.Title -msgid "Could not change volume name" -msgstr "" - -#: WarningMessage.VolumeNameIsInUse.Text -msgid "The new name is already in use by another volume." -msgstr "" - -#: AdviceMessage.NoRenameIfActive.Text -msgid "You can not rename a volume while it is open." -msgstr "" - #: WarningMessage.NoRenameIfActive.Text msgid "You may not rename a volume while it is open." msgstr "" -#: AdviceMessage.NoRenameIfActive.Link.Text -msgid "Close volume now" -msgstr "" - #: WarningMessage.InvalidVolumeName.Title msgid "Changing of volume's name failed" msgstr "" @@ -97,6 +69,10 @@ msgstr "" msgid "Could not change the name of the volume. Take a look at the log files for details." msgstr "" -#: Help.Rename -msgid "Define a name for the volume. This should help you to manage multiple volumes easily." +#: WarningMessage.VolumeNameIsInUse.Title +msgid "Could not change volume name" +msgstr "" + +#: WarningMessage.VolumeNameIsInUse.Text +msgid "The new name is already in use by another volume." msgstr "" diff --git a/plugins/volume_rename/intl/sv/cryptobox-server-feature-volume_rename.po b/plugins/volume_rename/intl/sv/cryptobox-server-feature-volume_rename.po index 341e4c0..44f9cb2 100644 --- a/plugins/volume_rename/intl/sv/cryptobox-server-feature-volume_rename.po +++ b/plugins/volume_rename/intl/sv/cryptobox-server-feature-volume_rename.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: CryptoBox-Server 0.3\n" "Report-Msgid-Bugs-To: translate@cryptobox.org\n" -"POT-Creation-Date: 2006-11-28 05:04+0100\n" +"POT-Creation-Date: 2006-12-18 11:50+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,12 +29,16 @@ msgstr "" msgid "Change name" msgstr "" +#: Help.Rename +msgid "Define a name for the volume. This should help you to manage multiple volumes easily." +msgstr "" + #: AdviceMessage.NoRenameIfActive.Text -msgid "You can not rename a volume while it is active." +msgid "You can not rename a volume while it is open." msgstr "" #: AdviceMessage.NoRenameIfActive.Link.Text -msgid "Deactivate volume now" +msgid "Close volume now" msgstr "" #: SuccessMessage.VolumeNameChanged.Title @@ -49,42 +53,10 @@ msgstr "" msgid "Failed to rename the volume" msgstr "" -#: WarningMessage.NoRenameIfActive.Text -msgid "You may not rename a volume while it is active." -msgstr "" - -#: WarningMessage.InvalidVolumeName.Title -msgid "Changing of container's name failed" -msgstr "" - -#: WarningMessage.InvalidVolumeName.Text -msgid "The supplied new name of the container was invalid. Please try again!" -msgstr "" - -#: WarningMessage.SetVolumeNameFailed.Text -msgid "Could not change the name of the container. Take a look at the log files for details." -msgstr "" - -#: WarningMessage.VolumeNameIsInUse.Title -msgid "Could not change volume name" -msgstr "" - -#: WarningMessage.VolumeNameIsInUse.Text -msgid "The new name is already in use by another volume." -msgstr "" - -#: AdviceMessage.NoRenameIfActive.Text -msgid "You can not rename a volume while it is open." -msgstr "" - #: WarningMessage.NoRenameIfActive.Text msgid "You may not rename a volume while it is open." msgstr "" -#: AdviceMessage.NoRenameIfActive.Link.Text -msgid "Close volume now" -msgstr "" - #: WarningMessage.InvalidVolumeName.Title msgid "Changing of volume's name failed" msgstr "" @@ -97,6 +69,10 @@ msgstr "" msgid "Could not change the name of the volume. Take a look at the log files for details." msgstr "" -#: Help.Rename -msgid "Define a name for the volume. This should help you to manage multiple volumes easily." +#: WarningMessage.VolumeNameIsInUse.Title +msgid "Could not change volume name" +msgstr "" + +#: WarningMessage.VolumeNameIsInUse.Text +msgid "The new name is already in use by another volume." msgstr "" diff --git a/plugins/volume_rename/volume_rename.cs b/plugins/volume_rename/volume_rename.cs index 8bb8e4b..fb1d6c7 100644 --- a/plugins/volume_rename/volume_rename.cs +++ b/plugins/volume_rename/volume_rename.cs @@ -9,12 +9,12 @@ -

- + +

- -

+

+ diff --git a/scripts/update_english.sh b/scripts/update_english.sh deleted file mode 100755 index 4a1fd77..0000000 --- a/scripts/update_english.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh - -which potool &>/dev/null || { echo "potool not found - try 'apt-get install potool'" >&2; exit 1; } - -PROJ_DIR=$(cd "$(dirname $0)/.."; pwd) - -find "$PROJ_DIR/intl" "$PROJ_DIR/plugins" -type f -name \*.po | grep /intl/en/ | while read a - do potool -c -n scmt "$a" > "${a}.new" && mv "${a}.new" "$a" - done - diff --git a/scripts/update_po_files.py b/scripts/update_po_files.py index c6b1d65..9bf4ac4 100755 --- a/scripts/update_po_files.py +++ b/scripts/update_po_files.py @@ -4,6 +4,13 @@ # # This file is part of the CryptoBox. # +# All available hdf language files are parsed for creating pot (po-template) files. +# All existing po-file are merged with these templates to remove obsolete msgids. +# Additionally every msgstr of the english original is set to the value of the +# respective msgid. +# All resulting po files are chmod'ed to 0666 - this is useful if you locally use +# services like pootle. +# # The CryptoBox is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or @@ -38,10 +45,13 @@ except ImportError, errMsg: sys.exit(1) LANGUAGE_FILE = 'language.hdf' +## name of the main domain and prefix for all plugin domains GETTEXT_DOMAIN = 'cryptobox-server' +## set the msgstrs for this language to the value of the respective msgids DEFAULT_LANG = 'en' LANG_DIR = 'intl' -MAIL_ADDRESS = 'translate@cryptobox.org' +## mail adress for translation bugs +MAIL_ADDRESS = 'info@cryptobox.org' ## the complete list of languages wastes a lot of space - for now we use only a few #ALL_LANGUAGES = "af aka am ar bn ca cs da de el en es et eu fa fi fr fur gl he hi hr hu hy is it ja ka kg ko ku lt lv mr ms mt nb ne nl nn ns pa pl pt ru sl sr st sv tr uk ve vi xh".split(" ") ALL_LANGUAGES = "cs da de en es fi fr hu it ja nl pl pt ru sl sv".split(" ") @@ -69,16 +79,21 @@ def process_language_file(hdf_file, po_dir, textDomain): else: sys.stdout.write("Loading: %s\n" % pot_file) pot = translate.storage.po.pofile.parsefile(pot_file) + ## remove all msgids - we will add them later + pot.units = [] + ## add new entries def walk_hdf(prefix, node): def addPoItem(hdf_node): ## ignore hdf values with a "LINK" attribute for (key,value) in hdf_node.attrs(): - if key == "LINK": return - if not hdf_node.value(): return + if key == "LINK": + return + if not hdf_node.value(): + return item = pot.findunit(hdf_node.value()) if not item: item = pot.addsourceunit(hdf_node.value()) - item.addlocation("%s%s" % (prefix,hdf_node.name())) + item.addlocation("%s%s" % (prefix, hdf_node.name())) while node: if node.name(): new_prefix = prefix + node.name() + '.' @@ -108,6 +123,19 @@ def process_language_file(hdf_file, po_dir, textDomain): po2_file = po_file + '.new' translate.convert.pot2po.convertpot(file(pot_file), file(po2_file,'w'), file(po_file)) os.rename(po2_file, po_file) + if ld == DEFAULT_LANG: + ## set every msgstr to the respective msgid + po_data = translate.storage.po.pofile.parsefile(po_file) + for po_unit in po_data.units: + po_unit.settarget(po_unit.getsource()) + po_data.savefile(po_file) + else: + po_content = translate.storage.po.pofile.parsefile(po_file) + po_content.removeduplicates() + po_content.removeblanks() + po_content.savefile(po_file) + ## make it writeable for pootle + os.chmod(po_file, 0666) ## compile po file mo_file = po_file[:-3] + '.mo' translate.tools.pocompile.convertmo(file(po_file), file(mo_file,'w'), file(pot_file)) diff --git a/setup.py b/setup.py index 19a4084..d04a247 100644 --- a/setup.py +++ b/setup.py @@ -21,8 +21,6 @@ # Dependencies: clearsilver(python), cherrypy, python-configobj # -## TODO: compilation of language files (po->mo) is not done here (only by debian/rules) - from distutils.core import setup import distutils.sysconfig import os @@ -37,9 +35,9 @@ pydir = pydir.replace(distutils.sysconfig.get_config_var("prefix") + os.path.sep pydir = os.path.join(pydir, 'cryptobox') ## shared data dir -datadir = os.path.join(pydir, 'share') +datadir = os.path.join('share', 'cryptobox-server') ## doc dir -docdir = os.path.join(pydir, 'doc') +docdir = os.path.join('share', 'doc', 'cryptobox-server') ## configuration directory confdir = os.path.join(os.path.sep, 'etc', 'cryptobox-server') @@ -78,7 +76,9 @@ def getdatafiles(prefix, dirs): def get_language_files(prefix): - """return a destination-file mapping for all compiled language files (*.po)""" + """return a destination-file mapping for all compiled language files (*.po) + """ + import sys mapping = [] ## find all language directories intl_dirs = [] @@ -89,40 +89,54 @@ def get_language_files(prefix): for lang_dir in [os.path.join(i_dir, e) for e in os.listdir(i_dir) if os.path.isdir(os.path.join(i_dir, e)) and (not e in IGNORE_FILES)]: - mapping.append((os.path.join( - prefix, os.path.basename(lang_dir), 'LC_MESSAGES'), - [ os.path.join(lang_dir, e) + po_files = [ os.path.join(lang_dir, e) for e in os.listdir(lang_dir) if os.path.isfile(os.path.join(lang_dir, e)) \ - and (e[-3:] == '.po') ])) + and (e[-3:] == '.po') ] + lang_files = [] + for po_file in po_files: + if compile_po_file(po_file): + lang_files.append(po_file[:-3] + ".mo") + else: + sys.stderr.write("Failed to compile language file: %s\n" % po_file) + mapping.append((os.path.join( + prefix, os.path.basename(lang_dir), 'LC_MESSAGES'), lang_files)) return mapping - + + +def compile_po_file(po_file): + """compile the binary mo file out of a po file + """ + import subprocess + return subprocess.call( [ "msgfmt", "-o", po_file[:-3] + ".mo", po_file ] ) == 0 setup( name = 'cryptobox-server', version = '0.3.0', description = 'webinterface for handling encrypted disks', - author = 'Lars Kruse', - author_email = 'devel@sumpfralle.de', + author = 'Sense.Lab e.V.', + author_email = 'info@cryptobox.org', maintainer = 'Lars Kruse', maintainer_email = 'devel@sumpfralle.de', license = 'GPL', url = 'http://cryptobox.org', packages = [ 'cryptobox', 'cryptobox.core', 'cryptobox.web', 'cryptobox.plugins', 'cryptobox.tests' ], - data_files = getdatafiles(datadir, ['templates', 'www-data', 'lang', 'plugins']) + + data_files = getdatafiles(datadir, ['templates', 'www-data', 'plugins']) + getdatafiles(confdir, [os.path.join('conf-examples', 'cryptobox.conf')]) + getdatafiles(os.path.join(confdir, 'events.d'), [ os.path.join('event-scripts', 'README'), os.path.join('event-scripts', '_event_scripts_')]) + - getdatafiles(docdir, ['doc/html']) + getdatafiles(docdir, ['conf-examples', 'event-scripts', 'README', 'changelog', - 'LICENSE', 'copyright', 'doc/html', 'README.davfs', 'README.samba', - 'README.proxy', 'README.ssl' ]) + - get_language_files('share/locale'), + 'LICENSE', 'copyright', os.path.join('doc', 'html'), 'README.davfs', + 'README.samba', 'README.proxy', 'README.ssl' ]) + + getdatafiles(os.path.join(docdir, 'conf-examples'), + [os.path.join('debian', 'cryptobox-server.init')]) + + get_language_files(os.path.join('share', 'locale')), package_dir = { '': 'src' }, - scripts = [ 'bin/CryptoBoxWebserver', 'bin/CryptoBoxRootActions' ], + scripts = [ os.path.join('bin', 'CryptoBoxWebserver'), + os.path.join('bin', 'CryptoBoxRootActions') ], classifiers = [ 'Development Status :: 2 - Beta', 'Environment :: Web Environment', diff --git a/src/cryptobox/__init__.py b/src/cryptobox/__init__.py index e3b7cf2..3409b5a 100644 --- a/src/cryptobox/__init__.py +++ b/src/cryptobox/__init__.py @@ -10,5 +10,5 @@ __all__ = ['core', 'web', 'plugins', 'tests'] __revision__ = "$Id$" -__version__ = "0.3.0" +__version__ = "0.3.0.1" diff --git a/src/cryptobox/plugins/base.py b/src/cryptobox/plugins/base.py index f9eb411..313fc60 100644 --- a/src/cryptobox/plugins/base.py +++ b/src/cryptobox/plugins/base.py @@ -154,6 +154,11 @@ class CryptoBoxPlugin: """ for (key, value) in self.hdf.items(): hdf.setValue(key, str(value)) + ## add the stylesheet file if it exists + css_file = os.path.join(self.plugin_dir, self.get_name() + ".css") + if os.path.exists(css_file): + hdf.setValue("Data.StylesheetFiles.%s" % self.get_name(), css_file) + def is_auth_required(self): @@ -193,10 +198,23 @@ class CryptoBoxPlugin: """ try: if self.cbox.prefs.plugin_conf[self.get_name()]["rank"] is None: - return self.rank + return int(self.rank) return int(self.cbox.prefs.plugin_conf[self.get_name()]["rank"]) except (KeyError, TypeError): - return self.rank + return int(self.rank) + + + def set_rank(self, rank): + """change the current rank of the plugin in plugin_conf + 'rank' should be an integer + """ + pl_conf = self.cbox.prefs.plugin_conf + pl_name = self.get_name() + if pl_conf.has_key(pl_name): + pl_conf[pl_name]["rank"] = rank + else: + pl_conf[pl_name] = {} + pl_conf[pl_name]["rank"] = rank def get_visibility(self): diff --git a/src/cryptobox/web/dataset.py b/src/cryptobox/web/dataset.py index 4823098..26222c0 100644 --- a/src/cryptobox/web/dataset.py +++ b/src/cryptobox/web/dataset.py @@ -219,9 +219,5 @@ class WebInterfaceDataset(dict): self["Settings.DocDir"] = os.path.abspath(self.prefs["Locations"]["DocDir"]) self["Settings.Stylesheet"] = self.prefs["WebSettings"]["Stylesheet"] self["Settings.Language"] = self.prefs["WebSettings"]["Languages"][0] - for (num, dpath) in enumerate(self.prefs["Locations"]["PluginDir"]): - self["Settings.PluginDir.%d" % num] = dpath - ## store the first directory in this settings variable - backward compatibility - self["Settings.PluginDir"] = self.prefs["Locations"]["PluginDir"][0] self["Settings.SettingsDir"] = self.prefs["Locations"]["SettingsDir"] diff --git a/src/cryptobox/web/sites.py b/src/cryptobox/web/sites.py index c96752f..ff6dd15 100644 --- a/src/cryptobox/web/sites.py +++ b/src/cryptobox/web/sites.py @@ -436,20 +436,28 @@ class WebInterfaceSites: lang_order.insert(0, guess) self.cbox.log.debug( "raised priority of preferred browser language: %s" % guess) + ## check if the 'weblang' setting is necessary (does it change the result + ## of the language preference calculation?) + override_by_weblang = False ## is the chosen language (via web interface) valid? - put it in front if value and (value in lang_order) and (not re.search(r'\W', value)): - lang_order.remove(value) - lang_order.insert(0, value) - self.cbox.log.debug( + ## skip if the 'weblang' value is already at the top of the list + if lang_order.index(value) != 0: + override_by_weblang = True + lang_order.remove(value) + lang_order.insert(0, value) + self.cbox.log.debug( "raised priority of selected language: %s" % value) elif value: self.cbox.log.info("invalid language selected: %s" % value) ## store current language setting - self.cbox.log.debug( + self.cbox.log.info( "current language preference: %s" % str(lang_order)) self.lang_order = lang_order self.__dataset["Settings.Language"] = lang_order[0] - self.__dataset["Settings.LinkAttrs.weblang"] = lang_order[0] + ## we do not have to add the LinkAttr if it is irrelevant + if override_by_weblang: + self.__dataset["Settings.LinkAttrs.weblang"] = lang_order[0] def __get_browser_language(self, avail_langs): diff --git a/stuff/commit-policy.txt b/stuff/commit-policy.txt index 43b4362..7c3eadb 100644 --- a/stuff/commit-policy.txt +++ b/stuff/commit-policy.txt @@ -1,7 +1,5 @@ The usual steps before commit: - scripts/update_po_files.py - - scripts/update_english.sh - - ../tags/make-deb.sh 0.2.$VERSION . - run unittests: - bin/uml-setup.py - log into uml diff --git a/templates/footer.cs b/templates/footer.cs index 91a03e1..f5a6478 100644 --- a/templates/footer.cs +++ b/templates/footer.cs @@ -17,7 +17,7 @@

+ diff --git a/templates/header.cs b/templates/header.cs index 552ef52..f9effec 100644 --- a/templates/header.cs +++ b/templates/header.cs @@ -14,10 +14,21 @@ + + 0 + ?> + +
+ @@ -53,8 +64,8 @@ -
- + +