function views_t_strings in Views (for Drupal 7) 5
This function is used as a central place to manage some translatable text strings that are used in different places.
Parameters
$text: which string to return.
3 calls to views_t_strings()
- comment_views_tables in modules/
views_comment.inc - This include file implements views functionality on behalf of comment.module
- node_views_tables in modules/
views_node.inc - This include file implements views functionality on behalf of node.module
- profile_views_add_filter in modules/
views_profile.inc - Add profile filters to view table
File
- ./
views.module, line 2107
Code
function views_t_strings($text) {
switch ($text) {
case 'filter date':
return t('The "Value" can either be a date in the format: CCYY-MM-DD HH:MM:SS or the word "now" to use the current time. You may enter a positive or negative number in the "Option" field that will represent the amount of seconds that will be added or substracted to the time; this is most useful when combined with "now". If you have the jscalendar module from jstools installed, you can use a popup date picker here.');
}
}