mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2025-06-11 18:43:22 +02:00
Add missing translations
This commit is contained in:
@ -217,5 +217,8 @@
|
||||
},
|
||||
"shortcut-help-pane.undo": {
|
||||
"defaultMessage": "Rückgängerausgabe"
|
||||
},
|
||||
"icon-picker.show-images": {
|
||||
"defaultMessage": "Bilder anzeigen"
|
||||
}
|
||||
}
|
@ -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"
|
||||
},
|
||||
|
@ -211,5 +211,8 @@
|
||||
},
|
||||
"shortcut-help-pane.undo": {
|
||||
"defaultMessage": "Deshacer cambios"
|
||||
},
|
||||
"icon-picker.show-images": {
|
||||
"defaultMessage": "Mostrar imagenes"
|
||||
}
|
||||
}
|
@ -211,5 +211,8 @@
|
||||
},
|
||||
"shortcut-help-pane.undo": {
|
||||
"defaultMessage": "Annuler l'édition"
|
||||
},
|
||||
"icon-picker.show-images": {
|
||||
"defaultMessage": "Afficher les images"
|
||||
}
|
||||
}
|
@ -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,
|
||||
|
@ -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,
|
||||
|
@ -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,
|
||||
|
@ -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,
|
||||
|
@ -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 && (
|
||||
|
Reference in New Issue
Block a user