Reacted on some of the complaints of codespell
This commit is contained in:
@ -132,7 +132,7 @@ then
|
||||
do
|
||||
echo "$i" >&2
|
||||
done
|
||||
echo "##### End of recived arguments" >&2
|
||||
echo "##### End of received arguments" >&2
|
||||
echo >&2
|
||||
fi
|
||||
|
||||
|
@ -47,7 +47,7 @@ export normal_end=0
|
||||
# This piece of code parses input strings into words by letting xorriso
|
||||
# command -msg_op "parse_silently" do the hard work.
|
||||
# The input strings should be composed by concatenating input lines with
|
||||
# newline characters inbetween. Begin by submitting a single line (without
|
||||
# newline characters between them. Begin by submitting a single line (without
|
||||
# newline at its end) and retry with an appended further line, if
|
||||
# xorriso_parse
|
||||
# returns 1. See below xorriso_cmd_and_handle_result() for an example.
|
||||
@ -269,7 +269,7 @@ mknod "$result_pipe" p
|
||||
xorriso_pid=$!
|
||||
xorriso_is_running=1
|
||||
|
||||
# Get a sign of life from xorriso before issueing the loop prompt
|
||||
# Get a sign of life from xorriso before issuing the loop prompt
|
||||
xorriso_cmd_and_handle_result xorriso_reply_to_stdout \
|
||||
"print_info 'xorriso process ${xorriso_pid} started by $0'"
|
||||
echo >&2
|
||||
|
@ -1371,7 +1371,7 @@ proc scan_for_drives {} {
|
||||
if {[assert_no_changes] == 0} {return ""}
|
||||
if {$indev_adr != "" || $outdev_adr != ""} {
|
||||
if {[window_yesno \
|
||||
"Really give up aquired drives for scanning a new drive list ?"] \
|
||||
"Really give up acquired drives for scanning a new drive list ?"] \
|
||||
!= 1} { return "" }
|
||||
}
|
||||
|
||||
@ -1404,7 +1404,7 @@ proc scan_for_drives {} {
|
||||
set devices_scanned 1
|
||||
reset_to_normal_background .drive_scan
|
||||
|
||||
# Command -devices drops all aquired drives
|
||||
# Command -devices drops all acquired drives
|
||||
refresh_outdev
|
||||
refresh_indev
|
||||
}
|
||||
@ -1946,7 +1946,7 @@ proc isomanip_verify {} {
|
||||
}
|
||||
|
||||
|
||||
# Slow down the spinning of the aquired optical drives.
|
||||
# Slow down the spinning of the acquired optical drives.
|
||||
# Called when button "Calm drives" is hit.
|
||||
#
|
||||
proc calm_drives {} {
|
||||
@ -2343,7 +2343,7 @@ proc end_xorriso {} {
|
||||
}
|
||||
|
||||
|
||||
# Check whether an output drive is aquired. Propose refusal if not.
|
||||
# Check whether an output drive is acquired. Propose refusal if not.
|
||||
# Called by procedures which are about to use the output drive.
|
||||
#
|
||||
proc assert_outdev {purpose} {
|
||||
@ -3010,7 +3010,7 @@ proc display_msg {msg} {
|
||||
|
||||
|
||||
# Set whether messages submitted to proc display_message shall really show up
|
||||
# This is used by callback procedures to hide auxilliary commands and lengthy
|
||||
# This is used by callback procedures to hide auxiliary commands and lengthy
|
||||
# reply messages from the user display.
|
||||
#
|
||||
proc set_display_msg {mode} {
|
||||
@ -4389,8 +4389,8 @@ The GUI window is separated into three main areas:
|
||||
|
||||
- The area for management of drives and ISO image data files
|
||||
- allows to scan for optical drives,
|
||||
- to aquire them and load their ISO directory tree,
|
||||
- to aquire ISO image files from hard disk as pseudo drives like DVD+RW,
|
||||
- to acquire them and load their ISO directory tree,
|
||||
- to acquire ISO image files from hard disk as pseudo drives like DVD+RW,
|
||||
- to blank CD-RW, DVD-RW DVD+RW, BD-RE and format DVD-RW, BD-R,
|
||||
- to trigger writing of ISO sessions (which get defined in the third area),
|
||||
- and to burn image data files from hard disk to optical media.
|
||||
@ -4527,7 +4527,7 @@ filesystems on optical media (CD, DVD, BD) or in disk files.
|
||||
Dependencies:
|
||||
xorriso, Tcl language, Tk GUI toolkit, optionally Tcl/Tk package BWidget
|
||||
|
||||
Copyright (C) 2012 - 2013
|
||||
Copyright (C) 2012 - 2016
|
||||
Thomas Schmitt <scdbackup@gmx.net>, libburnia-project.org
|
||||
Provided under BSD license: Use, modify, and distribute as you like."
|
||||
}
|
||||
@ -4661,7 +4661,7 @@ since last time the \"Clear\" button was hit. It will not clear automatically."
|
||||
of found optical drives into the box beside the button.
|
||||
|
||||
Scanning should be done before any ISO image manipulations because xorriso
|
||||
has to give up its aquired drives in order to perform the scan run.
|
||||
has to give up its acquired drives in order to perform the scan run.
|
||||
|
||||
To become visible and to be usable, the drives have to offer rw-permission
|
||||
to the user of this program. If drives do not show up, then consider to
|
||||
@ -4714,7 +4714,7 @@ information about the medium status. This info is displayed in the
|
||||
Further it causes the display of the ISO image model to be updated.
|
||||
|
||||
The medium in the drive must be blank or contain a valid ISO 9660 filesystem.
|
||||
Else the drive will only be aquired as output drive.
|
||||
Else the drive will only be acquired as output drive.
|
||||
|
||||
This drive configuration is the most usual one with xorriso. It loads
|
||||
an eventual ISO image, allows to manipulate it by insertion, deletion,
|
||||
@ -4735,14 +4735,14 @@ and clears both \"... drive/image\" lines, as well as the ISO model."
|
||||
if {$what == "Calm drives"} {
|
||||
return \
|
||||
"The \"Calm drives\" button executes command -calm_drives which tells the
|
||||
aquired optical drives to stop spinning until the next drive activity
|
||||
acquired optical drives to stop spinning until the next drive activity
|
||||
gets triggered."
|
||||
}
|
||||
if {$what == "Rollback"} {
|
||||
return \
|
||||
"The \"Rollback\" button executes command -rollback which drops all pending
|
||||
changes of the ISO model and reloads it from the input drive, if one is
|
||||
aquired."
|
||||
acquired."
|
||||
}
|
||||
if {$what == "drivelist"} {
|
||||
return \
|
||||
@ -4877,7 +4877,7 @@ The address of the disk file is taken from the neighboring text field.
|
||||
If you do not plan to append further data to the medium, then consider
|
||||
to enable the \"Close\" switch.
|
||||
|
||||
No input drive may be aquired. (Delete all characters from the field
|
||||
No input drive may be acquired. (Delete all characters from the field
|
||||
\"Input drive/image\" and hit Return to give up the input drive.)
|
||||
|
||||
The medium in the drive must be blank.
|
||||
|
Reference in New Issue
Block a user