#!/bin/sh set -eu # # Translatable strings # _G() { echo "$1" } MSG_USAGE="$(_G 'Usage: git permalink [-phV] FILE [LINENO]')" MSG_HELP="$(_G ' Options: -p only print the link, don'"'"'t try to open it -h, --help show this help message -V, --version print the version number See "man git-permalink" for more information. ')" MSG_MISSING_FILE="$(_G 'Missing FILE argument.')" MSG_UNSUPPORTED_ORIGIN="$(_G 'Unsupported origin: %s. Add an template override to use git-permalink (see "man git-permalink.1" for instructions).')" MSG_OPEN="$(_G 'Opening %s')" #