aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/_.fish
blob: a1404761e022512018a78847db151d558974c9f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

#
# Alias for gettext (or a fallback if gettext isn't installed)
#

if test -x (which gettext) ^/dev/null >/dev/null
	function _ -d "Alias for the gettext command"
		gettext fish $argv
	end
else
	function _ -d "Alias for the gettext command"
		printf "%s" $argv
	end
end