搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

Missing button ''Listen'' on the Google translate

  • 5 个回答
  • 1 人有此问题
  • 1 次查看
  • 最后回复者为 joker_break

more options

Hi. When i translate word button Listen" isn't shows.

Hi. When i translate word button ''Listen" isn't shows.

所有回复 (5)

more options

Make sure you are not blocking content.

Start Firefox in Safe Mode {web link}

A small dialog should appear. Click Start In Safe Mode (not Refresh). Is the problem still there?


One issue that seems more common lately is Firefox's Content Blocking. When it is blocking content in a page, a shield icon will appear at the left end of the address bar next to the padlock icon. This article has more info on managing this feature:

https://support.mozilla.org/en-US/kb/content-blocking

more options

problem is still save

more options

joker_break said

problem is still save

Hello joker_break,

Google Translate uses Adobe Flash - that plugin doesn't show in your system details ...... (?)

Please see : https://askubuntu.com/questions/1018233/google-translate-audio-button-missing

Also : https://itsfoss.com/install-adobe-flash-player-in-ubuntu-13-04/

And : https://www.wikihow.com/Install-Flash-Player-on-Ubuntu

more options

I don't think that Listen still uses the Flash plugin. I see code to create an AUDIO tag to play an audio file (mp3, ogg, wav) detected via canPlayType().

Do you otherwise have a problem to play audio files?

Make sure you have the latest FFmpeg packages installed.


var b = cu('audio/mpeg') ? 1 : 0,
c = cu('audio/ogg') ? 1 : 0,
d = cu('audio/wav') ? 1 : 0;

var cu = function (a) {
try {
var b = F('AUDIO');
return null != b && null != b.canPlayType && null != b.load && null != b.play && null != b.paused && null != b.pause && 'no' != b.canPlayType(a) && '' != b.canPlayType(a)
} catch (c) {
return !1
}
};
more options