Skip to content

Commit b63a9a1

Browse files
committed
Merge pull request processing#3700 from federicobond/misc-fixes
Miscelaneous language improvements
2 parents 42e4c3c + 71b076a commit b63a9a1

3 files changed

Lines changed: 9 additions & 3 deletions

File tree

build/shared/lib/languages/PDE.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ menu.tools.add_tool = Add Tool...
106106
# | File | Edit | Sketch | Debug | Tools | Help |
107107
# | Help |
108108
menu.help = Help
109+
menu.help.welcome = Welcome to Processing 3
109110
menu.help.about = About Processing
110111
menu.help.environment = Environment
111112
menu.help.reference = Reference

build/shared/lib/languages/PDE_es.properties

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,13 +104,14 @@ menu.tools.add_tool = Añadir herramienta...
104104
# | File | Edit | Sketch | Debug | Tools | Help |
105105
# | Help |
106106
menu.help = Ayuda
107+
menu.help.welcome = Bienvenida a Processing 3
107108
menu.help.about = Acerca de Processing
108109
menu.help.environment = Entorno
109110
menu.help.reference = Referencia
110111
menu.help.find_in_reference = Buscar en la referencia
111112
menu.help.libraries_reference = Referencia de Bibliotecas
112113
menu.help.tools_reference = Referencia de Herramientas
113-
menu.help.empty = (empty)
114+
menu.help.empty = (vacío)
114115
menu.help.online = Online
115116
menu.help.getting_started = Primeros Pasos
116117
menu.help.getting_started.url = http://processing.org/learning/gettingstarted/
@@ -201,7 +202,7 @@ sketchbook = Sketchbook
201202
sketchbook.tree = Sketchbook
202203

203204
# Examples (Frame)
204-
examples = Ejemplos
205+
examples.title = Ejemplos para %s
205206
examples.add_examples = Añadir ejemplos...
206207
examples.libraries = Bibliotecas
207208
examples.core_libraries = Bibliotecas principales
@@ -226,6 +227,10 @@ export.full_screen = Pantalla completa
226227
export.embed_java = Incrustar Java
227228
export.embed_java.for = Incrustar Java para
228229
export.code_signing = Firma de código
230+
export.messages.is_read_only = El sketch es de sólo lectura
231+
export.messages.is_read_only.description = Algunos archivos han sido marcados como de sólo lectura\npor lo que necesitarás guardar el sketch\n en otra ubicación e intentar nuevamente.
232+
export.messages.cannot_export = No se puede exportar
233+
export.messages.cannot_export.description = No puede exportar un sketch que no haya sido guardado.
229234

230235
# Find (Frame)
231236
find = Buscar

java/src/processing/mode/java/JavaEditor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ public void actionPerformed(ActionEvent e) {
279279
menu.add(item);
280280
}
281281

282-
item = new JMenuItem("Welcome to Processing 3");
282+
item = new JMenuItem(Language.text("menu.help.welcome"));
283283
item.addActionListener(new ActionListener() {
284284
public void actionPerformed(ActionEvent e) {
285285
try {

0 commit comments

Comments
 (0)