Gets table name for storing string object.
Drupal\locale\StringInterface $string: The string object.
string The table name.
protected function dbStringTable($string) {
  if ($string
    ->isSource()) {
    return 'locales_source';
  }
  elseif ($string
    ->isTranslation()) {
    return 'locales_target';
  }
}