This commit is contained in:
Stefan Pejcic 2024-02-10 17:29:35 +01:00
parent 3ff9045fd7
commit a142365aca
2 changed files with 27 additions and 1 deletions

View file

@ -0,0 +1,25 @@
import * as React from "react";
import { SVGProps } from "react";
const SvgLanguages = (props: SVGProps<SVGSVGElement>) => (
<svg
width={48}
height={48}
viewBox="0 0 48 48"
stroke="currentColor"
fill="none"
stroke-linecap="round"
stroke-linejoin="round"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
<path d="M4 5h7" />
<path d="M9 3v2c0 4.418 -2.239 8 -5 8" />
<path d="M5 9c0 2.144 2.952 3.908 6.7 4" />
<path d="M12 20l4 -9l4 9" />
<path d="M19.1 18h-6.2" />
</svg>
);
export default SvgLanguages;

View file

@ -1,6 +1,7 @@
import { IntegrationsType } from "../types/integrations";
import {
Ably,
Languages,
Airtable,
Antd,
Appwrite,
@ -289,7 +290,7 @@ export const integrations: IntegrationsType = {
},
{
name: "Multi-language support",
icon: '<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-language" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M4 5h7" /><path d="M9 3v2c0 4.418 -2.239 8 -5 8" /><path d="M5 9c0 2.144 2.952 3.908 6.7 4" /><path d="M12 20l4 -9l4 9" /><path d="M19.1 18h-6.2" /></svg>',
icon: Languages,
description:
"OpenPanel is translation ready. Each login can view OpenPanel in their preferred language.",
url: "/docs/admin/customize/localization/",