Initial commit of OpenSPARC T2 architecture model.
[OpenSPARC-T2-SAM] / sam-t2 / devtools / v9 / html / python / lib / node337.html
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<link rel="STYLESHEET" href="lib.css" type='text/css' />
<link rel="SHORTCUT ICON" href="../icons/pyfav.png" type="image/png" />
<link rel='start' href='../index.html' title='Python Documentation Index' />
<link rel="first" href="lib.html" title='Python Library Reference' />
<link rel='contents' href='contents.html' title="Contents" />
<link rel='index' href='genindex.html' title='Index' />
<link rel='last' href='about.html' title='About this document...' />
<link rel='help' href='about.html' title='About this document...' />
<link rel="next" href="node338.html" />
<link rel="prev" href="node336.html" />
<link rel="parent" href="node333.html" />
<link rel="next" href="node338.html" />
<meta name='aesop' content='information' />
<title>6.28.3.4 Deferred translations</title>
</head>
<body>
<DIV CLASS="navigation">
<div id='top-navigation-panel' xml:id='top-navigation-panel'>
<table align="center" width="100%" cellpadding="0" cellspacing="2">
<tr>
<td class='online-navigation'><a rel="prev" title="6.28.3.3 Changing languages on"
href="node336.html"><img src='../icons/previous.png'
border='0' height='32' alt='Previous Page' width='32' /></A></td>
<td class='online-navigation'><a rel="parent" title="6.28.3 Internationalizing your programs"
href="node333.html"><img src='../icons/up.png'
border='0' height='32' alt='Up One Level' width='32' /></A></td>
<td class='online-navigation'><a rel="next" title="6.28.3.5 gettext() vs. lgettext()"
href="node338.html"><img src='../icons/next.png'
border='0' height='32' alt='Next Page' width='32' /></A></td>
<td align="center" width="100%">Python Library Reference</td>
<td class='online-navigation'><a rel="contents" title="Table of Contents"
href="contents.html"><img src='../icons/contents.png'
border='0' height='32' alt='Contents' width='32' /></A></td>
<td class='online-navigation'><a href="modindex.html" title="Module Index"><img src='../icons/modules.png'
border='0' height='32' alt='Module Index' width='32' /></a></td>
<td class='online-navigation'><a rel="index" title="Index"
href="genindex.html"><img src='../icons/index.png'
border='0' height='32' alt='Index' width='32' /></A></td>
</tr></table>
<div class='online-navigation'>
<b class="navlabel">Previous:</b>
<a class="sectref" rel="prev" href="node336.html">6.28.3.3 Changing languages on</A>
<b class="navlabel">Up:</b>
<a class="sectref" rel="parent" href="node333.html">6.28.3 Internationalizing your programs</A>
<b class="navlabel">Next:</b>
<a class="sectref" rel="next" href="node338.html">6.28.3.5 gettext() vs. lgettext()</A>
</div>
<hr /></div>
</DIV>
<!--End of Navigation Panel-->
<H3><A NAME="SECTION0082834000000000000000">
6.28.3.4 Deferred translations</A>
</H3>
<P>
In most coding situations, strings are translated where they are coded.
Occasionally however, you need to mark strings for translation, but
defer actual translation until later. A classic example is:
<P>
<div class="verbatim"><pre>
animals = ['mollusk',
'albatross',
'rat',
'penguin',
'python',
]
# ...
for a in animals:
print a
</pre></div>
<P>
Here, you want to mark the strings in the <code>animals</code> list as being
translatable, but you don't actually want to translate them until they
are printed.
<P>
Here is one way you can handle this situation:
<P>
<div class="verbatim"><pre>
def _(message): return message
animals = [_('mollusk'),
_('albatross'),
_('rat'),
_('penguin'),
_('python'),
]
del _
# ...
for a in animals:
print _(a)
</pre></div>
<P>
This works because the dummy definition of <tt class="function">_()</tt> simply returns
the string unchanged. And this dummy definition will temporarily
override any definition of <tt class="function">_()</tt> in the built-in namespace
(until the <tt class="keyword">del</tt> command).
Take care, though if you have a previous definition of <tt class="function">_</tt> in
the local namespace.
<P>
Note that the second use of <tt class="function">_()</tt> will not identify ``a'' as
being translatable to the <b class="program">pygettext</b> program, since it is not
a string.
<P>
Another way to handle this is with the following example:
<P>
<div class="verbatim"><pre>
def N_(message): return message
animals = [N_('mollusk'),
N_('albatross'),
N_('rat'),
N_('penguin'),
N_('python'),
]
# ...
for a in animals:
print _(a)
</pre></div>
<P>
In this case, you are marking translatable strings with the function
<tt class="function">N_()</tt>,<A NAME="tex2html47"
HREF="#foot36714"><SUP>6.6</SUP></A> which won't conflict with any definition of
<tt class="function">_()</tt>. However, you will need to teach your message extraction
program to look for translatable strings marked with <tt class="function">N_()</tt>.
<b class="program">pygettext</b> and <b class="program">xpot</b> both support this through the
use of command line switches.
<P>
<BR><HR><H4>Footnotes</H4>
<DL>
<DT><A NAME="foot36714">...N_(),</A><A
HREF="node337.html#tex2html47"><SUP>6.6</SUP></A></DT>
<DD>The choice of <tt class="function">N_()</tt> here is totally
arbitrary; it could have just as easily been
<tt class="function">MarkThisStringForTranslation()</tt>.
</DD>
</DL>
<DIV CLASS="navigation">
<div class='online-navigation'>
<p></p><hr />
<table align="center" width="100%" cellpadding="0" cellspacing="2">
<tr>
<td class='online-navigation'><a rel="prev" title="6.28.3.3 Changing languages on"
href="node336.html"><img src='../icons/previous.png'
border='0' height='32' alt='Previous Page' width='32' /></A></td>
<td class='online-navigation'><a rel="parent" title="6.28.3 Internationalizing your programs"
href="node333.html"><img src='../icons/up.png'
border='0' height='32' alt='Up One Level' width='32' /></A></td>
<td class='online-navigation'><a rel="next" title="6.28.3.5 gettext() vs. lgettext()"
href="node338.html"><img src='../icons/next.png'
border='0' height='32' alt='Next Page' width='32' /></A></td>
<td align="center" width="100%">Python Library Reference</td>
<td class='online-navigation'><a rel="contents" title="Table of Contents"
href="contents.html"><img src='../icons/contents.png'
border='0' height='32' alt='Contents' width='32' /></A></td>
<td class='online-navigation'><a href="modindex.html" title="Module Index"><img src='../icons/modules.png'
border='0' height='32' alt='Module Index' width='32' /></a></td>
<td class='online-navigation'><a rel="index" title="Index"
href="genindex.html"><img src='../icons/index.png'
border='0' height='32' alt='Index' width='32' /></A></td>
</tr></table>
<div class='online-navigation'>
<b class="navlabel">Previous:</b>
<a class="sectref" rel="prev" href="node336.html">6.28.3.3 Changing languages on</A>
<b class="navlabel">Up:</b>
<a class="sectref" rel="parent" href="node333.html">6.28.3 Internationalizing your programs</A>
<b class="navlabel">Next:</b>
<a class="sectref" rel="next" href="node338.html">6.28.3.5 gettext() vs. lgettext()</A>
</div>
</div>
<hr />
<span class="release-info">Release 2.4.2, documentation updated on 28 September 2005.</span>
</DIV>
<!--End of Navigation Panel-->
<ADDRESS>
See <i><a href="about.html">About this document...</a></i> for information on suggesting changes.
</ADDRESS>
</BODY>
</HTML>