mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-22 06:37:56 +01:00
Add missing translations
This commit is contained in:
parent
1e8685778d
commit
73788bcfe1
@ -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 && (
|
||||
|
@ -512,5 +512,8 @@
|
||||
},
|
||||
"footer.team": {
|
||||
"defaultMessage": "Team"
|
||||
},
|
||||
"dialog.loading": {
|
||||
"defaultMessage": "Wird geladen ..."
|
||||
}
|
||||
}
|
@ -116,6 +116,9 @@
|
||||
"deletem.title": {
|
||||
"defaultMessage": "All selected maps will be deleted"
|
||||
},
|
||||
"dialog.loading": {
|
||||
"defaultMessage": "Loading ..."
|
||||
},
|
||||
"duplicate.title": {
|
||||
"defaultMessage": "Duplicate"
|
||||
},
|
||||
@ -152,6 +155,9 @@
|
||||
"footer.contactus": {
|
||||
"defaultMessage": "Contact Us"
|
||||
},
|
||||
"footer.donations": {
|
||||
"defaultMessage": "Donations"
|
||||
},
|
||||
"footer.faq": {
|
||||
"defaultMessage": "F.A.Q."
|
||||
},
|
||||
@ -173,9 +179,6 @@
|
||||
"footer.team": {
|
||||
"defaultMessage": "Our Team"
|
||||
},
|
||||
"footer.donations": {
|
||||
"defaultMessage": "Donations"
|
||||
},
|
||||
"footer.termsandconditions": {
|
||||
"defaultMessage": "Term And Conditions"
|
||||
},
|
||||
@ -221,12 +224,12 @@
|
||||
"import.description": {
|
||||
"defaultMessage": "You can import WiseMapping and Freemind maps to your list of maps. Select the file you want to import."
|
||||
},
|
||||
"import.error-file": {
|
||||
"defaultMessage": "Import error {error}"
|
||||
},
|
||||
"import.title": {
|
||||
"defaultMessage": "Import existing mindmap"
|
||||
},
|
||||
"import.error-file": {
|
||||
"defaultMessage": "Import failed: {error}"
|
||||
},
|
||||
"info.basic-info": {
|
||||
"defaultMessage": "Basic Info"
|
||||
},
|
||||
@ -311,10 +314,6 @@
|
||||
"login.forgotpwd": {
|
||||
"defaultMessage": "Forgot Password ?"
|
||||
},
|
||||
"login.hsqldbcofig": {
|
||||
"defaultMessage": "Although HSQLDB is bundled with WiseMapping by default during the installation, we do not recommend this database for production use. Please consider using MySQL 5.7 instead. You can find more information how to configure MySQL",
|
||||
"description": "Missing production database configured"
|
||||
},
|
||||
"login.page-title": {
|
||||
"defaultMessage": "Login | WiseMapping"
|
||||
},
|
||||
|
@ -488,5 +488,8 @@
|
||||
},
|
||||
"editor.try-welcome-description": {
|
||||
"defaultMessage": "Regístrese para comenzar a crear, compartir y publicar una cantidad ilimitada de mapas mentales de forma gratuita."
|
||||
},
|
||||
"dialog.loading": {
|
||||
"defaultMessage": "Cargando ..."
|
||||
}
|
||||
}
|
@ -515,5 +515,8 @@
|
||||
},
|
||||
"footer.team": {
|
||||
"defaultMessage": "Equipe"
|
||||
},
|
||||
"dialog.loading": {
|
||||
"defaultMessage": "Chargement ..."
|
||||
}
|
||||
}
|
@ -233,6 +233,12 @@
|
||||
"value": "Alle ausgewählten Mindmaps werden gelöscht"
|
||||
}
|
||||
],
|
||||
"dialog.loading": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Wird geladen ..."
|
||||
}
|
||||
],
|
||||
"duplicate.title": [
|
||||
{
|
||||
"type": 0,
|
||||
|
@ -233,6 +233,12 @@
|
||||
"value": "All selected maps will be deleted"
|
||||
}
|
||||
],
|
||||
"dialog.loading": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Loading ..."
|
||||
}
|
||||
],
|
||||
"duplicate.title": [
|
||||
{
|
||||
"type": 0,
|
||||
@ -446,7 +452,7 @@
|
||||
"import.error-file": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Import failed: "
|
||||
"value": "Import error "
|
||||
},
|
||||
{
|
||||
"type": 1,
|
||||
@ -631,12 +637,6 @@
|
||||
"value": "Forgot Password ?"
|
||||
}
|
||||
],
|
||||
"login.hsqldbcofig": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Although HSQLDB is bundled with WiseMapping by default during the installation, we do not recommend this database for production use. Please consider using MySQL 5.7 instead. You can find more information how to configure MySQL"
|
||||
}
|
||||
],
|
||||
"login.page-title": [
|
||||
{
|
||||
"type": 0,
|
||||
|
@ -227,6 +227,12 @@
|
||||
"value": "Todos los mapas seleccionados serán eliminados"
|
||||
}
|
||||
],
|
||||
"dialog.loading": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Cargando ..."
|
||||
}
|
||||
],
|
||||
"duplicate.title": [
|
||||
{
|
||||
"type": 0,
|
||||
|
@ -233,6 +233,12 @@
|
||||
"value": "Toutes les cartes sélectionnées seront supprimées"
|
||||
}
|
||||
],
|
||||
"dialog.loading": [
|
||||
{
|
||||
"type": 0,
|
||||
"value": "Chargement ..."
|
||||
}
|
||||
],
|
||||
"duplicate.title": [
|
||||
{
|
||||
"type": 0,
|
||||
|
Loading…
Reference in New Issue
Block a user