Skip to content

Commit fcd1ead

Browse files
committed
robo8x [chore] 2/25/2020, 8:22:52 AM
1 parent 5cbff3f commit fcd1ead

File tree

12 files changed

+152
-7
lines changed

12 files changed

+152
-7
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
@license p3x-onenote v2020.4.114
2+
@license p3x-onenote v2020.4.115
33

44
📚 P3X OneNote Linux
55

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212

1313

14-
# 📚 P3X OneNote Linux v2020.4.114
14+
# 📚 P3X OneNote Linux v2020.4.115
1515

1616

1717

@@ -218,7 +218,7 @@ All my domains ([patrikx3.com](https://patrikx3.com) and [corifeus.com](https://
218218

219219
---
220220

221-
[**P3X-ONENOTE**](https://pages.corifeus.com/onenote) Build v2020.4.114
221+
[**P3X-ONENOTE**](https://pages.corifeus.com/onenote) Build v2020.4.115
222222

223223
[![Donate for Corifeus / P3X](https://img.shields.io/badge/Donate-Corifeus-003087.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QZVM4V6HVZJW6) [![Contact Corifeus / P3X](https://img.shields.io/badge/Contact-P3X-ff9900.svg)](https://www.patrikx3.com/en/front/contact) [![Like Corifeus @ Facebook](https://img.shields.io/badge/LIKE-Corifeus-3b5998.svg)](https://www.facebook.com/corifeus.software)
224224

artifacts/new-language.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ All my domains ([patrikx3.com](https://patrikx3.com) and [corifeus.com](https://
2525

2626
---
2727

28-
[**P3X-ONENOTE**](https://pages.corifeus.com/onenote) Build v2020.4.114
28+
[**P3X-ONENOTE**](https://pages.corifeus.com/onenote) Build v2020.4.115
2929

3030
[![Donate for Corifeus / P3X](https://img.shields.io/badge/Donate-Corifeus-003087.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QZVM4V6HVZJW6) [![Contact Corifeus / P3X](https://img.shields.io/badge/Contact-P3X-ff9900.svg)](https://www.patrikx3.com/en/front/contact) [![Like Corifeus @ Facebook](https://img.shields.io/badge/LIKE-Corifeus-3b5998.svg)](https://www.facebook.com/corifeus.software)
3131

artifacts/npm.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ All my domains ([patrikx3.com](https://patrikx3.com) and [corifeus.com](https://
3838

3939
---
4040

41-
[**P3X-ONENOTE**](https://pages.corifeus.com/onenote) Build v2020.4.114
41+
[**P3X-ONENOTE**](https://pages.corifeus.com/onenote) Build v2020.4.115
4242

4343
[![Donate for Corifeus / P3X](https://img.shields.io/badge/Donate-Corifeus-003087.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QZVM4V6HVZJW6) [![Contact Corifeus / P3X](https://img.shields.io/badge/Contact-P3X-ff9900.svg)](https://www.patrikx3.com/en/front/contact) [![Like Corifeus @ Facebook](https://img.shields.io/badge/LIKE-Corifeus-3b5998.svg)](https://www.facebook.com/corifeus.software)
4444

changelog.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77

88
## Change log
99

10+
### v2020.4.115
11+
* FEATURE: Added Spanish translation.
12+
1013
### v2020.4.109
1114
* CHORE: Upgrade to Electron v8.
1215

@@ -137,7 +140,7 @@ All my domains ([patrikx3.com](https://patrikx3.com) and [corifeus.com](https://
137140

138141
---
139142

140-
[**P3X-ONENOTE**](https://pages.corifeus.com/onenote) Build v2020.4.114
143+
[**P3X-ONENOTE**](https://pages.corifeus.com/onenote) Build v2020.4.115
141144

142145
[![Donate for Corifeus / P3X](https://img.shields.io/badge/Donate-Corifeus-003087.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QZVM4V6HVZJW6) [![Contact Corifeus / P3X](https://img.shields.io/badge/Contact-P3X-ff9900.svg)](https://www.patrikx3.com/en/front/contact) [![Like Corifeus @ Facebook](https://img.shields.io/badge/LIKE-Corifeus-3b5998.svg)](https://www.facebook.com/corifeus.software)
143146

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "p3x-onenote",
3-
"version": "2020.4.114",
3+
"version": "2020.4.115",
44
"description": "📚 P3X OneNote Linux",
55
"main": "src/electron/app.js",
66
"corifeus": {

src/electron/app.js

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ const langTranslations = {
1717
'en-US': require('../translation/en-US'),
1818
'de-DE': require('../translation/de-DE'),
1919
'pt-BR': require('../translation/pt-BR'),
20+
'es-ES': require('../translation/es-ES'),
2021
}
2122

2223
const translation = langTranslations[translationKey]

src/electron/window/onenote/load.js

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ const langTranslations = {
3030
'en-US': require('../../../translation/en-US'),
3131
'de-DE': require('../../../translation/de-DE'),
3232
'pt-BR': require('../../../translation/pt-BR'),
33+
'es-ES': require('../../../translation/es-ES'),
3334
}
3435

3536
const translation = langTranslations[translationKey]

src/translation/de-DE.js

+1
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ const translation = {
114114
'en-US': 'Englisch / English',
115115
'de-DE': 'Deutsch / German',
116116
'pt-BR': 'Portuguese / Português',
117+
'es-ES': 'Español / Spanish',
117118
},
118119
},
119120
},

src/translation/en-US.js

+1
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ const translation = {
114114
'en-US': 'English',
115115
'de-DE': 'Deutsch / German',
116116
'pt-BR': 'Português / Portuguese',
117+
'es-ES': 'Español / Spanish',
117118
}
118119
},
119120
},

src/translation/es-ES.js

+137
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,137 @@
1+
const translation = {
2+
title: 'P3X OneNote',
3+
label: {
4+
hideMenu: 'Esconder Menu Principal',
5+
donate: 'Donar',
6+
allowMultiple: {
7+
checkbox: 'Permitir múltiples instancias (podría haber algún comportamiento extraño)',
8+
message: {
9+
yes: 'Puedes usar múltiples instancias, con algún comportamiento extraño.',
10+
no: 'Una sola instancia permitida, sin comportamientos extraños.',
11+
}
12+
},
13+
disableHide: {
14+
//yes: 'Configurar el cierre de manera que la aplicación se minimice a la barra de tareas',
15+
//no: 'Configurar el botónn de cierre de manera que se quite la aplicación',
16+
checkbox: 'Minimizar a la barra de tareas',
17+
message: {
18+
yes: 'El botón de cierre cerrará directamente la aplicación.',
19+
no: 'El botón de cierre, en vez de cerrar la aplicación, la minimizará a la barra de tareas.',
20+
21+
}
22+
},
23+
settings: 'Configuración',
24+
setProxy: 'Configuración del proxy',
25+
openUrl: 'Abrir URL',
26+
promptRedirectUrlTitle: 'Redireccionar a la URL',
27+
edit: 'Editar',
28+
view: 'Ver',
29+
download: 'Bajar',
30+
developer: 'Patrik Laszlo',
31+
personalHome: 'Home Personal',
32+
corporateHome: 'Home Corporativo',
33+
clearCache: 'Salga primero y después haga click en esta opción del menú para borrar la caché.',
34+
quit: 'Quitar',
35+
show: 'Mostrar',
36+
hide: 'Esconder',
37+
copyLocation: 'Copiar esta dirección al portapapeles',
38+
copyLocationCopied: 'Dirección copiada al portapapeles.',
39+
//disallowedContent: '¡Contenido no permitido!.Si no funciona, espere. Se reseteará al home por defecto. (Máx 5 segundos).',
40+
//unknownLink: 'Espere, cambiará mientras carga el destino. Si esto no es una página de OneNote, haga clic en el menú dentro de P3X OneNote home'
41+
},
42+
dialog: {
43+
info: 'Info',
44+
openUrl: {
45+
info: 'Puede ir a cualquier URL que desee.',
46+
placeholder: 'Inserte una URL válida',
47+
48+
},
49+
minimizationBehavior: {
50+
title: 'Comportamiento al minimizar',
51+
},
52+
setProxy: {
53+
placeholder: 'Configuración del proxy',
54+
info: 'Para limpiar el proxy, introduzca una cadena vacía.',
55+
clear: 'Proxy apagado.',
56+
set: (value) => {
57+
return `Proxy configurado como ${value}`
58+
}
59+
},
60+
redirect: {
61+
url: (opts) => {
62+
return `${opts.url}`
63+
},
64+
urlExternal: 'Externa',
65+
urlInternal: 'Interna',
66+
}
67+
},
68+
button: {
69+
yes: 'Si',
70+
no: 'No',
71+
ok: 'OK',
72+
cancel: 'Cancelar',
73+
save: 'Salvar',
74+
clear: 'Limpiar',
75+
go: 'Ir',
76+
77+
},
78+
menu: {
79+
action: 'Acción',
80+
role: {
81+
edit: {
82+
undo: 'Deshacer',
83+
redo: 'Rehacer',
84+
cut: 'Cortar',
85+
copy: 'Copiar',
86+
paste: 'Pegar',
87+
pasteandmatchstyle: 'Pegar con el mismo estilo',
88+
delete: 'Borrar',
89+
selectall: 'Seleccionar todo',
90+
},
91+
view: {
92+
reload: 'Recargar',
93+
forcereload: 'Fozar recarga',
94+
toggledevtools: 'Conmutar herramientas de desarrollo',
95+
resetzoom: 'Resetear Zoom',
96+
zoomin: 'Aumentar zoom',
97+
zoomout: 'Disminuir zoom',
98+
togglefullscreen: 'Cambiar a pantalla completa',
99+
}
100+
},
101+
help: {
102+
title: 'Ayuda',
103+
checkUpdates: 'Revisar actualizaciones'
104+
},
105+
language: {
106+
label: 'Lenguaje / Language',
107+
alert: 'Idioma configurado para español.',
108+
dialog: {
109+
label: 'Configurar el lenguaje en la herramienta en línea de Onenote?',
110+
coperate: 'Cooperar',
111+
personal: 'Personal',
112+
},
113+
translations: {
114+
'en-US': 'Inglés / English',
115+
'de-DE': 'Alemán / German',
116+
'pt-BR': 'Português / Portuguese',
117+
'es-ES': 'Español / Spanish',
118+
}
119+
},
120+
},
121+
redirecting: 'Espere... redireccionando a una nueva libreta. Tardará un poco...',
122+
slow: 'Espere, cargar OneNote tarda un poco...',
123+
updater: {
124+
'checking-for-update': 'Buscando actualizaciones...',
125+
'update-available': 'Bajando la última release ...',
126+
'update-not-available': 'No existen nuevas actualizaciones.',
127+
error: (opts) => {
128+
return `Error en el auto-updater: ${opts.errorMessage}`
129+
},
130+
'download-progress': (opts) => {
131+
return 'Bajado ' + opts.progressObj.percent + '%'
132+
},
133+
'update-downloaded': 'Actualización bajada. Reinicie la aplicación para actualizar.'
134+
}
135+
};
136+
137+
module.exports = translation;

src/translation/pt-BR.js

+1
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ const translation = {
114114
'en-US': 'English',
115115
'de-DE': 'Deutsch / German',
116116
'pt-BR': 'Português / Portuguese',
117+
'es-ES': 'Español / Spanish',
117118
}
118119
},
119120
},

0 commit comments

Comments
 (0)