Merge branch 'master' of github.com:processing/processing

This commit is contained in:
Ben Fry
2015-06-17 19:25:41 -04:00
12 changed files with 16 additions and 17 deletions

View File

@@ -281,7 +281,7 @@ toolbar.debug = Debug
toolbar.new = New
toolbar.open = Open
toolbar.save = Save
toolbar.export_application = Export Application
# toolbar.export_application = Export Application
toolbar.add_mode = Add mode...
# [Debug] [Continue] [Step] [Stop] [Toggle Breakpoints] [Variable Inspector]

View File

@@ -249,7 +249,7 @@ toolbar.stop = Stoppen
toolbar.new = Neu
toolbar.open = Öffnen
toolbar.save = Speichern
toolbar.export_application = Exportieren
# toolbar.export_application = Exportieren
toolbar.add_mode = Modus hinzufügen ...
# [Debug] [Continue] [Step] [Stop] [Toggle Breakpoints] [Variable Inspector]

View File

@@ -284,7 +284,7 @@ toolbar.debug = Αποσφαλμάτωση
toolbar.new = Νέο
toolbar.open = Άνοιγμα
toolbar.save = Αποθήκευση
toolbar.export_application = Εξαγωγή Εφαρμογής
# toolbar.export_application = Εξαγωγή Εφαρμογής
toolbar.add_mode = Προσθήκη κατάστασης...
# [Debug] [Continue] [Step] [Stop] [Toggle Breakpoints] [Variable Inspector]

View File

@@ -265,7 +265,7 @@ toolbar.debug = Depurar
toolbar.new = Nuevo
toolbar.open = Abrir
toolbar.save = Guardar
toolbar.export_application = Exportar Aplicación
# toolbar.export_application = Exportar Aplicación
toolbar.add_mode = Añadir modo...
# [Debug] [Continue] [Step] [Stop] [Toggle Breakpoints] [Variable Inspector]

View File

@@ -211,12 +211,12 @@ archive_sketch = Archiver le sketch sous...
# [Run/Present] [Stop] [New] [Open] [Save]
toolbar.run = Exécuter
toolbar.present = Présenter
toolbar.stop = Stop
toolbar.stop = Arrêter
# ---
toolbar.new = Nouveau
toolbar.open = Ouvrir
toolbar.save = Enregistrer
toolbar.export_application = Exporter
# toolbar.export_application = Exporter
toolbar.add_mode = Ajouter un mode...

View File

@@ -206,7 +206,6 @@ toolbar.stop = Stop
toolbar.new = New
toolbar.open = Open
toolbar.save = Save
toolbar.export_application = Export Application
toolbar.add_mode = モードの追加...

View File

@@ -222,7 +222,7 @@ toolbar.stop = 정지
toolbar.new = 새 스케치
toolbar.open = 열기
toolbar.save = 저장
toolbar.export_application = 어플리케이션으로 내보내기
# toolbar.export_application = 어플리케이션으로 내보내기
toolbar.add_mode = 모드 추가...

View File

@@ -222,7 +222,7 @@ toolbar.stop = Stoppen
toolbar.new = Nieuw
toolbar.open = Openen
toolbar.save = Opslaan
toolbar.export_application = Exporteren Applicatie
# toolbar.export_application = Exporteren Applicatie
toolbar.add_mode = Modus toevoegen...

View File

@@ -19,7 +19,7 @@ menu.file.examples = Exemplos...
menu.file.close = Fechar
menu.file.save = Guardar
menu.file.save_as = Guardar Como...
menu.file.export_application = Exportar Applicação...
menu.file.export_application = Exportar Aplicação...
menu.file.page_setup = Configurar Página
menu.file.print = Imprimir...
menu.file.preferences = Preferências...
@@ -205,7 +205,7 @@ toolbar.stop = Parar
toolbar.new = Novo
toolbar.open = Abrir
toolbar.save = Guardr
toolbar.export_application = Exportar Aplicação
# toolbar.export_application = Exportar Aplicação
toolbar.add_mode = Adicionar modo...

View File

@@ -207,7 +207,7 @@ toolbar.stop = Durdur
toolbar.new = Yeni
toolbar.open =
toolbar.save = Kaydet
toolbar.export_application = Uygulama Aktarımı
# toolbar.export_application = Uygulama Aktarımı
toolbar.add_mode = Mod ekle...

View File

@@ -225,7 +225,7 @@ toolbar.stop = 停止
toolbar.new = 新建
toolbar.open = 打开
toolbar.save = 保存
toolbar.export_application = 导出程序
# toolbar.export_application = 导出程序
toolbar.add_mode = 添加模式...

View File

@@ -272,7 +272,7 @@ public class JavaEditor extends Editor {
public JMenu buildFileMenu() {
//String appTitle = JavaToolbar.getTitle(JavaToolbar.EXPORT, false);
String appTitle = Language.text("toolbar.export_application");
String appTitle = Language.text("menu.file.export_application");
JMenuItem exportApplication = Toolkit.newJMenuItemShift(appTitle, 'E');
exportApplication.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
@@ -285,21 +285,21 @@ public class JavaEditor extends Editor {
public JMenu buildSketchMenu() {
JMenuItem runItem = Toolkit.newJMenuItem(Language.text("toolbar.run"), 'R');
JMenuItem runItem = Toolkit.newJMenuItem(Language.text("menu.sketch.run"), 'R');
runItem.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
handleRun();
}
});
JMenuItem presentItem = Toolkit.newJMenuItemShift(Language.text("toolbar.present"), 'R');
JMenuItem presentItem = Toolkit.newJMenuItemShift(Language.text("menu.sketch.present"), 'R');
presentItem.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
handlePresent();
}
});
JMenuItem stopItem = new JMenuItem(Language.text("toolbar.stop"));
JMenuItem stopItem = new JMenuItem(Language.text("menu.sketch.stop"));
stopItem.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
if (isDebuggerEnabled()) {