/**
* Theme Name: Bocpak Child
* Description: This is a child theme of Bocpak, generated by Merlin WP.
* Author: <a href="http://themelexus.com/">Themelexus</a>
* Template: bocpak
* Version: 1.0.8
*/


add_filter('gettext', 'custom_translate_quantity_text', 999, 3);
add_filter('ngettext', 'custom_translate_quantity_text', 999, 3);

function custom_translate_quantity_text($translated, $original, $domain) {
    if (trim($original) === 'Categories') {
        return 'Kategorien';
    }
    return $translated;
}
