On example sentences, can I hide the japanese and see the english?

My reasoning is that after I learn a grammar point and read some of the relevant info, I always write all of the example sentences as writing practice and also to learn new vocab.

I think this practice could be even better if there was a way to see only the english phrase, so that I can try to translate it into japanese before reading and see how well it went.

I can always try to just ignore the japanese and do it anyway though (just got the idea lol), but maybe this could be a feature? Anyway, thanks.

@nyo We do not currently have the ability to hide Japanese sentences in reviews. However, this is something that we can look into adding in the future. Thank you for your suggestion! Cheers!

4 Likes

You can use a browser extension such as Tampermonkey to run this userscript which will hide Japanese Example sentences, you can toggle this script on and off to hide and show the sentences.

// ==UserScript==
// @name         Bunpro: Hide Japanese Example Sentances
// @version      1.0
// @description  Hides Japanese Example Sentances in Bunpro
// @author       Ambo100
// @match        https://bunpro.jp/grammar_points/*
// @grant        none
// @namespace https://greasyfork.org/users/230700
// ==/UserScript==

(function() {
    'use strict';

    var exampleSentances;

    Start();

    function Start()
    {
        exampleSentances = document.getElementsByClassName("japanese-example-sentence");

        for(var i = 0; i < exampleSentances.length; i++)
        {
            exampleSentances[i].style.visibility = "hidden";
        }
    }
}
)();
3 Likes

@Ambo100 You are the real MVP. Cheers!

2 Likes