Add missing translations

This commit is contained in:
Paulo Gustavo Veiga
2022-11-12 09:49:04 -08:00
parent 1e8685778d
commit 73788bcfe1
17 changed files with 84 additions and 18 deletions

View File

@ -217,5 +217,8 @@
},
"shortcut-help-pane.undo": {
"defaultMessage": "Rückgängerausgabe"
},
"icon-picker.show-images": {
"defaultMessage": "Bilder anzeigen"
}
}

View File

@ -122,6 +122,9 @@
"editor.try-welcome-mobile": {
"defaultMessage": "This edition space showcases some of the mindmap editor capabilities!"
},
"icon-picker.show-images": {
"defaultMessage": "Show images"
},
"link.help_text": {
"defaultMessage": "Address is not valid"
},

View File

@ -211,5 +211,8 @@
},
"shortcut-help-pane.undo": {
"defaultMessage": "Deshacer cambios"
},
"icon-picker.show-images": {
"defaultMessage": "Mostrar imagenes"
}
}

View File

@ -211,5 +211,8 @@
},
"shortcut-help-pane.undo": {
"defaultMessage": "Annuler l'édition"
},
"icon-picker.show-images": {
"defaultMessage": "Afficher les images"
}
}

View File

@ -251,6 +251,12 @@
"value": "Diese Edition zeigt einige der Mindmap-Funktionen!"
}
],
"icon-picker.show-images": [
{
"type": 0,
"value": "Bilder anzeigen"
}
],
"link.help_text": [
{
"type": 0,

View File

@ -245,6 +245,12 @@
"value": "This edition space showcases some of the mindmap editor capabilities!"
}
],
"icon-picker.show-images": [
{
"type": 0,
"value": "Show images"
}
],
"link.help_text": [
{
"type": 0,

View File

@ -245,6 +245,12 @@
"value": "¡Este espacio de edición muestra algunas de las capacidades de mapas mentales!"
}
],
"icon-picker.show-images": [
{
"type": 0,
"value": "Mostrar imagenes"
}
],
"link.help_text": [
{
"type": 0,

View File

@ -245,6 +245,12 @@
"value": "Cet espace d'édition présente certaines des fonctionnalités des cartes mentales!"
}
],
"icon-picker.show-images": [
{
"type": 0,
"value": "Afficher les images"
}
],
"link.help_text": [
{
"type": 0,

View File

@ -23,6 +23,7 @@ import IconImageTab from './image-icon-tab';
import Switch from '@mui/material/Switch';
import FormGroup from '@mui/material/FormGroup';
import FormControlLabel from '@mui/material/FormControlLabel';
import { FormattedMessage } from 'react-intl';
type IconPickerProp = {
triggerClose: () => void;
@ -53,7 +54,10 @@ const IconPicker = ({ triggerClose, iconModel }: IconPickerProp): ReactElement =
return (
<div style={{ padding: '5px' }}>
<FormGroup>
<FormControlLabel label="Show Images" control={<Switch onChange={handleCheck} />} />
<FormControlLabel
label={<FormattedMessage id="icon-picker.show-images" defaultMessage="Show images" />}
control={<Switch onChange={handleCheck} />}
/>
</FormGroup>
{checked && (