# rndbytes - write random bytes # Copyright (C) 2008 - Dipl.-Ing. Dirk Krause # All rights reserved # Redistribution and use in source and binary forms, # with or without modification, are permitted provided # that the following conditions are met: # # * Redistributions of source code must retain the above # copyright notice, this list of conditions and the # following disclaimer. # * Redistributions in binary form must reproduce the above # opyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # * Neither the name of the Dirk Krause nor the names of # its contributors may be used to endorse or promote # products derived from this software without specific # prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND # CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, # INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE # DISCLAIMED. # IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE # OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH # DAMAGE. $version 1.1 $author Dirk Krause $comment String table for the rndbytes program "0" en = "Not enough memory (RAM/swap space)!" de = "Zuwenig Speicher (RAM/Auslagerungsdatei)!" "1" en = "Current configuration:" de = "Aktuelle Konfiguration:" "2" en = "block size in bytes" de = "Blockgröße in Bytes" "3" en = "number of blocks (0 means ``infinite'' sequence of blocks)" de = "Blockanzahl (0 für \"endlose\" Folge)" "4" en = "PRNGs to use, either ``all'' or a comma-separated list of:" de = "PRNGs, entweder \"all\" oder eine mit Kommata getrennte Liste aus:" "5" en = "openssl OpenSSL PRNG" de = "openssl OpenSSL PRNG" "6" en = "random initstate()/setstate()/random()" de = "random initstate()/setstate()/random()" "7" en = "rand48 nrand48()" de = "rand48 nrand48()" "8" en = "rand rand()" de = "rand rand()" "9" en = "\"" de = "\"" "10" en = "\" is not a number!" de = "\" ist keine Zahl!" "11" en = "Long option \"" de = "Die Option \"" "12" en = "\" needs an argument!" de = "\" benötigt ein Argument!" "13" en = "Option \"" de = "Die Option \"" "14" en = "\" needs an argument!" de = "\" benötigt ein Argument!" "15" en = "Unknown long option \"" de = "Die Option \"" "16" en = "\"!" de = "\" ist nicht vorgesehen!" "17" en = "Argument \"" de = "Das Argument \"" "18" en = "\" is too long!" de = "\" ist zu lang!" "19" en = "Missing block size for \"-b\" option!" de = "Blockgröße für Option \"-b\" fehlt!" "20" en = "Missing number of blocks for \"-n\" option!" de = "Blockanzahl für Option \"-n\" fehlt!" "21" en = "Missing PRNG list for \"-a\" option!" de = "PRNG-Angabe für Option \"-a\" fehlt!" "22" en = "Unknown option \"" de = "Die Option \"" "23" en = "\"!" de = "\" ist unbekannt" "24" en = "\"" de = "\"" "25" en = "\" is not an option!" de = "\" ist keine Option!" "26" en = "An error occured while writing to standard output!" de = "Fehler beim Schreiben auf die Standardausgabe!" "27" en = "Programm finished by signal or user interaction!" de = "Das Programm wurde abgebrochen (Signal oder Eingabe)!" "28" en = "" de = "" "29" en = " blocks were written." de = " Blöcke wurden geschrieben." # @(#)rndbytes.str 1.3 04/04/08 - krause