From 0090db5c7b0cb69fc9c06da99ad868814414d2b0 Mon Sep 17 00:00:00 2001 From: Manuel Canales Esparcia Date: Fri, 14 Apr 2006 09:37:17 +0000 Subject: Changed typography convections. git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@7516 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter07/profile.xml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'chapter07/profile.xml') diff --git a/chapter07/profile.xml b/chapter07/profile.xml index e2748d9df..9255ef81c 100644 --- a/chapter07/profile.xml +++ b/chapter07/profile.xml @@ -65,10 +65,10 @@ makes Bash and Readline use the /etc/inputrc file created earlier. - Replace [ll] below with the two-letter code + Replace <ll> below with the two-letter code for the desired language (e.g., en) and - [CC] with the two-letter code for the appropriate - country (e.g., GB). [charmap] should + <CC> with the two-letter code for the appropriate + country (e.g., GB). <charmap> should be replaced with the canonical charmap for your chosen locale. Optional modifiers such as @euro may also be present. @@ -83,11 +83,11 @@ that UTF-8 is written as UTF-8, not utf8), so it is safest in most cases to choose the canonical name for a particular locale. To determine - the canonical name, run the following command, where [locale - name] is the output given by locale -a for + the canonical name, run the following command, where <locale + name> is the output given by locale -a for your preferred locale (en_GB.iso88591 in our example). -LC_ALL=[locale name] locale charmap +LC_ALL=<locale name> locale charmap For the en_GB.iso88591 locale, the above command will print: @@ -98,11 +98,11 @@ It is important that the locale found using the heuristic above is tested prior to it being added to the Bash startup files: -LC_ALL=[locale name] locale country -LC_ALL=[locale name] locale language -LC_ALL=[locale name] locale charmap -LC_ALL=[locale name] locale int_curr_symbol -LC_ALL=[locale name] locale int_prefix +LC_ALL=<locale name> locale country +LC_ALL=<locale name> locale language +LC_ALL=<locale name> locale charmap +LC_ALL=<locale name> locale int_curr_symbol +LC_ALL=<locale name> locale int_prefix The above commands should print the country and language names, the character encoding used by the locale, the local currency and the prefix to dial @@ -143,7 +143,7 @@ LC_ALL=[locale name] locale int_prefix cat > /etc/profile << "EOF" # Begin /etc/profile -export LANG=[ll]_[CC].[charmap][@modifiers] +export LANG=<ll>_<CC>.<charmap><@modifiers> export INPUTRC=/etc/inputrc # End /etc/profile -- cgit v1.2.3-54-g00ecf