[desktop] [docs] Rename ML (#2676)
This commit is contained in:
@@ -10,10 +10,6 @@ export const sidebar = [
|
||||
text: "Features",
|
||||
collapsed: true,
|
||||
items: [
|
||||
{
|
||||
text: "Advanced search",
|
||||
link: "/photos/features/advanced-search",
|
||||
},
|
||||
{ text: "Albums", link: "/photos/features/albums" },
|
||||
{ text: "Archiving", link: "/photos/features/archive" },
|
||||
{
|
||||
@@ -47,6 +43,10 @@ export const sidebar = [
|
||||
text: "Location tags",
|
||||
link: "/photos/features/location-tags",
|
||||
},
|
||||
{
|
||||
text: "Machine learning",
|
||||
link: "/photos/features/machine-learning",
|
||||
},
|
||||
{ text: "Map", link: "/photos/features/map" },
|
||||
{
|
||||
text: "Passkeys",
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
---
|
||||
title: Advanced search
|
||||
title: Machine learning
|
||||
description:
|
||||
On device machine learning in Ente for face and natural language search
|
||||
Ente supports on-device machine learning for face and natural language search
|
||||
---
|
||||
|
||||
# Advanced search
|
||||
# Machine learning
|
||||
|
||||
> [!NOTE]
|
||||
>
|
||||
@@ -95,7 +95,7 @@ export const Preferences: React.FC<SettingsDrawerProps> = ({
|
||||
<EnteMenuItem
|
||||
endIcon={<ChevronRight />}
|
||||
onClick={() => setOpenMLSettings(true)}
|
||||
label={t("face_and_magic_search")}
|
||||
label={t("ml_search")}
|
||||
/>
|
||||
</MenuItemGroup>
|
||||
</Box>
|
||||
|
||||
@@ -478,7 +478,7 @@
|
||||
"ROOT_LEVEL_FILE_WITH_FOLDER_NOT_ALLOWED_MESSAGE": "<p>You have dragged and dropped a mixture of files and folders.</p><p>Please provide either only files, or only folders when selecting option to create separate albums</p>",
|
||||
"CHOSE_THEME": "Choose theme",
|
||||
"more_details": "More details",
|
||||
"face_and_magic_search": "Face and magic search",
|
||||
"ml_search": "Machine learning",
|
||||
"ml_search_description": "Ente supports on-device machine learning for face recognition, magic search and other advanced search features",
|
||||
"ml_search_footnote": "Magic search allows to search photos by their contents, e.g. 'car', 'red car', 'Ferrari'",
|
||||
"indexing": "Indexing",
|
||||
@@ -486,8 +486,8 @@
|
||||
"indexing_status_running": "Running",
|
||||
"indexing_status_scheduled": "Scheduled",
|
||||
"indexing_status_done": "Done",
|
||||
"ml_search_disable": "Disable face and magic search",
|
||||
"ml_search_disable_confirm": "Do you want to disable face and magic search on all your devices?",
|
||||
"ml_search_disable": "Disable machine learning",
|
||||
"ml_search_disable_confirm": "Do you want to disable machine learning on all your devices?",
|
||||
"enable_face_search": "Enable face recognition",
|
||||
"enable_face_search_title": "Enable face recognition?",
|
||||
"enable_face_search_description": "<p>If you enable face recognition, Ente will extract face geometry from your photos. This will happen on your device, and any generated biometric data will be end-to-encrypted.</p><p><a>Please click here for more details about this feature in our privacy policy</a></p>",
|
||||
|
||||
@@ -123,7 +123,7 @@ export const MLSettings: React.FC<MLSettingsProps> = ({
|
||||
<Stack spacing={"4px"} py={"12px"}>
|
||||
<Titlebar
|
||||
onClose={onClose}
|
||||
title={t("face_and_magic_search")}
|
||||
title={t("ml_search")}
|
||||
onRootClose={onRootClose}
|
||||
/>
|
||||
{component}
|
||||
@@ -155,7 +155,7 @@ interface EnableMLProps {
|
||||
|
||||
const EnableML: React.FC<EnableMLProps> = ({ onEnable }) => {
|
||||
const moreDetails = () =>
|
||||
openURL("https://help.ente.io/photos/features/advanced-search");
|
||||
openURL("https://help.ente.io/photos/features/machine-learning");
|
||||
|
||||
return (
|
||||
<Stack py={"20px"} px={"16px"} spacing={"32px"}>
|
||||
|
||||
Reference in New Issue
Block a user