Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disabled translation the page causing the issues #6993

Merged
merged 2 commits into from
Oct 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
### Fixed

- Added 'notranslate' markers to avoid issues caused by extension translators
(<https://github.com/opencv/cvat/pull/6993>)
4 changes: 3 additions & 1 deletion cvat-ui/src/index.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<!--
Copyright (C) 2020-2022 Intel Corporation
Copyright (C) 2023 CVAT.ai Corporation

SPDX-License-Identifier: MIT
-->
Expand All @@ -10,6 +11,7 @@
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="google" value="notranslate">
<meta
name="description"
content="Computer Vision Annotation Tool (CVAT) is a free, open source, web-based image and video annotation tool which is used for labeling data for computer vision algorithms. CVAT supports the primary tasks of supervised machine learning: object detection, image classification, and image segmentation. CVAT allows users to annotate data for each of these cases"
Expand All @@ -20,7 +22,7 @@
<link href="https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,400;8..144,500;8..144,600;8..144,700;8..144,800&family=Sora&display=swap" rel="stylesheet"> </head>
<title>Computer Vision Annotation Tool</title>
</head>
<body>
<body translate="no">
<div id="root"></div>
<div id="layout-grid"></div>
</body>
Expand Down