mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
21 lines
431 B
Sed
21 lines
431 B
Sed
# For quotearg:
|
||
s/^`$/“[1m/
|
||
s/^'$/”[0m/
|
||
|
||
s/"\([^"]*\)"/“\1”/g
|
||
s/`\([^`']*\)'/‘\1’/g
|
||
s/ '\([^`']*\)' / ‘\1’ /g
|
||
s/ '\([^`']*\)'$/ ‘\1’/g
|
||
s/^'\([^`']*\)' /‘\1’ /g
|
||
s/“”/""/g
|
||
s/“/“[1m/g
|
||
s/”/[0m”/g
|
||
s/‘/‘[1m/g
|
||
s/’/[0m’/g
|
||
|
||
# At least in all of our current strings, ' should be ’.
|
||
s/'/’/g
|
||
# Special: write Hrvoje’s last name properly.
|
||
s/Niksic/Nikšić/g
|
||
s/opyright (C)/opyright ©/g
|