@univerjs/slides-ui 0.9.2 → 0.9.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/cjs/index.js +1 -1
- package/lib/cjs/locale/ca-ES.js +1 -0
- package/lib/cjs/locale/es-ES.js +1 -0
- package/lib/es/index.js +231 -231
- package/lib/es/locale/ca-ES.js +39 -0
- package/lib/es/locale/es-ES.js +39 -0
- package/lib/index.js +231 -231
- package/lib/locale/ca-ES.js +39 -0
- package/lib/locale/es-ES.js +39 -0
- package/lib/types/locale/ca-ES.d.ts +3 -0
- package/lib/types/locale/es-ES.d.ts +3 -0
- package/lib/umd/index.js +1 -1
- package/lib/umd/locale/ca-ES.js +1 -0
- package/lib/umd/locale/es-ES.js +1 -0
- package/package.json +11 -11
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
const e = {
|
|
2
|
+
slide: {
|
|
3
|
+
append: "Afegeix diapositiva",
|
|
4
|
+
text: {
|
|
5
|
+
insert: {
|
|
6
|
+
title: "Insereix text"
|
|
7
|
+
}
|
|
8
|
+
},
|
|
9
|
+
shape: {
|
|
10
|
+
insert: {
|
|
11
|
+
title: "Insereix forma",
|
|
12
|
+
rectangle: "Insereix rectangle"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
image: {
|
|
16
|
+
insert: {
|
|
17
|
+
title: "Insereix imatge",
|
|
18
|
+
float: "Insereix imatge flotant"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
popup: {
|
|
22
|
+
edit: "Edita",
|
|
23
|
+
delete: "Elimina"
|
|
24
|
+
},
|
|
25
|
+
sidebar: {
|
|
26
|
+
text: "Edita text",
|
|
27
|
+
shape: "Edita forma",
|
|
28
|
+
image: "Edita imatge"
|
|
29
|
+
},
|
|
30
|
+
panel: {
|
|
31
|
+
fill: {
|
|
32
|
+
title: "Color de farciment"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
};
|
|
37
|
+
export {
|
|
38
|
+
e as default
|
|
39
|
+
};
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
const e = {
|
|
2
|
+
slide: {
|
|
3
|
+
append: "Añadir diapositiva",
|
|
4
|
+
text: {
|
|
5
|
+
insert: {
|
|
6
|
+
title: "Insertar texto"
|
|
7
|
+
}
|
|
8
|
+
},
|
|
9
|
+
shape: {
|
|
10
|
+
insert: {
|
|
11
|
+
title: "Insertar forma",
|
|
12
|
+
rectangle: "Insertar rectángulo"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
image: {
|
|
16
|
+
insert: {
|
|
17
|
+
title: "Insertar imagen",
|
|
18
|
+
float: "Insertar imagen flotante"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
popup: {
|
|
22
|
+
edit: "Editar",
|
|
23
|
+
delete: "Eliminar"
|
|
24
|
+
},
|
|
25
|
+
sidebar: {
|
|
26
|
+
text: "Editar texto",
|
|
27
|
+
shape: "Editar forma",
|
|
28
|
+
image: "Editar imagen"
|
|
29
|
+
},
|
|
30
|
+
panel: {
|
|
31
|
+
fill: {
|
|
32
|
+
title: "Color de relleno"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
};
|
|
37
|
+
export {
|
|
38
|
+
e as default
|
|
39
|
+
};
|