blob: a777eac0eeeecb8d7cc30c7030fe4180dfa6e6af (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#!/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')"
#
|