aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/_.fish
blob: 33fdd43e16e176af96a560a9d5fba65b4e9863dd (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 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