You are here

public function views_plugin_localization_core::translate_string in Views (for Drupal 7) 7.3

Same name and namespace in other branches
  1. 6.3 plugins/views_plugin_localization_core.inc \views_plugin_localization_core::translate_string()

Translate a string.

Parameters

string $string: The string to be translated.

array $keys: An array of keys to identify the string. Generally constructed from view name, display_id, and a property, e.g., 'header'.

string $format: The input format of the string. This is optional.

Overrides views_plugin_localization::translate_string

File

plugins/views_plugin_localization_core.inc, line 26
Definition of views_plugin_localization_core.

Class

views_plugin_localization_core
Localization plugin to pass translatable strings through t().

Code

public function translate_string($string, $keys = array(), $format = '') {
  return t($string);
}