Skip to content

Instantly share code, notes, and snippets.

@maciejzgadzaj
Last active August 29, 2015 14:27
Show Gist options
  • Select an option

  • Save maciejzgadzaj/10f116992f9d07d2a81a to your computer and use it in GitHub Desktop.

Select an option

Save maciejzgadzaj/10f116992f9d07d2a81a to your computer and use it in GitHub Desktop.
Drupal: un-translate a translated string
global $language;
$locale_t = &drupal_static('locale');
$locale_strings = array_flip($locale_t[$language->language]['']);
$untranslated_value = strtr($translated_value, $locale_strings);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment