You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.2 KiB
TypeScript
44 lines
1.2 KiB
TypeScript
2 years ago
|
import Trans from "./Trans";
|
||
|
|
||
2 years ago
|
const BraveMeasureTextError = () => {
|
||
|
return (
|
||
|
<div data-testid="brave-measure-text-error">
|
||
|
<p>
|
||
2 years ago
|
<Trans
|
||
|
i18nKey="errors.brave_measure_text_error.line1"
|
||
|
bold={(el) => <span style={{ fontWeight: 600 }}>{el}</span>}
|
||
|
/>
|
||
|
</p>
|
||
|
<p>
|
||
|
<Trans
|
||
|
i18nKey="errors.brave_measure_text_error.line2"
|
||
|
bold={(el) => <span style={{ fontWeight: 600 }}>{el}</span>}
|
||
|
/>
|
||
2 years ago
|
</p>
|
||
|
<p>
|
||
2 years ago
|
<Trans
|
||
|
i18nKey="errors.brave_measure_text_error.line3"
|
||
|
link={(el) => (
|
||
|
<a href="http://docs.excalidraw.com/docs/@excalidraw/excalidraw/faq#turning-off-aggresive-block-fingerprinting-in-brave-browser">
|
||
|
{el}
|
||
|
</a>
|
||
|
)}
|
||
|
/>
|
||
2 years ago
|
</p>
|
||
|
<p>
|
||
2 years ago
|
<Trans
|
||
|
i18nKey="errors.brave_measure_text_error.line4"
|
||
|
issueLink={(el) => (
|
||
|
<a href="https://github.com/excalidraw/excalidraw/issues/new">
|
||
|
{el}
|
||
|
</a>
|
||
|
)}
|
||
|
discordLink={(el) => <a href="https://discord.gg/UexuTaE">{el}.</a>}
|
||
|
/>
|
||
2 years ago
|
</p>
|
||
|
</div>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default BraveMeasureTextError;
|