git.m455.casa

sp

clone url: git://git.m455.casa/sp


src/messages.scm

1 (define messages '((argument-not-provided "oh shit: argument not provided.")
2 (file-already-exists "oh shit: ~a already exists.")
3 (file-doesnt-exist "oh shit: ~a doesn't exist.")
4 (file-creating "creating ~a...")
5 (file-uploading "uploading ~a...")
6 (file-uploaded "uploaded ~a.")
7 (file-deleting-both "deleting local and remote copies of ~a...")
8 (file-deleted-both "deleted local and remote copies of ~a.")
9 (file-creating-finished "finished creating ~a!")
10 (file-not-in-local-paste-directory "oh shit: ~a isn't a file in ~a.")
11 (init-prompt "~a will be created. Is this okay? [y/n]")
12 (init-cancelled "cancelled initialization.")
13 (try-running "try running ~a.")
14 (for-help "for help, try running ~a.")
15 (synced "finished synchronizing ~a with ~a.")
16 (copied-to-clipboard "copied ~a to your clipboard.")))
17