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.

You can select which localization plugin to use at Administer >> Site building >> Views >> Tools. By default, Views supports "None" (don't localize these strings) and "Core" (use Drupal core's t() function).

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 Internationalization package's Views translation module.

To prevent security issues, you may wish to install the PHP translation module, also part of the Internationalization package. When this module is installed, PHP code is replaced with placeholders before being passed for translation. For example, a header with the following text Welcome, you are visitor number <?php echo visitor_count(); ?>. would be passed as Welcome, you are visitor number !php0. As well as addressing potential security holes, using placeholders in translations avoids presenting confusing code to translators.

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.

If you have enabled PHP translation and wish to retain some HTML in e.g. a header or footer that accepts PHP:

Following this approach will ensure that you can retain a subset of HTML tags while safely using PHP in translatable Views text.