Monorepo for Tangled tangled.org

appview/strings: replace leftover references to "gist"s

Signed-off-by: ItsHarper <git-f4cbe@harperandrews.org>

Changed files
+2 -2
appview
pages
templates
strings
strings
+1 -1
appview/pages/templates/strings/string.html
··· 35 35 title="Delete string" 36 36 hx-delete="/strings/{{ .String.Did }}/{{ .String.Rkey }}/" 37 37 hx-swap="none" 38 - hx-confirm="Are you sure you want to delete the gist `{{ .String.Filename }}`?" 38 + hx-confirm="Are you sure you want to delete the string `{{ .String.Filename }}`?" 39 39 > 40 40 {{ i "trash-2" "size-4" }} 41 41 <span class="hidden md:inline">delete</span>
+1 -1
appview/strings/strings.go
··· 456 456 } 457 457 458 458 if user.Did != id.DID.String() { 459 - fail("You cannot delete this gist", fmt.Errorf("unauthorized deletion, %s != %s", user.Did, id.DID.String())) 459 + fail("You cannot delete this string", fmt.Errorf("unauthorized deletion, %s != %s", user.Did, id.DID.String())) 460 460 return 461 461 } 462 462