Skip to content

Commit

Permalink
Code & Features Update
Browse files Browse the repository at this point in the history
  • Loading branch information
nathaneltitane committed Sep 15, 2023
1 parent 5cc9587 commit 8a9aa8f
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions frobulator
Original file line number Diff line number Diff line change
Expand Up @@ -1710,23 +1710,26 @@ frobulator.progress () {

if [ "${notification: -1}" = "e" ]
then
# remove end 'e'

notification="${notification/%e/}"

elif [ "${notification: -1}" = "b" ]
then
# double end 'b'

notification="${notification/%b/bb}"
fi

# append verb end

if [ $# -le 1 ]
then
notification="${notification/%/ing$marker_elp}"
fi
notification="${notification/%/ing}"

if [ $# -ge 2 ]
# append ellipsis

if [ $# -le 1 ]
then
notification="${notification/%/ing}"
notification="${notification/%/$marker_elp}"
fi

notification[0]="${notification}"
Expand Down

0 comments on commit 8a9aa8f

Please sign in to comment.