All translations

Enter a message name below to show all available translations.

Message

Found 2 translations.

NameCurrent message text
 h English (en)<pre>
function(response) {
   if (response.block == 1) {
       // blocked click
       window.location = 'some.url';
   } else if (response.fraud == 1) {
       // bot
       window.location = 'some.url';
   } else {
       // not a bot
       showAd();
   }
}
</pre>
 h Russian (ru)<pre>
function(response) {
   if (response.block == 1) {
       // blocked click
       window.location = 'some.url';
   } else if (response.fraud == 1) {
       // bot
       window.location = 'some.url';
   } else {
       // not a bot
       showAd();
   }
}
</pre>