pax_global_header00006660000000000000000000000064115370657140014523gustar00rootroot0000000000000052 comment=bbf44840c740ca8174efc0198e41d85ba9de0a31 bashburn-3.0.1/000077500000000000000000000000001153706571400133305ustar00rootroot00000000000000bashburn-3.0.1/BashBurn.sh000077500000000000000000000316231153706571400154000ustar00rootroot00000000000000#!/bin/bash errmsg() { echo -e "$@" 1>&2 } die() { errmsg "$@" exit 1 } # Creates a default config file if one is missing create_config() { { create_reg_config create_advanced_config } > $BBCONFFILE } create_reg_config() { typeset line echo -e " VERSION: 3.x.x BBISCONF: 0 BBCDWRITER: BBCDROM: BBCDMNT: BBSPEED: -1 BBBLANKING: fast BBNUMDEV: 1 BBBURNDIR: /tmp/burn BBFIFODIR: /tmp BBDESCRIPTION: Burnt with BashBurn BBAUTHOR: BBLABEL: BashBurn CD/DVD BBNORMALIZE: no BBDRIVEROPT: BBDELTEMPBURN: no BBOVERBURN: no BBBITRATE: 192 BBLANG: English BBDTAO: -tao BBPADDING: -pad " } create_advanced_config () { echo -e " BB_CDBURNCMD: cdrecord BB_DVDBURNCMD: growisofs BB_DVDBURNCMDOPTS: -r -f -v -J -joliet-long BB_ISOCMD: mkisofs BB_DVDBLANK: dvd+rw-format BB_CDIMAGECMD: cdrdao BB_CDAUDIORIP: cdparanoia BB_READCD: mkisofs BB_READ_OPTS: -r -R -J -l --allow-leading-dots BB_MP3ENC: lame BB_MP3DEC: mpg123 BB_OGGENC: oggenc BB_OGGDEC: oggdec BB_FLACCMD: flac BB_EJECT: eject BB_NORMCMD: normalize " } exit_handler() { echo -e " ${BBMAINCOLOR}$bb_quit1${BBHEADCOLOR}${BBVERSION} ${BBMAINCOLOR}$bb_quit2${BBSUBCOLOR}$bb_quit3${BBMAINCOLOR}$bb_quit4${BBCOLOROFF}" # Reset terminal tput sgr0 stty $TERMINAL_CHARACTERISTICS history -w } force_quit() { exit 0 } typeset -ra BB_REG_KEYWORDS=( \ VERSION \ BBCDWRITER \ BBCDROM \ BBCDMNT \ BBSPEED \ BBBLANKING \ BBNUMDEV \ BBBURNDIR \ BBLABEL \ BBDESCRIPTION \ BBAUTHOR \ BBNORMALIZE \ BBDRIVEROPT \ BBFIFODIR \ BBDELTEMPBURN \ BBOVERBURN \ BBBITRATE \ BBLANG \ BBISCONF \ BBDTAO \ BBPADDING \ BBCONFFILE \ ) typeset -ra BB_ADV_KEYWORDS=( \ BB_CDBURNCMD \ BB_DVDBURNCMD \ BB_DVDBURNCMDOPTS \ BB_ISOCMD \ BB_DVDBLANK \ BB_CDIMAGECMD \ BB_CDAUDIORIP \ BB_READ_OPTS \ BB_READCD \ BB_MP3ENC \ BB_MP3DEC \ BB_OGGENC \ BB_OGGDEC \ BB_FLACCMD \ BB_EJECT \ BB_NORMCMD \ ) typeset -ra BB_KEYWORDS=( "${BB_REG_KEYWORDS[@]}" "${BB_ADV_KEYWORDS[@]}" ) typeset -a mainmenu typeset -a advancedmenu typeset -a audiomenu typeset -a configmenu typeset -a datamenu typeset -a isomenu typeset -a multimenu typeset -a mountmenu typeset -a datadefinemenu typeset -a conf_menuitems typeset CFG_CHANGES typeset -r grepcdfstab="grep -E 'cdrom|dvd|writer|cdrw' /etc/fstab" typeset -r lslang='ls -I ${BBLANG} -1 ${BBROOTDIR}/lang' typeset -r checkdrive='$BB_CDBURNCMD dev=$BBCDWRITER driveropts=help \ -checkdrive 2>&1 > /dev/null | grep -A 20 "Driver options"' define_global_menus() { # Define the menu array entries. Colon is the seperator. # Field 1 is always the the prompt. # Field 2 is always the action if there's a match. # If field three exists then it is the current value to be displayed. # The above description only applies to menus. It does NOT apply to # configuration menus. Regular menus are fed to bbmenu. Configuration # menus are fed to bbmenuconf. # Format for bbmenuconf is # Fld1 is field description. # Fld2 is the name of the config param. # Fld3 is the prompt if you want to change the value of fld2. # Fld4 (optional) is the code to execute to provide more data at runtime # for fld3. mainmenu[0]="$bb_menu_1@audio_menu" mainmenu[1]="$bb_menu_2@data_menu" mainmenu[2]="$bb_menu_3@iso_menu" mainmenu[3]="$bb_menu_4@bincue" mainmenu[4]="$bb_menu_5@multi" mainmenu[5]="$bb_menu_6@configure && return" # Very tricky. mainmenu[6]="$bb_conf_menu_adv@advanced" mainmenu[7]="$bb_menu_7@mount_func" mainmenu[8]="$bb_menu_8@check_path" mainmenu[9]="$bb_menu_9@datadefine" mainmenu[10]="$bb_menu_0@bbexit" advancedmenu[0]='bb_adv_cdburncmd@BB_CDBURNCMD@bb_adv_cdburncmd_help' advancedmenu[1]='bb_adv_dvdburncmd@BB_DVDBURNCMD@bb_adv_dvdburncmd_help' advancedmenu[2]='bb_adv_dvdburncmdopts@BB_DVDBURNCMDOPTS@bb_adv_dvdburncmdopts_help' advancedmenu[3]='bb_adv_isocmd@BB_ISOCMD@bb_adv_isocmd_help' advancedmenu[4]='bb_adv_dvdblankcmd@BB_DVDBLANK@bb_adv_dvdblankcmd_help' advancedmenu[5]='bb_adv_imgburncmd@BB_CDIMAGECMD@bb_adv_imgburncmd_help' advancedmenu[6]='bb_adv_audioripcmd@BB_CDAUDIORIP@bb_adv_audioripcmd_help' advancedmenu[7]='bb_adv_cdcopycmd@BB_READCD@bb_adv_cdcopycmd_help' advancedmenu[8]='bb_adv_cdcopyopts@BB_READ_OPTS@bb_adv_cdcopyopts_help' advancedmenu[9]='bb_adv_mp3enc@BB_MP3ENC@bb_adv_mp3enc_help' advancedmenu[10]='bb_adv_mp3dec@BB_MP3DEC@bb_adv_mp3dec_help' advancedmenu[11]='bb_adv_oggenc@BB_OGGENC@bb_adv_oggenc_help' advancedmenu[12]='bb_adv_oggdec@BB_OGGDEC@bb_adv_oggdec_help' advancedmenu[13]='bb_adv_flac@BB_FLACCMD@bb_adv_flac_help' advancedmenu[14]='bb_adv_eject@BB_EJECT@bb_adv_eject_help' advancedmenu[15]='bb_adv_norm@BB_NORMCMD@bb_adv_norm_help' audiomenu[0]="$bb_am_menu_1@convert_and_burn_from_files" audiomenu[1]="$bb_am_menu_2@burning --pipeline" audiomenu[2]="$bb_am_menu_3@copy_audio_cd" audiomenu[3]="$bb_am_menu_4@copy_cd_to_hd" audiomenu[4]="$bb_am_menu_5@burn_m3u_playlist" audiomenu[5]="$bb_am_menu_6@create_mp3s_from_wavs" audiomenu[6]="$bb_am_menu_7@create_oggs_from_wavs" audiomenu[7]="$bb_am_menu_8@create_flacs_from_wavs" audiomenu[8]="$bb_am_menu_9@create_mp3s_from_cd" audiomenu[9]="$bb_am_menu_10@create_oggs_from_cd" audiomenu[10]="$bb_am_menu_11@create_flacs_from_cd" audiomenu[11]="$bb_am_menu_0@return" conf_menuitems[0]='bb_conf_menu_writer@BBCDWRITER@bb_conf_ch_writer@grepcdfstab' conf_menuitems[1]='bb_conf_menu_cddev@BBCDROM@bb_conf_ch_cddev@grepcdfstab' conf_menuitems[2]='bb_conf_menu_cdmnt@BBCDMNT@bb_conf_ch_cdmnt@grepcdfstab' conf_menuitems[3]='bb_conf_menu_speed@BBSPEED@bb_conf_ch_speed' conf_menuitems[4]='bb_conf_menu_blank@BBBLANKING@bb_conf_ch_blanking' conf_menuitems[5]='bb_conf_menu_numdev@BBNUMDEV@bb_conf_ch_numdev' conf_menuitems[6]='bb_conf_menu_burn@BBBURNDIR@bb_conf_ch_burndir' conf_menuitems[7]='bb_conf_menu_label@BBLABEL@bb_conf_ch_label' conf_menuitems[8]='bb_conf_menu_auth@BBAUTHOR@bb_conf_ch_author' conf_menuitems[9]='bb_conf_menu_desc@BBDESCRIPTION@bb_conf_ch_desc' conf_menuitems[10]='bb_conf_menu_norm@BBNORMALIZE@bb_conf_ch_norm' conf_menuitems[11]='bb_conf_menu_dropt@BBDRIVEROPT@bb_conf_ch_dropts@checkdrive' conf_menuitems[12]='bb_conf_menu_fifo@BBFIFODIR@bb_conf_ch_fifo' conf_menuitems[13]='bb_conf_menu_deltmp@BBDELTEMPBURN@bb_conf_ch_tempdel' conf_menuitems[14]='bb_conf_menu_ob@BBOVERBURN@bb_conf_ch_ob' conf_menuitems[15]='bb_conf_menu_bitrate@BBBITRATE@bb_conf_ch_bitrate' conf_menuitems[16]='bb_conf_menu_lang@BBLANG@bb_conf_ch_lang@lslang' conf_menuitems[17]='bb_conf_menu_dtao@BBDTAO@bb_conf_ch_dtao' conf_menuitems[18]='bb_conf_menu_gap@BBPADDING@bb_conf_ch_pad' datamenu[0]="$bb_dm_menu_1@burning --data" datamenu[1]="$bb_dm_menu_2@copy_data_cd" datamenu[2]="$bb_dm_menu_3@burning --dvddata" datamenu[3]="$bb_dm_menu_4@blank_CDROM" datamenu[4]="$bb_dm_menu_5@burning --dvdblank" datamenu[5]="$bb_dm_menu_0@return" isomenu[0]="$bb_im_menu_1@burning --iso" isomenu[1]="$bb_im_menu_2${BBBURNDIR}@create_iso_from_dir" isomenu[2]="$bb_im_menu_3@create_iso_from_cd" isomenu[3]="$bb_im_menu_4@burning --dvdimage" isomenu[4]="$bb_im_menu_5@mount_in_loopback" isomenu[5]="$bb_im_menu_0@return" multimenu[0]="$bb_multi_menu_1@burn_multi -m 0" multimenu[1]="$bb_multi_menu_2@burn_multi -m 1" multimenu[2]="$bb_multi_menu_3@burn_multi 1" multimenu[3]="$bb_multi_menu_0@return" mountmenu[0]="$bb_mnt_menu_1@mount_device" mountmenu[1]="$bb_mnt_menu_2@umount_device" mountmenu[2]="$bb_mnt_menu_3@eject_device" mountmenu[3]="$bb_mnt_menu_0@return" datadefinemenu[0]="$bb_dc_menu_1${BBBURNDIR}@copy_link_data" datadefinemenu[1]="$bb_dc_menu_2${BBBURNDIR}@{ view_contents; wait_for_enter; }" datadefinemenu[2]="$bb_dc_menu_3${BBBURNDIR}@{ delete_data; wait_for_enter; }" datadefinemenu[3]="$bb_dc_menu_0@return" } source_language_modules() { # This to GO when all configure.lang are fixed # This just adds help descriptions in English # for languages that have not yet got the new $VAR # else they get NO help descriptions at all. . ${BBROOTDIR}/misc/configure_temp_help.lang typeset -r langdir=${BBROOTDIR}/lang/${BBLANG} # Language files . $langdir/BashBurn.lang . $langdir/advanced.lang . $langdir/audio_menu.lang . $langdir/bincue.lang . $langdir/burning.lang . $langdir/check_path.lang . $langdir/commonfunctions.lang . $langdir/configure.lang . $langdir/convert_flacs.lang . $langdir/convert_mp3s.lang . $langdir/convert_oggs.lang . $langdir/data_menu.lang . $langdir/datadefine.lang . $langdir/iso_menu.lang . $langdir/loopback.lang . $langdir/mount.lang . $langdir/multi.lang } bbexit() { typeset -r bberrlog=/dev/null echo -e "--\n" >> $bberrlog exit 0 } getconfigparam() { typeset param=$1 typeset oldIFS="$IFS" typeset IFS=: typeset line while read line do set -- $line if [[ $1 == $param ]] then IFS="$oldIFS" read trimval <<< $2 eval $param=$trimval return 0 # found fi done < $BBCONFFILE return 1 } # Decoline must be two characters longer than version or it will look funny. typeset -r BBDECOLINE='+----------------+' # Version number (should not contain whitespaces at beginning or # end [petsound]). typeset -r BBVERSION='BashBurn 3.0.1' # Bashburn configuration file: typeset -r HOMEDIR=$HOME # User identification # Default config file, used if no config file in user dir typeset BBCONFFILE=$HOMEDIR/.bashburnrc typeset BBROOTDIR='@@BBROOTDIR@@' typeset TERMINAL_CHARACTERISTICS typeset HISTFILE=$HOMEDIR/.bashburn_history # Error log typeset bberrorlog=/tmp/bb-error.log typeset -r OLD_IFS="$IFS" typeset -r BBLANGdef=English echo -e "$(date)\n" >> $bberrorlog # Current terminal characteristics. TERMINAL_CHARACTERISTICS=$(stty -g) # Detect signals as 'CTRL+C', INIT, KILL, call to function force_quit, # show BashBurn info and quit. trap exit_handler EXIT trap force_quit SIGHUP SIGINT SIGQUIT SIGTERM # Pull in minimal files . ${BBROOTDIR}/misc/colors.idx colordef . ${BBROOTDIR}/config/apply_options.sh . ${BBROOTDIR}/misc/commonfunctions.sh BBLANG=$BBLANGdef source_language_modules # Create $HOMEDIR/.bashburnrc if it is not available # Check if an old version is being used if [[ -r $BBCONFFILE ]] then if (! grep -q "VERSION: 3.x.x" $BBCONFFILE) then message \ "\n You have an different version of $BBCONFFILE that will not work with version ${BBVERSION}. Please remove ${BBCONFFILE}, restart BashBurn, and immediately reconfigure ([option 5] in the main menu).\n" die fi fi if [[ ! -r $BBCONFFILE ]] then # We have no rc file and we have to say *something* so for now we will # default to English. message \ "There is no '${BBCONFFILE}'. This is the file where BashBurn stores and reads its configuration. BashBurn will now attempt to create a default template file. PLEASE remember to set up your configuration first [option 5] in the main menu." create_config if [[ -r $BBCONFFILE ]] then message "${BBCONFFILE} file created successfully..." else die 'Failed to create config file. This should not happen. Please report this bug to the BashBurn developers.' fi fi # If we get to here then the rc file exists. . ${BBROOTDIR}/misc/commands.idx bb_parse_config if [[ ! -d ${BBROOTDIR}/lang/${BBLANG} ]] then message \ "Text files for configured language does not exist. Defaulting to English." # Since the set language did not exist, # set it to English and save the option # so that in the future this message is not # shown again. BBLANG=English fi # Read in all files here # This needs to go after all BBLANG help texts are completed/updated. source_language_modules # Function files . ${BBROOTDIR}/burning/bincue.sh . ${BBROOTDIR}/burning/burning.sh . ${BBROOTDIR}/burning/multi.sh . ${BBROOTDIR}/convert/convert_audio.sh . ${BBROOTDIR}/func/advancedfunc.sh . ${BBROOTDIR}/func/audiofunc.sh . ${BBROOTDIR}/func/bincuefunc.sh . ${BBROOTDIR}/func/configfunc.sh . ${BBROOTDIR}/func/datafunc.sh . ${BBROOTDIR}/func/definefunc.sh . ${BBROOTDIR}/func/isofunc.sh . ${BBROOTDIR}/func/mountfunc.sh . ${BBROOTDIR}/func/multifunc.sh . ${BBROOTDIR}/menus/advanced.sh . ${BBROOTDIR}/menus/audio_menu.sh . ${BBROOTDIR}/menus/bbmenu.sh . ${BBROOTDIR}/menus/configure.sh . ${BBROOTDIR}/menus/datadefine.sh . ${BBROOTDIR}/menus/data_menu.sh . ${BBROOTDIR}/menus/iso_menu.sh . ${BBROOTDIR}/menus/mount.sh . ${BBROOTDIR}/misc/check_path.sh . ${BBROOTDIR}/misc/loopback.sh . ${BBROOTDIR}/misc/m3u_read.sh apply_options # Create temporary directory if it does not exist mkdir -p $BBBURNDIR define_global_menus ####PROGRAM START#### # bbmenu is called in a loop because # the configure menu will cause an exit. This will give the mainmenu # the opportunity to re-evaluate the array. while true do bbmenu bb_main_menu mainmenu done exit 0 bashburn-3.0.1/Install.sh000077500000000000000000000161371153706571400153050ustar00rootroot00000000000000#!/bin/bash errmsg() { echo "$prog:$@" 1>&2 } die() { errmsg "$@" exit 1 } proc_opts() { typeset temp typeset arg temp=$(getopt -o :P:UHm --long prefix:,uninstall,help,make-tar -n $prog -- "$@") (( $? )) && usage && die 'getopt failure' # Note the quotes around `$temp': they are essential! eval set -- "$temp" while true do case "$1" in -P|--prefix) [[ -z "$potprefix" ]] || usage 'You already specified --destdir' potprefix="$2" # POTential PREFIX shift 2 ;; -U|--uninstall) (( unistall )) && usage 'You said --uninstall twice?' uninstall=1 shift ;; -H|--help) help=1 shift ;; -m|--make-tar) (( maketar )) && usage 'You said --make-tar twice?' maketar=1 shift ;; --) shift break ;; *) usage "$1: Unknown option" ;; esac done (( $# > 0 )) && die "Too many arguments: $@" } # proc_opts usage() { errmsg "$@" cat <&2 Usage: $0 [OPTIONS] -P dir, --prefix=dir -U, --uninstall -H, --help -m, --make-tar --prefix= will allow the user to specify the prefix directory where BashBurn will be installed or uninstalled. The default is $defprefix. The support files will go into \$dir/lib/BashBurn/lib and the program(s) will be in \$dir/bin --uninstall will remove all of the BashBurn files from your system based on its knowledge of what prefix is. --make-tar will create a .tar.bz2 file suitable for use in creating an RPM. Must be used with --prefix. --help This message EOF exit 1 } installation_finish() { uninstall_info printf "\nInstallation finished successfully. Now start %bBashBurn%b with the command %bbashburn%b, and remember to configure it before trying to use it.\n\n" \ "${green}" "${coloff}" "${blue}" "${coloff}" } install_files() { typeset ii typeset jj typeset kk typeset -a dir_list=( \ burning \ config \ convert \ docs \ func \ lang \ menus \ misc \ ) typeset -ra docs_files=( \ ChangeLog \ COPYING \ CREDITS \ FAQ \ HOWTO \ README \ TODO \ TRANSLATION_RULE \ ) typeset -ra top_files=( \ BashBurn.sh \ ) typeset -ra burning_files=( \ bincue.sh \ burning.sh \ multi.sh \ ) typeset -ra config_files=( \ apply_options.sh \ ) typeset -ra convert_files=( \ convert_audio.sh \ convert_flacs.sh \ convert_mp3s.sh \ convert_oggs.sh \ ) typeset -ra func_files=( \ advancedfunc.sh \ audiofunc.sh \ bincuefunc.sh \ configfunc.sh \ datafunc.sh \ definefunc.sh \ isofunc.sh \ mountfunc.sh \ multifunc.sh \ ) typeset -ra languages=( \ Czech \ English \ German \ Italian \ Norwegian \ Polish \ Spanish \ Swedish \ ) typeset -ra lang_files=( \ BashBurn.lang \ README \ advanced.lang \ audio_menu.lang \ bincue.lang \ burning.lang \ check_path.lang \ commonfunctions.lang \ configure.lang \ convert_flacs.lang \ convert_mp3s.lang \ convert_oggs.lang \ data_menu.lang \ datadefine.lang \ iso_menu.lang \ loopback.lang \ mount.lang \ multi.lang \ ) typeset -ra menus_files=( \ advanced.sh \ audio_menu.sh \ bbmenu.sh configure.sh \ datadefine.sh \ data_menu.sh \ iso_menu.sh \ mount.sh \ ) typeset -ra misc_files=( \ check_path.sh \ colors.idx \ commands.idx \ commonfunctions.sh \ loopback.sh \ m3u_read.sh \ configure_temp_help.lang \ # This needs to go after all BBLANG help # texts are completed/updated ) echo -e "\nInstalling files... " mkdir -p $bblib || die 'Error: Can not create lib directory.' for ii in "${dir_list[@]}" do mkdir -p $bblib/$ii || die 'Error: Can not create a subdirectory in lib.' if [[ $ii == lang ]] then for jj in "${languages[@]}" do mkdir -p $bblib/$ii/$jj || die 'Error: Can not create a lang directory.' for kk in $(eval echo "\${${ii}_files[@]}") do cp "lang/${jj}/$kk" $bblib/$ii/$jj/ || die "Failed to copy $ii/$jj/$kk" || die 'Error: Failed to copy a file to a lang dir.' done done else for kk in $(eval echo "\${${ii}_files[@]}") do cp $ii/$kk $bblib/$ii/ || die "Failed to copy $ii/$kk" done fi done for ii in "${top_files[@]}" do cp $ii $bblib/$ii || die "Failed to copy $ii" done # After installing, See what tickles are needed. make -C bashburn_man mkdir -p $prefix/share/man/man1 gzip < bashburn_man/bashburn.1 > $prefix/share/man/man1/bashburn.1.gz if (( ! maketar )) then cd $bblib sed -e "s%@@BBROOTDIR@@%$bblib%" BashBurn.sh > newbb-$$.sh mv newbb-$$.sh BashBurn.sh chmod +x BashBurn.sh echo -e "${green}[DONE]${coloff}" echo -n "Creating symlink... " mkdir -p $bin || die 'Error could not create the bin directory.' ln -sf $bblib/BashBurn.sh $bin/bashburn || die "Can not create symlink" echo -e "${green}[DONE]${coloff}" echo -en "Setting ownership..." (( $(id -u) == 0 )) && chown -R root:root $bblib echo -e "${green}[DONE]${coloff}" installation_finish fi } uninstall_info() { printf "\nTo remove %bBashBurn%b from your system, just run %bInstall.sh --uninstall%b to delete these files: %b%s%b (symlink)\n%b%s%b (directory).\n" \ "${green}" "${coloff}" "$blue" "$coloff" "$blue" "$bin/bashburn" "$coloff" "$blue" "$lib" "$coloff" } uninstall_files() { printf "\nRemoving %bBashBurn%b from your system..." "$blue" "$coloff" rm -rf $bin/bashburn $bblib $prefix/share/man/man1/bashburn.1.gz echo -e "${green}[DONE]${coloff}\n\n" } intro_banner() { printf "%b ( ) ( ( )\ ) ( /(( )\ ( ( )((_)( /( ( )\())((_) ))\ )( ( ((_)_ )(_)))\((_)((_)_ /((_)()\ )\ ) %b | _%b )(_)_((_)%b |(_) _%b )_))( ((_)_(_/( %b | _ \ _\` (_-< ' \| _ \ || | '_| ' \%b))%b |___\__,_/__/_||_|___/\_,_|_| |_||_| %b" "$yellow" "$red" "$yellow" "$red" "$yellow" "$red" "$yellow" "$red" "$coloff" } # Keep in spectrum order typeset -r red="\e[1;31m" typeset -r yellow="\e[1;33m" typeset -r green="\e[1;32m" typeset -r blue="\e[1;36m" typeset -r coloff="\e[1;0m" # Color off. prog=$0 typeset -i uninstall=0 typeset -i help=0 typeset -i maketar=0 typeset -r defprefix=/usr proc_opts "$@" (( maketar && uninstall )) && usage '--make-tar is incompatible with --uninstall' if (( maketar )) && [[ -z "$potprefix" ]] then usage '--make-tar requires --prefix' fi (( help )) && usage if (( uninstall )) then echo -e "\nUninstall script for:" else echo -e "\nInstallation script for:" fi intro_banner sleep 2 prefix=${potprefix:=${defprefix}} [[ "${prefix:${#foo}-1:1}" == / ]] && prefix="${prefix:0:${#prefix}-1}" printf "Directory prefix has been set to $blue $prefix $coloff\n" bin=${prefix}/bin lib=${prefix}/lib/Bashburn bblib=${lib}/lib bbpo=${lib}/po if (( uninstall )) then uninstall_files else install_files fi exit 0 bashburn-3.0.1/Makefile000066400000000000000000000001251153706571400147660ustar00rootroot00000000000000SUBDIRS := bashburn_man all : ${SUBDIRS} for ii in $<; do make -C $${ii}; done bashburn-3.0.1/bashburn_man/000077500000000000000000000000001153706571400157675ustar00rootroot00000000000000bashburn-3.0.1/bashburn_man/BUILD_README000066400000000000000000000021451153706571400175700ustar00rootroot00000000000000bashburn.template is the master template file with the text and MARKS for formatting. bashburn.sed is the script that creates the MAN page from bashburn.template this file contains the MARKS information that get created (it is pretty easy to understand when reading it). So, to just edit text information, edit the text (not MARKS) in bashburn.template. To change any format (i.e. add sections, create sub-sections etc.) edit both bashburn.template and bashburn.sed accordingly. When all changes are done, issue: make bashburn.1 or just make You will now be looking at raw text of the man page in 'less'. sed will report any errors so you can go back and fix them. Additional targets include make clean, make bashburn.man and make bashburn.ps The ps file is PostScript, suitable for printing. It can be viewed with a PostScript viewer like evince or gv, etc. The .man file would be the same as if you ran the command: man ./bashburn.1 As a note, this all looks a bit over the top, but by using this method, anyone can maintain/correct the file text without having to know anything about MAN macros and tags. bashburn-3.0.1/bashburn_man/Makefile000066400000000000000000000004141153706571400174260ustar00rootroot00000000000000BB := bashburn all : ${BB}.1 ${BB}.1 : ${BB}.template ${BB}.sed sed -f ${BB}.sed ${BB}.template > $@ clean : rm -f ${BB}.1 ${BB}.man ${BB}.ps ${BB}.man : ${BB}.1 groff -pte -man -Tascii $< > $@ ${BB}.ps : ${BB}.1 groff -pte -man $< > $@ .PHONY: clean bashburn-3.0.1/bashburn_man/bashburn.sed000066400000000000000000000023521153706571400202720ustar00rootroot00000000000000#1s/^\(.*\)$/\.TH \1/ /NAME/s/^\(.*\)$/\.SH \1/ /DESCRIPTION/s/^\(.*\)$/\.SH \1/ /\/s/^\(.*\)$/\.SH \1/ /\/s/^\(.*\)$/\.SH \1/ /\/s/^\(.*\)$/\.SH \1/ /\/s/^\(.*\)$/\.SS \1/ /\/s/^\(.*\)$/\.SS \1/ /\/s/^\(.*\)$/\.SS \1/ /\/s/^\(.*\)$/\.SH \1/ /\/s/^\(.*\)$/\.SH \1/ /AUTHOR/s/^\(.*\)$/\.SH \1/ /MANPAGE/s/^\(.*\)$/\.SH \1/ /LICENSE/s/^\(.*\)$/\.SH \1/ /CONTACTS/s/^\(.*\)$/\.SH \1/ /UPDATES/s/^\(.*\)$/\.SS \1/ s/bashburn/\\fIbashburn\\fR/g s/BashBurn/\\fIBashBurn\\fR/g /11111/,/22222/{ a\ .br } /EXAMPLEMARK/,/EXAMPLEMARK/{ a\ .br } /EXAMPLEMARK/s/// /11111/s/// /22222/s/// /SEE ALSO/,/AUTHOR/{ /^[a-z]/s/^\(.*\)$/\.BR \1/ s/(\([1-9]\))/ "(\1), "/g s/(C++)/ "(C++), "/g s/(C++)$/ "(C++)"/ } /UPDATES/{ i\ a\ See http://bashburn.dose.se/ for updates. } /AUTHOR/{ i\ a\ \\fI\\fRAnders\ \\fI\\fRLinden et alia } /MANPAGE/{ i\ a\ For any man page errors please report to the developers (see CONTACTS) } /TRANSLATOR MASTER/{ i\ a\ \\fI\\fRMarkus\ \\fI\\fRKollmar } /LICENSE/{ i\ a\ BashBurn is released under the GNU GPL - http://www.gnu.org/copyleft/gpl.html } /CONTACTS/{ i\ a\ http://bashburn.dose.se/index.php?s=contacts } bashburn-3.0.1/bashburn_man/bashburn.template000066400000000000000000000271271153706571400213410ustar00rootroot00000000000000.TH BASHBURN 1 "6th October 2008" "" "BashBurn - Bash CD writer/burner" NAME BashBurn (a bash script CD Burner Writer) DESCRIPTION Once upon a time, or more exactly sometime around December year 2001 if I'm not misaken, a young little nerd named Anders Lindén was trying to burn some CDs with his recently bought CD-burner. He tried a lot of different programs, but for some reason it would just not work properly. So, the little nerd thought to himself: "I guess I just have to do something about this myself". And so he did... .br 11111 INFORMATION So, you downloaded BashBurn and now you want to burn a lot of CDs? Well, if you've used BashBurn before, you can stop reading now and get going. If not, take your time to read this manpage. UPDATES INSTALLATION 1. Unpack the file (And if you are reading this I guess you already did) 2. Cd into the directory and run the installation script (Install.sh) For options, run Install.sh --help (To do a global install that will affect all users on a system you will have to be root or have global write permissions) 3. Start the program by running 'bashburn' and configure it. 4. Enjoy! For those that have systems where the bash executable isn't located in /bin/bash, you might need to edit the scripts so they contain the correct path, or create a symlink from the executable to /bin/bash. (Like cd /bin && ln -s /path/to/bash ./bash) Newer BashBurn versions should be able to handle systems where bash is located somewhere else, if not then let me know. Gentoo Linux users can install BashBurn by running 'emerge bashburn'. Mandrake Linux users can find BashBurn in the contrib repository. Damn Small Linux has BashBurn included on the cd. The latest version can always be downloaded from http://bashburn.dose.se/. (If BashBurn is packaged for more distros, let me know and I'll add it here) Any problems mail me on anders.linden@gmail.com or post on the BashBurn mailinglist. CONFIGURATION After installing BashBurn, start it up by typing 'bashburn'. The first time BashBurn will create a directory from where it will read which files to be burnt. Default is /tmp/burn. Now choose configure. You will be presented with a menu of options. Don't understand what they all mean? Don't worry, there is an explanation for every one of them. If unsure, pick the default value, it's often fine. After you've gone through each option, choose Apply Settings. (Remember to do this or nothing will be saved.) Now choose Return to go back to the main menu. USAGE BashBurn is designed to be as easy to understand as possible. Let's say you want to burn an audio CD. Where do you go? To Audio of course, and under Audio there are more options to choose from. Just remember that before attempting a burn you must copy or link the data or audio files to be burnt to the temporary burn directory, which again by default is /tmp/burn. For example, let's say you want to burn an ISO file. 1: Start BashBurn, pick option 10, define data. 2: Pick option 1, and follow instructions. Link the data with 'ln -s /path/to/myfile.iso .' (Without the ''. The dot is important) (You can also copy the data if you prefer that, cp -Rf ) 3: Return to the main menu, choose ISO and pick the Burn ISO option. 4: Done! Any problems with BashBurn, suggestions or complaints mail me at anders.linden@gmail.com or post on the BashBurn mailinglist. Have fun using BashBurn TRANSLATION BashBurn translation rules for translators ########################################## There are 2 steps in translation process we must distinguish: - ADD (new) translation - UPDATE (existing) translation Both steps are described below and each translator should know this. 1. ADD translation process -------------------------- 1.1 --- CONTACT a bashburn developer and tell what you want translate. He will do the necessary things to provide you a language directory with different skeleton files. (Hint: You can also do this by yourself - but you need a little knowledge of the bashburn translation structure and you should only do this if you KNOW what you do! Otherwise you may "damage" all other translations!) 1.2 --- Edit with a text editor the file "TRANSLATOR" in the language directory of the language you want to translate and encode it in unicode UTF8. It contains 4 lines which you should correctly edit: First Name: Name Surname : Another_name E-Mail : mymail@xy.loc Exit-Date : ? The first lines should be clear. The "EXIT-DATE" is the date which you know that you can't do the translation anymore. There are 2 types of this: 12. August 2009 ? -> In the first case you will leave the translation project at 12. August 2009 (please use the shown date-format!). -> If you don't know a date - just enter '?'. This means you don't plan to exit bashburn translation now - but you may do it and contact us if you wish so. This is not to nerve you. This information is help us to ensure good translations: We can contact you in case of questions and we can welcome another translator for your language in case you want not do it anymore. In any case: - We contact you in case you should update a translation. - If we don't hear anything from you over a longer period of time AND we have a new interested translator - this person can starting updating translation. You will be deleted from TRANSLATOR file (but maybe mentioned in "CREDITS" file). Now goto description of UPDATE translation (step 2). 2. UPDATE translation process ----------------------------- 2.1 --- You need a (text) editor which supports Unicode UTF8 encoding of the translation text files. Bashburn translation files must be ENCODED in UTF8 (see "http://www.utf-8.com/")! Bashburn uses the GNU "gettext" translation system for translation (see "http://www.gnu.org/software/gettext/"). If you don't know this, you should read more about it. Now you can begin to translate the ".po" files in your language directory. There also graphical programms like "KBabel" which can support you by this step. 2.2 --- After finishing translation and you think all it's done, edit the file "STATE" in your language directory. Delete the message in it (e.g.): "Your language directory need updating translation!" and write in: "UPDATED". After this, we know that we can use "savely" your translation. 2.3 --- Contact a bashburn developer to complete your translation technically (this involves creating of ".mo" files and some file coying). (You can do this also manually with "make MO " and "make install ". TRANSLATOR MASTER 22222 FAQ Q1: Why? .br A1: I felt like it. Well, I got sick of a program I used always failing to burn audio cds, and since I don't know how to program C or something I decided to write a simple little shell script to do the job. Q2: What can BashBurn do? .br A2: BashBurn can burn data, music and multisession CDs/DVDs. It can burn and create ISO files. It can burn bin/cue files, create MP3s, OGGs and FLAC files. Maybe even more :-) In short, it can do most things you need, and if it can't you're probably doing it wrong. ;-) Q3: You/BashBurn/Ya mama/Vacuum machines suck! .br A3: That's not a question. Q4: Why the name change? .br A4: Apparently there already was a program named Magma, so a namechange was a must. I agree BashBurn isnt really a kickass name, but hey! At least it can still get the work done... Q5: Can I steal the code and base my own programs on it? .br A5: Yes. Can't imagine why anyone would want to, but sure. Just remember to release your program under the GPL, and leaving the credits would be nice. Q6: Can I help? .br A6: Sure! Code away and send me the patch. If I find it worthy (Which I do most of the times) I'll include it in the next release and add you to the credits file. Q7: How do I install BashBurn? .br A7: Read the INSTALL file dummy! Q8: BashBurn often failes to write CDs. .br A8: Well I bet it isn't really BashBurns fault. Could be that your system isn't fast enough. Try to reduce the speed of your burner, or buy higher quality CDs. If your burner supports it, try using burnfree/burnsafe. Of course it COULD be BashBurn failing, in which case it's a bug. Send me a mail with a description of the problem and I'll try to fix it as soon as possible. Q9: I try to create an ISO-file from files in my harddrive, but all files from different directories end up in the root, not in their respective directories! .br A9: Yes, this is a known bug in Magma versions before 1.0. If you are using a version that old you should be taken out back and put down. You could also try to download a newer version. Q10: Who are you? .br A10: A little geek from Sweden, and thats all you need to know. :-) Q11: How do I use driver options? .br A11: You don't really have to, but if you want to try it out, here is how. Under configure, choose driver options and BashBurn will show what your burner supports. My burner supports burnfree, so I enter burnfree and press enter. The next time I burn a cd, BashBurn will enable burnfree to prevent buffer underruns. You can enter several options by separating them with a comma. Q12: BashBurn cannot find my cd-burner. What do I do? .br A12: Make sure that you have support for your burner in the kernel. For IDE burners you can either use SCSI emulation or ATAPI mode. (Check Q18) If you don't know how to configure your kernel, use google (There is lots of good information on the web), tldp.org or #linuxhelp on irc.freenode.org Q13: Where do I report bugs? Where do I find any help? .br A13: Join the mailinglist and report it there, or send me a mail. Q14: When will Magma 2 be released? .br A14: It wont. Magma doesnt exist anymore, remember? We'll see what happens in the future, for now BashBurn is what you have to settle with. Q15: Does BashBurn support for instance overburn? .br A15: Yes, though it's not really tested that much. Try it out, and if it works, great, let me know. If it doesn't work, crap, let me know. Q16: I can't mount my ISO and view it. What's wrong? .br A16: Make sure you have support for loopback devices in your kernel or compiled as a module and loaded. If you're not root, make sure you are part of the sudoers group, since BashBurn uses sudo when mounting the image in that case. Q17: I ran Install.sh as root, but I still cant start BashBurn as a regular user .br A17: Download and install BashBurn 1.0 or later. In those versions the installation script is rewritten and works a lot better. Q18: Does BashBurn support IDE burners natively, or do I need to use SCSI emulation? .br A18: As from BashBurn 1.3, IDE burners should work just fine. I use this myself and have not experienced any problems so far. To be able to use this you will need a 2.6 Linux kernel, cdrtools version 2.0 or higher and BashBurn 1.3 or higher. Q19: Running BashBurn in sudo gives me an error. .br A19: The latest version of BashBurn should work fine in sudo. If it doesn't tell me about it and I'll try to find a workaround. Q20: Where is this mailinglist I've been hearing so mych about? .br A20: Go to http://bashburn.dose.se/, click on the link that says "mailinglist" and follow the instructions there on how to sign up. Q21: Can BashBurn burn DVDs? .br A21: See A2 Q22: How do I install BashBurn? .br A22: Read the INSTALL file. Q23: What are the requirements for BashBurn? .br A23: Check the webpage at http://bashburn.dose.se/ for information. Once BashBurn is installed, you can also run option 8 in the main menu, Check program paths to see if you need to install any programs for full functionality. (Note: In Ubuntu normalize is called normalize-audio) faqs last updated: October 2008 SEE ALSO files located under docs/ directory in the bashburn package. CONTACTS LICENSE MANPAGE AUTHORs bashburn-3.0.1/burning/000077500000000000000000000000001153706571400147745ustar00rootroot00000000000000bashburn-3.0.1/burning/bincue.sh000077500000000000000000000007021153706571400165770ustar00rootroot00000000000000bincue() { typeset yesno typeset -i doit=0 echo "$bb_bincue_copy_1 ${BBBURNDIR} $bb_bincue_copy_1b" read -e -n 1 -p "$bb_bincue_copy_2" yesno if [[ "${yesno}" == n ]] then message "$bb_bincue_copy_3 ${BBBURNDIR} $bb_bincue_copy_3b" else # Check if CD is already written to if check_cd_status then ask_for_blanking && doit=1 else doit=1 fi (( doit )) && burn_bincue # Burn bin/cue if possible fi } bashburn-3.0.1/burning/burning.sh000077500000000000000000000215531153706571400170050ustar00rootroot00000000000000# A function to check if overburn is enabled check_overburn() { if [[ "${BBOVERBURN}" = yes ]] then # Is overburn enabled? BBOBURN=-overburn # yes it was else echo $bb_no_ob # No it wasn't BBOBURN= fi } # A function to see if files in temp dir should be deleted after burning is done check_tempdel() { typeset str="$bb_burning_tmp_1 ${BBBURNDIR}" if [[ "${BBDELTEMPBURN}" = yes ]] then rm -rf "${BBBURNDIR}"/* str="$str $bb_burning_tmp_1b" else str="$str $bb_burning_tmp_2" fi echo "$str" } set_session_type() { typeset session_answer # Return 0 for yes # Return 1 for no # Return 2 for else cat <' ]] && read -e -p "$bb_burning_data_label" \ BBLABEL if ${BB_ISOCMD} -r -f -v -J -joliet-long \ -A "$BBDESCRIPTION" -p "$BBAUTHOR" -V "$BBLABEL" \ -o ${BBBURNDIR}/BashBurn.iso ${BBBURNDIR} then iso_burning # call function - declared above BBLABEL=${BBLABELBACKUP} else echo $bb_burning_data_2 echo $bb_burning_data_3 BBLABEL=${BBLABELBACKUP} fi else echo "$bb_burning_error $BBBURNDIR" fi wait_for_enter } ################################### DVD Data ############################# # Preliminary DVD support. Not very well tested, use at your own risk. # (However I do believe it should work as planned.) # Better support will come in time. dvd_data_burning() { typeset -i status typeset bb_dvdsession if ! is_dir_empty ${BBBURNDIR} then BBLABELBACKUP=${BBLABEL} [[ "$BBLABEL" == '' ]] && read -e -p "$bb_burning_data_label" \ BBLABEL set_session_type status=$? case $status in 0) bb_dvdsession=-Z ;; 1) bb_dvdsession=-M ;; *) return ;; esac # FIXME: This is commented out because it doesn't do anything. # check_cd_status # Check if CD is already written to if ${BB_DVDBURNCMD} $bb_dvdsession ${BBCDWRITER} ${BB_DVDBURNCMDOPTS} \ -A "$BBDESCRIPTION" -p "$BBAUTHOR" \ -V "$BBLABEL" ${BBBURNDIR} then echo $bb_burning_finish_1 BBLABEL=${BBLABELBACKUP} else echo $bb_burning_finish_2 BBLABEL=${BBLABELBACKUP} fi else echo "$bb_burning_error $BBBURNDIR" fi wait_for_enter } ################################## DVD blank ############################## set_blanking_dvd() { typeset blanking_answer cat < ${fifo} & pfile=${file##*/} echo "${counter-MP3} ${pfile:0:35} flushed into ${fifo} (pipe)." elif [[ ${file} =~ .WAV ]] then counter=counter+1 fifo="${BBFIFODIR}/FILE$$-${counter}.wav" fifolst="${fifolst} ${fifo}" ln -s "${file}" ${fifo} commandlst="${commandlst} -audio ${fifo}" pfile=${file##*/} echo "${counter-WAV} ${pfile:0:35}." fi done < <(find ${BBBURNDIR} -iname \*.mp3 -o -iname \*.wav) (( counter == 0 )) && message "$bb_burning_fifo_1 ${BBBURNDIR}" echo "$bb_burning_fifo_2 ${counter} $bb_burning_fifo_2b" # Check if CD is already written to if check_cd_status then ask_for_blanking && doit=1 else doit=1 fi if (( doit )) then ${BB_CDBURNCMD} dev=${BBCDWRITER} speed=${BBSPEED} \ ${BBDTAO} ${BBOPT_DRIVER:+"driver=$BBOPT_DRIVER"} \ fs=16m -swab -audio ${BBPADDING} -eject -v ${BBOBURN} \ ${commandlst} echo $bb_burning_fifo_3 [[ -z "$fifolst" ]] || rm ${fifolst} check_tempdel fi fi shopt -u nocaseglob } # = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = burning () { case "$1" in "--audio") audio_burning ;; "--data") data_burning ;; "--dvddata") dvd_data_burning ;; "--dvdblank") dvd_blanking ;; "--dvdimage") dvd_image_burn ;; "--iso") iso_burning ;; "--pipeline") pipeline_burning ;; esac } bashburn-3.0.1/burning/multi.sh000077500000000000000000000000651153706571400164660ustar00rootroot00000000000000multi() { bbmenu bb_multi_menu_title multimenu } bashburn-3.0.1/config/000077500000000000000000000000001153706571400145755ustar00rootroot00000000000000bashburn-3.0.1/config/apply_options.sh000077500000000000000000000030651153706571400200400ustar00rootroot00000000000000apply_options() { # Write all the options out to replace the bashburnrc. typeset bbtempfile=$(mktemp bashburn_apply_opts.XXXXXX) typeset trimval typeset ii #Apply changes # Make sure BashBurn knows it is configured. for ii in "${BB_KEYWORDS[@]}" do read trimval <<< ${!ii} echo "${ii}: ${trimval}" done > ${bbtempfile} cp ${bbtempfile} $BBCONFFILE rm ${bbtempfile} } conf_set_aval() { typeset -a desc typeset val="$2" typeset line typeset oldIFS="$IFS" typeset IFS="$oldIFS" typeset -r tmpfile=$(mktemp 'bbcfg.XXXXXX') typeset varname typeset -i found # Set if the option was found in the changed descriptors. typeset -i didsomething=0 # Set if there were any mods at all. typeset -i ii typeset nvar typeset nval typeset -i size desc=( "$@" ) size=$# #for (( ii=0; ii < size; ii++ )) #do # echo ${desc[ii]} #done while read line do IFS=: set -- $line IFS="$oldIFS" varname=$1 found=0 for (( ii=0; ii < size; ii++ )) do IFS='|' set -- ${desc[ii]} IFS="$oldIFS" nvar=$1 nval="$2" if [[ "$nvar" == "$varname" ]] then eval $nvar=\"$nval\" found=1 didsomething=1 case $nvar in # stub to catch special action. BBLANG) source_language_modules define_global_menus ;; *) ;; esac break fi done if (( found )) then echo "$nvar: ${!nvar}" else echo "$line" fi done < $BBCONFFILE > $tmpfile (( didsomething )) && cp $tmpfile $BBCONFFILE rm $tmpfile } bashburn-3.0.1/convert/000077500000000000000000000000001153706571400150105ustar00rootroot00000000000000bashburn-3.0.1/convert/convert_audio.sh000077500000000000000000000012411153706571400202060ustar00rootroot00000000000000convert_audio() { typeset filetype="$1" shopt -s nocaseglob if [[ "$filetype" == '*.flac' ]] then ${BB_FLACCMD} -d *.flac message "$bb_conv_flac_1" elif [[ "$filetype" == '*.mp3' ]] then typeset bbmpthree while read bbmpthree do echo if ${BB_MP3DEC} -r 44100 -w "${bbmpthree%%.mp3}.wav" "${bbmpthree}" then echo "${bbmpthree}: $bb_conv_mp3_1 (${bbmpthree%%.mp3}.wav) $bb_conv_mp3_2" else echo "${bbmpthree}: $bb_conv_mp3_3" fi echo done < <(find ${BBBURNDIR} -iname '*.mp3') sleep 2s elif [[ "$filetype" == '*.ogg' ]] then ${BB_OGGDEC} *.ogg message "$bb_conv_ogg" fi shopt -u nocaseglob } bashburn-3.0.1/convert/convert_flacs.sh000077500000000000000000000002321153706571400201740ustar00rootroot00000000000000convert_flacs() { cd ${BBBURNDIR} shopt -s nocaseglob ${BB_FLACCMD} -d *.flac shopt -u nocaseglob echo $bb_conv_flac_1 sleep 2s } bashburn-3.0.1/convert/convert_mp3s.sh000077500000000000000000000005641153706571400177760ustar00rootroot00000000000000convert_mp3s() { typeset bbmpthree cd ${BBBURNDIR} while read bbmpthree do echo if ${BB_MP3DEC} -r 44100 -w "${BBMPTHREE%%.mp3}.wav" "${BBMPTHREE}" then echo "${bbmpthree}: $bb_conv_mp3_1 (${bbmpthree%%.mp3}.wav) $bb_conv_mp3_2" else echo "${bbmpthree}: $bb_conv_mp3_3" fi echo done < <(find ${BBBURNDIR} -iname '*.mp3') sleep 2s } bashburn-3.0.1/convert/convert_oggs.sh000077500000000000000000000002111153706571400200400ustar00rootroot00000000000000convert_oggs() { cd ${BBBURNDIR} shopt -s nocaseglob ${BB_OGGDEC} *.ogg shopt -u nocaseglob message "$bb_conv_ogg" } bashburn-3.0.1/deb/000077500000000000000000000000001153706571400140625ustar00rootroot00000000000000bashburn-3.0.1/deb/HOWTO.txt000066400000000000000000000013531153706571400155250ustar00rootroot00000000000000To create a Ubuntu package of BashBurn, do the following: * Copy (Not link) all files that should go into /usr/lib/BashBurn/lib into the directory debian/usr/lib/BashBurn/lib * In the debian/usr/bin directory, create a symlink to BashBurn.sh in the lib directory called bashburn. That is, in debian/usr/bin run: 'ln -s ../lib/BashBurn/lib/BashBurn.sh bashburn' * Run 'dpkg-deb --build debian' to create the deb package. * Rename the created debian.deb file to something more logical like BashBurn-3.0-1_all.deb * Install with 'dpkg -i ./BashBurn-3.0-1_all.deb' * Run 'bashburn' to start and try it out. The postinst file in debian/DEBIAN should probably be updated to install the man page, feel free to do so if you feel up to it. bashburn-3.0.1/deb/debian/000077500000000000000000000000001153706571400153045ustar00rootroot00000000000000bashburn-3.0.1/deb/debian/DEBIAN/000077500000000000000000000000001153706571400162265ustar00rootroot00000000000000bashburn-3.0.1/deb/debian/DEBIAN/control000066400000000000000000000010571153706571400176340ustar00rootroot00000000000000Package: BashBurn Version: 3.0-1 Section: otherosfs Priority: optional Architecture: all Depends: bash (>= 3.0-4ubuntu1), cdrdao (>= 1.2.2-16), wodim (>= 1.1.8-1ubuntu1), dvd+rw-tools (>= 7.1-2ubuntu1), cdparanoia (>= 3.10.0+debian-1), lame (>= 3.98-0.0), vorbis-tools (>= 1.2.0-5), flac (>= 1.2.1-1.2), eject (>= 2.1.5-9ubuntu2), normalize-audio (>= 0.7.7-2), mpg123 (>= 1.4.3-3), sudo (>= 1.6.9p17-1ubuntu2) Maintainer: Anders LindĂ©n Description: A collection of Bash scripts for burning CDs/DVDs in a Linux console or terminal. bashburn-3.0.1/deb/debian/DEBIAN/postinst000077500000000000000000000003721153706571400200410ustar00rootroot00000000000000#!/bin/sh cd /usr/lib/BashBurn/lib sed -e "s%@@BBROOTDIR@@%$/usr/lib/BashBurn/lib%" BashBurn.sh > newbb-$$.sh mv newbb-$$.sh BashBurn.sh sed -e "s/normalize/normalize-audio/" BashBurn.sh > newbb-$$.sh mv newbb-$$.sh BashBurn.sh chmod +x BashBurn.sh bashburn-3.0.1/docs/000077500000000000000000000000001153706571400142605ustar00rootroot00000000000000bashburn-3.0.1/docs/COPYING000066400000000000000000000431271153706571400153220ustar00rootroot00000000000000 GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) 19yy This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) 19yy name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. bashburn-3.0.1/docs/CREDITS000066400000000000000000000042511153706571400153020ustar00rootroot00000000000000Credits for BashBurn (Previously Magma): ================== The supreme overlord: Anders Linden Evil henchmen: Steven W. Orr Nick Warne Markus Kollmar Minions: paddor: Small enhancement in init_bashburn() Amedeo Grazie: Italian translation casper: Small improvements in audiofunc.sh Santiago: The czech translation Eivind ØdegĂ„rd: The norwegian translation Karol Krenski: For the SVN server Fabian Stietzel: Added function to ask for CD label Guillermo Bonvehi: New spanish translation and bugfix Miguel Ross: The french translation Jakub Krajniak: For the polish translation and helping with the SVN server Guillermo Juarez: For the spanish translation Tobias Rittweiler: For being second in command for a long time. What I didn't know, he did. Nicol N. Schraudolph: For fixing the bash detection issue Wilmer Jaramillo: For a bunch of small fixes and enhancements ziL: For making a perty logo and testing BashBurn Jim Shofstall: For misc small fixes and lots of ideas Pat: For fixing the bin/cue script Page: For the little fix to xmmsread.sh Marcel Karras: For providing the new webhost and subdomain at freebits.de. (BashBurn is not on freebits anymore) Dennis Wilson: For designing the Magma webpage at freebits.de "Angles" Puglisi: For creating RPMs of Magma and rewriting the multisession script. (Angles does not create rpms anymore) Cristoffer Bruun: For taking care of driver options issues. Jean-François Deverge: For adding pipe enhanced mp3+wav burning. Joel Wiesmann: For helping me with lots of stuff and giving me the chance to test menubuilder. (The program the menus for Magma were originally made in.) Menubuilder is available from www.secuserv.ch.vu Olav Vitters: For fixing the annoying "Spaces in mp3 files" bug. Hampus Ram: For solving the "Burn anyways" bug. Elvstone: For helping me with the configure script (Even though Tobias thrashed it and rewrote it), and a nice logo. Matte aka PĂ€lsis: For making me aware of the mkisofs bug. MadMaN: For actually using and bugtesting Magma/BashBurn. #linuxhelp on irc.openprojects.net for helping me with many problems. Thanks all for your help. It's really appreciated. Oh, and if I forgot anyone, scream. bashburn-3.0.1/docs/ChangeLog000066400000000000000000000633221153706571400160400ustar00rootroot00000000000000BashBurn ChangeLog: ================= BashBurn 3.0.1 (Pepper) - Added options for DVD burning. - Issue with CD ripping fixed. - Fixed issue with disc label being set as only asking once per session. - Added burndir size info when viewing contents. BashBurn 3.0 (Tara) - Major rewrites and cleanups. BashBurn should be faster, smaller and most of all cleaner. - BashBurn now only uses a local configuration file. - Advanced configuration menu added. - Removed certain configuration options most people probably find unnecessary. - Default installation directory changed. - Due to the rewrites, ~/.bashburnrc must be removed before starting BashBurn after installation. A new config file will be automatically created in the users home directory. - Rewritten script for reading M3U playlists. Now supports several formats, not just MP3s. - Added 'BashBurn_on_Fire' splash - kudos to http://ascii.mastervb.net/ for the template creation - .bashburnrc now has a version line, checked at start up. Version 2.x .bashburnrc will not work with BashBurn 3.x re-write. - BashBurn now has a MAN page ( bashburn(1) ) BashBurn 2.1.2 (Scotty) - Added DVD blanking (Santiago) - Moved CDRW blanking to data menu - Added missing commonfunctions.lang for czech translation (Santiago) - Small enhancement in init_bashburn() (paddor) - Languages included: English, Swedish, German, Spanish BashBurn 2.1.1 (Picard) - Bugfix in local config file usage (Artur) - Bugfix in audio functions BashBurn 2.1 (Enterprise) - BashBurn now uses a local config file (Artur Kruszewski) - Updated installation script for Frugalware (VMiklos) - Small update in writer detection - Added option to enable/disable gaps between tracks - Replaced cdda2wav with cdparanoia. CD copying rewritten in places due to this. - Added simple cancel feature in configuration. Function check_length() checks if argument given is of length 0. If so, configure restores the old saved value. This way, one can simply press enter without entering anything and the configure script will interpret that as a cancellation. - Added italian translation (Amedeo Grazia) BashBurn 2.0 (Next Generation) - Functionality split from interface to ensure that BashBurn and fork MyBashBurn can use same core code. - Added display to data define menu that shows how data is linked/copied to burn directory. Only appears if there is any data there. - Attempt at making some code more readable - Removed some sleeps that were not supposed to be there - Small edit in device mounting code - Bugfix in CD copying - Small improvements in audiofunc (casper) BashBurn 1.8.5 (Wedding Bells) - German translation updated - Swedish translation updated - Added file for mounting image files in a loopback device to be edited. - Lots of bugfixes. - Internal updates - Installer updated for Slackware 11 (Nick) - Anders is now married BashBurn 1.8.0 (Pookie) - Fixed unmounting bug (Thanks Nick for spotting) - Minor graphical touchups (Nick) - ISO detection should work properly - Readcd command messing up application detection fixed - Audio file detection updated - Install script updated for Slackware users (Nick) - Created common functions file to reduce code duplication - Fix in datadefine.sh for data detection - Changed from dev=ATAPI to dev=ATA in IDE burner detection - Bugfix in CDRW blanking, blanking moved to commonfunctions.sh - Small graphical changes - Small bugfix in install script - Added feature to detect if media is already written to. If it is, a chance to blank the media is given. Not yet added for rewritable DVDs. (Thanks to Sören for the suggestion) - Swedish translation updated - Polish translation updated - German translation updated BashBurn 1.7.1 (Tigger) - Multisession burning should now work (Knock on wood) - Changed setterm -clear to plain old clear - Made sure menu text is shown if background is white (Granted, it looks pretty crappy but at least it works) - Support for burning .img-files added (Worked before as well, but you'd have to change the file extension from .img to .iso) - Edited readcd command BashBurn 1.7 (Gloria) - Let menus call functions - Let files that need to read in variable list from external file instead of having the same variable read function in several files - Moved apply settings and reset settings to own files - DVD support Supports burning data DVDs (New sessions and merging sessions) and burning DVD images - Changed from mkisofs to readcd when creating ISOs from CDs - A truckload of cleanups and rewrites - As with variables, put all commands into one file - Added czech language (Santiago) - Added swedish translation - Updated polish translation - Updated german translation BashBurn 1.6.1 (TDDI68) - Finally fixed "erase config file"-bug. (Guillermo) - Fixed configuration bug (Nick Warne) - Added norwegian translation (Eivind) - Added -r 44100 for mp3 to wav conversion (Filip) - Fixed mistake in xmmsread.sh - BashBurn now has a SVN server at https://svn.inf.sgsp.edu.pl/svn/bashburn - Small update on install script BashBurn 1.6 (Yo Mama) - Added function to ask for CD label (Fabian Stietzel) - Fixed a bunch of bugs regarding file detection - Added french translation (Miguel Ross) (Will be added as soon as it is updated) - Updated polish translation - Added german translation (Markus Kollmar) - New spanish translation (Guillermo Bonvehi) - Moved delete/view contents of $BURNDIR options from main menu to datadefine menu. - Fixed bug in creating ISO from CD (Guillermo Bonvehi) - Fixed bug in xmms playlist script (Rćbbinn) - Added function to copy/link data to burndir from main menu. (No need to link/copy data before you start BashBurn) - Fixed bug in cd mounting/unmounting (Markus Kollmar) - Fixed translation bug in iso_menu.sh (Markus Kollmar) - Cosmetic change in check_path.sh - Fixed minor mistake in configure.sh (Markus Kollmar) #------------------# # For translators: # #------------------# Changed files: BashBurn.lang, datadefine.lang BashBurn 1.5.2.1 (Ve Have Vayz Ov Making Yu Talk) - Added Polish translation (Jakub Krajniak) - Fixed bug in install script. (Thanks a lot of people for reporting) BashBurn 1.5.2 (Quantum Physics) - Fixed a small mistake in audio_menu.sh (David Hall) BashBurn 1.5.1 (I Am The Walrus) - Fixed two little bugs, one with iso detection and one with multisession. (Some code really is a mess. When I have time one day a big cleanup is happening) BashBurn 1.5 (Gulledavid) - CD copying in large parts rewritten with help from Jim. Should work just fine (Does for me) but report any bugs you might find. - Changed -P to -publisher for mkisofs. (Jim) - data_menu.lang and configure.lang updated - Removed some pretty useless options in the config script. - Spanish translation removed since it's not updated. I will make it and all other translations available on the BashBurn homepage when I get them. BashBurn 1.5 Beta 2 (Almost there) - Moved some english text in BashBurn.sh to BashBurn.lang so it can be translated. - DAO/TAO support. (Whether it works properly or not is another question) - Changed single quotation marks to double quotation marks in translation files. Single ones caused some errors which double ones will probably prevent. - Misc fixes BashBurn 1.5 Beta 1 (Willy Nilly) - Fix in burning.sh (Thanks to Justin for spotting it and Michele for the fix). - Spanish translation added. - Added check in BashBurn.sh to find out if BashBurn has ever been configured. - BashBurn now supports different languages! - Bug in install script fixed, plus some graphic touchups. - Bug in data cd copying fixed. - Misc other small fixes. BashBurn 1.4 Final (Top of the foodchain) - ISO mounting/editing removed. I didn't get it to work right and there is no point having something non-functioning there. If anyone desperately needs it, you write it! - Minor change with mkisofs. - Bugfix in the normalize function. - Small bugfix in configure.sh (Wilmer). - Mp3 encoding now uses the bitrate set in configuration (Wilmer). - Some default values in bashburnrc changed. - Fixed permissions issue with the config file. - Rewrote install script. Now you don't have to keep the directory you unpacked BashBurn in. - Removed files that were not supposed to be there. - CD ripping now supports spaces in filenames (Wilmer). - Documentation updates. BashBurn 1.4 rc1 - After version 1.4 is released I'm going slow down BashBurn development for a while. I have too much schoolwork at the moment. Version 1.4 will not have any new features, only bugfixes if I (or you) find any. New features will have to wait until version 1.5 - Added option in configure.sh. Just to make things difficult, certain apps needed the cdrom device to be entered as /dev/blah and others needed it to be entered as /mnt/blah. So, to avoid forcing the user to go back and forth to the configure menu and change this, I added a new option. Now we have cdrom device file (/dev/blah) and cdrom mount point (/mnt/blah). - Made some improvements to the mount.sh script. - Small graphics touchup in the application checking script BashBurn 1.3 - 1.4a2 - Removed the bash executable detection. According to Nicol Schraudolph this does not work at all. All of you that has your bash executable located in a different place than /bin/bash might need to edit Install.sh and BashBurn.sh and enter the correct path manually. Once these changes are made however, everything should work fine. - Small bugfix to the cd ripping. - Update to delete files in BURNDIR function. - FILES updated. - Misc graphic touchups (Wilmer Jaramillo, Jim Shofstall). - Added functions in audio_menu (Wilmer Jaramillo). - Added nice "interactive mode" to name the tracks when ripping oggs and mp3s. Still cannot handle spaces in names, but that will come later (Wilmer Jaramillo). - alpha1 missed flac in check_path.sh. This is added now. - Added option to set bitrate of audio files in configure (Wilmer Jaramillo). - Added a application search function in main menu. (Thanks Wilmer Jaramillo). - Fixed a typo in configure. - Once again, better audiofile handling. And this time it REALLY takes care of annoying error messages. - Preliminary flac file support. If more advanced support is required, post a feature request or write a patch yourself and I'll apply it. BashBurn 1.3 - Added confirmation when deleting files in BURNDIR - Lots of small improvements on audio file handling - "Graphic" touchups - FAQ updated - convert_oggs and convert_mp3s rewritten (Somewhat) and audio_menu changed. This takes care of some rather annoying error messages that occured when trying to burn a music cd. (Happy now Matte?! Are you?) - Lots of small fixes thanks to Jim Shofstall - Changes in version display in several files - Changed BashBurn homepage in BashBurn.sh - Fixed misc bugs (Including the installation bug from 1.2) - Replaced lots of references to Magma with BashBurn is various files. - Writer device detection now supports IDE devices (New in Linux 2.6) - Changed so that every script detects where the bash executable is located. This should make BashBurn work on for instance *BSD with bash installed. (I know that OpenBSD for one does not use the bash shell by default. However since BashBurn is a bash script, it would mean a more or less complete rewrite to make it work in other shells. If someone feels up to it, go ahead and do it and I will make that version available on the BashBurn homepage. In the meantime install bash) - Some minor edits here and there BashBurn 1.2 - BashBurn now also comes in Perl flavor. Thanks to John Minson for writing it. (Well its not here yet, but hopefully soon) - Replaced bincue.sh with rewritten one. (Thanks Pat) - Minor fix in BashBurh.sh - Added option to mount/unmount cdrom device in main menu - Added file misc/mount.sh that takes care of the (un)mounting - Fixed typo in iso_menu.sh that caused it to fail (Thanks Peter) - Added some info in configure.sh. Apparently to use IDE burners without SCSI emulation you can just enter your burner as ATAPI:0,1,0 or similar to get BashBurn to use it. Thanks to Peter again for the info (Requires a version 2.6 Linux kernel and cdrtools 2.0+) - Fixed some typos in multi.sh that caused it to fail - Renamed .bashburnrc to bashburnrc in "source" directory. Dunno Why I had it hidden really... BashBurn 1.1 - Changed some dd commands into mkisofs (This means you most likely have to configure BashBurn again and set your reader device to something like /mnt/dvd or /mnt/cdrom instead of the previous /dev/cdrom*) - Removed some sleep commands and replaced them with wait_for_enter - Big overhaul of data_menu.sh. Now it should actually work. - Removed missed Magma.iso in multi.sh and replaced it with BashBurn.iso - FAQ updated - PLAN file removed BashBurn 1.0 - Renamed project to BashBurn since there already was a program named Magma. - Increased quality of encoded ogg-files - Rewrote large parts of installation script. You must now run this as root first to install global config file. (/etc/bashburnrc) - BashBurn.sh updated to reflect changes in installation script NOTE: The installation script set permissions to rwrwrw on the config file. Magma 1.4r3 (Dawn) - Added a few more missed wait for enter functions in Magma.sh - Documentation updates - Removed some lines of code that did nothing Magma 1.4r2 (Dawn) - Some small bugfixes concerning finding ISO-files. - Missed the -J option in some files. Now fixed. - Added missed wait for enter funtions in some files. Magma 1.4.0 (Dawn) - Critical bugfix in Magma.sh (Thanks Jim) - Added -J to mkisofs command to produce a joliet directory (For windows people) - Minor change in listing files in $BURNDIR - A bunch of code cleanups - Updated installation script - bin/cue script enhanced Magma 1.3.1 (Dez) - Slight edit in configure.sh - Added preliminary support for burning bin/cue files. (Requires cdrdao) Not tested much, so if things don't work right send me a mail, or if you feel like it send me a patch. Magma 1.3.0 (Loco) - Added file FILES and moved all id tags from other files to that one. - Switched places between View BURNDIR and Clear BURNDIR. (Makes more sense this way) - Fixed some issues with ISO creation. - Moved the shellscripts into directories: configure.sh into config, xmmsread.sh and mount_loop into misc, burning.sh and multi.sh into burning, convert_oggs.sh and convert_mp3s.sh into convert and finally menu files into menus. - Fixed issue in multi.sh - Took care of another bug in direct audio burning that was forgotten in 1.2.4 - Added an option to configure. - Made some improvements (IMHO) to configure.sh - Fixed some bugs in mount_loop.sh that caused Magma to be unable to create a new ISO if the original ISO was changed. - Some updates here and there. Magma 1.2.4 (Still Going Strong) - Made driveroptions a little easier to understand. - Updated audio_menu.sh. Newer version of cdrtools/cdrecord might be needed now. - Fixed a typo that caused direct audio burning to fail. - And yeah, you might have noticed that even though I said that Magma 1.2.0 would be the the last release, I keep on releasing newer versions of Magma 1.x. This is because: --> 1# I have no idea when M2 will be released. --> 2# I have recieved a lot of mails lately from people telling me how much they like Magma. Thanks a lot, I didn't really think that many used this little app, but it seems like it's quite popular. With this in mind it would be kinda mean to just stop developing something a lot of people use, so I guess I'll keep on releasing new versions a little now and then. Magma 1.2.3 (New World Order) - Bugfix for the Install.sh bugfix. (Doh!) - The Magma config file is now called .magmarc - Code cleanups Magma 1.2.2.2 (Blast off) - Another small fix. This release takes care of a bug in Install.sh If you have no problems with 1.2.2.1, there is no need to upgrade. Magma 1.2.2.1 (Bigger Bang) - A small fix in xmmsread.sh (Thanks to Page for the fix.) Magma 1.2.2 (Big Bang) - Fixed some issues with file removal after burning. - Higher quality when encoding .ogg files. (1.0 released! Hooray!) - Ogg-file decompression now uses oggdec instead of the clumpsy ogg123 version. - Added overburn functionality. Tell me if it works (Or not...) - MagmaChangelog renamed to ChangeLog - Some cleanups. Since my trusty CDRW disc crapped out on me, I can't check if something is broken. Send me a bugreport if something doesn't work. Magma 1.2.1 (Quasar) - Minor code enhancements - Added option in configure - Ok, I was supposed to add these features into 1.2.0 but somehow I forgot them. Anyways, THIS should be the final release in the 1.x series. Magma 1.2.0 (Galactica) - Added function to create Mp3s and oggs from a CD, without having to first rip the cd and then compress the files. - Some documentation updates. - Code cleanup again... - This is probably the last release in the 1.x series. Please report any bugs to connyosis@gmx.net so I or Tobias can fix them before the 2.0 release. Magma 1.1.5 (Starburst) - Install script rewritten. - HOWTO added to website - INSTALL updated - Added function to create .ogg-files from wavs. (Yes again, not what Magma is supposed to do, but what the hell...) - Added function to create audio cds from .ogg-file. (Changed the audio menu script a little and added a file.) Magma 1.1.4 (Supernova) - Rewrote some parts of the xmms playlist script. It's a little smarter now. - New multi.sh replaced the old one. This one (Written by Angles) is better. - Removed the 10 second grace period before burning. Pretty useless since cdrecord itself has this. - Some things easier to understand. - A small and VERY simple installation script included. - HOWTO is rewritten. - Magmas homepage is now http://freebits.de/magma Magma 1.1.3 (Cap in Ya Dome) - Added function to create Mp3s from Wavs. (Requires lame to be installed.) (Yes I know, this isn't what Magma is supposed to be doing, but MadMaN convinced me.) - Made some options in configure easier to understand. - Some minor code cleanups - Added function to burn Xmms playlists. (This is a VERY simple script that for now pretty much sucks. You need write permissions to the directory where the mp3s are stored, and it's not very well written. I will rewrite this some day. Anyone want to rewrite it for me, please do.) - RPM available of Magma 1.1.2 Magma 1.1.2 (Moulin Rouge must die) - Removed some silly little checks that didn't work. Hopefully the average Magma user is intelligent enough to have a cd in the drive before attempting to burn something. Checks might be added into M2. - Added option in main menu to view BURNDIR. Useful for making sure no vital files are accidently removed when clearing BURNDIR. - Small documentation updates. - Magmas homepage is now http://magma.dk3.com (Or http://medlem.spray.se/connymute) Magma 1.1.1 (Elvis was Alive) - Fixed an error in burning.sh that freaked out if more then one wav-file was present in BURNDIR. When will I learn to test this thing before releasing... Magma 1.1 Final (Elvis is alive) - Edited some parts of burning.sh that didn't work at all. Sorry about that, gotta be more careful when accepting patches. Something screwed up Magma so it found the files, but didn't actually burn anything. Fixed now. - Removed the useless cddb lookup feature. Didn't work right anyways. If anyone wants to implement it, go ahead and then send me a patch, otherwise this will wait for Magma 2.0 - Commented code some more - Changed a break to continue in iso_menu.sh - Rewrote multi.sh, now it might actually work... - Fixed an issue in Magma.sh that wouldn't remove files in BURNDIR when the option Clear BURNDIR was chosen. - Fixed mistake in burning.sh - The config-file .mconf mysteriously disappeared from ALPHA3. Now it's back. - PLAN-file updated. - Rewrite of Magma.sh and some new files added. - Typo in mount_loop.sh taken care of - Fixed a bug in convert_mp3s.sh that wouldn't find any files in BURNDIR if they were linked there, not copied. - After adding some new functions we've decided to go in a new sub-version-tree. - Some tuning up again and again. Magma 1.0 020215 - Added function to copy cd to harddrive. - Fixed issue with driver options (Thanks Christoffer Bruun). - Added funtion for cddb lookup when copying cd audio to hd. - Minor adjustments and code tuned up in various files. - Bug in mount_loop.sh fixed. Now you can view the contents of several ISOs simultaneously. Magma 1.0 (Hot Stuff) - Freaking mkisofs bug is finally eliminated. Woohoo! - Multisession supported. - Support for driver options (for instance burnfree). - Support for normalize. - Changed new convert_mp3s.sh to old one. Works better. - Support for forced blanking of CDRWs, if normal blanking should fail. - Direct mp3 + wav burning added. (thanks Jean-François Deverge) - Documentation updated. - COPYING added - Various small fixes and tune-ups. ################################################################################### #WARNING: All version of Magma pre 1.0 has a nasty bug with mkisofs. It will cause# #all files to end up in the same directory, instead of their respective one. We # #strongly recommend you to use version 1.0 or later. # ################################################################################### Magma 0.9.5 (Bugs R Us): - We jumped to 0.9.5 directly. - Issue with creating ISOs fixed. (mkisofs no longer cuts filenames.) - More Issues with creating ISOs fixed. - New function added to burn additional informations on a CD. (e.g. copyright, author, name of package and much more) Magma 0.9.2pre2: - README updated - Some minor bugs fixed. - New function added to view and modify the content of an ISO-file. (mount_loop.sh) - Some minor things changed and added. Magma 0.9.2pre1: - Totally freaking rewritten by Tobias Rittweiler (nice...does this mean I suck or what?) - The configfile (mconf) has to be moved to the home-directory of the user who has execute Magma. So it has a firm location, I think it's better.. - That's why I changed all the $WORKDIR variable (in the beginning) to $HOME. And I changed the filename, so it's now '.mconf', because then it's hidden (like all the other configfiles) - And I introduce a new variable $ROOTDIR - it's the path to the dir in that the shellscripts are. (so the installation is also different) - Also I changed the directory of temporary files. It's now '/tmp/burn' and so it's a real temp-dir, i think. - I add also a small sed-liner, so now you can write spaces between the variables and the options in the conf-file. (the number of them doesn't matter.) - Then I changed the colors of the table. And yeah, it looks fine.. :-) - The file convert_mp3.sh was absolutly written again by myself. - I put all burn_*.sh files together in only one, because too much different files suck! So we've one that can all.. and that file is really bash! - All files were rewritten, I tuned the code of them up, but i didn't write any extensions for it. That will coming soon.. - Rewrote the INSTALLATION, this ChangeLog, the HOWTO and the README. - create_iso.sh and burning.sh now follows symlinks and allows more than one dot in the filenames when creating ISO-files. - Burning is more verbose Magma 0.9.1 (Titanic) - Added function to copy Audio and Data cds - Added option to create ISO from files in BURNDIR Magma 0.9.1pre3: - Added option in configure menu - Code cleanup Magma 0.9.1pre2: - Changed from using cdparanoia for ripping audio cds to cdda2wav. - Fixed audio-cd copying mistake. Forgot to sleep for 20 secs. - Added cd-check for create_iso. No fake ISO is created if no cd is present in drive. - Fixed small issue with main menu Magma 0.9.0 (Everclear) - Magma almost totally rewritten with a lot of help from Joel Wiesmann. - Configuration menu added, now you don't have to edit the script yourself, enter your values in a simple menu. - An option to clear BURNDIR was added. Magma 0.3.0/2 (Ringwraith) - Menu redone again. Thanx to Joel Wiesmann for letting me test his nice program menubuilder. Magma 0.3.0 (Phat Beat) - Spaces in mp3-files bug fixed. (Thanks Olav Vitters) - Menu redone Magma 0.2.7/2 (Looney) - Added a HOWTO for newbies Magma 0.2.7 (Looney) - Added option to create ISO-files from a cd. Magma 0.2.6 (Katie) Dreamhack Edition - Only some code cleanups and some documentation added. No need to get this one really if you're happy with 0.2.6 standard. Magma 0.2.6 (Katie) - Removed some silly things from burn_data and burn_iso that wasn't supposed to be there in the first place. - It is now possible to blank CDRWs. Check top of Magma.sh for details. Magma 0.2.5 (Idiot Box) - Issues in 0.2.4 fixed. Code a little more commented. Magma 0.2.4 (Slacker) - Fixes some issues in 0.2.2 and adds the option to burn ISO-files directly. Magma 0.2.2 (Mental) - Magma can now burn data cds. Put all you data into BURNDIR, choose to burn a data cd and voila! Magma 0.2.0/2 (Phreak) - Silly little me forgot to remove -dummy from burn_audio_wav.sh This release includes that fix and some updates to the README file. Magma 0.2.0 (Doodle) - Deleted file burn.sh and updated burn_audio_wav.sh - Fixed stupid bug where Magma would start burnprocess, even if no audiofiles where present in BURNDIR (Thanks Hampus Ram) - Also Magma won't bail out if no Mp3s are present in BURNDIR. It simply continues and checks if wavs are there instead. You could say this is the first version that is actually useful. Magma 0.1.3 - New file, convert_mp3s.sh and removed burn_audio_mp3s.sh. 0.1.2 had a nasty bug. To many Mp3s in BURNDIR caused Magma to spit out an error message and quit, without burning. Magma 0.1.2 - Magma can now burn audio cds directly with wav-files. - burn.sh is divided into two files: burn_audio_mp3.sh and burn_audio_wav.sh Magma 0.1.1 - First public release. Now divided into two files. Magma 0.1.0 - First release. Well, never released really. Only for internal testing bashburn-3.0.1/docs/FAQ000066400000000000000000000117761153706571400146260ustar00rootroot00000000000000FAQ for BashBurn (Magma): ================= Q1: Why? A1: I felt like it. Well, I got sick of a program I used always failing to burn audio cds, and since I don't know how to program C or something I decided to write a simple little shell script to do the job. Q2: What can BashBurn do? A2: BashBurn can burn data, music and multisession CDs/DVDs. It can burn and create ISO files. It can burn bin/cue files, create MP3s, OGGs and FLAC files. Maybe even more :-) In short, it can do most things you need, and if it can't you're probably doing it wrong. ;-) Q3: You/BashBurn/Ya mama/Vacuum machines suck! A3: That's not a question. Q4: Why the namechange? A4: Apparently there already was a program named Magma, so a namechange was a must. I agree BashBurn isnt really a kickass name, but hey! At least it can still get the work done... Q5: Can I steal the code and base my own programs on it? A5: Yes. Can't imagine why anyone would want to, but sure. Just remember to release your program under the GPL, and leaving the credits would be nice. Q6: Can I help? A6: Sure! Code away and send me the patch. If I find it worthy (Which I do most of the times) I'll include it in the next release and add you to the credits file. Q7: How do I install BashBurn? A7: Read the INSTALL file dummy! Q8: BashBurn often failes to write CDs. A8: Well I bet it isn't really BashBurns fault. Could be that your system isn't fast enough. Try to reduce the speed of your burner, or buy higher quality CDs. If your burner supports it, try using burnfree/burnsafe. Of course it COULD be BashBurn failing, in which case it's a bug. Send me a mail with a description of the problem and I'll try to fix it as soon as possible. Q9: I try to create an ISO-file from files in my harddrive, but all files from different directories end up in the root, not in their respective directories! A9: Yes, this is a known bug in Magma versions before 1.0. If you are using a version that old you should be taken out back and put down. You could also try to download a newer version. Q10: Who are you? A10: A little geek from Sweden, and thats all you need to know. :-) Q11: How do I use driver options? A11: You don't really have to, but if you want to try it out, here is how. Under configure, choose driver options and BashBurn will show what your burner supports. My burner supports burnfree, so I enter burnfree and press enter. The next time I burn a cd, BashBurn will enable burnfree to prevent buffer underruns. You can enter several options by separating them with a comma. Q12: BashBurn cannot find my cd-burner. What do I do? A12: Make sure that you have support for your burner in the kernel. For IDE burners you can either use SCSI emulation or ATAPI mode. (Check Q18) If you don't know how to configure your kernel, use google (There is lots of good info on the web), tldp.org or #linuxhelp on irc.freenode.org Q13: Where do I report bugs? Where do I find any help? A13: Join the mailinglist and report it there, or send me a mail. Q14: When will Magma 2 be released? A14: It wont. Magma doesnt exist anymore, remember? We'll see what happens in the future, for now BashBurn is what you have to settle with. Q15: Does BashBurn support for instance overburn? A15: Yes, though it's not really tested that much. Try it out, and if it works, great, let me know. If it doesn't work, crap, let me know. Q16: I can't mount my ISO and view it. What's wrong? A16: Make sure you have support for loopback devices in your kernel or compiled as a module and loaded. If you're not root, make sure you are part of the sudoers group, since BashBurn uses sudo when mounting the image in that case. Q17: I ran Install.sh as root, but I still cant start BashBurn as a regular user A17: Download and install BashBurn 1.0 or later. In those versions the installation script is rewritten and works a lot better. Q18: Does BashBurn support IDE burners natively, or do I need to use SCSI emulation? A18: As from BashBurn 1.3, IDE burners should work just fine. I use this myself and have not experienced any problems so far. To be able to use this you will need a 2.6 Linux kernel, cdrtools version 2.0 or higher and BashBurn 1.3 or higher. Q19: Running BashBurn in sudo gives me an error. A19: The latest version of BashBurn should work fine in sudo. If it doesn't tell me about it and I'll try to find a workaround. Q20: Where is this mailinglist I've been hearing so mych about? A20: Go to http://bashburn.sf.net, click on the link that says "mailinglist" and follow the instructions there on how to sign up. Q21: Can BashBurn burn DVDs? A21: See A2 Q22: How do I install BashBurn? A22: Read the INSTALL file. Q23: What are the requirements for BashBurn? A23: Check the webpage at http://bashburn.sf.net for info. Once BashBurn is installed, you can also run option 8 in the main menu, Check program paths to see if you need to install any programs for full functionality. (Note: In Ubuntu normalize is called normalize-audio) Last updated: October 2008 bashburn-3.0.1/docs/HOWTO000066400000000000000000000033341153706571400151060ustar00rootroot00000000000000So, you downloaded BashBurn and now you want to burn a lot of CDs? Well, if you've used BashBurn before, you can stop reading now and get going. If not, take your time to read this little HOWTO. INSTALLATION: Check the file INSTALL for details. CONFIGURATION: After installing BashBurn, start it up by typing 'bashburn'. The first time BashBurn will create a directory from where it will read which files to be burnt. Default is /tmp/burn. Now choose configure. You will be presented with a menu of options. Don't understand what they all mean? Don't worry, there is an explanation for every one of them. If unsure, pick the default value, it's often fine. After you've gone through each option, choose Apply Settings. (Remember to do this or nothing will be saved.) Now choose Return to go back to the main menu. USAGE: BashBurn is designed to be as easy to understand as possible. Let's say you want to burn an audio CD. Where do you go? To Audio of course, and under Audio there are more options to choose from. Just remember that before attempting a burn you must copy or link the data or audio files to be burnt to the temporary burn directory, which again by default is /tmp/burn. For example, let's say you want to burn an ISO file. 1: Start BashBurn, pick option 10, define data. 2: Pick option 1, and follow instructions. Link the data with 'ln -s /path/to/myfile.iso .' (Without the ''. The dot is important) (You can also copy the data if you prefer that, cp -Rf ) 3: Return to the main menu, choose ISO and pick the Burn ISO option. 4: Done! Any problems with BashBurn, suggestions or complaints mail me at anders.linden@gmail.com or post on the BashBurn mailinglist. Have fun using BashBurn bashburn-3.0.1/docs/INSTALL000066400000000000000000000010701153706571400153070ustar00rootroot00000000000000Installation 1. Unpack the file (And if you are reading this I guess you already did) 2. Cd into the directory and run the installation script (Install.sh) For options, run Install.sh --help (To do a global install that will affect all users on a system you will have to be root or have global write permissions) 3. Start the program by running 'bashburn' and configure it. 4. Enjoy! Any problems mail me on anders.linden@gmail.com or post on the BashBurn mailinglist. Also check out the BashBurn webpage at http://bashburn.dose.se for info and updates. bashburn-3.0.1/docs/README000066400000000000000000000020401153706571400151340ustar00rootroot00000000000000README of BashBurn: ================= BashBurn is released under the GNU GPL. Once upon a time, or more exaclty sometime around December year 2001 if I'm not misaken, a young little nerd named Anders Lindén was trying to burn some CDs with his recently bought CD-burner. He tried a lot of different programs, but for some reason it would just not work properly. So, the little nerd thought to himself: "I guess I just have to do something about this myself". And so he did... The first versions of his program were not very good, or to be honest, they sucked. Bigtime. With time however more and more people found out about this little project of his and started to send in patches and suggestions to the little nerd. All was well. Today, after lots of help from people all over (Check out the CREDITS-file for which ones) BashBurn is actually pretty usable. It's not the most advanced cd burning app out there, but it generally does it's job. A lot of people use BashBurn for simpler CD-burnings tasks and like it, so I hope you will as well. bashburn-3.0.1/docs/TODO000066400000000000000000000077711153706571400147640ustar00rootroot00000000000000BashBurn TODO file LP = Low priority MP = Medium priority HP = High priority *) Add cd text capabilities (LP) *) If a CDRW is already written, enable some kind of automatic blanking. (MP) (First of course warn about files being overwritten by the blanking.) *) Split up configure script in two parts (LP) *) Autodetection CD Recorder, useful for USB device (MP) *) World domination (HP) *) Anyone else have any suggestions? ---------------Aug 25 2008 11:05 Steve Orr------------------- * Integrate configure menu with bbmenu. Add -c option to bbmenu. (HP) * Move /usr/bin/BashBurn to /usr/lib/BashBurn (MP) * loopback.sh calls cleanup which is not defined. (?) FIXED 080920: Should be loopback_cleanup of course. /Anders * encode_filter only does something if ENCODEFILTER is not null. It is never set. (?) * All global variables must be documented. If global variables are being used to pass parameters, they need to be removed and replaced with arguments. (HP) * Global variables which are used to pass information back should be looked at to see if return values can be used. (MP) * Audiofunc.sh has tons of duplicate code. Needs to be consolidated. create_mp3s_from_wavs() create_oggs_from_wavs() create_flacs_from_wavs() create_mp3s_from_cd() create_oggs_from_cd() create_flacs_from_cd() (LP) * rm ${BBBURNDIR}/*.[Ww][Aa][Vv] needs to be replaced by setting shopt -s nocaseglob, or find -iname or grep -i func/multifunc.sh func/bincuefunc.sh func/isofunc.sh misc/xmmsread.sh convert/convert_flacs.sh convert/convert_oggs.sh convert/convert_mp3s.sh burning/burning.sh (MP) * Add prefix option to Install Install.sh --prefix /usr/local to cause bb in /usr/local/bin and the rest in /usr/local/lib/BashBurn (LP) * Consolidate use of color so Install and BB use common defs. (LP) * Create color themes. (LP) * Extract out config items that users should not be allowed to configure. (MP) BBISCONF: 1 BBROOTDIR: /usr/bin/BashBurn BBAUTHOR: # This should be in the README, no? BBLANG: English # Should only be an override over the LANG variable. * Let's figure out what utilities BB needs to be allowed to install and which utils are optional. (Q: Does bb not try to run things if the optional utils do not exist?) (HP?) * Create a devel branch so people don't get shut down during development. (?) * Create an rpm spec file and a deb package. (LP) * Look for continue statements that are not in a loop. (LP) ---------------End of Aug 25 2008 11:05 Steve Orr------------- ---------------Aug 26 2008 13:53 Steve Orr------------- * Add an option on the main menu to toggle command tracing. If tracing is on, then the cdrecord commandset will be logged to the logfile and the commands will display on the screen. (LP) ---------------End of Aug 26 2008 13:53 Steve Orr------------- ---------------Sep 4 2008 1:22 Steve Orr--------------- * misc/xmmsread returns success but its caller, audio_menu/burn_xmms_playlist, checks the status. * misc/loopback.sh::loopback has a lots of farout return values that are never looked at by the caller. ---------------Sep 4 2008 15:16 Steve Orr--------------- * Man page. * cmdline option -c for alternate bashburnrc with envvar override * ^C goes to top of current menu instead of exit. * Define what components are mandatory for bb to start. * lang subdirs should not be named in english. German should be Deutsch, etc. * Remove maybe all of the cd commands that are all over the place. * Move /usr/bin/BashBurn to /usr/lib/Bashburn * Do we need a make install, make uninstall? Or do we want Install.sh -d? * spec file to make an rpm? * Put a header in ALL files that are sourced in from a subroutine. * Move config functions to a more proper dir. ---------------Sep 6 2008 12:22 Steve Orr--------------- * Jimmy up the reads so that the only choices for what's available are in the readline history. (See HISTORY EXPANSION). Sep 21 2008 16:00 * Create global vars for values for IFS + BBCONF_SEP (=':') + BBAVAL_SEP (='@') + BBCONFCH_SEP (='|') bashburn-3.0.1/docs/TRANSLATION_RULE000066400000000000000000000061471153706571400166400ustar00rootroot00000000000000BashBurn translation rules for translators ########################################## There are 2 steps in translation process we must distinguish: - ADD (new) translation - UPDATE (existing) translation Both steps are described below and each translator should know this. 1. ADD translation process -------------------------- 1.1 --- CONTACT a bashburn developer and tell what you want translate. He will do the necessary things to provide you a language directory with different skeleton files. (Hint: You can also do this by yourself - but you need a little knowledge of the bashburn translation structure and you should only do this if you KNOW what you do! Otherwise you may "damage" all other translations!) 1.2 --- Edit with a text editor the file "TRANSLATOR" in the language directory of the language you want to translate and encode it in unicode UTF8. It contains 4 lines which you should correctly edit: FIRST NAME: Name SURNAME : Another_name E-MAIL : mymail@xy.loc EXIT-DATE : ? The first lines should be clear. The "EXIT-DATE" is the date which you know that you can't do the translation anymore. There are 2 types of this: 12. August 2009 ? -> In the first case you will leave the translation project at 12. August 2009 (please use the shown date-format!). -> If you don't know a date - just enter '?'. This means you don't plan to exit bashburn translation now - but you may do it and contact us if you wish so. This is not to nerve you. This informations help us to ensure good translations: We can contact you in case of questions and we can welcome another translator for your language in case you want not do it anymore. In any case: - We contact you in case you should update a translation. - If we don't hear anything from you over a longer period of time AND we have a new interested translator - this person can starting updating translation. You will be deleted from TRANSLATOR file (but maybe mentioned in "CREDITS" file). Now goto description of UPDATE translation (step 2). 2. UPDATE translation process ----------------------------- 2.1 --- You need a (text) editor which supports Unicode UTF8 encoding of the translation text files. Bashburn translation files must be ENCODED in UTF8 (see "http://www.utf-8.com/")! Bashburn uses the GNU "gettext" translation system for translation (see "http://www.gnu.org/software/gettext/"). If you don't know this, you should read more about it. Now you can begin to translate the ".po" files in your language directory. There also graphical programms like "KBabel" which can support you by this step. 2.2 --- After finishing translation and you think all it's done, edit the file "STATE" in your language directory. Delete the message in it (e.g.): "Your language directory need updating translation!" and write in: "UPDATED". After this, we know that we can use "savely" your translation. 2.3 --- Contact a bashburn developer to complete your translation technically (this involves creating of ".mo" files and some file coying). (You can do this also manually with "make MO " and "make install ". # END # Editor: Markus Kollmar bashburn-3.0.1/func/000077500000000000000000000000001153706571400142635ustar00rootroot00000000000000bashburn-3.0.1/func/advancedfunc.sh000077500000000000000000000013661153706571400172510ustar00rootroot00000000000000# This function takes two arguments. The option to change # and a description. # The changed value is stored in the variable # BB_RET_VALUE which is set to an empty string at the beginning # of the function. change_cmd() { typeset input typeset TEMP=$1 BB_RET_VALUE= pretty_top top_info_line echo -en "${BBOPTIONCOLOR}The current $2 is ${BBMAINCOLOR}$1${BBOPTIONCOLOR}. ${BBOPTIONCOLOR}If you wish to change it, enter the new command below. ${BBOPTIONCOLOR}To cancel, press [enter] without writing anything." dashed_line echo -e "${BBINPUTCOLOR}${bb_conf_menu_entry} |> ${BBCOLOROFF}" read -e input if [[ -z "${input}" ]] then BB_RET_VALUE=$TEMP else BB_RET_VALUE=$input BB_ADVANCED_CONFIG_MODIFIED=1 fi } bashburn-3.0.1/func/audiofunc.sh000077500000000000000000000215471153706571400166100ustar00rootroot00000000000000# This file contains the functionality for audio CD burning # This function lets you swap cds if you only have one device. # (CDwriter and CDreader is same device.) # Slightly rewritten for cdparanoia instead of cdda2wav insert_new_CD() { typeset temp while true do read -e -p "$bb_am_enter_2" temp [[ -z "$temp" ]] && break done } convert_if_exist() { typeset filetype="$1" cd ${BBBURNDIR} if check_for "$filetype" then echo -e "$filetype being used..." convert_audio "$filetype" else echo -e "No $filetype audio files found" fi } check_for_wavs() { check_for '*.wav' } check_for_mp3s() { check_for '*.mp3' } check_for_flacs() { check_for '*.flac' } # A function that adjusts the volume of wav # audio files to a standard volume level. normalization() { if [[ "$BBNORMALIZE" = yes ]] then cd ${BBBURNDIR} for i in *.wav do echo -e \ "\n${BBTABLECOLOR}|>${BBSUBCOLOR}$bb_am_norm_1$i...${BBCOLOROFF}" ${BB_NORMCMD} -v -m "$i" done fi } # Function that validates the input of "y" or "n". conf_yes_no() { typeset answer while [[ "${answer}" != y && "${answer}" != n ]] do read -e -n 1 -p "$bb_am_conf_2" answer done [[ "$answer" == y ]] } # Function that controls errors. conf_error() { typeset -i stderror=$1 # If there is any error return to main menu. if (( stderror != 0 )) then message "${BBTABLECOLOR}$bb_am_err_1${BBCOLOROFF}" return 1 fi return 0 } # Simple function that validates confirmation of song names. confirmation() { typeset -i answer=0 echo [[ -f "${BBBURNDIR}/song_name.txt" ]] || return 1 echo -e "${BBTABLECOLOR}|>${BBMAINCOLOR}$bb_am_conf_1${BBCOLOROFF}" cat -n ${BBBURNDIR}/song_name.txt echo -e "${BBSUBCOLOR}" conf_yes_no || answer=1 echo -e "${BBCOLOROFF}" (( answer == 1 )) && rm -f ${BBBURNDIR}/song_name.txt ${BBBURNDIR}/tracks.txt return 0 } # Function for interactive naming of files. named() { typeset track typeset song_name typeset number_track typeset -r funky_chars=$'[()?\277*\/&]' typeset funky_gone # Delete old lists of songs rip. rm -f ${BBBURNDIR}/*.txt # Show some info message "${BBSUBCOLOR}$bb_am_named_1${BBCOLOROFF}" ${BB_CDAUDIORIP} -d ${BBCDROM} -vQ # If there is any error return to main menu. conf_error $? || return track=1 cat <<'EOF' You will now be asked for track numbers and track names. Track names will default if not supplied. EOF echo -e "\n${BBMAINCOLOR}$bb_am_named_4\n${BBMAINCOLOR}$bb_am_named_5" while [[ -n "${track}" ]] do printf "\n%b$bb_am_named_2 %b$bb_am_named_3%b|>%b " \ "${BBMAINCOLOR}" "${BBMAINCOLOR}" "${BBTABLECOLOR}" "${BBCOLOROFF}" read -e track [[ -z "$track" ]] && continue # Only permit integer numbers standing the format # in the numbers of back prompt. # FIXME: This does not gurantee that track is an integer value number_track=$(printf '%02d' ${track}) # This line puts track numbers of the input standard # into tracks.txt. echo "${number_track}" >> ${BBBURNDIR}/tracks.txt printf "$bb_am_named_6${number_track} %b|>%b " \ ${BBTABLECOLOR} ${BBCOLOROFF} read -e song_name # If the song_name variable = space blank then, change # fill that with the number of the track to ripped. if [[ -z "${song_name}" ]] then song_name="${number_track}.-Track" else # If the song_name variable contained some signs and # characters specials, # that difficulty the naming in bash shell, to be equal to nothing. # Read sed man page to see how it work. # Change by Casper # Steveo here: # This used to be 's/[()?ż*\/&]//g' # When I analysed it, I saw that the funny upside down questionmark # was an octal 277. So I changed it to native proper # quoted bash notation, i.e., $'stuff' and switched in 277. # They are equivalent, but the reason for switching is because # what gets displayed to the person looking at the src code # depends on the type of terminal emulator that is used. funky_gone="${song_name//$funky_chars}" song_name="$funky_gone" fi # Delete temporary file and add song name to a text file echo ${song_name} >> ${BBBURNDIR}/song_name.txt done } # Function rip the tracks or songs selects. rip() { proc_file() { typeset var=$1 typeset fni=$2 typeset fno=$3 typeset -i first=1 while read line do if (( first )) then eval "$var=\"${line}.wav\"" first=0 else echo "$line" fi done < $fni > $fno } typeset line typeset track=0 typeset song_name confirmation || return 1 cd ${BBBURNDIR} while [[ -n "${track}" ]] do # Read the track to rip of the files in temp directory. read track < ${BBBURNDIR}/tracks.txt if [[ -n "${track}" ]] then echo -e \ "${BBTABLECOLOR}|>${BBSUBCOLOR}$bb_am_rip_1${track}...${BBCOLOROFF}" # Begin Rip. ${BB_CDAUDIORIP} -d ${BBCDROM} ${track} ${track}.wav proc_file track tracks.txt temp_tracks.txt proc_file song_name song_name.txt temp_song.txt # Rename the tracks that have been ripped, by the name # get back by users in prompt. mv "${track}" "${song_name}" # Remove the song that has been ripped. mv ${BBBURNDIR}/temp_song.txt ${BBBURNDIR}/song_name.txt mv ${BBBURNDIR}/temp_tracks.txt ${BBBURNDIR}/tracks.txt fi done # Remove temp files. rm -f ${BBBURNDIR}/tracks.txt ${BBBURNDIR}/song_name.txt ${BBBURNDIR}/*.inf eject ${BBCDROM} message "${BBSUBCOLOR}$bb_am_rip_2${BBCOLOROFF}" return 0 } # Function Encode Filter Command. encode_filter() { typeset format=$1 if [[ -n "$ENCODEFILTER" ]] then echo -e \ "${BBTABLECOLOR}|>${BBSUBCOLOR}$bb_am_encfilt(${ENCODEFILTER})${BBCOLOROFF}" eval ${ENCODEFILTER} ${BBBURNDIR}/*.${format} fi } # CD copying copy_audio_cd() { # Copy an audio cd. cd ${BBBURNDIR} # if ${BB_CDAUDIORIP} -D ${BBCDROM} -v all -B -Owav; then if ${BB_CDAUDIORIP} -d ${BBCDROM} -B then eject ${BBCDROM} echo $bb_am_rip_2 # Normalize WAV's. normalization # Check number of devices (( BBNUMDEV == 1 )) && insert_new_CD # burnlist= should be set using caseglob and nullglob if ${BB_CDBURNCMD} -v dev=${BBCDWRITER} \ speed=${BBSPEED} ${BBDRIVEROPT:+"driveropts=$BBDRIVEROPT"} \ ${BBDTAO} ${BBPADDING} \ -useinfo ${BBBURNDIR}/*.[Ww][Aa][Vv] then message "$bb_am_ch3_1" else message "$bb_am_ch3_2" fi else message "$bb_am_ch3_3${BBCDROM}" fi } # Copy an audio cd to HD copy_cd_to_hd() { cd ${BBBURNDIR} # ${BB_CDAUDIORIP} -D ${BBCDROM} -v all -B -Owav ${BB_CDAUDIORIP} -d ${BBCDROM} -B eject ${BBCDROM} # Normalize WAV's. normalization message "$bb_am_ch4_1${BBBURNDIR}.$bb_am_ch4_2 $bb_am_ch4_3" } create_xxx_from_wavs() { # Very sneaky stuff going on here. cmd is passed in but it refers to file. # file is a variable in the loop in here. typeset cmd="$1" typeset fmt=$2 typeset file typeset cmd_was_executed=0 cd ${BBBURNDIR} while read file do eval $cmd cmd_was_executed=1 done < <(find . -iname "*.wav") if (( cmd_was_executed )) then # Encode Filter Command. encode_filter $fmt else message "\n$bb_am_ch6_3${BBBURNDIR}" fi } # Create Mp3s from Wavs in BURNDIR (Is this comment _REALLY_ necessary?) create_mp3s_from_wavs() { create_xxx_from_wavs \ '${BB_MP3ENC} --preset cd "${file}" "${file%%wav}mp3"' \ mp3 } #Create Oggs from Wavs in BURNDIR create_oggs_from_wavs() { create_xxx_from_wavs \ '${BB_OGGENC} -b ${BBBITRATE} "${file}"' \ ogg } # Create flacs from Wavs in BURNDIR create_flacs_from_wavs() { create_xxx_from_wavs \ '${BB_FLACCMD} -b ${BBBITRATE} "${file}"' \ flac } create_xx_from_cd() { typeset cmd="$1" typeset resultstr="$2" typeset file typeset cmd_was_executed=0 # First, name and rip the tracks # Give name to the tracks. named # Rip the tracks in wav audio file. rip || return # Normalize WAV's. normalization # Now create the Mp3s while read file do eval $cmd cmd_was_executed=1 done < <(find . -iname "*.wav") if (( cmd_was_executed )) then # Encode Filter Command. encode_filter mp3 else message "\n$bb_am_ch6_3${BBBURNDIR}" fi message "${resultstr}${BBURNDIR}" shopt -s nocaseglob rm ${BBBURNDIR}/*.wav shopt -u nocaseglob } # Create Mp3s from an audio cd. create_mp3s_from_cd() { create_xx_from_cd \ '${BB_MP3ENC} --preset cd "${file}" "${file%%.wav}.mp3"' \ "$bb_am_ch9_2${BBBURNDIR}" } # Create Oggs from an audio cd. create_oggs_from_cd() { create_xx_from_cd \ '${BB_OGGENC} -b ${BBBITRATE} "${file}"' \ "$bb_am_ch10_2${BBBURNDIR}" } # Create flacs from cd create_flacs_from_cd() { create_xx_from_cd \ '${BB_FLACCMD} "${file}"' \ "$bb_am_ch11_1${BBBURNDIR}" } bashburn-3.0.1/func/bincuefunc.sh000077500000000000000000000007331153706571400167460ustar00rootroot00000000000000burn_bincue() { typeset bbspeed # cdrdao does not like speed being set to -1 (( "${BBSPEED}" -eq -1 )) && bbspeed=8 || bbspeed=$BBSPEED shopt -s nocaseglob if ${BB_CDIMAGECMD} write --device \"${BBCDWRITER}\" \ --driver generic-mmc --speed \"${bbspeed}\" \ -v 2 --eject \ "${BBBURNDIR}"/$(ls \"${BBBURNDIR}\" | grep cue) then echo $bb_bincue_burn_1 else echo $bb_bincue_burn_2 fi shopt -u nocaseglob wait_for_enter } bashburn-3.0.1/func/configfunc.sh000077500000000000000000000105741153706571400167520ustar00rootroot00000000000000# Contains all configuration functions get_yn() { typeset instructions="$1" typeset ans typeset prompt echo -e "${instructions}" dashed_line while true do prompt=$(printf "%b|> %b" ${BBINPUTCOLOR} ${BBCOLOROFF}) read -e -p "$prompt" ans case "$ans" in n | no | No | NO ) # Nick - needs adding lang specific (Nien etc.) return 0 ;; y | yes | Y | Yes | YES ) # Nick - needs adding lang specific (Ja etc.) return 1 ;; *) echo -e "${bb_conf_err}${BBHEADCOLOR}y${BBCOLOROFF}/${BBTABLECOLOR}n${BBCOLOROFF}" ;; # Lang options? esac done # NOTREACHED } # Confirmation routine on leaving configuration. get_confirm() { (( ${!BB_CONFIG_VAR} == 0 )) && return 1 get_yn \ "${bb_conf_xit_2}\n ${bb_conf_err}'${BBTABLECOLOR}n${BBCOLOROFF}' (${bb_conf_menu_back}) \ ${BBTABLECOLOR}|${BBCOLOROFF} '${BBHEADCOLOR}y${BBCOLOROFF}' (${bb_conf_xit_1})" } # Are you REALLY sure routine for reset to defaults. get_really_sure() { get_yn \ "${bb_conf_menu_default}?\n ${bb_conf_err} '${BBTABLECOLOR}n${BBCOLOROFF}' (${bb_conf_menu_back}) \ ${BBTABLECOLOR}|${BBCOLOROFF} '${BBHEADCOLOR}y${BBCOLOROFF}' (${bb_conf_menu_default})" } # Confirm new settings. get_new_settings() { get_yn \ "${bb_conf_menu_apply}?\n ${bb_conf_err} '${BBTABLECOLOR}n${BBCOLOROFF}' (${bb_conf_menu_back}) \ ${BBTABLECOLOR}|${BBCOLOROFF} '${BBHEADCOLOR}y${BBCOLOROFF}' (${bb_conf_menu_apply})" } # This function takes two or three arguments. The option to change ($1), # a text to print out ($2) and a non-obligatory command to run ($3). # The changed value is stored in the variable what CFG_CHANGES points to. change_option() { typeset -r old_IFS="$IFS" typeset IFS="$old_IFS" typeset var=$1 typeset prompt="$2" typeset cmd="$3" typeset -i strict_enum=$4 typeset input typeset -i chsize=0 typeset -i ii typeset -i found=0 typeset item typeset ivar typeset -r tempfile=$(mktemp -t bbch_opt.XXXXXX) typeset -r temphist=$(mktemp -t bbch_opthist.XXXXXX) typeset -a line typeset -i hist_mode=0 pretty_top # Don't run the command if it was not supplied. This includes # the header and footer stuff. top_info_line echo -e "\n${prompt}" # If they gave us a command to run then by all means run it. top_info_line echo -e "\n" if [[ -n "$cmd" ]] then history -w if eval $cmd > $tempfile 2>&1 then # load the read buffer up and cat the file out. cat $tempfile cp $tempfile $temphist history -cr $temphist hist_mod=1 echo -e "\n" dashed_line fi fi echo prompt=$(printf "%b$bb_conf_menu_entry |> %b" $BBINPUTCOLOR $BBCOLOROFF) read -e -p "$prompt" input # Now restore the history. (( hist_mod )) && history -cr # Let's look at what we just read and see if it's the same value as # what we started with. If so then just discard it. [[ "$input" == "${!var}" ]] && { rm -f $temphist $tempfile; return; } # If the input is NULL then just return, but if the input is a pair of # double quotes then he really wants to set it to the null string. [[ -z "$input" ]] && { rm -f $temphist $tempfile; return; } [[ "$input" == "\"\"" ]] && input= # Check strict_enum to see if the user can just make up a value. if (( strict_enum )) then found=0 while read line do if [[ "$line" == $input ]] then found=1 break fi done < $tempfile if (( ! found )) then message 'Value entered may only be from the set supported.' rm -f $temphist $tempfile return fi fi rm -f $temphist $tempfile # The size of the array is the size of what CFG_CHANGES points to. chsize=$(eval "echo \${#${CFG_CHANGES}[@]}") # Loop over all changes made so far. # Why? Because someone might have modified the same var twice. found=0 for (( ii=0; ii < chsize; ii++ )) do # This sucks because we can indirect through scalar # variables but not through arrays. :-( item=$(eval "echo \${${CFG_CHANGES}[ii]}") IFS='|' set -- $item IFS="$old_IFS" ivar=$1 if [[ $var == "$ivar" ]] then # If it matches then we can just change the entry # that already exists. eval "$CFG_CHANGES[ii]=\"${var}|${input}\"" found=1 break fi done # Otherwise, we add a new entry. (( found )) || eval "$CFG_CHANGES[chsize]=\"${var}|${input}\"" eval ${BB_CONFIG_VAR}=1 } bashburn-3.0.1/func/datafunc.sh000077500000000000000000000026571153706571400164210ustar00rootroot00000000000000# This file contains functions for data burning # Checks number of devices dev_check() { [[ "${BBNUMDEV}" == 1 ]] && insert_new_CD } #This function lets you swap cds if NUMDEV is set to 1 insert_new_CD() { typeset temp while true do echo $bb_dm_newcd read -e temp [[ -z "$temp" ]] && break done } copy_data_cd() { typeset -i doit=0 if ( grep -q $BBCDMNT /etc/mtab ) then # Data appears to be mounted, so start here. if (( ${BBNUMDEV} == 2 )) then ${BB_READCD} ${BB_READ_OPTS} ${BBCDMNT} | \ ${BB_CDBURNCMD} dev=${BBCDWRITER} ${BBDTAO} \ -v -data -eject - echo $bb_dm_ch2_5 elif [[ -n $(find ${BBBURNDIR} -iname '*.iso' 2> /dev/null) ]] then # Does an ISO file exist? echo "$bb_dm_ch2_2${BBBURNDIR}.$bb_dm_ch2_3" echo $bb_dm_ch2_4 else echo "$bb_dm_cdcopy${BBBURNDIR}..." if ${BB_READCD} ${BB_READCD_OPTS} \ -o ${BBBURNDIR}/BashBurn.iso ${BBCDMNT} then umount $BBCDMNT eject insert_new_CD if check_cd_status then ask_for_blanking && doit=1 else doit=1 fi if (( doit )) then ${BB_CDBURNCMD} dev=${BBCDWRITER} ${BBDTAO} -v \ -data -eject "$BBBURNDIR"/BashBurn.iso echo $bb_dm_ch2_5 fi else echo $bb_dm_cdcopy_err1 echo $bb_dm_cdcopy_err2 fi rm ${BBBURNDIR}/BashBurn.iso fi else # Looks like data CD isn't mounted echo -e "Data$bb_dm_ch2_1" fi wait_for_enter } bashburn-3.0.1/func/definefunc.sh000077500000000000000000000021421153706571400167270ustar00rootroot00000000000000# Functions for data definition copy_link_data() { cd ${BBBURNDIR} echo $bb_dc_explain1 echo "$bb_dc_explain2a${BBBURNDIR}$bb_dc_explain2b" echo $bb_dc_explain3 echo $bb_dc_explain4 echo $bb_dc_explain5 echo $bb_dc_explain6 echo $bb_dc_explain7 echo $bb_dc_explain8 bash } view_contents() { if is_dir_empty "${BBBURNDIR}" then echo "$bb_dc_ch3_4 ${BBBURNDIR}" else # ls -lhgG --color ${BBBURNDIR} # Nick - I prefer this so symlinks show... comments? # ls -lhgGL --color ${BBBURNDIR} ls -L --color ${BBBURNDIR} # Just list files without extra info - Anders display_burndir_size fi } delete_data() { typeset choice if is_dir_empty "${BBBURNDIR}" then echo "$bb_dc_ch3_4 ${BBBURNDIR}" else ls -lhgGL --color ${BBBURNDIR} echo -en "\n$bb_dc_ch3_1" read -e choice if [[ "$choice" = y ]] then rm -rf ${BBBURNDIR}/* echo -ne "\n$bb_dc_ch3_2\n\n" else echo -ne "\n$bb_dc_ch3_3\n\n" fi fi } # Print size of burndir. Follows symlinks. display_burndir_size() { echo; echo "Size of data to burn: $(du -shL ${BBBURNDIR})" } bashburn-3.0.1/func/isofunc.sh000077500000000000000000000030171153706571400162710ustar00rootroot00000000000000# This file contains functionality for ISO-file handling # Check whether ISO files exist check_for_iso() { cd ${BBBURNDIR} (( $(find ${BBBURNDIR} -iname '*.iso' | wc -l) == 0 )) } create_iso_from_cd() { # Does an ISO file exist? if check_for_iso then echo "$bb_im_ch3_2${BBCDROM}" if ${BB_READCD} ${BB_READ_OPTS} -o ${BBBURNDIR}/BashBurn.iso ${BBCDMNT} then echo $bb_im_ch2_5 else echo -e "$bb_im_ch2_6\n$bb_im_ch2_7" fi else echo -e "$bb_im_ch2_1${BBBURNDIR}.$bb_im_ch2_2\n$bb_im_ch2_3" fi wait_for_enter } mount_in_loopback() { typeset bb_image_path echo -e "$bb_im_ch5_1\n$bb_im_ch5_2" read -e -p '|> ' bb_image_path if [[ -z "$bb_image_path" ]] then echo "$bb_im_ch5_3" else loopback "$bb_image_path" fi wait_for_enter } create_iso_from_dir() { if is_dir_empty ${BBBURNDIR} then echo "$bb_im_error_files $BBBURNDIR" else # Does an ISO file exist? if check_for_iso then # Creating ISO from files echo -e "\n$bb_im_ch2_4" #### i want a question regarding the BBLABEL #### [[ "$BBLABEL" == "" ]] && read -e -p "$bb_im_ch2_4b" BBLABEL if ${BB_ISOCMD} -r -f -v -J \ -hide-joliet-trans-tbl -A "$BBDESCRIPTION" \ -p "$BBAUTHOR" -V "$BBLABEL" \ -o ${BBBURNDIR}/BashBurn.iso ${BBBURNDIR} then echo $bb_im_ch2_5 else #Some error occured echo -e "$bb_im_ch2_6\n$bb_im_ch2_7" fi else echo -e "$bb_im_ch2_1${BBBURNDIR}.$bb_im_ch2_2\n$bb_im_ch2_3" fi fi wait_for_enter } bashburn-3.0.1/func/mountfunc.sh000077500000000000000000000027221153706571400166430ustar00rootroot00000000000000mount_device() { typeset bbdevice echo "$(grep '\(cdrom\|dvd\|cdrw\|cdwriter\)' /etc/fstab)" #grep cdrom /etc/fstab | sort && grep dvd /etc/fstab | sort echo; echo $bb_mnt_ch1_1 echo $bb_mnt_ch1_2 echo $bb_mnt_ch1_3 echo $bb_mnt_ch1_4 echo -n "|> " read -e bbdevice if [[ -z "${bbdevice}" ]] then message "$bb_mnt_ch1_5" else echo "$bb_mnt_ch1_6${bbdevice}..." if mount ${bbdevice} &> /dev/null # FIXME: then message "${bbdevice}$bb_mnt_ch1_7" else message "$bb_mnt_ch1_8\n$bb_mnt_ch1_9\n$bb_mnt_ch1_10" fi fi } umount_device() { typeset bbdevice if (( $(grep -c '\(cdrom\|dvd\|cdrw\|cdwriter\)' /etc/mtab) == 0 )) then echo $bb_mnt_ch2_1 else echo "$(grep '\(cdrom\|dvd\|cdrw\|cdwriter\)' /etc/mtab)" echo -e "\n$bb_mnt_ch2_2" echo -n "|> " read -e bbdevice if umount ${bbdevice} &> /dev/null then echo "${bbdevice}$bb_mnt_ch2_3" else echo $bb_mnt_ch2_4 echo $bb_mnt_ch2_5 fi fi wait_for_enter } eject_device() { typeset bbdevice echo "$(grep '\(cdrom\|dvd\|cdrw\|cdwriter\)' /etc/fstab)" #grep cdrom /etc/fstab | sort && grep dvd /etc/fstab | sort echo $bb_mnt_ch3_1 echo $bb_mnt_ch3_1b echo -n "|> " read -e bbdevice if [[ -z "$bbdevice" ]] then echo $bb_mnt_ch3_1c elif ${BB_EJECT} ${bbdevice} &> /dev/null then echo "${bbdevice}$bb_mnt_ch3_2" else echo $bb_mnt_ch3_3 echo $bb_mnt_ch3_4 fi wait_for_enter } bashburn-3.0.1/func/multifunc.sh000077500000000000000000000044601153706571400166340ustar00rootroot00000000000000# This file contains the functionality for multisession burning burn_function() { typeset multi=$1 # Burn the created ISO-file shopt -s nocaseglob # FIXME: This is evil. We should not be using globbing here. # This should be a specified list. ${BB_CDBURNCMD} $multi dev="$BBCDWRITER" speed="$BBSPEED" \ ${BBPADDING} ${BBDRIVEROPT:+"driveropts=$BBDRIVEROPT"} \ -eject -v "$BBBURNDIR"/*.iso shopt -u nocaseglob echo $bb_multi_burn_5 } burn_multi() { # Call this with the -m option if this is a multisession # Required arg 1 is to be assigned to bb_get_prev_session. # Legal values are 0 or 1. # FIXEM: Add more arg checking. typeset -i seen_m=0 typeset opt typeset OPTIND typeset -i bbget_prev_session typeset isocmd typeset multi= typeset bbmsinfodata while getopts :m opt "$@" do case ${opt} in m) (( seen_m == 1 )) && usage || seen_m=1 ;; h | *) # usage # FIXME: echo 'Improper option to burn_multi' 1>&2 return 1 ;; esac done shift $(( OPTIND - 1 )) bbget_prev_session=$1 (( seen_m )) && multi=-multi #Does an ISO-file exist? if [[ -n "$(find ${BBBURNDIR} -iname '*.iso')" ]] then # Yes it did cat <" ]] && read -ep "$bb_multi_burn_14b" BBLABEL # Create the ISO if $isocmd -r -f -v -J -hide-joliet-trans-tbl \ -A "$BBDESCRIPTION" -p "$BBAUTHOR" -V "$BBLABEL" \ -o "$BBBURNDIR"/BashBurn.iso "$BBBURNDIR" then echo $bb_multi_burn_15 burn_function $multi else # Something went wrong. CD isn't burnt. echo $bb_multi_burn_16 echo "$bb_multi_burn_17 ${BBBURNDIR}" echo $bb_multi_burn_18 fi fi wait_for_enter } bashburn-3.0.1/lang/000077500000000000000000000000001153706571400142515ustar00rootroot00000000000000bashburn-3.0.1/lang/Czech/000077500000000000000000000000001153706571400153055ustar00rootroot00000000000000bashburn-3.0.1/lang/Czech/BashBurn.lang000066400000000000000000000026741153706571400176650ustar00rootroot00000000000000# BashBurn.lang - Czech language bb_conf_check1="BashBurn nebyl nakonfigurovan. Polozkou 'Konfigurace'" bb_conf_check2="je nutne nastavit BashBurn pred spustenim." bb_quit1="Dekuji za pouzivani" bb_quit2="Navstivte " bb_quit3="http://bashburn.dose.se/ " bb_quit4="pro info a updaty. Pokud neni cestina spravna, zkuste English" bb_press_enter="Stisknout klavesu [ENTER] pro pokracovani." bb_no_temp_dir="Adresar pro odkladaci soubory nebyl vytvoren. Je nutne ho vytvorit." bb_text_1="vytvoreni probehlo uspesne!" bb_text_2="Je nutne nakonfigurovat BashBurn pred spustenim vypalovani." bb_text_3="Uzivatel nema prava pro zapis." bb_text_4="Zmenit tuto hodnotu konfigurace nebo nebude mozne vypalovat." bb_text_5="Adresar" bb_text_6="neexistuje, ackoliv je nakonfigurovany." bb_text_7="Detekuji CD mechaniku ...." bb_text_8="Detekovano: " bb_main_menu=MAIN bb_menu_1="Audio" bb_menu_2="Data" bb_menu_3="ISO" bb_menu_4="Bin/Cue" bb_menu_5="Multisession" bb_menu_6="Konfigurace BashBurn" bb_menu_7="Mount/Unmount CD" bb_menu_8="Test nastavenych cest" bb_menu_9="Definice vypalovanych dat" # Edited once again in 1.6 bb_menu_0="Konec" bb_menu_input="Vase volba? " bb_burndir_view="Obsah" bb_burndir_del1="Opravdu vymazat vsechny soubory" bb_burndir_del1b="(y/n)" bb_burndir_del2="byl vymazan." bb_burndir_del3="Mazani preruseno" bb_exit_error="Zvolte " bb_hit_any_key_to_continue='Hit any key to continue' # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/Czech/README000066400000000000000000000005641153706571400161720ustar00rootroot00000000000000BashBurn translation HOWTO It's quite simple, you open up the files in any simple text editor, and translate the english sentences into the your language. When you are finished translating all files, copy them into a directory with the name of your language, and create a tar.gz/bzip2/zip archive of it. Any questions send me a mail at anders.linden@gmail.com /Anders bashburn-3.0.1/lang/Czech/advanced.lang000066400000000000000000000014531153706571400177200ustar00rootroot00000000000000# Czech language file for advanced.lang # FIXME: Not done. # # Number of tabs after each option text will vary between languages. # bb_adv_menutitle="Advanced Options" bb_adv_cdburncmd="CD burning command" bb_adv_dvdburncmd="DVD burning command" bb_adv_isocmd="ISO creation command" bb_adv_dvdblankcmd="DVD blanking command" bb_adv_imgburncmd="CD image burn command" bb_adv_audioripcmd="CD audio ripping command" bb_adv_cdcopycmd="CD copying command" bb_adv_cdcopyopts="CD copying options" bb_adv_mp3enc="MP3 encoder command" bb_adv_mp3dec="MP3 decoder command" bb_adv_oggenc="Ogg encoder command" bb_adv_oggdec="Ogg decoder command" bb_adv_flac="FLAC encoder/decoder command" bb_adv_eject="Disc eject command" bb_adv_norm="Audio normalization command" # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/Czech/audio_menu.lang000066400000000000000000000042401153706571400202750ustar00rootroot00000000000000# audio_menu.lang - Czech language bb_am_enter_1="Stisknout klavesu [ENTER] pro navrat do hlavniho menu." bb_am_enter_2="Vlozit ciste CD a stisknout klavesu [ENTER] pro pokracovani" bb_am_nomp3s="Zadne mp3 v " bb_am_nooggs="Zadne Oggs v " bb_am_noflacs="Zadne Flacs v " bb_am_norm_1=" Normalizuji " bb_am_err_1="[ERROR]: Sorry :( BashBurn nemuze precist cd!" bb_am_conf_1=" Byly zvoleny pro Ripovani tyto Tracky: " bb_am_conf_2="Vse v poradku? (y/n): " bb_am_named_1="Diskove informace..." bb_am_named_2="Stlaceni klavesy [ENTER] pro pokracovani nebo" bb_am_named_3="Zvolte cislo tracku pro ripovani " bb_am_named_4="Rozlozeni nazvu ktere je podporovano!" bb_am_named_5="napr. Zpevak - Pisen, Zpevak_Pisen, Zpevak-Pisen." bb_am_named_6="Jake je jmeno tracku " bb_am_rip_1=" Ripuji track " bb_am_rip_2="Tracks byl zripovan!" bb_am_encfilt=" Prikaz kodovaciho filtru ..." bb_am_menu_title="Audio Menu" bb_am_menu_1="Vytvorit hudebni CD z Mp3s/Oggs/Wavs/Flacs" bb_am_menu_2="Prime vytvoreni hudebniho CD" bb_am_menu_3="Kopirovani hudebniho CD (CD to CD)" bb_am_menu_4="Kopirovani hudebniho CD (CD to harddrive)" bb_am_menu_5="Vypaleni Xmms Playlist" bb_am_menu_6="Vytvorit Mp3 z Wav" bb_am_menu_7="Vytvorit Ogg z Wav" bb_am_menu_8="Vytvorit Flac z Wav" bb_am_menu_9="Vytvorit Mp3 z CD" bb_am_menu_10="Vytvorit Ogg z CD" bb_am_menu_11="Vytvorit Flac z CD" bb_am_menu_0="Zpet" bb_am_menu_input="Vase volba? " bb_am_ch3_1="Vypalovani bylo dokonceno - dekuji za uzivani BashBurn" bb_am_ch3_2="Chyba!!! Nelze vypalit CD." bb_am_ch3_3="Chyba!!! Nelze ripnout track z " bb_am_ch4_1="Track byl ripnuty a ulozeny v " bb_am_ch4_2=" Pro vytvoreni" bb_am_ch4_3="mp3, ogg or flac, je nutne pouzit spravnou polozku menu." bb_am_ch5="Neuspesne naciteni playlistu. Preruseno vypalovani." bb_am_ch6_1=" vytvoren..." bb_am_ch6_2" nelze komprimovat" bb_am_ch6_3="Zadne Wav v " bb_am_ch7_1="Soubor vytvoren..." bb_am_ch9_1=" Vytvoreny Mp3..." bb_am_ch9_2="Mp3 vytvoreny. Soubory jsou ulozeny v " bb_am_ch10_1=" Vytvoreny Oggs..." bb_am_ch10_2="Ogg vytvoreny. Soubory jsou ulozeny v " bb_am_ch11_1="Flac vytvoreny. Soubory jsou ulozeny v " bb_am_ch0="Probiha navrat do hlavniho menu" bb_am_error="Zvolte " bashburn-3.0.1/lang/Czech/bincue.lang000066400000000000000000000007701153706571400174210ustar00rootroot00000000000000# bincue.lang - Czech language bb_press_enter="Stisknout klavesu [ENTER] pro navrat do hlavniho menu." bb_bincue_copy_1="Bin a Cue soubor musi byt nakopirovan/nalinkovan do" bb_bincue_copy_1b="pred spustenim vypalovani." bb_bincue_copy_2="Opravdu pokracovat? (y/n): " bb_bincue_copy_3="Nakopirovat bin/cue soubor do" bb_bincue_copy3b="pred spustenim vypalovani." bb_bincue_burn_1="Vypalovani bylo uspesen dokonceno" bb_bincue_burn_2="Vypalovani selhalo. Pravdepodobne nema uzivatel pristupova prava." bashburn-3.0.1/lang/Czech/burning.lang000066400000000000000000000023751153706571400176230ustar00rootroot00000000000000# burning.lang - Czech language bb_press_enter="Stisknout klavesu [ENTER] pro navrat do hlavniho menu." bb_no_ob="Neni povolen overburn..." bb_burning_tmp_1="Odkladaci soubory v" bb_burning_tmp_1b="byly smazany..." bb_burning_tmp_2="nebyly smazany..." bb_burning_audio_1="hledani" bb_burning_audio_2="Nenalezeny audio soubory v" bb_burning_audio_3="Nelze pouzit normalize..." bb_burning_finish_1="Vypalovani bylo uspesne dokonceno" bb_burning_finish_2="Vypalovani selhalo." bb_burning_finish_3="Soubor(y) byly nalinkovany/zkopirovany do" bb_burning_error="Zadne soubory v " bb_burning_iso_1="Nenalazen ISO v" bb_burning_data_1="Zkousim vytvorit ISO-soubor" bb_burning_data_label="Nazev-label Data CD: " # New in 1.6 bb_burning_data_2="Chyba: Nemohu vytvorit ISO-soubor." bb_burning_data_3="Tip - uzivatel nema prava pro zapis?" bb_burning_fifo_1="Nenalezeny WAV soubory v" bb_burning_fifo_2="Zacatek vypalovani" bb_burning_fifo_2b="tracky!" bb_burning_fifo3="Cisteni nevyuzite fronty" bb_burning_dvd_1="Je toto inicializacni session tohoto DVD?" bb_burning_dvd_2="(Zvol no jestlize chces pripojit novou session do" bb_burning_dvd_3="jiz vypaleneho DVD. Pro ukonceni operace" bb_burning_dvd_4="stiskni [ENTER] bez zadani vstupu)" bb_burning_dvd_5="(yes/no): " bashburn-3.0.1/lang/Czech/check_path.lang000066400000000000000000000007221153706571400202420ustar00rootroot00000000000000# check_path.lang - Czech language bb_cp_1="Aplikace nalezena" bb_cp_2="v" bb_cp_3="Aplikace NENALEZENA!" bb_cp_4="Naistalovat nebo vsechny funkce nemusi fungovat." bb_cp_5="Testuji cesty..." bb_cp_6=" Vypalovaci nastroje" bb_cp_7=" Rippovani" bb_cp_8=" Kodovani a Dekodovani" bb_cp_9=" Misc" bb_cp_10="Poznamka: Instalovany program nebyl nalezen" bb_cp_11="nebo BashBurn nemusi pracovat korektne." bb_cp_12="Stisknout klavesu [ENTER] pro navrat do hlavniho menu." bashburn-3.0.1/lang/Czech/commonfunctions.lang000066400000000000000000000014431153706571400213730ustar00rootroot00000000000000# commonfunctions.lang - Czech language file bb_cf_text1="Na CD jsou pravdepodobne vypalena data. Vymazat CD?" bb_cf_text2="Pouze odpoved 'yes' jestlize medium je prepisovatelny disk. Stiskni" bb_cf_text3="'abort' pro zruseni operace a navrat do hlavniho menu." bb_cf_text4="Ruseni operace ..." bb_cf_text5="Zkousi vypalovat bez vymazani CD. Tato operace se pravdepodobne nepovede." bb_cf_text6="Vymazani selhalo. Vypalovaci proces ukoncen" bb_cdrw_blank1="Probiha vymazani cd..." bb_cdrw_blank2="CDRW bylo uspesne vymazano" bb_cdrw_blank3="Rychle vymazani selhalo. Je nutne pouzit uplne vymazani..." bb_cdrw_blank4="Uplne vymazani probehlo uspesne." bb_cdrw_blank5="Vymazani nebylo dokonceno. Vymente cd." bb_cdrw_blank6="CD/DVD je pravdepodobne ciste (nebo neni CD v mechanice), neni co mazat..." bashburn-3.0.1/lang/Czech/configure.lang000066400000000000000000000164021153706571400201340ustar00rootroot00000000000000# configure.lang - Czech language # Nick - this needs checking by a native speaker bb_conf_menu_writer="CD-Writer" bb_conf_menu_cddev="CD-Reader Device File" bb_conf_menu_cdmnt="CD-Reader Mount Point" bb_conf_menu_speed="Rychlost" bb_conf_menu_blank="Typ vymazani" bb_conf_menu_numdev="Cislo od zarizeni" bb_conf_menu_root="Root adresár" bb_conf_menu_burn="Vypalovaci adresár" bb_conf_menu_label="CD nálepka" #bb_conf_menu10="Copyright" bb_conf_menu_auth="Autor" #bb_conf_menu12="vydavatel" bb_conf_menu_desc="Popis" #bb_conf_menu14="Nazev balicku" bb_conf_menu_norm="Normalizace" bb_conf_menu_dropt="Ovlada nastaveni" bb_conf_menu_fifo="FIFO adresár" bb_conf_menu_deltmp="Smazat temp po skonceni vypalovani" bb_conf_menu_ob="Povolit overburn" #bb_conf_menu20="Ochrana kopirovani" bb_conf_menu_bitrate="Nastaveni Bitrate" bb_conf_menu_lang="Jazyk" bb_conf_menu_dtao="DAO/TAO" bb_conf_menu_gap="Prurva mezi koleje" bb_conf_menu_adv=progresivní bb_conf_menu_apply="Nanáset zmeny" bb_conf_menu_default="Obnov defaultni" bb_conf_menu_back="Zpet" bb_conf_menu_entry="Vase volba?" bb_conf_action_desc="Akce" bb_conf_menu_toptext1=Nastavení bb_conf_menu_toptext2='Stávající cenit' bb_conf_default_is='Nezaplatit dluh je' # End Nick # Everything below still needs fixing # =================================== bb_conf_ch1_1="Vypalovacka predpoklada otevreni na 0,0,0 (For SCSI)" bb_conf_ch1_2="ATAPI:0,0,0 or /dev/hdX (Pro IDE vypalovacky)" bb_conf_ch1_3="(Kde hdX je zarizeni, napr. hdc)" bb_conf_ch1_4="Lze pouzit jmeno zarizeni napr, yahama, sanyo, atd." bb_conf_ch1_5="jestlize " bb_conf_ch1_6="je spravne nakonfigurovano." bb_conf_ch1_7="(Mozne) SCSI DEVICES:" bb_conf_ch1_8="(Mozne) IDE DEVICES:" bb_conf_ch1_9="Zadat cestu k vypalovacce: " bb_conf_ch1_10="Autodetekce mod: napis auto" bb_conf_ch2_1="Cesta k cdrom zarizeni je obvykle neco jako /dev/cdrom or /dev/dvd" bb_conf_ch2_2="Seznam moznych cdrom zarizeni (Podle /etc/fstab): " bb_conf_ch2_3="Zadat cestu k cdrom souboru: " bb_conf_ch3_1="Mountovana cdrom je obvykle neco jako /mnt/cdrom or /mnt/dvd" bb_conf_ch3_2="Seznam moznych cdrom zarizeni (Podle /etc/fstab): " bb_conf_ch3_3="Zadat cestu k cdrom mount bodu: " bb_conf_ch4_1="Poznamka: novejsi cdrecord verze neni defaultni" bb_conf_ch4_2="na speed=1. Pro MMC vyhovujici zarizeni, defaultne" bb_conf_ch4_3="je zapis na maximalni rychlosti, coz neni hlavni" bb_conf_ch4_4="pro nastaveni defaultni rychlosti." bb_conf_ch4_5="Doporucene nastaveni je speed == -1 a nechat" bb_conf_ch4_6="cdrecord aby pouzil interni nastaveni." bb_conf_ch4_7="Zadat rychlost vypalovacky: " bb_conf_ch5_1="Zadat typ mazani CD. Defaultne je all nebo disc" bb_conf_ch5_2="Soucasne nastaveno " bb_conf_ch6_1="Je pouzivan cdreader a cdwriter?" bb_conf_ch6_2="Jestlize ano, stlac 2. Jestlize ne, stlac 1" bb_conf_ch7_1="Root adresar je lokace BashBurnovych shellscriptu." bb_conf_ch7_2="Men, jen kdyz vis co delas." bb_conf_ch7_3="Pro zruseni, " bb_conf_ch7_4=" stiskni enter." bb_conf_ch8_1="Vypalovaci adresar je odkud budou vypalovany soubury." bb_conf_ch8_2="Ujisti se ze mas prava zapisu v tomto adresari." bb_conf_ch9_1="Jmeno, ktere bude pouzito jako mountovaci bod, pouziva" bb_conf_ch9_2="Solaris volume management system a jmeno ktere je" bb_conf_ch9_3="prirazeno disku jako v Microsoft Win32 nebo Apple Mac platform." bb_conf_ch9_4="Soucasny oznaceni je " bb_conf_ch9_4b="Jestlize chcete byt pokazde dotazovani na jmeno" # New in 1.6 bb_conf_ch9_4c="zadejte jako nazev." # New in 1.6 bb_conf_ch9_5="Zvolte nazev CD:" bb_conf_ch10_1="Jestlize chcete zadat copyright na vase CD, napiste ho:" bb_conf_ch11_1="Je mozne zadat udaje o zhotoviteli CD, obvykle" bb_conf_ch11_2="s mailem a telefonem. Je dispozici" bb_conf_ch11_3="128 znaku pro informace." bb_conf_ch11_4="Soucasny autor je " bb_conf_ch11_5="Zvolte Autora CD - hey, to si ty, ne?" bb_conf_ch12_1="Je mozne zadat informace o vydavateli CD," bb_conf_ch12_2="obvykle mail a telefon." bb_conf_ch12_3="Je k dispozici 128 znaku pro informace." bb_conf_ch12_4="Soucasny vydavatel je " bb_conf_ch12_5="Zvol vydavatele CD:" bb_conf_ch13_1="Je mozne zadat popis aplikace" bb_conf_ch13_2="Je k dispozici 128 znaku pro informace" bb_conf_ch13_3="Soucasny popis je:" bb_conf_ch13_4="Zadej popis obsahu CD:" bb_conf_ch14_1="Balicek se sklada z nekolika CDs, napriklad," bb_conf_ch14_2="OS se softwarem je rozlezen na nekolik disku." bb_conf_ch14_3="Zde je vyber. Jestlize zadas pocet" bb_conf_ch14_4="CDcek and cislo kazdeho disku." bb_conf_ch14_5="Soucasny balicek se jmenuje" bb_conf_ch14_6="Zadej jmeno balicku:" bb_conf_ch15_1="Normalizace je pouzivana pro nastaveni hlasitosti wav audio souboru na standardni" bb_conf_ch15_2="zvukovou hladinu. Pouziva se pro vytvareni mp3 mixu, kde" bb_conf_ch15_3="je rozdilna hlasitost songu na ruznych albumech." bb_conf_ch15_4="Soucasne nastaveni " bb_conf_ch15_5="Pouze zadat yes jeslize je normalizacni program nainstalovan, jinak zadat no." bb_conf_ch16_1="Mozno zadat volby driveru, oddelene" bb_conf_ch16_2="carkou. Jestlize si nejsi jisty, stiskni enter bez zapisu." bb_conf_ch17_1="Zvol umisteni FIFO-adresare. Nutne pouze" bb_conf_ch17_2="pro vypalovani rourou, a vetsina standardnich hodnotot je spravna." bb_conf_ch17_3="Pro ukonceni stiskni enter, " bb_conf_ch17_4=" sup." bb_conf_ch17_5=" je soucasny FIFO-adresar)" bb_conf_ch18_1="Smazat soubory v " bb_conf_ch18_2=" po skonceni vypalovani?" bb_conf_ch18_3="Defaultne je nastaveno no, jestlize stisknes enter " bb_conf_ch18_4="muzes opet vypalovat tyto soubory..." bb_conf_ch19_1="Povolit BashBurnu overburn? Tva" bb_conf_ch19_2="vypalovacka to musi popdporovat, a neni jiste" bb_conf_ch19_3="ze to bude pracovat spravne, protoze to muze" bb_conf_ch19_4="vypalit vice dat na CD nez pro kolik je urceno." bb_conf_ch19_5="Defaultne je nastaveno no. (yes/no)" bb_conf_ch20_1="Nastaveni pro audio cds. Obsahuje kopie ochranu?" bb_conf_ch20_2="Defaultne je nastaveno no. " bb_conf_ch20_3="Poznamka: " bb_conf_ch20_4="Neni " bb_conf_ch20_5="nastavena" bb_conf_ch20_6=" ochrana kopie audio souboru" bb_conf_ch20_7="behem vypalovani, je pouze indikovana cdrecordem." bb_conf_ch21_1="Bitrate je hlavni cinitelem kvality audio souboru." bb_conf_ch21_2="Cim vyssi bitrate, tim vysssi je kvalita. Vyssi bitrate" bb_conf_ch21_3="znamena vetsi velikost audio souboru." bb_conf_ch21_4="Konfigurace bitrate pro mp3 a ogg audio soubory." bb_conf_ch21_5="Defaultne je 128. " bb_conf_ch22_1="Nastaveni jazyka BashBurnu, defaultne je nastaveno English." bb_conf_ch22_2="Dostupne jazyky:" bb_conf_ch23_1="Nastaveni typu vypalovani cdrecordem:" bb_conf_ch23_2="SAO (Session at Once)" bb_conf_ch23_2b=" take nazyvano " bb_conf_ch23_2c="DAO (Disk at once)" bb_conf_ch23_3="nebo" bb_conf_ch23_4="TAO (Track at once)" bb_conf_ch23_5=" mode. Defaultne je TAO." bb_conf_ch23_6="Pro dalsi informace, zkus cdrecord manual. (man cdrecord)" bb_conf_ch23_7="Zadej volbu -tao, -sao nebo -dao (SAO a DAO je stejne)" bb_conf_apply_1="Zmeny aplikovany!" bb_conf_apply_2="Nelze zapsat do" bb_conf_apply_3="Mozna pridat chmod 666" bb_conf_def_1="Obnoveno default nastaveni!" bb_conf_def_2="(BBROOTDIR je *no* defaultne - zmen adresar!)" bb_conf_xit_1="Navrat do hlavniho menu" bb_conf_xit_2="Zvolil jsi APLIKOVAT ZMENY pred opustenim, ze?" bb_conf_err="Stiskni enter " # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/Czech/convert_flacs.lang000066400000000000000000000001561153706571400210020ustar00rootroot00000000000000# convert_flacs.lang - Czech language bb_conv_flac_1="Flac-soubry zkonvertovany a pripraveny pro vypalovani" bashburn-3.0.1/lang/Czech/convert_mp3s.lang000066400000000000000000000002141153706571400205670ustar00rootroot00000000000000# convert_mp3s.lang - Czech language bb_conv_mp3_1="rozbaleno" bb_conv_mp3_2="a pripraveno pro vypalovani" bb_conv_mp3_3="nemohu rozbalit" bashburn-3.0.1/lang/Czech/convert_oggs.lang000066400000000000000000000001441153706571400206460ustar00rootroot00000000000000# convert.lang - Czech language bb_conv_ogg="Ogg-soubory rozbaleny and pripraveny pro vypalovani." bashburn-3.0.1/lang/Czech/data_menu.lang000066400000000000000000000015701153706571400201100ustar00rootroot00000000000000# data_menu.lang - Czech language bb_dm_newcd="Vlozit ciste CD a stisknout klavesu [ENTER] pro pokracovani" bb_dm_wait="Stlacit klavesu [ENTER] pro navrat do hlavniho menu." bb_dm_menu_title="Data Menu" bb_dm_menu_1="Vypalit Data" bb_dm_menu_2="Zkopirovat Data CD (CD to CD)" bb_dm_menu_3="Vypalit Data DVD" bb_dm_menu_4="Vymazat CDRW" bb_dm_menu_5="Vymazat DVD" bb_dm_menu_0="Zpet" bb_dm_menu_entry="Vase volba? " bb_dm_ch2_1=" nenamountovano! Namountovat nejdriv..." bb_dm_ch2_2="ISO se naleza v " bb_dm_ch2_3=" Smazat nebo presunout" bb_dm_ch2_4="pred vytvorenim noveho." bb_dm_ch2_5="CD bylo zkopirovano!" bb_dm_ch2_6="Zacatek vypalovani" bb_dm_ch0="Probiha navrat do hlavniho menu.." bb_dm_error="Stisknout enter " bb_dm_cdcopy="Kopirovani obsahu CD do " bb_dm_cdcopy_err1="Chyba pri prenosu. Je spravne CD v mechanice?" bb_dm_cdcopy_err2="(Zkontrolovat informace o chybach)" bashburn-3.0.1/lang/Czech/datadefine.lang000066400000000000000000000020601153706571400202320ustar00rootroot00000000000000# datadefine.lang - Czech language bb_mnt_menu_title="Definice vypalovanych dat" bb_wfe_1="Stisknuti klavesy [ENTER] pro navrat do hlavniho menu." bb_dc_menu_1=" Kopirovat/Linkovat data do " bb_dc_menu_2=" Zobrazit data v " bb_dc_menu_3=" Smazat data v " bb_dc_menu_0=" Navrat do hlavniho menu" bb_dc_explain1="Nyni se nachazite v shellu. Vase soucasna pozice" bb_dc_explain2a="je v " bb_dc_explain2b=" adresari. Pro BashBurn je" bb_dc_explain3="mozne vypalit cokoliv, musite jen nakopirovat nebo nalinkovat vas" bb_dc_explain4="adresar s daty. Je mozne pouzit prikaz cp nebo ln." bb_dc_explain5="Napriklad, pro nalinkovani dat zadat:" bb_dc_explain6=" 'ln -s ./' (bez '')" bb_dc_explain7="a pro kopirovani dat misto ln -s pouzit cp." bb_dc_explain8="Po skonceni, stisknout exit pro navrat do hlavniho menu." bb_dc_ch3_1="Opravdu smazat tyto soubory? <'${BBHEADCOLOR}y${BBCOLOROFF}'/'${BBTABLECOLOR}n${BBCOLOROFF}'>: " bb_dc_ch3_2="Soubory smazany." bb_dc_ch3_3="Soubory nebyly smazany" bb_dc_ch3_4="Zadne soubory v " bb_dc_menu_err="Chyba. Zvolte" bashburn-3.0.1/lang/Czech/iso_menu.lang000066400000000000000000000015221153706571400177660ustar00rootroot00000000000000# iso_menu.lang - Czech language bb_im_wait_1="Stisknout klavesu [ENTER] pro navrat do hlavniho menu." bb_im_menu_title="ISO Menu" bb_im_menu_1="Vypalit ISO" bb_im_menu_2="Vytvorit ISO ze souboru v " bb_im_menu_3="Vytvorit ISO z CD" bb_im_menu_4="Vypalit DVD obraz" bb_im_menu_0="Zpet" bb_im_menu_entry="Vase volba? " bb_im_error_files="Zadne soubory v " bb_im_ch2_1="ISO se nachazi v " bb_im_ch2_2=" Vymazat nebo presunout" bb_im_ch2_3="pres vytvorenim noveho." bb_im_ch2_4="Vytvarim ISO-soubor" bb_im_ch2_4b="Nazev Data CD: " # New in 1.6 bb_im_ch2_5="ISO vytvoreno" bb_im_ch2_6="Chyba: Nemohu vytvorit iso-soubor!" bb_im_ch2_7="Mozna nejsou nastavena prava?" bb_im_ch3_1=" neprimountovano! Nejprve namountuj..." bb_im_ch3_2="Vytvarim ISO z CD v " bb_im_ch0="Probiha navrat do hlavniho menu..." bb_im_error="Stisknout enter " bashburn-3.0.1/lang/Czech/loopback.lang000066400000000000000000000025571153706571400177530ustar00rootroot00000000000000# loopback.lang - Czech language # FIXME: Not done bb_lb_noread="could not be read." bb_lb_no_lb_dir="No loopback directory, creating..." bb_lb_dir_c="Directory created." bb_lb_dir_cf="Creation failed, aborting." bb_lb_no_im_dir="No image directory, creating..." bb_lb_no_temp_dir="No temporary file directory, creating..." bb_lb_sudo1="You must be in the sudoers group to mount the image." bb_lb_sudo2="Enter your password below, if it fails you might not" bb_lb_sudo3="be in that group. In that case fix it and try again." bb_lb_sudo4="You must also have support for loopback devices" bb_lb_sudo5="compiled into your kernel or as a module," bb_lb_sudo6="or the next step will fail." bb_lb_mount="Image mounted." bb_lb_mount_fail="Mount failed, aborting." bb_lb_cp_cont="Copying contents, please wait..." bb_lb_in_file="You are now in the image file system. Edit as you wish, 'exit' to return." bb_lb_change1="Did you change anything? (If you did, a new image" bb_lb_change2="must be created which will take a while) (y/n)" bb_lb_change3="Data already exists in" bb_lb_change4="it will be deleted if you continue." bb_lb_change5="Do you wish to go ahead? (y/n)" bb_lb_change6="Creating new image, please wait..." bb_lb_change7="New image created at" bb_lb_change8="Aborting, not deleting data. Changes to image discarded." bb_lb_change9="No changes made, skipping image recreation." bashburn-3.0.1/lang/Czech/mount.lang000066400000000000000000000030261153706571400173130ustar00rootroot00000000000000# mount.lang - Czech language bb_mnt_enter_1="Stisknout klavesu [ENTER] pro navrat do hlavniho menu" bb_mnt_menu_title="Mount/Unmount zarizeni" bb_mnt_menu_1="Mount zarizeni" bb_mnt_menu_2="Unmount zarizeni" bb_mnt_menu_3="Vysunout zarizeni" bb_mnt_menu_0="Zpet" bb_mnt_menu_input="Vase volba? " bb_mnt_ch1_1="Jake zarizeni chcete mountovat? Zvolte napr. /mnt/cdrom" bb_mnt_ch1_2="(Je nutne zvolit mountovaci bod, ne soubor zarizeni. Napriklad" bb_mnt_ch1_3="/mnt/cdrom funguje, ale /dev/cdrom nebude funkcni. Pokracovani" bb_mnt_ch1_4="stiskem klavesy ENTER bez ulozeni zmen." bb_mnt_ch1_5="Mountovani preruseno!" bb_mnt_ch1_6="Mountuji " bb_mnt_ch1_7=" primountovano." bb_mnt_ch1_8="Mountovani selhalo. Mozna nejsou nastavena spravna prava," bb_mnt_ch1_9="zarizeni je jiz namountovano, neni CD v mechanice" bb_mnt_ch1_10="nebo chyba v zapise cesty k zarizeni?" bb_mnt_ch2_1="Zde neni pravdepodobne namoutovane zarizeni." bb_mnt_ch2_2="Jake zarizeni chcete unmountovat? Zvolte napr. /mnt/cdrom" bb_mnt_ch2_3=" unmountovano." bb_mnt_ch2_4="Unmountovani selhalo. Mozna nejsou nastavena prava" bb_mnt_ch2_5="nebo spatne zadana cesta k zarizeni?" bb_mnt_ch3_1="jake zarizeni chcete vysunout? Zvolte napr. /mnt/cdrom" bb_mnt_ch3_1b="nebo pokracujte stiskem klavesy enter bez ulozeni zmen." bb_mnt_ch3_1c="Preruseno!" bb_mnt_ch3_2=" vysunuto. (Vlozeni neni oznamovano ;-) )" bb_mnt_ch3_3="Vysunuti selhalo. Mozna nejsou nastavena prava" bb_mnt_ch3_4="nebo spaten zadana cesta k zarizeni?" bb_mnt_ch0="Zpet do hlavniho menu" bb_mnt_error="Zvolte " bashburn-3.0.1/lang/Czech/multi.lang000066400000000000000000000033371153706571400173100ustar00rootroot00000000000000# multi.lang - Czech language bb_multi_enter_1="Stisknout klavesu [ENTER] pro navrat do hlavniho menu." bb_multi_enter_2="Stisknout klavesu [ENTER] pro pokracovani." bb_multi_burn_1="ISO nalezen..." bb_multi_burn_2=" jestlize NENI prvni session vypalena na multisession CD" bb_multi_burn_3=" toto ISO *MUSI* byt vytvoreno za funkcni predchozi session" bb_multi_burn_4=" Proc? protoze tato session muze byt nevidetelna anebo jinak nepouzitelna" bb_multi_burn_5="CD bylo vypaleno..." bb_multi_burn_6=" ISO nebylo nalezeno, zkuste vytvorit jine..." bb_multi_burn_7="Pro ziskani inforamci o predchozi session je mozne pomoci -msinfo" bb_multi_burn_8="informace msinfo jsou potrebne pro:" bb_multi_burn_9="jestlize zavorky" bb_multi_burn_9b="obsahuji dve cisla oddelene carkou - VSE JE OK!" bb_multi_burn_10="chybove hlaseni konci: \"cdrecord: Cannot read session offset\" znamena ze nove CD je prazdne" bb_multi_burn_11="chybove hlaseni: \"cdrecord: No disk / Wrong disk!\" znamena prazdnou mechaniku" bb_multi_burn_12="obdrzena spravna multisession data, pridavani parametru:" bb_multi_burn_13="Prvni paleni na multisession CD nepotrebuje predchozi session" bb_multi_burn_14="Now, make the ISO if possible..." bb_multi_burn_14b="Nazev Data CD: " # New in 1.6 bb_multi_burn_15="ISO vytvoreno" bb_multi_burn_16="Chyba: Nemohu vytvorit iso-soubor." bb_multi_burn_17="Mozna... Neni soubor v" bb_multi_burn_18="Mozna chybi prava zapisu???" bb_multi_menu_title="Multisession CD" bb_multi_menu_1="Prvni paleni na Multisession CD" bb_multi_menu_2="Pokracovani Multisession CD" bb_multi_menu_3="Ukonceni Multisession CD" bb_multi_menu_0="Zpet" bb_multi_menu_entry="Vase volba " bb_multi_ch0="Navrat do hlavniho menu..." bb_multi_err="Stisknout enter " bashburn-3.0.1/lang/English/000077500000000000000000000000001153706571400156425ustar00rootroot00000000000000bashburn-3.0.1/lang/English/BashBurn.lang000066400000000000000000000026341153706571400202160ustar00rootroot00000000000000# BashBurn.lang - English language bb_conf_check1="BashBurn has not been configured. Enter 'Configure' and" bb_conf_check2='setup BashBurn before trying to use it.' bb_quit1='Thank you for using ' bb_quit2='Visit ' bb_quit3='http://bashburn.dose.se/ ' bb_quit4='for info and updates.' bb_press_enter='Press [ENTER] to continue.' bb_no_temp_dir='Directory for temporary files does not exist. Attempting to create it.' bb_text_1='created succesfully!' bb_text_2='Configure BashBurn before attempting to burn.' bb_text_3='You do not have write permission for' bb_text_4='Change this value in config or you will not be able to burn anything.' bb_text_5='The directory' bb_text_6='does not exist, although you wrote it into the configfile' bb_text_7='Detecting CD Writer...' bb_text_8='Detected: ' bb_main_menu="Main Menu" bb_menu_1=Audio bb_menu_2=Data bb_menu_3=ISO bb_menu_4=Bin/Cue bb_menu_5=Multisession bb_menu_6='Configure BashBurn' bb_menu_7='Mount/Unmount CD' bb_menu_8='Check Program Paths' bb_menu_9='Define burn data' bb_menu_0=Quit bb_menu_adv="Advanced Settings" bb_menu_input='Your Choice? ' bb_burndir_view='Contents of' bb_burndir_del1='Do you really want to erase all files in' bb_burndir_del1b='(y/n)' bb_burndir_del2='is cleared.' bb_burndir_del3='Deletion cancelled' bb_exit_error='Please choose ' bb_hit_any_key_to_continue='Hit any key to continue' # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/English/README000066400000000000000000000005641153706571400165270ustar00rootroot00000000000000BashBurn translation HOWTO It's quite simple, you open up the files in any simple text editor, and translate the english sentences into the your language. When you are finished translating all files, copy them into a directory with the name of your language, and create a tar.gz/bzip2/zip archive of it. Any questions send me a mail at anders.linden@gmail.com /Anders bashburn-3.0.1/lang/English/advanced.lang000066400000000000000000000061071153706571400202560ustar00rootroot00000000000000# English language file for advanced.lang bb_adv_menutitle='Advanced Options' bb_adv_cdburncmd='CD burning command' bb_adv_dvdburncmd='DVD burning command' bb_adv_dvdburncmdopts='DVD burning options' bb_adv_isocmd='ISO creation command' bb_adv_dvdblankcmd='DVD blanking command' bb_adv_imgburncmd='CD image burn command' bb_adv_audioripcmd='CD audio ripping command' bb_adv_cdcopycmd='CD copying command' bb_adv_cdcopyopts='CD copying options' bb_adv_mp3enc='MP3 encoder command' bb_adv_mp3dec='MP3 decoder command' bb_adv_oggenc='Ogg encoder command' bb_adv_oggdec='Ogg decoder command' bb_adv_flac='FLAC encoder/decoder command' bb_adv_eject='Disc eject command' bb_adv_norm='Audio normalization command' bb_adv_back=Back bb_adv_action_desc=Actions bb_adv_error='Please enter' bb_this_is_the_cmd="This is the command used to" bb_curr_cmd="The current command is:" bb_adv_cdburncmd_help=\ "${bb_this_is_the_cmd} burn a CD. ${bb_curr_cmd} ${BBOPTIONCOLOR}${BB_CDBURNCMD}${BBCOLOROFF}" bb_adv_dvdburncmd_help=\ "${bb_this_is_the_cmd} burn a DVD. ${bb_curr_cmd} ${BBOPTIONCOLOR}${BB_DVDBURNCMD}${BBCOLOROFF}" bb_adv_dvdburncmdopts_help=\ "These are the DVD burning options used. Only change these if you know what you are doing. In almost all cases the defaults should be fine. The current options are: ${BBOPTIONCOLOR}${BB_DVDBURNCMDOPTS}${BBCOLOROFF}" bb_adv_isocmd_help=\ "${bb_this_is_the_cmd} create ISO-images. ${bb_curr_cmd} ${BBOPTIONCOLOR}${BB_ISOCMD}${BBCOLOROFF}" bb_adv_dvdblankcmd_help=\ "${bb_this_is_the_cmd} blank DVDs. ${bb_curr_cmd} ${BBOPTIONCOLOR}${BB_DVDBLANK}${BBCOLOROFF}" bb_adv_imgburncmd_help=\ "${bb_this_is_the_cmd} burn CD images. ${bb_curr_cmd} ${BBOPTIONCOLOR}${BB_CDIMAGECMD}${BBCOLOROFF}" bb_adv_audioripcmd_help=\ "${bb_this_is_the_cmd} rip audio CDs. ${bb_curr_cmd} ${BBOPTIONCOLOR}${BB_CDAUDIORIP}${BBCOLOROFF}" bb_adv_cdcopycmd_help=\ "${bb_this_is_the_cmd} copy data CDs. ${bb_curr_cmd} ${BBOPTIONCOLOR}${BB_READCD}${BBCOLOROFF}" bb_adv_cdcopyopts_help=\ "These are the options used when copying a data CD. Only change these options if you know what you are doing. In almost all cases the defaults should be fine. The current options are: ${BBOPTIONCOLOR}${BB_READ_OPTS}${BBCOLOROFF}" bb_adv_mp3enc_help=\ "${bb_this_is_the_cmd} encode MP3 files. ${bb_curr_cmd} ${BBOPTIONCOLOR}${BB_MP3ENC}${BBCOLOROFF}" bb_adv_mp3dec_help=\ "${bb_this_is_the_cmd} decode MP3 files. ${bb_curr_cmd} ${BBOPTIONCOLOR}${BB_MP3DEC}${BBCOLOROFF}" bb_adv_oggenc_help=\ "${bb_this_is_the_cmd} encode Ogg files. ${bb_curr_cmd} ${BBOPTIONCOLOR}${BB_OGGENC}${BBCOLOROFF}" bb_adv_oggdec_help=\ "${bb_this_is_the_cmd} decode Ogg files. ${bb_curr_cmd} ${BBOPTIONCOLOR}${BB_OGGDEC}${BBCOLOROFF}" bb_adv_flac_help=\ "${bb_this_is_the_cmd} encode/decode FLAC files. ${bb_curr_cmd} ${BBOPTIONCOLOR}${BB_FLACCMD}${BBCOLOROFF}" bb_adv_eject_help=\ "${bb_this_is_the_cmd} eject the disc. ${bb_curr_cmd} ${BBOPTIONCOLOR}${BB_EJECT}${BBCOLOROFF}" bb_adv_norm_help=\ "${bb_this_is_the_cmd} normalize audio files. ${bb_curr_cmd} ${BBOPTIONCOLOR}${BB_NORMCMD}${BBCOLOROFF}" # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/English/audio_menu.lang000066400000000000000000000041271153706571400206360ustar00rootroot00000000000000# audio_menu.lang - English language bb_am_enter_1='Press [ENTER] to return to main menu.' bb_am_enter_2='Insert blank CD and then press [ENTER] to go on : ' bb_am_nomp3s='No mp3s in ' bb_am_nooggs='No Oggs in ' bb_am_noflacs='No Flacs in ' bb_am_norm_1=' Normalizing ' bb_am_err_1='[ERROR]: Sorry :( BashBurn can not read the cd!' bb_am_conf_1=' You selected to Rip these Tracks: ' bb_am_conf_2='Is this Correct? (y/n): ' bb_am_named_1='Disc information...' bb_am_named_2='Press [ENTER] to continue or' bb_am_named_3='Enter a track number to rip ' bb_am_named_4='Spaces in names is now supported!' bb_am_named_5='ie. Artist - Song, Artist_Song, Artist-Song.' bb_am_named_6='What is the name of track ' bb_am_rip_1=' Ripping track ' bb_am_rip_2='Tracks ripped!' bb_am_encfilt=' Encode Filter Command...' bb_am_menu_title='Audio Menu' bb_am_menu_1='Burn Audio from Mp3s/Oggs/Wavs/Flacs' bb_am_menu_2='Burn Audio Directly' bb_am_menu_3='Copy Audio CD [CD to CD]' bb_am_menu_4='Copy Audio CD [CD to harddrive]' bb_am_menu_5='Burn M3U Playlist' bb_am_menu_6='Create Mp3s from Wavs' bb_am_menu_7='Create Oggs from Wavs' bb_am_menu_8='Create Flacs from Wavs' bb_am_menu_9='Create Mp3s from CD' bb_am_menu_10='Create Oggs from CD' bb_am_menu_11='Create Flacs from CD' bb_am_menu_0=Back bb_am_menu_input='Your Choice? ' bb_am_ch3_1='Burning complete - Thanks for using BashBurn' bb_am_ch3_2='Error occurred! Could not burn the CD.' bb_am_ch3_3='Error occurred! Could not rip the tracks from ' bb_am_ch4_1='Tracks ripped and stored in ' bb_am_ch4_2=' If you want to create' bb_am_ch4_3='mp3s, oggs or flacs, use the respective function from the menu.' bb_am_ch5='Read of playlist failed. Not attempting to burn.' bb_am_ch6_1=' created...' bb_am_ch6_2=' could not be compressed' bb_am_ch6_3='No Wavs in ' bb_am_ch7_1='File created...' bb_am_ch9_1=' Creating Mp3s...' bb_am_ch9_2='Mp3s created. Files are located under ' bb_am_ch10_1=' Creating Oggs...' bb_am_ch10_2='Oggs created. Files are located under ' bb_am_ch11_1='Flacs created. Files are located under ' bb_am_ch0='Returning to main menu' bb_am_error='Please choose ' bashburn-3.0.1/lang/English/bincue.lang000066400000000000000000000007731153706571400177610ustar00rootroot00000000000000# bincue.lang - English language bb_press_enter='Press [ENTER] to return to main menu.' bb_bincue_copy_1='Bin and Cue file must be copied/linked to' bb_bincue_copy_1b='before attempting to burn.' bb_bincue_copy_2='Have you done that? (y/n): ' bb_bincue_copy_3='Please copy bin/cue file to' bb_bincue_copy3b='before trying to burn.' bb_bincue_burn_1='Burning finished' bb_bincue_burn_2='Burning failed. Maybe you do not have the right permissions?' # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/English/burning.lang000066400000000000000000000023211153706571400201470ustar00rootroot00000000000000# burning.lang - English language bb_press_enter='Press [ENTER] to return to main menu.' bb_no_ob='Not enabling overburn...' bb_burning_tmp_1='Temporary files in' bb_burning_tmp_1b='deleted...' bb_burning_tmp_2='not deleted...' bb_burning_audio_1=found bb_burning_audio_2='No audiofiles in' bb_burning_audio_3='Not using Normalize...' bb_burning_finish_1='Burning finished' bb_burning_finish_2='Burning failed.' bb_burning_finish_3='File(s) linked/copied to' bb_burning_error='No files in ' bb_burning_iso_1='No ISO found in' bb_burning_data_1='Trying to create ISO-file' bb_burning_data_label='Label of your Data CD: ' # New in 1.6 bb_burning_data_2='Error: Could not create an ISO-file.' bb_burning_data_3='Maybe you need write permissions?' bb_burning_fifo_1='No WAV files in' bb_burning_fifo_2='Going to burn' bb_burning_fifo_2b='tracks!' bb_burning_fifo3='Clean unused fifos' bb_burning_dvd_1='Is this the initial session of this DVD?' bb_burning_dvd_2='(Enter no if you want to merge a new session to' bb_burning_dvd_3='an already burnt DVD. To cancel this operation' bb_burning_dvd_4='press [ENTER] without entering anything)' bb_burning_dvd_5='(yes/no): ' # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/English/check_path.lang000066400000000000000000000007601153706571400206010ustar00rootroot00000000000000# check_path.lang - English language bb_cp_1='Application Found' bb_cp_2=in bb_cp_3='Application NOT FOUND!' bb_cp_4='Install it or all the features may not work.' bb_cp_5='Checking Paths...' bb_cp_6=' Burning Tools' bb_cp_7=' Rippers' bb_cp_8=' Encoders and Decoders' bb_cp_9=' Misc' bb_cp_10='NOTE: Install the programs that were not found' bb_cp_11='or BashBurn may not work correctly.' bb_cp_12='Press [ENTER] to return to main menu.' # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/English/commonfunctions.lang000066400000000000000000000021041153706571400217230ustar00rootroot00000000000000# commonfunctions.lang - English language file bb_cf_text1='CD seems to already be written to. Do you wish to blank it?' bb_cf_text2='Only answer 'yes' if the media is a rewritable disk. Enter' bb_cf_text3="'abort' if you wish to cancel and return to the menu." bb_cf_text4='Aborting...' bb_cf_text5='Trying to burn without blanking CD. This will probably fail.' bb_cf_text6='Blanking failed. Burn process aborted' bb_cdrw_blank1='Blanking cd...' bb_cdrw_blank2='CDRW blanked' bb_cdrw_blank3='Plain blanking failed. Trying to force...' bb_cdrw_blank4='Forced blanking succeeded.' bb_cdrw_blank5='Blanking was not successful. You should replace this cd.' bb_cdrw_blank6='CD/DVD seems to be blank (Or no CD in drive), not blanking...' bb_dvd_blank1='Fast or total blanking?' bb_dvd_blank2='Enter yes for fast, ' bb_dvd_blank3='or no for a total formatting.' bb_dvd_blank4='Enter [ENTER] without entering anything' bb_dvd_blank5='To cancel the operation.' bb_menu_error_range="${BBTABLECOLOR}Error${BBCOLOROFF}: Input must be in range" # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/English/configure.lang000066400000000000000000000202471153706571400204730ustar00rootroot00000000000000# configure.lang - English language bb_conf_menu_writer=CD-Writer bb_conf_menu_cddev="CD-Reader Device File" bb_conf_menu_cdmnt="CD-Reader Mount Point" bb_conf_menu_speed=Speed bb_conf_menu_blank="Blanking Type" bb_conf_menu_numdev="Number of Devices" bb_conf_menu_root="Root Directory" bb_conf_menu_burn="Burn Directory" bb_conf_menu_label="CD Label" bb_conf_menu_auth=Author bb_conf_menu_desc=Description bb_conf_menu_norm=Normalize bb_conf_menu_dropt="Driver options" bb_conf_menu_fifo="FIFO directory" bb_conf_menu_deltmp="Delete temp after burn" bb_conf_menu_ob="Allow overburn" bb_conf_menu_bitrate="Set the Bitrate" bb_conf_menu_lang=Language bb_conf_menu_dtao=DAO/TAO bb_conf_menu_gap="Gap between tracks" bb_conf_menu_adv=Advanced bb_conf_menu_apply="Apply changes" bb_conf_menu_default="Apply defaults" bb_conf_menu_revert="Revert changes" bb_conf_menu_back=Back bb_conf_menu_entry="Your Choice?" bb_conf_action_desc=Actions bb_conf_menu_toptext1=Setup bb_conf_menu_toptext2='Current value' bb_conf_default_is='Default is' bb_conf_cancel_quote='To cancel, just press [ENTER].' bb_conf_ch_writer=\ "The writer is supposed to be entered as ${BBOPTIONCOLOR}0,0,0${BBCOLOROFF} for SCSI or /dev/hdX for IDE writers (Where X is a driver letter). For auto-detect, enter auto. ${bb_conf_cancel_quote} The current setting is: ${BBOPTIONCOLOR}${BBCDWRITER}${BBCOLOROFF}, and below is a list of possible writers on your system (According to /etc/fstab)." bb_conf_ch_cddev="The device file of your reader is usually something like ${BBOPTIONCOLOR}/dev/cdrom${BBCOLOROFF} or ${BBOPTIONCOLOR}/dev/dvd${BBCOLOROFF}. The current setting is: ${BBOPTIONCOLOR}${BBCDROM}${BBCOLOROFF}, and below is a list of possible readers on your system (According to /etc/fstab). ${bb_conf_cancel_quote}" bb_conf_ch_cdmnt="The mountpoint of your reader is usually something like ${BBOPTIONCOLOR}/mnt/cdrom${BBCOLOROFF} or ${BBOPTIONCOLOR}/mnt/dvd${BBCOLOROFF}. The current setting is: ${BBOPTIONCOLOR}${BBCDMNT}${BBCOLOROFF}, and below is a list of possible readers on your system (According to /etc/fstab). ${bb_conf_cancel_quote}" bb_conf_ch_speed="Unless you have problems burning discs, you should leave this option as ${BBOPTIONCOLOR}-1${BBCOLOROFF} and use the drive specific defaults. For most recorders the default is to write at maximum speed. The current setting is: ${BBOPTIONCOLOR}${BBSPEED}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_blanking=\ "Here you set the default blanking type. The default value is ${BBOPTIONCOLOR}fast${BBCOLOROFF}. This blanks the entire disc and therefore can take some time. The current setting is: ${BBOPTIONCOLOR}${BBBLANKING}${BBCOLOROFF}, and below is a list of possible blanking types. ${bb_conf_cancel_quote}" bb_conf_ch_numdev=\ "Here you specify the number of disc drives in your system. If you are using one drive as both reader and writer, enter ${BBOPTIONCOLOR}1${BBCOLOROFF}, otherwise enter ${BBOPTIONCOLOR}2${BBCOLOROFF}. The current setting is: ${BBOPTIONCOLOR}${BBNUMDEV}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_root="This options specifies the location of the BashBurn scripts. You should really have no reason to change this value, only do so if you know what you're doing. The current setting is: ${BBOPTIONCOLOR}${BBROOTDIR}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_burndir=\ "This option specifies where BashBurn will look for data to burn. Be sure to have write permissions to this location. The current setting is: ${BBOPTIONCOLOR}${BBBURNDIR}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_label="This option specifies the name of the disc to be burnt. It can be any string of text up to 32 characters such as ${BBOPTIONCOLOR}My Pictures${BBCOLOROFF} or ${BBOPTIONCOLOR}Vacation Movies${BBCOLOROFF}. If you want to be asked\n for a label each time. enter ${BBOPTIONCOLOR}${BBCOLOROFF} as the label. The current setting is ${BBOPTIONCOLOR}${BBLABEL}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_author="This option describes the preparer of the disc, usually with an e-mail and phone number. There is space for 128 characters of information. The current setting is: ${BBOPTIONCOLOR}${BBAUTHOR}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_desc=\ "This option describes what will be burnt to the disc. There is space for 128 characters of information. The current setting is: ${BBOPTIONCOLOR}${BBDESCRIPTION}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_norm=\ "Normalization is the process of adjusting the volume of audio files to a standard level. This is useful for things like creating mix-CDs where different recording levels on different songs can cause the volume to vary greatly from song to song. This option enables ${BBHEADCOLOR}(yes)${BBCOLOROFF} or disables ${BBTABLECOLOR}(no)${BBCOLOROFF} this feature. Current option is: ${BBOPTIONCOLOR}${BBNORMALIZE}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_dropts=\ "This option specifies the driver specific options used when burning a disc. One example is ${BBOPTIONCOLOR}burnfree${BBCOLOROFF} for avoiding buffer underruns. You can specify several options by separating them with a comma. This option is not mandatory and can be skipped. Current setting is: ${BBOPTIONCOLOR}${BBDRIVEROPT}${BBCOLOROFF}, and below is a list of possible options. ${bb_conf_cancel_quote}\n\n${BBSUBCOLOR}${bb_text_7}${BBCOLOROFF}\n" bb_conf_ch_fifo=\ "This option specifies the path of the FIFO-directory which is used for piped audio burning. There is usually no reason to change this, the default should work fine in most cases. Current setting is: ${BBOPTIONCOLOR}${BBFIFODIR}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_tempdel=\ "If you want BashBurn to remove the files in ${BBBURNDIR} after a disc has been burnt, enter ${BBHEADCOLOR}yes${BBCOLOROFF} here. Otherwise enter ${BBTABLECOLOR}no${BBCOLOROFF} to leave them. Current setting is: ${BBOPTIONCOLOR}${BBDELTEMPBURN}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_ob="Overburn is trying to burn more onto a disc than it was designed for. This will not always work, and when it does only a few MB will fit. Your burner must support this feature and there is no guarantee that the disc will be readable in all readers. This option enables ${BBHEADCOLOR}(yes)${BBCOLOROFF} or disables ${BBTABLECOLOR}(no)${BBCOLOROFF} this feature. The current setting is: ${BBOPTIONCOLOR}${BBOVERBURN}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_bitrate=\ "For audio files, the bitrate is the main influence on quality. With higher bitrate comes better quality, but also bigger file size. This option specifies which bitrate to use when encoding audio files. The unit is in kbit and should be entered in multiples of 32. The current setting is: ${BBOPTIONCOLOR}${BBBITRATE}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_lang=\ "This option sets the language BashBurn's interface will be shown in. The current setting is: ${BBOPTIONCOLOR}${BBLANG}${BBCOLOROFF}, and below is a list of possible languages to choose from. ${bb_conf_cancel_quote}" bb_conf_ch_dtao="This option tells BashBurn to burn in SAO (Session at Once) or TAO (Track at Once) mode. The default value TAO ${BBOPTIONCOLOR}(-tao)${BBCOLOROFF} is usually fine but in some cases SAO ${BBOPTIONCOLOR}(-sao)${BBCOLOROFF} must be used. The current setting is: ${BBOPTIONCOLOR}${BBDTAO}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_pad=\ "This option tells BashBurn to enable ${BBHEADCOLOR}(-pad)${BBCOLOROFF} or disable ${BBTABLECOLOR}(-nopad)${BBCOLOROFF} gaps between audio tracks. If you want to burn an audio CD without gaps between tracks (For instance a live recording), disable this option. The current setting is ${BBOPTIONCOLOR}${BBPADDING}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_apply_1='Changes applied!' bb_conf_apply_2='Could not write into' bb_conf_apply_3='You might want to chmod 666' bb_conf_def_1='Defaults applied!' bb_conf_def_2="(BBROOTDIR has *no* default - you have to change it!)" bb_conf_xit_1='Back to main menu' bb_conf_xit_2=\ "It appears you changed an option but did not apply it.\n Here you can select '${BBTABLECOLOR}n${BBCOLOROFF}' to go back and do so; If you wish to ignore the change, select '${BBHEADCOLOR}y${BBCOLOROFF}'.\n" bb_conf_err='Please enter ' # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/English/convert_flacs.lang000066400000000000000000000002341153706571400213340ustar00rootroot00000000000000# convert_flacs.lang - English version bb_conv_flac_1='Flac-files converted and ready to be burnt' # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/English/convert_mp3s.lang000066400000000000000000000003131153706571400211240ustar00rootroot00000000000000# convert_mp3s.lang - English language bb_conv_mp3_1=decompressed bb_conv_mp3_2='and ready to be burnt' bb_conv_mp3_3='could not be decompressed' # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/English/convert_oggs.lang000066400000000000000000000002271153706571400212050ustar00rootroot00000000000000# convert.lang - English language bb_conv_ogg='Ogg-files decompressed and ready to be burnt.' # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/English/data_menu.lang000066400000000000000000000016141153706571400204440ustar00rootroot00000000000000# data_menu.lang - English language bb_dm_newcd='Insert blank CD and then press [ENTER] to go on' bb_dm_wait='Press [ENTER] to return to main menu.' bb_dm_menu_title='Data Menu' bb_dm_menu_1='Burn Data' bb_dm_menu_2='Copy Data CD (CD to CD)' bb_dm_menu_3='Burn Data DVD' bb_dm_menu_4='Format CDRW' bb_dm_menu_5='Format DVD' bb_dm_menu_0=Back bb_dm_menu_entry='Your Choice? ' bb_dm_ch2_1=' not mounted! Mount it first please...' bb_dm_ch2_2='An ISO exists in ' bb_dm_ch2_3=' Delete or move it' bb_dm_ch2_4='before attempting to create a new one.' bb_dm_ch2_5='CD copied!' bb_dm_ch2_6='Starting burn' bb_dm_ch0='Returning to menu..' bb_dm_error='Please enter ' bb_dm_cdcopy='Copying CD contents to ' bb_dm_cdcopy_err1='Error in transfer. Are you sure you have the correct CD in the drive?' bb_dm_cdcopy_err2='(Check any error messages for hints)' # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/English/datadefine.lang000066400000000000000000000021251153706571400205710ustar00rootroot00000000000000# datadefine.lang - English language bb_mnt_menu_title='Define burn data' bb_wfe_1='Press [ENTER] to return to menu.' bb_dc_menu_1=' Copy/Link data to ' bb_dc_menu_2=' View data in ' bb_dc_menu_3=' Delete data in ' bb_dc_menu_0=' Back' bb_dc_explain1='You are now put into a shell. Your current position' bb_dc_explain2a='is in the ' bb_dc_explain2b=' directory. For BashBurn to be' bb_dc_explain3='able to burn anything, you must copy or link your' bb_dc_explain4='data to this directory. You do this by using the cp or ln' bb_dc_explain5='commands. For instance, to link data here, you enter:' bb_dc_explain6=" 'ln -s ./' (Without the '')" bb_dc_explain7='and to copy data you replace the ln -s with cp.' bb_dc_explain8='When you are finished, enter exit to return to the menu.' bb_dc_ch3_1="Do you really want to delete these files? <'${BBHEADCOLOR}y${BBCOLOROFF}'/'${BBTABLECOLOR}n${BBCOLOROFF}'>: " bb_dc_ch3_2='Files deleted.' bb_dc_ch3_3='Files not deleted' bb_dc_ch3_4='No files in ' bb_dc_menu_err='Error. Please choose' # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/English/iso_menu.lang000066400000000000000000000020151153706571400203210ustar00rootroot00000000000000# iso_menu.lang - English language bb_im_wait_1='Press [ENTER] to return to menu.' bb_im_menu_title='ISO Menu' bb_im_menu_1='Burn ISO' bb_im_menu_2='Create ISO from files in ' bb_im_menu_3='Create ISO from CD' bb_im_menu_4='Burn DVD image' bb_im_menu_5='Mount image' bb_im_menu_0='Back' bb_im_menu_entry='Your Choice? ' bb_im_error_files='No files in ' bb_im_ch2_1='An ISO exists in ' bb_im_ch2_2=' Delete or move it' bb_im_ch2_3='before attempting to create a new one.' bb_im_ch2_4='Trying to create ISO-file' bb_im_ch2_4b='Label of your Data CD: ' bb_im_ch2_5='ISO created' bb_im_ch2_6='Error: Could not create an iso-file!' bb_im_ch2_7='Maybe you do not have write permissions?' bb_im_ch3_1=' not mounted! Do that first...' bb_im_ch3_2='Creating ISO from CD in ' bb_im_ch5_1='Enter path to image file to be mounted:' bb_im_ch5_2='(Or just press enter to cancel)' bb_im_ch5_3='No file name given, aborting.' bb_im_ch0='Returning to menu...' bb_im_error='Please enter ' # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/English/loopback.lang000066400000000000000000000026301153706571400203000ustar00rootroot00000000000000# loopback.lang - English language bb_lb_noread='could not be read.' bb_lb_no_lb_dir='No loopback directory, creating...' bb_lb_dir_c='Directory created.' bb_lb_dir_cf='Creation failed, aborting.' bb_lb_no_im_dir='No image directory, creating...' bb_lb_no_temp_dir='No temporary file directory, creating...' bb_lb_sudo1='You must be in the sudoers group to mount the image.' bb_lb_sudo2='Enter your password below, if it fails you might not' bb_lb_sudo3='be in that group. In that case fix it and try again.' bb_lb_sudo4='You must also have support for loopback devices' bb_lb_sudo5='compiled into your kernel or as a module,' bb_lb_sudo6='or the next step will fail.' bb_lb_mount='Image mounted.' bb_lb_mount_fail='Mount failed, aborting.' bb_lb_cp_cont='Copying contents, please wait...' bb_lb_in_file="You are now in the image file system. Edit as you wish, 'exit' to return." bb_lb_change1='Did you change anything? (If you did, a new image' bb_lb_change2='must be created which will take a while) (y/n)' bb_lb_change3='Data already exists in' bb_lb_change4='it will be deleted if you continue.' bb_lb_change5='Do you wish to go ahead? (y/n)' bb_lb_change6='Creating new image, please wait...' bb_lb_change7='New image created at' bb_lb_change8='Aborting, not deleting data. Changes to image discarded.' bb_lb_change9='No changes made, skipping image recreation.' # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/English/mount.lang000066400000000000000000000031261153706571400176510ustar00rootroot00000000000000# mount.lang - English language bb_mnt_enter_1='Press [ENTER] to return' bb_mnt_menu_title='Mount/Unmount Device' bb_mnt_menu_1='Mount device' bb_mnt_menu_2='Unmount device' bb_mnt_menu_3='Eject device' bb_mnt_menu_0=Back bb_mnt_menu_input='Your Choice? ' bb_mnt_ch1_1='Which device do you want to mount? Enter it like /mnt/cdrom' bb_mnt_ch1_2='(You must enter the mount point, not the device file. For instance' bb_mnt_ch1_3='/mnt/cdrom will work fine, but /dev/cdrom will not. Just press enter' bb_mnt_ch1_4='without writing anything to abort.' bb_mnt_ch1_5='Mounting aborted!' bb_mnt_ch1_6='Mounting ' bb_mnt_ch1_7=' mounted.' bb_mnt_ch1_8='Mounting failed. Maybe you do not have the right permissions,' bb_mnt_ch1_9='the device is already mounted, there is no media in the drive' bb_mnt_ch1_10='or you misspelt the path to the drive?' bb_mnt_ch2_1='There does not seem to be any devices mounted.' bb_mnt_ch2_2='Which device do you want to unmount? Enter it like /mnt/cdrom' bb_mnt_ch2_3=' unmounted.' bb_mnt_ch2_4='Unmounting failed. Maybe you do not have the right permissions' bb_mnt_ch2_5='or you entered the wrong path to the drive?' bb_mnt_ch3_1='Which device do you want to eject? Enter it like /mnt/cdrom' bb_mnt_ch3_1b='or just press enter without writing anything to abort.' bb_mnt_ch3_1c='Aborted!' bb_mnt_ch3_2=' ejected. (Incase you did not notice ;-) )' bb_mnt_ch3_3='Eject failed. Maybe you do not have the right permissions' bb_mnt_ch3_4='or you entered the wrong path to the drive?' bb_mnt_ch0='Back to main' bb_mnt_error='Please choose ' # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/English/multi.lang000066400000000000000000000032661153706571400176460ustar00rootroot00000000000000# multi.lang - English language bb_multi_enter_1='Press [ENTER] to return to main menu.' bb_multi_enter_2='Press [ENTER] to continue.' bb_multi_burn_1='ISO found...' bb_multi_burn_2=' if this is NOT the first burn to a multisession CD' bb_multi_burn_3=' then this ISO *MUST* have been created using valid previous session offset parameters' bb_multi_burn_4=' Why? because this session will be invisible and useless otherwise' bb_multi_burn_5='CD burnt...' bb_multi_burn_6=' No ISO found, trying to create one...' bb_multi_burn_7='Obtaining previous session offset data using -msinfo' bb_multi_burn_8='msinfo info needed for multisession is:' bb_multi_burn_9='if brackets' bb_multi_burn_9b='have two numbers with a comma - ALL IS GOOD TO GO!' bb_multi_burn_10="an error message ending with: \"cdrecord: Cannot read session offset\" means a virgin CD blank" bb_multi_burn_11="an error message ending with: \"cdrecord: No disk / Wrong disk!\" means no disk in drive" bb_multi_burn_12='got valid multisession data, adding args:' bb_multi_burn_13='First burn to multisession CD does not need previous session offset data' bb_multi_burn_14='Now, make the ISO if possible...' bb_multi_burn_14b='Label of your Data CD: ' # New in 1.6 bb_multi_burn_15='ISO created' bb_multi_burn_16='Error: Could not create an iso-file.' bb_multi_burn_17='Maybe... No files in' bb_multi_burn_18='Maybe you dont have write permissions?' bb_multi_menu_title='Multisession CD' bb_multi_menu_1='First burn to a Multisession CD' bb_multi_menu_2='Continue Multisession CD' bb_multi_menu_3='Finish Multisession CD' bb_multi_menu_0='Back' bb_multi_menu_entry='Your Choice ' bb_multi_ch0='Back to main menu...' bb_multi_err='Please enter ' bashburn-3.0.1/lang/German/000077500000000000000000000000001153706571400154625ustar00rootroot00000000000000bashburn-3.0.1/lang/German/BashBurn.lang000066400000000000000000000030311153706571400200260ustar00rootroot00000000000000# BashBurn.lang - German language bb_conf_check1='BashBurn wurde noch nicht konfiguriert. Konfiguriere BashBurn ' bb_conf_check2="vor der Benutzung ueber das Menue 'BashBurn konfigurieren'." bb_quit1='Danke fuer die Benuetzung von ' bb_quit2='Besuche ' bb_quit3='http://bashburn.dose.se/ ' bb_quit4='fuer Informationen und Updates.' bb_press_enter="Druecke 'ENTER' um weiterzukommen." bb_no_temp_dir='Fehlendes Verzeichnis fuer temporaere Dateien! Versuche es zu erstellen.' bb_text_1='erfolgreich erstellt!' bb_text_2="Konfiguriere BashBurn vor dem Brennen von CD's." bb_text_3='Du hast keine Schreibberechtigung fuer' bb_text_4='Aendere diesen Wert im Konfigurationsdialog oder Du wirst nichts brennen koennen.' bb_text_5='Das Verzeichnis' bb_text_6='existiert nicht, obwohl Du es in die Konfigurationsdatei eingegeben hast' bb_text_7='Suche CD Brenner....' bb_text_8='Gefunden: ' bb_main_menu='Hauptmenue' bb_menu_1=Audio bb_menu_2=Daten bb_menu_3=ISO bb_menu_4=Bin/Cue bb_menu_5=Multisession bb_menu_6='BashBurn konfigurieren' bb_menu_7='CD ein-/aushaengen (mount)' bb_menu_8='Programmpfade ueberpruefen' bb_menu_9='Definieren der Brenndateien' bb_menu_0='Beenden' bb_menu_input='Was moechtest Du tun? ' bb_burndir_view='Inhalt von' bb_burndir_del1='Moechtest Du wirklich alle Dateien loeschen in' bb_burndir_del1b="('y'=ja/'n'=nein)" bb_burndir_del2='ist geloescht.' bb_burndir_del3='Loeschen abgebrochen' bb_exit_error='Bitte waehle ' bb_hit_any_key_to_continue='Hit any key to continue' # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/German/README000066400000000000000000000005641153706571400163470ustar00rootroot00000000000000BashBurn translation HOWTO It's quite simple, you open up the files in any simple text editor, and translate the english sentences into the your language. When you are finished translating all files, copy them into a directory with the name of your language, and create a tar.gz/bzip2/zip archive of it. Any questions send me a mail at anders.linden@gmail.com /Anders bashburn-3.0.1/lang/German/advanced.lang000066400000000000000000000014171153706571400200750ustar00rootroot00000000000000# German language file for advanced.lang # # Number of tabs after each option text will vary between languages. # bb_adv_menutitle="Erweiterte Optionen" bb_adv_cdburncmd="CD Brenn-Befehl" bb_adv_dvdburncmd="DVD Brenn-Befehl" bb_adv_isocmd="ISO Erstellungs-Befehl" bb_adv_dvdblankcmd="DVD Loesch-Befehl" bb_adv_imgburncmd="CD Image Brenn-Befehl" bb_adv_audioripcmd="CD Audio Ripping Befehl" bb_adv_cdcopycmd="CD Kopier-Befehl" bb_adv_cdcopyopts="CD Kopier-Optionen" bb_adv_mp3enc="MP3 Encoder Befehl" bb_adv_mp3dec="MP3 Decoder Befehl" bb_adv_oggenc="Ogg Encoder Befehl" bb_adv_oggdec="Ogg Decoder Befehl" bb_adv_flac="FLAC Encoder/Decoder-Befehl" bb_adv_eject="Disk Auswurf-Befehl" bb_adv_norm="Audio Normalisations-Befehl" # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/German/audio_menu.lang000066400000000000000000000047101153706571400204540ustar00rootroot00000000000000# audio_menu.lang - German language bb_am_enter_1="Druecke 'ENTER' um zum Hauptmenue zurueckzukehren." bb_am_enter_2="Lege eine leere CD ein und dann druecke 'ENTER' um fortzufahren" bb_am_nomp3s='Keine mp3s in ' bb_am_nooggs='Keine Oggs in ' bb_am_noflacs='Keine Flacs in ' bb_am_norm_1=' Normalisieren ' bb_am_err_1='[FEHLER]: Tut mir Leid :( BashBurn kann die CD nicht lesen!' bb_am_conf_1=' Du waehltest folgende Spuren (tracks) zum Rippen aus: ' bb_am_conf_2="Ist das in Ordnung? ('y' = ja / 'n' = nein): " bb_am_named_1='Disk Information...' bb_am_named_2="Druecke 'ENTER' um fortzufahren oder" bb_am_named_3='Gib eine Spurennummer zum Rippen ein ' bb_am_named_4='Spaces in Namen werden jetzt unterstuetzt!' bb_am_named_5='z.B. Artist - Song, Artist_Song, Artist-Song.' bb_am_named_6='Wie lautet der Name der Spur (Track) ' bb_am_rip_1=' Rippe Spur (Track) ' bb_am_rip_2='Spuren (Tracks) gerippt!' bb_am_encfilt=' Encode Filter Befehl...' bb_am_menu_title='Audio Menue' bb_am_menu_1='Brenne Audio von Mp3s/Oggs/Wavs/Flacs' bb_am_menu_2='Brenne Audio direkt' bb_am_menu_3='Kopiere Audio CD (CD nach CD)' bb_am_menu_4='Kopiere Audio CD (CD nach Festplatte)' bb_am_menu_5='Brenne Xmms-Playlist' bb_am_menu_6='Erstelle MP3s von WAVs' bb_am_menu_7='Erstelle Oggs von WAVs' bb_am_menu_8='Erstelle Flacs von WAVs' bb_am_menu_9='Erstelle MP3s von CD' bb_am_menu_10='Erstelle Oggs von CD' bb_am_menu_11='Erstelle Flacs von CD' bb_am_menu_0=Zurueck bb_am_menu_input='Was moechtest Du tun? ' bb_am_ch3_1='Brennen abgeschlossen - Danke dass Du BashBurn benutzt hast' bb_am_ch3_2='Ein Fehler ist aufgetreten! Konnte die CD nicht brennen.' bb_am_ch3_3='Ein Fehler ist aufgetreten! Konnte nicht die Spuren (Tracks) rippen von ' bb_am_ch4_1='Spuren (Tracks) gerippt und gespeichert in ' bb_am_ch4_2=' Wenn Du MP3s, Oggs' bb_am_ch4_3='oder Flacs erstellen moechtest, benutze die jeweilige Funktion des Menues.' bb_am_ch5='Lesen der Liederliste (playlist) fehlgeschlagen! Versuche Brennen nicht.' bb_am_ch6_1=' erstellt...' bb_am_ch6_2=' konnte nicht komprimiert werden' bb_am_ch6_3='Keine WAV-Dateien in ' bb_am_ch7_1='Datei erstellt...' bb_am_ch9_1=' Erstelle MP3s...' bb_am_ch9_2='MP3s erstellt. Dateien befinden sich in ' bb_am_ch10_1=' Erstelle Oggs...' bb_am_ch10_2='Oggs erstellt. Dateien befinden sich in ' bb_am_ch11_1='Flacs erstellt. Dateien befinden sich in ' bb_am_ch0='Kehre zum Hauptmenue zurueck' bb_am_error='Bitte waehle ' # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/German/bincue.lang000066400000000000000000000010761153706571400175760ustar00rootroot00000000000000# bincue.lang - German language bb_press_enter="Druecke 'ENTER' um zum Hauptmenue zurueckzukehren." bb_bincue_copy_1="'Bin' und 'Cue' Dateien muessen kopiert/verlinkt werden zu" bb_bincue_copy_1b='vor dem Versuch zu Brennen.' bb_bincue_copy_2="Hast Du das getan? Gib 'y' (ja) oder 'n' (nein) ein: " bb_bincue_copy_3='Bitte kopiere bin/cue-Dateien zu' bb_bincue_copy3b='bevor Du versuchst zu Brennen.' bb_bincue_burn_1='Brennen beendet' bb_bincue_burn_2='Brennen fehlgeschlagen. Vielleicht wegen fehlenden Rechten?' # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/German/burning.lang000066400000000000000000000025301153706571400177710ustar00rootroot00000000000000# burning.lang - German language bb_press_enter="Druecke 'ENTER' um zum Hauptmenue zurueckzukehren." bb_no_ob='Ueberbrennen nicht aktivieren...' bb_burning_tmp_1='Temporaere Dateien in' bb_burning_tmp_1b='geloescht...' bb_burning_tmp_2='nicht geloescht...' bb_burning_audio_1=gefunden bb_burning_audio_2='Keine Audio-Dateien in' bb_burning_audio_3='Verwende keine Normalisierungsfunktion...' bb_burning_finish_1='Brennen beendet' bb_burning_finish_2='Brennen fehlgeschlagen.' bb_burning_finish_3='Datei(en) verlinkt/kopiert nach' bb_burning_error='Keine Dateien in ' bb_burning_iso_1="Kein 'ISO' gefunden in" bb_burning_data_1='Versuche ISO-Datei zu erstellen' bb_burning_data_label='Bezeichner (Label) Deiner CD: ' bb_burning_data_2='FEHLER: Konnte keine ISO-Datei erstellen.' bb_burning_data_3='Vielleicht brauchst Du Schreibrechte?' bb_burning_fifo_1='Keine 'WAV' Dateien in' bb_burning_fifo_2=Brenne bb_burning_fifo_2b='Spuren (tracks)!' bb_burning_fifo3="Loesche unbenutzte FIFO's" bb_burning_dvd_1='Ist das die erste Session dieser DVD?' bb_burning_dvd_2="(Gib 'no' ein wenn Du eine neue Session an eine schon" bb_burning_dvd_3='gebrannte DVD anfügen willst. Diesen Vorgang brichst Du,' bb_burning_dvd_4="ohne sonstige Eingabe, mit Druecken der 'ENTER'-Taste ab)" bb_burning_dvd_5='(yes/no): ' # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/German/check_path.lang000066400000000000000000000010651153706571400204200ustar00rootroot00000000000000# check_path.lang - German language bb_cp_1='Programm gefunden' bb_cp_2=in bb_cp_3='Programm NICHT gefunden!' bb_cp_4='ACHTUNG, lese den Hinweis unten!' bb_cp_5='Ueberpruefe Programm-Pfade...' bb_cp_6=' Brennwerkzeuge:' bb_cp_7=' Rippers:' bb_cp_8=' Encoder und Decoder:' bb_cp_9=' Sonstiges:' bb_cp_10='HINWEIS: Installiere die Programme die nicht gefunden wurden,' bb_cp_11='oder BashBurn koennte unter Umstaenden nicht korrekt funktionieren!' bb_cp_12="Druecke 'ENTER' um zum Hauptmenue zurueckzukehren." # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/German/commonfunctions.lang000066400000000000000000000021701153706571400215460ustar00rootroot00000000000000# commonfunctions.lang - German language file bb_cf_text1='CD scheint schon beschrieben zu sein. Moechtest Du sie loeschen?' bb_cf_text2="Antworte nur 'yes', wenn das eine wiederbeschreibare CD ist. Gib" bb_cf_text3="'abort' ein, wenn Du abbrechen und zurueck zum Menue willst.." bb_cf_text4='Abbrechen...' bb_cf_text5='Versuche Brennen ohne CD zu loeschen, was wahrscheinlich misslingt.' bb_cf_text6='Loeschen gescheitert. Brennprozess abgebrochen' bb_cdrw_blank1='Loesche CD...' bb_cdrw_blank2='CDRW geloescht' bb_cdrw_blank3='Einfaches Loeschen fehlgeschlagen! Versuche es zu erzwingen...' bb_cdrw_blank4='Erzwungenes Loeschen war erfolgreich.' bb_cdrw_blank5='Loeschen war nicht erfolgreich. Du solltest diese CD ersetzen!' bb_cdrw_blank6='CD/DVD scheint geloescht zu sein (oder keine im Laufwerk), loesche nichts...' bb_dvd_blank1='Schnelles oder gesamtes loeschen?' bb_dvd_blank2="Gib 'yes' fuer schnelles, " bb_dvd_blank3="oder 'no' fuer ein gesamtes Formatieren ein." bb_dvd_blank4='Druecke [ENTER] ohne irgendwas sonst einzugeben' bb_dvd_blank5='um den Vorgang abzubrechen.' # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/German/configure.lang000066400000000000000000000217351153706571400203160ustar00rootroot00000000000000# configure.lang - German language bb_conf_menu_writer='CD-Brenner' bb_conf_menu_cddev='CD-Leser (Geraete-Datei)' bb_conf_menu_cdmnt='CD-Leser (Mount-Punkt)' bb_conf_menu_speed='Brenngeschwindigkeit' bb_conf_menu_blank='Loeschart (CDRW)' bb_conf_menu_numdev='Anzahl der Geraete' bb_conf_menu_root='Wurzel-Verzeichnis' bb_conf_menu_burn='Brenn-Verzeichnis' bb_conf_menu_label='CD Bezeichner (Label)' bb_conf_menu_auth='Autor' bb_conf_menu_desc='Beschreibung' bb_conf_menu_norm='Normalisieren (Audio)' bb_conf_menu_dropt='Treiberoptionen' bb_conf_menu_fifo='FIFO Verzeichnis' bb_conf_menu_deltmp='Aufraeumen nach Brennen' bb_conf_menu_ob='Erlaube ueberbrennen' bb_conf_menu_bitrate='Setze Bitrate' bb_conf_menu_lang='Sprache' bb_conf_menu_dtao='DAO/TAO' bb_conf_menu_gap='Luecken zwischen Spuren' bb_conf_menu_adv='Erweiterte Konfiguration' bb_conf_menu_apply='Einstellungen anwenden' bb_conf_menu_default='Standardeinstellungen anwenden' bb_conf_menu_revert='Aenderungen zuruecksetzen' bb_conf_menu_back='Zurueck' bb_conf_menu_entry='Deine Eingabe?' bb_conf_action_desc='Aktionen' bb_conf_menu_toptext1='Einstellung' bb_conf_menu_toptext2='Aktueller Wert' bb_conf_default_is='Standardwert ist' bb_conf_cancel_quote='Um abzubrechen druecke [ENTER].' bb_conf_ch_writer=\ "Das Brenngeraet muss in der Form ${BBOPTIONCOLOR}0,0,0${BBCOLOROFF} (fuer SCSI) oder '/dev/hdX' (fuer IDE Brenngeraete, wobei 'hdX' das Brenngeraet ist, wie z.B. 'hdc') eingegeben werden. Zum automatischen Erkennen gib 'auto' ein. ${bb_conf_cancel_quote} Die aktuelle Einstellung ist: ${BBOPTIONCOLOR}${BBCDWRITER}${BBCOLOROFF}, und unten ist eine Liste von moeglichen Brenngeraeten auf diesem System (nach '/etc/fstab')." bb_conf_ch_cddev=\ "Der Pfad zur CDROM-Geraete-Datei ist oft z.B. ${BBOPTIONCOLOR}/dev/cdrom${BBCOLOROFF} oder ${BBOPTIONCOLOR}/dev/dvd${BBCOLOROFF}. Die aktuelle Einstellung ist: ${BBOPTIONCOLOR}${BBCDROM}${BBCOLOROFF}, und unten ist eine Liste von moeglichen CDROM-Geraeten (nach der Datei '/etc/fstab'). ${bb_conf_cancel_quote}" bb_conf_ch_cdmnt=\ "Der Mount-Punkt zur CDROM ist meistens z.B. ${BBOPTIONCOLOR}/mnt/cdrom${BBCOLOROFF} oder ${BBOPTIONCOLOR}/mnt/dvd${BBCOLOROFF}. Die aktuelle Einstellung ist: ${BBOPTIONCOLOR}${BBCDMNT}${BBCOLOROFF}, und unten ist eine Liste von moeglichen Lesegeraeten des Systems (nach der Datei '/etc/fstab'). ${bb_conf_cancel_quote}" bb_conf_ch_speed=\ "Solange Du keine Probleme mit dem CD Brennen hast, solltest Du diese Option als ${BBOPTIONCOLOR}-1${BBCOLOROFF} lassen, und somit die laufwerkspezifischen Standardeinstellungen nutzen. Fuer die meisten Brenner ist dies das Brennen mit maximaler Geschwindigkeit. Die aktuelle Einstellung ist: ${BBOPTIONCOLOR}${BBSPEED}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_blanking=\ "Hier stellst Du die Standardmethode fuers Loeschen ein. Die Standardeinstellung ist ${BBOPTIONCOLOR}fast${BBCOLOROFF}. Das loescht die ganze CD und kann deswegen einige Zeit dauern. Die aktuelle Einstellung ist: ${BBOPTIONCOLOR}${BBBLANKING}${BBCOLOROFF}, und es folgt eine Liste von moeglichen Loeschmethoden. ${bb_conf_cancel_quote}" bb_conf_ch_numdev=\ "Hier gibst Du die Anzahl der CD Geraete in Deinem System an. Wenn Du ein Geraet als Lese- und Schreibgeraet benutzt, gieb ${BBOPTIONCOLOR}1${BBCOLOROFF} ein, ansonsten gieb ${BBOPTIONCOLOR}2${BBCOLOROFF} ein. Die aktuelle Einstellung ist: ${BBOPTIONCOLOR}${BBNUMDEV}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_root=\ "Diese Einstellung definiert den Speicherort der BashBurn Systemdateien. Du solltest diese Einstellung eigentlich nicht aendern muessen, und wenn solltest Du wissen was Du tust. Die aktuelle Einstellung ist: ${BBOPTIONCOLOR}${BBROOTDIR}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_burndir=\ "Diese Option definiert wo BashBurn nach Brenndaten sucht. Du brauchst Schreibrechte fuer dieses Verzeichnis. Die aktuelle Einstellung ist: ${BBOPTIONCOLOR}${BBBURNDIR}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_label=\ "Diese Option gibt den Namen der Disk an die gebrannt werden soll. Es kann jede Text-Zeichenkette mit bis zu 32 Zeichen sein wie z.B. ${BBOPTIONCOLOR}Meine Bilder${BBCOLOROFF} oder ${BBOPTIONCOLOR}Urlaubs Videos${BBCOLOROFF}. Wenn Du jedesmal fuer solch einen Bezeichner gefragt werden willst gieb ${BBOPTIONCOLOR}${BBCOLOROFF} als Bezeichner ein. Die aktuelle Einstellung ist: ${BBOPTIONCOLOR}${BBLABEL}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_author=\ "Das sollte den Autor der CDROM beschreiben, gewoehnlich mit einer e-mail Adresse und Telefonnummer. Auf der CD ist Platz fuer 128 Zeichen Information. Die aktuelle Einstellung ist: ${BBOPTIONCOLOR}${BBAUTHOR}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_desc=\ "Diese Option sollte die Daten die auf der CD sind beschreiben. Auf der CD ist Platz fuer 128 Zeichen Information. Die aktuelle Einstellung ist: ${BBOPTIONCOLOR}${BBDESCRIPTION}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_norm=\ "Normalisierung ermoeglicht die 'Glaettung' der Lautstaerke von Audiodateien. Das ist nuetzlich fuer Dinge wie das Erstellen von Audio-Mix Cd's, wo unterschiedliche Aufnahmepegel verschiedenerer Alben in der Lautstaerke sehr von Lied zu Lied schwanken. Diese Option aktiviert ${BBHEADCOLOR}(yes)${BBCOLOROFF} oder deaktiviert ${BBTABLECOLOR}(no)${BBCOLOROFF} diese Funktion. Aktuelle Einstellung ist: ${BBOPTIONCOLOR}${BBNORMALIZE}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_dropts=\ "Diese Option spezifiert die Treiberoption(en) zum Brennen. Ein Beispiel ist ${BBOPTIONCOLOR}burnfree${BBCOLOROFF} um Pufferspeicherunterschreitungen (buffer underruns) zu vermeiden. Du kannst mehrere Optionen mit einem Komma trennen. Wenn Du unsicher bist, ueberspringe diese Option (sie ist keine Pflicht). Die aktuelle Einstellung ist: ${BBOPTIONCOLOR}${BBDRIVEROPT}${BBCOLOROFF}. Es folgt eine Liste von moeglichen Optionen. ${bb_conf_cancel_quote}\n\n${BBSUBCOLOR}${bb_text_7}${BBCOLOROFF}\n" bb_conf_ch_fifo=\ "Gib den Ort des FIFO-Verzeichnisses ein. Das wird nur fuer das Brennen per Pipe benoetigt, und meistens ist der Standardwert passend. Die aktuelle Einstellung ist: ${BBOPTIONCOLOR}${BBFIFODIR}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_tempdel=\ "Wenn Du moechtest das BashBurn die Dateien in ${BBBURNDIR} loescht nachdem eine CD gebrannt wurde, gieb ${BBHEADCOLOR}yes${BBCOLOROFF} ein. Anderenfalls gieb ${BBTABLECOLOR}no${BBCOLOROFF} ein um die Dateien zu behalten. Die aktuelle Einstellung ist: ${BBOPTIONCOLOR}${BBDELTEMPBURN}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_ob=\ "'Overburn' versucht mehr auf eine CD zu brennen als fuer was sie konstruiert wurde. Das wird nicht immer funktionieren, und wenn sind es nur ein paar MB. Dein Brenner muss 'Overburn' unterstuetzen, und es ist selbst dann nicht sicher ob die Disk dann von allen Lesegeraeten gelesen werden kann. Diese Option aktiviert ${BBHEADCOLOR}(yes)${BBCOLOROFF} oder deaktiviert ${BBTABLECOLOR}(no)${BBCOLOROFF} diese Funktion. Die aktuelle Einstellung ist: ${BBOPTIONCOLOR}${BBOVERBURN}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_bitrate=\ "Die Bitrate ist ein Haupteinfluss auf die Qualitaet von Audio-Dateien. Je hoeher die Bitrate, desto hoeher ist die Qualitaet. Hoehere Bitrate bedeutet natuerlich auch groessere Audio-Dateien. Die Einheit ist in 'kbit' und sollte in vielfachen von 32 eingegeben werden. Die aktuelle Einstellung ist: ${BBOPTIONCOLOR}${BBBITRATE}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_lang=\ "Diese Option stellt die Sprache ein in welcher BashBurn's Bedienung erfolgt. Die aktuelle Einstellung ist: ${BBOPTIONCOLOR}${BBLANG}${BBCOLOROFF}, und unten ist eine Liste der auswaehlbaren Sprach(e/n). ${bb_conf_cancel_quote}" bb_conf_ch_dtao=\ "Diese Option teilt BashBurn mit im SAO (Session at Once) oder TAO (Track at once) Modus zu brennen. Der Defaultwert TAO ${BBOPTIONCOLOR}(-tao)${BBCOLOROFF} ist gewoehnlich passend, aber in einigen Faellen muss SAO ${BBOPTIONCOLOR}(-sao)${BBCOLOROFF} benutzt werden. Die aktuelle Einstellung ist ${BBOPTIONCOLOR}${BBDTAO}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_pad=\ "Diese Option aktiviert ${BBHEADCOLOR}(-pad)${BBCOLOROFF} oder deaktiviert ${BBTABLECOLOR}(-nopad)${BBCOLOROFF} Luecken zwischen Audiospuren. Wenn Du eine Audio-CD ohne Luecken zwischen den Spuren willst (z.B. eine Live-Aufnahme), deaktiviere diese Option. Die aktuelle Einstellung ist ${BBOPTIONCOLOR}${BBPADDING}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_apply_1='Eingaben uebernommen!' bb_conf_apply_2='Konnte nicht schreiben in' bb_conf_apply_3="Du koenntest 'chmod 666' ausfuehren wollen..." bb_conf_def_1='Standardwerte angewendet!' bb_conf_def_2="('BBROOTDIR' hat *KEINE* Standardeinstellung - Du musst das eingeben!)" bb_conf_xit_1='Zurueck zum Hauptmenue' bb_conf_xit_2=\ "Es scheint Du hast eine Option veraendert aber noch nicht explizit angewendet. Hier kannst Du '${BBTABLECOLOR}n${BBCOLOROFF}' waehlen um zurueckzugehen und das zu tun; wenn Du Deine Aenderungen verwerfen moechtest waehle '${BBHEADCOLOR}y${BBCOLOROFF}'.\n" bb_conf_err='Bitte nur eingeben:' # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/German/convert_flacs.lang000066400000000000000000000002501153706571400211520ustar00rootroot00000000000000# convert_flacs.lang - German version bb_conv_flac_1='Flac-Dateien konvertiert und bereit gebrannt zu werden.' # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/German/convert_mp3s.lang000066400000000000000000000003241153706571400207460ustar00rootroot00000000000000# convert_mp3s.lang - German language bb_conv_mp3_1=dekomprimiert bb_conv_mp3_2='und fertig zum Brennen' bb_conv_mp3_3='konnte nicht dekomprimiert werden' # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/German/convert_oggs.lang000066400000000000000000000002321153706571400210210ustar00rootroot00000000000000# convert.lang - German language bb_conv_ogg='Ogg-Dateien dekomprimiert und fertig zum Brennen.' # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/German/data_menu.lang000066400000000000000000000017621153706571400202700ustar00rootroot00000000000000# data_menu.lang - German language bb_dm_newcd="Lege eine leere CD ein und druecke 'ENTER' um fortzufahren" bb_dm_wait="Druecke 'ENTER' um zu Hauptmenue zurueckzukehren." bb_dm_menu_title=Daten-Menue bb_dm_menu_1='Brenne Daten' bb_dm_menu_2='Kopiere Daten-CD (CD nach CD)' bb_dm_menu_3='Brenne Daten-DVD' bb_dm_menu_4='CDRW loeschen' bb_dm_menu_5='DVD loeschen' bb_dm_menu_0=Zurueck bb_dm_menu_entry='Was moechtest Du tun? ' bb_dm_ch2_1=' nicht gemountet! Mounte das Geraet bitte erst...' bb_dm_ch2_2='Ein ISO existiert in ' bb_dm_ch2_3=' Loesche oder benenne es um' bb_dm_ch2_4='bevor Du versuchst ein neues zu generieren.' bb_dm_ch2_5='CD kopiert!' bb_dm_ch2_6='Starte Brennen' bb_dm_ch0='Kehre zum Menue zurueck...' bb_dm_error='Bitte bestaetige ' bb_dm_cdcopy='Kopiere CD-Inhalt nach ' bb_dm_cdcopy_err1='Fehler beim Transferieren. Ist die richtige CD im Laufwerk?' bb_dm_cdcopy_err2='(Ueberpruefe alle Fehlermeldungen fuer Problem-Hinweise)' # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/German/datadefine.lang000066400000000000000000000023641153706571400204160ustar00rootroot00000000000000# datadefine.lang - German language bb_mnt_menu_title='Brenndateien definieren' bb_wfe_1="Druecke 'ENTER' um zum Menue zurueckzukehren." bb_dc_menu_1=' Kopiere/Verlinke Dateien in ' bb_dc_menu_2=' Anschauen der Dateien in ' bb_dc_menu_3=' Loeschen aller Dateien in ' bb_dc_menu_0=' Zurueck' bb_dc_explain1='Dir wird nun eine Kommandozeile (bash) bereitgestellt!' bb_dc_explain2a="Du befindest dich im Verzeichnis '" bb_dc_explain2b="'. Damit Bashburn" bb_dc_explain3='etwas brennen kann, must Du Deine Daten zu diesem Verzeichnis' bb_dc_explain4='kopieren / verlinken (spart Plattenplatz). Benutze dazu die Befehle' bb_dc_explain5="'cp' oder 'ln'. Beispiele: 'cp /home/test.dat ./' oder" bb_dc_explain6="'ln -s /home/test.dat ./' definieren '/home/test.dat' zum Brennen." bb_dc_explain7="Hinweis: Alle Shellbefehle, z.B. auch 'rm' zum Loeschen, sind" bb_dc_explain8="moeglich! Gib 'exit' ein, um zum Menue zurueckzukehren." bb_dc_ch3_1="Moechtest Du wirklich diese Dateien loeschen? <'${BBHEADCOLOR}y(=ja)${BBCOLOROFF}'/'${BBTABLECOLOR}/n(=nein)${BBCOLOROFF}'>: " bb_dc_ch3_2='Dateien geloescht.' bb_dc_ch3_3='Dateien nicht geloescht' bb_dc_ch3_4='Keine Dateien in ' bb_dc_menu_err='Fehler. Bitte waehle' # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/German/iso_menu.lang000066400000000000000000000022561153706571400201500ustar00rootroot00000000000000# iso_menu.lang - German language bb_im_wait_1="Druecke 'ENTER' um zum Menue zurueckzukehren." bb_im_menu_title='ISO Menue' bb_im_menu_1='Brenne ISO' bb_im_menu_2='Generiere ISO von den Dateien in ' bb_im_menu_3='Generiere ISO von CD' bb_im_menu_4='Brenne DVD Image' bb_im_menu_5='Haenge Image ein (mounten)' bb_im_menu_0='Zurueck' bb_im_menu_entry='Deine Wahl? ' bb_im_error_files='Keine Dateien in ' bb_im_ch2_1='Ein ISO existiert in ' bb_im_ch2_2=' Loesche oder verschiebe es' bb_im_ch2_3='bevor Du versuchst ein neues zu erstellen.' bb_im_ch2_4='Versuche eine ISO-Datei zu erstellen' bb_im_ch2_4b='Bezeichner (Label) Deiner CD: ' bb_im_ch2_5='ISO erstellt' bb_im_ch2_6='Fehler: Konnte keine ISO-Datei erstellen!' bb_im_ch2_7='Vielleicht hast Du keine Schreibrechte?' bb_im_ch3_1=" nicht gemounted! Mach' das als erstes..." bb_im_ch3_2='Erstelle ISO von der CD in ' bb_im_ch5_1='Gib Pfad zu der Image Datei die eingehaengt (gemountet) werden soll ein:' bb_im_ch5_2="(Oder druecke 'Enter' um abzubrechen)" bb_im_ch5_3='Kein Dateinamen eingegeben, breche ab.' bb_im_ch0='Kehre zurueck zum Menue...' bb_im_error='Bitte bestaetige ' # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/German/loopback.lang000066400000000000000000000032611153706571400201210ustar00rootroot00000000000000# loopback.lang - German language bb_lb_noread='konnte nicht gelesen werden.' bb_lb_no_lb_dir='Kein loopback Verzeichnis, erstelle eines...' bb_lb_dir_c='Verzeichnis erstellt.' bb_lb_dir_cf='Erstellung fehlgeschlagen, breche ab.' bb_lb_no_im_dir='Kein Image Verzeichnis, erstelle eines...' bb_lb_no_temp_dir='Kein temporaere-Dateien Verzeichnis, erstelle eines...' bb_lb_sudo1='Du must in der sudoers Gruppe sein um das Image einzuhaengen (mounten).' bb_lb_sudo2='Gib unten Dein Password ein, wenn das fehlschlägt koennte es sein dass' bb_lb_sudo3='Du nicht in der Gruppe bist. Aendere das dann und versuche es erneut.' bb_lb_sudo4='Du musst auch die Unterstuetzung fuer Loopback-Geraete' bb_lb_sudo5='in Deinem Betriebssystemkernel haben (als Modul oder einkompiliert),' bb_lb_sudo6='sonst wird der naechste Schritt fehlschlagen.' bb_lb_mount='Image eingehaengt (gemountet).' bb_lb_mount_fail='Einhaengen fehlgeschlagen, breche ab.' bb_lb_cp_cont='Kopiere Inhalt, bitte warten...' bb_lb_in_file="Du bist nun im Image-Dateisystem. Editiere nach belieben, tippe 'exit' um zurueckzukehren." bb_lb_change1='Hast Du irgendetwas geaendert? (Falls ja, muss ein neues Image' bb_lb_change2='erstellt werden, was eine Zeit lang dauert) (y/n)' bb_lb_change3='Daten existieren schon in' bb_lb_change4='sie werden geloescht wenn Du weitermachst.' bb_lb_change5='Moechtest Du weitermachen? (y/n)' bb_lb_change6='Erstelle ein neues Image, bitte warten...' bb_lb_change7='Neues Image erstellt in' bb_lb_change8='Breche ab, ohne Daten zu loeschen. Aenderungen im Image werden verworfen.' bb_lb_change9='Keine Aenderungen gemacht, ueberspringe Image-Neuerstellung.' # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/German/mount.lang000066400000000000000000000035471153706571400175000ustar00rootroot00000000000000# mount.lang - German language bb_mnt_enter_1="Druecke die Taste 'ENTER' um zurueckzukehren" bb_mnt_menu_title='Geraet in/aus Dateisystem einhaengen(mount)/aushaengen(umount)' bb_mnt_menu_1='Geraet einhaengen (mount)' bb_mnt_menu_2='Geraet aushaengen (umount)' bb_mnt_menu_3='CD auswerfen' bb_mnt_menu_0="Zurueck" bb_mnt_menu_input='Deine Wahl? ' bb_mnt_ch1_1='Welches Geraet moechtest Du zum Lesen einhaengen (mount)?' bb_mnt_ch1_2="Gib erst das Geraet, dann den Mount-Punkt ein (wie bei 'mount')." bb_mnt_ch1_3="Ein Beispiel: '/dev/hdc /mnt/cdrom'. Wenn Du hier abbrechen" bb_mnt_ch1_4="moechtest, druecke 'ENTER' um das Einhaengen abzubrechen." bb_mnt_ch1_5='Einhaengen abgebrochen!' bb_mnt_ch1_6='einhaengen ' bb_mnt_ch1_7=' eingehaengt.' bb_mnt_ch1_8='Einhaengen ist fehlgeschlagen. Vielleicht hast Du keine ausreichenden Rechte,' bb_mnt_ch1_9='das Geraet ist schon eingehaengt, es ist kein Medium im Laufwerk' bb_mnt_ch1_10='oder Du hast beim Eingeben der Pfade einen Tippfehler gemacht?' bb_mnt_ch2_1='Es scheint, dass gar kein Geraet eingehaengt ist...' bb_mnt_ch2_2='Welches Geraet moechtest Du aushaengen (gib Geraet ODER Mount-Punkt ein)?' bb_mnt_ch2_3=' ausgehaengt (unmount).' bb_mnt_ch2_4='Aushaengen ist fehlgeschlagen. Vielleicht hast Du keine ausreichenden Rechte,' bb_mnt_ch2_5='oder Du hast beim Eingeben der Pfade einen Tippfehler gemacht?' bb_mnt_ch3_1='Von welchem Geraet moechtest Du die CD auswerfen? Gib das Geraet ein.' bb_mnt_ch3_1b="Zum Abbrechen druecke einfach nur 'ENTER'." bb_mnt_ch3_1c='Abgebrochen!' bb_mnt_ch3_2=' ausgeworfen. (Falls Du es nicht gemerkt hast ;-) )' bb_mnt_ch3_3='Auswerfen fehlgeschlagen. Vielleicht hast Du keine ausreichenden Rechte,' bb_mnt_ch3_4='oder Du hast beim Eingeben der Pfade einen Tippfehler gemacht?' bb_mnt_ch0='Zurueck zum Hauptmenue' bb_mnt_error='Bitte waehle ' # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/German/multi.lang000066400000000000000000000037431153706571400174660ustar00rootroot00000000000000# multi.lang - German language bb_multi_enter_1="Druecke 'ENTER' um zum Hauptmenue zurueckzukehren." bb_multi_enter_2="Druecke 'ENTER' um fortzufahren." bb_multi_burn_1='ISO9660 gefunden...' bb_multi_burn_2=' wenn das NICHT der erste Brennvorgang einer Mutisession-CD ist, dann *MUSS*' bb_multi_burn_3='dieses ISO9660 mit vorhergehenden Session-Offset-Parameter erstellt worden sein!' bb_multi_burn_4=' Warum: Weil diese Session sonst unsichtbar und nutzlos sein wird...' bb_multi_burn_5='CD gebrannt...' bb_multi_burn_6=' Kein ISO9660 gefunden, versuche eines zu erstellen...' bb_multi_burn_7="Verschaffe vorhergehende Session-Offset Daten mithilfe '-msinfo'" bb_multi_burn_8="'msinfo'-Information die fuer die Multisession gebraucht wird ist:" bb_multi_burn_9='wenn die Klammern' bb_multi_burn_9b='zwei Nummern mit einem Komma umschliessen, IST ALLES OK!' bb_multi_burn_10='Die Meldung "cdrecord: Cannot read session offset" bedeutet: Unbeschriebene CD.' bb_multi_burn_11='Die Meldung "cdrecord: No disk / Wrong disk!" bedeutet: Keine CD im Laufwerk!' bb_multi_burn_12='habe gueltige Multisession-Daten erhalten, und fuege folgende Argumente hinzu:' bb_multi_burn_13='Erster Brennvorgang einer Multisession-CD braucht keine vorhergehenden Session-Offset Daten' bb_multi_burn_14='Mache jetzt das ISO9660, wenn es moeglich ist...' bb_multi_burn_14b='Bezeichner (Label) Deiner CD: ' bb_multi_burn_15='ISO9660 erstellt' bb_multi_burn_16='Fehler: Konnte keine ISO9660-Datei erstellen.' bb_multi_burn_17='Vielleicht... Keine Dateien in' bb_multi_burn_18='Vielleicht hast Du keine Schreibrechte?' bb_multi_menu_title='Multisession-CD' bb_multi_menu_1='Erster Brennvorgang einer Multisession-CD' bb_multi_menu_2='Brennvorgang einer Multisession-CD fortsetzen' bb_multi_menu_3='Multisession-CD fertigstellen (letzter Brennvorgang)' bb_multi_menu_0=Zurueck bb_multi_menu_entry='Deine Wahl ' bb_multi_ch0='Zurueck zum Hauptmenue...' bb_multi_err='Bitte bestaetige ' # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/Italian/000077500000000000000000000000001153706571400156325ustar00rootroot00000000000000bashburn-3.0.1/lang/Italian/BashBurn.lang000066400000000000000000000027501153706571400202050ustar00rootroot00000000000000# BashBurn.lang - Italian language bb_conf_check1="BashBurn non è stato configurato. Inserisci 'Configure' e" bb_conf_check2="modifica le informazioni necessarie prima di usarlo." bb_quit1="Grazie per aver scelto " bb_quit2="Visita " bb_quit3="http://bashburn.sf.net " bb_quit4="per informazioni e aggiornamenti." bb_press_enter="Premi [ENTER] per continuare." bb_no_temp_dir="La directory per i file temporanei non esiste. Proviamo a crearla..." bb_text_1="creata con successo!" bb_text_2="Configura BashBurn prima di masterizzare" bb_text_3="Non hai il permesso in scrittura per" bb_text_4="Cambia questo valore nella configurazione o non potrai masterizzare." bb_text_5="La directory" bb_text_6="non esiste, sebbene l'hai scritto nel file di configurazione" bb_text_7="Sto cercando il masterizzatore cd ...." bb_text_8="Trovato: " bb_main_menu=MAIN bb_menu_1="Audio" bb_menu_2="Dati" bb_menu_3="ISO" bb_menu_4="Bin/Cue" bb_menu_5="Multisessione" bb_menu_6="Configura BashBurn" bb_menu_7="Monta/Smonta cd" bb_menu_8="Controlla la path del programma" bb_menu_9="Definisci i file da masterizzare" # Edited once again in 1.6 bb_menu_0="Esci" bb_menu_input="Cosa scegli? " bb_burndir_view="Il contenuto di " bb_burndir_del1="Vuoi veramente cancellare i file in" bb_burndir_del1b="(y/n)" bb_burndir_del2="è vuoto." bb_burndir_del3="Cancellazione interrotta" bb_exit_error="Per favore scegli " bb_hit_any_key_to_continue='Hit any key to continue' # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/Italian/README000066400000000000000000000005451153706571400165160ustar00rootroot00000000000000BashBurn translation HOWTO E' molto semplice, apri i file con qualunque editor di testi e traduci le frasi in inglese nella tua lingua. Quando hai finito di tradurre tutti i file, copiali in una directory con il nome della tua lingua e crea un file tar.gz/bzip2/zip di tutto. Per qualunque informazione mandami una mail a anders.linden@gmail.com /Anders bashburn-3.0.1/lang/Italian/advanced.lang000066400000000000000000000014551153706571400202470ustar00rootroot00000000000000# Italian language file for advanced.lang # FIXME: Not done. # # Number of tabs after each option text will vary between languages. # bb_adv_menutitle="Advanced Options" bb_adv_cdburncmd="CD burning command" bb_adv_dvdburncmd="DVD burning command" bb_adv_isocmd="ISO creation command" bb_adv_dvdblankcmd="DVD blanking command" bb_adv_imgburncmd="CD image burn command" bb_adv_audioripcmd="CD audio ripping command" bb_adv_cdcopycmd="CD copying command" bb_adv_cdcopyopts="CD copying options" bb_adv_mp3enc="MP3 encoder command" bb_adv_mp3dec="MP3 decoder command" bb_adv_oggenc="Ogg encoder command" bb_adv_oggdec="Ogg decoder command" bb_adv_flac="FLAC encoder/decoder command" bb_adv_eject="Disc eject command" bb_adv_norm="Audio normalization command" # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/Italian/audio_menu.lang000066400000000000000000000044061153706571400206260ustar00rootroot00000000000000# audio_menu.lang - Italian language bb_am_enter_1="Premere [ENTER] per tornare al menù principale" bb_am_enter_2="Inserire un CD vuoto e premere [ENTER] per continuare" bb_am_nomp3s="Non ci sono mp3 nel " bb_am_nooggs="Non ci sono OGG nel " bb_am_noflacs="Non ci sono FLAC nel " bb_am_norm_1=" Normalizzando " bb_am_err_1="[ERRORE]: Spiacente :( BashBurn non può leggere il CD!" bb_am_conf_1=" Hai scelto di estrarre queste tracce: " bb_am_conf_2="E' corretto? (y/n): " bb_am_named_1="Informazione del disco..." bb_am_named_2="Premere [ENTER] per continuare o" bb_am_named_3="Inserire un numero di traccia da estrarre " bb_am_named_4="Adesso si possono usare spazi nei nomi!" bb_am_named_5="es. Artista - Titolo, Artista_Titolo, Artista-Titolo." bb_am_named_6="Qual'è il nome della traccia " bb_am_rip_1=" Estraggo la traccia " bb_am_rip_2="Traccia estratta!" bb_am_encfilt=" Comando del filtro di codifica..." bb_am_menu_title="Menù Audio" bb_am_menu_1="Masterizza Audio da mp3/OGG/WAV/FLAC" bb_am_menu_2="Masterizza Audio Direttamente" bb_am_menu_3="Copia Audio CD (da CD a CD)" bb_am_menu_4="Copia Audio CD (da CD al disco rigido)" bb_am_menu_5="Masterizza una playlist da Xmms" bb_am_menu_6="Crea Mp3 da WAV" bb_am_menu_7="Crea OGG da WAV" bb_am_menu_8="Crea FLAC da WAV" bb_am_menu_9="Crea Mp3 da CD" bb_am_menu_10="Crea OGG da CD" bb_am_menu_11="Crea FLAC da CD" bb_am_menu_0="Indietro" bb_am_menu_input="Cosa scegli? " bb_am_ch3_1="Masterizzazione completata - Grazie per aver scelto BashBurn" bb_am_ch3_2="C'è un errore! Non si può masterizzare il cd." bb_am_ch3_3="C'è un errore! Non si possono estrarre le tracce da " bb_am_ch4_1="Tracce estratte e salvate in " bb_am_ch4_2=" Se vuoi creare" bb_am_ch4_3="mp3,OGG o FLAC, usa la relativa funzione del menù." bb_am_ch5="Lettura della playlist non riuscita. Non si può masterizzare." bb_am_ch6_1=" creato..." bb_am_ch6_2=" non si può comprimere" bb_am_ch6_3="Non ci sono WAV in " bb_am_ch7_1="File creato..." bb_am_ch9_1=" Sto creando mp3..." bb_am_ch9_2="Mp3 creati. I file si trovano in " bb_am_ch10_1=" Sto creando OGG..." bb_am_ch10_2="OGG creati. I file si trovano in " bb_am_ch11_1=" Sto creando FLAC..." bb_am_ch11_2="FLAC creati. I file si trovano in " bb_am_ch0="Tornare al menù principale" bb_am_error="Per favore scegli " bashburn-3.0.1/lang/Italian/bincue.lang000066400000000000000000000007561153706571400177520ustar00rootroot00000000000000# bincue.lang - Italian language bb_press_enter="Premi [ENTER] per tornare al menù principale." bb_bincue_copy_1="I file Bin e Cue devono essere copiati/linkati in" bb_bincue_copy_1b="prima di provare a masterizzare." bb_bincue_copy_2="Hai già fatto? (y/n):" bb_bincue_copy_3="Per favore copia i file Bin/Cue in" bb_bincue_copy3b="prima di cercare di masterizzare." bb_bincue_burn_1="Masterizzazione terminata" bb_bincue_burn_2="Masterizzazione fallita. Forse non hai i permessi necessari?" bashburn-3.0.1/lang/Italian/burning.lang000066400000000000000000000024651153706571400201500ustar00rootroot00000000000000# burning.lang - Italian language bb_press_enter="Premi [ENTER] per tornare al menù principale" bb_no_ob="Overburn non abilitata..." bb_burning_tmp_1="File temporanei in" bb_burning_tmp_1b="cancellati..." bb_burning_tmp_2="non sono stati cancellati..." bb_burning_audio_1="trovato" bb_burning_audio_2="Non ci sono file audio in" bb_burning_audio_3="Non si usa Normalizza..." bb_burning_finish_1="Masterizzazione terminata" bb_burning_finish_2="Masterizzazione fallita." bb_burning_finish_3="File linkati/copiati in" bb_burning_error="Non ci sono file in " bb_burning_iso_1="File ISO non trovato in" bb_burning_data_1="Cerco di creare il file ISO" bb_burning_data_label="Etichetta del tuo cd di dati: " # New in 1.6 bb_burning_data_2="Errore: Non si può creare il file ISO." bb_burning_data_3="Forse hai bisogno del permesso di scrittura?" bb_burning_fifo_1="Non ci sono file WAV in" bb_burning_fifo_2="Preparazione per la masterizzazione" bb_burning_fifo_2b="delle tracce!" bb_burning_fifo3="Cancellare file fifo non usati" bb_burning_dvd_1="Questa è la sessione iniziale del DVD?" bb_burning_dvd_2="(Inserisci no se vuoi aggiungere una nuova sessione a" bb_burning_dvd_3="un DVD già masterizzato. Per cancellare questa operazione" bb_burning_dvd_4="premi [ENTER] senza scrivere nulla)" bb_burning_dvd_5="(yes/no): " bashburn-3.0.1/lang/Italian/check_path.lang000066400000000000000000000007741153706571400205760ustar00rootroot00000000000000# check_path.lang - Italian language bb_cp_1="Programma trovato" bb_cp_2="in" bb_cp_3="Programma NON TROVATO!" bb_cp_4="Se non lo installi molte caratteristiche potrebbero non funzionare." bb_cp_5="Controllo le path..." bb_cp_6=" Strumenti di masterizzazione" bb_cp_7=" Estrattori" bb_cp_8=" Codificatori e Decodificatori" bb_cp_9=" Misc" bb_cp_10="NOTA: Installa i programmi non trovati" bb_cp_11="o BashBurn potrebbe non funzionare correttamente." bb_cp_12="Premi [ENTER] per tornare al menù principale." bashburn-3.0.1/lang/Italian/commonfunctions.lang000066400000000000000000000014771153706571400217270ustar00rootroot00000000000000# commonfunctions.lang - Italian language file bb_cf_text1="Il cd sembra già scritto. Vuoi cancellarlo?" bb_cf_text2="Rispondi 'yes' solo se si tratta di un cd registrabile. Inserisci" bb_cf_text3="'abort' se vuoi terminare e tornare al menú." bb_cf_text4="Sto terminando..." bb_cf_text5="Sto cercando di masterizzare senza cancellare il CD. Probabilmente fallirà." bb_cf_text6="Cancellazione fallita. Masterizzazione terminata" bb_cdrw_blank1="Cancello il cd..." bb_cdrw_blank2="CDRW cancellato" bb_cdrw_blank3="La cancellazione è fallita. Cerco di forzare la cancellazione..." bb_cdrw_blank4="Cancellazione forzata completata con successo." bb_cdrw_blank5="La cancellazione non è stata completata. Dovresti cambiare questo cd." bb_cdrw_blank6="Il CD/DVD sembra vuoto (o non c'è un cd nel dispositivo), non sarà cancellato..." bashburn-3.0.1/lang/Italian/configure.lang000066400000000000000000000214251153706571400204620ustar00rootroot00000000000000# configure.lang - Italian language # Nick - this needs checking by a native speaker bb_conf_menu_writer="Masterizzatore" bb_conf_menu_cddev="File del dispositivo CD" bb_conf_menu_cdmnt="Punto di montaggio del lettore CD" bb_conf_menu_speed="Velocità " bb_conf_menu_blank="Tipo di cancellazione" bb_conf_menu_numdev="Numero dei dispositivi" bb_conf_menu_root="Directory Root" bb_conf_menu_burn="Directory del Masterizzatore" bb_conf_menu_label="Etichetta CD" #bb_conf_menu10="Copyright" bb_conf_menu_auth="Autore" #bb_conf_menu12="Editore" bb_conf_menu_desc="Descrizione" #bb_conf_menu14="Nome del pacchetto" bb_conf_menu_norm="Normalizza" bb_conf_menu_dropt="Opzioni del driver" bb_conf_menu_fifo="Directory FIFO" bb_conf_menu_deltmp="Elimina temp dopo la masterizzazione" bb_conf_menu_ob="Consenti overburn" #bb_conf_menu20="Protezione di copia" bb_conf_menu_bitrate="Modifica il bitrate" bb_conf_menu_lang="Lingua" bb_conf_menu_dtao="DAO/TAO" bb_conf_menu_gap="Spazio tra le tracce" bb_conf_menu_adv=Avanzato bb_conf_menu_apply="Applica modifiche" bb_conf_menu_default="Applica valori di default" bb_conf_menu_back="Indietro" bb_conf_menu_entry="Cosa scegli? " bb_conf_action_desc="Azioni" bb_conf_menu_toptext1="Configurazione" bb_conf_menu_toptext2="Valori attuali" bb_conf_default_is="Di default è" # End Nick # Everything below still needs fixing # =================================== bb_conf_ch1_1="Il masterizzatore si deve settare come 0,0,0 (Per SCSI)" bb_conf_ch1_2="ATAPI:0,0,0 o /dev/hdX (Per masterizzatori IDE)" bb_conf_ch1_3="(Dove hdX è l'unità  corrispondente, come hdc)" bb_conf_ch1_4="Puoi usare il nome del dispositivo es. yahama, sanyo, etc." bb_conf_ch1_5="se " bb_conf_ch1_6="la configurazione è corretta." bb_conf_ch1_7="(Possibile) Dispositivi SCSI:" bb_conf_ch1_8="(Possibile) Dispositivi IDE:" bb_conf_ch1_9="Inserisci la path per il masterizzatore: " bb_conf_ch1_10="Auto configurazione, inserisci auto" bb_conf_ch2_1="La path per il cdrom di solito è /dev/cdrom o /dev/dvd" bb_conf_ch2_2="Lista delle possibili unità cd (secondo /etc/fstab): " bb_conf_ch2_3="Inserisci la path del cdrom: " bb_conf_ch3_1="Il punto di montaggio per il cdrom di solito è /mnt/cdrom o /mnt/dvd" bb_conf_ch3_2="Elenco delle possibili unità cdrom (secondo /etc/fstab): " bb_conf_ch3_3="Inserisci il punto di montaggio: " bb_conf_ch4_1="Le versioni recenti di cdrecord non usano la velocità 1" bb_conf_ch4_2="di default. Per i dispositivi compatibili con MMC di" bb_conf_ch4_3="default si utlizza la velocità  massima, così che" bb_conf_ch4_4="non è necessario indicare una velocità di default." bb_conf_ch4_5="Salvo che non vi sia una buona ragione, usa la velocità -1 e lascia" bb_conf_ch4_6="che cdrecord usi i suoi valori di default." bb_conf_ch4_7="Inserisci la velocità del masterizzatore: " bb_conf_ch5_1="Inserisci il tipo di cancellazione. Per default è tutto il disco" bb_conf_ch5_2="Attualmente il valore è " bb_conf_ch6_1="Hai sia un lettore che un masterizzatore di cd?" bb_conf_ch6_2="Se così, inserisci 2. Altrimenti, inserisci 1" bb_conf_ch7_1="La directory root è dove si trovano gli script di shell di BashBurn." bb_conf_ch7_2="Cambiala solamente se sai quello che fai." bb_conf_ch7_3="Se vuoi cancellare, premi enter " bb_conf_ch7_4=" al prompt." bb_conf_ch8_1="La directory di masterizzazione è dove risiedono i file da masterizzare." bb_conf_ch8_2="Assicurati di avere il permesso di scrittura in questa directory." bb_conf_ch9_1="Questo è il nome del punto di montaggio usato dal" bb_conf_ch9_2="volume management system di Solaris e il nome che viene" bb_conf_ch9_3="assegnato al disco da Microsoft Win32 o dalla piattaforma Apple Mac." bb_conf_ch9_4="Attualmente l'etichetta è " bb_conf_ch9_4b="Se desideri che ti venga chiesto ogni volta quale etichetta preferisci" # New in 1.6 bb_conf_ch9_4c="inserisci come etichetta." # New in 1.6 bb_conf_ch9_5="Inserisci l'etichetta del cd che preferisci:" bb_conf_ch10_1="Se desideri aggiungere il copyright al tuo cd, inseriscilo qui:" bb_conf_ch11_1="Questo dovrebbe descrivire il preparatore del cd, di solito" bb_conf_ch11_2="con un indirizzo di posta elettronica e un numero di telefono." bb_conf_ch11_3="C'è spazio per 128 caratteri di informazione nel disco." bb_conf_ch11_4="L'autore attuale è " bb_conf_ch11_5="Inserisci l'Autore/Proprietario del CD - hey, sei tu, no?" bb_conf_ch12_1="Questo dovrebbe descrivere il preparatore del cd, di solito" bb_conf_ch12_2="con un indirizzo di posta elettronica e un numero di telefono." bb_conf_ch12_3="C'è spazio per 128 caratteri di informazione nel disco." bb_conf_ch12_4="L'editore attuale è " bb_conf_ch12_5="Inserisci l'editore del cd (se c'è):" bb_conf_ch13_1="Questo dovrebbe descrivere il contenuto del" bb_conf_ch13_2="disco. C'è uno spazio nel disco per 128 caratteri" bb_conf_ch13_3="di informazione. La descrizione attuale è:" bb_conf_ch13_4="Descrivi il contenuto del cd:" bb_conf_ch14_1="Un pacchetto consiste di diversi cd, per esempio," bb_conf_ch14_2="un sistema operativo che viene distribuito su più dischi." bb_conf_ch14_3="Questo è opzionale. Se lo usi devi configurare la quantità" bb_conf_ch14_4="di cd e il numero di ogni disco." bb_conf_ch14_5="Il nome del pacchetto attuale è " bb_conf_ch14_6="Inserisci il nome del pacchetto:" bb_conf_ch15_1="Normalizza è usato per regolare il volume dei file WAV a un livello di" bb_conf_ch15_2="volume standard. Questo è utile quando si vuole creare un album partendo da vari mp3," bb_conf_ch15_3="presi da fonti diverse, in cui il diverso livello di volume di ciascuno" bb_conf_ch15_4="potrebbe cambiare sensibilmente da brano a brano. Attualmente il suo valore è " bb_conf_ch15_5="Inserisci yes solo se hai il programma per la normalizzazione installato, altrimenti inserisci no." bb_conf_ch16_1="Inserisci le opzioni del driver che desideri usare, separate" bb_conf_ch16_2="da una virgola. Se non sei sicuro, premi enter senza scrivere nulla." bb_conf_ch17_1="Inserisci l'indirizzo della directory FIFO. E' necessario solo per masterizzazione" bb_conf_ch17_2="reindirizzata, e il più delle volte va bene il valore di default." bb_conf_ch17_3="Se vuoi cancellare premi enter " bb_conf_ch17_4=" al prompt." bb_conf_ch17_5=" è la directory FIFO attuale" bb_conf_ch18_1="Cancellare i file in " bb_conf_ch18_2=" dopo che la masterizzazione è terminata?" bb_conf_ch18_3="Di default è no, che sarebbe l'opzione nel caso" bb_conf_ch18_4="si voglia masterizzare gli stessi file più di una volta... (yes/no)" bb_conf_ch19_1="Desideri che BashBurn permetta l'overburn? Il tuo" bb_conf_ch19_2="masterizzatore deve supportarlo e non è sicuro che" bb_conf_ch19_3="funzioni, dato che questo permette di scrivere sul cd" bb_conf_ch19_4="più di quello per cui è stato prodotto." bb_conf_ch19_5="Di default è no. (yes/no)" bb_conf_ch20_1="Questa opzione è per i cd audio. Il contenuto è protetto contro la copia?" bb_conf_ch20_2="Di default è no, diversamente inserisci yes " bb_conf_ch20_3="NOTA: " bb_conf_ch20_4="Questa opzione " bb_conf_ch20_5="non" bb_conf_ch20_6=" protegge contro la copia dei file audio" bb_conf_ch20_7="che saranno masterizzati, semplicemente informa cdrecord se esistono." bb_conf_ch21_1="Dal bitrate dipende maggiormente la qualità dei file audio." bb_conf_ch21_2="Più alto è il bitrate, maggiore è la qualità. Ovviamente un maggior bitrate" bb_conf_ch21_3="causa un aumento della dimensione dei file audio." bb_conf_ch21_4="Configurare il bitrate per i file audio MP3 e OGG." bb_conf_ch21_5="Di default è 128. " bb_conf_ch22_1="Qui si modifica la lingua di BashBurn, di default è Inglese." bb_conf_ch22_2="Lingue disponibili:" bb_conf_ch23_1="Questo è per indicare a cdrecord in che modo masterizzare:" bb_conf_ch23_2="SAO (Session at Once)" bb_conf_ch23_2b=" chiamato anche " bb_conf_ch23_2c="DAO (Disk at once)" bb_conf_ch23_3="o" bb_conf_ch23_4="TAO (Track at once)" bb_conf_ch23_5="Di default è TAO." bb_conf_ch23_6="Per maggiori informazioni consulta il manuale di cdrecord (man cdrecord)" bb_conf_ch23_7="Inserisci la tua scelta come -tao, -sao o -dao (SAO e DAO sono la stessa cosa)" # Added in BashBurn 2.1 bb_conf_ch24_1="Questa opzione abilita o disabilita lo spazio (gap) tra le tracce." bb_conf_ch24_2="Se non vuoi che ci sia spazio tra le tracce, per esempio" bb_conf_ch24_3a="quando si masterizza un cd audio, inserisci" bb_conf_ch24_3b="per annullare questa opzione." bb_conf_ch24_4="(Enabled)." bb_conf_apply_1="Modifiche applicate!" bb_conf_apply_2="Non si può scrivere in" bb_conf_apply_3="A volte occorre dare il comando chmod 666" bb_conf_def_1="Valore di default applicato!" bb_conf_def_2="(BBROOTDIR *non* ha un valore di default - devi cambiarlo!)" bb_conf_xit_1="Torna al menù principale" bb_conf_xit_2="Hai selezionato di applicare le modifiche prima di uscire, non sei sicuro?" bb_conf_err="Per favore inserisci " # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/Italian/convert_flacs.lang000066400000000000000000000002011153706571400213160ustar00rootroot00000000000000# convert_flacs.lang - Italian version bb_conv_flac_1="I file FLAC sono stati convertiti e sono pronti per essere masterizzati" bashburn-3.0.1/lang/Italian/convert_mp3s.lang000066400000000000000000000002641153706571400211210ustar00rootroot00000000000000# convert_mp3s.lang - Italian language bb_conv_mp3_1="sono stati decompressi" bb_conv_mp3_2="e sono pronti per essere masterizzati" bb_conv_mp3_3="non possono essere decompressi" bashburn-3.0.1/lang/Italian/convert_oggs.lang000066400000000000000000000001721153706571400211740ustar00rootroot00000000000000# convert.lang - Italian language bb_conv_ogg="I file OGG sono stati decompressi e sono pronti per essere masterizzati." bashburn-3.0.1/lang/Italian/data_menu.lang000066400000000000000000000016711153706571400204370ustar00rootroot00000000000000# data_menu.lang - Italian language bb_dm_newcd="Inserisci un cd vuoto e premi [ENTER] per continuare" bb_dm_wait="Premi [ENTER] per tornare al menù principale." bb_dm_menu_title="Menù dei dati" bb_dm_menu_1="Masterizza dati" bb_dm_menu_2="Copia un cd di dati (CD a CD)" bb_dm_menu_3="Masterizza un DVD di dati" bb_dm_menu_4="Cancella CDRW" bb_dm_menu_5="Cancella DVD" bb_dm_menu_0="Indietro" bb_dm_menu_entry="Cosa scegli? " bb_dm_ch2_1=" non montato! Devi prima montarlo..." bb_dm_ch2_2="C'è già un file ISO in " bb_dm_ch2_3=" Cancellarlo o spostarlo" bb_dm_ch2_4="prima di crearne uno nuovo." bb_dm_ch2_5="CD copiato!" bb_dm_ch2_6="Inizio la masterizzazione" bb_dm_ch0="torno al menù..." bb_dm_error="Per favore inserisci " bb_dm_cdcopy="Sto copiando il contenuto del cd in " bb_dm_cdcopy_err1="Errore nello spostamento. Sei sicuro di avere il cd corretto nel dispositivo?" bb_dm_cdcopy_err2="(Controlla i messaggi d'errore per suggerimenti)" bashburn-3.0.1/lang/Italian/datadefine.lang000066400000000000000000000021571153706571400205660ustar00rootroot00000000000000# datadefine.lang - Italian language bb_mnt_menu_title="Indica i dati da masterizzare" bb_wfe_1="Premi [ENTER] per tornare al menù." bb_dc_menu_1=" Copia/Linka i dati in " bb_dc_menu_2=" Verifica i dati in " bb_dc_menu_3=" Elimina i dati in " bb_dc_menu_0=" Indietro" bb_dc_explain1="Adesso sarai posto in un terminale. La tua posizione attuale" bb_dc_explain2a="è nella " bb_dc_explain2b=" directory. Affinchè BashBurn possa" bb_dc_explain3="masterizzare qualcosa, devi copiare o linkare i tuoi dati" bb_dc_explain4="in questa directory. Puoi usare i comandi" bb_dc_explain5="cp o ln. Per esempio, per linkare qui dei dati, inserisci:" bb_dc_explain6=" 'ln -s ./' (Senza '')" bb_dc_explain7="e per copiare i dati sostituisci ln -s con cp. Quando hai finito, " bb_dc_explain8="inserisci il comando 'exit' (Senza '') per tornare al menù principale." bb_dc_ch3_1="Vuoi veramente cancellare questi file? <'${BBHEADCOLOR}y${BBCOLOROFF}'/'${BBTABLECOLOR}n${BBCOLOROFF}'>: " bb_dc_ch3_2="File cancellati." bb_dc_ch3_3="File non cancellati" bb_dc_ch3_4="Non ci sono file in " bb_dc_menu_err="Errore. Per favore scegli" bashburn-3.0.1/lang/Italian/iso_menu.lang000066400000000000000000000021141153706571400203110ustar00rootroot00000000000000# iso_menu.lang - Italian language bb_im_wait_1="Premi [ENTER] per tornare al menù." bb_im_menu_title="Menù ISO" bb_im_menu_1="Masterizza ISO" bb_im_menu_2="Crea ISO da file in " bb_im_menu_3="Crea ISO da un cd" bb_im_menu_4="Masterizza file immagine DVD" bb_im_menu_5="Monta immagine" bb_im_menu_0="Indietro" bb_im_menu_entry="Cosa scegli? " bb_im_error_files="Non ci sono file in " bb_im_ch2_1="C'è un file ISO in " bb_im_ch2_2=" Cancellarlo o spostarlo in" bb_im_ch2_3="prima di crearne uno nuovo." bb_im_ch2_4="Sto cercando di creare un file ISO" bb_im_ch2_4b="Etichetta del tuo cd di dati: " # New in 1.6 bb_im_ch2_5="File ISO creato" bb_im_ch2_6="Errore: Non si può creare un file ISO!" bb_im_ch2_7="Forse non hai i permessi di scrittura?" bb_im_ch3_1=" non montato! Prima montalo..." bb_im_ch3_2="Sto creando un file ISO dal cd in " bb_im_ch5_1="Inserisci la path del file immagine da montare:" bb_im_ch5_2="(o premi Enter per terminare)" bb_im_ch5_3="Non è stato inserito il nome del file, sto terminando." bb_im_ch0="Sto tornando al menu..." bb_im_error="Per favore inserisci " bashburn-3.0.1/lang/Italian/loopback.lang000066400000000000000000000031621153706571400202710ustar00rootroot00000000000000# loopback.lang - Italian language bb_lb_noread="non può essere letto." bb_lb_no_lb_dir="Non c'è una directory di loopback, la sto creando..." bb_lb_dir_c="Directory creata." bb_lb_dir_cf="Creazione fallita, sto terminando." bb_lb_no_im_dir="Non c'è una directory di file immagine, la sto creando..." bb_lb_no_temp_dir="Non c'è la directory per i file temporanei, la sto creando..." bb_lb_sudo1="Devi essere nel gruppo sudoers per montare il file immagine." bb_lb_sudo2="Inserisci la tua password in basso, se fallisce potrebbe essere" bb_lb_sudo3="perchè non sei nel gruppo. In questo caso, correggi e prova di nuovo." bb_lb_sudo4="Devi avere il supporto per dispositivi di loopback" bb_lb_sudo5="compilato nel kernel o come modulo," bb_lb_sudo6="o il prossimo passaggio fallirà." bb_lb_mount="Immagine montata." bb_lb_mount_fail="Montaggio fallito, sto terminando." bb_lb_cp_cont="Sto copiando il contenuto, attendere per favore..." bb_lb_in_file="Adesso sei nel file system del file immagine. Apporta le tue modifiche e poi inserisci 'exit'." bb_lb_change1="Hai modificato qualcosa? (Se è così, una nuova immagine" bb_lb_change2="deve essere creata e questo richiede del tempo) (y/n)" bb_lb_change3="Ci sono già dei dati in " bb_lb_change4="saranno eliminati se si continua." bb_lb_change5="Vuoi continuare? (y/n)" bb_lb_change6="Sto creando una nuova immagine, attendere per favore..." bb_lb_change7="Nuova immagine creata in " bb_lb_change8="Sto terminando, le informazioni non saranno cancellate. Le modifiche al file immagine andranno perse." bb_lb_change9="Modifiche non effettuate, viene saltata la creazione della nuova immagine." bashburn-3.0.1/lang/Italian/mount.lang000066400000000000000000000032171153706571400176420ustar00rootroot00000000000000# mount.lang - Italian language bb_mnt_enter_1="Premi [ENTER] per tornare" bb_mnt_menu_title="Monta/Smonta il dispositivo" bb_mnt_menu_1="Monta il dispositivo" bb_mnt_menu_2="Smonta il dispositivo" bb_mnt_menu_3="Espelli il dispositivo" bb_mnt_menu_0="Indietro" bb_mnt_menu_input="Cosa scegli? " bb_mnt_ch1_1="Quale dispositivo vuoi montare? Inserisci per esempio /mnt/cdrom" bb_mnt_ch1_2="(Devi inserire il punto di montaggio, non il file del dispositivo. Per esempio" bb_mnt_ch1_3="/mnt/cdrom dovrebbe andare bene, invece di /dev/cdrom. Premi solamente [ENTER]" bb_mnt_ch1_4="senza scrivere nulla per terminare." bb_mnt_ch1_5="Montaggio cancellato!" bb_mnt_ch1_6="Sto montando " bb_mnt_ch1_7=" montato." bb_mnt_ch1_8="Montaggio fallito. Forse non hai i permessi necessari," bb_mnt_ch1_9="il dispositivo è già montato, non c'è un cd nel dispositivo" bb_mnt_ch1_10="oppure la path del dispositivo non è corretta?" bb_mnt_ch2_1="Sembra che non ci siano dispositivi montati." bb_mnt_ch2_2="Quale dispositivo vuoi smontare? Inserisci per esempio /mnt/cdrom" bb_mnt_ch2_3=" smontato." bb_mnt_ch2_4="Smontaggio fallito. Forse non hai i permessi necessari" bb_mnt_ch2_5="oppure la path del dispositivo non è corretta?" bb_mnt_ch3_1="Quale dispositivo vuoi espellere? Inserisci per esempio /mnt/cdrom" bb_mnt_ch3_1b="o premi solamente [ENTER] senza scrivere nulla per terminare." bb_mnt_ch3_1c="Terminato!" bb_mnt_ch3_2=" espulso. (Nel caso non te ne fossi accorto ;-) )" bb_mnt_ch3_3="Espulsione fallita. Forse non hai i permessi necessari" bb_mnt_ch3_4="oppure la path del dispositivo non è corretta?" bb_mnt_ch0="Indietro al menù principale" bb_mnt_error="Per favore scegli " bashburn-3.0.1/lang/Italian/multi.lang000066400000000000000000000040221153706571400176250ustar00rootroot00000000000000# multi.lang - Italian language bb_multi_enter_1="Premi [ENTER] per tornare al menù principale." bb_multi_enter_2="Premi [ENTER] per continuare." bb_multi_burn_1="Trovato ISO..." bb_multi_burn_2=" se questa NON è la prima masterizzazione di un cd multisessione" bb_multi_burn_3=" allora questo file ISO *DEVE* essere stato creato usando delle impostazioni corrette di una sessione precedente" bb_multi_burn_4=" Perchè? Altrimenti le impostazioni di questa sessione sarebbero invisibili e inutilizzabili" bb_multi_burn_5="CD masterizzato..." bb_multi_burn_6=" Non è stata trovata una immagine ISO, sto cercando di crearne una..." bb_multi_burn_7="Sto prendendo le impostazioni della sessione precedente usando -msinfo" bb_multi_burn_8=" i dati msinfo necessari per una multisessione sono:" bb_multi_burn_9="se le parentesi" bb_multi_burn_9b="contengono due numeri con una virgola - TUTTO OK PER CONTINUARE!" bb_multi_burn_10="un messaggio di errore che finisce con: \"cdrecord: Cannot read session offset\" significa che c'è un cd vergine vuoto" bb_multi_burn_11="un messaggio di errore che finisce con: \"cdrecord: No disk / Wrong disk!\" significa che non c'è un disco nel dispositivo" bb_multi_burn_12="sono state ottenute informazioni di una multisessione valida, aggiungo args:" bb_multi_burn_13="La prima masterizzazione multisessione di un cd non richiede informazioni da una sessione precedente" bb_multi_burn_14="Allora, crea il file ISO se possibile..." bb_multi_burn_14b="Etichetta del tuo cd di dati: " # New in 1.6 bb_multi_burn_15="ISO creato" bb_multi_burn_16="Errore: non si può creare un file ISO." bb_multi_burn_17="Forse... non ci sono file in " bb_multi_burn_18="Forse non hai i permessi di scrittura?" bb_multi_menu_title="CD multisessione" bb_multi_menu_1="Prima masterizzazione di un cd multisessione" bb_multi_menu_2="Continua cd multisessione" bb_multi_menu_3="Termina cd multisessione" bb_multi_menu_0="Indietro" bb_multi_menu_entry="Cosa scegli? " bb_multi_ch0="Torna al menù principale..." bb_multi_err="Per favore inserisci " bashburn-3.0.1/lang/Norwegian/000077500000000000000000000000001153706571400162025ustar00rootroot00000000000000bashburn-3.0.1/lang/Norwegian/BashBurn.lang000066400000000000000000000032241153706571400205520ustar00rootroot00000000000000# BashBurn.lang - Nynorsk bb_conf_check1="BashBurn er ikkje sett opp. Vel 'Set opp' frĂ„ menyen og" bb_conf_check2="set opp BashBurn fĂžr du gjer noko anna." bb_quit1="Takk for at du brukte " bb_quit2="GĂ„ til " bb_quit3="http://bashburn.sf.net " bb_quit4="for informasjon og oppdateringar." bb_press_enter="Trykk [ENTER] for Ă„ halda fram." bb_no_temp_dir="Katalogen for midlertidige filer finst ikkje. PrĂžver Ă„ laga han." bb_text_1="vart vellukka!" bb_text_2="Set opp BashBurn fĂžr du prĂžver Ă„ brenna." bb_text_3="Du har ikkje skrivetilgang for" bb_text_4="Du mĂ„ endra denne innstillinga i oppsettet, elles kan du ikkje brenna noko." bb_text_5="Katalogen" bb_text_6="finst ikkje, sjĂžlv om du skreiv han inn i oppsettfila." bb_text_7="Finn cd-brennar...." bb_text_8="Fann: " bb_main_menu=MAIN bb_menu_1="Lyd" bb_menu_2="Data" bb_menu_3="ISO (cd-avtrykk)" bb_menu_4="Bin/cue (video-cd)" bb_menu_5="Multisesjon" bb_menu_6="Set opp BashBurn" bb_menu_7="Monter og avmonter cd" bb_menu_8="Sjekk programstiar" bb_menu_9="Spesifiser data du vil brenna" bb_menu_0="Avslutt" bb_menu_input="Kva vel du? " bb_cdrw_blank1="Slettar cd..." bb_cdrw_blank2="Har sletta cdrw" bb_cdrw_blank3="Enkel sletting verka ikkje. PrĂžver Ă„ tvinga sletting..." bb_cdrw_blank4="Tvungen sletting vellukka." bb_cdrw_blank5="Greidde ikkje Ă„ sletta. Du bĂžr finna ein ny cd." bb_burndir_view="Innhaldet i" bb_burndir_del1="Vil du verkeleg sletta alle filene i" bb_burndir_del1b="(y/n)" bb_burndir_del2="er fjerna." bb_burndir_del3="Sletting avbroten" bb_exit_error="Ver god Ă„ velja " bb_hit_any_key_to_continue='Hit any key to continue' # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/Norwegian/README000066400000000000000000000005641153706571400170670ustar00rootroot00000000000000BashBurn translation HOWTO It's quite simple, you open up the files in any simple text editor, and translate the english sentences into the your language. When you are finished translating all files, copy them into a directory with the name of your language, and create a tar.gz/bzip2/zip archive of it. Any questions send me a mail at anders.linden@gmail.com /Anders bashburn-3.0.1/lang/Norwegian/advanced.lang000066400000000000000000000014561153706571400206200ustar00rootroot00000000000000# Norwegian language file for advanced.long # FIXME: NOT DONE # # Number of tabs after each option text will vary between languages. # bb_adv_menutitle="Advanced Options" bb_adv_cdburncmd="CD burning command" bb_adv_dvdburncmd="DVD burning command" bb_adv_isocmd="ISO creation command" bb_adv_dvdblankcmd="DVD blanking command" bb_adv_imgburncmd="CD image burn command" bb_adv_audioripcmd="CD audio ripping command" bb_adv_cdcopycmd="CD copying command" bb_adv_cdcopyopts="CD copying options" bb_adv_mp3enc="MP3 encoder command" bb_adv_mp3dec="MP3 decoder command" bb_adv_oggenc="Ogg encoder command" bb_adv_oggdec="Ogg decoder command" bb_adv_flac="FLAC encoder/decoder command" bb_adv_eject="Disc eject command" bb_adv_norm="Audio normalization command" # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/Norwegian/audio_menu.lang000066400000000000000000000042331153706571400211740ustar00rootroot00000000000000# audio_menu.lang - Nynorsk bb_am_enter_1="Trykk [ENTER] for Ă„ gĂ„ tilbake til hovudmenyen." bb_am_enter_2="Set inn ein tom cd og trykk [ENTER] for Ă„ gĂ„ vidare" bb_am_nomp3s="Ingen mp3-filer i " bb_am_nooggs="Ingen Ogg-filer i " bb_am_noflacs="Ingen Flac-filer i " bb_am_norm_1=" Normaliserer " bb_am_err_1="[FEIL]: Lei for det :( BashBurn kan ikkje lesa cden!" bb_am_conf_1=" Du valde Ă„ henta desse spora: " bb_am_conf_2="Er dette rett? (y/n): " bb_am_named_1="Cd-informasjon..." bb_am_named_2="Trykk [ENTER] for Ă„ halda fram, eller" bb_am_named_3="Skriv kva lydspor du vil henta " bb_am_named_4="Du kan bruka mellomrom i filnamn!" bb_am_named_5="ie. Artist - song, Artist_song, Artist-song." bb_am_named_6="Kva heiter lydsporet " bb_am_rip_1=" Hentar lydspor " bb_am_rip_2="Har henta lydspor!" bb_am_encfilt=" Omkodingsfilterkommando..." bb_am_menu_title="Lydmeny" bb_am_menu_1="Brenn lyd-cd frĂ„ Mp3/Ogg/Wav/Flac" bb_am_menu_2="Brenn lyd-cd direkte" bb_am_menu_3="Kopier lyd-cd (cd til cd)" bb_am_menu_4="Kopier lyd-cd (cd til harddisk)" bb_am_menu_5="Brenn Xmms-speleliste" bb_am_menu_6="Lag mp3-filer av wav-filer" bb_am_menu_7="Lag ogg-filer av wav-filer" bb_am_menu_8="Lag flac-filer av wav-filer" bb_am_menu_9="Lag mp3-filer frĂ„ cd" bb_am_menu_10="Lag ogg-filer frĂ„ cd" bb_am_menu_11="Lag flac-filer frĂ„ cd" bb_am_menu_0="Tilbake" bb_am_menu_input="Kva vel du? " bb_am_ch3_1="Ferdig Ă„ brenna - takk for at du brukte BashBurn" bb_am_ch3_2="Feil! Kunne ikkje brenna cd-en." bb_am_ch3_3="Feil! Greidde ikkje henta lydspor frĂ„ " bb_am_ch4_1="Har henta og lagra lydspor i " bb_am_ch4_2=" Viss du vil laga" bb_am_ch4_3="mp3- ,ogg- eller flac-filer, bruker du funksjonane frĂ„ menyen." bb_am_ch5="Greidde ikkje lesa speleliste. Kjem ikkje til Ă„ brenna cd." bb_am_ch6_1=" laga..." bb_am_ch6_2" kunne ikkje bli komprimert" bb_am_ch6_3="Ingen wav-filer i " bb_am_ch7_1="Laga fil..." bb_am_ch9_1=" Lagar mp3-filer..." bb_am_ch9_2="Har laga mp3-filer. Filene er i " bb_am_ch10_1=" Lagar ogg-filer..." bb_am_ch10_2="Har laga ogg-filer. Filene er i " bb_am_ch11_1="Har laga flac-filer. Filene er i " bb_am_ch0="GĂ„r tilbake til hovudmenyen" bb_am_error="Ver god Ă„ velja " bashburn-3.0.1/lang/Norwegian/bincue.lang000066400000000000000000000007411153706571400203140ustar00rootroot00000000000000# bincue.lang - Nynorsk bb_press_enter="Trykk [ENTER] for Ă„ gĂ„ tilbake til hovudmenyen." bb_bincue_copy_1="Bin- og cue-fil mĂ„ vera kopiert eller lenka til" bb_bincue_copy_1b="fĂžr du prĂžver Ă„ brenna." bb_bincue_copy_2="Har du gjort det? (y/n): " bb_bincue_copy_3="Ver god Ă„ kopiera bin- og cue-fil til" bb_bincue_copy3b="fĂžr du prĂžver Ă„ brenna." bb_bincue_burn_1="Ferdig Ă„ brenna" bb_bincue_burn_2="Greidde ikkje Ă„ brenna. Kanskje du ikkje har rette tilgangslĂžyve." bashburn-3.0.1/lang/Norwegian/burning.lang000066400000000000000000000023371153706571400205160ustar00rootroot00000000000000# burning.lang - Nynorsk bb_press_enter="Trykk [ENTER] for Ă„ gĂ„ tilbake til hovudmenyen." bb_no_ob="SlĂ„r ikkje pĂ„ overbrenning..." bb_burning_tmp_1="Mellomlagra filer i" bb_burning_tmp_1b="sletta..." bb_burning_tmp_2="ikkje sletta..." bb_burning_audio_1="funne" bb_burning_audio_2="Ingen lydfiler i" bb_burning_audio_3="Normaliserer ikkje..." bb_burning_finish_1="Ferdig Ă„ brenna" bb_burning_finish_2="Greidde ikkje brenna." bb_burning_finish_3="Fil(er) kopiert eller lenka til" bb_burning_error="Ingen filer i " bb_burning_iso_1="Ingen iso-fil (cd-avtrykk) i" bb_burning_data_1="PrĂžver Ă„ laga ei iso-fil (cd-avtrykk)" bb_burning_data_label="Merkelapp for data-cden din: " bb_burning_data_2="Feil: Greidde ikkje laga iso-fil (cd-avtrykk)." bb_burning_data_3="Kanskje du treng skrivetilgang?" bb_burning_fifo_1="Ingen WAV-filer i" bb_burning_fifo_2="Kjem til Ă„ brenna" bb_burning_fifo_2b="spor!" bb_burning_fifo3="Fjern ubrukte fifoar" bb_burning_dvd_1="Er dette fyrste Ăžkta pĂ„ denne DVDen?" bb_burning_dvd_2="(Skriv 'no' om du vil leggja ei ny Ăžkt til ein" bb_burning_dvd_3="DVD som alt er brent. For Ă„ avbryta denne handlinga," bb_burning_dvd_4="trykkjer du [ENTER] utan Ă„ skriva inn noko)" bb_burning_dvd_5="(yes/no): " bashburn-3.0.1/lang/Norwegian/check_path.lang000066400000000000000000000007511153706571400211410ustar00rootroot00000000000000# check_path.lang - Nynorsk bb_cp_1="Fann programmet" bb_cp_2="i" bb_cp_3="Fann ikkje programmet!" bb_cp_4="Installer det for Ă„ fĂ„ full nytte av BashBurn." bb_cp_5="Sjekkar programstiar..." bb_cp_6=" Brenneverkty" bb_cp_7=" Verkty for lydhenting" bb_cp_8=" Verkty for koding og avkoding" bb_cp_9=" Ymse" bb_cp_10="OBS: Installer programma som ikkje vart funne," bb_cp_11="elles kan det hende BashBurn ikkje verkar skikkeleg." bb_cp_12="Trykk [ENTER] for Ă„ gĂ„ tilbake til hovudmenyen" bashburn-3.0.1/lang/Norwegian/commonfunctions.lang000066400000000000000000000017201153706571400222660ustar00rootroot00000000000000# commonfunctions.lang - Norwegian language file # FIXME: Not done bb_cf_text1="CD seems to already be written to. Do you wish to blank it?" bb_cf_text2="Only answer 'yes' if the media is a rewritable disk. Enter" bb_cf_text3="'abort' if you wish to cancel and return to the menu." bb_cf_text4="Aborting..." bb_cf_text5="Trying to burn without blanking CD. This will probably fail." bb_cf_text6="Blanking failed. Burn process aborted" bb_cdrw_blank1="Blanking cd..." bb_cdrw_blank2="CDRW blanked" bb_cdrw_blank3="Plain blanking failed. Trying to force..." bb_cdrw_blank4="Forced blanking succeeded." bb_cdrw_blank5="Blanking was not successful. You should replace this cd." bb_cdrw_blank6="CD/DVD seems to be blank (Or no CD in drive), not blanking..." bb_dvd_blank1="Fast or total blanking?" bb_dvd_blank2="Enter yes for fast, " bb_dvd_blank3="or no for a total formatting." bb_dvd_blank4="Enter [ENTER] without entering anything" bb_dvd_blank5="To cancel the operation." bashburn-3.0.1/lang/Norwegian/configure.lang000066400000000000000000000200641153706571400210300ustar00rootroot00000000000000# configure.lang - Nynorsk # Nick - this needs checking by a native speaker bb_conf_menu_writer="CD-brennar" bb_conf_menu_cddev="Einingsfil for CD-lesar" bb_conf_menu_cdmnt="Monteringspunkt for CD-lesar" bb_conf_menu_speed="Fart" bb_conf_menu_blank="SlettingsmĂ„e" bb_conf_menu_numdev="Tal pĂ„ einingar" bb_conf_menu_root="Rotkatalog" bb_conf_menu_burn="Brennekatalog" bb_conf_menu_label="CD-merkelapp" #bb_conf_menu10="Kopieringsrett" bb_conf_menu_auth="Forfattar" #bb_conf_menu12="Utgjevar" bb_conf_menu_desc="Skildring" #bb_conf_menu14="Namn pĂ„ pakka" bb_conf_menu_norm="Normaliser" bb_conf_menu_dropt="Drivarval" bb_conf_menu_fifo="Fifo-katalog" bb_conf_menu_deltmp="Slett mellomlager etter brenning" bb_conf_menu_ob="SlĂ„ pĂ„ overbrenning" #bb_conf_menu20="Kopisikring" bb_conf_menu_bitrate="Set bitraten" bb_conf_menu_lang="SprĂk" bb_conf_menu_dtao="DAO/TAO" bb_conf_menu_gap="Hull blant banes" bb_conf_menu_adv=Avansert bb_conf_menu_apply="Bruk endringane" bb_conf_menu_default="Bruk standardval" bb_conf_menu_back="Tilbake" bb_conf_menu_entry="Kva vel du?" bb_conf_action_desc="Aksjons" bb_conf_menu_toptext1=Sette opp bb_conf_menu_toptext2='Aktuell valűr' bb_conf_default_is='forhćndsvalg være' # End Nick # Everything below still needs fixing # =================================== bb_conf_ch1_1="Du mĂ„ skriva inn brennaren som 0,0,0 (for SCSI)" bb_conf_ch1_2="ATAPI:0,0,0 eller /dev/hdX (for IDE-brennarar)" bb_conf_ch1_3="(der hdX er rett stasjon, slik som hdc)" bb_conf_ch1_4="Du kan ĂČg bruka namnet pĂ„ eininga, til dĂžmes yamaha, sanyo osb." bb_conf_ch1_5="viss " bb_conf_ch1_6="er rett sett opp." bb_conf_ch1_7="(Moglege) SCSI-EININGAR:" bb_conf_ch1_8="(Moglege) IDE-EININGAR:" bb_conf_ch1_9="Skriv inn rett sti til brennaren: " bb_conf_ch1_10="AutosĂžk: skriv inn auto" bb_conf_ch2_1="Stien til cdrom-eininga er vanlegvis noko slikt som /dev/cdrom eller /dev/dvd" bb_conf_ch2_2="Liste over moglege cdrom-einingar (etter /etc/fstab): " bb_conf_ch2_3="Skriv inn cdrom-einingsfila: " bb_conf_ch3_1="Monteringspunktet for cdrom-eininga di er vanlegvis noko slikt som /mnt/cdrom eller /mnt/dvd" bb_conf_ch3_2="Liste over moglege cdrom-einingar (etter /etc/fstab): " bb_conf_ch3_3="Skriv inn monteringspunktet for cdrom-eininga: " bb_conf_ch4_1="Ver merksam pĂ„ at nyare versjonar av cdrecord ikkje set" bb_conf_ch4_2="1x som standardfart. For brennarar som er kompatible med MMC, er standardvalet" bb_conf_ch4_3="Ă„ brenna med hĂžgast mogleg fart, sĂ„ generelt er det" bb_conf_ch4_4="ikkje vits i Ă„ setja standard brennarfart." bb_conf_ch4_5="Medmindre du har ein god grunn, bĂžr du seta farten til -1 og la" bb_conf_ch4_6="cdrecord bruka standardvalet for kvar brennar." bb_conf_ch4_7="Skriv inn brennarfarten: " bb_conf_ch5_1="Skriv inn slettemĂ„te. Standard er alt eller disk" bb_conf_ch5_2="No er det sett til " bb_conf_ch6_1="Har du bĂ„de cd-lesar og cd-brennar?" bb_conf_ch6_2="Viss du har, skriv inn 2. Viss ikkje, skriv inn 1." bb_conf_ch7_1="Rotkatalogen er der BashBurn har skallskripta sine." bb_conf_ch7_2="Du bĂžr berre endra det om du veit kva du gjer." bb_conf_ch7_3="Viss du vil avbryta, skriv du berre inn " bb_conf_ch7_4=" pĂ„ kommandolinja." bb_conf_ch8_1="Brennekatalogen er der du legg eller lenkar til dei filene du vil brenna." bb_conf_ch8_2="Pass pĂ„ Ă„ ha skrivetilgang til den katalogen." bb_conf_ch9_1="Dette er namnet som vil bli brukt pĂ„ monteringspunktet pĂ„" bb_conf_ch9_2="volumstyringssystemet til Solaris, og namnet som blir" bb_conf_ch9_3="gjeve til cden pĂ„ ein Microsoft Win32- eller Apple Mac-plattform." bb_conf_ch9_4="Merkelappen er no " bb_conf_ch9_4b="Om du vil ha spĂžrsmĂ„l kvar gong om kva slags merkelapp du vil ha," # New in 1.6 bb_conf_ch9_4c="skriv du inn som merkelapp." # New in 1.6 bb_conf_ch9_5="Skriv inn merkelapp pĂ„ cden:" bb_conf_ch10_1="Om du vil setja kopieringsrett pĂ„ cden din, skriv du det inn her:" bb_conf_ch11_1="Dette skildrar til vanleg kven som har laga cden," bb_conf_ch11_2="oftast med postadresse og telefonnummer." bb_conf_ch11_3="Det er plass til 128 teikn med slik informasjon." bb_conf_ch11_4="Forfattaren er no " bb_conf_ch11_5="Skriv inn kven som har forfatta eller laga cden - hei, er ikkje det du?" bb_conf_ch12_1="Dette skildrar til vanleg kven som har gjeve ut cden," bb_conf_ch12_2="oftast med postadresse og telefonnummer." bb_conf_ch12_3="Det er plass til 128 teikn med slik informasjon." bb_conf_ch12_4="Utgjevaren er no " bb_conf_ch12_5="Skriv inn kven som gjev ut cden (om nokon)" bb_conf_ch13_1="Dette skildrar til vanleg kva slags program det er" bb_conf_ch13_2="pĂ„ cden. Det er plass til 128 teikn med slik" bb_conf_ch13_3="informasjon. Skildringa er no:" bb_conf_ch13_4="Skildre kva som er pĂ„ cden:" bb_conf_ch14_1="Ei pakke inneheld fleire cdar, til dĂžmes eit operativsystem" bb_conf_ch14_2="der innhaldet er spreidd pĂ„ fleire cdar." bb_conf_ch14_3="Dette er valfritt. Viss du skriv inn talet" bb_conf_ch14_4="pĂ„ cdar totalt og nummeret pĂ„ kvar cd." bb_conf_ch14_5="Pakkenamnet er no " bb_conf_ch14_6="Skriv inn pakkenamnet:" bb_conf_ch15_1="Normalisering blir brukt til Ă„ justera lydvolumet pĂ„ wav-filer til eit" bb_conf_ch15_2="standardvolumnivĂ„. Det er nyttig til slikt som Ă„ laga mp3-miksar, der" bb_conf_ch15_3="ulikt lydnivĂ„ pĂ„ ulike plater kan fĂ„ volumet til Ă„" bb_conf_ch15_4="variera mykje frĂ„ song til song. No er normaliseringa sett til " bb_conf_ch15_5="Berre skriv 'yes' om du har normalize-programmet installert. Viss ikkje, skriv du 'no'." bb_conf_ch16_1="Skriv inn drivarvala du vil bruka. Skil dei med eit komma." bb_conf_ch16_2="Er du usikker, trykkjer du berre [ENTER] utan Ă„ skrive noko." bb_conf_ch17_1="Skriv inn fifo-katalogen. Dette trengst berre til brenning med" bb_conf_ch17_2="rĂžyrfunksjonen i Linux, og til vanleg er standardvalet heilt greit." bb_conf_ch17_3="Viss du vil avbryta, trykkjer du berre [ENTER] " bb_conf_ch17_4=" pĂ„ kommandolinja." bb_conf_ch17_5=" er fifo-katalog)" bb_conf_ch18_1="Sletta filer i " bb_conf_ch18_2=" nĂ„r brenninga er ferdig?" bb_conf_ch18_3="Standardvalet 'no', og det bĂžr du skriva inn viss du" bb_conf_ch18_4="skal brenna desse filene meir enn ein gong..." bb_conf_ch19_1="Skal BashBurn overbrenna? Brennaren din" bb_conf_ch19_2="mĂ„ stĂžtta det, og det er ikkje sikkert" bb_conf_ch19_3="at det verkar likevel, sidan dette kan brenna" bb_conf_ch19_4="meir pĂ„ cden enn han var laga for." bb_conf_ch19_5="Standardvalet er 'no'. (yes/no)" bb_conf_ch20_1="Denne innstillinga er for lyd-cdar. Er innhaldet kopisikra?" bb_conf_ch20_2="Standardvalet er 'no'. " bb_conf_ch20_3="OBS: " bb_conf_ch20_4="Dette valet kopisikrar " bb_conf_ch20_5="ikkje" bb_conf_ch20_6=" eigentleg lydfilene" bb_conf_ch20_7="som blir brent, det berre seier til cdrecord at dei er kopisikra." bb_conf_ch21_1="Bitraten er sjĂžlvsagt det viktigaste for kvaliteten til lydfiler." bb_conf_ch21_2="Di hĂžgre bitrate, di betre kvalitet. HĂžgre bitrate vil" bb_conf_ch21_3="sjĂžlvsagt ĂČg gje stĂžrre lydfiler." bb_conf_ch21_4="Set opp bitrate for mp3- og ogg-lydfiler." bb_conf_ch21_5="Standardvalet er 128. " bb_conf_ch22_1="Her vel du sprĂ„ket til BashBurn, standard er engelsk." bb_conf_ch22_2="Tilgjengelege sprĂ„k:" bb_conf_ch23_1="Dette er for gje cdrecord ordre om Ă„ brenna i:" bb_conf_ch23_2="SAO (Session at once, ein sesjon om gongen)" bb_conf_ch23_2b=" ogsĂ„ kalla " bb_conf_ch23_2c="DAO (Disk at once, ein heil cd om gongen)" bb_conf_ch23_3="eller" bb_conf_ch23_4="TAO (Track at once, eit spor om gongen)." bb_conf_ch23_5=" Standardvalet er TAO." bb_conf_ch23_6="Vil du ha meir info, kan du sjĂ„ pĂ„ rettleiinga for cdrecord. (man cdrecord)" bb_conf_ch23_7="Skriv inn valet ditt som -tao, -sao eller -dao (SAO og DAO er det same)" bb_conf_apply_1="Bruker endringar!" bb_conf_apply_2="Greidde ikkje lagra i" bb_conf_apply_3="Du bĂžr gje kommandoen chmod 666" bb_conf_def_1="Bruker standardval!" bb_conf_def_2="(BBROOTDIR har *inga* standardoppfĂžring - du mĂ„ endra det!)" bb_conf_xit_1="Tilbake til hovudmenyen" bb_conf_xit_2="Du trykte pĂ„ 'Bruk endringar' fĂžr du gjekk ut, ikkje sant?" bb_conf_err="Ver god Ă„ skriva inn " # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/Norwegian/convert_flacs.lang000066400000000000000000000001461153706571400216760ustar00rootroot00000000000000# convert_flacs.lang - Nynorsk bb_conv_flac_1="Har koda om flac-filer, og er klar til Ă„ brenna dei" bashburn-3.0.1/lang/Norwegian/convert_mp3s.lang000066400000000000000000000002051153706571400214640ustar00rootroot00000000000000# convert_mp3s.lang - Nynorsk bb_conv_mp3_1="pakka ut" bb_conv_mp3_2="og klare til brenning" bb_conv_mp3_3="kunne ikkje pakkast ut" bashburn-3.0.1/lang/Norwegian/convert_oggs.lang000066400000000000000000000001351153706571400215430ustar00rootroot00000000000000# convert.lang - Nynorsk bb_conv_ogg="Har koda om ogg-filer, og er klar til Ă„ brenna dei." bashburn-3.0.1/lang/Norwegian/data_menu.lang000066400000000000000000000016101153706571400210000ustar00rootroot00000000000000# data_menu.lang - Nynorsk bb_dm_newcd="Set inn ein tom cd og trykk [ENTER] for Ă„ gĂ„ vidare" bb_dm_wait="Trykk [ENTER] for Ă„ gĂ„ tilbake til hovudmenyen." bb_dm_menu_title="Datameny" bb_dm_menu_1="Brenn data" bb_dm_menu_2="Kopier data-cd (cd til cd)" bb_dm_menu_3="Brenn data-DVD" bb_dm_menu_4="Slett CDRW" bb_dm_menu_5="Slett DVD" bb_dm_menu_0="Tilbake" bb_dm_menu_entry="Kva vel du? " bb_dm_ch2_1=" er ikkje montert! Monter han fyrst, er du snill..." bb_dm_ch2_2="Ei ISO-fil (cd-avtrykk) finst i " bb_dm_ch2_3=" Slett eller flytt ho" bb_dm_ch2_4="fĂžr du prĂžver Ă„ laga ei ny fil." bb_dm_ch2_5="Har kopiert cd!" bb_dm_ch2_6="Byrjar Ă„ brenna" bb_dm_ch0="GĂ„r tilbake til meny..." bb_dm_error="Skriv inn " bb_dm_cdcopy="Kopierer innhaldet pĂ„ cden til " bb_dm_cdcopy_err1="OverfĂžringsfeil. Er du sikker pĂ„ at du har rett cd i stasjonen?" bb_dm_cdcopy_err2="(Sjekk feilmeldingane for tips)" bashburn-3.0.1/lang/Norwegian/datadefine.lang000066400000000000000000000021401153706571400211260ustar00rootroot00000000000000# datadefine.lang - Nynorsk bb_mnt_menu_title="Spesifiser data du vil brenna" bb_wfe_1="Trykk [ENTER] for Ă„ gĂ„ tilbake til hovudmenyen." bb_dc_menu_1=" Kopier eller lenk data til " bb_dc_menu_2=" SjĂ„ pĂ„ data i " bb_dc_menu_3=" Slett data i " bb_dc_menu_0=" Tilbake til hovudmenyen" bb_dc_explain1="Eg set deg pĂ„ kommandolinja. No er du i" bb_dc_explain2a="katalogen " bb_dc_explain2b=". Om BashBurn skal kunna" bb_dc_explain3="brenna noko, mĂ„ du kopiera eller lenka filene dine" bb_dc_explain4="til denne katalogen. Det kan du gjera med kommandoane cp eller ln." bb_dc_explain5="For Ă„ lenka filer til denne katalogen, skriv du til dĂžmes:" bb_dc_explain6=" 'ln -s ./' (utan ''), og for Ă„" bb_dc_explain7="kopiera data, erstattar du ln -s med cp." bb_dc_explain8="NĂ„r du er ferdig, skriv du inn exit for Ă„ koma tilbake til menyen." bb_dc_ch3_1="Vil du verkeleg sletta desse filene? <'${BBHEADCOLOR}y${BBCOLOROFF}'/'${BBTABLECOLOR}n${BBCOLOROFF}'>: " bb_dc_ch3_2="Har sletta filer." bb_dc_ch3_3="Har ikkje sletta filer." bb_dc_ch3_4="Ingen filer i " bb_dc_menu_err="Feil. Ver god Ă„ velja" bashburn-3.0.1/lang/Norwegian/iso_menu.lang000066400000000000000000000015511153706571400206650ustar00rootroot00000000000000# iso_menu.lang - Nynorsk bb_im_wait_1="Trykk [ENTER] for Ă„ gĂ„ tilbake til hovudmenyen." bb_im_menu_title="ISO-meny" bb_im_menu_1="Brenn ISO-fil (cd-avtrykk)" bb_im_menu_2="Lag ISO-fil av filene i " bb_im_menu_3="Lag ISO-fil av cd" bb_im_menu_4="Brenn DVD-bilete" bb_im_menu_0="Tilbake" bb_im_menu_entry="Kva vel du? " bb_im_error_files="Ingen filer i " bb_im_ch2_1="Det finst ei ISO-fil i " bb_im_ch2_2=" Slett eller flytt ho" bb_im_ch2_3="fĂžr du prĂžver Ă„ laga ei ny fil." bb_im_ch2_4="PrĂžver Ă„ laga ISO-fil." bb_im_ch2_4b="Merkelapp for data-cden: " # New in 1.6 bb_im_ch2_5="Har laga ISO-fil" bb_im_ch2_6="Feil: Kunne ikkje laga ISO-fil!" bb_im_ch2_7="Kanskje du ikkje har skrivetilgang?" bb_im_ch3_1=" er ikkje montert! Gjer det fyrst..." bb_im_ch3_2="Lagar ISO-fil av cden i " bb_im_ch0="GĂ„r tilbake til meny..." bb_im_error="Skriv inn " bashburn-3.0.1/lang/Norwegian/loopback.lang000066400000000000000000000025641153706571400206460ustar00rootroot00000000000000# loopback.lang - Norwegian language # FIXME: NOT DONE bb_lb_noread="could not be read." bb_lb_no_lb_dir="No loopback directory, creating..." bb_lb_dir_c="Directory created." bb_lb_dir_cf="Creation failed, aborting." bb_lb_no_im_dir="No image directory, creating..." bb_lb_no_temp_dir="No temporary file directory, creating..." bb_lb_sudo1="You must be in the sudoers group to mount the image." bb_lb_sudo2="Enter your password below, if it fails you might not" bb_lb_sudo3="be in that group. In that case fix it and try again." bb_lb_sudo4="You must also have support for loopback devices" bb_lb_sudo5="compiled into your kernel or as a module," bb_lb_sudo6="or the next step will fail." bb_lb_mount="Image mounted." bb_lb_mount_fail="Mount failed, aborting." bb_lb_cp_cont="Copying contents, please wait..." bb_lb_in_file="You are now in the image file system. Edit as you wish, 'exit' to return." bb_lb_change1="Did you change anything? (If you did, a new image" bb_lb_change2="must be created which will take a while) (y/n)" bb_lb_change3="Data already exists in" bb_lb_change4="it will be deleted if you continue." bb_lb_change5="Do you wish to go ahead? (y/n)" bb_lb_change6="Creating new image, please wait..." bb_lb_change7="New image created at" bb_lb_change8="Aborting, not deleting data. Changes to image discarded." bb_lb_change9="No changes made, skipping image recreation." bashburn-3.0.1/lang/Norwegian/mount.lang000066400000000000000000000031601153706571400202070ustar00rootroot00000000000000# mount.lang - Nynorsk bb_mnt_enter_1="Trykk [ENTER] for Ă„ gĂ„ tilbake" bb_mnt_menu_title="Monter eller avmonter eining" bb_mnt_menu_1="Monter eining" bb_mnt_menu_2="Avmonter eining" bb_mnt_menu_3="LĂžys ut eining" bb_mnt_menu_0="Tilbake" bb_mnt_menu_input="Kva vel du? " bb_mnt_ch1_1="Kva eining vil du montera? Skriv inn eininga som /mnt/cdrom" bb_mnt_ch1_2="(Du mĂ„ skriva inn monteringspunktet, ikkje einingsfila." bb_mnt_ch1_3="/mnt/cdrom vil verka, men ikkje /dev/cdrom. Berre trykk [ENTER]" bb_mnt_ch1_4="utan Ă„ skriva inn noko for Ă„ avbryta." bb_mnt_ch1_5="Montering avbroten!" bb_mnt_ch1_6="Monterer " bb_mnt_ch1_7=" er montert." bb_mnt_ch1_8="Greidde ikkje montera. Kanhende du ikkje har rette tilgangslĂžyve, " bb_mnt_ch1_9="eininga alt er montert, det ikkje er nokon cd i stasjonen," bb_mnt_ch1_10="eller du skreiv inn feil sti til stasjonen?" bb_mnt_ch2_1="Det ser ikkje ut til at nokon einingar er monterte." bb_mnt_ch2_2="Kva eining vil du avmontera? Skriv inn eininga som /mnt/cdrom" bb_mnt_ch2_3=" er avmontert." bb_mnt_ch2_4="Greidde ikkje avmontera. Kanhende du ikkje har rette tilgangslĂžyve," bb_mnt_ch2_5="eller du skreiv inn feil sti til stasjonen?" bb_mnt_ch3_1="Kva eining vil du lĂžysa ut? Skriv inn eininga som /mnt/cdrom ," bb_mnt_ch3_1b="eller berre trykk [ENTER] utan Ă„ skriva inn noko for Ă„ avbryta." bb_mnt_ch3_1c="Avbrote!" bb_mnt_ch3_2=" er lĂžyst ut (om du ikkje sĂ„g det ;-) )" bb_mnt_ch3_3="Greidde ikkje lĂžysa ut. Kanskje du ikkje har rette tilgangslĂžyve," bb_mnt_ch3_4="eller du skreiv innn feil sti til stasjonen?" bb_mnt_ch0="Tilbake til hovudmenyen" bb_mnt_error="Ver god Ă„ velja " bashburn-3.0.1/lang/Norwegian/multi.lang000066400000000000000000000035261153706571400202050ustar00rootroot00000000000000# multi.lang - Nynorsk bb_multi_enter_1="Trykk [ENTER] for Ă„ gĂ„ tilbake til hovudmenyen." bb_multi_enter_2="Trykk [ENTER] for Ă„ halda fram." bb_multi_burn_1="Fann ISO-fil (cd-avtrykk)..." bb_multi_burn_2=" om dette IKKJE er fyrste brenninga pĂ„ ein multisesjons-cd," bb_multi_burn_3=" sĂ„ MÅ denne ISO-fila vera laga med gyldige avviksinnstillingar frĂ„ tidlegare sesjonar." bb_multi_burn_4=" Det er fordi denne sesjonen elles vil bli usynleg og difor ubrukeleg." bb_multi_burn_5="Har brent cd..." bb_multi_burn_6=" Fann inga ISO-fil, prĂžver Ă„ laga ei..." bb_multi_burn_7="Finn avviksdata frĂ„ tidlegare sesjonar med -msinfo" bb_multi_burn_8="msinfo-opplysningar som trengst for multisesjon er:" bb_multi_burn_9="om klammene" bb_multi_burn_9b="har to siffer med eit komma, sĂ„ er alt klart til start!" bb_multi_burn_10="ei feilmelding som endar med: \"cdrecord: Cannot read session offset\" tyder pĂ„ ein tom, ubrent cd" bb_multi_burn_11="ei feilmelding som endar med: \"cdrecord: No disk / Wrong disk!\" tyder at det ikkje er nokon cd i stasjonen" bb_multi_burn_12="fann gyldige multisesjonsdata, legg til argument:" bb_multi_burn_13="Fyrste brenninga til ein multisesjons-cd treng ingen avviksdata frĂ„ tidlegare sesjonar" bb_multi_burn_14="No kan me laga ISO-fila, om mogleg..." bb_multi_burn_14b="Merkelapp pĂ„ data-cden din: " # New in 1.6 bb_multi_burn_15="Har laga ISO-fil" bb_multi_burn_16="Feil: Greidde ikkje laga ISO-fil." bb_multi_burn_17="Kanskje det ikkje er nokon filer i" bb_multi_burn_18="Kanskje du ikkje har skrivelĂžyve?" bb_multi_menu_title="Multisesjons-cd" bb_multi_menu_1="Fyrste brenninga pĂ„ ein multisesjons-cd" bb_multi_menu_2="Hald fram med multisesjons-cd" bb_multi_menu_3="Gjer ferdig multisesjons-cd" bb_multi_menu_0="Tilbake" bb_multi_menu_entry="Val " bb_multi_ch0="Tilbake til hovudmenyen..." bb_multi_err="Skriv inn " bashburn-3.0.1/lang/Polish/000077500000000000000000000000001153706571400155075ustar00rootroot00000000000000bashburn-3.0.1/lang/Polish/BashBurn.lang000066400000000000000000000026071153706571400200630ustar00rootroot00000000000000# BashBurn.lang - Polish language bb_conf_check1="BashBurn nie został skonfigurowany. WejdŒ do 'Konfiguracja' i" bb_conf_check2="skonfiguruj BashBurn przed użyciem." bb_quit1="Dziêkuje za korzystanie " bb_quit2="Informacji i poprawek szukaj na " bb_quit3="http://bashburn.sf.net " bb_quit4="" bb_press_enter="Naci¶nij [ENTER] aby kontynuowaæ." bb_no_temp_dir="Katalog dla plików tymczasowych nie istnieje. Próba utworzenia go." bb_text_1="utworzony pomy¶lnie!" bb_text_2="Skonfiguruj BashBurn przed użyciem." bb_text_3="Nie masz prawa do zapisu dla" bb_text_4="Zmień t± warto¶æ w konfiguracji w celu umożliwienia nagrywania płyt" bb_text_5="Katalog" bb_text_6="nie istnieje, mimo że ustawiłe¶ go w czasie konfiguracji" bb_text_7="Wykrywanie nagrywarki..." bb_text_8="Wykryto: " bb_main_menu=MAIN bb_menu_1="Audio" bb_menu_2="Dane" bb_menu_3="ISO" bb_menu_4="Bin/Cue" bb_menu_5="Multisesyjna" bb_menu_6="Konfiguracja BashBurn" bb_menu_7="Zamontuj/odmontuj CD" bb_menu_8="SprawdŒ ¶cieżki do programów" bb_menu_9="Wybierz dane do nagrania" bb_menu_0="Wyj¶cie" bb_menu_input="Twój wybór? " bb_burndir_view="Zawarto¶æ" bb_burndir_del1="Czy napewno chcesz usun±æ wszystkie pliki w" bb_burndir_del1b="(y/n)" bb_burndir_del2="jest czysty." bb_burndir_del3="Usuwanie przerwane" bb_exit_error="Wybierz " bb_hit_any_key_to_continue='Hit any key to continue' # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/Polish/README000066400000000000000000000005641153706571400163740ustar00rootroot00000000000000BashBurn translation HOWTO It's quite simple, you open up the files in any simple text editor, and translate the english sentences into the your language. When you are finished translating all files, copy them into a directory with the name of your language, and create a tar.gz/bzip2/zip archive of it. Any questions send me a mail at anders.linden@gmail.com /Anders bashburn-3.0.1/lang/Polish/advanced.lang000066400000000000000000000014531153706571400201220ustar00rootroot00000000000000# Polish language file for advanced.lang # FIXME: Not done # # Number of tabs after each option text will vary between languages. # bb_adv_menutitle="Advanced Options" bb_adv_cdburncmd="CD burning command" bb_adv_dvdburncmd="DVD burning command" bb_adv_isocmd="ISO creation command" bb_adv_dvdblankcmd="DVD blanking command" bb_adv_imgburncmd="CD image burn command" bb_adv_audioripcmd="CD audio ripping command" bb_adv_cdcopycmd="CD copying command" bb_adv_cdcopyopts="CD copying options" bb_adv_mp3enc="MP3 encoder command" bb_adv_mp3dec="MP3 decoder command" bb_adv_oggenc="Ogg encoder command" bb_adv_oggdec="Ogg decoder command" bb_adv_flac="FLAC encoder/decoder command" bb_adv_eject="Disc eject command" bb_adv_norm="Audio normalization command" # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/Polish/audio_menu.lang000066400000000000000000000042361153706571400205040ustar00rootroot00000000000000# audio_menu.lang - Polish language bb_am_enter_1="Naci¶nij [ENTER] aby powróciæ do głównego menu." bb_am_enter_2="Włóż puste CD i naci¶nij [ENTER] aby kontynuowaæ" bb_am_nomp3s="Brak mp3 w " bb_am_nooggs="Brak Ogg w " bb_am_noflacs="Brak Flac w " bb_am_norm_1=" Normalizacja " bb_am_err_1="[ERROR]: Przepraszam :( BashBurn nie może przeczytaæ tego cd!" bb_am_conf_1=" Wybrałe¶ te ¶cieżki do skopiowania: " bb_am_conf_2="Czy s± poprawne? (y/n): " bb_am_named_1="Informacje o dysku..." bb_am_named_2="Naci¶nij [ENTER] aby kontynuowaæ lub" bb_am_named_3="wpisz numer ¶cieżki do skopiowania " bb_am_named_4="Spacje w nazwach s± teraz wspierane" bb_am_named_5="np. Artysta - Piosnka, Artysta_Piosnka, Artysta-Piosnka." bb_am_named_6="Podaj ¶cieżkê " bb_am_rip_1=" Kopiowanie ¶cieżek " bb_am_rip_2="Šcieżki skopiowane!" bb_am_encfilt=" Program kompresuj±cy..." bb_am_menu_title="Menu audio" bb_am_menu_1="Nagraj płytê audio z Mp3/Ogg/Wav/Flac" bb_am_menu_2="Nagraj bezpo¶rednio Audio-CD" bb_am_menu_3="Skopiuj Audio CD (CD - CD)" bb_am_menu_4="Skopiuj Audio CD (CD na dysk twardy)" bb_am_menu_5="Nagraj playliste XMMSa" bb_am_menu_6="Utwórz Mp3 z Wav" bb_am_menu_7="Utwórz Ogg z Wav" bb_am_menu_8="Utwórz Flac z Wav" bb_am_menu_9="Utwórz Mp3 z CD" bb_am_menu_10="Utwórz Ogg z CD" bb_am_menu_11="Utwórz Flac z CD" bb_am_menu_0="Wróæ" bb_am_menu_input="Wybór? " bb_am_ch3_1="Nagrywanie zakończone - Dziêkuje za użycie BashBurna" bb_am_ch3_2="Wyst±pił bł±d przy nagrywaniu płyty." bb_am_ch3_3="Wyst±pił bł±d przy kopiowaniu ¶cieżek z " bb_am_ch4_1="Šcieżki skopiowane i zapisane w " bb_am_ch4_2=" Je¶li chcesz utworzyæ pliki" bb_am_ch4_3="mp3,ogg lub flac, użyj wła¶ciwej opcji z menu." bb_am_ch5="Nie można przeczytaæ playlist. Przerwano proces nagrywania." bb_am_ch6_1=" utworzony..." bb_am_ch6_2=" nie mógł byæ utworzony" bb_am_ch6_3="Brak plików wav w " bb_am_ch7_1="Plik utworzony..." bb_am_ch9_1=" Tworzenie Mp3..." bb_am_ch9_2="Pliki mp3 utworzone. Pliki znajduj± siê w " bb_am_ch10_1=" Tworzenie plików ogg..." bb_am_ch10_2="Pliki ogg utworzone. Pliki znajduj± siê w " bb_am_ch11_1="Pliki Flac utworzone. Pliki znajduj± siê w " bb_am_ch0="Powrót do głównego menu" bb_am_error="Wybierz " bashburn-3.0.1/lang/Polish/bincue.lang000066400000000000000000000006651153706571400176260ustar00rootroot00000000000000# bincue.lang - Polish language bb_press_enter="Naci¶nij [ENTER] aby powróciæ do głównego menu." bb_bincue_copy_1="Pliki bin i cue musz± byæ skopiowane/podlikowane do" bb_bincue_copy_1b="przed nagraniem.." bb_bincue_copy_2="Czy to zrobiłe¶ (y/n): " bb_bincue_copy_3="Skopiuj pliki bin/cue do " bb_bincue_copy3b="przed nagraniem." bb_bincue_burn_1="Nagrywanie zakończone." bb_bincue_burn_2="Nagrywanie przerwane. SprawdŒ uprawnienia." bashburn-3.0.1/lang/Polish/burning.lang000066400000000000000000000022431153706571400200170ustar00rootroot00000000000000# burning.lang - Polish language bb_press_enter="Naci¶nij [ENTER] aby powróciæ do głównego menu." bb_no_ob="Nie wł±czono nadpisywania..." bb_burning_tmp_1="Pliki tymczasowe w" bb_burning_tmp_1b="usuniête..." bb_burning_tmp_2="nie usuniête..." bb_burning_audio_1="znaleziono" bb_burning_audio_2="Brak plików audio w" bb_burning_audio_3="Nie wł±czona Normalizacja..." bb_burning_finish_1="Nagrywanie zakończone pomy¶lnie." bb_burning_finish_2="Nagrywanie przerwane. Zobacz dokumentacje." bb_burning_iso_1="Nie znaleziono ISO w" bb_burning_data_1="Tworzenie pliku ISO" bb_burning_data_label="Nazwa dysku: " bb_burning_data_2="Bł±d: Plik nie mógł byæ utworzony." bb_burning_data_3="Możliwe, że potrzebujesz uprawnień do zapisu?" bb_burning_fifo_1="Brak plików Wav z Mp3 w" bb_burning_fifo_2="Nagrywanie" bb_burning_fifo_2b="Šcieżek!" bb_burning_fifo3="Usuwanie nieużywanych plików tymaczasowych" bb_burning_dvd_1="Czy to jest pierwsza sesja na tym DVD?" bb_burning_dvd_2="(Wpisz 'no' je¶li chcesz dodaæ now± sesje do" bb_burning_dvd_3="już istniej±cej sesji DVD. Aby przerwaæ operacje" bb_burning_dvd_4="naci¶nij [ENTER] bez wpisywania czegokolwiek)" bb_burning_dvd_5="(yes/no): " bashburn-3.0.1/lang/Polish/check_path.lang000066400000000000000000000007421153706571400204460ustar00rootroot00000000000000# check_path.lang - Polish language bb_cp_1="Aplikacja znaleziona" bb_cp_2="w" bb_cp_3="Aplikacja NIE ZNALEZIONA!" bb_cp_4="Zainstaluj to lub wszystkie opcje nie bêd± dostêpne." bb_cp_5="Sprawdzanie ¶cieżek..." bb_cp_6=" Narzêdzia do nagrywania" bb_cp_7=" Rippers" bb_cp_8=" Kodeki" bb_cp_9=" Inne" bb_cp_10="UWAGA: Zainstaluj programy, które nie zostały znalezione" bb_cp_11="lub BashBurn nie bêdzie działał prawidłowo." bb_cp_12="Naci¶nij [ENTER] aby powróciæ do głównego menu." bashburn-3.0.1/lang/Polish/commonfunctions.lang000066400000000000000000000013601153706571400215730ustar00rootroot00000000000000# commonfunctions.lang - Polish language file bb_cf_text1="płyta CD prawdopodobnie jest już nagrana. Czy chcesz j± " bb_cf_text2="skasowaæ. Wpisz 'yes' tylko gdy jest to dysk RW. 'abort'" bb_cf_text3="je¶li chcesz przerwaæ i wróciæ do menu" bb_cf_text4="Anulowanie..." bb_cf_text5="Próba nagrania płyty bez kasowania. Prawdopodobnie wyst±pi bł±d" bb_cf_text6="Kasowanie nieudane. Nagrywanie przerwane" bb_cdrw_blank1="Kasowanie cd..." bb_cdrw_blank2="CDRW skasowane" bb_cdrw_blank3="Kasowanie nie powiodło siê. Używam trybu wymuszonego..." bb_cdrw_blank4="Wymuszone kasowanie zakończone." bb_cdrw_blank5="Wymuszone kasowanie nie powiodło siê. Powiniene¶ wymieniæ cd." bb_cdrw_blank6="CD/DVD wygl±da na pusty (lub brak CD w napêdzie), nie kasuje..." bashburn-3.0.1/lang/Polish/configure.lang000066400000000000000000000202241153706571400203330ustar00rootroot00000000000000# configure.lang - Polish language # Nick - this needs checking by a native speaker # I don't get Polish at all (as bad as C++), so there are a few words # in here that need translating still - all marked bb_conf_menu_writer="Nagrywarka" bb_conf_menu_cddev="Plik urz±dzenia CD-ROM" bb_conf_menu_cdmnt="Punkt montowania CD-ROM" bb_conf_menu_speed="Prêdko¶æ" bb_conf_menu_blank="Tryb kasowania" bb_conf_menu_numdev="Liczba urz±dzeń" bb_conf_menu_root="Katalog główny" bb_conf_menu_burn="Katalog TMP" bb_conf_menu_label="Etykieta CD" #bb_conf_menu10="Copyright" bb_conf_menu_auth="Autor" #bb_conf_menu12="Wydawca" bb_conf_menu_desc="Opis" #bb_conf_menu14="Nazwa pakietu" bb_conf_menu_norm="Normalizacja" bb_conf_menu_dropt="Opcje urz±dzenia" bb_conf_menu_fifo="Katalog FIFO" bb_conf_menu_deltmp="Usun±æ pliki tymczasowe" bb_conf_menu_ob="Overburning" #bb_conf_menu20="Ochrona przed kopiowaniem" bb_conf_menu_bitrate="Ustaw Bitrate" bb_conf_menu_lang="Jêzyk" bb_conf_menu_dtao="DAO/TAO" # == next two need translating bb_conf_menu_gap="Gap between tracks" bb_conf_menu_adv=Advanced # == end bb_conf_menu_apply="Zastosuj zmiany" bb_conf_menu_default="Przywróæ domy¶lne" bb_conf_menu_back="Powrót" bb_conf_menu_entry="Wybór?" # These next 4 lines need translating bb_conf_action_desc="Actions" bb_conf_menu_toptext1=Setup bb_conf_menu_toptext2='Current value' bb_conf_default_is='Default is' # End Nick # Everything below still needs fixing # =================================== bb_conf_ch1_1="Nagrywarka powinna byæ wpisana jako 0,0,0 (dla SCSI)" bb_conf_ch1_2="ATAPI:0,0,0 lub /dev/hdX (dla nagrywarek IDE)" bb_conf_ch1_3="(Gdzie hdX jest nazw± urz±dzenia, np. hdc)" bb_conf_ch1_4="Możesz również użyæ nazw urz±dzenia np. yahama, sanyo, itd." bb_conf_ch1_5="je¶li " bb_conf_ch1_6="s± prawidłowo skonfigurowane." bb_conf_ch1_7="(Możliwo¶ci) Urz±dzenia SCSI:" bb_conf_ch1_8="(Możliwo¶ci) Urz±dzenia IDE:" bb_conf_ch1_9="Wpisz scieżkê do nagrywarki: " bb_conf_ch1_10="Autodetekcja nagrywarki: wpisz auto" bb_conf_ch2_1="Šcieżka do urz±dzenia cdrom wygl±da zazwyczaj jak /dev/cdrom lub /dev/dvd" bb_conf_ch2_2="Lista dostêpnych napêdów cd (na podstawie /etc/fstab): " bb_conf_ch2_3="Wpisz nazwê pliku urz±dzenia: " bb_conf_ch3_1="Šcieżka do urz±dzenia cdrom wygl±da zazwyczaj jak /dev/cdrom lub /dev/dvd" bb_conf_ch3_2="Lista dostêpnych napêdów cd (na podstawie /etc/fstab): " bb_conf_ch3_3="Wpisz nazwê pliku urz±dzenia: " bb_conf_ch4_1="Zwróæ uwagê na to, że żadna wersja cdrecord nie nagywa z" bb_conf_ch4_2="x1. Dla napêdów MMC domy¶lnie wybierana jest maksymalna" bb_conf_ch4_3="prêdko¶æ, wiêc wła¶ciwie nie ma sensu" bb_conf_ch4_4="ustawanie domy¶lnej prêdko¶ci. Chyba, że masz dobre powody" bb_conf_ch4_5="aby to zrobiæ, użyj speed == -1 i pozwól cdrecorde wybraæ" bb_conf_ch4_6="prêdko¶æi zgodn± z danymi technicznymi napêdu" bb_conf_ch4_7="Prêdko¶æ nagrywania: " bb_conf_ch5_1="Rodzaj kasowania. Domy¶lnie all lub disc" bb_conf_ch5_2="Teraz ustawione jako " bb_conf_ch6_1="Czy masz CD-ROM i CD-RW?" bb_conf_ch6_2="Je¶li tak, wpisz 2. Je¶li nie, wpisz 1" bb_conf_ch7_1="Katalog główny jest miejscem gdzie znajduj± siê skrypty BashBurns." bb_conf_ch7_2="Zmień je¶li wiesz co robisz." bb_conf_ch7_3="Je¶li chcesz anulowa, naci¶nij enter." bb_conf_ch7_4="" bb_conf_ch8_1="Katalog TEMP jest miejscem gdzie znajduj± siê pliki/linki do nagrania." bb_conf_ch8_2="Miej pewno¶æ, że posiadasz prawa do zapisu do tego katalogu." bb_conf_ch9_1="To jest nazwa która bêdzie użyta jako punkt montowania" bb_conf_ch9_2="przez system Solaris Voulme Managment i nazwa która jest" bb_conf_ch9_3="przyporz±dkowana dyskowi na platformie MS Win32 lub Apple Mac" bb_conf_ch9_4="Nazwa dysku " bb_conf_ch9_4b="Je¶li chcesz byæ proszony o podanie nazwy dysku za każdym razem" bb_conf_ch9_4c="wpisz jako nazwe dysku." bb_conf_ch9_5="Wpisz now± nazwê dysku CD:" bb_conf_ch10_1="Je¶li chcesz okre¶liæ prawo własno¶ci do swojego dysku, wpisz je teraz:" bb_conf_ch11_1="Pole to powinno okre¶laæ autora tego dysku, zazwyczaj" bb_conf_ch11_2="z adresem mail i numerem telefonu. Jest miejsce na" bb_conf_ch11_3="128 znaków z informacj±." bb_conf_ch11_4="Ustawiony autor to " bb_conf_ch11_5="Wpisz Autora/Wła¶ciciela dysku CD - hej, czy to ty? :-)" bb_conf_ch12_1="Pole to powinno okre¶laæ wydawce tego dysku," bb_conf_ch12_2="zazwyczaj z adresem mail i numerem telefonu." bb_conf_ch12_3="Miejsce jest na 128 znaków z informacj±" bb_conf_ch12_4="Ustawiony wydawca to " bb_conf_ch12_5="Wpisz nazwê wydawcy dyskuCD (je¶li jest):" bb_conf_ch13_1="Pole to powinno okre¶laæ aplikacje która bêdzie na dysku" bb_conf_ch13_2="Miejsce jest na 128 znaków z informacj±" bb_conf_ch13_3="Ustawiony opis to " bb_conf_ch13_4="Wpisz opis dysku:" bb_conf_ch14_1="Pakiet zawiera kilka dysków CD, na przykład, OS w którym" bb_conf_ch14_2="oprogramowanie jest podzielone na kilka dysków." bb_conf_ch14_3="To jest opcja. Je¶li jej używasz wpisz numer" bb_conf_ch14_4="dysku." bb_conf_ch14_5="Ustawiona nazwa pakietu to " bb_conf_ch14_6="Wpisz nazwê pakietu:" bb_conf_ch15_1="Normalizacja jest używana do ustawienia na odpowiednim poziomie gło¶no¶ci" bb_conf_ch15_2="w plikach wav. Jest to użyteczne przy tworzeniu składanek z plików mp3, gdzie" bb_conf_ch15_3="różny poziom gło¶no¶ci w różnych utworach może powodowaæ, że gło¶no¶æ" bb_conf_ch15_4="zmienia siê z utworu na utwór. Ustawione teraz jest na " bb_conf_ch15_5="Wpisz yes gdy masz zainstalowany program normalize, inaczej wpisz no" bb_conf_ch16_1="Wpisz opcjê napêdu jakich chcesz użyc, oddziel je przecinkami." bb_conf_ch16_2="Je¶li nie jeste¶ pewny, naci¶nij enter bez wpisywania czegokolwiek." bb_conf_ch17_1="Enter location of FIFO-directory. This is only needed" bb_conf_ch17_2="for piped burning, and most times the standard value is fine." bb_conf_ch17_3="If you want to cancel just enter " bb_conf_ch17_4=" at the prompt." bb_conf_ch17_5=" is the current FIFO-directory)" bb_conf_ch17_1="Wpisz lokalizacje katalogu FIFO. Jest on potrzebny tylko" bb_conf_ch17_2="do przegrywana w locie, i w wiêkszo¶ci przypadków domy¶lne" bb_conf_ch17_3="ustawienia s± poprawne. Je¶li chcesz anulowaæ, poprostu" bb_conf_ch17_4=" naci¶nij enter." bb_conf_ch17_5=" jest katalogiem FIFO)" bb_conf_ch18_1="Usun±æ pliki w " bb_conf_ch18_2=" po zakończeniu nagrywania?" bb_conf_ch18_3="Domy¶lnie jest no(nie), je¶li chcesz nagraæ pliki" bb_conf_ch18_4="po raz kolejny..." bb_conf_ch19_1="Czy chcesz aby BashBurn zezwolił na 'nadpalanie'. Twoja" bb_conf_ch19_2="nagrywarka musi wspieraæ to, i nie jest pewne czy to" bb_conf_ch19_3="bêdzie dział±æ poprawnie, jednak możesz dziêki temu nagraæ" bb_conf_ch19_4="wiêcej na cd niż to zostało przewidziane." bb_conf_ch19_5="Domy¶lnie jest no(nie). (yes/no) [tak/nie]" bb_conf_ch20_1="Ta opcja jest dla płyt audio. Czy płyta jest chronina" bb_conf_ch20_2="przed kopiowaniem. Domy¶lnie jest no. " bb_conf_ch20_3="UWAGA: " bb_conf_ch20_4="Ta opcja " bb_conf_ch20_5="nie" bb_conf_ch20_6=" chroni wła¶ciwie plików audio przed" bb_conf_ch20_7="przegraniem, ona tylko pokazuje cdrecorder'owi że s± takie." bb_conf_ch21_1="Bitrate ma główny wpływ na jako¶ci plików audio." bb_conf_ch21_2="Wyższy bitrate, wyższa jako¶ci. Wyższy bitrate oznacza" bb_conf_ch21_3="wiêkszy rozmiar plików audio." bb_conf_ch21_4="Ustaw bitrate dla plików ogg i mp3." bb_conf_ch21_5="Domy¶lnym jest 128. " bb_conf_ch22_1="Tutaj możesz ustawiæ jêzyk BashBurn'a, domy¶lnym jest angielski." bb_conf_ch22_2="Dostêpne jêzyki:" bb_conf_ch23_1="Ta opcja mówi cdrecord'owi aby nagrywał w:" bb_conf_ch23_2="SAO (Session at Once)" bb_conf_ch23_2b=" również nazywane " bb_conf_ch23_2c="DAO (Disk at once)" bb_conf_ch23_3="lub" bb_conf_ch23_4="tryb TAO (Track at once)" bb_conf_ch23_5=" Default is TAO." bb_conf_ch23_6="Wiêcej informacji w dokumentacji cdrecord. (man cdrecord)" bb_conf_ch23_7="Wpisz swój wybór jako: -tao, -sao lub -dao (SAO and DAO are the same)" bb_conf_apply_1="Zmiany zastosowane!" bb_conf_apply_2="Nie można było zapisaæ do" bb_conf_apply_3="Musisz ustawiæ uprawnienia chmod 666" bb_conf_def_1="Domy¶lne ustawienia przywrócone!" bb_conf_def_2="(BBROOTDIR *nie* jest domy¶lne - musisz to zmieniæ!)" bb_conf_xit_1="Powrót do głównego menu" bb_conf_xit_2="Nie wybrałe¶ ZASTOSUJ ZMIANY przed wyj¶ciem, prawda?" bb_conf_err="Wybierz " # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/Polish/convert_flacs.lang000066400000000000000000000001501153706571400211760ustar00rootroot00000000000000# convert_flacs.lang - Polish version bb_conv_flac_1="Pliki flacs skonwertowane i gotowe do nagrania." bashburn-3.0.1/lang/Polish/convert_mp3s.lang000066400000000000000000000002321153706571400207710ustar00rootroot00000000000000# convert_mp3s.lang - Polish language bb_conv_mp3_1="zdekompresowane" bb_conv_mp3_2="i gotowe do nagrania" bb_conv_mp3_3="nie można było zdekompresowaæ" bashburn-3.0.1/lang/Polish/convert_oggs.lang000066400000000000000000000001401153706571400210440ustar00rootroot00000000000000# convert.lang - Polish language bb_conv_ogg="Pliki ogg zdekompresowane i gotowe do nagrania." bashburn-3.0.1/lang/Polish/data_menu.lang000066400000000000000000000015161153706571400203120ustar00rootroot00000000000000# data_menu.lang - Polish language bb_dm_newcd="Włóż pust± płyte CD i naci¶nij [ENTER]" bb_dm_wait="Naci¶nij [ENTER] aby powróciæ do głównego menu." bb_dm_menu_title="Dane" bb_dm_menu_1="Nagraj CD" bb_dm_menu_2="Kopiuj CD (CD - CD)" bb_dm_menu_3="Nagraj DVD" bb_dm_menu_4="Wyczy¶æ CDRW" bb_dm_menu_5="Wyczy¶æ DVD" bb_dm_menu_0="Powrót" bb_dm_menu_entry="Wybór? " bb_dm_ch2_1=" nie zamontowany! Zamontuj najpierw..." bb_dm_ch2_2="Plik ISO istnieje w " bb_dm_ch2_3=" Usuń lub przenie¶ go" bb_dm_ch2_4="przed utworzeniem nowego." bb_dm_ch2_5="Cd skopiowane!" bb_dm_ch2_6="Rozpoczêcie nagrywania" bb_dm_ch0="Powrót do menu.." bb_dm_error="Wybierz " bb_dm_cdcopy="Kopiowanie zawarto¶ci CD do " bb_dm_cdcopy_err1="Bł±d w trakcie kopiowania. Czy jeste¶ pewny, że masz wła¶ciwy cd w napêdzie?" bb_dm_cdcopy_err2="(Przejrzyj informacje o błedach)" bashburn-3.0.1/lang/Polish/datadefine.lang000066400000000000000000000020401153706571400204320ustar00rootroot00000000000000# datadefine.lang - Polish language bb_mnt_menu_title="Wybierz dane do nagrania" bb_wfe_1="Naci¶nij [ENTER] aby powróciæ do głównego menu." bb_dc_menu_1=" Skopiuj/Podlinkuj dane do " bb_dc_menu_2=" Zobacz dane w " bb_dc_menu_3=" Usuń dane z " bb_dc_menu_0=" Powrót" bb_dc_explain1="Zostałe¶ przeniesiony do powłoki. Jeste¶" bb_dc_explain2a="w katalogu " bb_dc_explain2b=" Aby BashBurn mógł" bb_dc_explain3="co¶ nagraæ, musisz podlinkowaæ lub skopiowaæ twoje" bb_dc_explain4="dane do tego katalogu. Zrobisz to używaj±c poleceń cp lub ln" bb_dc_explain5="Na przykład, żeby podlinkow±c dane tutaj, wpisujesz:" bb_dc_explain6=" 'ln -s <¶cieżka do danych> ./' (Bez '')" bb_dc_explain7="a je¶li chcesz skopiowaæ zamień ln -s na cp." bb_dc_explain8="Kiedy skończysz, wpisz exit aby powróciæ do menu." bb_dc_ch3_1="Czy napewno chcesz usun±æ te pliki? <'${BBHEADCOLOR}y${BBCOLOROFF}'/'${BBTABLECOLOR}n${BBCOLOROFF}'>: " bb_dc_ch3_2="Pliki usuniête." bb_dc_ch3_3="Pliki nie zostały usuniête" bb_dc_ch3_4="Brak plików w " bb_dc_menu_err="Bład. Wybierz opcje." bashburn-3.0.1/lang/Polish/iso_menu.lang000066400000000000000000000017501153706571400201730ustar00rootroot00000000000000# iso_menu.lang - Polish language bb_im_wait_1="Naci¶nij [ENTER] aby powróciæ do menu." bb_im_menu_title="ISO Menu" bb_im_menu_1="Nagraj ISO" bb_im_menu_2="Nagraj ISO z plików w " bb_im_menu_3="Utwórz ISO z cd" bb_im_menu_4="Nagraj DVD z obrazu" bb_im_menu_5="Zamontuj obraz" bb_im_menu_0="Powrót" bb_im_menu_entry="Wybór? " bb_im_error_files="Brak plików w " bb_im_ch2_1="Obraz ISO istnieje w " bb_im_ch2_2=" Usuń lub przenie¶ go" bb_im_ch2_3="przed prób± utworzenia nowego pliku." bb_im_ch2_4="Tworzenie pliku ISO." bb_im_ch2_4b="Nazwa dysku: " # New in 1.6 bb_im_ch2_5="ISO utworzone" bb_im_ch2_6="Bł±d: nie można było utworzyæ pliku ISO!" bb_im_ch2_7="Może nie masz uprawnień do zapisu?" bb_im_ch3_1=" nie zamontowane! Zrób to najpierw..." bb_im_ch3_2="Tworzenie pliku ISO z płyty w " bb_im_ch5_1="WprowadŒ ¶cieżkê do pliku obrazu:" bb_im_ch5_2="(lub naci¶nij Enter aby anulowaæ)" bb_im_ch5_3="Nie podano nazwy pliku, przerywam." bb_im_ch0="Powrót do menu..." bb_im_error="Wybierz " bashburn-3.0.1/lang/Polish/loopback.lang000066400000000000000000000026651153706571400201550ustar00rootroot00000000000000# loopback.lang - Polish language bb_lb_noread="Niepoprawna nazwa pliku" bb_lb_no_lb_dir="Brak katalogu loopback, tworze..." bb_lb_dir_c="Katalog utworzony" bb_lb_dir_cf="Utworzenie katalogu nie powiodƂo się." bb_lb_no_im_dir="Brak katalogu obrazu, tworze..." bb_lb_no_temp_dir="Brak katalogu na pliki tymczasowe, tworze..." bb_lb_sudo1="Aby zamontować obraz powinieneƛ być w sudoers group." bb_lb_sudo2="WprowadĆș hasƂo, jeƛli logowanie się nie powiedzie" bb_lb_sudo3="prawdopodobnie nie masz uprawnieƄ." bb_lb_sudo4="Powinieneƛ rĂłwnieĆŒ posiadać moduƂ obsƂugi urządzeƄ" bb_lb_sudo5="loopback, w przeciwnym przypadku" bb_lb_sudo6="następny krok się nie powiedzie." bb_lb_mount="Obraz zamontowany." bb_lb_mount_fail="Montowanie nie powiodƂo się, przerywam.." bb_lb_cp_cont="Kopiowanie zawartoƛci, proszę czekać..." bb_lb_in_file="Jesteƛ w systemi plikĂłw pochodzącym z obrazu. MoĆŒesz go zmieniać, 'exit' aby powrĂłcić." bb_lb_change1="DokonaƂeƛ jakiƛ zmian? (Jeƛli tak, nowy obraz " bb_lb_change2="musi zostać stworzny, potrwa to chwile) (y/n)" bb_lb_change3="Poprzednie informacje w " bb_lb_change4="zostaną usunięte." bb_lb_change5="Czy kontynuować? (y/n)" bb_lb_change6="Tworzenie nowego obrazu, proszę czekać..." bb_lb_change7="Nowy obraz utworzony w " bb_lb_change8="Przerwano, dane nie zostaƂy usunięte. Zmiany w obrazie anulowane." bb_lb_change9="Nie dokonano ĆŒadnych zmian, pominięto tworzenie obrazu." bashburn-3.0.1/lang/Polish/mount.lang000066400000000000000000000030131153706571400175110ustar00rootroot00000000000000# mount.lang - Polish language bb_mnt_menu_title="Zamontuj/odmontuj urz±dzenie" bb_mnt_menu_1="Zamontuj" bb_mnt_menu_2="Odmontuj" bb_mnt_menu_3="Wysuń" bb_mnt_menu_0="Powrót" bb_mnt_menu_input="Wybierz? " bb_mnt_ch1_1="Które urz±dzenie chcesz zamontowaæ? Wpisz np. /mnt/cdrom" bb_mnt_ch1_2="(Musisz wybraæ punkt montowania, nie plik urz±dzenia. Na przykład" bb_mnt_ch1_3="/mnt/cdrom bêdzie prawidłowe, ale /dev/cdrom nie. Poprostu naci¶nij enter" bb_mnt_ch1_4="bez wpisywania czegokolwiek żeby przerwaæ" bb_mnt_ch1_5="Montowanie przerwane" bb_mnt_ch1_6="Montowanie " bb_mnt_ch1_7=" zamontonowe." bb_mnt_ch1_8="Montowanie nieudane. Może nie masz prawidłowych uprawnień," bb_mnt_ch1_9="lub urz±dzenie jest już zamontowane, nie ma no¶nika w napêdzie" bb_mnt_ch1_10="lub pomyliłe¶ ¶cieżke do napêdu?" bb_mnt_ch2_1="Wydaje siê że nie ma zamontowanych żadnych urz±dzeń." bb_mnt_ch2_2="Jakie urz±dzenie chcesz odmontowaæ? Wpisz np. /mnt/cdrom." bb_mnt_ch2_3=" odmontowane." bb_mnt_ch2_4="Odmontowanie nieudane. Może nie masz prawidłowych uprawnień" bb_mnt_ch2_5="lub wpisałe¶ nieprawidłow± ¶cieżkê do napêdu." bb_mnt_ch3_1="Jakie urz±dzenie chcesz wysun±æ? Wpisz np. /mnt/cdrom." bb_mnt_ch3_1b="lub naci¶nij enter bez wpisywania niczego aby anulowaæ." bb_mnt_ch3_1c="Anulowane!" bb_mnt_ch3_2=" wysuniête." bb_mnt_ch3_3="Wysuwanie nieudane. Może nie masz prawidłowych uprawnień" bb_mnt_ch3_4="lub wpisałe¶ nieprawidłow± ¶cieżkê do napêdu." bb_mnt_enter_1="Naci¶nij [ENTER] aby powróciæ" bb_mnt_ch0="Powrót do głównego menu" bb_mnt_error="Wybierz " bashburn-3.0.1/lang/Polish/multi.lang000066400000000000000000000031321153706571400175030ustar00rootroot00000000000000# multi.lang - Polish language bb_multi_enter_1="Naci¶nij [ENTER] aby powróciæ do głównego menu" bb_multi_enter_2="Naci¶nij [ENTER] aby kontynuowaæ." bb_multi_burn_1="Znalezione pliki ISO..." bb_multi_burn_2=" je¶li to nie jest pierwsze nagrywanie płyty multisesyjnej" bb_multi_burn_3=" to ISO *MUSI* byæ utworzone z użyciem wła¶ciwego numeru poprzedniej sesji" bb_multi_burn_4=" Dlaczego: ponieważ w innym przypadku poprzednia sesja bêdzie niewidoczna" bb_multi_burn_5="CD nagrane..." bb_multi_burn_6=" Nie znalezionon ISO, tworzenie..." bb_multi_burn_7="Numer poprzedniej sesji uzyskasz używaj±c parametru -msinfo" bb_multi_burn_8="msinfo info potrzebne dla multisesji to:" bb_multi_burn_9="je¶li nawias" bb_multi_burn_9b="zawiera dwie liczby po przecinku - WSZYSTKO GOTOWE!" bb_multi_burn_10="bład: \"cdrecord: Cannot read session offset\" oznacza czysty CD" bb_multi_burn_11="bł±d: \"cdrecord: No disk / Wrong disk!\" oznacza brak dysku w napêdzie" bb_multi_burn_12="prawidłowe dane, dodawanie:" bb_multi_burn_13="Pierwsze nagrywanie multisesyjnej płyty nie wymaga numeru poprzedniej sesji" bb_multi_burn_14="Tworzenie ISO... je¶li to możliwe" bb_multi_burn_14b="Nazwa dysku: " bb_multi_burn_15="ISO utworzone" bb_multi_burn_16="Bł±d: nie można było utworzyæ pliku iso." bb_multi_burn_17="Może... brak pliku w" bb_multi_burn_18="Może nie masz uprawnień do zapisu?" bb_multi_menu_title="CD multisesyjny" bb_multi_menu_1="Utwórz dysk" bb_multi_menu_2="Kontynuuj dysk" bb_multi_menu_3="Zakończ dysk" bb_multi_menu_0="Powrtót" bb_multi_menu_entry="Wybór " bb_multi_ch0="Powrót do głównego menu..." bb_multi_err="Wybierz " bashburn-3.0.1/lang/Spanish/000077500000000000000000000000001153706571400156565ustar00rootroot00000000000000bashburn-3.0.1/lang/Spanish/BashBurn.lang000066400000000000000000000027411153706571400202310ustar00rootroot00000000000000# BashBurn.lang - Spanish language bb_conf_check1="BashBurn no ha sido configurado aun. Entre a 'Configurar' e" bb_conf_check2="ingrese la información necesaria antes de usarlo ." bb_quit1="Gracias por usar " bb_quit2="Visite " bb_quit3="http://bashburn.sf.net " bb_quit4="para información y actualizaciones." bb_press_enter="Presione [ENTER] para continuar." bb_no_temp_dir="El directorio para los archivos temporarios no existe. Intentando crearlos..." bb_text_1="creado satisfactoriamente!" bb_text_2="Configure BashBurn antes de grabar" bb_text_3="No tiene permisos para escribir" bb_text_4="Cambie este valor en la configuración o no podrá grabar." bb_text_5="El directorio" bb_text_6="no existe, a pesar de que lo has escrito en el archivo de configuración" bb_text_7="Detectando grabadora de CD ...." bb_text_8="Detectada: " bb_main_menu=MAIN bb_menu_1="Audio" bb_menu_2="Datos" bb_menu_3="ISO" bb_menu_4="Bin/Cue" bb_menu_5="Multisesión" bb_menu_6="Configurar BashBurn" bb_menu_7="Montar/Desmontar CD" bb_menu_8="Comprobar rutas de programas" bb_menu_9="Defina datos a grabar" # Edited once again in 1.6 bb_menu_0="Salir" bb_menu_input="Su opción? " bb_burndir_view="Los contenidos de " bb_burndir_del1="Realmente desea borrar todos los archivos en" bb_burndir_del1b="(y/n)" bb_burndir_del2="está limpio." bb_burndir_del3="Borrado cancelado" bb_exit_error="Por favor elija " bb_hit_any_key_to_continue='Hit any key to continue' # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/Spanish/README000066400000000000000000000005511153706571400165370ustar00rootroot00000000000000BashBurn translation HOWTO Es bastante sencillo, abres los archivos con un editor de textos, y traduces las oraciones en ingles a tu lenguaje. Cuando terminas de traducir todos los archivos, copialos en un directorio con el nombre de tu lenguaje, y crea un archivo tar.gz/bzip2/zip de él. Cualquier pregunta enviame un mail a anders.linden@gmail.com /Anders bashburn-3.0.1/lang/Spanish/advanced.lang000066400000000000000000000014541153706571400202720ustar00rootroot00000000000000# Spanish language file for advanced.lang # FIXME: Not done # # Number of tabs after each option text will vary between languages. # bb_adv_menutitle="Advanced Options" bb_adv_cdburncmd="CD burning command" bb_adv_dvdburncmd="DVD burning command" bb_adv_isocmd="ISO creation command" bb_adv_dvdblankcmd="DVD blanking command" bb_adv_imgburncmd="CD image burn command" bb_adv_audioripcmd="CD audio ripping command" bb_adv_cdcopycmd="CD copying command" bb_adv_cdcopyopts="CD copying options" bb_adv_mp3enc="MP3 encoder command" bb_adv_mp3dec="MP3 decoder command" bb_adv_oggenc="Ogg encoder command" bb_adv_oggdec="Ogg decoder command" bb_adv_flac="FLAC encoder/decoder command" bb_adv_eject="Disc eject command" bb_adv_norm="Audio normalization command" # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/Spanish/audio_menu.lang000066400000000000000000000043401153706571400206470ustar00rootroot00000000000000# audio_menu.lang - Spanish language bb_am_enter_1="Presione [ENTER] para volver al menú principal" bb_am_enter_2="Inserte CD en blanco y presione [ENTER] para continuar" bb_am_nomp3s="No hay mp3s en " bb_am_nooggs="No hay OGGs en " bb_am_noflacs="No hay FLACs en " bb_am_norm_1=" Normalizando " bb_am_err_1="[ERROR]: Lo siento :( BashBurn no puede leer el CD!" bb_am_conf_1=" Eligió Extraer estas Pistas: " bb_am_conf_2="Es esto correcto? (y/n): " bb_am_named_1="Información del Disco..." bb_am_named_2="Presione [ENTER] para continuar o" bb_am_named_3="Ingrese un numero de pista a extraer " bb_am_named_4="Ahora se pueden usar espacios en los nombres!" bb_am_named_5="ej. Artista - Tema, Artista_Tema, Artista-Tema." bb_am_named_6="Cual es el nombre de la pista " bb_am_rip_1=" Extrayendo pista " bb_am_rip_2="Pistas extraídas!" bb_am_encfilt=" Comando de Filtro Codificador..." bb_am_menu_title="Menú de Audio" bb_am_menu_1="Grabar Audio desde Mp3s/OGGs/WAVs/FLACs" bb_am_menu_2="Grabar Audio Directamente" bb_am_menu_3="Copiar Audio CD (CD a CD)" bb_am_menu_4="Copiar Audio CD (CD al disco rígido)" bb_am_menu_5="Grabar Lista de Xmms" bb_am_menu_6="Crear Mp3s desde WAVs" bb_am_menu_7="Crear OGGs desde WAVs" bb_am_menu_8="Crear FLACs desde WAVs" bb_am_menu_9="Crear Mp3s desde CD" bb_am_menu_10="Crear OGGs desde CD" bb_am_menu_11="Crear FLACs desde CD" bb_am_menu_0="Atrás" bb_am_menu_input="Su opción? " bb_am_ch3_1="Grabación completa - Gracias por usar BashBurn" bb_am_ch3_2="Ha ocurrido un Error! No se pudo grabar el CD." bb_am_ch3_3="Ha ocurrido un Error! No se pudo extraer las pistas desde " bb_am_ch4_1="Pistas extraídas y grabadas en " bb_am_ch4_2=" Si desea crear" bb_am_ch4_3="mp3s,OGGs o FLACs, use la respectiva función del menú." bb_am_ch5="Lectura de la lista fallida. No se intenta grabar." bb_am_ch6_1=" creado..." bb_am_ch6_2" no pudo ser comprimido" bb_am_ch6_3="No hay WAVs en " bb_am_ch7_1="Archivo creado..." bb_am_ch9_1=" Creando Mp3s..." bb_am_ch9_2="Mp3s creados. Los archivos se encuentran en " bb_am_ch10_1=" Creando OGGs..." bb_am_ch10_2="OGGs creados. Los archivos se encuentran en " bb_am_ch11_1="FLACs creados. Los archivos se encuentran en " bb_am_ch0="Volviendo al menú principal" bb_am_error="Por favor elija " bashburn-3.0.1/lang/Spanish/bincue.lang000066400000000000000000000007341153706571400177720ustar00rootroot00000000000000# bincue.lang - Spanish language bb_press_enter="Presione [ENTER] para volver al menú principal." bb_bincue_copy_1="El archivo Bin y Cue debe ser copiado/linkeado a" bb_bincue_copy_1b="antes de intentar grabar." bb_bincue_copy_2="Has hecho eso? (y/n):" bb_bincue_copy_3="Por favor copie el archivo Bin/Cue a" bb_bincue_copy3b="antes de intentar grabar." bb_bincue_burn_1="Grabación finalizada" bb_bincue_burn_2="Grabación fallida. Tal vez no tienes los permisos adecuados" bashburn-3.0.1/lang/Spanish/burning.lang000066400000000000000000000024461153706571400201730ustar00rootroot00000000000000# burning.lang - Spanish language bb_press_enter="Presione [ENTER] para volver al menú principal" bb_no_ob="No se habilita overburn..." bb_burning_tmp_1="Archivos temporales en" bb_burning_tmp_1b="borrados..." bb_burning_tmp_2="no han sido borrados..." bb_burning_audio_1="encontrado" bb_burning_audio_2="No hay archivos de audio en" bb_burning_audio_3="No se Normaliza..." bb_burning_finish_1="Grabación finalizada" bb_burning_finish_2="Grabación fallida. Vea los documentos para mas información." bb_burning_finish_3="Archivo(s) linkeados/copiados a" bb_burning_error="No hay archivos en " bb_burning_iso_1="No se encontró ISO en" bb_burning_data_1="Intentando crear archivo ISO" bb_burning_data_label="Etiqueta de su CD de Datos: " # New in 1.6 bb_burning_data_2="Error: No se pudo crear archivo ISO." bb_burning_data_3="Tal vez necesita permisos de escritura?" bb_burning_fifo_1="No hay archivos WAV de MP3 en" bb_burning_fifo_2="Preparando para grabar" bb_burning_fifo_2b="pistas!" bb_burning_fifo3="Limpiar fifos no usados" bb_burning_dvd_1="Es esta la sesión inicial del DVD?" bb_burning_dvd_2="(Ingrese no si quiere agregar una nueva sesión a" bb_burning_dvd_3="un DVD ya grabado. Para cancelar la operación" bb_burning_dvd_4="presione [ENTER] sin ingresar nada)" bb_burning_dvd_5="(yes/no): " bashburn-3.0.1/lang/Spanish/check_path.lang000066400000000000000000000010131153706571400206050ustar00rootroot00000000000000# check_path.lang - Spanish language bb_cp_1="Aplicación Encontrada" bb_cp_2="en" bb_cp_3="Aplicación NO ENCONTRADA!" bb_cp_4="Si no lo instala puede que no funcionen todas las funciones." bb_cp_5="Comprobando Rutas..." bb_cp_6=" Herramientas de grabación" bb_cp_7=" Extractores" bb_cp_8=" Codificadores y Decodificadores" bb_cp_9=" Misc" bb_cp_10="NOTA: Instale los programas que no fueron encontrados" bb_cp_11="o puede que BashBurn no funcione correctamente." bb_cp_12="Presione [ENTER] para volver al menú principal." bashburn-3.0.1/lang/Spanish/commonfunctions.lang000066400000000000000000000017271153706571400217510ustar00rootroot00000000000000# commonfunctions.lang - Spanish language file bb_cf_text1="El CD parece escrito. Desea borrarlo?" bb_cf_text2="Sólo responda 'yes' si es un regrabable. Ingrese" bb_cf_text3="'abort' si desea cancelar y volver al menú." bb_cf_text4="Abortando..." bb_cf_text5="Intentando grabar sin borrar el CD. Probablemente fallará." bb_cf_text6="Proceso de borrado fallido. Proceso de grabación abortado" bb_cdrw_blank1="Borrar CD..." bb_cdrw_blank2="CDRW limpio" bb_cdrw_blank3="El borrado ha fallado. Intentando borrado forzado..." bb_cdrw_blank4="Borrado forzado completada satisfactoriamente." bb_cdrw_blank5="El borrado no pudo ser completado. Debería reemplazar este CD." bb_cdrw_blank6="CD/DVD parece estar vacío (O no hay CD en dispositivo), no se borrará..." bb_dvd_blank1="Borrado rapido o total?" bb_dvd_blank2="Ingrese 'yes' para rapido, " bb_dvd_blank3="o 'no' para formato total." bb_dvd_blank4="Presione [ENTER] sino ingresar texto" bb_dvd_blank5="para cancelar la operacion." bashburn-3.0.1/lang/Spanish/configure.lang000066400000000000000000000213341153706571400205050ustar00rootroot00000000000000# configure.lang - Spanish language # Nick - this needs checking by a native speaker bb_conf_menu_writer="Grabadora de CD" bb_conf_menu_cddev="Archivo de dispositivo de Lectora de CD" bb_conf_menu_cdmnt="Punto de montaje de la Lectora de CD" bb_conf_menu_speed="Velocidad" bb_conf_menu_blank="Tipo de blanqueado" bb_conf_menu_numdev="Numero de Dispositivos" bb_conf_menu_root="Directorio Raíz" bb_conf_menu_burn="Directorio de Grabación" bb_conf_menu_label="Etiqueta de CD" #bb_conf_menu10="Copyright" bb_conf_menu_auth="Autor" #bb_conf_menu12="Publicante" bb_conf_menu_desc="Descripción" #bb_conf_menu14="Nombre del paquete" bb_conf_menu_norm="Normalizar" bb_conf_menu_dropt="Opciones de controlador" bb_conf_menu_fifo="Directorio FIFO" bb_conf_menu_deltmp="Eliminar temporales después de grabar" bb_conf_menu_ob="Permitir overburn" #bb_conf_menu20="Protección de Copia" bb_conf_menu_bitrate="Cambiar el Bitrate" bb_conf_menu_lang="Lenguaje" bb_conf_menu_dtao="DAO/TAO" bb_conf_menu_gap="Silencio entre pistas" bb_conf_menu_adv=Avanzado bb_conf_menu_apply="Aplicar cambios" bb_conf_menu_default="Aplicar valores por defecto" bb_conf_menu0="Atrás" bb_conf_menu_entry="Su opción? " bb_conf_action_desc="Acciones" bb_conf_menu_toptext1="Configuración" bb_conf_menu_toptext2="Valor actual" bb_conf_default_is="Por defecto" # End Nick # Everything below still needs fixing # =================================== bb_conf_ch1_1="La ruta de la grabadora se debe ingresar como 0,0,0 (Para SCSI)" bb_conf_ch1_2="ATAPI:0,0,0 o /dev/hdX (Para grabadoras IDE)" bb_conf_ch1_3="(Donde hdX es la unidad correspondiente, como hdc)" bb_conf_ch1_4="También puede usar el nombre de dispositivo ej, yahama, sanyo, etc." bb_conf_ch1_5="si " bb_conf_ch1_6="esta configurado apropiadamente." bb_conf_ch1_7="(Posibles) Dispositivos SCSI:" bb_conf_ch1_8="(Posibles) Dispositivos IDE:" bb_conf_ch1_9="Ingrese ruta a la grabadora: " bb_conf_ch1_10="Modo de autodetección, ingrese: auto" bb_conf_ch2_1="La ruta al archivo de dispositivo del CDROM es usualmente /dev/cdrom o /dev/dvd" bb_conf_ch2_2="Lista de posible unidades de CD (Según /etc/fstab): " bb_conf_ch2_3="Ingrese el archivo de dispositivo del cdrom: " bb_conf_ch3_1="El punto de montaje para su CDROM es usualmente /mnt/cdrom o /mnt/dvd" bb_conf_ch3_2="Lista de posible unidades de CD (Según /etc/fstab): " bb_conf_ch3_3="Ingrese el punto de montaje: " bb_conf_ch4_1="Las versiones recientes de cdrecord no usan velocidad 1" bb_conf_ch4_2="por defecto. Para dispositivos compatibles con MMC por" bb_conf_ch4_3="defecto se escribe a la máxima velocidad, así que generalmente" bb_conf_ch4_4="no tiene sentido poner una velocidad por defecto." bb_conf_ch4_5="Salvo que tengas una buena razón, usa velocidad -1 y deja" bb_conf_ch4_6="que cdrecord use su valor por defecto." bb_conf_ch4_7="Ingrese la velocidad de la grabadora: " bb_conf_ch5_1="Ingrese el tipo de blanqueado. Por defecto es all" bb_conf_ch5_2="Actualmente su valor es " bb_conf_ch6_1="Tienes ambas, una lectora y una grabadora de CD?" bb_conf_ch6_2="Si es así, ingresa 2. Sino, ingresa 1" bb_conf_ch7_1="El directorio raíz es donde se encuentran los scripts de BashBurn." bb_conf_ch7_2="Cambialo únicamente si sabes lo que haces." bb_conf_ch7_3="Si quieres cancelar, simplemente presiona enter " bb_conf_ch7_4=" en el prompt." bb_conf_ch8_1="Directorio de Grabación es donde pones/linkeas los archivos a grabar." bb_conf_ch8_2="Asegurate de tener permisos para escribir en este directorio." bb_conf_ch9_1="Este es el nombre del punto de montaje usado por el" bb_conf_ch9_2="manejador de volúmenes de Solaris y el nombre que se le" bb_conf_ch9_3="asigna al disco en Microsoft Win32 o la plataforma Apple Mac." bb_conf_ch9_4="La etiqueta actual es " bb_conf_ch9_4b="Si quieres que se te pregunte cada vez que etiqueta deseas" # New in 1.6 bb_conf_ch9_4c="ingresa aquí como etiqueta." # New in 1.6 bb_conf_ch9_5="Ingrese la etiqueta de CD deseada:" bb_conf_ch10_1="Si quieres ponerle Copyright a tu CD, ingresalo aquí:" bb_conf_ch11_1="Esto debería describir al preparador del CD, usualmente" bb_conf_ch11_2="con una dirección de correo y un numero de teléfono. Hay" bb_conf_ch11_3="espacio para 128 caracteres de información en el disco." bb_conf_ch11_4="El autor actual es " bb_conf_ch11_5="Ingrese el Autor/Dueńo del CD - oye, ese eres tu, no?" bb_conf_ch12_1="Esto debería describir al publicante del CD, usualmente" bb_conf_ch12_2="con una dirección de correo y un numero de teléfono." bb_conf_ch12_3="Hay espacio en el disco para 128 caracteres de información." bb_conf_ch12_4="El publicante actual es " bb_conf_ch12_5="Ingrese el Publicante del CD (si hay uno):" bb_conf_ch13_1="Esto debería describir el contenido que va a tener el" bb_conf_ch13_2="disco. Hay un espacio en el disco para 128 caracteres" bb_conf_ch13_3="de información. La descripción actual es:" bb_conf_ch13_4="Describa los contenidos del CD:" bb_conf_ch14_1="Un paquete consiste en varios CDs, por ejemplo, un SO" bb_conf_ch14_2="cuyo software se distribuye en varios discos." bb_conf_ch14_3="Esto es opcional. Si lo usas debes configurar la cantidad" bb_conf_ch14_4="de CDs y el numero de cada disco." bb_conf_ch14_5="El nombre de paquete actual es " bb_conf_ch14_6="Ingrese el nombre del paquete:" bb_conf_ch15_1="Normalizar es usado para ajustar el volumen de archivos WAV a un volumen MP3" bb_conf_ch15_2="estándar. Esto es útil para crear un álbum de una fuente variada de donde" bb_conf_ch15_3="diferentes volúmenes de grabación en cada álbum puede causar que el volumen" bb_conf_ch15_4="cambie de manera notable entre canción y canción. Actualmente su valor es " bb_conf_ch15_5="Solo ingrese yes si tiene el programa para normalizar instalado, de lo contrario no." bb_conf_ch16_1="Ingrese las opciones para el controlador que le gustaría usar, separadas" bb_conf_ch16_2="con una coma. Si no esta seguro, presione enter sin escribir nada." bb_conf_ch17_1="Ingrese al ubicación del directorio FIFO. Se necesita solo para grabación" bb_conf_ch17_2="redireccionada, y la mayoría de las veces el valor por defecto es suficiente." bb_conf_ch17_3="Si quieres cancelar presiona enter " bb_conf_ch17_4=" en el prompt." bb_conf_ch17_5=" es el directorio FIFO actual)" bb_conf_ch18_1="Borrar archivos en " bb_conf_ch18_2=" después de completada la grabación?" bb_conf_ch18_3="Por defecto no, que es lo que deberías elegir yes (si)" bb_conf_ch18_4="vas a grabar esos archivos mas de una vez... (yes/no)" bb_conf_ch19_1="Deseas que BashBurn permita overburn? Tu" bb_conf_ch19_2="grabadora debe soportarlo y no es seguro que" bb_conf_ch19_3="funcione, ya que puede grabar mas en el CD" bb_conf_ch19_4="de la capacidad que fue diseńado." bb_conf_ch19_5="Por defecto es no. (yes/no)" bb_conf_ch20_1="Esta opción es para CDs de audio. Están los contenidos protegidos contra copia?" bb_conf_ch20_2="Por defecto es no, si desea lo contrario, ingrese yes (si) " bb_conf_ch20_3="NOTA: " bb_conf_ch20_4="Esta opción " bb_conf_ch20_5="no" bb_conf_ch20_6=" protege contra copia los archivos de audio" bb_conf_ch20_7="siendo grabados, simplemente le dice a cdrecord que lo están." bb_conf_ch21_1="El Bitrate es lo que mas influye en la calidad de archivos de audio." bb_conf_ch21_2="Mientras mas bitrate, mas calidad. Por supuesto que mayor bitrate" bb_conf_ch21_3="provocara un aumento de tamańo en los archivos de audio." bb_conf_ch21_4="Configurar bitrate para archivos de audio MP3 y OGG." bb_conf_ch21_5="Por defecto es 128. " bb_conf_ch22_1="Aquí es donde cambias el lenguaje de BashBurn, por defecto Ingles." bb_conf_ch22_2="Lenguajes disponibles:" bb_conf_ch23_1="Esto es para decirle a cdrecord que grabe en modo:" bb_conf_ch23_2="SAO (Session at Once)" bb_conf_ch23_2b=" también llamado " bb_conf_ch23_2c="DAO (Disk at once)" bb_conf_ch23_3="o" bb_conf_ch23_4="TAO (Track at once)" bb_conf_ch23_5=" Por defecto es TAO." bb_conf_ch23_6="Para mas información consulte el manual de cdrecord (man cdrecord)" bb_conf_ch23_7="Ingrese su opción como -tao, -sao o -dao (SAO y DAO son equivalentes)" # Added in BashBurn 2.1 bb_conf_ch24_1="Esta opcion habilita o deshabilita el silencio entre pistas." bb_conf_ch24_2="Si no quieres espacio, por ejemplo para grabar un CD de audio" bb_conf_ch24_3a="sin silencio entre pistas, ingrese" bb_conf_ch24_3b="para deshabilitar esta opcion." bb_conf_ch24_4="(Habilitada)." bb_conf_apply_1="Cambios aplicados!" bb_conf_apply_2="No se pudo escribir en" bb_conf_apply_3="Tal vez quieras usar el comando chmod 666" bb_conf_def_1="Valores por defecto aplicados!" bb_conf_def_2="(BBROOTDIR *no* tiene valor por defecto - debes cambiarlo!)" bb_conf_xit_1="Volver al menú principal" bb_conf_xit_2="Seleccionaste APLICAR CAMBIOS antes de salir, no es cierto?" bb_conf_err="Por favor ingrese " # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/Spanish/convert_flacs.lang000066400000000000000000000001521153706571400213470ustar00rootroot00000000000000# convert_flacs.lang - Spanish version bb_conv_flac_1="Archivos FLAC convertidos y listos para grabarse" bashburn-3.0.1/lang/Spanish/convert_mp3s.lang000066400000000000000000000002351153706571400211430ustar00rootroot00000000000000# convert_mp3s.lang - Spanish language bb_conv_mp3_1="descomprimidos" bb_conv_mp3_2="y listos para ser grabados" bb_conv_mp3_3="no se pudo descomprimirlos" bashburn-3.0.1/lang/Spanish/convert_oggs.lang000066400000000000000000000001511153706571400212150ustar00rootroot00000000000000# convert.lang - Spanish language bb_conv_ogg="Archivos OGG descomprimidos y listos para ser grabados." bashburn-3.0.1/lang/Spanish/data_menu.lang000066400000000000000000000016521153706571400204620ustar00rootroot00000000000000# data_menu.lang - Spanish language bb_dm_newcd="Inserte un CD en blanco y presione [ENTER] para continuar" bb_dm_wait="Presione [ENTER] para volver al menú principal." bb_dm_menu_title="Menú de Datos" bb_dm_menu_1="Grabar Datos" bb_dm_menu_2="Copiar CD de Datos(CD a CD)" bb_dm_menu_3="Grabar DVD de Datos" bb_dm_menu_4="Borrar CDRW" bb_dm_menu_5="Borrar DVD" bb_dm_menu_0="Volver" bb_dm_menu_entry="Su opción? " bb_dm_ch2_1=" no montado! Debe montarlo primero..." bb_dm_ch2_2="Un archivo ISO existe en " bb_dm_ch2_3=" Borrarlo o moverlo" bb_dm_ch2_4="antes de intentar crear uno nuevo." bb_dm_ch2_5="CD copiado!" bb_dm_ch2_6="Comenzando grabación" bb_dm_ch0="Volviendo al menú.." bb_dm_error="Por favor ingrese " bb_dm_cdcopy="Copiando contenidos del CD a " bb_dm_cdcopy_err1="Error en la transferencia. Esta seguro que tiene el CD correcto en el dispositivo?" bb_dm_cdcopy_err2="(Vea los mensajes de error para obtener pistas)" bashburn-3.0.1/lang/Spanish/datadefine.lang000066400000000000000000000021741153706571400206110ustar00rootroot00000000000000# datadefine.lang - Spanish language bb_mnt_menu_title="Definir datos a grabar" bb_wfe_1="Presione [ENTER] volver al menú." bb_dc_menu_1=" Copiar/Linkear datos a " bb_dc_menu_2=" Ver datos en " bb_dc_menu_3=" Eliminar datos en " bb_dc_menu_0=" Volver al menú principal" bb_dc_explain1="Ahora serás puesto en una terminal. Su posición actual" bb_dc_explain2a="es en el directorio " bb_dc_explain2b=" . Para que BashBurn sea" bb_dc_explain3="capaz de grabar algo, debes copiar o linkear tus datos" bb_dc_explain4="a este directorio. Puedes hacer esto usando los comandos" bb_dc_explain5="cp o ln. Por ejemplo, para linkear datos aquí, ingresas:" bb_dc_explain6=" 'ln -s ./' (Sin los '')" bb_dc_explain7="y para copiar datos reemplazas ln -s con cp. Cuando finalices, " bb_dc_explain8="ingresa el comando 'exit' (Sin '') para volver al menú principal." bb_dc_ch3_1="Esta seguro que desea eliminar estos archivos? '${BBHEADCOLOR}y${BBCOLOROFF}'/'${BBTABLECOLOR}n${BBCOLOROFF}': " bb_dc_ch3_2="Archivos eliminados." bb_dc_ch3_3="Archivos no eliminados" bb_dc_ch3_4="No hay archivos en " bb_dc_menu_err="Error. Por favor elija" bashburn-3.0.1/lang/Spanish/iso_menu.lang000066400000000000000000000020641153706571400203410ustar00rootroot00000000000000# iso_menu.lang - Spanish language bb_im_wait_1="Presione [ENTER] para volver al menú." bb_im_menu_title="Menu de imagenes ISO" bb_im_menu_1="Grabar ISO" bb_im_menu_2="Crear ISO desde archivos en " bb_im_menu_3="Crear ISO desde cd" bb_im_menu_4="Grabar imágen DVD" bb_im_menu_5="Montar imágen" bb_im_menu_0="Atras" bb_im_menu_entry="Su opción? " bb_im_error_files="No hay archivos en " bb_im_ch2_1="Existe un archivo ISO en " bb_im_ch2_2=" Borrelo o muevalo" bb_im_ch2_3="antes de intentar crear uno nuevo." bb_im_ch2_4="Intentando crear archivo ISO" bb_im_ch2_4b="Etiqueta de su CD de Datos: " # New in 1.6 bb_im_ch2_5="ISO creado" bb_im_ch2_6="Error: No se pudo crear archivo ISO!" bb_im_ch2_7="Tal vez no tiene permisos de escritura?" bb_im_ch3_1=" no se encuentra montado! Haga eso primero..." bb_im_ch3_2="Creando ISO desde CD en " bb_im_ch5_1="Ingrese ruta del archivo de imagen a ser montado:" bb_im_ch5_2="(O presione Enter para cancelar)" bb_im_ch5_3="No se ingreso archivo, cancelando." bb_im_ch0="Volviendo al menu..." bb_im_error="Por favor ingrese " bashburn-3.0.1/lang/Spanish/loopback.lang000066400000000000000000000026421153706571400203170ustar00rootroot00000000000000# loopback.lang - Spanish language bb_lb_noread="no pudo ser leido." bb_lb_no_lb_dir="No hay directorio de loopack, creando..." bb_lb_dir_c="Directorio creado." bb_lb_dir_cf="Fallo en la creacion, cancelando." bb_lb_no_im_dir="No existe directorio de imagen, creando..." bb_lb_no_temp_dir="No existe el directorio temporal, creando..." bb_lb_sudo1="Debes estar en el grupo sudoers para montar la imagen." bb_lb_sudo2="Ingresa tu contraseńa abajo, si falla tal vez no estes" bb_lb_sudo3="en ese grupo. En ese caso, arreglalo e intenta de nuevo." bb_lb_sudo4="Tambien debes tener suporte para dispositivos loopback" bb_lb_sudo5="compilado en el kernel o como modulo," bb_lb_sudo6="o el proximo paso fallara." bb_lb_mount="Imagen montada." bb_lb_mount_fail="Fallo al montar, abortando." bb_lb_cp_cont="Copiando contenidos, por favor, aguarde..." bb_lb_in_file="Estas viendo los archivos de la imagen. Modifica y luego escribe 'exit'." bb_lb_change1="Realizo cambios? (Si es asi, una nueva imagen" bb_lb_change2="debe ser creada lo cual tomara un tiempo) (y/n)" bb_lb_change3="Ya existen datos en" bb_lb_change4="seran borrados si continua." bb_lb_change5="Quieres continuar? (y/n)" bb_lb_change6="Creando nueva imagen, por favor aguarde..." bb_lb_change7="Nueva imagen creada en" bb_lb_change8="Abortando, no se borra informacion. Cambios a la imagen descartados." bb_lb_change9="No se hicieron cambios, se omite recreacion de imagen." bashburn-3.0.1/lang/Spanish/mount.lang000066400000000000000000000031631153706571400176660ustar00rootroot00000000000000# mount.lang - Spanish language bb_mnt_enter_1="Presione [ENTER] para volver" bb_mnt_menu_title="Montar/Desmontar Dispositivo" bb_mnt_menu_1="Montar dispositivo" bb_mnt_menu_2="Desmontar dispositivo" bb_mnt_menu_3="Expulsar dispositivo" bb_mnt_menu_0="Volver" bb_mnt_menu_input="Su opción? " bb_mnt_ch1_1="Que dispositivo desea montar? Ingrese por ejemplo /mnt/cdrom" bb_mnt_ch1_2="(Debes ingresar el punto de montaje, no el archivo de dispositivo. Por ejemplo" bb_mnt_ch1_3="/mnt/cdrom funcionara bien, pero /dev/cdrom no. Sólo presione [ENTER]" bb_mnt_ch1_4="sin haber escrito nada para abortar." bb_mnt_ch1_5="Montaje cancelado!" bb_mnt_ch1_6="Montando " bb_mnt_ch1_7=" ha sido montado." bb_mnt_ch1_8="Montaje fallido. Tal vez no tienes los permisos necesarios," bb_mnt_ch1_9="el dispositivo ya esta montado, no hay medio en el dispositivo" bb_mnt_ch1_10="o escribió mal la ruta del dispositivo?" bb_mnt_ch2_1="Parece que no hay dispositivos montados." bb_mnt_ch2_2="Que dispositivo deseas desmontar? Ingrese por ejemplo /mnt/cdrom" bb_mnt_ch2_3=" desmontado." bb_mnt_ch2_4="Desmontaje fallido. Tal vez no tienes los permisos necesarios" bb_mnt_ch2_5="o escribió mal la ruta del dispositivo?" bb_mnt_ch3_1="Que dispositivo deseas expulsar? Ingrese por ejemplo /mnt/cdrom" bb_mnt_ch3_1b="o sólo presione [ENTER] sin haber escrito nada para abortar." bb_mnt_ch3_1c="Abortado!" bb_mnt_ch3_2=" expulsado. (En caso que no lo hayas notado ;-) )" bb_mnt_ch3_3="Expulsión fallida. Tal vez no tienes los permisos necesarios" bb_mnt_ch3_4="o escribió mal la ruta del dispositivo?" bb_mnt_ch0="Volver al menú principal" bb_mnt_error="Por favor elija " bashburn-3.0.1/lang/Spanish/multi.lang000066400000000000000000000036021153706571400176540ustar00rootroot00000000000000# multi.lang - Spanish language bb_multi_enter_1="Presione [ENTER] para volver al menú principal." bb_multi_enter_2="Presione [ENTER] para continuar." bb_multi_burn_1="ISO encontrado..." bb_multi_burn_2=" si esta NO es su primera grabación a un CD Multisesión" bb_multi_burn_3=" entonces este ISO *DEBE* ser creado utilizando información valida de la sesión previa" bb_multi_burn_4=" Porque: entonces sin esa información esta sesión sera invisible y inútil" bb_multi_burn_5="CD grabado..." bb_multi_burn_6=" No se encontró una imagen ISO, intentando crear una..." bb_multi_burn_7="Obteniendo información de la sesión previa usando -msinfo" bb_multi_burn_8=" la información msinfo necesaria para Multisesión es:" bb_multi_burn_9="si los paréntesis" bb_multi_burn_9b="tienen dos números con una coma - TODO ESTA OK PARA SEGUIR!" bb_multi_burn_10="un mensaje de error terminando con: \"cdrecord: Cannot read session offset\" significa que es un CD en blanco" bb_multi_burn_11="un mensaje de error terminando con: \"cdrecord: No disk / Wrong disk!\" significa que no hay disco en el dispositivo" bb_multi_burn_12="se obtuvo información de Multisesión valida, agregando argumentos:" bb_multi_burn_13="La primera grabación Multisesión al CD no necesita el puntero de la sesión anterior" bb_multi_burn_14="Ahora, crea el ISO si es posible..." bb_multi_burn_14b="Etiqueta de su CD de Datos: " # New in 1.6 bb_multi_burn_15="ISO creado" bb_multi_burn_16="Error: No se pudo crear el archivo ISO." bb_multi_burn_17="Tal vez... No hay archivos en" bb_multi_burn_18="Tal vez no tienes permisos de escritura?" bb_multi_menu_title="CD Multisesión" bb_multi_menu_1="Primera grabación a un CD Multisesión" bb_multi_menu_2="Continuar CD Multisesión" bb_multi_menu_3="Terminar CD Multisesión" bb_multi_menu_0="Volver" bb_multi_menu_entry="Su opción? " bb_multi_ch0="Volver al menú principal..." bb_multi_err="Por favor ingrese " bashburn-3.0.1/lang/Swedish/000077500000000000000000000000001153706571400156575ustar00rootroot00000000000000bashburn-3.0.1/lang/Swedish/BashBurn.lang000066400000000000000000000027611153706571400202340ustar00rootroot00000000000000# BashBurn.lang - Swedish language bb_conf_check1="BashBurn har inte konfigurerats. VĂ€lj 'InstĂ€llningar' och" bb_conf_check2='stĂ€ll in BashBurn innan du försöker anvĂ€nda det.' bb_quit1='Tack för att du anvĂ€nder ' bb_quit2='Besök ' bb_quit3='http://bashburn.dose.se ' bb_quit4='för info och uppdateringar.' bb_press_enter='Tryck [ENTER] för att fortsĂ€tta.' bb_no_temp_dir='Katalog för temporĂ€ra filer finns inte. Försöker skapa den...' bb_text_1='skapades!' bb_text_2='Konfigurera BashBurn innan du försöker anvĂ€nda det.' bb_text_3='Du har inte skrivrĂ€ttigheter för ' bb_text_4='Ändra detta vĂ€rde i instĂ€llningarna, annars kommer du inte kunna brĂ€nna nĂ„gonting.' bb_text_5='Katalogen' bb_text_6='existerar inte trots att du angett den i konfigurationsfilen' bb_text_7='Söker efter CD-brĂ€nnare ...' bb_text_8='Hittad: ' bb_main_menu='Huvudmeny' bb_menu_1='Musik' bb_menu_2='Data' bb_menu_3='ISO' bb_menu_4='Bin/Cue' bb_menu_5='Multisession' bb_menu_6='InstĂ€llningar' bb_menu_7='Montera/Avmontera CD' bb_menu_8='Hitta program' bb_menu_9='Definiera data' bb_menu_0='Avsluta' bb_menu_adv='Avancerade instĂ€llningar' bb_menu_input='Ditt val? ' bb_burndir_view='InnehĂ„ll i' bb_burndir_del1='Vill du verkligen ta bort alla filer i' bb_burndir_del1b='(y/n)' bb_burndir_del2='Är rensad.' bb_burndir_del3='Borttagning avbruten' bb_exit_error='Var vĂ€nlig vĂ€lj ' bb_hit_any_key_to_continue='Tryck pĂ„ en tangent för att fortsĂ€tta' # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/Swedish/README000066400000000000000000000005641153706571400165440ustar00rootroot00000000000000BashBurn translation HOWTO It's quite simple, you open up the files in any simple text editor, and translate the english sentences into the your language. When you are finished translating all files, copy them into a directory with the name of your language, and create a tar.gz/bzip2/zip archive of it. Any questions send me a mail at anders.linden@gmail.com /Anders bashburn-3.0.1/lang/Swedish/advanced.lang000066400000000000000000000063361153706571400202770ustar00rootroot00000000000000# Swedish language file for advanced.lang # bb_adv_menutitle='Avancerade instĂ€llningar' bb_adv_cdburncmd='CD-brĂ€nnarprogram' bb_adv_dvdburncmd='DVD-brĂ€nnarprogram' bb_adv_isocmd='ISO-skaparprogram' bb_adv_dvdblankcmd='DVD-formatteringsprogram' bb_adv_imgburncmd='ISO-brĂ€nnarprogram' bb_adv_audioripcmd='Ljud-CD kopieringsprogram' bb_adv_cdcopycmd='CD-kopieringsprogram' bb_adv_cdcopyopts='CD-kopieringsinstĂ€llningar' bb_adv_mp3enc='MP3-kodningsprogram' bb_adv_mp3dec='MP3-avkodningsprogram' bb_adv_oggenc='Ogg-kodningsprogram' bb_adv_oggdec='Ogg-avkodningsprogram' bb_adv_flac='FLAC kod/avkodningsprogram' bb_adv_eject='Skivutmatningsprogram' bb_adv_norm='Ljudbalanseringsprogram' bb_adv_back=Tillbaka bb_adv_action_desc=Aktioner bb_adv_error='Var vĂ€nlig ange' bb_this_is_the_cmd="Detta kommando anvĂ€nds för att" bb_curr_cmd="Det nuvarande kommandot Ă€r:" bb_adv_cdburncmd_help=\ "${bb_this_is_the_cmd} brĂ€nna en CD. ${bb_curr_cmd} ${BBOPTIONCOLOR}${BB_CDBURNCMD}${BBCOLOROFF}" bb_adv_dvdburncmd_help=\ "${bb_this_is_the_cmd} brĂ€nna en DVD. ${bb_curr_cmd} ${BBOPTIONCOLOR}${BB_DVDBURNCMD}${BBCOLOROFF}" bb_adv_dvdburncmdopts_help=\ "Detta Ă€r de DVD-brĂ€nningsinstĂ€llningar som anvĂ€nds. Ändra endast dessa om du vet vad du gör. I de flesta fall Ă€r standardinstĂ€llningarna ok. Nuvarande instĂ€llningar Ă€r: ${BBOPTIONCOLOR}${BB_DVDBURNCMDOPTS}${BBCOLOROFF}" bb_adv_isocmd_help=\ "${bb_this_is_the_cmd} skapa ISO-avbildningar. ${bb_curr_cmd} ${BBOPTIONCOLOR}${BB_ISOCMD}${BBCOLOROFF}" bb_adv_dvdblankcmd_help=\ "${bb_this_is_the_cmd} formattera DVD:er. ${bb_curr_cmd} ${BBOPTIONCOLOR}${BB_DVDBLANK}${BBCOLOROFF}" bb_adv_imgburncmd_help=\ "${bb_this_is_the_cmd} brĂ€nna CD-avbildningar. ${bb_curr_cmd} ${BBOPTIONCOLOR}${BB_CDIMAGECMD}${BBCOLOROFF}" bb_adv_audioripcmd_help=\ "${bb_this_is_the_cmd} kopiera ljud-CD:er. ${bb_curr_cmd} ${BBOPTIONCOLOR}${BB_CDAUDIORIP}${BBCOLOROFF}" bb_adv_cdcopycmd_help=\ "${bb_this_is_the_cmd} kopiera data-CD:er. ${bb_curr_cmd} ${BBOPTIONCOLOR}${BB_READCD}${BBCOLOROFF}" bb_adv_cdcopyopts_help=\ "Detta Ă€r de instĂ€llningar som anvĂ€nds nĂ€r du kopierar en data-CD. Ändra endast dessa om du vet vad du gör. I de flesta fall Ă€r standardinstĂ€llningarna ok. Nuvarande instĂ€llningar Ă€r: ${BBOPTIONCOLOR}${BB_READ_OPTS}${BBCOLOROFF}" bb_adv_mp3enc_help=\ "${bb_this_is_the_cmd} skapa MP3-filer. ${bb_curr_cmd} ${BBOPTIONCOLOR}${BB_MP3ENC}${BBCOLOROFF}" bb_adv_mp3dec_help=\ "${bb_this_is_the_cmd} avkoda MP3-filer. ${bb_curr_cmd} ${BBOPTIONCOLOR}${BB_MP3DEC}${BBCOLOROFF}" bb_adv_oggenc_help=\ "${bb_this_is_the_cmd} skapa Ogg-filer. ${bb_curr_cmd} ${BBOPTIONCOLOR}${BB_OGGENC}${BBCOLOROFF}" bb_adv_oggdec_help=\ "${bb_this_is_the_cmd} avkoda Ogg-filer. ${bb_curr_cmd} ${BBOPTIONCOLOR}${BB_OGGDEC}${BBCOLOROFF}" bb_adv_flac_help=\ "${bb_this_is_the_cmd} skapa/avkoda FLAC-filer. ${bb_curr_cmd} ${BBOPTIONCOLOR}${BB_FLACCMD}${BBCOLOROFF}" bb_adv_eject_help=\ "${bb_this_is_the_cmd} mata ut skivan. ${bb_curr_cmd} ${BBOPTIONCOLOR}${BB_EJECT}${BBCOLOROFF}" bb_adv_norm_help=\ "${bb_this_is_the_cmd} normalisera ljudfiler. ${bb_curr_cmd} ${BBOPTIONCOLOR}${BB_NORMCMD}${BBCOLOROFF}" bb_menu_error_range="${BBTABLECOLOR}Fel${BBCOLOROFF}: Inmatning mĂ„ste vara inom grĂ€nsen" # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/Swedish/audio_menu.lang000066400000000000000000000044151153706571400206530ustar00rootroot00000000000000# audio_menu.lang - Swedish language bb_am_enter_1='Tryck [Enter] för att Ă„tergĂ„ till huvudmenyn' bb_am_enter_2='Mata in en blank CD och tryck [ENTER] för att fortsĂ€tta' bb_am_nomp3s='Inga MP3-filer i ' bb_am_nooggs='Inga Ogg-filer i ' bb_am_noflacs='Inga FLAC-filer ' bb_am_norm_1=' Normaliserar ' bb_am_err_1='[FEL]: TyvĂ€rr :( BashBurn kan inte lĂ€sa CDn!' bb_am_conf_1=' Du valde att kopiera dessa spĂ„r: ' bb_am_conf_2='StĂ€mmer detta? (y/n): ' bb_am_named_1='Skivinformation...' bb_am_named_2='Tryck [ENTER] för att fortsĂ€tta eller ' bb_am_named_3='Ange ett spĂ„rnummer att kopiera ' bb_am_named_4='Mellanrum i namn stöds numera!' bb_am_named_5='ie. Artist - LĂ„t, Artist_LĂ„t, Artist-LĂ„t.' bb_am_named_6='Vad Ă€r spĂ„rnamnet ' bb_am_rip_1=' Kopierar spĂ„r ' bb_am_rip_2='SpĂ„r kopierade!' bb_am_encfilt=' Kodfilterkommando...' bb_am_menu_title='Musikmeny' bb_am_menu_1='BrĂ€nn musik frĂ„n MP3/Ogg/Wav/FLAC' bb_am_menu_2='BrĂ€nn musik direkt' bb_am_menu_3='Kopiera musik-CD (CD till CD)' bb_am_menu_4='Kopiera musik-CD (CD till hĂ„rddisk)' bb_am_menu_5='BrĂ€nn M3U-lĂ„tlista' bb_am_menu_6='Skapa MP3-filer frĂ„n Wav-filer' bb_am_menu_7='Skapa Ogg-filer frĂ„n Wav-filer' bb_am_menu_8='Skapa FLAC-filer frĂ„n Wav-filer' bb_am_menu_9='Skapa MP3-filer frĂ„n CD' bb_am_menu_10='Skapa Ogg-filer frĂ„n CD' bb_am_menu_11='Skapa FLAC-filer frĂ„n CD' bb_am_menu_0='Tillbaka' bb_am_menu_input='Ditt val? ' bb_am_ch3_1='BrĂ€nning slutförd - Tack för att du anvĂ€nder BashBurn' bb_am_ch3_2='Ett fel uppstod! Kunde inte brĂ€nna CDn.' bb_am_ch3_3='Ett fel uppstod! Kunde inte kopiera spĂ„r frĂ„n ' bb_am_ch4_1='SpĂ„r kopierade och sparade i ' bb_am_ch4_2=' Om du vill skapa' bb_am_ch4_3='MP3,Ogg eller FLAC, anvĂ€nd respektive funktion i menyn.' bb_am_ch5='InlĂ€sning av spellista misslyckades. BrĂ€nner inte.' bb_am_ch6_1=' Skapad...' bb_am_ch6_2=' Kunde inte komprimeras' bb_am_ch6_3='Inga Wav-filer i ' bb_am_ch7_1='Fil skapad...' bb_am_ch9_1=' Skapar MP3-filer...' bb_am_ch9_2='MP3-fil(er) skapad(e). Filerna finns i ' bb_am_ch10_1=' Skapar Ogg-filer...' bb_am_ch10_2='OGG-fil(er) skapad(e). Filerna finns i ' bb_am_ch11_1='FLAC-fil(er) skapad(e). Filerna finns i ' bb_am_ch0='ÅtergĂ„r till huvudmenyn' bb_am_error='Var vĂ€nlig vĂ€lj ' # Local Variables: ** # mode:shell-script ** # End: **bashburn-3.0.1/lang/Swedish/bincue.lang000066400000000000000000000010641153706571400177700ustar00rootroot00000000000000# bincue.lang - Swedish language bb_press_enter='Tryck [ENTER] för att Ă„tergĂ„ till huvudmenyn.' bb_bincue_copy_1='Bin- och cue-fil mĂ„ste kopieras/lĂ€nkas till' bb_bincue_copy_1b='innan du försöker att brĂ€nna.' bb_bincue_copy_2='Har du gjort det? (y/n): ' bb_bincue_copy_3='Var vĂ€nlig kopiera/lĂ€nka bin- och cue-fil till' bb_bincue_copy3b='innan du försöker brĂ€nna.' bb_bincue_burn_1='BrĂ€nning avslutad' bb_bincue_burn_2='BrĂ€nning misslyckades. Kanske har du inte tillrĂ€ckliga rĂ€ttigheter?' # Local Variables: ** # mode:shell-script ** # End: **bashburn-3.0.1/lang/Swedish/burning.lang000066400000000000000000000023471153706571400201740ustar00rootroot00000000000000# burning.lang - Swedish language bb_press_enter='Tryck [ENTER] för att Ă„tergĂ„.' bb_no_ob='AnvĂ€nder inte overburn...' bb_burning_tmp_1='TemporĂ€ra filer i ' bb_burning_tmp_1b='borttagna...' bb_burning_tmp_2='ej borttagna...' bb_burning_audio_1='hittade' bb_burning_audio_2='Inga ljudfiler i' bb_burning_audio_3='AnvĂ€nder inte normalisering...' bb_burning_finish_1='BrĂ€nning avslutad.' bb_burning_finish_2='BrĂ€nning misslyckades.' bb_burning_finish_3='Fil(er) lĂ€nkade/kopierade till' bb_burning_error='Inga filer i ' bb_burning_iso_1='Ingen ISO-fil i' bb_burning_data_1='Försöker skapa en ISO-fil' bb_burning_data_label='CD-etikett: ' bb_burning_data_2='Fel: Kunde inte skapa ISO-fil.' bb_burning_data_3='Du kanske inte har skrivrĂ€ttigheter?' bb_burning_fifo_1='Inga Wav-filer i' bb_burning_fifo_2='Kommer att brĂ€nna' bb_burning_fifo_2b='spĂ„r!' bb_burning_fifo3='Rensar oanvĂ€nda fifos' bb_burning_dvd_1='Är detta den första sessionen pĂ„ denna DVD?' bb_burning_dvd_2='(Ange 'no' om du vill sammanfoga en ny session till' bb_burning_dvd_3='en redan pĂ„börjad DVD. För att avbryta' bb_burning_dvd_4='tryck [ENTER] utan att skriva nĂ„gonting)' bb_burning_dvd_5='(yes/no): ' # Local Variables: ** # mode:shell-script ** # End: **bashburn-3.0.1/lang/Swedish/check_path.lang000066400000000000000000000010461153706571400206140ustar00rootroot00000000000000# check_path.lang - Swedish language bb_cp_1='Program hittat' bb_cp_2='i' bb_cp_3='Program EJ HITTAT!' bb_cp_4='Installera det, annars kommer inte alla funktioner att fungera.' bb_cp_5='Undersöker sökvĂ€gar...' bb_cp_6=' BrĂ€nningsverktyg' bb_cp_7=' Kopierare' bb_cp_8=' Kodare och Dekodare' bb_cp_9=' Blandat' bb_cp_10='OBS: Installera de program som ej hittades,' bb_cp_11='annars kommer BashBurn kanske inte fungera som tĂ€nkt.' bb_cp_12='Tryck [ENTER] för att Ă„tergĂ„ till huvudmenyn.' # Local Variables: ** # mode:shell-script ** # End: **bashburn-3.0.1/lang/Swedish/commonfunctions.lang000066400000000000000000000020601153706571400217410ustar00rootroot00000000000000# commonfunctions.lang - Swedish language file bb_cf_text1='Det verkar som om CDn redan Ă€r brĂ€nnd. Vill du rensa den?' bb_cf_text2='Svara bara 'yes' om mediumet Ă€r omskrivbart. Ange' bb_cf_text3="'abort' om du vill avbryta och Ă„tergĂ„ till menyn." bb_cf_text4='Avbryter...' bb_cf_text5='Försöker brĂ€nna utan att rensa CDn. Detta kommer förmodligen att misslyckas.' bb_cf_text6='Rensning misslyckades. CD-brĂ€nning avbruten.' bb_cdrw_blank1='Formatterar CD...' bb_cdrw_blank2='CDRW formatterad' bb_cdrw_blank3='Vanlig formattering misslyckades. Försöker tvingad...' bb_cdrw_blank4='Tvingad formattering lyckades.' bb_cdrw_blank5='Formattering misslyckades. Du borde byta ut denna CD.' bb_cdrw_blank6='CD/DVD verkar vara oanvĂ€nd (Eller ingen CD i brĂ€nnaren), formatterar inte...' bb_dvd_blank1='Snabb eller total formattering?' bb_dvd_blank2='Ange yes för snabb, ' bb_dvd_blank3='eller no för total formattering.' bb_dvd_blank4='Tryck [ENTER] utan att skriva nĂ„got' bb_dvd_blank5='För att avbryta.' # Local Variables: ** # mode:shell-script ** # End: **bashburn-3.0.1/lang/Swedish/configure.lang000066400000000000000000000211401153706571400205010ustar00rootroot00000000000000# configure.lang - Swedish language # Nick - this needs checking by a native speaker bb_conf_menu_writer=CD-brĂ€nnare bb_conf_menu_cddev='CD-lĂ€sarens enhetsfil' bb_conf_menu_cdmnt='CD-lĂ€sarens monteringspunkt' bb_conf_menu_speed=Hastighet bb_conf_menu_blank=Rensningstyp bb_conf_menu_numdev='Antal enheter' bb_conf_menu_root=Rotkatalog bb_conf_menu_burn=Datakatalog bb_conf_menu_label=CD-etikett bb_conf_menu_auth=Skapare bb_conf_menu_desc=Beskrivning bb_conf_menu_norm=Normalisera bb_conf_menu_dropt=BrĂ€nnarval bb_conf_menu_fifo=FIFO-katalog bb_conf_menu_deltmp='Radera temp efter brĂ€nning' bb_conf_menu_ob='TillĂ„t overburn' bb_conf_menu_bitrate='StĂ€ll in bitrate' bb_conf_menu_lang=SprĂ„k bb_conf_menu_dtao=DAO/TAO bb_conf_menu_gap='Paus mellan spĂ„r' bb_conf_menu_adv=Avancerat bb_conf_menu_apply='Spara Ă€ndringar' bb_conf_menu_default=ÅterstĂ€ll bb_conf_menu_revert='Ångra Ă€ndringar' bb_conf_menu_back=Tillbaka bb_conf_menu_entry='Ditt val?' bb_conf_action_desc=Val bb_conf_menu_toptext1=InstĂ€llning bb_conf_menu_toptext2='Nuvarande instĂ€llning' bb_conf_default_is='StandardvĂ€rdet Ă€r' bb_conf_cancel_quote='För att avbryta, tryck bara [ENTER].' bb_conf_ch_writer=\ "BrĂ€nnarenheten ska anges som ${BBOPTIONCOLOR}0,0,0${BBCOLOROFF} för SCSI eller ${BBOPTIONCOLOR}/dev/hdX${BBCOLOROFF} för IDE-brĂ€nnare (DĂ€r X Ă€r en bokstav). För automatisk sökning, skriv auto. ${bb_conf_cancel_quote} Nuvarande instĂ€llning Ă€r: ${BBOPTIONCOLOR}${BBCDWRITER}${BBCOLOROFF}, och nedan finns en lista pĂ„ möjliga brĂ€nnare i ditt system (Enligt /etc/fstab)." bb_conf_ch_cddev="Enhetsfilen för din lĂ€sare Ă€r vanligtvis nĂ„got liknande ${BBOPTIONCOLOR}/dev/cdrom${BBCOLOROFF} eller ${BBOPTIONCOLOR}/dev/dvd${BBCOLOROFF}. Nuvarande instĂ€llning Ă€r: ${BBOPTIONCOLOR}${BBCDROM}${BBCOLOROFF}, och nedan Ă€r en lista med möjliga lĂ€sare i ditt system (Enligt /etc/fstab). ${bb_conf_cancel_quote}" bb_conf_ch_cdmnt="Monteringspunkten för din lĂ€sare Ă€r vanligtvis nĂ„got liknande ${BBOPTIONCOLOR}/mnt/cdrom${BBCOLOROFF} eller ${BBOPTIONCOLOR}/mnt/dvd${BBCOLOROFF}. Nuvarande instĂ€llning Ă€r: ${BBOPTIONCOLOR}${BBCDMNT}${BBCOLOROFF}, och nedan Ă€r en lista pĂ„ möjliga lĂ€sare i ditt system (Enligt /etc/fstab). ${bb_conf_cancel_quote}" bb_conf_ch_speed="Om du inte har problem med att brĂ€nna skivor borde du lĂ€mna detta val som ${BBOPTIONCOLOR}-1${BBCOLOROFF} och anvĂ€nda din enhets standardvĂ€rde. De flesta brĂ€nnare brĂ€nner i maxhastighet som standard. Nuvarande instĂ€llning Ă€r: ${BBOPTIONCOLOR}${BBSPEED}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_blanking=\ "HĂ€r stĂ€ller du in hur en skiva ska formatteras. StandardvĂ€rdet Ă€r ${BBOPTIONCOLOR}fast${BBCOLOROFF}. Detta formatterar hela skivan och kan dĂ€rför ta en stund. Nuvarande instĂ€llning Ă€r: ${BBOPTIONCOLOR}${BBBLANKING}${BBCOLOROFF}. Se 'man cdrecord' eller 'man wodim' för andra alternativ. ${bb_conf_cancel_quote}" bb_conf_ch_numdev=\ "HĂ€r anger du antal skivenheter i ditt system. Om du anvĂ€nder en enhet som bĂ„da lĂ€sare och skrivare, skriv ${BBOPTIONCOLOR}1${BBCOLOROFF}, annars skriver du ${BBOPTIONCOLOR}2${BBCOLOROFF}. Nuvarande instĂ€llning Ă€r: ${BBOPTIONCOLOR}${BBNUMDEV}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_root="Detta val anger var BashBurns skript finns. Det finns vanligtvis ingen som helst anledning att Ă€ndra detta vĂ€rde, gör sĂ„ bara om du verkligen vet vad du hĂ„ller pĂ„ med. Nuvarande instĂ€llning Ă€r: ${BBOPTIONCOLOR}${BBROOTDIR}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_burndir=\ "Detta val anger var BashBurn förvĂ€ntar sig data att brĂ€nna ska finnas. Var sĂ€ker pĂ„ att du har skrivrĂ€ttigheter till detta plats. Nuvarande instĂ€llning Ă€r: ${BBOPTIONCOLOR}${BBBURNDIR}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_label="Detta val anger vad skivan som ska brĂ€nnas ska kallas. Det kan vara en strĂ€ng text upp till 32 tecken lĂ„ng sĂ„ som ${BBOPTIONCOLOR}Mina Bilder${BBCOLOROFF} eller ${BBOPTIONCOLOR}Semesterfilmer${BBCOLOROFF}. Om du vill bli omfrĂ„gad varje gĂ„ng du brĂ€nner en skiva, ange ${BBOPTIONCOLOR}${BBCOLOROFF} som beskrivning. Nuvarande instĂ€llning Ă€r: ${BBOPTIONCOLOR}${BBLABEL}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_author="Detta val anger skivberedaren, vanligtvis med e-mail och telefon. Det finns plats för 128 tecken. Nuvarande instĂ€llning Ă€r: ${BBOPTIONCOLOR}${BBAUTHOR}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_desc=\ "Detta val anger vad som ska brĂ€nnas till skivan. Det finns plats för 128 tecken. Nuvarande instĂ€llning Ă€r: ${BBOPTIONCOLOR}${BBDESCRIPTION}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_norm=\ "Normalisering innebĂ€r att ljudnivĂ„n pĂ„ musikfilen balanseras till en jĂ€mn nivĂ„. Detta Ă€r anvĂ€ndbart t.ex. nĂ€r man skapar en mix-CD dĂ€r olika musikfiler vanligvis har olika hög volym. Detta val slĂ„r pĂ„ ${BBHEADCOLOR}(yes)${BBCOLOROFF} eller slĂ„r av ${BBTABLECOLOR}(no)${BBCOLOROFF} denna funktionalitet. Nuvarande val Ă€r: ${BBOPTIONCOLOR}${BBNORMALIZE}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_dropts=\ "Detta val anger sĂ€rskilda brĂ€nnarinstĂ€llningar som anvĂ€nds nĂ€r en skiva brĂ€nns. Ett exempel Ă€r ${BBOPTIONCOLOR}burnfree${BBCOLOROFF} för att undvika buffer underruns (BrĂ€nnaren fĂ„r slut pĂ„ data att brĂ€nna och brĂ€nningen avbryts). Du kan ange flera olika val och separera dessa med ett komma. Denna instĂ€llning Ă€r frivillig och kan hoppas över. Nuvarande instĂ€llning Ă€r: ${BBOPTIONCOLOR}${BBDRIVEROPT}${BBCOLOROFF}. Se 'man cdrecord' eller 'man wodim' för fler instĂ€llningar. ${bb_conf_cancel_quote}" bb_conf_ch_fifo=\ "Detta val anger sökvĂ€gen till FIFO-katalogen som anvĂ€nds för strömmad musikbrĂ€nning. Vanligtvis finns inget skĂ€l att Ă€ndra pĂ„ detta vĂ€rde. StandardvĂ€rden bör fungera bra i det flesta lĂ€gen. Nuvarande instĂ€llning Ă€r: ${BBOPTIONCOLOR}${BBFIFODIR}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_tempdel=\ "Om du vill att BashBurn ska ta bort filer i ${BBBURNDIR} efter en skiva har brĂ€nnts, ange ${BBHEADCOLOR}yes${BBCOLOROFF} hĂ€r. Om inte ange ${BBTABLECOLOR}no${BBCOLOROFF} för att lĂ„ta filer vara kvar. Nuvarande instĂ€llning Ă€r: ${BBOPTIONCOLOR}${BBDELTEMPBURN}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_ob="Overburn Ă€r att försöka brĂ€nna mer till en skiva Ă€n den Ă€r gjord för. Detta fungerar inte alltid och nĂ€r det fungerar kommer bara ett fĂ„tal MB extra att fĂ„ plats. Din brĂ€nnare mĂ„ste stödja overburn och det det kan inte garanteras att skivan kommer vara lĂ€sbar i alla lĂ€sare. Detta val aktiverar ${BBHEADCOLOR}(yes)${BBCOLOROFF} eller deaktiverar ${BBTABLECOLOR}(no)${BBCOLOROFF} denna funktion. Nuvarande instĂ€llning Ă€r: ${BBOPTIONCOLOR}${BBOVERBURN}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_bitrate=\ "Bitrate Ă€r vad som spelar mest roll för kvalitet pĂ„ ljudfiler. Högre bitrate innebĂ€r bĂ€ttre kvalitet, men ocksĂ„ större filer. Detta val anger vilken bitrate som ska anvĂ€ndas vid kodning av musikfiler. Enheten Ă€r i kbit och ska anges i multiplar av 32 (32, 64, 96 osv.). Nuvarande instĂ€llning Ă€r: ${BBOPTIONCOLOR}${BBBITRATE}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_lang=\ "Detta val stĂ€ller in vilket sprĂ„k BashBurn ska anvĂ€nda. Nuvarande instĂ€llning Ă€r: ${BBOPTIONCOLOR}${BBLANG}${BBCOLOROFF}, och nedan finns en lista över tillgĂ€ngliga sprĂ„k. ${bb_conf_cancel_quote}" bb_conf_ch_dtao="Detta val sĂ€ger Ă„t BashBurn att brĂ€nna i SAO (Session at Once) eller TAO (Track at Once). StandardvĂ€rdet TAO ${BBOPTIONCOLOR}(-tao)${BBCOLOROFF} Ă€r vanligtvis ok, men i vissa fall mĂ„ste SAO ${BBOPTIONCOLOR}(-sao)${BBCOLOROFF} anvĂ€ndas. Nuvarande instĂ€llning Ă€r: ${BBOPTIONCOLOR}${BBDTAO}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_pad=\ "Detta val sĂ€ger Ă„t BashBurn att anvĂ€nda ${BBHEADCOLOR}(-pad)${BBCOLOROFF} eller inte anvĂ€nda ${BBTABLECOLOR}(-nopad)${BBCOLOROFF} mellanrum mellan ljudspĂ„r. Om du vill brĂ€nna en musik-CD utan mellanrum mellan spĂ„r (T.ex. en livekonsert), deaktivera detta val. Nuvarande instĂ€llning Ă€r: ${BBOPTIONCOLOR}${BBPADDING}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_apply_1='Ändringar sparade!' bb_conf_apply_2='Kunde inte skriva till' bb_conf_apply_3='Du kanske mĂ„ste Ă€ndra rĂ€ttigheter' bb_conf_def_1='StandardvĂ€rden Ă„terstĂ€llda' bb_conf_def_2='(BBROOTDIR har *inget* standardvĂ€rde. Du mĂ„ste Ă€ndra det!)' bb_conf_xit_1='Tillbaka till huvudmenyn' bb_conf_xit_2=\ "Du valde SPARA ÄNDRINGAR innan du avslutade eller hur?\n Om inte, vĂ€lj 'n' för att gĂ„ tillbaka och göra sĂ„; du kan ocksĂ„ vĂ€lja 'y' för att avbryta och lĂ€mna denna dialogruta, ${BBHEADCOLOR}MEN${BBCOLOROFF} om du gjort Ă€ndringar har de inte sparats.\n" bb_conf_err='Var vĂ€nlig mata in ' # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/lang/Swedish/convert_flacs.lang000066400000000000000000000002431153706571400213510ustar00rootroot00000000000000# convert_flacs.lang - Swedish version bb_conv_flac_1='FLAC-fil(er) konverterad(e) och redo att brĂ€nnas.' # Local Variables: ** # mode:shell-script ** # End: **bashburn-3.0.1/lang/Swedish/convert_mp3s.lang000066400000000000000000000003131153706571400211410ustar00rootroot00000000000000# convert_mp3s.lang - Swedish language bb_conv_mp3_1='konverterad(e)' bb_conv_mp3_2='och redo att brĂ€nnas' bb_conv_mp3_3='kunde inte konverteras' # Local Variables: ** # mode:shell-script ** # End: **bashburn-3.0.1/lang/Swedish/convert_oggs.lang000066400000000000000000000002321153706571400212160ustar00rootroot00000000000000# convert.lang - Swedish language bb_conv_ogg='Ogg-fil(er) konverterad(e) och redo att brĂ€nnas.' # Local Variables: ** # mode:shell-script ** # End: **bashburn-3.0.1/lang/Swedish/data_menu.lang000066400000000000000000000016621153706571400204640ustar00rootroot00000000000000# data_menu.lang - Swedish language bb_dm_newcd='Mata in en tom CD och tryck [ENTER] för att fortsĂ€tta.' bb_dm_wait='Tryck [ENTER] för att Ă„tergĂ„.' bb_dm_menu_title='Datameny' bb_dm_menu_1='BrĂ€nn Data' bb_dm_menu_2='Kopiera Data-CD (CD till CD)' bb_dm_menu_3='BrĂ€nn Data-DVD' bb_dm_menu_4='Formattera CDRW' bb_dm_menu_5='Formattera DVD' bb_dm_menu_0='Tillbaka' bb_dm_menu_entry='Ditt val? ' bb_dm_ch2_1=' ej monterad! Montera den först...' bb_dm_ch2_2='En ISO existerar redan i ' bb_dm_ch2_3=' Radera eller flytta den' bb_dm_ch2_4='innan du försöker skapa en ny.' bb_dm_ch2_5='CD kopierad' bb_dm_ch2_6='Startar brĂ€nning' bb_dm_ch0='ÅtergĂ„r till meny...' bb_dm_error='Var vĂ€nlig ange ' bb_dm_cdcopy='Kopierar CD-innehĂ„ll till ' bb_dm_cdcopy_err1='Fel i Överföring. Är du sĂ€ker att du har rĂ€tt CD i enheten?' bb_dm_cdcopy_err2='(Undersök felmeddelanden för tips)' # Local Variables: ** # mode:shell-script ** # End: **bashburn-3.0.1/lang/Swedish/datadefine.lang000066400000000000000000000021701153706571400206060ustar00rootroot00000000000000# datadefine.lang - Swedish language bb_mnt_menu_title='Definiera data' bb_wfe_1='Tryck [ENTER] för att Ă„tergĂ„.' bb_dc_menu_1=' Kopiera/LĂ€nka data till ' bb_dc_menu_2=' Visa data i ' bb_dc_menu_3=' Radera data i ' bb_dc_menu_0=' Tillbaka' bb_dc_explain1='Du Ă€r nu placerad i ett skal. Din nuvarande position' bb_dc_explain2a='Ă€r i ' bb_dc_explain2b='-katalogen. För att BashBurn ska kunna' bb_dc_explain3='brĂ€nna nĂ„gonting mĂ„ste du kopiera eller lĂ€nka' bb_dc_explain4="din data till denna katalog. Du gör detta genom 'cp' eller 'ln'" bb_dc_explain5='kommandona. T.ex. för att lĂ€nka din data hit anger du:' bb_dc_explain6=" 'ln -s ./' (Utan '')" bb_dc_explain7="eller för att kopiera ersĂ€tter du 'ln -s' med 'cp'." bb_dc_explain8='NĂ€r du Ă€r klar skriver du exit för att Ă„tergĂ„ till menyn.' bb_dc_ch3_1="Vill du verkligen ta bort dessa filer? <'${BBHEADCOLOR}y${BBCOLOROFF}'/'${BBTABLECOLOR}n${BBCOLOROFF}'>: " bb_dc_ch3_2='Filer borttagna.' bb_dc_ch3_3='Filer ej borttagna.' bb_dc_ch3_4='Inga filer i ' bb_dc_menu_err='Fel. Var vĂ€nlig ange' # Local Variables: ** # mode:shell-script ** # End: **bashburn-3.0.1/lang/Swedish/iso_menu.lang000066400000000000000000000020201153706571400203320ustar00rootroot00000000000000# iso_menu.lang - Swedish language bb_im_wait_1='Tryck [ENTER] för att Ă„tergĂ„.' bb_im_menu_title='ISO-Meny' bb_im_menu_1='BrĂ€nn ISO' bb_im_menu_2='Skapa ISO av filer i ' bb_im_menu_3='Skapa ISO av CD' bb_im_menu_4='BrĂ€nn DVD-avbildning' bb_im_menu_5='Montera ISO' bb_im_menu_0='Tillbaka' bb_im_menu_entry='Ditt val? ' bb_im_error_files='Inga filer i ' bb_im_ch2_1='EN ISO existerar i ' bb_im_ch2_2=' Radera eller flytta den' bb_im_ch2_3='innan du försöker skapa en ny.' bb_im_ch2_4='Försöker skapa ISO-fil' bb_im_ch2_4b='Etikett pĂ„ CDn: ' bb_im_ch2_5='ISO skapad' bb_im_ch2_6='Fel: Kunde inte skapa ISO-fil!' bb_im_ch2_7='Du har kanske inte skrivrĂ€ttigheter?' bb_im_ch3_1=' ej monterad! Gör det först...' bb_im_ch3_2='Skapar ISO av CD i ' bb_im_ch5_1='Ange sökvĂ€g till avbildning som ska monteras:' bb_im_ch5_2='(Eller tryck enter för att avbryta)' bb_im_ch5_3='Inget namn angett, avbryter.' bb_im_ch0='ÅtergĂ„r till meny...' bb_im_error='Var vĂ€nlig ange ' # Local Variables: ** # mode:shell-script ** # End: **bashburn-3.0.1/lang/Swedish/loopback.lang000066400000000000000000000030451153706571400203160ustar00rootroot00000000000000# loopback.lang - Swedish language bb_lb_noread='kunde inte lĂ€sas in.' bb_lb_no_lb_dir='Ingen loopback-katalog, skapar...' bb_lb_dir_c='Katalog skapad.' bb_lb_dir_cf='Katalog kunde inte skapas, avbryter.' bb_lb_no_im_dir='Ingen avbildningskatalog, skapar...' bb_lb_no_temp_dir='Ingen temporĂ€r katalog, skapar...' bb_lb_sudo1='Du mĂ„ste tillhöra gruppen sudoers för att kunna montera avbildningen.' bb_lb_sudo2='Ange ditt lösenord nedan, om operationen misslyckas kanske du inte tillhör' bb_lb_sudo3='korrekt grupp. I sĂ„dant fall, justera detta och försök igen.' bb_lb_sudo4='Du mĂ„ste ocksĂ„ ha stöd för loopback-enheter' bb_lb_sudo5='inkompilerat i kĂ€rnan eller som modul,' bb_lb_sudo6='annars kommer nĂ€sta steg att misslyckas.' bb_lb_mount='Avbildning monterad.' bb_lb_mount_fail='Montering misslyckades, avbryter.' bb_lb_cp_cont='Kopierar innehĂ„ll, vĂ€nta...' bb_lb_in_file='Du Ă€r nu i avbildningens filsystem. Ändra vad du vill, skriv 'exit' för att Ă„tergĂ„ till menyn.' bb_lb_change1='Ändrade du nĂ„gonting? (I sĂ„dant fall mĂ„ste en ny avbildning' bb_lb_change2='skapas vilket kan ta en stund) (y/n)' bb_lb_change3='Data finns redan i' bb_lb_change4='den kommer raderas om du fortsĂ€tter.' bb_lb_change5='Vill du fortsĂ€tta? (y/n)' bb_lb_change6='Skapar ny avbildning, vĂ€nta...' bb_lb_change7='Ny avbildning skapad i' bb_lb_change8='Avbryter, tar ej bort data. Ändringar till avbildningen kastas bort.' bb_lb_change9='Inga Ă€ndringar gjorda, hoppas över skapande av ny avbildning.' # Local Variables: ** # mode:shell-script ** # End: **bashburn-3.0.1/lang/Swedish/mount.lang000066400000000000000000000032161153706571400176660ustar00rootroot00000000000000# mount.lang - Swedish language bb_mnt_enter_1='Tryck [ENTER] för att Ă„tergĂ„' bb_mnt_menu_title='Montera/Avmontera enhet' bb_mnt_menu_1='Montera enhet' bb_mnt_menu_2='Avmontera enhet' bb_mnt_menu_3='Mata ut enhet' bb_mnt_menu_0='Tillbaka' bb_mnt_menu_input='Ditt val? ' bb_mnt_ch1_1='Vilken enhet vill du montera? Ange den som /mnt/cdrom' bb_mnt_ch1_2='(Du mĂ„ste ange monteringspunkten, inte enhetsfilen. T.ex.' bb_mnt_ch1_3='/mnt/cdrom fungerar, men /dev/cdrom gör inte det. Bara tryck [ENTER]' bb_mnt_ch1_4='utan att ange nĂ„gonting för att avbryta.' bb_mnt_ch1_5='Montering avbruten!' bb_mnt_ch1_6='Monterar ' bb_mnt_ch1_7=' monterad.' bb_mnt_ch1_8='Montering misslyckades. Kanske har du inte rĂ€ttighet att göra detta,' bb_mnt_ch1_9='enheten Ă€r redan monterad, det finns inget media i enheten' bb_mnt_ch1_10='eller du stavade sökvĂ€gen till enheten fel?' bb_mnt_ch2_1='Det verkar som om det inte finns nĂ„gra monterade enheter.' bb_mnt_ch2_2='Vilken enhet vill du avmontera? Ange den som /mnt/cdrom' bb_mnt_ch2_3=' avmonterad.' bb_mnt_ch2_4='Avmontering misslyckades. Du kanske inte har rĂ€ttigheter att göra detta,' bb_mnt_ch2_5='eller du angav fel sökvĂ€g till enheten?' bb_mnt_ch3_1='Vilken enhet vill du mata ut? Ange den som /mnt/cdrom' bb_mnt_ch3_1b='eller tryck [ENTER] utan att mata in nĂ„got för att avbryta.' bb_mnt_ch3_1c='Avbruten!' bb_mnt_ch3_2=' utmatad. (Om du inte mĂ€rkte det ;-) )' bb_mnt_ch3_3='Utmatning misslyckades. Kanske har du inte rĂ€ttigheter att göra detta,' bb_mnt_ch3_4='eller angav du fel sökvĂ€g till enheten?' bb_mnt_ch0='Tillbaka' bb_mnt_error='Var vĂ€nlig ange ' # Local Variables: ** # mode:shell-script ** # End: **bashburn-3.0.1/lang/Swedish/multi.lang000066400000000000000000000033561153706571400176630ustar00rootroot00000000000000# multi.lang - Swedish language bb_multi_enter_1='Tryck [ENTER] för att Ă„tergĂ„.' bb_multi_enter_2='Tryck [ENTER] för att fortsĂ€tta.' bb_multi_burn_1='ISO hittad...' bb_multi_burn_2=' om detta INTE Ă€r den första brĂ€nningen till en multisession-CD' bb_multi_burn_3=' sĂ„ *MÅSTE* denna ISO blivit skapad med tidigare sessioners parametrar.' bb_multi_burn_4=' Varför: Annars blir denna session osynlig och oanvĂ€ndbar.' bb_multi_burn_5='CD brĂ€nd...' bb_multi_burn_6=' Ingen ISO hittad, försöker skapa en...' bb_multi_burn_7='Hittade tidigare session med hjĂ€lp av -msinfo' bb_multi_burn_8='msinfo-info behövd för multisession Ă€r:' bb_multi_burn_9='om vinkelparenteser' bb_multi_burn_9b='har tvĂ„ nummer med ett komma - ALLT ÄR OK!' bb_multi_burn_10="ett felmeddelande som slutar med: \"cdrecord: Cannot read session offset\" betyder en blank CD" bb_multi_burn_11="ett felmeddelande som slutar med: \"cdrecord: No disk / Wrong disk!\" betyder ingen skiva i enheten" bb_multi_burn_12='hittade godkĂ€nd multisessiondata, lĂ€gger till argument:' bb_multi_burn_13='Första brĂ€nning till en multisession-CD behöver ingen tidigare sessionsdata' bb_multi_burn_14='Skapar ISO om möjligt...' bb_multi_burn_14b='CD-etikett: ' bb_multi_burn_15='ISO skapad' bb_multi_burn_16='Fel: Kunde inte skapa ISO-fil.' bb_multi_burn_17='Kanske...inga filer i' bb_multi_burn_18='Kanske har du inte skrivrĂ€ttigheter?' bb_multi_menu_title='Multisession-CD' bb_multi_menu_1='Första brĂ€nning till en Multisession-CD' bb_multi_menu_2='FortsĂ€tt Multisession-CD' bb_multi_menu_3='Slutför Multisession-CD' bb_multi_menu_0='Tillbaka' bb_multi_menu_entry='Ditt val ' bb_multi_ch0='Tillbaka...' bb_multi_err='Var vĂ€nlig ange ' # Local Variables: ** # mode:shell-script ** # End: **bashburn-3.0.1/menus/000077500000000000000000000000001153706571400144575ustar00rootroot00000000000000bashburn-3.0.1/menus/advanced.sh000077500000000000000000000026221153706571400165650ustar00rootroot00000000000000typeset -a configure_adv_changes # Global used by advanced and change_option. config_adv_apply() { pretty_top top_info_line get_new_settings && return conf_set_aval "${configure_adv_changes[@]}" config_adv_revert set_descriptors } config_adv_default() { pretty_top top_info_line get_really_sure && return configure_adv_changes=( \ 'BB_CDBURNCMD|cdrecord' \ 'BB_DVDBURNCMD|growisofs' \ 'BB_ISOCMD|mkisofs' \ 'BB_DVDBLANK|dvd+rw-format' \ 'BB_CDIMAGECMD|cdrdao' \ 'BB_CDAUDIORIP|cdparanoia' \ 'BB_READCD|mkisofs' \ 'BB_READ_OPTS|-r -R -J -l --allow-leading-dots' \ 'BB_MP3ENC|lame' \ 'BB_MP3DEC|mpg123' \ 'BB_OGGENC|oggenc' \ 'BB_OGGDEC|oggdec' \ 'BB_FLACCMD|flac' \ 'BB_EJECT|eject' \ 'BB_NORMCMD|normalize' \ ) conf_set_aval "${configure_adv_changes[@]}" config_adv_revert } config_adv_revert() { configure_adv_changes=() BB_ADVANCED_CONFIG_MODIFIED=0 } advanced() { # Advanced menu # Swap out the variables that track if something is modified. CFG_CHANGES=configure_adv_changes BB_ADVANCED_CONFIG_MODIFIED=0 BB_CONFIG_VAR=BB_ADVANCED_CONFIG_MODIFIED bbconfmenu \ advancedmenu \ bb_adv_menutitle \ bb_conf_menu_toptext2 \ config_adv_apply \ config_adv_default \ config_adv_revert \ 'get_confirm || break' return 0 } bashburn-3.0.1/menus/audio_menu.sh000077500000000000000000000004731153706571400171470ustar00rootroot00000000000000convert_and_burn_from_files() { # Burn Audio from music files convert_if_exist '*.mp3' convert_if_exist '*.ogg' convert_if_exist '*.flac' burning --audio } burn_m3u_playlist() { m3u_read convert_and_burn_from_files } audio_menu() { bbmenu bb_am_menu_title audiomenu } # audio_menu bashburn-3.0.1/menus/bbmenu.sh000066400000000000000000000275571153706571400163030ustar00rootroot00000000000000# Welcome to bbmenu.sh. This file defines two functions: bbmenu and bbconfmenu. # bbmenu is used to define a common menu system for bashburn. # bbconfmenu is used to define both the regular Configure and # the Advanced Configure menu. They are fundamentally different because bbmenu # creates menus that are composed of an item and a function that gets executed # if it is selected. # bbconfmenu displays menus that show a configuration parameter and # a current value. If an item is selected then a third param explains what # config param is. A fourth parameter is allowed to be # executed which can help the user to understand what values are best selected. # # One of the arguments to these functions has to be the name of a menu # which must be a global-scope array. # In the case of bbmenu the menu definition array must be a 2-tuple of the name # to be displayed for the menu item, and the function to be invoked if the item # is selected. # ALL ITEMS ARE SEPERATED BY AMPERSAND. # In the case of bbconfmenu, the array elements are a 4-tuple, composed of: # * The name of the menuitem # * The name of the configuration parameter to be affected. # * The prompt to be displayed if the user selects a parameter to be modified. # * An optional string to be eval'd. # # A complexity that is part of these menus is that the language that # gets displays is subject to change if the user tries to reconfigure BBLANG. # This impacts not only the configure menu that the change occurs from, but # also the main menu that the configure menu is called from. So the goal is # that the Configure menu has to display things in the newly selected language # and its caller has to change the language that it was running in after # the Configure menu has returned. print_hdr() { # print a uniform header. typeset title="$1" clear # echo -e "${BBTABLECOLOR}${BBDECOLINE} ${BBTABLECOLOR}|${BBHEADCOLOR} ${BBVERSION} ${BBTABLECOLOR}| ${BBTABLECOLOR}${BBDECOLINE} ${BBTABLECOLOR}| ${BBTABLECOLOR}|-(${BBSUBCOLOR}$title${BBTABLECOLOR})" } bbmenu() { # This is the common memu used by bb. # THERE BE DRAGONS HERE. Test well if you modify it. # BE CAREFUL with your quoting. If you think you're right then test # it and check the bash man page again. typeset old_IFS="$IFS" # Save IFS. Which one are we saving? # Wrong answer! We're saving the global copy. typeset IFS="$IFS" # NOW we're creating a local copy and # initializing it with the global value. typeset titlename="$1" # Pull off the title from the arglist. typeset menuname="$2" shift typeset -a item # Convenience variables after parse. typeset -a action typeset -i ii=0 # Loop index typeset jj typeset -i size # Nr of menu items typeset -a descriptors # We need to save the arglist because set will # override them. typeset -r protofmt='%b|%b %2d) %s%b' typeset nl # Might be a newline or it might not... # The last %b is either "\n" or "" typeset chselection # Set by read typeset selection # User's real choice. typeset prompt typeset -i nogood=0 set_descriptors() { size=$(eval "echo \"\${#$menuname[@]}\"" ) for (( ii=0; ii= size )) && nl= || nl="\n" printf "$protofmt" ${BBTABLECOLOR} ${BBMAINCOLOR} \ $ii "${item[ii]}" "$nl" done # Why are we doing this instead of using the prompt functionality # of read? Because read won't display escape sequences. # It only knows how many characters it printed, not how many # were printable. prompt=$(printf "\n%b| %b$bb_menu_input[0-$((size-1))] |>%b " \ ${BBTABLECOLOR} ${BBINPUTCOLOR} ${BBMAINCOLOR}) read -e -p "$prompt" chselection # Get the user's choice. # look up which action is associated with the choice. # if just enter is pressed, ignore it... # (there must be a better way to do this). nogood=0 if [[ -n "$chselection" ]] then # Assign chselection to selection. But selection is an integer # variable and chselection is not. If chselection is not numeric # then the value of selection will be zero. # SO, to see if the luser boned us, we assign and see if selection # if 0 and chselection is not. # Then after that we do the standard test to see if the number # is in bounds. # Remove non-DIGITS from real selection selection="${chselection//[^0-9]/}" if [[ "$selection" != "$chselection" ]] then nogood=1 elif (( selection >= 0 && selection < size )) then eval ${action[selection]} # Do it baby. else nogood=1 fi if (( nogood == 1 )) then top_info_line message "$bb_menu_error_range ${BBHEADCOLOR}$bb_exit_err [0-$(( size - 1 ))]${BBCOLOROFF}\n" fi fi done } # bbmenu bbconfmenu() { # If you thought the previous code was tricky then don't even look at this. # It'll make your brain explode. typeset old_IFS="$IFS" # Save IFS. Which one are we saving? # Wrong answer! We're saving the global copy. typeset IFS="$IFS" # NOW we're creating a local copy and # initializing it with the global value. # 1st 4 args are the actions to be taken for the four actions at the end. # (whatever they are ;-) typeset menuname="${1}" # Name of the array that's passed in. typeset toptext1name=$2 typeset toptext2name=$3 typeset size1action="$4" typeset size2action="$5" typeset size3action="$6" typeset size4action="$7" typeset toptext1 typeset toptext2 shift 7 typeset -a descriptors # All the rest of the menu conf values. typeset -i size # The number of entries in descriptors typeset -i size1 # size + 1 typeset -i size2 typeset -i size3 typeset -a var # List of all of the config variables. typeset lvar # Basically it's var[i] with indirection # It's to solve a bash limitation with arrays. typeset lval # Same trick in a different context. typeset -a text # Array of variable descriptions. typeset -i jj=0 # Used to index into indirect of CFG_CHANGES typeset -i ii=0 # General array index typeset star # Set to either an asterick or null to # indicate that a value is modified. typeset dispval # If star is set that dispval will be displayed # instead of the actual value of the # config parameter. typeset changed_var # Name of the changed variable. typeset newval # New value to be applied to changed variable. typeset action # read var for user's choice. typeset -i act # interger version of action. typeset -a change_prompt # List of prompts on what the user # is selecting to change. typeset -a info_cmd # command to be executed (optional) for changing. typeset -ai strict_enum # Define if the user is allowed to specify # from a list of made up values. typeset -i cfgsize=0 # Size of the number of outstanding changes. typeset prompt # readline prompt string in living color. typeset -a menu_extras # Last *4* (ooops) entries. # I don't get why it can't be inited at decl. :-( typeset -a menu_extras_names # Now here's somthing you don't see everyday Bullwinkle. # What's that Rocky? # A function defined in a shell script that's nested! # You're right Rocky. But that'll never work. How can set_descriptors see # the variable menuname? # That's why it *does* work. Because it's nested. set_descriptors() { size=$(eval "echo \"\${#$menuname[@]}\"" ) for (( ii=0; ii %b " \ ${BBINPUTCOLOR} ${BBMAINCOLOR}) read -e -p "$prompt" action echo -e "${BBCOLOROFF}" # If the action is in range of the descriptor table then # we process it with change_option. act="${action//[^0-9]/}" if [[ "$action" != "$act" ]] then top_info_line message "$bb_menu_error_range ${BBHEADCOLOR}$bb_exit_err [0-$((size+3))]${BBCOLOROFF}\n" elif (( action < size )) then change_option \ "${var[act]}" \ "${change_prompt[act]}" \ "${info_cmd[act]}" \ ${strict_enum[act]} elif (( action < size + "${#menu_extras[@]}" )) then # Otherwise we have custom actions that were passed in. # NOTE: None of this works if the sizes are not declared int. size1=size+1 size2=size+2 size3=size+3 case $action in $size) eval $size1action ;; $size1) eval $size2action ;; $size2) eval $size3action ;; $size3) eval $size4action ;; esac else top_info_line message "$bb_menu_error_range ${BBHEADCOLOR}$bb_exit_err [0-$((size+3))]${BBCOLOROFF}\n" fi done } # bbmenuconf bashburn-3.0.1/menus/configure.sh000077500000000000000000000033571153706571400170070ustar00rootroot00000000000000# BB_CONFIG_MODIFIED is 0 if no configparams were modified and 1 if # any of them were. Once the config params are written out then it # gets reset back to 0 typeset -i BB_CONFIG_MODIFIED=0 typeset -i BB_ADVANCED_CONFIG_MODIFIED=0 # BB_CONFIG_VAR is equal to BB_CONFIG_MODIFIED (not $BB_CONFIG_MODIFIED) # unless we are in the advanced menu. Then it will be set # to BB_ADVANCED_CONFIG_MODIFIED. typeset BB_CONFIG_VAR typeset -a configure_changes # Global used by configure and change_option. config_apply() { pretty_top top_info_line get_new_settings && return conf_set_aval "${configure_changes[@]}" config_revert set_descriptors } config_default() { pretty_top top_info_line get_really_sure && return configure_changes=( \ 'BBISCONF|0' \ 'BBCDWRITER|' \ 'BBCDROM|' \ 'BBCDMNT|' \ 'BBSPEED|-1' \ 'BBBLANKING|fast' \ 'BBNUMDEV|1' \ 'BBBURNDIR|/tmp/burn' \ 'BBFIFODIR|/tmp' \ 'BBDESCRIPTION|Burnt with BashBurn' \ 'BBAUTHOR|' \ 'BBLABEL|BashBurn CD/DVD' \ 'BBNORMALIZE|no' \ 'BBDRIVEROPT|' \ 'BBDELTEMPBURN|no' \ 'BBOVERBURN|no' \ 'BBBITRATE|192' \ 'BBLANG|English' \ 'BBDTAO|-tao' \ 'BBPADDING|-pad' \ ) conf_set_aval "${configure_changes[@]}" config_revert # bb_parse_config } config_revert() { configure_changes=() BB_CONFIG_MODIFIED=0 } configure() { CFG_CHANGES=configure_changes BB_CONFIG_MODIFIED=0 BB_CONFIG_VAR=BB_CONFIG_MODIFIED bbconfmenu \ conf_menuitems \ bb_conf_menu_toptext1 \ bb_conf_menu_toptext2 \ config_apply \ config_default \ config_revert \ 'get_confirm || break' return 0 } bashburn-3.0.1/menus/data_menu.sh000077500000000000000000000002401153706571400167470ustar00rootroot00000000000000blank_CDROM() { if check_cd_status then blank_cd else message $bb_cdrw_blank6 fi } data_menu() { bbmenu bb_dm_menu_title datamenu } bashburn-3.0.1/menus/datadefine.sh000077500000000000000000000000751153706571400171040ustar00rootroot00000000000000datadefine() { bbmenu bb_mnt_menu_input datadefinemenu } bashburn-3.0.1/menus/iso_menu.sh000077500000000000000000000000631153706571400166330ustar00rootroot00000000000000iso_menu() { bbmenu bb_im_menu_title isomenu } bashburn-3.0.1/menus/mount.sh000077500000000000000000000001661153706571400161630ustar00rootroot00000000000000mount_func() { # FIXME: This function should go to the menu directory. bbmenu bb_mnt_menu_title mountmenu } bashburn-3.0.1/misc/000077500000000000000000000000001153706571400142635ustar00rootroot00000000000000bashburn-3.0.1/misc/check_path.sh000077500000000000000000000034621153706571400167200ustar00rootroot00000000000000typeset -i bb_not_found_apps # Must be at least file global scope. i_check_path() { typeset program typeset tmpfn=$1 shift # Function that check the paths of applications # used for BashBurn. for program in "$@" do if which ${program} > $tmpfn 2>&1 then echo -e \ "\t${program} ${BBSUBCOLOR} $bb_cp_1 ${BBCOLOROFF} $bb_cp_2 $(< $tmpfn)" else echo -e \ "\t${program} ${BBTABLECOLOR} $bb_cp_3 ${BBCOLOROFF} $bb_cp_4" bb_not_found_apps=1 # Flag an app is missing fi done } check_path() { # Some variables typeset -a BBBURNING typeset -a BBRIPPERS typeset -a BBXCODERS typeset -a BBMISC typeset tempfn=/tmp/bb_check_path.$$ BBBURNING=( \ ${BB_CDIMAGECMD} \ ${BB_CDBURNCMD} \ ${BB_ISOCMD} \ ${BB_DVDBURNCMD} \ ) BBRIPPERS=( ${BB_CDAUDIORIP} ${BB_READCD} ) BBXCODERS=( ${BB_MP3ENC} ${BB_OGGENC} ${BB_OGGDEC} ${BB_FLACCMD} ) BBMISC=( ${BB_EJECT} ${BB_NORMCMD} ${BB_MP3DEC} sudo ) bb_not_found_apps=0 pretty_top dashed_line echo -e "${BBTABLECOLOR}${BBSUBCOLOR}$bb_cp_5" top_info_line echo -e "${BBTABLECOLOR}|>${BBMAINCOLOR}$bb_cp_6${BBCOLOROFF}" i_check_path $tempfn "${BBBURNING[@]}" echo -e "${BBTABLECOLOR}|>${BBMAINCOLOR}$bb_cp_7${BBCOLOROFF}" i_check_path $tempfn "${BBRIPPERS[@]}" echo -e "${BBTABLECOLOR}|>${BBMAINCOLOR}$bb_cp_8${BBCOLOROFF}" i_check_path $tempfn "${BBXCODERS[@]}" echo -e "${BBTABLECOLOR}|>${BBMAINCOLOR}$bb_cp_9${BBCOLOROFF}" i_check_path $tempfn "${BBMISC[@]}" echo # Only output this if some apps were not found. # We don't want to scare people unless necessary :-) if (( bb_not_found_apps )) then top_info_line echo -e "${BBHEADCOLOR}$bb_cp_10\n$bb_cp_11${BBCOLOROFF}" dashed_line fi message rm $tempfn } bashburn-3.0.1/misc/colors.idx000066400000000000000000000037041153706571400162760ustar00rootroot00000000000000#"\e[30m" set foreground color to black #"\e[31m" set foreground color to red #"\e[32m" set foreground color to green #"\e[33m" set foreground color to yellow #"\e[34m" set foreground color to blue #"\e[35m" set foreground color to magenta (purple) #"\e[36m" set foreground color to cyan #"\e[37m" set foreground color to white #"\e[40m" set background color to black #"\e[41m" set background color to red #"\e[42m" set background color to green #"\e[43m" set background color to yellow #"\e[44m" set background color to blue #"\e[45m" set background color to magenta (purple) #"\e[46m" set background color to cyan #"\e[47m" set background color to white #"\e[1;30m" set foreground color to dark gray #"\e[1;31m" set foreground color to light red #"\e[1;32m" set foreground color to light green #"\e[1;33m" set foreground color to yellow #"\e[1;34m" set foreground color to light blue #"\e[1;35m" set foreground color to light magenta (purple) #"\e[1;36m" set foreground color to light cyan #"\e[1;37m" set foreground color to white #"\e[1;40m" set background color to dark gray #"\e[1;41m" set background color to light red #"\e[1;42m" set background color to light green #"\e[1;43m" set background color to yellow #"\e[1;44m" set background color to light blue #"\e[1;45m" set background color to light magenta (purple) #"\e[1;46m" set background color to light cyan #"\e[1;47m" set background color to white # #For other features: #"\e[0m" reset; clears all colors and styles (to white on black) colordef() { # colors.idx - Colors used by BashBurn NOCOL="\e[1;0m" BBCOLOROFF="$NOCOL" GR_ON_BL="\e[1;32m" BBHEADCOLOR="$GR_ON_BL" WH_ON_BL="\e[37;40m" BBMAINCOLOR="$WH_ON_BL" BLU_ON_BL="\e[1;36m" BBSUBCOLOR="$BLU_ON_BL" RED_ON_BL="\e[1;31m" BBTABLECOLOR="$RED_ON_BL" LILAC_ON_BL="\e[1;35m" BBINPUTCOLOR="$LILAC_ON_BL" YEL_ON_BL="\e[1;33m" BBOPTIONCOLOR="$YEL_ON_BL" } # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/misc/commands.idx000066400000000000000000000016071153706571400165760ustar00rootroot00000000000000# Commands.idx # It's too bad that the content of the bashburnrc file isn't just a bash # input file. Alas, it's not... bb_parse_config() { typeset oldIFS="$IFS" # Save the value of IFS so it can be later restored. typeset IFS # Declare IFS so it's only localy affected. typeset ii typeset line while read line # Read a line of input. do [[ line =~ '^#' ]] && continue # Skip the comments. IFS=: # Set IFS to the colon so we can break it up. set -- $line IFS="$oldIFS" # In the future mod this in case that value is allowed to # have embedded colons. if (( $# == 2 )) then # We have something to parse. for ii in "${BB_KEYWORDS[@]}" # See if the keyword is known to us. do [[ "$1" == $ii ]] || continue read trimval <<< "$2" eval "$1=\"$trimval\"" break done fi done < $BBCONFFILE } # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/misc/commonfunctions.sh000077500000000000000000000044521153706571400200500ustar00rootroot00000000000000# This file contains common functions used in # several files. # Pretty header pretty_top() { clear echo -e "${BBTABLECOLOR}${BBDECOLINE} ${BBTABLECOLOR}|${BBHEADCOLOR} ${BBVERSION} ${BBTABLECOLOR}| ${BBTABLECOLOR}${BBDECOLINE} ${BBTABLECOLOR}|${BBCOLOROFF}" } # Top and bottom dashed lines for Information top_info_line() { echo -e "${BBTABLECOLOR}${BBDECOLINE}${BBSUBCOLOR} \ INFORMATION ${BBTABLECOLOR}${BBDECOLINE}${BBCOLOROFF}" } dashed_line() { echo -e "${BBTABLECOLOR}${BBDECOLINE}\ -------------${BBDECOLINE}${BBCOLOROFF}" } # Check if directory is empty is_dir_empty() { # Use -A to count dot files but not . and .. # Returns success (0) if empty (( $(ls -1A $1 | wc -l) == 0 )) } # Wait for a keypress wait_for_enter() { typeset response read -n 1 -p "$bb_hit_any_key_to_continue : " response errmsg } message() { # Print a message to stderr and wait for the user # to respond with a keypress. typeset msg="$@" errmsg "${msg}" wait_for_enter } # Function to check whether CD is blank or not check_cd_status() { # Returns 0 if USED, otherwise (BLANK) return 1 dd if=${BBCDWRITER} of=/dev/null bs=1 count=1 > /dev/null 2>&1 } # Function to blank CD blank_cd() { typeset -i ret=0 typeset str typeset cmd="${BB_CDBURNCMD} -v dev=${BBCDWRITER} \ blank=${BBBLANKING} speed=${BBSPEED}" echo $bb_cdrw_blank1 if $cmd then message "$bb_cdrw_blank2" else # Forced blanking echo $bb_cdrw_blank3 if $cmd -force then str="$bb_cdrw_blank4" else str="$bb_cdrw_blank5" ret=1 fi message "$str" fi return $ret } ask_for_blanking() { # Only call this if the cd is used. typeset -i blank_failed=0 typeset choice echo $bb_cf_text1 echo $bb_cf_text2 echo $bb_cf_text3 read -e -p "(yes/no/abort) |> " choice if [[ ${choice} == yes ]] then blank_cd || { message "$bb_cf_text6"; return 1; } elif [[ "${choice}" == abort ]] then message "$bb_cf_text4" return 1 fi message "$bb_cf_text5" return 0 } # Checks for whatever type of file is supplied # FIXME: This is a little exercise in elbow kissing... check_for() { typeset filetype="$1" typeset line while read line do return 0 done < <(find ${BBBURNDIR} -iname "$filetype" ) return 1 } bashburn-3.0.1/misc/configure_temp_help.lang000066400000000000000000000165641153706571400211600ustar00rootroot00000000000000# Temporary file so that at least other LANG get a help text (even if it is in English) # This will be removed once all BBLANG/configure.lang files are fixed bb_conf_cancel_quote='To cancel, just press [ENTER].' bb_conf_ch_writer=\ "The writer is supposed to be entered as ${BBOPTIONCOLOR}0,0,0${BBCOLOROFF} for SCSI or /dev/hdX for IDE writers (Where X is a driver letter). For auto-detect, enter auto. ${bb_conf_cancel_quote} The current setting is: ${BBOPTIONCOLOR}${BBCDWRITER}${BBCOLOROFF}, and below is a list of possible writers on your system (According to /etc/fstab)." bb_conf_ch_cddev="The device file of your reader is usually something like ${BBOPTIONCOLOR}/dev/cdrom${BBCOLOROFF} or ${BBOPTIONCOLOR}/dev/dvd${BBCOLOROFF}. The current setting is: ${BBOPTIONCOLOR}${BBCDROM}${BBCOLOROFF}, and below is a list of possible readers on your system (According to /etc/fstab). ${bb_conf_cancel_quote}" bb_conf_ch_cdmnt="The mountpoint of your reader is usually something like ${BBOPTIONCOLOR}/mnt/cdrom${BBCOLOROFF} or ${BBOPTIONCOLOR}/mnt/dvd${BBCOLOROFF}. The current setting is: ${BBOPTIONCOLOR}${BBCDMNT}${BBCOLOROFF}, and below is a list of possible readers on your system (According to /etc/fstab). ${bb_conf_cancel_quote}" bb_conf_ch_speed="Unless you have problems burning discs, you should leave this option as ${BBOPTIONCOLOR}-1${BBCOLOROFF} and use the drive specific defaults. For most recorders the default is to write at maximum speed. The current setting is: ${BBOPTIONCOLOR}${BBSPEED}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_blanking=\ "Here you set the default blanking type. The default value is ${BBOPTIONCOLOR}fast${BBCOLOROFF}. This blanks the entire disc and therefore can take some time. The current setting is: ${BBOPTIONCOLOR}${BBBLANKING}${BBCOLOROFF}, and below is a list of possible blanking types. ${bb_conf_cancel_quote}" bb_conf_ch_numdev=\ "Here you specify the number of disc drives in your system. If you are using one drive as both reader and writer, enter ${BBOPTIONCOLOR}1${BBCOLOROFF}, otherwise enter ${BBOPTIONCOLOR}2${BBCOLOROFF}. The current setting is: ${BBOPTIONCOLOR}${BBNUMDEV}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_root="This options specifies the location of the BashBurn scripts. You should really have no reason to change this value, only do so if you know what you're doing. The current setting is: ${BBOPTIONCOLOR}${BBROOTDIR}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_burndir=\ "This option specifies where BashBurn will look for data to burn. Bu sure to have write permissions to this location. The current setting is: ${BBOPTIONCOLOR}${BBBURNDIR}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_label="This option specifies the name of the disc to be burnt. It can be any string of text up to 32 characters such as ${BBOPTIONCOLOR}My Pictures${BBCOLOROFF} or ${BBOPTIONCOLOR}Vacation Movies${BBCOLOROFF}. If you want to be asked\n for a label each time. enter ${BBOPTIONCOLOR}${BBCOLOROFF} as the label. The current setting is ${BBOPTIONCOLOR}${BBLABEL}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_author="This option describes the preparer of the disc, usually with an e-mail and phone number. There is space for 128 characters of information. The current setting is: ${BBOPTIONCOLOR}${BBAUTHOR}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_desc=\ "This option describes what will be burnt to the disc. There is space for 128 characters of information. The current setting is: ${BBOPTIONCOLOR}${BBDESCRIPTION}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_norm=\ "Normalization is the process of adjusting the volume of audio files to a standard level. This is useful for things like creating mix-CDs where different recording levels on different songs can cause the volume to vary greatly from song to song. This option enables ${BBHEADCOLOR}(yes)${BBCOLOROFF} or disables ${BBTABLECOLOR}(no)${BBCOLOROFF} this feature. Current option is: ${BBOPTIONCOLOR}${BBNORMALIZE}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_dropts=\ "This option specifies the driver specific options used when burning a disc. An examples is ${BBOPTIONCOLOR}burnfree${BBCOLOROFF} for avoiding buffer underruns. You can specify several options by separating them with a comma. This option is non-mandatory and can be skipped. Current setting is: ${BBOPTIONCOLOR}${BBDRIVEROPT}${BBCOLOROFF}, and below is a list of possible options. ${bb_conf_cancel_quote}\n\n${BBSUBCOLOR}${bb_text_7}${BBCOLOROFF}\n" bb_conf_ch_fifo=\ "This option specifies the path of the FIFO-directory which is used for piped audio burning. There is usually no reason to change this, the default should work fine in most cases. Current setting is: ${BBOPTIONCOLOR}${BBFIFODIR}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_tempdel=\ "If you want BashBurn to remove the files in ${BBBURNDIR} after a disc has been burnt, enter ${BBHEADCOLOR}yes${BBCOLOROFF} here. Otherwise enter ${BBTABLECOLOR}no${BBCOLOROFF} to leave them. Current setting is: ${BBOPTIONCOLOR}${BBDELTEMPBURN}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_ob="Overburn is trying to burn more onto a disc than it was designed for. This will not always work, and when it does only a few MB will fit. Your burner must support this feature and there is no guarantee that the disc will be readable in all readers. This option enables ${BBHEADCOLOR}(yes)${BBCOLOROFF} or disables ${BBTABLECOLOR}(no)${BBCOLOROFF} this feature. The current setting is: ${BBOPTIONCOLOR}${BBOVERBURN}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_bitrate=\ "For audio files, the bitrate is the main influence on quality. With higher bitrate comes better quality, but also bigger file size. This option specifies which bitrate to use when encoding audio files. The unit is in kbit and should be entered in multiples of 32. The current setting is: ${BBOPTIONCOLOR}${BBBITRATE}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_lang=\ "This option sets the language BashBurn's interface will be shown in. The current setting is: ${BBOPTIONCOLOR}${BBLANG}${BBCOLOROFF}, and below is a list of possible languages to choose from. ${bb_conf_cancel_quote}" bb_conf_ch_dtao="This option tells BashBurn to burn in SAO (Session at Once) or TAO (Track at Once) mode. The default value TAO ${BBOPTIONCOLOR}(-tao)${BBCOLOROFF} is usually fine but in some cases SAO ${BBOPTIONCOLOR}(-sao)${BBCOLOROFF} must be used. The current setting is: ${BBOPTIONCOLOR}${BBDTAO}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_ch_pad=\ "This option tells BashBurn to enable ${BBHEADCOLOR}(-pad)${BBCOLOROFF} or disable ${BBTABLECOLOR}(-nopad)${BBCOLOROFF} gaps between audio tracks. If you want to burn an audio CD without gaps between tracks (For instance a live recording), disable this option. The current setting is ${BBOPTIONCOLOR}${BBPADDING}${BBCOLOROFF}. ${bb_conf_cancel_quote}" bb_conf_apply_1='Changes applied!' bb_conf_apply_2='Could not write into' bb_conf_apply_3='You might want to chmod 666' bb_conf_def_1='Defaults applied!' bb_conf_def_2="(BBROOTDIR has *no* default - you have to change it!)" bb_conf_xit_1='Back to main menu' bb_conf_xit_2=\ "You did hit APPLY CHANGES before leaving, right?\n If you did not, select 'n' to go back and do so; at this stage you can also select 'y' here to cancel and leave this dialogue. ${BBHEADCOLOR}BUT${BBCOLOROFF}, if you have applied changes, they have now been set.\n" bb_conf_err='Please enter ' # Local Variables: ** # mode:shell-script ** # End: ** bashburn-3.0.1/misc/loopback.sh000077500000000000000000000054371153706571400164250ustar00rootroot00000000000000 # Directory names typeset -r bb_lb_dir=/tmp/bb-loopback typeset -r bb_im_copy_dir="/tmp/imagecopy" # # This file has functions for mounting an image file in a loopback # device and edit its contents. After editing, a new image file # is created containing the edited material. # # Remove temporary directories loopback_cleanup() { sudo umount "$bb_lb_dir" rm -rf "$bb_im_copy_dir"/* } loopback() { typeset -r mntcmd="mount -t iso9660 -o loop $1 $bb_lb_dir" typeset answer # Bad filename? if [[ ! -r "$1" ]] then echo " \"$1\" $bb_lb_noread" return 100 # FIXME: HOLD ON THAR BULLWINKLE fi # Create necessary directories if possible if [[ ! -e "$bb_lb_dir" ]] then echo "$bb_lb_no_lb_dir" mkdir -p "$bb_lb_dir" || { echo "$bb_lb_dir_cf"; return 2; } echo "$bb_lb_dir_c" fi if [[ ! -e "$bb_im_copy_dir" ]] then echo "$bb_lb_no_im_dir" mkdir -p "$bb_im_copy_dir" || { echo "$bb_lb_dir_cf"; return 3; } echo "$bb_lb_dir_c" fi if [[ ! -e "${BBBURNDIR}" ]] then echo "$bb_lb_no_temp_dir" mkdir -p ${BBBURNDIR} || { echo "$bb_lb_dir_cf"; return 4; } echo "$bb_lb_dir_c" fi # Mount the CD image in a loopback device if [[ "$USER" != root ]] then echo "$bb_lb_sudo1" echo "$bb_lb_sudo2" echo "$bb_lb_sudo3" echo "$bb_lb_sudo4" echo "$bb_lb_sudo5" echo "$bb_lb_sudo6" sudo $mntcmd || { echo "$bb_lb_mount_fail"; return 5; } echo "$bb_lb_mount" else $mntcmd || { echo "$bb_lb_mount_fail"; return 6; } fi echo "$bb_lb_mount" # Copy contents from the mounted image to another directory and set # new permissions so its contents can be manipulated. echo "$bb_lb_cp_cont" cp -R "$bb_lb_dir"/* "$bb_im_copy_dir" chmod -R +w "$bb_im_copy_dir" # Change to new directory and start a shell session there cd "$bb_im_copy_dir" echo "$bb_lb_in_file" ${SHELL:-/bin/bash} # When user exits shell session, change to temporary file directory and # create new image file out of what user manipulated (If anything was). echo "$bb_lb_change1" echo "$bb_lb_change2" #echo -n "|> " #read answer read -e -p "|>" answer if [[ "$answer" == y ]] then # We want to make sure no data is deleted by mistake if [[ "$(ls -A ${BBBURNDIR})" ]]; then echo "$bb_lb_change3 \"${BBBURNDIR}\"," echo "$bb_lb_change4" echo -n "$bb_lb_change5" read -p "|>" answer if [[ "$answer" == y ]] then cd "${BBBURNDIR}" rm -rf "${BBBURNDIR}"/* echo "$bb_lb_change6" ${BB_ISOCMD} -r -f -v -J -hide-joliet-trans-tbl \ -o BashBurn.iso ${bb_im_copy_dir} \ && echo "$bb_lb_change7 \"${BBBURNDIR}\"" else echo "$bb_lb_change8" cleanup fi fi else echo "$bb_lb_change9" fi # Finally clean up our mess loopback_cleanup return 0 } bashburn-3.0.1/misc/m3u_read.sh000066400000000000000000000004461153706571400163220ustar00rootroot00000000000000m3u_read() { if ! check_for *.m3u then echo -e "No M3U file exists in ${BBBURNDIR}." else typeset m3ufile=$(find ${BBBURNDIR} -iname '*.m3u') typeset musicfiles while read musicfiles do ln -sf "$musicfiles" "${BBBURNDIR}" done < <(grep -v "#EXT" "${m3ufile}") fi } bashburn-3.0.1/rpm/000077500000000000000000000000001153706571400141265ustar00rootroot00000000000000bashburn-3.0.1/rpm/README000066400000000000000000000007661153706571400150170ustar00rootroot00000000000000rpm creation for bashburn. There are two files here (as we speak). The first is the spec file, and the other is a script called mkbbsrpm.sh The way this works is that you run the mkbbsrpm.sh script and the result is that you end up with a .tar.bz2 file in your ~/rpmbuild/SOURCES directory and the spec file in your SPECS directory. Then you just go to your SPECS directory and run rpmbuild -ba bashburn.spec This will result in a .src.rpm in the SRPMS dir and a .noarch.rpm in the RPMS/noarch dir. bashburn-3.0.1/rpm/bashburn.spec000066400000000000000000000163641153706571400166200ustar00rootroot00000000000000Name: bashburn Version: 3.1 Release: 1%{?dist} Summary: Thin interface used to manage cds and dvds written in bash Group: System Environment License: GPL URL: http://bashburn.dose.se/ Source0: %{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch Requires: bash %description This package provides the bashburn command for operating on cds and dvds. %prep %setup -q %build : %install rm -rf $RPM_BUILD_ROOT echo "RPM_BUILD_ROOT:$RPM_BUILD_ROOT" echo "im in $PWD" #mkdir -p %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)/usr find . -print | cpio -pdum $RPM_BUILD_ROOT/usr %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root,-) %define bblib %{_libdir}/Bashburn/lib %attr(0555,root,root) %{bblib}/BashBurn.sh %{bblib}/burning/bincue.sh %{bblib}/burning/burning.sh %{bblib}/burning/multi.sh %{bblib}/config/apply_options.sh %{bblib}/convert/convert_audio.sh %{bblib}/convert/convert_flacs.sh %{bblib}/convert/convert_mp3s.sh %{bblib}/convert/convert_oggs.sh %{bblib}/docs/COPYING %{bblib}/docs/CREDITS %{bblib}/docs/ChangeLog %{bblib}/docs/FAQ %{bblib}/docs/HOWTO %{bblib}/docs/README %{bblib}/docs/TODO %{bblib}/docs/TRANSLATION_RULE %{bblib}/func/advancedfunc.sh %{bblib}/func/audiofunc.sh %{bblib}/func/bincuefunc.sh %{bblib}/func/configfunc.sh %{bblib}/func/datafunc.sh %{bblib}/func/definefunc.sh %{bblib}/func/isofunc.sh %{bblib}/func/mountfunc.sh %{bblib}/func/multifunc.sh %{bblib}/lang/Czech/BashBurn.lang %{bblib}/lang/Czech/README %{bblib}/lang/Czech/advanced.lang %{bblib}/lang/Czech/audio_menu.lang %{bblib}/lang/Czech/bincue.lang %{bblib}/lang/Czech/burning.lang %{bblib}/lang/Czech/check_path.lang %{bblib}/lang/Czech/commonfunctions.lang %{bblib}/lang/Czech/configure.lang %{bblib}/lang/Czech/convert_flacs.lang %{bblib}/lang/Czech/convert_mp3s.lang %{bblib}/lang/Czech/convert_oggs.lang %{bblib}/lang/Czech/data_menu.lang %{bblib}/lang/Czech/datadefine.lang %{bblib}/lang/Czech/iso_menu.lang %{bblib}/lang/Czech/loopback.lang %{bblib}/lang/Czech/mount.lang %{bblib}/lang/Czech/multi.lang %{bblib}/lang/English/BashBurn.lang %{bblib}/lang/English/README %{bblib}/lang/English/advanced.lang %{bblib}/lang/English/audio_menu.lang %{bblib}/lang/English/bincue.lang %{bblib}/lang/English/burning.lang %{bblib}/lang/English/check_path.lang %{bblib}/lang/English/commonfunctions.lang %{bblib}/lang/English/configure.lang %{bblib}/lang/English/convert_flacs.lang %{bblib}/lang/English/convert_mp3s.lang %{bblib}/lang/English/convert_oggs.lang %{bblib}/lang/English/data_menu.lang %{bblib}/lang/English/datadefine.lang %{bblib}/lang/English/iso_menu.lang %{bblib}/lang/English/loopback.lang %{bblib}/lang/English/mount.lang %{bblib}/lang/English/multi.lang %{bblib}/lang/German/BashBurn.lang %{bblib}/lang/German/README %{bblib}/lang/German/advanced.lang %{bblib}/lang/German/audio_menu.lang %{bblib}/lang/German/bincue.lang %{bblib}/lang/German/burning.lang %{bblib}/lang/German/check_path.lang %{bblib}/lang/German/commonfunctions.lang %{bblib}/lang/German/configure.lang %{bblib}/lang/German/convert_flacs.lang %{bblib}/lang/German/convert_mp3s.lang %{bblib}/lang/German/convert_oggs.lang %{bblib}/lang/German/data_menu.lang %{bblib}/lang/German/datadefine.lang %{bblib}/lang/German/iso_menu.lang %{bblib}/lang/German/loopback.lang %{bblib}/lang/German/mount.lang %{bblib}/lang/German/multi.lang %{bblib}/lang/Italian/BashBurn.lang %{bblib}/lang/Italian/README %{bblib}/lang/Italian/advanced.lang %{bblib}/lang/Italian/audio_menu.lang %{bblib}/lang/Italian/bincue.lang %{bblib}/lang/Italian/burning.lang %{bblib}/lang/Italian/check_path.lang %{bblib}/lang/Italian/commonfunctions.lang %{bblib}/lang/Italian/configure.lang %{bblib}/lang/Italian/convert_flacs.lang %{bblib}/lang/Italian/convert_mp3s.lang %{bblib}/lang/Italian/convert_oggs.lang %{bblib}/lang/Italian/data_menu.lang %{bblib}/lang/Italian/datadefine.lang %{bblib}/lang/Italian/iso_menu.lang %{bblib}/lang/Italian/loopback.lang %{bblib}/lang/Italian/mount.lang %{bblib}/lang/Italian/multi.lang %{bblib}/lang/Norwegian/BashBurn.lang %{bblib}/lang/Norwegian/README %{bblib}/lang/Norwegian/advanced.lang %{bblib}/lang/Norwegian/audio_menu.lang %{bblib}/lang/Norwegian/bincue.lang %{bblib}/lang/Norwegian/burning.lang %{bblib}/lang/Norwegian/check_path.lang %{bblib}/lang/Norwegian/commonfunctions.lang %{bblib}/lang/Norwegian/configure.lang %{bblib}/lang/Norwegian/convert_flacs.lang %{bblib}/lang/Norwegian/convert_mp3s.lang %{bblib}/lang/Norwegian/convert_oggs.lang %{bblib}/lang/Norwegian/data_menu.lang %{bblib}/lang/Norwegian/datadefine.lang %{bblib}/lang/Norwegian/iso_menu.lang %{bblib}/lang/Norwegian/loopback.lang %{bblib}/lang/Norwegian/mount.lang %{bblib}/lang/Norwegian/multi.lang %{bblib}/lang/Polish/BashBurn.lang %{bblib}/lang/Polish/README %{bblib}/lang/Polish/advanced.lang %{bblib}/lang/Polish/audio_menu.lang %{bblib}/lang/Polish/bincue.lang %{bblib}/lang/Polish/burning.lang %{bblib}/lang/Polish/check_path.lang %{bblib}/lang/Polish/commonfunctions.lang %{bblib}/lang/Polish/configure.lang %{bblib}/lang/Polish/convert_flacs.lang %{bblib}/lang/Polish/convert_mp3s.lang %{bblib}/lang/Polish/convert_oggs.lang %{bblib}/lang/Polish/data_menu.lang %{bblib}/lang/Polish/datadefine.lang %{bblib}/lang/Polish/iso_menu.lang %{bblib}/lang/Polish/loopback.lang %{bblib}/lang/Polish/mount.lang %{bblib}/lang/Polish/multi.lang %{bblib}/lang/Spanish/BashBurn.lang %{bblib}/lang/Spanish/README %{bblib}/lang/Spanish/advanced.lang %{bblib}/lang/Spanish/audio_menu.lang %{bblib}/lang/Spanish/bincue.lang %{bblib}/lang/Spanish/burning.lang %{bblib}/lang/Spanish/check_path.lang %{bblib}/lang/Spanish/commonfunctions.lang %{bblib}/lang/Spanish/configure.lang %{bblib}/lang/Spanish/convert_flacs.lang %{bblib}/lang/Spanish/convert_mp3s.lang %{bblib}/lang/Spanish/convert_oggs.lang %{bblib}/lang/Spanish/data_menu.lang %{bblib}/lang/Spanish/datadefine.lang %{bblib}/lang/Spanish/iso_menu.lang %{bblib}/lang/Spanish/loopback.lang %{bblib}/lang/Spanish/mount.lang %{bblib}/lang/Spanish/multi.lang %{bblib}/lang/Swedish/BashBurn.lang %{bblib}/lang/Swedish/README %{bblib}/lang/Swedish/advanced.lang %{bblib}/lang/Swedish/audio_menu.lang %{bblib}/lang/Swedish/bincue.lang %{bblib}/lang/Swedish/burning.lang %{bblib}/lang/Swedish/check_path.lang %{bblib}/lang/Swedish/commonfunctions.lang %{bblib}/lang/Swedish/configure.lang %{bblib}/lang/Swedish/convert_flacs.lang %{bblib}/lang/Swedish/convert_mp3s.lang %{bblib}/lang/Swedish/convert_oggs.lang %{bblib}/lang/Swedish/data_menu.lang %{bblib}/lang/Swedish/datadefine.lang %{bblib}/lang/Swedish/iso_menu.lang %{bblib}/lang/Swedish/loopback.lang %{bblib}/lang/Swedish/mount.lang %{bblib}/lang/Swedish/multi.lang %{bblib}/menus/advanced.sh %{bblib}/menus/audio_menu.sh %{bblib}/menus/bbmenu.sh %{bblib}/menus/configure.sh %{bblib}/menus/data_menu.sh %{bblib}/menus/datadefine.sh %{bblib}/menus/iso_menu.sh %{bblib}/menus/mount.sh %{bblib}/misc/check_path.sh %{bblib}/misc/colors.idx %{bblib}/misc/commands.idx %{bblib}/misc/commonfunctions.sh %{bblib}/misc/configure_temp_help.lang %{bblib}/misc/loopback.sh %{bblib}/misc/m3u_read.sh %doc /usr/share/man/man1/bashburn.1.gz %post sed -e "s^@@BBROOTDIR@@^%{bblib}^" %{bblib}/BashBurn.sh > newbb-$$.sh mv newbb-$$.sh %{bblib}/BashBurn.sh chmod 755 %{bblib}/BashBurn.sh mkdir -p %{_bindir} ln -sf %{bblib}/BashBurn.sh %{_bindir}/bashburn %changelog bashburn-3.0.1/rpm/mkbbsrpm.sh000077500000000000000000000021171153706571400163030ustar00rootroot00000000000000#! /bin/bash MAJOR=3 MINOR=1 VERSION=1 rev=$MAJOR.$MINOR tartmproot=/tmp/bbsrc.$$ tartmp=$tartmproot/bashburn-$rev mkdir -p $tartmp savedir=$PWD # Check to see if the rpmbuild dir exists. Make it if needed. if ! [[ -d ~/rpmbuild ]] then echo 'You do not have an rpmbuild tree. Creating.' 1>&2 mkdir -p ~/rpmbuild/{BUILD,RPMS,S{PEC,OURCE,RPM}S} if ! [[ -f ~/.rpmmacros ]] then echo "%_topdir $HOME/rpmbuild" > ~/.rpmmacros else cat <&2 Your rpmbuild directory did not exist but your ~/.rpmmacros file does. I am appending a directive so that _topdir will be in rpmbuild. EOF fi fi # Step 1. Create the tar file cd .. mkdir -p $tartmp ./Install.sh --prefix $tartmp --make-tar (cd $tartmproot && tar -jcf ~/rpmbuild/SOURCES/bashburn-$rev.tar.bz2 .) echo rm -rf $tartmproot cd - # Step 2. Copy the spec file cp bashburn.spec ~/rpmbuild/SPEC cat <