mirror of
https://github.com/git/git.git
synced 2024-11-07 17:53:12 +01:00
27269fc5f2
As explained in v1.7.3-rc0~13^2 (Work around em-dash handling in newer AsciiDoc, 2010-08-23), if double dashes in names of commands are not escaped, AsciiDoc renders them as em dashes. While fixing that, spell the command name as "git sh-i18n--envsubst" (2 words) instead of emphasizing the name of the binary (one hyphenated name) and format it in italics. The double-dash in the title should be escaped, too, to avoid spurious em dashes in the header: .TH "GIT\-SH\-I18N\(emENVSUB" "1" "06/26/2011" "Git 1\&.7\&.6" "Git Manual" AsciiDoc 8.6.4 with DocBook XSL 1.76.0-RC1 copes fine and writes "GIT\-SH\-I18N\-\-ENVSUB" even without this change, which is why it was missed before. Signed-off-by: Jonathan Nieder <jrnieder@gmail.com> Acked-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
42 lines
1.1 KiB
Text
42 lines
1.1 KiB
Text
git-sh-i18n(1)
|
|
==============
|
|
|
|
NAME
|
|
----
|
|
git-sh-i18n - Git's i18n setup code for shell scripts
|
|
|
|
SYNOPSIS
|
|
--------
|
|
'. "$(git --exec-path)/git-sh-i18n"'
|
|
|
|
DESCRIPTION
|
|
-----------
|
|
|
|
This is not a command the end user would want to run. Ever.
|
|
This documentation is meant for people who are studying the
|
|
Porcelain-ish scripts and/or are writing new ones.
|
|
|
|
The 'git sh-i18n scriptlet is designed to be sourced (using
|
|
`.`) by Git's porcelain programs implemented in shell
|
|
script. It provides wrappers for the GNU `gettext` and
|
|
`eval_gettext` functions accessible through the `gettext.sh`
|
|
script, and provides pass-through fallbacks on systems
|
|
without GNU gettext.
|
|
|
|
FUNCTIONS
|
|
---------
|
|
|
|
gettext::
|
|
Currently a dummy fall-through function implemented as a wrapper
|
|
around `printf(1)`. Will be replaced by a real gettext
|
|
implementation in a later version.
|
|
|
|
eval_gettext::
|
|
Currently a dummy fall-through function implemented as a wrapper
|
|
around `printf(1)` with variables expanded by the
|
|
linkgit:git-sh-i18n{litdd}envsubst[1] helper. Will be replaced by a
|
|
real gettext implementation in a later version.
|
|
|
|
GIT
|
|
---
|
|
Part of the linkgit:git[1] suite
|