LoginSignup
1
3

More than 5 years have passed since last update.

これは〇〇語のページです、翻訳しますか?とサイトに表示されてしまう場合の対処

Last updated at Posted at 2017-06-26

自サイトにおいてこれは〇〇語のページです、翻訳しますかとChromeが言ってくる

image.png

すごく基本的なことですが、そんなときにの対処方法。を2点紹介

HTMLタグにlangを指定する

index.html
<html lang="ja">
</html>

文字コードをセットする

index.html
<html>
  <head>
    <meta charset="UTF-8">
  </meta>
</html>

上記2つ実施した上でブラウザをキャッシュごと削除して更新すると日本語として認識してくれるようになると思います

1
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
3