blob: e6c7ca172989172fb836683fe2d1fc8d78961ddc (
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
32
33
34
35
36
|
#!/bin/sh
# shellcheck disable=2034
set -eu
MSG_USAGE="$(cat <<-'EOF'
Uzmaniero: git permalink [-phV] DOSIERO [LINIONO]
EOF
)"
MSG_HELP="$(cat <<-'EOF'
Ebloj:
-p nur presas la ligon, ne provas malgermi ĝin
-h, --help montras ĉi tiun helpmesaĝon
-V, --version presas la versian numeron
Vidu "man git-permalink" por pliaj informoj.
EOF
)"
MSG_MISSING_FILE="$(cat <<-'EOF'
La argumento DOSIERO mankas.
EOF
)"
MSG_UNSUPPORTED_ORIGIN="$(cat <<-'EOF'
Origo ne estas subtenata: %s.
Aldonu anstataŭan ŝablonon por uzi git-permalink (vidu
"man git-permalink" por instrukcioj).
EOF
)"
MSG_OPEN="$(cat <<-'EOF'
Malfermado de %s
EOF
)"
|