Skip to content

Instantly share code, notes, and snippets.

@ahmedeshaan
Created October 5, 2017 05:38
Show Gist options
  • Save ahmedeshaan/1cd42cd3caf11783eaad7705f3679201 to your computer and use it in GitHub Desktop.
Save ahmedeshaan/1cd42cd3caf11783eaad7705f3679201 to your computer and use it in GitHub Desktop.
<?php
add_filter('gettext', 'translate_text');
add_filter('ngettext', 'translate_text');
function translate_text($translated) {
$translated = str_ireplace('Shopping Cart', 'Warenkorb', $translated);
$translated = str_ireplace('Checkout details', 'Bestellübersicht', $translated);
$translated = str_ireplace('Order Complete', 'Bestellung ausgeführt', $translated);
return $translated;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment