You are here

protected function ViewsBulkOperationsCommands::t in Views Bulk Operations (VBO) 8.3

Same name and namespace in other branches
  1. 8.2 src/Commands/ViewsBulkOperationsCommands.php \Drupal\views_bulk_operations\Commands\ViewsBulkOperationsCommands::t()
  2. 4.0.x src/Commands/ViewsBulkOperationsCommands.php \Drupal\views_bulk_operations\Commands\ViewsBulkOperationsCommands::t()

Translates a string using the dt function.

Parameters

string $message: The message to translate.

array $arguments: (optional) The translation arguments.

Return value

string The translated message.

1 call to ViewsBulkOperationsCommands::t()
ViewsBulkOperationsCommands::vboExecute in src/Commands/ViewsBulkOperationsCommands.php
Execute an action on all results of the specified view.

File

src/Commands/ViewsBulkOperationsCommands.php, line 286

Class

ViewsBulkOperationsCommands
Defines Drush commands for the module.

Namespace

Drupal\views_bulk_operations\Commands

Code

protected function t($message, array $arguments = []) {
  return dt($message, $arguments);
}