by exporting the sentences to a file, more can be added easily.

This commit is contained in:
konomo 2021-11-06 22:51:15 +00:00
parent eb2f90b96d
commit dc39c9082a
3 changed files with 8 additions and 1 deletions

View File

@ -14,3 +14,4 @@ copy it into your gemini directory and make it executable of course
* 2021-11-05: added pronoun selector. add ";" and your preferred pronouns into the name field to see only those
* 2021-11-06: made each sentence a list item for easier reading
* 2021-11-06: make the pronoun text a little easier to see, and remove the unnecessary '---' in that case. also change the input text to direct the user how to enter stuff.
* 2021-11-06: by exporting the sentences to a file, more can be added easily.

View File

@ -15,7 +15,8 @@ fi
printf "20 text/gemini\r\n"
printf "# Pronoun Dressing Room for %s" "$name"
sentences=("I really enjoy spending time with OBJECTIVE." "NAME is really cool, I like OBJECTIVE." "POSESSIVEDT accent is nice." "That belongs to OBJECTIVE." "NAME did so well, SUBJECTIVE MSHAS every reason to be proud of REFLEXIVE.")
while read sentence; do
sentences+=("${sentence}"); done < sentences
pr_sub=("he" "she" "they" "xe")
pr_obj=("him" "her" "them" "xem")

5
sentences Normal file
View File

@ -0,0 +1,5 @@
I really enjoy spending time wth OBJECTIVE.
NAME is really cool, I like OBJECTIVE.
POSESSIVEDT accent is nice.
That belongs to OBJECTIVE.
NAME did so well, SUBJECTIVE MSHAS every reason to be proud of REFLEXIVE.