source: sipes/modules_contrib/views/help/localization.html @ 65dadeb

stableversion-3.0
Last change on this file since 65dadeb was 65dadeb, checked in by José Gregorio Puentes <jpuentes@…>, 8 años ago

se agregaron los archivos de la nueva version del modulo

  • Propiedad mode establecida a 100644
File size: 2.1 KB
Línea 
1<p>On multilingual sites, custom and overridden views may contain text that could be translated into one or more languages. Views makes this data available for translation.</p>
2
3<p>You can select which localization plugin to use at <strong>Administer &gt;&gt; Site building &gt;&gt; Views &gt;&gt; Tools</strong>. By default, Views supports "None" (don't localize these strings) and "Core" (use Drupal core's t() function).</p>
4
5<p>While it "works", the Core plugin is not recommended, as it doesn't support updates to existing strings. If you need to translate Views labels into other languages, consider installing the <a href="http://drupal.org/project/i18n">Internationalization</a> package's Views translation module.</p>
6
7<p>To prevent security issues, you may wish to install the PHP translation module, also part of the <a href="http://drupal.org/project/i18n">Internationalization</a> package.
8
9When this module is installed, PHP code is replaced with placeholders before being passed for translation. For example, a header with the following text
10
11<code>Welcome, you are visitor number &lt;?php echo visitor_count(); ?&gt;.</code>
12
13would be passed as
14
15<code>Welcome, you are visitor number !php0.</code>
16
17As well as addressing potential security holes, using placeholders in translations avoids presenting confusing code to translators.</p>
18
19<p>To prevent the possible insertion of additional PHP in translations, translated text is passed through strip_tags(), a function used to strip out PHP and HTML tags from text.</p>
20
21<p>If you have enabled PHP translation and wish to retain some HTML in e.g. a header or footer that accepts PHP:
22
23<ul>
24<li>Create a filter format that has both the "HTML filter" and "PHP evaluator" filters.</li>
25<li>Rearrange the order of the filters if necessary to ensure that the PHP evaluator runs before the HTML filter (because otherwise the HTML filter will remove PHP before it can be run).</li>
26<li>Select this filter format for your Views property (e.g., header).</li>
27</ul>
28
29Following this approach will ensure that you can retain a subset of HTML tags while safely using PHP in translatable Views text.</p>
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.