From a6013720e5d2222a08956a09be6b60668862687f Mon Sep 17 00:00:00 2001 From: Matthijs Kooijman Date: Mon, 7 Jul 2014 15:22:49 +0200 Subject: [PATCH 001/148] Explicitely store a layout type for a library Previously, the useRecursion and srcFolders were filled on library creation, based on the existence of the src folder. Now, a layout variable is set, and the useRecursion() and getSrcFolder() methods change their return value based on the layout in use. --- app/src/processing/app/packages/Library.java | 29 ++++++++++++-------- 1 file changed, 17 insertions(+), 12 deletions(-) diff --git a/app/src/processing/app/packages/Library.java b/app/src/processing/app/packages/Library.java index 9c505fe4e..bf69c4edd 100644 --- a/app/src/processing/app/packages/Library.java +++ b/app/src/processing/app/packages/Library.java @@ -23,10 +23,11 @@ public class Library { private String license; private List architectures; private File folder; - private File srcFolder; - private boolean useRecursion; private boolean isLegacy; + private enum LibraryLayout { FLAT, RECURSIVE }; + private LibraryLayout layout; + private static final List MANDATORY_PROPERTIES = Arrays .asList(new String[] { "name", "version", "author", "maintainer", "sentence", "paragraph", "url" }); @@ -82,12 +83,12 @@ public class Library { throw new IOException("Missing '" + p + "' from library"); // Check layout - boolean useRecursion; + LibraryLayout layout; File srcFolder = new File(libFolder, "src"); if (srcFolder.exists() && srcFolder.isDirectory()) { // Layout with a single "src" folder and recursive compilation - useRecursion = true; + layout = LibraryLayout.RECURSIVE; File utilFolder = new File(libFolder, "utility"); if (utilFolder.exists() && utilFolder.isDirectory()) { @@ -96,8 +97,7 @@ public class Library { } } else { // Layout with source code on library's root and "utility" folders - srcFolder = libFolder; - useRecursion = false; + layout = LibraryLayout.FLAT; } // Warn if root folder contains development leftovers @@ -134,7 +134,6 @@ public class Library { Library res = new Library(); res.folder = libFolder; - res.srcFolder = srcFolder; res.name = properties.get("name").trim(); res.version = properties.get("version").trim(); res.author = properties.get("author").trim(); @@ -145,8 +144,8 @@ public class Library { res.category = category.trim(); res.license = license.trim(); res.architectures = archs; - res.useRecursion = useRecursion; res.isLegacy = false; + res.layout = layout; return res; } @@ -154,8 +153,7 @@ public class Library { // construct an old style library Library res = new Library(); res.folder = libFolder; - res.srcFolder = libFolder; - res.useRecursion = false; + res.layout = LibraryLayout.FLAT; res.name = libFolder.getName(); res.architectures = Arrays.asList("*"); res.isLegacy = true; @@ -246,11 +244,18 @@ public class Library { } public boolean useRecursion() { - return useRecursion; + return (layout == LibraryLayout.RECURSIVE); } public File getSrcFolder() { - return srcFolder; + switch (layout) { + case FLAT: + return folder; + case RECURSIVE: + return new File(folder, "src"); + default: + return null; // Keep compiler happy :-( + } } public boolean isLegacy() { From af0d8c7f5c258e7a6b4d2e9bf839958464d362c6 Mon Sep 17 00:00:00 2001 From: Matthijs Kooijman Date: Tue, 8 Jul 2014 14:32:29 +0200 Subject: [PATCH 002/148] Let Sketch.getExtensions() return a List This simplifies upcoming changes. --- app/src/processing/app/Sketch.java | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/app/src/processing/app/Sketch.java b/app/src/processing/app/Sketch.java index 4b2c6b44b..35109ab80 100644 --- a/app/src/processing/app/Sketch.java +++ b/app/src/processing/app/Sketch.java @@ -170,7 +170,7 @@ public class Sketch { code = new SketchCode[list.length]; - String[] extensions = getExtensions(); + List extensions = getExtensions(); for (String filename : list) { // Ignoring the dot prefix files is especially important to avoid files @@ -1849,11 +1849,7 @@ public class Sketch { * extensions. */ public boolean validExtension(String what) { - String[] ext = getExtensions(); - for (int i = 0; i < ext.length; i++) { - if (ext[i].equals(what)) return true; - } - return false; + return getExtensions().contains(what); } @@ -1873,8 +1869,8 @@ public class Sketch { /** * Returns a String[] array of proper extensions. */ - public String[] getExtensions() { - return new String[] { "ino", "pde", "c", "cpp", "h" }; + public List getExtensions() { + return Arrays.asList("ino", "pde", "c", "cpp", "h"); } From 43dac3a902810784133cdfc190aab2ecbb90391c Mon Sep 17 00:00:00 2001 From: Matthijs Kooijman Date: Tue, 8 Jul 2014 15:26:59 +0200 Subject: [PATCH 003/148] Use SketchCode.isExtension in more places --- app/src/processing/app/EditorHeader.java | 2 +- app/src/processing/app/Sketch.java | 16 +++------------- 2 files changed, 4 insertions(+), 14 deletions(-) diff --git a/app/src/processing/app/EditorHeader.java b/app/src/processing/app/EditorHeader.java index eef679f2a..f21228984 100644 --- a/app/src/processing/app/EditorHeader.java +++ b/app/src/processing/app/EditorHeader.java @@ -176,7 +176,7 @@ public class EditorHeader extends JComponent { for (int i = 0; i < sketch.getCodeCount(); i++) { SketchCode code = sketch.getCode(i); - String codeName = sketch.hideExtension(code.getExtension()) ? + String codeName = code.isExtension(sketch.getHiddenExtensions()) ? code.getPrettyName() : code.getFileName(); // if modified, add the li'l glyph next to the name diff --git a/app/src/processing/app/Sketch.java b/app/src/processing/app/Sketch.java index 35109ab80..bf31873bd 100644 --- a/app/src/processing/app/Sketch.java +++ b/app/src/processing/app/Sketch.java @@ -425,7 +425,7 @@ public class Sketch { if (renamingCode && currentIndex == 0) { for (int i = 1; i < codeCount; i++) { if (sanitaryName.equalsIgnoreCase(code[i].getPrettyName()) && - code[i].getExtension().equalsIgnoreCase("cpp")) { + code[i].isExtension("cpp")) { Base.showMessage(_("Nope"), I18n.format( _("You can't rename the sketch to \"{0}\"\n" + @@ -835,7 +835,7 @@ public class Sketch { // resaved (with the same name) to another location/folder. for (int i = 1; i < codeCount; i++) { if (newName.equalsIgnoreCase(code[i].getPrettyName()) && - code[i].getExtension().equalsIgnoreCase("cpp")) { + code[i].isExtension("cpp")) { Base.showMessage(_("Nope"), I18n.format( _("You can't save the sketch as \"{0}\"\n" + @@ -1818,21 +1818,11 @@ public class Sketch { // Breaking out extension types in order to clean up the code, and make it // easier for other environments (like Arduino) to incorporate changes. - - /** - * True if the specified extension should be hidden when shown on a tab. - * For Processing, this is true for .pde files. (Broken out for subclasses.) - */ - public boolean hideExtension(String what) { - return getHiddenExtensions().contains(what); - } - - /** * True if the specified code has the default file extension. */ public boolean hasDefaultExtension(SketchCode code) { - return code.getExtension().equals(getDefaultExtension()); + return code.isExtension(getDefaultExtension()); } From e994c527294359b19fafbfa00f14585d80f7ef90 Mon Sep 17 00:00:00 2001 From: Matthijs Kooijman Date: Tue, 8 Jul 2014 15:35:38 +0200 Subject: [PATCH 004/148] Don't store the extension in SketchCode Nobody was using it anymore, except for checking against specific extensions, which is easily done against the filename itself. This prepares for some simplification of Sketch.load next. --- app/src/processing/app/Sketch.java | 12 ++++++------ app/src/processing/app/SketchCode.java | 23 ++++++++++------------- 2 files changed, 16 insertions(+), 19 deletions(-) diff --git a/app/src/processing/app/Sketch.java b/app/src/processing/app/Sketch.java index bf31873bd..3663e7322 100644 --- a/app/src/processing/app/Sketch.java +++ b/app/src/processing/app/Sketch.java @@ -192,7 +192,7 @@ public class Sketch { // it would be otherwise possible to sneak in nasty filenames. [0116] if (Sketch.isSanitaryName(base)) { code[codeCount++] = - new SketchCode(new File(folder, filename), extension); + new SketchCode(new File(folder, filename)); } else { editor.console.message(I18n.format("File name {0} is invalid: ignored", filename), true, false); } @@ -487,7 +487,7 @@ public class Sketch { } } - if (!current.renameTo(newFile, newExtension)) { + if (!current.renameTo(newFile)) { Base.showWarning(_("Error"), I18n.format( _("Could not rename \"{0}\" to \"{1}\""), @@ -531,7 +531,7 @@ public class Sketch { editor.base.rebuildSketchbookMenus(); } else { // else if something besides code[0] - if (!current.renameTo(newFile, newExtension)) { + if (!current.renameTo(newFile)) { Base.showWarning(_("Error"), I18n.format( _("Could not rename \"{0}\" to \"{1}\""), @@ -557,7 +557,7 @@ public class Sketch { ), e); return; } - SketchCode newCode = new SketchCode(newFile, newExtension); + SketchCode newCode = new SketchCode(newFile); //System.out.println("new code is named " + newCode.getPrettyName() + " " + newCode.getFile()); insertCode(newCode); } @@ -788,7 +788,7 @@ public class Sketch { String pdeName = pdeFile.getPath(); pdeName = pdeName.substring(0, pdeName.length() - 4) + ".ino"; - return c.renameTo(new File(pdeName), "ino"); + return c.renameTo(new File(pdeName)); } return false; } @@ -1075,7 +1075,7 @@ public class Sketch { } if (codeExtension != null) { - SketchCode newCode = new SketchCode(destFile, codeExtension); + SketchCode newCode = new SketchCode(destFile); if (replacement) { replaceCode(newCode); diff --git a/app/src/processing/app/SketchCode.java b/app/src/processing/app/SketchCode.java index 096d37875..91a8232e8 100644 --- a/app/src/processing/app/SketchCode.java +++ b/app/src/processing/app/SketchCode.java @@ -25,10 +25,13 @@ package processing.app; import java.io.*; +import java.util.List; +import java.util.Arrays; import javax.swing.text.Document; import static processing.app.I18n._; +import processing.app.helpers.FileUtils; /** @@ -41,9 +44,6 @@ public class SketchCode { /** File object for where this code is located */ private File file; - /** Extension for this file (no dots, and in lowercase). */ - private String extension; - /** Text of the program text for this tab */ private String program; @@ -70,9 +70,8 @@ public class SketchCode { private int preprocOffset; - public SketchCode(File file, String extension) { + public SketchCode(File file) { this.file = file; - this.extension = extension; makePrettyName(); @@ -125,11 +124,10 @@ public class SketchCode { } - protected boolean renameTo(File what, String ext) { + protected boolean renameTo(File what) { boolean success = file.renameTo(what); if (success) { file = what; - extension = ext; makePrettyName(); } return success; @@ -151,13 +149,12 @@ public class SketchCode { } - public String getExtension() { - return extension; + public boolean isExtension(String... extensions) { + return isExtension(Arrays.asList(extensions)); } - - - public boolean isExtension(String what) { - return extension.equals(what); + + public boolean isExtension(List extensions) { + return FileUtils.hasExtension(file, extensions); } From 9bc1824b96468050c590e980327a079c6c8d7e59 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Tue, 26 Aug 2014 16:31:06 +0200 Subject: [PATCH 005/148] Removed unused Base.getBoardsViaNetwork() and related member. --- app/src/processing/app/Base.java | 7 ------- 1 file changed, 7 deletions(-) diff --git a/app/src/processing/app/Base.java b/app/src/processing/app/Base.java index dee3103de..fb7b302cf 100644 --- a/app/src/processing/app/Base.java +++ b/app/src/processing/app/Base.java @@ -127,7 +127,6 @@ public class Base { // int editorCount; List editors = Collections.synchronizedList(new ArrayList()); Editor activeEditor; - private final Map> boardsViaNetwork; static File portableFolder = null; static final String portableSketchbookFolder = "sketchbook"; @@ -310,8 +309,6 @@ public class Base { public Base(String[] args) throws Exception { platform.init(this); - this.boardsViaNetwork = new ConcurrentHashMap>(); - // Get the sketchbook path, and make sure it's set properly String sketchbookPath = Preferences.get("sketchbook.path"); @@ -616,10 +613,6 @@ public class Base { Preferences.set(split[0], split[1]); } - public Map> getBoardsViaNetwork() { - return new HashMap>(boardsViaNetwork); - } - /** * Post-constructor setup for the editor area. Loads the last * sketch that was used (if any), and restores other Editor settings. From dd911bc79d0511b40366228bc9ea1cba617966e0 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Sun, 26 Jan 2014 23:13:01 +0100 Subject: [PATCH 006/148] Removed some trivial warnings --- app/src/processing/app/AbstractMonitor.java | 1 + app/src/processing/app/LastUndoableEditAwareUndoManager.java | 1 + app/src/processing/app/NetworkMonitor.java | 3 +-- app/src/processing/app/SerialException.java | 1 + app/src/processing/app/SerialMonitor.java | 1 + app/src/processing/app/SerialNotFoundException.java | 3 +-- 6 files changed, 6 insertions(+), 4 deletions(-) diff --git a/app/src/processing/app/AbstractMonitor.java b/app/src/processing/app/AbstractMonitor.java index 4394ca964..9a3de6043 100644 --- a/app/src/processing/app/AbstractMonitor.java +++ b/app/src/processing/app/AbstractMonitor.java @@ -14,6 +14,7 @@ import java.awt.event.WindowEvent; import static processing.app.I18n._; +@SuppressWarnings("serial") public abstract class AbstractMonitor extends JFrame implements MessageConsumer { protected final JLabel noLineEndingAlert; diff --git a/app/src/processing/app/LastUndoableEditAwareUndoManager.java b/app/src/processing/app/LastUndoableEditAwareUndoManager.java index 336cfe15f..0cd678a93 100644 --- a/app/src/processing/app/LastUndoableEditAwareUndoManager.java +++ b/app/src/processing/app/LastUndoableEditAwareUndoManager.java @@ -5,6 +5,7 @@ import javax.swing.undo.CannotUndoException; import javax.swing.undo.UndoManager; import javax.swing.undo.UndoableEdit; +@SuppressWarnings("serial") public class LastUndoableEditAwareUndoManager extends UndoManager { private UndoableEdit lastUndoableEdit; diff --git a/app/src/processing/app/NetworkMonitor.java b/app/src/processing/app/NetworkMonitor.java index 73a973aad..5f89382ac 100644 --- a/app/src/processing/app/NetworkMonitor.java +++ b/app/src/processing/app/NetworkMonitor.java @@ -28,7 +28,6 @@ public class NetworkMonitor extends AbstractMonitor { private MessageSiphon inputConsumer; private Session session; private Channel channel; - private MessageSiphon errorConsumer; private int connectionAttempts; public NetworkMonitor(BoardPort port, Base base) { @@ -98,7 +97,7 @@ public class NetworkMonitor extends AbstractMonitor { channel.connect(); inputConsumer = new MessageSiphon(inputStream, this); - errorConsumer = new MessageSiphon(errStream, this); + new MessageSiphon(errStream, this); if (connectionAttempts > 1) { SwingUtilities.invokeLater(new Runnable() { diff --git a/app/src/processing/app/SerialException.java b/app/src/processing/app/SerialException.java index d47e60189..7fbc3e7ad 100644 --- a/app/src/processing/app/SerialException.java +++ b/app/src/processing/app/SerialException.java @@ -22,6 +22,7 @@ package processing.app; import java.io.IOException; +@SuppressWarnings("serial") public class SerialException extends IOException { public SerialException() { super(); diff --git a/app/src/processing/app/SerialMonitor.java b/app/src/processing/app/SerialMonitor.java index 49e7006a3..0be575ed2 100644 --- a/app/src/processing/app/SerialMonitor.java +++ b/app/src/processing/app/SerialMonitor.java @@ -27,6 +27,7 @@ import java.awt.event.ActionListener; import static processing.app.I18n._; +@SuppressWarnings("serial") public class SerialMonitor extends AbstractMonitor { private final String port; diff --git a/app/src/processing/app/SerialNotFoundException.java b/app/src/processing/app/SerialNotFoundException.java index a3ab755b8..d8660c110 100644 --- a/app/src/processing/app/SerialNotFoundException.java +++ b/app/src/processing/app/SerialNotFoundException.java @@ -1,5 +1,3 @@ -/* -*- mode: jde; c-basic-offset: 2; indent-tabs-mode: nil -*- */ - /* Copyright (c) 2007 David A. Mellis @@ -20,6 +18,7 @@ package processing.app; +@SuppressWarnings("serial") public class SerialNotFoundException extends SerialException { public SerialNotFoundException() { super(); From 026dd50d8762beed458df945c2920cf8000dad8e Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Sun, 26 Jan 2014 22:03:01 +0100 Subject: [PATCH 007/148] Removed some warning from Editor class --- app/src/processing/app/Editor.java | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/app/src/processing/app/Editor.java b/app/src/processing/app/Editor.java index 0e83ec62d..ee7fafc36 100644 --- a/app/src/processing/app/Editor.java +++ b/app/src/processing/app/Editor.java @@ -339,10 +339,9 @@ public class Editor extends JFrame implements RunnerListener { new DataFlavor("text/uri-list;class=java.lang.String"); if (transferable.isDataFlavorSupported(DataFlavor.javaFileListFlavor)) { - java.util.List list = (java.util.List) + List list = (List) transferable.getTransferData(DataFlavor.javaFileListFlavor); - for (int i = 0; i < list.size(); i++) { - File file = (File) list.get(i); + for (File file : list) { if (sketch.addFile(file)) { successful++; } @@ -853,8 +852,9 @@ public class Editor extends JFrame implements RunnerListener { // Class file to search for String classFileName = "/" + base + ".class"; + ZipFile zipFile = null; try { - ZipFile zipFile = new ZipFile(file); + zipFile = new ZipFile(file); Enumeration entries = zipFile.entries(); while (entries.hasMoreElements()) { ZipEntry entry = (ZipEntry) entries.nextElement(); @@ -874,6 +874,12 @@ public class Editor extends JFrame implements RunnerListener { } catch (IOException e) { //System.err.println("Ignoring " + filename + " (" + e.getMessage() + ")"); e.printStackTrace(); + } finally { + if (zipFile != null) + try { + zipFile.close(); + } catch (IOException e) { + } } return null; } @@ -1861,9 +1867,8 @@ public class Editor extends JFrame implements RunnerListener { } catch (BadLocationException bl) { bl.printStackTrace(); - } finally { - return text; - } + } + return text; } protected void handleFindReference() { From 479b974fe1d65ab55d01f9d5b331456f8f9d76a3 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Sun, 26 Jan 2014 19:24:11 +0100 Subject: [PATCH 008/148] Refactoring of Theme class --- app/src/processing/app/Theme.java | 159 ++++++++++-------------------- 1 file changed, 51 insertions(+), 108 deletions(-) diff --git a/app/src/processing/app/Theme.java b/app/src/processing/app/Theme.java index b6c8ae4f0..9ee02ef5f 100644 --- a/app/src/processing/app/Theme.java +++ b/app/src/processing/app/Theme.java @@ -1,5 +1,3 @@ -/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */ - /* Part of the Processing project - http://processing.org @@ -23,14 +21,14 @@ package processing.app; -import java.awt.*; -import java.io.*; -import java.util.*; - -import processing.app.syntax.*; -import processing.core.*; import static processing.app.I18n._; +import java.awt.Color; +import java.awt.Font; +import java.awt.SystemColor; + +import processing.app.helpers.PreferencesMap; +import processing.app.syntax.SyntaxStyle; /** * Storage class for theme settings. This was separated from the Preferences @@ -40,165 +38,110 @@ import static processing.app.I18n._; public class Theme { /** Copy of the defaults in case the user mangles a preference. */ - static HashMap defaults; + static PreferencesMap defaults; /** Table of attributes/values for the theme. */ - static HashMap table = new HashMap();; - + static PreferencesMap table = new PreferencesMap(); static protected void init() { try { - load(Base.getLibStream("theme/theme.txt")); + table.load(Base.getLibStream("theme/theme.txt")); } catch (Exception te) { Base.showError(null, _("Could not read color theme settings.\n" + "You'll need to reinstall Arduino."), te); } - // check for platform-specific properties in the defaults - String platformExt = "." + Base.getPlatformName(); - int platformExtLength = platformExt.length(); - for (String key : table.keySet()) { - if (key.endsWith(platformExt)) { - // this is a key specific to a particular platform - String actualKey = key.substring(0, key.length() - platformExtLength); - String value = get(key); - table.put(actualKey, value); - } - } - // other things that have to be set explicitly for the defaults setColor("run.window.bgcolor", SystemColor.control); // clone the hash table - defaults = (HashMap) table.clone(); + defaults = new PreferencesMap(table); } - - static protected void load(InputStream input) throws IOException { - String[] lines = PApplet.loadStrings(input); - for (String line : lines) { - if ((line.length() == 0) || - (line.charAt(0) == '#')) continue; - - // this won't properly handle = signs being in the text - int equals = line.indexOf('='); - if (equals != -1) { - String key = line.substring(0, equals).trim(); - String value = line.substring(equals + 1).trim(); - table.put(key, value); - } - } - } - - static public String get(String attribute) { - return (String) table.get(attribute); + return table.get(attribute); } - static public String getDefault(String attribute) { - return (String) defaults.get(attribute); + return defaults.get(attribute); } - static public void set(String attribute, String value) { table.put(attribute, value); } - static public boolean getBoolean(String attribute) { - String value = get(attribute); - return (new Boolean(value)).booleanValue(); + return new Boolean(get(attribute)); } - static public void setBoolean(String attribute, boolean value) { set(attribute, value ? "true" : "false"); } - static public int getInteger(String attribute) { return Integer.parseInt(get(attribute)); } - static public void setInteger(String key, int value) { set(key, String.valueOf(value)); } - static public Color getColor(String name) { - Color parsed = null; - String s = get(name); - if ((s != null) && (s.indexOf("#") == 0)) { - try { - int v = Integer.parseInt(s.substring(1), 16); - parsed = new Color(v); - } catch (Exception e) { - } - } - return parsed; + return parseColor(get(name)); } - static public void setColor(String attr, Color what) { - set(attr, "#" + PApplet.hex(what.getRGB() & 0xffffff, 6)); + set(attr, "#" + String.format("%06x", what.getRGB() & 0xffffff)); } - static public Font getFont(String attr) { - boolean replace = false; String value = get(attr); if (value == null) { - //System.out.println("reset 1"); value = getDefault(attr); - replace = true; - } - - String[] pieces = PApplet.split(value, ','); - if (pieces.length != 3) { - value = getDefault(attr); - //System.out.println("reset 2 for " + attr); - pieces = PApplet.split(value, ','); - //PApplet.println(pieces); - replace = true; - } - - String name = pieces[0]; - int style = Font.PLAIN; // equals zero - if (pieces[1].indexOf("bold") != -1) { - style |= Font.BOLD; - } - if (pieces[1].indexOf("italic") != -1) { - style |= Font.ITALIC; - } - int size = PApplet.parseInt(pieces[2], 12); - Font font = new Font(name, style, size); - - // replace bad font with the default - if (replace) { - //System.out.println(attr + " > " + value); - //setString(attr, font.getName() + ",plain," + font.getSize()); set(attr, value); } - return font; + String[] split = value.split(","); + if (split.length != 3) { + value = getDefault(attr); + set(attr, value); + split = value.split(","); + } + + String name = split[0]; + int style = Font.PLAIN; + if (split[1].contains("bold")) + style |= Font.BOLD; + if (split[1].contains("italic")) + style |= Font.ITALIC; + int size = 12; // Default + try { + // (parseDouble handle numbers with decimals too) + size = (int) Double.parseDouble(split[2]); + } catch (NumberFormatException e) { + } + return new Font(name, style, size); } - static public SyntaxStyle getStyle(String what) { - String str = get("editor." + what + ".style"); + String split[] = get("editor." + what + ".style").split(","); - StringTokenizer st = new StringTokenizer(str, ","); + Color color = parseColor(split[0]); - String s = st.nextToken(); - if (s.indexOf("#") == 0) s = s.substring(1); - Color color = new Color(Integer.parseInt(s, 16)); - - s = st.nextToken(); - boolean bold = (s.indexOf("bold") != -1); - boolean italic = (s.indexOf("italic") != -1); - boolean underlined = (s.indexOf("underlined") != -1); + String style = split[1]; + boolean bold = style.contains("bold"); + boolean italic = style.contains("italic"); + boolean underlined = style.contains("underlined"); return new SyntaxStyle(color, italic, bold, underlined); } + + private static Color parseColor(String v) { + try { + if (v.indexOf("#") == 0) + v = v.substring(1); + return new Color(Integer.parseInt(v, 16)); + } catch (Exception e) { + return null; + } + } } From 93562a7800f010d38b2149f24e13fa5225178689 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Sun, 26 Jan 2014 22:05:57 +0100 Subject: [PATCH 009/148] Refactored and simplified EditorConsole class. --- app/src/processing/app/EditorConsole.java | 255 ++++++++++------------ 1 file changed, 111 insertions(+), 144 deletions(-) diff --git a/app/src/processing/app/EditorConsole.java b/app/src/processing/app/EditorConsole.java index bfd20e152..c29222c93 100644 --- a/app/src/processing/app/EditorConsole.java +++ b/app/src/processing/app/EditorConsole.java @@ -1,5 +1,3 @@ -/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */ - /* Part of the Processing project - http://processing.org @@ -22,15 +20,32 @@ */ package processing.app; + import static processing.app.I18n._; -import java.awt.*; -import java.awt.event.*; -import java.io.*; -import javax.swing.*; -import javax.swing.text.*; +import java.awt.Color; +import java.awt.Dimension; +import java.awt.Font; +import java.awt.FontMetrics; +import java.awt.event.ActionEvent; +import java.awt.event.ActionListener; +import java.io.File; +import java.io.FileOutputStream; +import java.io.IOException; +import java.io.OutputStream; +import java.io.PrintStream; +import java.util.ArrayList; +import java.util.List; -import java.util.*; +import javax.swing.JScrollPane; +import javax.swing.JTextPane; +import javax.swing.SwingUtilities; +import javax.swing.text.AttributeSet; +import javax.swing.text.BadLocationException; +import javax.swing.text.DefaultStyledDocument; +import javax.swing.text.Element; +import javax.swing.text.SimpleAttributeSet; +import javax.swing.text.StyleConstants; /** @@ -40,16 +55,15 @@ import java.util.*; * don't take over System.err, and debug while watching just System.out * or just write println() or whatever directly to systemOut or systemErr. */ +@SuppressWarnings("serial") public class EditorConsole extends JScrollPane { Editor editor; JTextPane consoleTextPane; BufferedStyledDocument consoleDoc; - MutableAttributeSet stdStyle; - MutableAttributeSet errStyle; - - int maxLineCount; + SimpleAttributeSet stdStyle; + SimpleAttributeSet errStyle; static File errFile; static File outFile; @@ -70,20 +84,19 @@ public class EditorConsole extends JScrollPane { static EditorConsole currentConsole; + public EditorConsole(Editor _editor) { + editor = _editor; - public EditorConsole(Editor editor) { - this.editor = editor; + int maxLineCount = Preferences.getInteger("console.length"); - maxLineCount = Preferences.getInteger("console.length"); - - consoleDoc = new BufferedStyledDocument(10000, maxLineCount); + consoleDoc = new BufferedStyledDocument(4000, maxLineCount); consoleTextPane = new JTextPane(consoleDoc); consoleTextPane.setEditable(false); // necessary? - MutableAttributeSet standard = new SimpleAttributeSet(); - StyleConstants.setAlignment(standard, StyleConstants.ALIGN_LEFT); - consoleDoc.setParagraphAttributes(0, 0, standard, true); + SimpleAttributeSet leftAlignAttr = new SimpleAttributeSet(); + StyleConstants.setAlignment(leftAlignAttr, StyleConstants.ALIGN_LEFT); + consoleDoc.setParagraphAttributes(0, 0, leftAlignAttr, true); // build styles for different types of console output Color bgColor = Theme.getColor("console.color"); @@ -112,13 +125,13 @@ public class EditorConsole extends JScrollPane { consoleTextPane.setBackground(bgColor); // add the jtextpane to this scrollpane - this.setViewportView(consoleTextPane); + setViewportView(consoleTextPane); // calculate height of a line of text in pixels // and size window accordingly - FontMetrics metrics = this.getFontMetrics(font); + FontMetrics metrics = getFontMetrics(font); int height = metrics.getAscent() + metrics.getDescent(); - int lines = Preferences.getInteger("console.lines"); //, 4); + int lines = Preferences.getInteger("console.lines"); int sizeFudge = 6; //10; // unclear why this is necessary, but it is setPreferredSize(new Dimension(1024, (height * lines) + sizeFudge)); setMinimumSize(new Dimension(1024, (height * 4) + sizeFudge)); @@ -127,10 +140,10 @@ public class EditorConsole extends JScrollPane { systemOut = System.out; systemErr = System.err; - // Create a temporary folder which will have a randomized name. Has to - // be randomized otherwise another instance of Processing (or one of its - // sister IDEs) might collide with the file causing permissions problems. - // The files and folders are not deleted on exit because they may be + // Create a temporary folder which will have a randomized name. Has to + // be randomized otherwise another instance of Processing (or one of its + // sister IDEs) might collide with the file causing permissions problems. + // The files and folders are not deleted on exit because they may be // needed for debugging or bug reporting. tempFolder = Base.createTempFolder("console"); tempFolder.deleteOnExit(); @@ -154,7 +167,7 @@ public class EditorConsole extends JScrollPane { } consoleOut = new PrintStream(new EditorConsoleStream(false)); consoleErr = new PrintStream(new EditorConsoleStream(true)); - + if (Preferences.getBoolean("console")) { try { System.setOut(consoleOut); @@ -179,7 +192,7 @@ public class EditorConsole extends JScrollPane { @Override public void run() { // only if new text has been added - if (consoleDoc.hasAppendage) { + if (consoleDoc.isChanged()) { // insert the text that's been added in the meantime consoleDoc.insertAll(); // always move to the end of the text as it's added @@ -220,7 +233,7 @@ public class EditorConsole extends JScrollPane { stdoutFile.close(); stderrFile.close(); } catch (IOException e) { - e.printStackTrace(systemOut); + e.printStackTrace(); } outFile.delete(); @@ -240,23 +253,18 @@ public class EditorConsole extends JScrollPane { synchronized public void message(String what, boolean err, boolean advance) { if (err) { systemErr.print(what); - //systemErr.print("CE" + what); + if (advance) + systemErr.println(); } else { systemOut.print(what); - //systemOut.print("CO" + what); - } - - if (advance) { - appendText("\n", err); - if (err) { - systemErr.println(); - } else { + if (advance) systemOut.println(); - } } - // to console display + // to console display appendText(what, err); + if (advance) + appendText("\n", err); // moved down here since something is punting } @@ -292,83 +300,47 @@ public class EditorConsole extends JScrollPane { private static class EditorConsoleStream extends OutputStream { - //static EditorConsole current; final boolean err; // whether stderr or stdout - final byte single[] = new byte[1]; - - public EditorConsoleStream(boolean err) { - this.err = err; + PrintStream system; + OutputStream file; + + public EditorConsoleStream(boolean _err) { + err = _err; + if (err) { + system = systemErr; + file = stderrFile; + } else { + system = systemOut; + file = stdoutFile; + } } public void close() { } public void flush() { } - public void write(byte b[]) { // appears never to be used - if (currentConsole != null) { - currentConsole.write(b, 0, b.length, err); - } else { - try { - if (err) { - systemErr.write(b); - } else { - systemOut.write(b); - } - } catch (IOException e) { } // just ignore, where would we write? - } + public void write(int b) { + write(new byte[] { (byte) b }); + } - OutputStream echo = err ? stderrFile : stdoutFile; - if (echo != null) { - try { - echo.write(b); - echo.flush(); - } catch (IOException e) { - e.printStackTrace(); - echo = null; - } - } + public void write(byte b[]) { // appears never to be used + write(b, 0, b.length); } public void write(byte b[], int offset, int length) { if (currentConsole != null) { currentConsole.write(b, offset, length, err); } else { - if (err) { - systemErr.write(b, offset, length); - } else { - systemOut.write(b, offset, length); - } + system.write(b, offset, length); } - OutputStream echo = err ? stderrFile : stdoutFile; - if (echo != null) { + if (file != null) { try { - echo.write(b, offset, length); - echo.flush(); + file.write(b, offset, length); + file.flush(); } catch (IOException e) { e.printStackTrace(); - echo = null; - } - } - } - - public void write(int b) { - single[0] = (byte)b; - if (currentConsole != null) { - currentConsole.write(single, 0, 1, err); - } else { - // redirect for all the extra handling above - write(new byte[] { (byte) b }, 0, 1); - } - - OutputStream echo = err ? stderrFile : stdoutFile; - if (echo != null) { - try { - echo.write(b); - echo.flush(); - } catch (IOException e) { - e.printStackTrace(); - echo = null; + file = null; } } } @@ -386,78 +358,73 @@ public class EditorConsole extends JScrollPane { * appendString() is called from multiple threads, and insertAll from the * swing event thread, so they need to be synchronized */ +@SuppressWarnings("serial") class BufferedStyledDocument extends DefaultStyledDocument { - ArrayList elements = new ArrayList(); - int maxLineLength, maxLineCount; - int currentLineLength = 0; - boolean needLineBreak = false; - boolean hasAppendage = false; + private List elements = new ArrayList(); + private int maxLineLength, maxLineCount; + private int currentLineLength = 0; + private boolean changed = false; - public BufferedStyledDocument(int maxLineLength, int maxLineCount) { - this.maxLineLength = maxLineLength; - this.maxLineCount = maxLineCount; + public BufferedStyledDocument(int _maxLineLength, int _maxLineCount) { + maxLineLength = _maxLineLength; + maxLineCount = _maxLineCount; } /** buffer a string for insertion at the end of the DefaultStyledDocument */ - public synchronized void appendString(String str, AttributeSet a) { - // do this so that it's only updated when needed (otherwise console - // updates every 250 ms when an app isn't even running.. see bug 180) - hasAppendage = true; - - // process each line of the string - while (str.length() > 0) { - // newlines within an element have (almost) no effect, so we need to - // replace them with proper paragraph breaks (start and end tags) - if (needLineBreak || currentLineLength > maxLineLength) { + public synchronized void appendString(String text, AttributeSet a) { + changed = true; + char[] chars = text.toCharArray(); + int start = 0; + int stop = 0; + while (stop < chars.length) { + char c = chars[stop]; + stop++; + currentLineLength++; + if (c == '\n' || currentLineLength > maxLineLength) { + elements.add(new ElementSpec(a, ElementSpec.ContentType, chars, start, + stop - start)); elements.add(new ElementSpec(a, ElementSpec.EndTagType)); elements.add(new ElementSpec(a, ElementSpec.StartTagType)); currentLineLength = 0; - } - - if (str.indexOf('\n') == -1) { - elements.add(new ElementSpec(a, ElementSpec.ContentType, - str.toCharArray(), 0, str.length())); - currentLineLength += str.length(); - needLineBreak = false; - str = str.substring(str.length()); // eat the string - } else { - elements.add(new ElementSpec(a, ElementSpec.ContentType, - str.toCharArray(), 0, str.indexOf('\n') + 1)); - needLineBreak = true; - str = str.substring(str.indexOf('\n') + 1); // eat the line + start = stop; } } + elements.add(new ElementSpec(a, ElementSpec.ContentType, chars, start, + stop - start)); } /** insert the buffered strings */ public synchronized void insertAll() { - ElementSpec[] elementArray = new ElementSpec[elements.size()]; - elements.toArray(elementArray); - try { - // check how many lines have been used so far + // Insert new elements at the bottom + ElementSpec[] elementArray = elements.toArray(new ElementSpec[0]); + insert(getLength(), elementArray); + + // check how many lines have been used // if too many, shave off a few lines from the beginning - Element element = super.getDefaultRootElement(); - int lineCount = element.getElementCount(); + Element root = getDefaultRootElement(); + int lineCount = root.getElementCount(); int overage = lineCount - maxLineCount; if (overage > 0) { // if 1200 lines, and 1000 lines is max, // find the position of the end of the 200th line - //systemOut.println("overage is " + overage); - Element lineElement = element.getElement(overage); - if (lineElement == null) return; // do nuthin + Element lineElement = root.getElement(overage); + if (lineElement == null) + return; // do nuthin - int endOffset = lineElement.getEndOffset(); // remove to the end of the 200th line - super.remove(0, endOffset); + int endOffset = lineElement.getEndOffset(); + remove(0, endOffset); } - super.insert(super.getLength(), elementArray); - } catch (BadLocationException e) { // ignore the error otherwise this will cause an infinite loop // maybe not a good idea in the long run? } elements.clear(); - hasAppendage = false; + changed = false; + } + + public boolean isChanged() { + return changed; } } From 872897d6ad9b49e3adccbc39feaf19881923142c Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Sun, 26 Jan 2014 22:56:06 +0100 Subject: [PATCH 010/148] Splitted GUI and Streams in EditorConsole --- app/src/processing/app/Base.java | 2 +- app/src/processing/app/EditorConsole.java | 181 +----------------- .../processing/app/EditorConsoleStream.java | 150 +++++++++++++++ app/src/processing/app/Sketch.java | 2 +- 4 files changed, 154 insertions(+), 181 deletions(-) create mode 100644 app/src/processing/app/EditorConsoleStream.java diff --git a/app/src/processing/app/Base.java b/app/src/processing/app/Base.java index fb7b302cf..9132571b1 100644 --- a/app/src/processing/app/Base.java +++ b/app/src/processing/app/Base.java @@ -764,7 +764,7 @@ public class Base { activeEditor = whichEditor; // set the current window to be the console that's getting output - EditorConsole.setEditor(activeEditor); + EditorConsoleStream.setCurrent(activeEditor.console); } diff --git a/app/src/processing/app/EditorConsole.java b/app/src/processing/app/EditorConsole.java index c29222c93..93d8eaf9d 100644 --- a/app/src/processing/app/EditorConsole.java +++ b/app/src/processing/app/EditorConsole.java @@ -21,19 +21,12 @@ package processing.app; -import static processing.app.I18n._; - import java.awt.Color; import java.awt.Dimension; import java.awt.Font; import java.awt.FontMetrics; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; -import java.io.File; -import java.io.FileOutputStream; -import java.io.IOException; -import java.io.OutputStream; -import java.io.PrintStream; import java.util.ArrayList; import java.util.List; @@ -65,25 +58,10 @@ public class EditorConsole extends JScrollPane { SimpleAttributeSet stdStyle; SimpleAttributeSet errStyle; - static File errFile; - static File outFile; - static File tempFolder; - // Single static instance shared because there's only one real System.out. // Within the input handlers, the currentConsole variable will be used to // echo things to the correct location. - static public PrintStream systemOut; - static public PrintStream systemErr; - - static PrintStream consoleOut; - static PrintStream consoleErr; - - static OutputStream stdoutFile; - static OutputStream stderrFile; - - static EditorConsole currentConsole; - public EditorConsole(Editor _editor) { editor = _editor; @@ -136,47 +114,7 @@ public class EditorConsole extends JScrollPane { setPreferredSize(new Dimension(1024, (height * lines) + sizeFudge)); setMinimumSize(new Dimension(1024, (height * 4) + sizeFudge)); - if (systemOut == null) { - systemOut = System.out; - systemErr = System.err; - - // Create a temporary folder which will have a randomized name. Has to - // be randomized otherwise another instance of Processing (or one of its - // sister IDEs) might collide with the file causing permissions problems. - // The files and folders are not deleted on exit because they may be - // needed for debugging or bug reporting. - tempFolder = Base.createTempFolder("console"); - tempFolder.deleteOnExit(); - try { - String outFileName = Preferences.get("console.output.file"); - if (outFileName != null) { - outFile = new File(tempFolder, outFileName); - outFile.deleteOnExit(); - stdoutFile = new FileOutputStream(outFile); - } - - String errFileName = Preferences.get("console.error.file"); - if (errFileName != null) { - errFile = new File(tempFolder, errFileName); - errFile.deleteOnExit(); - stderrFile = new FileOutputStream(errFile); - } - } catch (IOException e) { - Base.showWarning(_("Console Error"), - _("A problem occurred while trying to open the\nfiles used to store the console output."), e); - } - consoleOut = new PrintStream(new EditorConsoleStream(false)); - consoleErr = new PrintStream(new EditorConsoleStream(true)); - - if (Preferences.getBoolean("console")) { - try { - System.setOut(consoleOut); - System.setErr(consoleErr); - } catch (Exception e) { - e.printStackTrace(systemOut); - } - } - } + EditorConsoleStream.init(); // to fix ugliness.. normally macosx java 1.3 puts an // ugly white border around this object, so turn it off. @@ -204,70 +142,6 @@ public class EditorConsole extends JScrollPane { }).start(); } - - static public void setEditor(Editor editor) { - currentConsole = editor.console; - } - - - /** - * Close the streams so that the temporary files can be deleted. - *

- * File.deleteOnExit() cannot be used because the stdout and stderr - * files are inside a folder, and have to be deleted before the - * folder itself is deleted, which can't be guaranteed when using - * the deleteOnExit() method. - */ - public void handleQuit() { - // replace original streams to remove references to console's streams - System.setOut(systemOut); - System.setErr(systemErr); - - // close the PrintStream - consoleOut.close(); - consoleErr.close(); - - // also have to close the original FileOutputStream - // otherwise it won't be shut down completely - try { - stdoutFile.close(); - stderrFile.close(); - } catch (IOException e) { - e.printStackTrace(); - } - - outFile.delete(); - errFile.delete(); - tempFolder.delete(); - } - - - public void write(byte b[], int offset, int length, boolean err) { - // we could do some cross platform CR/LF mangling here before outputting - // add text to output document - message(new String(b, offset, length), err, false); - } - - - // added sync for 0091.. not sure if it helps or hinders - synchronized public void message(String what, boolean err, boolean advance) { - if (err) { - systemErr.print(what); - if (advance) - systemErr.println(); - } else { - systemOut.print(what); - if (advance) - systemOut.println(); - } - - // to console display - appendText(what, err); - if (advance) - appendText("\n", err); - // moved down here since something is punting - } - /** * Append a piece of text to the console. @@ -281,7 +155,7 @@ public class EditorConsole extends JScrollPane { * Updates are buffered to the console and displayed at regular * intervals on Swing's event-dispatching thread. (patch by David Mellis) */ - synchronized private void appendText(String txt, boolean e) { + synchronized void appendText(String txt, boolean e) { consoleDoc.appendString(txt, e ? errStyle : stdStyle); } @@ -294,57 +168,6 @@ public class EditorConsole extends JScrollPane { // maybe not a good idea in the long run? } } - - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - - private static class EditorConsoleStream extends OutputStream { - final boolean err; // whether stderr or stdout - PrintStream system; - OutputStream file; - - public EditorConsoleStream(boolean _err) { - err = _err; - if (err) { - system = systemErr; - file = stderrFile; - } else { - system = systemOut; - file = stdoutFile; - } - } - - public void close() { } - - public void flush() { } - - public void write(int b) { - write(new byte[] { (byte) b }); - } - - public void write(byte b[]) { // appears never to be used - write(b, 0, b.length); - } - - public void write(byte b[], int offset, int length) { - if (currentConsole != null) { - currentConsole.write(b, offset, length, err); - } else { - system.write(b, offset, length); - } - - if (file != null) { - try { - file.write(b, offset, length); - file.flush(); - } catch (IOException e) { - e.printStackTrace(); - file = null; - } - } - } - } } diff --git a/app/src/processing/app/EditorConsoleStream.java b/app/src/processing/app/EditorConsoleStream.java new file mode 100644 index 000000000..06e232673 --- /dev/null +++ b/app/src/processing/app/EditorConsoleStream.java @@ -0,0 +1,150 @@ +package processing.app; + +import static processing.app.I18n._; + +import java.io.File; +import java.io.FileOutputStream; +import java.io.IOException; +import java.io.OutputStream; +import java.io.PrintStream; + +class EditorConsoleStream extends OutputStream { + static File tempFolder; + static File outFile; + static File errFile; + + static EditorConsole currentConsole; + + static OutputStream stderrFile; + static OutputStream stdoutFile; + static PrintStream consoleErr; + static PrintStream consoleOut; + static public PrintStream systemErr; + static public PrintStream systemOut; + + public static void init() { + if (systemOut == null) { + systemOut = System.out; + systemErr = System.err; + + // Create a temporary folder which will have a randomized name. Has to + // be randomized otherwise another instance of Processing (or one of its + // sister IDEs) might collide with the file causing permissions problems. + // The files and folders are not deleted on exit because they may be + // needed for debugging or bug reporting. + tempFolder = Base.createTempFolder("console"); + tempFolder.deleteOnExit(); + try { + String outFileName = Preferences.get("console.output.file"); + if (outFileName != null) { + outFile = new File(tempFolder, outFileName); + outFile.deleteOnExit(); + stdoutFile = new FileOutputStream(outFile); + } + + String errFileName = Preferences.get("console.error.file"); + if (errFileName != null) { + errFile = new File(tempFolder, errFileName); + errFile.deleteOnExit(); + stderrFile = new FileOutputStream(errFile); + } + } catch (IOException e) { + Base.showWarning(_("Console Error"), + _("A problem occurred while trying to open the\nfiles used to store the console output."), + e); + } + consoleOut = new PrintStream(new EditorConsoleStream(false)); + consoleErr = new PrintStream(new EditorConsoleStream(true)); + + if (Preferences.getBoolean("console")) { + try { + System.setOut(consoleOut); + System.setErr(consoleErr); + } catch (Exception e) { + e.printStackTrace(systemOut); + } + } + } + } + + /** + * Close the streams so that the temporary files can be deleted. + *

+ * File.deleteOnExit() cannot be used because the stdout and stderr files are + * inside a folder, and have to be deleted before the folder itself is + * deleted, which can't be guaranteed when using the deleteOnExit() method. + */ + public static void quit() { + // replace original streams to remove references to console's streams + System.setOut(systemOut); + System.setErr(systemErr); + + // close the PrintStream + consoleOut.close(); + consoleErr.close(); + + // also have to close the original FileOutputStream + // otherwise it won't be shut down completely + try { + stdoutFile.close(); + stderrFile.close(); + } catch (IOException e) { + e.printStackTrace(); + } + + outFile.delete(); + errFile.delete(); + tempFolder.delete(); + } + + final boolean err; // whether stderr or stdout + PrintStream system; + OutputStream file; + + public EditorConsoleStream(boolean _err) { + err = _err; + if (err) { + system = systemErr; + file = stderrFile; + } else { + system = systemOut; + file = stdoutFile; + } + } + + public void close() { + } + + public void flush() { + } + + public void write(int b) { + write(new byte[] { (byte) b }); + } + + public void write(byte b[]) { // appears never to be used + write(b, 0, b.length); + } + + public void write(byte b[], int offset, int length) { + if (currentConsole != null) + currentConsole.appendText(new String(b, offset, length), err); + + system.write(b, offset, length); + + if (file != null) { + try { + file.write(b, offset, length); + file.flush(); + } catch (IOException e) { + e.printStackTrace(); + file = null; + } + } + } + + static public void setCurrent(EditorConsole console) { + currentConsole = console; + } + +} \ No newline at end of file diff --git a/app/src/processing/app/Sketch.java b/app/src/processing/app/Sketch.java index 3663e7322..b487a6b2a 100644 --- a/app/src/processing/app/Sketch.java +++ b/app/src/processing/app/Sketch.java @@ -194,7 +194,7 @@ public class Sketch { code[codeCount++] = new SketchCode(new File(folder, filename)); } else { - editor.console.message(I18n.format("File name {0} is invalid: ignored", filename), true, false); + System.err.println(I18n.format("File name {0} is invalid: ignored", filename)); } } } From af19257fbd6993bade147dab0f67267af6dce2e7 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Fri, 31 Jan 2014 22:54:45 +0100 Subject: [PATCH 011/148] Rationalized Preferences and Theme classes. Removed a lot of duplicate/unused code. Preferences un-marshalling is now handled in PreferencesMap class. --- app/src/processing/app/Preferences.java | 234 ++++++------------ app/src/processing/app/Theme.java | 51 +--- .../app/helpers/PreferencesMap.java | 87 ++++++- 3 files changed, 169 insertions(+), 203 deletions(-) diff --git a/app/src/processing/app/Preferences.java b/app/src/processing/app/Preferences.java index 8e89ba62b..b8b8471f8 100644 --- a/app/src/processing/app/Preferences.java +++ b/app/src/processing/app/Preferences.java @@ -1,5 +1,3 @@ -/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */ - /* Part of the Processing project - http://processing.org @@ -23,22 +21,48 @@ package processing.app; +import static processing.app.I18n._; + +import java.awt.Color; +import java.awt.Container; +import java.awt.Dimension; +import java.awt.Font; +import java.awt.Insets; +import java.awt.SystemColor; +import java.awt.Toolkit; +import java.awt.event.ActionEvent; +import java.awt.event.ActionListener; +import java.awt.event.KeyAdapter; +import java.awt.event.KeyEvent; +import java.awt.event.MouseAdapter; +import java.awt.event.MouseEvent; +import java.awt.event.WindowAdapter; +import java.awt.event.WindowEvent; +import java.io.BufferedReader; +import java.io.File; +import java.io.IOException; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.io.PrintWriter; +import java.util.Arrays; +import java.util.MissingResourceException; +import java.util.StringTokenizer; + +import javax.swing.Box; +import javax.swing.JButton; +import javax.swing.JCheckBox; +import javax.swing.JComboBox; +import javax.swing.JFrame; +import javax.swing.JLabel; +import javax.swing.JTextField; +import javax.swing.KeyStroke; + import processing.app.helpers.FileUtils; +import processing.app.helpers.PreferencesMap; import processing.app.syntax.SyntaxStyle; import processing.core.PApplet; import processing.core.PConstants; -import javax.swing.*; -import java.awt.*; -import java.awt.event.*; -import java.io.*; -import java.util.*; - -import processing.app.helpers.PreferencesMap; -import static processing.app.I18n._; - - - /** * Storage class for user preferences and environment settings. @@ -69,8 +93,6 @@ import static processing.app.I18n._; */ public class Preferences { - // what to call the feller - static final String PREFS_FILE = "preferences.txt"; class Language { @@ -218,8 +240,8 @@ public class Preferences { // data model - static Hashtable defaults; - static Hashtable table = new Hashtable(); + static PreferencesMap defaults; + static PreferencesMap prefs = new PreferencesMap(); static File preferencesFile; static boolean doSave = true; @@ -233,38 +255,25 @@ public class Preferences { // start by loading the defaults, in case something // important was deleted from the user prefs try { - load(Base.getLibStream("preferences.txt")); - } catch (Exception e) { + prefs.load(Base.getLibStream("preferences.txt")); + } catch (IOException e) { Base.showError(null, _("Could not read default settings.\n" + "You'll need to reinstall Arduino."), e); } // set some runtime constants (not saved on preferences file) File hardwareFolder = Base.getHardwareFolder(); - table.put("runtime.ide.path", hardwareFolder.getParentFile().getAbsolutePath()); - table.put("runtime.ide.version", "" + Base.REVISION); + prefs.put("runtime.ide.path", hardwareFolder.getParentFile().getAbsolutePath()); + prefs.put("runtime.ide.version", "" + Base.REVISION); - // check for platform-specific properties in the defaults - String platformExt = "." + Base.platform.getName(); - int platformExtLength = platformExt.length(); - Set keySet = new HashSet(table.keySet()); - for (String key : keySet) { - if (key.endsWith(platformExt)) { - // this is a key specific to a particular platform - String actualKey = key.substring(0, key.length() - platformExtLength); - String value = get(key); - table.put(actualKey, value); - } - } - // clone the hash table - defaults = new Hashtable(table); + defaults = new PreferencesMap(prefs); if (preferencesFile.exists()) { // load the previous preferences file try { - load(new FileInputStream(preferencesFile)); - } catch (Exception ex) { + prefs.load(preferencesFile); + } catch (IOException ex) { Base.showError(_("Error reading preferences"), I18n.format(_("Error reading the preferences file. " + "Please delete (or move)\n" @@ -275,14 +284,14 @@ public class Preferences { // load the I18n module for internationalization try { - I18n.init(Preferences.get("editor.languages.current")); + I18n.init(get("editor.languages.current")); } catch (MissingResourceException e) { I18n.init("en"); - Preferences.set("editor.languages.current", "en"); + set("editor.languages.current", "en"); } // set some other runtime constants (not saved on preferences file) - table.put("runtime.os", PConstants.platformNames[PApplet.platform]); + set("runtime.os", PConstants.platformNames[PApplet.platform]); // other things that have to be set explicitly for the defaults setColor("run.window.bgcolor", SystemColor.control); @@ -604,11 +613,6 @@ public class Preferences { } - public Dimension getPreferredSize() { - return new Dimension(wide, high); - } - - // ................................................................. @@ -733,26 +737,6 @@ public class Preferences { // ................................................................. - static protected void load(InputStream input) throws IOException { - load(input, table); - } - - static public void load(InputStream input, Map table) throws IOException { - String[] lines = loadStrings(input); // Reads as UTF-8 - for (String line : lines) { - if ((line.length() == 0) || - (line.charAt(0) == '#')) continue; - - // this won't properly handle = signs being in the text - int equals = line.indexOf('='); - if (equals != -1) { - String key = line.substring(0, equals).trim(); - String value = line.substring(equals + 1).trim(); - table.put(key, value); - } - } - } - static public String[] loadStrings(InputStream input) { try { BufferedReader reader = @@ -803,48 +787,36 @@ public class Preferences { // Fix for 0163 to properly use Unicode when writing preferences.txt PrintWriter writer = PApplet.createWriter(preferencesFile); - String[] keys = table.keySet().toArray(new String[0]); + String[] keys = prefs.keySet().toArray(new String[0]); Arrays.sort(keys); for (String key: keys) { if (key.startsWith("runtime.")) continue; - writer.println(key + "=" + table.get(key)); + writer.println(key + "=" + prefs.get(key)); } writer.flush(); writer.close(); - -// } catch (Exception ex) { -// Base.showWarning(null, "Error while saving the settings file", ex); -// } } // ................................................................. - - // all the information from preferences.txt - - //static public String get(String attribute) { - //return get(attribute, null); - //} - static public String get(String attribute) { - return table.get(attribute); + return prefs.get(attribute); } static public String get(String attribute, String defaultValue) { String value = get(attribute); - return (value == null) ? defaultValue : value; } public static boolean has(String key) { - return table.containsKey(key); + return prefs.containsKey(key); } public static void remove(String key) { - table.remove(key); + prefs.remove(key); } static public String getDefault(String attribute) { @@ -853,57 +825,27 @@ public class Preferences { static public void set(String attribute, String value) { - table.put(attribute, value); + prefs.put(attribute, value); } static public void unset(String attribute) { - table.remove(attribute); + prefs.remove(attribute); } static public boolean getBoolean(String attribute) { - String value = get(attribute); //, null); - return (new Boolean(value)).booleanValue(); - - /* - supposedly not needed, because anything besides 'true' - (ignoring case) will just be false.. so if malformed -> false - if (value == null) return defaultValue; - - try { - return (new Boolean(value)).booleanValue(); - } catch (NumberFormatException e) { - System.err.println("expecting an integer: " + attribute + " = " + value); - } - return defaultValue; - */ + return prefs.getBoolean(attribute); } static public void setBoolean(String attribute, boolean value) { - set(attribute, value ? "true" : "false"); + prefs.putBoolean(attribute, value); } - static public int getInteger(String attribute /*, int defaultValue*/) { + static public int getInteger(String attribute) { return Integer.parseInt(get(attribute)); - - /* - String value = get(attribute, null); - if (value == null) return defaultValue; - - try { - return Integer.parseInt(value); - } catch (NumberFormatException e) { - // ignored will just fall through to returning the default - System.err.println("expecting an integer: " + attribute + " = " + value); - } - return defaultValue; - //if (value == null) return defaultValue; - //return (value == null) ? defaultValue : - //Integer.parseInt(value); - */ } @@ -913,62 +855,31 @@ public class Preferences { static public Color getColor(String name) { - Color parsed = Color.GRAY; // set a default - String s = get(name); - if ((s != null) && (s.indexOf("#") == 0)) { - try { - parsed = new Color(Integer.parseInt(s.substring(1), 16)); - } catch (Exception e) { } - } - return parsed; + Color parsed = prefs.getColor(name); + if (parsed != null) + return parsed; + return Color.GRAY; // set a default } static public void setColor(String attr, Color what) { - set(attr, "#" + PApplet.hex(what.getRGB() & 0xffffff, 6)); + prefs.putColor(attr, what); } static public Font getFont(String attr) { - boolean replace = false; - String value = get(attr); - if (value == null) { - //System.out.println("reset 1"); - value = getDefault(attr); - replace = true; + Font font = prefs.getFont(attr); + if (font == null) { + String value = defaults.get(attr); + prefs.put(attr, value); + font = prefs.getFont(attr); } - - String[] pieces = PApplet.split(value, ','); - if (pieces.length != 3) { - value = getDefault(attr); - //System.out.println("reset 2 for " + attr); - pieces = PApplet.split(value, ','); - //PApplet.println(pieces); - replace = true; - } - - String name = pieces[0]; - int style = Font.PLAIN; // equals zero - if (pieces[1].indexOf("bold") != -1) { - style |= Font.BOLD; - } - if (pieces[1].indexOf("italic") != -1) { - style |= Font.ITALIC; - } - int size = PApplet.parseInt(pieces[2], 12); - Font font = new Font(name, style, size); - - // replace bad font with the default - if (replace) { - set(attr, value); - } - return font; } - static public SyntaxStyle getStyle(String what /*, String dflt*/) { - String str = get("editor." + what + ".style"); //, dflt); + static public SyntaxStyle getStyle(String what) { + String str = get("editor." + what + ".style"); StringTokenizer st = new StringTokenizer(str, ","); @@ -983,7 +894,6 @@ public class Preferences { boolean bold = (s.indexOf("bold") != -1); boolean italic = (s.indexOf("italic") != -1); boolean underlined = (s.indexOf("underlined") != -1); - //System.out.println(what + " = " + str + " " + bold + " " + italic); return new SyntaxStyle(color, italic, bold, underlined); } @@ -991,7 +901,7 @@ public class Preferences { // get a copy of the Preferences static public PreferencesMap getMap() { - return new PreferencesMap(table); + return new PreferencesMap(prefs); } // Decide wether changed preferences will be saved. When value is diff --git a/app/src/processing/app/Theme.java b/app/src/processing/app/Theme.java index 9ee02ef5f..96ac78b43 100644 --- a/app/src/processing/app/Theme.java +++ b/app/src/processing/app/Theme.java @@ -70,11 +70,11 @@ public class Theme { } static public boolean getBoolean(String attribute) { - return new Boolean(get(attribute)); + return table.getBoolean(attribute); } static public void setBoolean(String attribute, boolean value) { - set(attribute, value ? "true" : "false"); + table.putBoolean(attribute, value); } static public int getInteger(String attribute) { @@ -86,46 +86,27 @@ public class Theme { } static public Color getColor(String name) { - return parseColor(get(name)); + return PreferencesMap.parseColor(get(name)); } - static public void setColor(String attr, Color what) { - set(attr, "#" + String.format("%06x", what.getRGB() & 0xffffff)); + static public void setColor(String attr, Color color) { + table.putColor(attr, color); } static public Font getFont(String attr) { - String value = get(attr); - if (value == null) { - value = getDefault(attr); + Font font = table.getFont(attr); + if (font == null) { + String value = getDefault(attr); set(attr, value); + font = table.getFont(attr); } - - String[] split = value.split(","); - if (split.length != 3) { - value = getDefault(attr); - set(attr, value); - split = value.split(","); - } - - String name = split[0]; - int style = Font.PLAIN; - if (split[1].contains("bold")) - style |= Font.BOLD; - if (split[1].contains("italic")) - style |= Font.ITALIC; - int size = 12; // Default - try { - // (parseDouble handle numbers with decimals too) - size = (int) Double.parseDouble(split[2]); - } catch (NumberFormatException e) { - } - return new Font(name, style, size); + return font; } static public SyntaxStyle getStyle(String what) { String split[] = get("editor." + what + ".style").split(","); - Color color = parseColor(split[0]); + Color color = PreferencesMap.parseColor(split[0]); String style = split[1]; boolean bold = style.contains("bold"); @@ -134,14 +115,4 @@ public class Theme { return new SyntaxStyle(color, italic, bold, underlined); } - - private static Color parseColor(String v) { - try { - if (v.indexOf("#") == 0) - v = v.substring(1); - return new Color(Integer.parseInt(v, 16)); - } catch (Exception e) { - return null; - } - } } diff --git a/app/src/processing/app/helpers/PreferencesMap.java b/app/src/processing/app/helpers/PreferencesMap.java index b4f60848a..3f2b264ef 100644 --- a/app/src/processing/app/helpers/PreferencesMap.java +++ b/app/src/processing/app/helpers/PreferencesMap.java @@ -3,7 +3,7 @@ to handle preferences. Part of the Arduino project - http://www.arduino.cc/ - Copyright (c) 2011 Cristian Maglie + Copyright (c) 2014 Cristian Maglie This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -21,6 +21,8 @@ */ package processing.app.helpers; +import java.awt.Color; +import java.awt.Font; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; @@ -296,4 +298,87 @@ public class PreferencesMap extends LinkedHashMap { return null; return new File(file, subFolder); } + + /** + * Return the value of the specified key as boolean. + * + * @param key + * @return true if the value of the key is the string "true" (case + * insensitive compared), false in any other case + */ + public boolean getBoolean(String key) { + return new Boolean(get(key)); + } + + /** + * Sets the value of the specified key to the string "true" or + * "false" based on value of the boolean parameter + * + * @param key + * @param value + * @return true if the previous value of the key was the string "true" + * (case insensitive compared), false in any other case + */ + public boolean putBoolean(String key, boolean value) { + String prev = put(key, value ? "true" : "false"); + return new Boolean(prev); + } + + /** + * Create a Color with the value of the specified key. The format of the color + * should be an hexadecimal number of 6 digit, eventually prefixed with a '#'. + * + * @param name + * @return A Color object or null if the key is not found or the format + * is wrong + */ + public Color getColor(String name) { + return parseColor(get(name)); + } + + /** + * Set the value of the specified key based on the Color passed as parameter. + * + * @param attr + * @param color + */ + public void putColor(String attr, Color color) { + put(attr, "#" + String.format("%06x", color.getRGB() & 0xffffff)); + } + + public static Color parseColor(String v) { + try { + if (v.indexOf("#") == 0) + v = v.substring(1); + return new Color(Integer.parseInt(v, 16)); + } catch (Exception e) { + return null; + } + } + + public Font getFont(String key) { + String value = get(key); + if (value == null) + return null; + String[] split = value.split(","); + if (split.length != 3) + return null; + + String name = split[0]; + int style = Font.PLAIN; + if (split[1].contains("bold")) + style |= Font.BOLD; + if (split[1].contains("italic")) + style |= Font.ITALIC; + int size; + try { + // ParseDouble handle numbers with decimals too + size = (int) Double.parseDouble(split[2]); + } catch (NumberFormatException e) { + // for wrong formatted size pick the default + size = 12; + } + return new Font(name, style, size); + } + } From e6563cfebf4b71fc1e2b9a43ebbbb04871a1ff08 Mon Sep 17 00:00:00 2001 From: Claudio Indellicati Date: Thu, 30 Jan 2014 13:48:07 +0100 Subject: [PATCH 012/148] Removed GUI dependencies from SketchCode class. Moved GUI fields into a SketchCodeDocument container class. --- app/src/processing/app/Editor.java | 16 +-- app/src/processing/app/EditorHeader.java | 3 +- app/src/processing/app/Sketch.java | 119 +++++++++--------- app/src/processing/app/SketchCode.java | 72 ----------- .../processing/app/SketchCodeDocument.java | 83 ++++++++++++ 5 files changed, 155 insertions(+), 138 deletions(-) create mode 100644 app/src/processing/app/SketchCodeDocument.java diff --git a/app/src/processing/app/Editor.java b/app/src/processing/app/Editor.java index ee7fafc36..2a2c6fe4d 100644 --- a/app/src/processing/app/Editor.java +++ b/app/src/processing/app/Editor.java @@ -1637,19 +1637,19 @@ public class Editor extends JFrame implements RunnerListener { * Switch between tabs, this swaps out the Document object * that's currently being manipulated. */ - protected void setCode(SketchCode code) { - SyntaxDocument document = (SyntaxDocument) code.getDocument(); + protected void setCode(SketchCodeDocument codeDoc) { + SyntaxDocument document = (SyntaxDocument) codeDoc.getDocument(); if (document == null) { // this document not yet inited document = new SyntaxDocument(); - code.setDocument(document); - + codeDoc.setDocument(document); + // turn on syntax highlighting document.setTokenMarker(new PdeKeywords()); // insert the program text into the document object try { - document.insertString(0, code.getProgram(), null); + document.insertString(0, codeDoc.getCode().getProgram(), null); } catch (BadLocationException bl) { bl.printStackTrace(); } @@ -1674,12 +1674,12 @@ public class Editor extends JFrame implements RunnerListener { // update the document object that's in use textarea.setDocument(document, - code.getSelectionStart(), code.getSelectionStop(), - code.getScrollPosition()); + codeDoc.getSelectionStart(), codeDoc.getSelectionStop(), + codeDoc.getScrollPosition()); textarea.requestFocus(); // get the caret blinking - this.undo = code.getUndo(); + this.undo = codeDoc.getUndo(); undoAction.updateUndoState(); redoAction.updateRedoState(); } diff --git a/app/src/processing/app/EditorHeader.java b/app/src/processing/app/EditorHeader.java index f21228984..dfa76f02a 100644 --- a/app/src/processing/app/EditorHeader.java +++ b/app/src/processing/app/EditorHeader.java @@ -361,7 +361,8 @@ public class EditorHeader extends JComponent { editor.getSketch().setCurrentCode(e.getActionCommand()); } }; - for (SketchCode code : sketch.getCode()) { + for (SketchCodeDocument codeDoc : sketch.getCodeDocs()) { + SketchCode code = codeDoc.getCode(); item = new JMenuItem(code.isExtension(sketch.getDefaultExtension()) ? code.getPrettyName() : code.getFileName()); item.setActionCommand(code.getFileName()); diff --git a/app/src/processing/app/Sketch.java b/app/src/processing/app/Sketch.java index b487a6b2a..9d7690a4a 100644 --- a/app/src/processing/app/Sketch.java +++ b/app/src/processing/app/Sketch.java @@ -40,7 +40,6 @@ import static processing.app.I18n._; import java.io.*; import java.util.*; -import java.util.List; import javax.swing.*; @@ -75,7 +74,9 @@ public class Sketch { private File codeFolder; private SketchCode current; + private SketchCodeDocument currentCodeDoc; private int currentIndex; + /** * Number of sketchCode objects (tabs) in the current sketch. Note that this * will be the same as code.length, because the getCode() method returns @@ -84,8 +85,8 @@ public class Sketch { * http://dev.processing.org/bugs/show_bug.cgi?id=940 */ private int codeCount; - private SketchCode[] code; - + private SketchCodeDocument[] codeDocs; + /** Class name for the PApplet, as determined by the preprocessor. */ private String appletClassName; /** Class path determined during build. */ @@ -168,7 +169,7 @@ public class Sketch { // external editor event. (fix for 0099) codeCount = 0; - code = new SketchCode[list.length]; + codeDocs = new SketchCodeDocument[list.length]; List extensions = getExtensions(); @@ -191,8 +192,8 @@ public class Sketch { // Don't allow people to use files with invalid names, since on load, // it would be otherwise possible to sneak in nasty filenames. [0116] if (Sketch.isSanitaryName(base)) { - code[codeCount++] = - new SketchCode(new File(folder, filename)); + codeDocs[codeCount++] = + new SketchCodeDocument(new File(folder, filename)); } else { System.err.println(I18n.format("File name {0} is invalid: ignored", filename)); } @@ -204,16 +205,16 @@ public class Sketch { throw new IOException(_("No valid code files found")); // Remove any code that wasn't proper - code = (SketchCode[]) PApplet.subset(code, 0, codeCount); + codeDocs = (SketchCodeDocument[]) PApplet.subset(codeDocs, 0, codeCount); // move the main class to the first tab // start at 1, if it's at zero, don't bother for (int i = 1; i < codeCount; i++) { //if (code[i].file.getName().equals(mainFilename)) { - if (code[i].getFile().equals(primaryFile)) { - SketchCode temp = code[0]; - code[0] = code[i]; - code[i] = temp; + if (codeDocs[i].getCode().getFile().equals(primaryFile)) { + SketchCodeDocument temp = codeDocs[0]; + codeDocs[0] = codeDocs[i]; + codeDocs[i] = temp; break; } } @@ -230,8 +231,8 @@ public class Sketch { protected void replaceCode(SketchCode newCode) { for (int i = 0; i < codeCount; i++) { - if (code[i].getFileName().equals(newCode.getFileName())) { - code[i] = newCode; + if (codeDocs[i].getCode().getFileName().equals(newCode.getFileName())) { + codeDocs[i].setCode(newCode); break; } } @@ -244,7 +245,7 @@ public class Sketch { // add file to the code/codeCount list, resort the list //if (codeCount == code.length) { - code = (SketchCode[]) PApplet.append(code, newCode); + codeDocs = (SketchCodeDocument[]) PApplet.append(codeDocs, newCode); codeCount++; //} //code[codeCount++] = newCode; @@ -257,14 +258,14 @@ public class Sketch { for (int i = 1; i < codeCount; i++) { int who = i; for (int j = i + 1; j < codeCount; j++) { - if (code[j].getFileName().compareTo(code[who].getFileName()) < 0) { + if (codeDocs[j].getCode().getFileName().compareTo(codeDocs[who].getCode().getFileName()) < 0) { who = j; // this guy is earlier in the alphabet } } if (who != i) { // swap with someone if changes made - SketchCode temp = code[who]; - code[who] = code[i]; - code[i] = temp; + SketchCodeDocument temp = codeDocs[who]; + codeDocs[who] = codeDocs[i]; + codeDocs[i] = temp; } } } @@ -379,7 +380,7 @@ public class Sketch { // Don't let the user create the main tab as a .java file instead of .pde if (!isDefaultExtension(newExtension)) { if (renamingCode) { // If creating a new tab, don't show this error - if (current == code[0]) { // If this is the main tab, disallow + if (current == codeDocs[0].getCode()) { // If this is the main tab, disallow Base.showWarning(_("Problem with rename"), _("The main file can't use an extension.\n" + "(It may be time for your to graduate to a\n" + @@ -401,12 +402,12 @@ public class Sketch { // In Arduino, we want to allow files with the same name but different // extensions, so compare the full names (including extensions). This // might cause problems: http://dev.processing.org/bugs/show_bug.cgi?id=543 - for (SketchCode c : code) { - if (newName.equalsIgnoreCase(c.getFileName())) { + for (SketchCodeDocument c : codeDocs) { + if (newName.equalsIgnoreCase(c.getCode().getFileName())) { Base.showMessage(_("Nope"), I18n.format( _("A file named \"{0}\" already exists in \"{1}\""), - c.getFileName(), + c.getCode().getFileName(), folder.getAbsolutePath() )); return; @@ -424,8 +425,8 @@ public class Sketch { if (renamingCode && currentIndex == 0) { for (int i = 1; i < codeCount; i++) { - if (sanitaryName.equalsIgnoreCase(code[i].getPrettyName()) && - code[i].isExtension("cpp")) { + if (sanitaryName.equalsIgnoreCase(codeDocs[i].getCode().getPrettyName()) && + codeDocs[i].getCode().isExtension("cpp")) { Base.showMessage(_("Nope"), I18n.format( _("You can't rename the sketch to \"{0}\"\n" + @@ -500,7 +501,7 @@ public class Sketch { // save each of the other tabs because this is gonna be re-opened try { for (int i = 1; i < codeCount; i++) { - code[i].save(); + codeDocs[i].getCode().save(); } } catch (Exception e) { Base.showWarning(_("Error"), _("Could not rename the sketch. (1)"), e); @@ -644,12 +645,12 @@ public class Sketch { // remove it from the internal list of files // resort internal list of files for (int i = 0; i < codeCount; i++) { - if (code[i] == which) { + if (codeDocs[i].getCode() == which) { for (int j = i; j < codeCount-1; j++) { - code[j] = code[j+1]; + codeDocs[j] = codeDocs[j+1]; } codeCount--; - code = (SketchCode[]) PApplet.shorten(code); + codeDocs = (SketchCodeDocument[]) PApplet.shorten(codeDocs); return; } } @@ -689,7 +690,7 @@ public class Sketch { protected void calcModified() { modified = false; for (int i = 0; i < codeCount; i++) { - if (code[i].isModified()) { + if (codeDocs[i].getCode().isModified()) { modified = true; break; } @@ -773,8 +774,8 @@ public class Sketch { } for (int i = 0; i < codeCount; i++) { - if (code[i].isModified()) - code[i].save(); + if (codeDocs[i].getCode().isModified()) + codeDocs[i].getCode().save(); } calcModified(); return true; @@ -782,13 +783,13 @@ public class Sketch { protected boolean renameCodeToInoExtension(File pdeFile) { - for (SketchCode c : code) { - if (!c.getFile().equals(pdeFile)) + for (SketchCodeDocument c : codeDocs) { + if (!c.getCode().getFile().equals(pdeFile)) continue; String pdeName = pdeFile.getPath(); pdeName = pdeName.substring(0, pdeName.length() - 4) + ".ino"; - return c.renameTo(new File(pdeName)); + return c.getCode().renameTo(new File(pdeName)); } return false; } @@ -834,8 +835,8 @@ public class Sketch { // but ignore this situation for the first tab, since it's probably being // resaved (with the same name) to another location/folder. for (int i = 1; i < codeCount; i++) { - if (newName.equalsIgnoreCase(code[i].getPrettyName()) && - code[i].isExtension("cpp")) { + if (newName.equalsIgnoreCase(codeDocs[i].getCode().getPrettyName()) && + codeDocs[i].getCode().isExtension("cpp")) { Base.showMessage(_("Nope"), I18n.format( _("You can't save the sketch as \"{0}\"\n" + @@ -886,8 +887,8 @@ public class Sketch { // save the other tabs to their new location for (int i = 1; i < codeCount; i++) { - File newFile = new File(newFolder, code[i].getFileName()); - code[i].saveAs(newFile); + File newFile = new File(newFolder, codeDocs[i].getCode().getFileName()); + codeDocs[i].getCode().saveAs(newFile); } // re-copy the data folder (this may take a while.. add progress bar?) @@ -912,7 +913,7 @@ public class Sketch { // save the main tab with its new name File newFile = new File(newFolder, newName + ".ino"); - code[0].saveAs(newFile); + codeDocs[0].getCode().saveAs(newFile); editor.handleOpenUnchecked(newFile, currentIndex, @@ -1095,7 +1096,7 @@ public class Sketch { if (editor.untitled) { // TODO probably not necessary? problematic? // If a file has been added, mark the main code as modified so // that the sketch is properly saved. - code[0].setModified(true); + codeDocs[0].getCode().setModified(true); } } return true; @@ -1155,16 +1156,18 @@ public class Sketch { // get the text currently being edited if (current != null) { - current.setState(editor.getText(), - editor.getSelectionStart(), - editor.getSelectionStop(), - editor.getScrollPosition()); + current.setProgram(editor.getText()); + currentCodeDoc.setSelectionStart(editor.getSelectionStart()); + currentCodeDoc.setSelectionStop(editor.getSelectionStop()); + currentCodeDoc.setScrollPosition(editor.getScrollPosition()); } - current = code[which]; + currentCodeDoc = codeDocs[which]; + current = currentCodeDoc.getCode(); currentIndex = which; - editor.setCode(current); + editor.setCode(currentCodeDoc); + editor.header.rebuild(); } @@ -1175,8 +1178,8 @@ public class Sketch { */ protected void setCurrentCode(String findName) { for (int i = 0; i < codeCount; i++) { - if (findName.equals(code[i].getFileName()) || - findName.equals(code[i].getPrettyName())) { + if (findName.equals(codeDocs[i].getCode().getFileName()) || + findName.equals(codeDocs[i].getCode().getPrettyName())) { setCurrentCode(i); return; } @@ -1336,7 +1339,8 @@ public class Sketch { StringBuffer bigCode = new StringBuffer(); int bigCount = 0; - for (SketchCode sc : code) { + for (SketchCodeDocument scd : codeDocs) { + SketchCode sc = scd.getCode(); if (sc.isExtension("ino") || sc.isExtension("pde")) { sc.setPreprocOffset(bigCount); // These #line directives help the compiler report errors with @@ -1396,7 +1400,8 @@ public class Sketch { // 3. then loop over the code[] and save each .java file - for (SketchCode sc : code) { + for (SketchCodeDocument scd : codeDocs) { + SketchCode sc = scd.getCode(); if (sc.isExtension("c") || sc.isExtension("cpp") || sc.isExtension("h")) { // no pre-processing services necessary for java files // just write the the contents of 'program' to a .java file @@ -1769,7 +1774,7 @@ public class Sketch { modified = true; for (int i = 0; i < codeCount; i++) { - code[i].save(); // this will force a save + codeDocs[i].getCode().save(); // this will force a save } calcModified(); @@ -1804,8 +1809,8 @@ public class Sketch { // check to see if each modified code file can be written to for (int i = 0; i < codeCount; i++) { - if (code[i].isModified() && code[i].fileReadOnly() && - code[i].fileExists()) { + if (codeDocs[i].getCode().isModified() && codeDocs[i].getCode().fileReadOnly() && + codeDocs[i].getCode().fileExists()) { // System.err.println("found a read-only file " + code[i].file); return true; } @@ -1948,8 +1953,8 @@ public class Sketch { } - public SketchCode[] getCode() { - return code; + public SketchCodeDocument[] getCodeDocs() { + return codeDocs; } @@ -1959,13 +1964,13 @@ public class Sketch { public SketchCode getCode(int index) { - return code[index]; + return codeDocs[index].getCode(); } public int getCodeIndex(SketchCode who) { for (int i = 0; i < codeCount; i++) { - if (who == code[i]) { + if (who == codeDocs[i].getCode()) { return i; } } diff --git a/app/src/processing/app/SketchCode.java b/app/src/processing/app/SketchCode.java index 91a8232e8..f7116735f 100644 --- a/app/src/processing/app/SketchCode.java +++ b/app/src/processing/app/SketchCode.java @@ -28,8 +28,6 @@ import java.io.*; import java.util.List; import java.util.Arrays; -import javax.swing.text.Document; - import static processing.app.I18n._; import processing.app.helpers.FileUtils; @@ -47,21 +45,6 @@ public class SketchCode { /** Text of the program text for this tab */ private String program; - /** Document object for this tab. Currently this is a SyntaxDocument. */ - private Document document; - - /** - * Undo Manager for this tab, each tab keeps track of their own - * Editor.undo will be set to this object when this code is the tab - * that's currently the front. - */ - private LastUndoableEditAwareUndoManager undo = new LastUndoableEditAwareUndoManager(); - - // saved positions from last time this tab was used - private int selectionStart; - private int selectionStop; - private int scrollPosition; - private boolean modified; /** name of .java file after preproc */ @@ -183,16 +166,6 @@ public class SketchCode { } -// public void setPreprocName(String preprocName) { -// this.preprocName = preprocName; -// } -// -// -// public String getPreprocName() { -// return preprocName; -// } - - public void setPreprocOffset(int preprocOffset) { this.preprocOffset = preprocOffset; } @@ -208,51 +181,6 @@ public class SketchCode { } - public Document getDocument() { - return document; - } - - - public void setDocument(Document d) { - document = d; - } - - - public LastUndoableEditAwareUndoManager getUndo() { - return undo; - } - - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - - // TODO these could probably be handled better, since it's a general state - // issue that's read/write from only one location in Editor (on tab switch.) - - - public int getSelectionStart() { - return selectionStart; - } - - - public int getSelectionStop() { - return selectionStop; - } - - - public int getScrollPosition() { - return scrollPosition; - } - - - protected void setState(String p, int start, int stop, int pos) { - program = p; - selectionStart = start; - selectionStop = stop; - scrollPosition = pos; - } - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . diff --git a/app/src/processing/app/SketchCodeDocument.java b/app/src/processing/app/SketchCodeDocument.java new file mode 100644 index 000000000..3310e2479 --- /dev/null +++ b/app/src/processing/app/SketchCodeDocument.java @@ -0,0 +1,83 @@ +package processing.app; + +import java.io.File; + +import javax.swing.text.Document; + +public class SketchCodeDocument { + + SketchCode code; + + private Document document; + + /** + * Undo Manager for this tab, each tab keeps track of their own + * Editor.undo will be set to this object when this code is the tab + * that's currently the front. + */ + private LastUndoableEditAwareUndoManager undo = new LastUndoableEditAwareUndoManager(); + + public LastUndoableEditAwareUndoManager getUndo() { + return undo; + } + + public void setUndo(LastUndoableEditAwareUndoManager undo) { + this.undo = undo; + } + + public int getSelectionStart() { + return selectionStart; + } + + public void setSelectionStart(int selectionStart) { + this.selectionStart = selectionStart; + } + + public int getSelectionStop() { + return selectionStop; + } + + public void setSelectionStop(int selectionStop) { + this.selectionStop = selectionStop; + } + + public int getScrollPosition() { + return scrollPosition; + } + + public void setScrollPosition(int scrollPosition) { + this.scrollPosition = scrollPosition; + } + + // saved positions from last time this tab was used + private int selectionStart; + private int selectionStop; + private int scrollPosition; + + + public SketchCodeDocument(SketchCode sketchCode, Document doc) { + code = sketchCode; + document = doc; + } + + public SketchCodeDocument(File file) { + code = new SketchCode(file); + } + + public SketchCode getCode() { + return code; + } + + public void setCode(SketchCode code) { + this.code = code; + } + + public Document getDocument() { + return document; + } + + public void setDocument(Document document) { + this.document = document; + } + +} From 79ab98fef9cd45e3515a13877c818e7df1e9f3ff Mon Sep 17 00:00:00 2001 From: Claudio Indellicati Date: Thu, 30 Jan 2014 15:50:09 +0100 Subject: [PATCH 013/148] Make Compiler independent from Sketch. Create a class SketchData to store all relevant data for a sketch (trying to keep GUI stuff out of the way). Moved preprocessing code from Sketch to Compiler. --- app/src/processing/app/Base.java | 2 +- app/src/processing/app/Sketch.java | 398 ++++----------------- app/src/processing/app/SketchCode.java | 6 +- app/src/processing/app/SketchData.java | 108 ++++++ app/src/processing/app/debug/Compiler.java | 211 +++++++++-- 5 files changed, 367 insertions(+), 358 deletions(-) create mode 100644 app/src/processing/app/SketchData.java diff --git a/app/src/processing/app/Base.java b/app/src/processing/app/Base.java index 9132571b1..282162552 100644 --- a/app/src/processing/app/Base.java +++ b/app/src/processing/app/Base.java @@ -105,7 +105,7 @@ public class Base { static private LibraryList libraries; // maps #included files to their library folder - static Map importToLibraryTable; + public static Map importToLibraryTable; // classpath for all known libraries for p5 // (both those in the p5/libs folder and those with lib subfolders diff --git a/app/src/processing/app/Sketch.java b/app/src/processing/app/Sketch.java index 9d7690a4a..970685485 100644 --- a/app/src/processing/app/Sketch.java +++ b/app/src/processing/app/Sketch.java @@ -29,13 +29,11 @@ import cc.arduino.packages.UploaderAndMonitorFactory; import cc.arduino.packages.Uploader; import processing.app.debug.*; import processing.app.debug.Compiler; +import processing.app.debug.Compiler.ProgressListener; import processing.app.forms.PasswordAuthorizationDialog; import processing.app.helpers.PreferencesMap; import processing.app.helpers.FileUtils; import processing.app.packages.Library; -import processing.app.packages.LibraryList; -import processing.app.preproc.*; -import processing.core.*; import static processing.app.I18n._; import java.io.*; @@ -55,12 +53,6 @@ public class Sketch { /** main pde file for this sketch. */ private File primaryFile; - /** - * Name of sketch, which is the name of main file - * (without .pde or .java extension) - */ - private String name; - /** true if any of the files have been modified. */ private boolean modified; @@ -77,25 +69,10 @@ public class Sketch { private SketchCodeDocument currentCodeDoc; private int currentIndex; - /** - * Number of sketchCode objects (tabs) in the current sketch. Note that this - * will be the same as code.length, because the getCode() method returns - * just the code[] array, rather than a copy of it, or an array that's been - * resized to just the relevant files themselves. - * http://dev.processing.org/bugs/show_bug.cgi?id=940 - */ - private int codeCount; - private SketchCodeDocument[] codeDocs; + private SketchData data; /** Class name for the PApplet, as determined by the preprocessor. */ private String appletClassName; - /** Class path determined during build. */ - private String classPath; - - /** - * List of library folders. - */ - private LibraryList importedLibraries; /** * File inside the build directory that contains the build options @@ -107,16 +84,16 @@ public class Sketch { * path is location of the main .pde file, because this is also * simplest to use when opening the file from the finder/explorer. */ - public Sketch(Editor editor, File file) throws IOException { - this.editor = editor; - + public Sketch(Editor _editor, File file) throws IOException { + editor = _editor; + data = new SketchData(); primaryFile = file; // get the name of the sketch by chopping .pde or .java // off of the main file name String mainFilename = primaryFile.getName(); int suffixLength = getDefaultExtension().length() + 1; - name = mainFilename.substring(0, mainFilename.length() - suffixLength); + data.setName(mainFilename.substring(0, mainFilename.length() - suffixLength)); // lib/build must exist when the application is started // it is added to the CLASSPATH by default, but if it doesn't @@ -167,9 +144,7 @@ public class Sketch { // reset these because load() may be called after an // external editor event. (fix for 0099) - codeCount = 0; - - codeDocs = new SketchCodeDocument[list.length]; + data.clearCodeDocs(); List extensions = getExtensions(); @@ -192,8 +167,7 @@ public class Sketch { // Don't allow people to use files with invalid names, since on load, // it would be otherwise possible to sneak in nasty filenames. [0116] if (Sketch.isSanitaryName(base)) { - codeDocs[codeCount++] = - new SketchCodeDocument(new File(folder, filename)); + data.addCodeDoc(new SketchCodeDocument(new File(folder, filename))); } else { System.err.println(I18n.format("File name {0} is invalid: ignored", filename)); } @@ -201,26 +175,21 @@ public class Sketch { } } - if (codeCount == 0) + if (data.getCodeCount() == 0) throw new IOException(_("No valid code files found")); - // Remove any code that wasn't proper - codeDocs = (SketchCodeDocument[]) PApplet.subset(codeDocs, 0, codeCount); - // move the main class to the first tab // start at 1, if it's at zero, don't bother - for (int i = 1; i < codeCount; i++) { + for (SketchCodeDocument codeDoc : data.getCodeDocs()) { //if (code[i].file.getName().equals(mainFilename)) { - if (codeDocs[i].getCode().getFile().equals(primaryFile)) { - SketchCodeDocument temp = codeDocs[0]; - codeDocs[0] = codeDocs[i]; - codeDocs[i] = temp; + if (codeDoc.getCode().getFile().equals(primaryFile)) { + data.moveCodeDocToFront(codeDoc); break; } } // sort the entries at the top - sortCode(); + data.sortCode(); // set the main file to be the current tab if (editor != null) { @@ -229,47 +198,6 @@ public class Sketch { } - protected void replaceCode(SketchCode newCode) { - for (int i = 0; i < codeCount; i++) { - if (codeDocs[i].getCode().getFileName().equals(newCode.getFileName())) { - codeDocs[i].setCode(newCode); - break; - } - } - } - - - protected void insertCode(SketchCode newCode) { - // make sure the user didn't hide the sketch folder - ensureExistence(); - - // add file to the code/codeCount list, resort the list - //if (codeCount == code.length) { - codeDocs = (SketchCodeDocument[]) PApplet.append(codeDocs, newCode); - codeCount++; - //} - //code[codeCount++] = newCode; - } - - - protected void sortCode() { - // cheap-ass sort of the rest of the files - // it's a dumb, slow sort, but there shouldn't be more than ~5 files - for (int i = 1; i < codeCount; i++) { - int who = i; - for (int j = i + 1; j < codeCount; j++) { - if (codeDocs[j].getCode().getFileName().compareTo(codeDocs[who].getCode().getFileName()) < 0) { - who = j; // this guy is earlier in the alphabet - } - } - if (who != i) { // swap with someone if changes made - SketchCodeDocument temp = codeDocs[who]; - codeDocs[who] = codeDocs[i]; - codeDocs[i] = temp; - } - } - } - boolean renamingCode; /** @@ -380,7 +308,7 @@ public class Sketch { // Don't let the user create the main tab as a .java file instead of .pde if (!isDefaultExtension(newExtension)) { if (renamingCode) { // If creating a new tab, don't show this error - if (current == codeDocs[0].getCode()) { // If this is the main tab, disallow + if (current == data.getCodeDoc(0).getCode()) { // If this is the main tab, disallow Base.showWarning(_("Problem with rename"), _("The main file can't use an extension.\n" + "(It may be time for your to graduate to a\n" + @@ -402,7 +330,7 @@ public class Sketch { // In Arduino, we want to allow files with the same name but different // extensions, so compare the full names (including extensions). This // might cause problems: http://dev.processing.org/bugs/show_bug.cgi?id=543 - for (SketchCodeDocument c : codeDocs) { + for (SketchCodeDocument c : data.getCodeDocs()) { if (newName.equalsIgnoreCase(c.getCode().getFileName())) { Base.showMessage(_("Nope"), I18n.format( @@ -424,9 +352,9 @@ public class Sketch { } if (renamingCode && currentIndex == 0) { - for (int i = 1; i < codeCount; i++) { - if (sanitaryName.equalsIgnoreCase(codeDocs[i].getCode().getPrettyName()) && - codeDocs[i].getCode().isExtension("cpp")) { + for (SketchCodeDocument codeDoc : data.getCodeDocs()) { + if (sanitaryName.equalsIgnoreCase(codeDoc.getCode().getPrettyName()) && + codeDoc.getCode().isExtension("cpp")) { Base.showMessage(_("Nope"), I18n.format( _("You can't rename the sketch to \"{0}\"\n" + @@ -500,8 +428,8 @@ public class Sketch { // save each of the other tabs because this is gonna be re-opened try { - for (int i = 1; i < codeCount; i++) { - codeDocs[i].getCode().save(); + for (SketchCodeDocument codeDoc : data.getCodeDocs()) { + codeDoc.getCode().save(); } } catch (Exception e) { Base.showWarning(_("Error"), _("Could not rename the sketch. (1)"), e); @@ -560,11 +488,12 @@ public class Sketch { } SketchCode newCode = new SketchCode(newFile); //System.out.println("new code is named " + newCode.getPrettyName() + " " + newCode.getFile()); - insertCode(newCode); + ensureExistence(); + data.insertCode(newCode); } // sort the entries - sortCode(); + data.sortCode(); // set the new guy as current setCurrentCode(newName); @@ -629,7 +558,7 @@ public class Sketch { } // remove code from the list - removeCode(current); + data.removeCode(current); // just set current tab to the main tab setCurrentCode(0); @@ -641,29 +570,12 @@ public class Sketch { } - protected void removeCode(SketchCode which) { - // remove it from the internal list of files - // resort internal list of files - for (int i = 0; i < codeCount; i++) { - if (codeDocs[i].getCode() == which) { - for (int j = i; j < codeCount-1; j++) { - codeDocs[j] = codeDocs[j+1]; - } - codeCount--; - codeDocs = (SketchCodeDocument[]) PApplet.shorten(codeDocs); - return; - } - } - System.err.println(_("removeCode: internal error.. could not find code")); - } - - /** * Move to the previous tab. */ public void handlePrevCode() { int prev = currentIndex - 1; - if (prev < 0) prev = codeCount-1; + if (prev < 0) prev = data.getCodeCount()-1; setCurrentCode(prev); } @@ -672,7 +584,7 @@ public class Sketch { * Move to the next tab. */ public void handleNextCode() { - setCurrentCode((currentIndex + 1) % codeCount); + setCurrentCode((currentIndex + 1) % data.getCodeCount()); } @@ -689,8 +601,8 @@ public class Sketch { protected void calcModified() { modified = false; - for (int i = 0; i < codeCount; i++) { - if (codeDocs[i].getCode().isModified()) { + for (SketchCodeDocument codeDoc : data.getCodeDocs()) { + if (codeDoc.getCode().isModified()) { modified = true; break; } @@ -773,9 +685,9 @@ public class Sketch { } } - for (int i = 0; i < codeCount; i++) { - if (codeDocs[i].getCode().isModified()) - codeDocs[i].getCode().save(); + for (SketchCodeDocument codeDoc : data.getCodeDocs()) { + if (codeDoc.getCode().isModified()) + codeDoc.getCode().save(); } calcModified(); return true; @@ -783,7 +695,7 @@ public class Sketch { protected boolean renameCodeToInoExtension(File pdeFile) { - for (SketchCodeDocument c : codeDocs) { + for (SketchCodeDocument c : data.getCodeDocs()) { if (!c.getCode().getFile().equals(pdeFile)) continue; @@ -834,9 +746,9 @@ public class Sketch { // make sure there doesn't exist a .cpp file with that name already // but ignore this situation for the first tab, since it's probably being // resaved (with the same name) to another location/folder. - for (int i = 1; i < codeCount; i++) { - if (newName.equalsIgnoreCase(codeDocs[i].getCode().getPrettyName()) && - codeDocs[i].getCode().isExtension("cpp")) { + for (SketchCodeDocument codeDoc : data.getCodeDocs()) { + if (newName.equalsIgnoreCase(codeDoc.getCode().getPrettyName()) && + codeDoc.getCode().isExtension("cpp")) { Base.showMessage(_("Nope"), I18n.format( _("You can't save the sketch as \"{0}\"\n" + @@ -886,9 +798,10 @@ public class Sketch { } // save the other tabs to their new location - for (int i = 1; i < codeCount; i++) { - File newFile = new File(newFolder, codeDocs[i].getCode().getFileName()); - codeDocs[i].getCode().saveAs(newFile); + for (SketchCodeDocument codeDoc : data.getCodeDocs()) { + if (data.indexOfCodeDoc(codeDoc) == 0) continue; + File newFile = new File(newFolder, codeDoc.getCode().getFileName()); + codeDoc.getCode().saveAs(newFile); } // re-copy the data folder (this may take a while.. add progress bar?) @@ -913,7 +826,7 @@ public class Sketch { // save the main tab with its new name File newFile = new File(newFolder, newName + ".ino"); - codeDocs[0].getCode().saveAs(newFile); + data.getCodeDoc(0).getCode().saveAs(newFile); editor.handleOpenUnchecked(newFile, currentIndex, @@ -1079,11 +992,12 @@ public class Sketch { SketchCode newCode = new SketchCode(destFile); if (replacement) { - replaceCode(newCode); + data.replaceCode(newCode); } else { - insertCode(newCode); - sortCode(); + ensureExistence(); + data.insertCode(newCode); + data.sortCode(); } setCurrentCode(filename); editor.header.repaint(); @@ -1096,7 +1010,7 @@ public class Sketch { if (editor.untitled) { // TODO probably not necessary? problematic? // If a file has been added, mark the main code as modified so // that the sketch is properly saved. - codeDocs[0].getCode().setModified(true); + data.getCodeDoc(0).getCode().setModified(true); } } return true; @@ -1162,7 +1076,7 @@ public class Sketch { currentCodeDoc.setScrollPosition(editor.getScrollPosition()); } - currentCodeDoc = codeDocs[which]; + currentCodeDoc = data.getCodeDoc(which); current = currentCodeDoc.getCode(); currentIndex = which; @@ -1177,10 +1091,10 @@ public class Sketch { * @param findName the file name (not pretty name) to be shown */ protected void setCurrentCode(String findName) { - for (int i = 0; i < codeCount; i++) { - if (findName.equals(codeDocs[i].getCode().getFileName()) || - findName.equals(codeDocs[i].getCode().getPrettyName())) { - setCurrentCode(i); + for (SketchCodeDocument codeDoc : data.getCodeDocs()) { + if (findName.equals(codeDoc.getCode().getFileName()) || + findName.equals(codeDoc.getCode().getPrettyName())) { + setCurrentCode(data.indexOfCodeDoc(codeDoc)); return; } } @@ -1290,144 +1204,6 @@ public class Sketch { } - /** - * Build all the code for this sketch. - * - * In an advanced program, the returned class name could be different, - * which is why the className is set based on the return value. - * A compilation error will burp up a RunnerException. - * - * Setting purty to 'true' will cause exception line numbers to be incorrect. - * Unless you know the code compiles, you should first run the preprocessor - * with purty set to false to make sure there are no errors, then once - * successful, re-export with purty set to true. - * - * @param buildPath Location to copy all the .java files - * @return null if compilation failed, main class name if not - */ - public void preprocess(String buildPath) throws RunnerException { - preprocess(buildPath, new PdePreprocessor()); - } - - public void preprocess(String buildPath, PdePreprocessor preprocessor) throws RunnerException { - // make sure the user didn't hide the sketch folder - ensureExistence(); - - classPath = buildPath; - -// // figure out the contents of the code folder to see if there -// // are files that need to be added to the imports -// if (codeFolder.exists()) { -// libraryPath = codeFolder.getAbsolutePath(); -// -// // get a list of .jar files in the "code" folder -// // (class files in subfolders should also be picked up) -// String codeFolderClassPath = -// Compiler.contentsToClassPath(codeFolder); -// // append the jar files in the code folder to the class path -// classPath += File.pathSeparator + codeFolderClassPath; -// // get list of packages found in those jars -// codeFolderPackages = -// Compiler.packageListFromClassPath(codeFolderClassPath); -// -// } else { -// libraryPath = ""; -// } - - // 1. concatenate all .pde files to the 'main' pde - // store line number for starting point of each code bit - - StringBuffer bigCode = new StringBuffer(); - int bigCount = 0; - for (SketchCodeDocument scd : codeDocs) { - SketchCode sc = scd.getCode(); - if (sc.isExtension("ino") || sc.isExtension("pde")) { - sc.setPreprocOffset(bigCount); - // These #line directives help the compiler report errors with - // correct the filename and line number (issue 281 & 907) - bigCode.append("#line 1 \"" + sc.getFileName() + "\"\n"); - bigCode.append(sc.getProgram()); - bigCode.append('\n'); - bigCount += sc.getLineCount(); - } - } - - // Note that the headerOffset isn't applied until compile and run, because - // it only applies to the code after it's been written to the .java file. - int headerOffset = 0; - try { - headerOffset = preprocessor.writePrefix(bigCode.toString()); - } catch (FileNotFoundException fnfe) { - fnfe.printStackTrace(); - String msg = _("Build folder disappeared or could not be written"); - throw new RunnerException(msg); - } - - // 2. run preproc on that code using the sugg class name - // to create a single .java file and write to buildpath - - try { - // Output file - File streamFile = new File(buildPath, name + ".cpp"); - FileOutputStream outputStream = new FileOutputStream(streamFile); - preprocessor.write(outputStream); - outputStream.close(); - } catch (FileNotFoundException fnfe) { - fnfe.printStackTrace(); - String msg = _("Build folder disappeared or could not be written"); - throw new RunnerException(msg); - } catch (RunnerException pe) { - // RunnerExceptions are caught here and re-thrown, so that they don't - // get lost in the more general "Exception" handler below. - throw pe; - - } catch (Exception ex) { - // TODO better method for handling this? - System.err.println(I18n.format(_("Uncaught exception type: {0}"), ex.getClass())); - ex.printStackTrace(); - throw new RunnerException(ex.toString()); - } - - // grab the imports from the code just preproc'd - - importedLibraries = new LibraryList(); - for (String item : preprocessor.getExtraImports()) { - Library lib = Base.importToLibraryTable.get(item); - if (lib != null && !importedLibraries.contains(lib)) { - importedLibraries.add(lib); - } - } - - // 3. then loop over the code[] and save each .java file - - for (SketchCodeDocument scd : codeDocs) { - SketchCode sc = scd.getCode(); - if (sc.isExtension("c") || sc.isExtension("cpp") || sc.isExtension("h")) { - // no pre-processing services necessary for java files - // just write the the contents of 'program' to a .java file - // into the build directory. uses byte stream and reader/writer - // shtuff so that unicode bunk is properly handled - String filename = sc.getFileName(); //code[i].name + ".java"; - try { - Base.saveFile(sc.getProgram(), new File(buildPath, filename)); - } catch (IOException e) { - e.printStackTrace(); - throw new RunnerException(I18n.format(_("Problem moving {0} to the build folder"), filename)); - } -// sc.setPreprocName(filename); - - } else if (sc.isExtension("ino") || sc.isExtension("pde")) { - // The compiler and runner will need this to have a proper offset - sc.addPreprocOffset(headerOffset); - } - } - } - - - public LibraryList getImportedLibraries() { - return importedLibraries; - } - /** * Map an error from a set of processed .java files back to its location @@ -1479,31 +1255,6 @@ public class Sketch { // } - /** - * Map an error from a set of processed .java files back to its location - * in the actual sketch. - * @param message The error message. - * @param dotJavaFilename The .java file where the exception was found. - * @param dotJavaLine Line number of the .java file for the exception (0-indexed!) - * @return A RunnerException to be sent to the editor, or null if it wasn't - * possible to place the exception to the sketch code. - */ - public RunnerException placeException(String message, - String dotJavaFilename, - int dotJavaLine) { - // Placing errors is simple, because we inserted #line directives - // into the preprocessed source. The compiler gives us correct - // the file name and line number. :-) - for (int codeIndex = 0; codeIndex < getCodeCount(); codeIndex++) { - SketchCode code = getCode(codeIndex); - if (dotJavaFilename.equals(code.getFileName())) { - return new RunnerException(message, codeIndex, dotJavaLine); - } - } - return null; - } - - /** * Run the build inside the temporary build folder. * @return null if compilation failed, main class name if not @@ -1564,8 +1315,8 @@ public class Sketch { * @return null if compilation failed, main class name if not */ public String build(String buildPath, boolean verbose) throws RunnerException { - String primaryClassName = name + ".cpp"; - Compiler compiler = new Compiler(this, buildPath, primaryClassName); + String primaryClassName = data.getName() + ".cpp"; + Compiler compiler = new Compiler(data, buildPath, primaryClassName); File buildPrefsFile = new File(buildPath, BUILD_PREFS_FILE); String newBuildPrefs = buildPrefsString(compiler); @@ -1586,8 +1337,16 @@ public class Sketch { // run the preprocessor editor.status.progressUpdate(20); - preprocess(buildPath); + ensureExistence(); + + compiler.setProgressListener(new ProgressListener() { + @Override + public void progress(int percent) { + editor.status.progressUpdate(percent); + } + }); + // compile the program. errors will happen as a RunnerException // that will bubble up to whomever called build(). if (compiler.compile(verbose)) { @@ -1632,11 +1391,6 @@ public class Sketch { } - public void setCompilingProgress(int percent) { - editor.status.progressUpdate(percent); - } - - protected void size(PreferencesMap prefs) throws RunnerException { String maxTextSizeString = prefs.get("upload.maximum_size"); String maxDataSizeString = prefs.get("upload.maximum_data_size"); @@ -1773,8 +1527,8 @@ public class Sketch { folder.mkdirs(); modified = true; - for (int i = 0; i < codeCount; i++) { - codeDocs[i].getCode().save(); // this will force a save + for (SketchCodeDocument codeDoc : data.getCodeDocs()) { + codeDoc.getCode().save(); // this will force a save } calcModified(); @@ -1808,9 +1562,9 @@ public class Sketch { // } else if (!folder.canWrite()) { // check to see if each modified code file can be written to - for (int i = 0; i < codeCount; i++) { - if (codeDocs[i].getCode().isModified() && codeDocs[i].getCode().fileReadOnly() && - codeDocs[i].getCode().fileExists()) { + for (SketchCodeDocument codeDoc : data.getCodeDocs()) { + if (codeDoc.getCode().isModified() && codeDoc.getCode().fileReadOnly() && + codeDoc.getCode().fileExists()) { // System.err.println("found a read-only file " + code[i].file); return true; } @@ -1879,7 +1633,7 @@ public class Sketch { * Returns the name of this sketch. (The pretty name of the main tab.) */ public String getName() { - return name; + return data.getName(); } @@ -1948,33 +1702,23 @@ public class Sketch { } - public String getClassPath() { - return classPath; - } - - public SketchCodeDocument[] getCodeDocs() { - return codeDocs; + return data.getCodeDocs(); } public int getCodeCount() { - return codeCount; + return data.getCodeCount(); } public SketchCode getCode(int index) { - return codeDocs[index].getCode(); + return data.getCodeDoc(index).getCode(); } public int getCodeIndex(SketchCode who) { - for (int i = 0; i < codeCount; i++) { - if (who == codeDocs[i].getCode()) { - return i; - } - } - return -1; + return data.indexOfCode(who); } diff --git a/app/src/processing/app/SketchCode.java b/app/src/processing/app/SketchCode.java index f7116735f..a2e0bb772 100644 --- a/app/src/processing/app/SketchCode.java +++ b/app/src/processing/app/SketchCode.java @@ -1,5 +1,3 @@ -/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */ - /* SketchCode - data class for a single file inside a sketch Part of the Processing project - http://processing.org @@ -31,11 +29,11 @@ import java.util.Arrays; import static processing.app.I18n._; import processing.app.helpers.FileUtils; - /** * Represents a single tab of a sketch. */ public class SketchCode { + /** Pretty name (no extension), not the full file name */ private String prettyName; @@ -47,8 +45,6 @@ public class SketchCode { private boolean modified; - /** name of .java file after preproc */ -// private String preprocName; /** where this code starts relative to the concat'd code */ private int preprocOffset; diff --git a/app/src/processing/app/SketchData.java b/app/src/processing/app/SketchData.java new file mode 100644 index 000000000..81471d62a --- /dev/null +++ b/app/src/processing/app/SketchData.java @@ -0,0 +1,108 @@ +package processing.app; + +import static processing.app.I18n._; + +import java.util.ArrayList; +import java.util.Collections; +import java.util.Comparator; +import java.util.List; + +public class SketchData { + + /** + * Name of sketch, which is the name of main file (without .pde or .java + * extension) + */ + private String name; + + private List codeDocs = new ArrayList(); + + private static final Comparator CODE_DOCS_COMPARATOR = new Comparator() { + @Override + public int compare(SketchCodeDocument cd1, SketchCodeDocument cd2) { + return cd1.getCode().getFileName().compareTo(cd2.getCode().getFileName()); + } + }; + + + public int getCodeCount() { + return codeDocs.size(); + } + + public SketchCodeDocument[] getCodeDocs() { + return codeDocs.toArray(new SketchCodeDocument[0]); + } + + public void addCodeDoc(SketchCodeDocument sketchCodeDoc) { + codeDocs.add(sketchCodeDoc); + } + + public void moveCodeDocToFront(SketchCodeDocument codeDoc) { + codeDocs.remove(codeDoc); + codeDocs.add(0, codeDoc); + } + + protected void replaceCode(SketchCode newCode) { + for (SketchCodeDocument codeDoc : codeDocs) { + if (codeDoc.getCode().getFileName().equals(newCode.getFileName())) { + codeDoc.setCode(newCode); + return; + } + } + } + + protected void insertCode(SketchCode sketchCode) { + addCodeDoc(new SketchCodeDocument(sketchCode, null)); + } + + protected void sortCode() { + if (codeDocs.size() < 2) + return; + SketchCodeDocument first = codeDocs.remove(0); + Collections.sort(codeDocs, CODE_DOCS_COMPARATOR); + codeDocs.add(0, first); + } + + public SketchCodeDocument getCodeDoc(int i) { + return codeDocs.get(i); + } + + public SketchCode getCode(int i) { + return codeDocs.get(i).getCode(); + } + + protected void removeCode(SketchCode which) { + for (SketchCodeDocument codeDoc : codeDocs) { + if (codeDoc.getCode() == which) { + codeDocs.remove(codeDoc); + return; + } + } + System.err.println(_("removeCode: internal error.. could not find code")); + } + + public int indexOfCodeDoc(SketchCodeDocument codeDoc) { + return codeDocs.indexOf(codeDoc); + } + + public int indexOfCode(SketchCode who) { + for (SketchCodeDocument codeDoc : codeDocs) { + if (codeDoc.getCode() == who) { + return codeDocs.indexOf(codeDoc); + } + } + return -1; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public void clearCodeDocs() { + codeDocs.clear(); + } +} diff --git a/app/src/processing/app/debug/Compiler.java b/app/src/processing/app/debug/Compiler.java index 0f43840a3..da601f563 100644 --- a/app/src/processing/app/debug/Compiler.java +++ b/app/src/processing/app/debug/Compiler.java @@ -27,6 +27,8 @@ import static processing.app.I18n._; import java.io.BufferedReader; import java.io.File; +import java.io.FileNotFoundException; +import java.io.FileOutputStream; import java.io.FileReader; import java.io.IOException; import java.util.ArrayList; @@ -37,59 +39,84 @@ import java.util.Map; import processing.app.Base; import processing.app.I18n; import processing.app.Preferences; -import processing.app.Sketch; import processing.app.SketchCode; +import processing.app.SketchCodeDocument; +import processing.app.SketchData; import processing.app.helpers.FileUtils; import processing.app.helpers.PreferencesMap; import processing.app.helpers.ProcessUtils; import processing.app.helpers.StringReplacer; import processing.app.helpers.filefilters.OnlyDirs; import processing.app.packages.Library; +import processing.app.packages.LibraryList; +import processing.app.preproc.PdePreprocessor; import processing.core.PApplet; public class Compiler implements MessageConsumer { - private Sketch sketch; + private SketchData sketch; + private PreferencesMap prefs; + private boolean verbose; private List objectFiles; - private PreferencesMap prefs; - private boolean verbose; private boolean sketchIsCompiled; - private String targetArch; private RunnerException exception; + /** + * Listener interface for progress update on the GUI + */ + public interface ProgressListener { + public void progress(int percent); + } + + private ProgressListener progressListener; + /** * Create a new Compiler * @param _sketch Sketch object to be compiled. * @param _buildPath Where the temporary files live and will be built from. * @param _primaryClassName the name of the combined sketch file w/ extension */ - public Compiler(Sketch _sketch, String _buildPath, String _primaryClassName) + public Compiler(SketchData _sketch, String _buildPath, String _primaryClassName) throws RunnerException { sketch = _sketch; prefs = createBuildPreferences(_buildPath, _primaryClassName); + + // Start with an empty progress listener + progressListener = new ProgressListener() { + @Override + public void progress(int percent) { + } + }; } + public void setProgressListener(ProgressListener _progressListener) { + progressListener = _progressListener; + } + /** * Compile sketch. + * @param buildPath * * @return true if successful. * @throws RunnerException Only if there's a problem. Only then. */ public boolean compile(boolean _verbose) throws RunnerException { + preprocess(prefs.get("build.path")); + verbose = _verbose || Preferences.getBoolean("build.verbose"); sketchIsCompiled = false; objectFiles = new ArrayList(); // 0. include paths for core + all libraries - sketch.setCompilingProgress(20); + progressListener.progress(20); List includeFolders = new ArrayList(); includeFolders.add(prefs.getFile("build.core.path")); if (prefs.getFile("build.variant.path") != null) includeFolders.add(prefs.getFile("build.variant.path")); - for (Library lib : sketch.getImportedLibraries()) { + for (Library lib : importedLibraries) { if (verbose) System.out.println(I18n .format(_("Using library {0} in folder: {1} {2}"), lib.getName(), @@ -105,7 +132,7 @@ public class Compiler implements MessageConsumer { String[] overrides = prefs.get("architecture.override_check").split(","); archs.addAll(Arrays.asList(overrides)); } - for (Library lib : sketch.getImportedLibraries()) { + for (Library lib : importedLibraries) { if (!lib.supportsArchitecture(archs)) { System.err.println(I18n .format(_("WARNING: library {0} claims to run on {1} " @@ -117,33 +144,33 @@ public class Compiler implements MessageConsumer { } // 1. compile the sketch (already in the buildPath) - sketch.setCompilingProgress(30); + progressListener.progress(30); compileSketch(includeFolders); sketchIsCompiled = true; // 2. compile the libraries, outputting .o files to: // // Doesn't really use configPreferences - sketch.setCompilingProgress(40); + progressListener.progress(40); compileLibraries(includeFolders); // 3. compile the core, outputting .o files to and then // collecting them into the core.a library file. - sketch.setCompilingProgress(50); + progressListener.progress(50); compileCore(); // 4. link it all together into the .elf file - sketch.setCompilingProgress(60); + progressListener.progress(60); compileLink(); // 5. extract EEPROM data (from EEMEM directive) to .eep file. - sketch.setCompilingProgress(70); + progressListener.progress(70); compileEep(); // 6. build the .hex file - sketch.setCompilingProgress(80); + progressListener.progress(80); compileHex(); - sketch.setCompilingProgress(90); + progressListener.progress(90); return true; } @@ -190,8 +217,7 @@ public class Compiler implements MessageConsumer { p.put("build.path", _buildPath); p.put("build.project_name", _primaryClassName); - targetArch = targetPlatform.getId(); - p.put("build.arch", targetArch.toUpperCase()); + p.put("build.arch", targetPlatform.getId().toUpperCase()); // Platform.txt should define its own compiler.path. For // compatibility with earlier 1.5 versions, we define a (ugly, @@ -356,8 +382,6 @@ public class Compiler implements MessageConsumer { return ret; } - boolean firstErrorFound; - boolean secondErrorFound; /** * Either succeeds or throws a RunnerException fit for public consumption. @@ -382,9 +406,6 @@ public class Compiler implements MessageConsumer { System.out.println(); } - firstErrorFound = false; // haven't found any errors yet - secondErrorFound = false; - Process process; try { process = ProcessUtils.exec(command); @@ -520,7 +541,7 @@ public class Compiler implements MessageConsumer { if (!sketchIsCompiled) { // Place errors when compiling the sketch, but never while compiling libraries // or the core. The user's sketch might contain the same filename! - e = sketch.placeException(error, pieces[1], PApplet.parseInt(pieces[2]) - 1); + e = placeException(error, pieces[1], PApplet.parseInt(pieces[2]) - 1); } // replace full file path with the name of the sketch tab (unless we're @@ -656,7 +677,7 @@ public class Compiler implements MessageConsumer { // 2. compile the libraries, outputting .o files to: // // void compileLibraries(List includeFolders) throws RunnerException { - for (Library lib : sketch.getImportedLibraries()) { + for (Library lib : importedLibraries) { compileLibrary(lib, includeFolders); } } @@ -853,4 +874,144 @@ public class Compiler implements MessageConsumer { public PreferencesMap getBuildPreferences() { return prefs; } + + /** + * Build all the code for this sketch. + * + * In an advanced program, the returned class name could be different, + * which is why the className is set based on the return value. + * A compilation error will burp up a RunnerException. + * + * Setting purty to 'true' will cause exception line numbers to be incorrect. + * Unless you know the code compiles, you should first run the preprocessor + * with purty set to false to make sure there are no errors, then once + * successful, re-export with purty set to true. + * + * @param buildPath Location to copy all the .java files + * @return null if compilation failed, main class name if not + */ + public void preprocess(String buildPath) throws RunnerException { + preprocess(buildPath, new PdePreprocessor()); + } + + public void preprocess(String buildPath, PdePreprocessor preprocessor) throws RunnerException { + + // 1. concatenate all .pde files to the 'main' pde + // store line number for starting point of each code bit + + StringBuffer bigCode = new StringBuffer(); + int bigCount = 0; + for (SketchCodeDocument scd : sketch.getCodeDocs()) { + SketchCode sc = scd.getCode(); + if (sc.isExtension("ino") || sc.isExtension("pde")) { + sc.setPreprocOffset(bigCount); + // These #line directives help the compiler report errors with + // correct the filename and line number (issue 281 & 907) + bigCode.append("#line 1 \"" + sc.getFileName() + "\"\n"); + bigCode.append(sc.getProgram()); + bigCode.append('\n'); + bigCount += sc.getLineCount(); + } + } + + // Note that the headerOffset isn't applied until compile and run, because + // it only applies to the code after it's been written to the .java file. + int headerOffset = 0; + try { + headerOffset = preprocessor.writePrefix(bigCode.toString()); + } catch (FileNotFoundException fnfe) { + fnfe.printStackTrace(); + String msg = _("Build folder disappeared or could not be written"); + throw new RunnerException(msg); + } + + // 2. run preproc on that code using the sugg class name + // to create a single .java file and write to buildpath + + try { + // Output file + File streamFile = new File(buildPath, sketch.getName() + ".cpp"); + FileOutputStream outputStream = new FileOutputStream(streamFile); + preprocessor.write(outputStream); + outputStream.close(); + } catch (FileNotFoundException fnfe) { + fnfe.printStackTrace(); + String msg = _("Build folder disappeared or could not be written"); + throw new RunnerException(msg); + } catch (RunnerException pe) { + // RunnerExceptions are caught here and re-thrown, so that they don't + // get lost in the more general "Exception" handler below. + throw pe; + + } catch (Exception ex) { + // TODO better method for handling this? + System.err.println(I18n.format(_("Uncaught exception type: {0}"), ex.getClass())); + ex.printStackTrace(); + throw new RunnerException(ex.toString()); + } + + // grab the imports from the code just preproc'd + + importedLibraries = new LibraryList(); + for (String item : preprocessor.getExtraImports()) { + Library lib = Base.importToLibraryTable.get(item); + if (lib != null && !importedLibraries.contains(lib)) { + importedLibraries.add(lib); + } + } + + // 3. then loop over the code[] and save each .java file + + for (SketchCodeDocument scd : sketch.getCodeDocs()) { + SketchCode sc = scd.getCode(); + if (sc.isExtension("c") || sc.isExtension("cpp") || sc.isExtension("h")) { + // no pre-processing services necessary for java files + // just write the the contents of 'program' to a .java file + // into the build directory. uses byte stream and reader/writer + // shtuff so that unicode bunk is properly handled + String filename = sc.getFileName(); //code[i].name + ".java"; + try { + Base.saveFile(sc.getProgram(), new File(buildPath, filename)); + } catch (IOException e) { + e.printStackTrace(); + throw new RunnerException(I18n.format(_("Problem moving {0} to the build folder"), filename)); + } + + } else if (sc.isExtension("ino") || sc.isExtension("pde")) { + // The compiler and runner will need this to have a proper offset + sc.addPreprocOffset(headerOffset); + } + } + } + + + /** + * List of library folders. + */ + private LibraryList importedLibraries; + + /** + * Map an error from a set of processed .java files back to its location + * in the actual sketch. + * @param message The error message. + * @param dotJavaFilename The .java file where the exception was found. + * @param dotJavaLine Line number of the .java file for the exception (0-indexed!) + * @return A RunnerException to be sent to the editor, or null if it wasn't + * possible to place the exception to the sketch code. + */ + public RunnerException placeException(String message, + String dotJavaFilename, + int dotJavaLine) { + // Placing errors is simple, because we inserted #line directives + // into the preprocessed source. The compiler gives us correct + // the file name and line number. :-) + for (SketchCodeDocument codeDoc : sketch.getCodeDocs()) { + SketchCode code = codeDoc.getCode(); + if (dotJavaFilename.equals(code.getFileName())) { + return new RunnerException(message, sketch.indexOfCode(code), dotJavaLine); + } + } + return null; + } + } From bbd3782a9c3b6234ec8cc5aef8dea84533ad37f7 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Sat, 1 Feb 2014 19:30:52 +0100 Subject: [PATCH 014/148] Reintroduced 'Next Tab' and 'Prev Tab' click actions --- app/src/processing/app/EditorHeader.java | 32 +++++++++++------------- 1 file changed, 15 insertions(+), 17 deletions(-) diff --git a/app/src/processing/app/EditorHeader.java b/app/src/processing/app/EditorHeader.java index dfa76f02a..956f4531f 100644 --- a/app/src/processing/app/EditorHeader.java +++ b/app/src/processing/app/EditorHeader.java @@ -34,6 +34,7 @@ import javax.swing.*; /** * Sketch tabs at the top of the editor window. */ +@SuppressWarnings("serial") public class EditorHeader extends JComponent { static Color backgroundColor; static Color textColor[] = new Color[2]; @@ -326,30 +327,27 @@ public class EditorHeader extends JComponent { // KeyEvent.VK_LEFT and VK_RIGHT will make Windows beep item = new JMenuItem(_("Previous Tab")); - KeyStroke ctrlAltLeft = - KeyStroke.getKeyStroke(KeyEvent.VK_LEFT, Editor.SHORTCUT_ALT_KEY_MASK); + KeyStroke ctrlAltLeft = KeyStroke + .getKeyStroke(KeyEvent.VK_LEFT, Editor.SHORTCUT_ALT_KEY_MASK); item.setAccelerator(ctrlAltLeft); - // this didn't want to work consistently - /* item.addActionListener(new ActionListener() { - public void actionPerformed(ActionEvent e) { - editor.sketch.prevCode(); - } - }); - */ + @Override + public void actionPerformed(ActionEvent e) { + editor.sketch.handlePrevCode(); + } + }); menu.add(item); item = new JMenuItem(_("Next Tab")); - KeyStroke ctrlAltRight = - KeyStroke.getKeyStroke(KeyEvent.VK_RIGHT, Editor.SHORTCUT_ALT_KEY_MASK); + KeyStroke ctrlAltRight = KeyStroke + .getKeyStroke(KeyEvent.VK_RIGHT, Editor.SHORTCUT_ALT_KEY_MASK); item.setAccelerator(ctrlAltRight); - /* item.addActionListener(new ActionListener() { - public void actionPerformed(ActionEvent e) { - editor.sketch.nextCode(); - } - }); - */ + @Override + public void actionPerformed(ActionEvent e) { + editor.sketch.handleNextCode(); + } + }); menu.add(item); Sketch sketch = editor.getSketch(); From 54f3f538f20cd05b7be7446a79b63230e443f74d Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Sat, 1 Feb 2014 20:47:00 +0100 Subject: [PATCH 015/148] Applied (a sort of) decorator pattern to SketchCodeDoc. SketchCodeDoc renamed to SketchCodeDocument. Compiler is now independent from SketchCodeDocument. --- app/src/processing/app/Editor.java | 20 ++-- app/src/processing/app/EditorHeader.java | 3 +- app/src/processing/app/Sketch.java | 113 ++++++++---------- .../processing/app/SketchCodeDocument.java | 44 ++----- app/src/processing/app/SketchData.java | 74 +++++------- app/src/processing/app/debug/Compiler.java | 11 +- 6 files changed, 109 insertions(+), 156 deletions(-) diff --git a/app/src/processing/app/Editor.java b/app/src/processing/app/Editor.java index 2a2c6fe4d..35cfc4553 100644 --- a/app/src/processing/app/Editor.java +++ b/app/src/processing/app/Editor.java @@ -1649,7 +1649,7 @@ public class Editor extends JFrame implements RunnerListener { // insert the program text into the document object try { - document.insertString(0, codeDoc.getCode().getProgram(), null); + document.insertString(0, codeDoc.getProgram(), null); } catch (BadLocationException bl) { bl.printStackTrace(); } @@ -1659,17 +1659,17 @@ public class Editor extends JFrame implements RunnerListener { // connect the undo listener to the editor document.addUndoableEditListener(new UndoableEditListener() { - public void undoableEditHappened(UndoableEditEvent e) { - if (compoundEdit != null) { - compoundEdit.addEdit(e.getEdit()); + public void undoableEditHappened(UndoableEditEvent e) { + if (compoundEdit != null) { + compoundEdit.addEdit(e.getEdit()); - } else if (undo != null) { - undo.addEdit(new CaretAwareUndoableEdit(e.getEdit(), textarea)); - undoAction.updateUndoState(); - redoAction.updateRedoState(); - } + } else if (undo != null) { + undo.addEdit(new CaretAwareUndoableEdit(e.getEdit(), textarea)); + undoAction.updateUndoState(); + redoAction.updateRedoState(); } - }); + } + }); } // update the document object that's in use diff --git a/app/src/processing/app/EditorHeader.java b/app/src/processing/app/EditorHeader.java index 956f4531f..0efd86685 100644 --- a/app/src/processing/app/EditorHeader.java +++ b/app/src/processing/app/EditorHeader.java @@ -359,8 +359,7 @@ public class EditorHeader extends JComponent { editor.getSketch().setCurrentCode(e.getActionCommand()); } }; - for (SketchCodeDocument codeDoc : sketch.getCodeDocs()) { - SketchCode code = codeDoc.getCode(); + for (SketchCode code : sketch.getCodes()) { item = new JMenuItem(code.isExtension(sketch.getDefaultExtension()) ? code.getPrettyName() : code.getFileName()); item.setActionCommand(code.getFileName()); diff --git a/app/src/processing/app/Sketch.java b/app/src/processing/app/Sketch.java index 970685485..fcc3e915b 100644 --- a/app/src/processing/app/Sketch.java +++ b/app/src/processing/app/Sketch.java @@ -65,8 +65,7 @@ public class Sketch { /** code folder location for this sketch (may not exist yet) */ private File codeFolder; - private SketchCode current; - private SketchCodeDocument currentCodeDoc; + private SketchCodeDocument current; private int currentIndex; private SketchData data; @@ -167,7 +166,7 @@ public class Sketch { // Don't allow people to use files with invalid names, since on load, // it would be otherwise possible to sneak in nasty filenames. [0116] if (Sketch.isSanitaryName(base)) { - data.addCodeDoc(new SketchCodeDocument(new File(folder, filename))); + data.addCode(new SketchCodeDocument(new File(folder, filename))); } else { System.err.println(I18n.format("File name {0} is invalid: ignored", filename)); } @@ -180,10 +179,10 @@ public class Sketch { // move the main class to the first tab // start at 1, if it's at zero, don't bother - for (SketchCodeDocument codeDoc : data.getCodeDocs()) { + for (SketchCode code : data.getCodes()) { //if (code[i].file.getName().equals(mainFilename)) { - if (codeDoc.getCode().getFile().equals(primaryFile)) { - data.moveCodeDocToFront(codeDoc); + if (code.getFile().equals(primaryFile)) { + data.moveCodeToFront(code); break; } } @@ -308,7 +307,7 @@ public class Sketch { // Don't let the user create the main tab as a .java file instead of .pde if (!isDefaultExtension(newExtension)) { if (renamingCode) { // If creating a new tab, don't show this error - if (current == data.getCodeDoc(0).getCode()) { // If this is the main tab, disallow + if (current == data.getCode(0)) { // If this is the main tab, disallow Base.showWarning(_("Problem with rename"), _("The main file can't use an extension.\n" + "(It may be time for your to graduate to a\n" + @@ -330,12 +329,12 @@ public class Sketch { // In Arduino, we want to allow files with the same name but different // extensions, so compare the full names (including extensions). This // might cause problems: http://dev.processing.org/bugs/show_bug.cgi?id=543 - for (SketchCodeDocument c : data.getCodeDocs()) { - if (newName.equalsIgnoreCase(c.getCode().getFileName())) { + for (SketchCode c : data.getCodes()) { + if (newName.equalsIgnoreCase(c.getFileName())) { Base.showMessage(_("Nope"), I18n.format( _("A file named \"{0}\" already exists in \"{1}\""), - c.getCode().getFileName(), + c.getFileName(), folder.getAbsolutePath() )); return; @@ -352,15 +351,13 @@ public class Sketch { } if (renamingCode && currentIndex == 0) { - for (SketchCodeDocument codeDoc : data.getCodeDocs()) { - if (sanitaryName.equalsIgnoreCase(codeDoc.getCode().getPrettyName()) && - codeDoc.getCode().isExtension("cpp")) { + for (SketchCode code : data.getCodes()) { + if (sanitaryName.equalsIgnoreCase(code.getPrettyName()) && + code.isExtension("cpp")) { Base.showMessage(_("Nope"), - I18n.format( - _("You can't rename the sketch to \"{0}\"\n" + - "because the sketch already has a .cpp file with that name."), - sanitaryName - )); + I18n.format(_("You can't rename the sketch to \"{0}\"\n" + + "because the sketch already has a .cpp file with that name."), + sanitaryName)); return; } } @@ -428,8 +425,8 @@ public class Sketch { // save each of the other tabs because this is gonna be re-opened try { - for (SketchCodeDocument codeDoc : data.getCodeDocs()) { - codeDoc.getCode().save(); + for (SketchCode code : data.getCodes()) { + code.save(); } } catch (Exception e) { Base.showWarning(_("Error"), _("Could not rename the sketch. (1)"), e); @@ -486,10 +483,8 @@ public class Sketch { ), e); return; } - SketchCode newCode = new SketchCode(newFile); - //System.out.println("new code is named " + newCode.getPrettyName() + " " + newCode.getFile()); ensureExistence(); - data.insertCode(newCode); + data.addCode(new SketchCodeDocument(newFile)); } // sort the entries @@ -601,8 +596,8 @@ public class Sketch { protected void calcModified() { modified = false; - for (SketchCodeDocument codeDoc : data.getCodeDocs()) { - if (codeDoc.getCode().isModified()) { + for (SketchCode code : data.getCodes()) { + if (code.isModified()) { modified = true; break; } @@ -685,9 +680,9 @@ public class Sketch { } } - for (SketchCodeDocument codeDoc : data.getCodeDocs()) { - if (codeDoc.getCode().isModified()) - codeDoc.getCode().save(); + for (SketchCode code : data.getCodes()) { + if (code.isModified()) + code.save(); } calcModified(); return true; @@ -695,13 +690,13 @@ public class Sketch { protected boolean renameCodeToInoExtension(File pdeFile) { - for (SketchCodeDocument c : data.getCodeDocs()) { - if (!c.getCode().getFile().equals(pdeFile)) + for (SketchCode c : data.getCodes()) { + if (!c.getFile().equals(pdeFile)) continue; String pdeName = pdeFile.getPath(); pdeName = pdeName.substring(0, pdeName.length() - 4) + ".ino"; - return c.getCode().renameTo(new File(pdeName)); + return c.renameTo(new File(pdeName)); } return false; } @@ -746,9 +741,9 @@ public class Sketch { // make sure there doesn't exist a .cpp file with that name already // but ignore this situation for the first tab, since it's probably being // resaved (with the same name) to another location/folder. - for (SketchCodeDocument codeDoc : data.getCodeDocs()) { - if (newName.equalsIgnoreCase(codeDoc.getCode().getPrettyName()) && - codeDoc.getCode().isExtension("cpp")) { + for (SketchCode code : data.getCodes()) { + if (newName.equalsIgnoreCase(code.getPrettyName()) && + code.isExtension("cpp")) { Base.showMessage(_("Nope"), I18n.format( _("You can't save the sketch as \"{0}\"\n" + @@ -798,10 +793,10 @@ public class Sketch { } // save the other tabs to their new location - for (SketchCodeDocument codeDoc : data.getCodeDocs()) { - if (data.indexOfCodeDoc(codeDoc) == 0) continue; - File newFile = new File(newFolder, codeDoc.getCode().getFileName()); - codeDoc.getCode().saveAs(newFile); + for (SketchCode code : data.getCodes()) { + if (data.indexOfCode(code) == 0) continue; + File newFile = new File(newFolder, code.getFileName()); + code.saveAs(newFile); } // re-copy the data folder (this may take a while.. add progress bar?) @@ -826,7 +821,7 @@ public class Sketch { // save the main tab with its new name File newFile = new File(newFolder, newName + ".ino"); - data.getCodeDoc(0).getCode().saveAs(newFile); + data.getCode(0).saveAs(newFile); editor.handleOpenUnchecked(newFile, currentIndex, @@ -989,14 +984,14 @@ public class Sketch { } if (codeExtension != null) { - SketchCode newCode = new SketchCode(destFile); + SketchCode newCode = new SketchCodeDocument(destFile); if (replacement) { data.replaceCode(newCode); } else { ensureExistence(); - data.insertCode(newCode); + data.addCode(newCode); data.sortCode(); } setCurrentCode(filename); @@ -1010,7 +1005,7 @@ public class Sketch { if (editor.untitled) { // TODO probably not necessary? problematic? // If a file has been added, mark the main code as modified so // that the sketch is properly saved. - data.getCodeDoc(0).getCode().setModified(true); + data.getCode(0).setModified(true); } } return true; @@ -1071,16 +1066,15 @@ public class Sketch { // get the text currently being edited if (current != null) { current.setProgram(editor.getText()); - currentCodeDoc.setSelectionStart(editor.getSelectionStart()); - currentCodeDoc.setSelectionStop(editor.getSelectionStop()); - currentCodeDoc.setScrollPosition(editor.getScrollPosition()); + current.setSelectionStart(editor.getSelectionStart()); + current.setSelectionStop(editor.getSelectionStop()); + current.setScrollPosition(editor.getScrollPosition()); } - currentCodeDoc = data.getCodeDoc(which); - current = currentCodeDoc.getCode(); + current = (SketchCodeDocument) data.getCode(which); currentIndex = which; - editor.setCode(currentCodeDoc); + editor.setCode(current); editor.header.rebuild(); } @@ -1091,10 +1085,10 @@ public class Sketch { * @param findName the file name (not pretty name) to be shown */ protected void setCurrentCode(String findName) { - for (SketchCodeDocument codeDoc : data.getCodeDocs()) { - if (findName.equals(codeDoc.getCode().getFileName()) || - findName.equals(codeDoc.getCode().getPrettyName())) { - setCurrentCode(data.indexOfCodeDoc(codeDoc)); + for (SketchCode code : data.getCodes()) { + if (findName.equals(code.getFileName()) || + findName.equals(code.getPrettyName())) { + setCurrentCode(data.indexOfCode(code)); return; } } @@ -1527,8 +1521,8 @@ public class Sketch { folder.mkdirs(); modified = true; - for (SketchCodeDocument codeDoc : data.getCodeDocs()) { - codeDoc.getCode().save(); // this will force a save + for (SketchCode code : data.getCodes()) { + code.save(); // this will force a save } calcModified(); @@ -1562,9 +1556,8 @@ public class Sketch { // } else if (!folder.canWrite()) { // check to see if each modified code file can be written to - for (SketchCodeDocument codeDoc : data.getCodeDocs()) { - if (codeDoc.getCode().isModified() && codeDoc.getCode().fileReadOnly() && - codeDoc.getCode().fileExists()) { + for (SketchCode code : data.getCodes()) { + if (code.isModified() && code.fileReadOnly() && code.fileExists()) { // System.err.println("found a read-only file " + code[i].file); return true; } @@ -1702,8 +1695,8 @@ public class Sketch { } - public SketchCodeDocument[] getCodeDocs() { - return data.getCodeDocs(); + public SketchCode[] getCodes() { + return data.getCodes(); } @@ -1713,7 +1706,7 @@ public class Sketch { public SketchCode getCode(int index) { - return data.getCodeDoc(index).getCode(); + return data.getCode(index); } diff --git a/app/src/processing/app/SketchCodeDocument.java b/app/src/processing/app/SketchCodeDocument.java index 3310e2479..ddb026468 100644 --- a/app/src/processing/app/SketchCodeDocument.java +++ b/app/src/processing/app/SketchCodeDocument.java @@ -4,19 +4,24 @@ import java.io.File; import javax.swing.text.Document; -public class SketchCodeDocument { +public class SketchCodeDocument extends SketchCode { - SketchCode code; - private Document document; - /** - * Undo Manager for this tab, each tab keeps track of their own - * Editor.undo will be set to this object when this code is the tab - * that's currently the front. - */ + // Undo Manager for this tab, each tab keeps track of their own Editor.undo + // will be set to this object when this code is the tab that's currently the + // front. private LastUndoableEditAwareUndoManager undo = new LastUndoableEditAwareUndoManager(); + // saved positions from last time this tab was used + private int selectionStart; + private int selectionStop; + private int scrollPosition; + + public SketchCodeDocument(File file) { + super(file); + } + public LastUndoableEditAwareUndoManager getUndo() { return undo; } @@ -49,29 +54,6 @@ public class SketchCodeDocument { this.scrollPosition = scrollPosition; } - // saved positions from last time this tab was used - private int selectionStart; - private int selectionStop; - private int scrollPosition; - - - public SketchCodeDocument(SketchCode sketchCode, Document doc) { - code = sketchCode; - document = doc; - } - - public SketchCodeDocument(File file) { - code = new SketchCode(file); - } - - public SketchCode getCode() { - return code; - } - - public void setCode(SketchCode code) { - this.code = code; - } - public Document getDocument() { return document; } diff --git a/app/src/processing/app/SketchData.java b/app/src/processing/app/SketchData.java index 81471d62a..4f4a16c0e 100644 --- a/app/src/processing/app/SketchData.java +++ b/app/src/processing/app/SketchData.java @@ -1,7 +1,5 @@ package processing.app; -import static processing.app.I18n._; - import java.util.ArrayList; import java.util.Collections; import java.util.Comparator; @@ -14,82 +12,68 @@ public class SketchData { * extension) */ private String name; - - private List codeDocs = new ArrayList(); - private static final Comparator CODE_DOCS_COMPARATOR = new Comparator() { + private List codes = new ArrayList(); + + private static final Comparator CODE_DOCS_COMPARATOR = new Comparator() { @Override - public int compare(SketchCodeDocument cd1, SketchCodeDocument cd2) { - return cd1.getCode().getFileName().compareTo(cd2.getCode().getFileName()); + public int compare(SketchCode x, SketchCode y) { + return x.getFileName().compareTo(y.getFileName()); } }; - public int getCodeCount() { - return codeDocs.size(); + return codes.size(); } - public SketchCodeDocument[] getCodeDocs() { - return codeDocs.toArray(new SketchCodeDocument[0]); + public SketchCode[] getCodes() { + return codes.toArray(new SketchCode[0]); } - public void addCodeDoc(SketchCodeDocument sketchCodeDoc) { - codeDocs.add(sketchCodeDoc); + public void addCode(SketchCode sketchCode) { + codes.add(sketchCode); } - public void moveCodeDocToFront(SketchCodeDocument codeDoc) { - codeDocs.remove(codeDoc); - codeDocs.add(0, codeDoc); + public void moveCodeToFront(SketchCode codeDoc) { + codes.remove(codeDoc); + codes.add(0, codeDoc); } protected void replaceCode(SketchCode newCode) { - for (SketchCodeDocument codeDoc : codeDocs) { - if (codeDoc.getCode().getFileName().equals(newCode.getFileName())) { - codeDoc.setCode(newCode); + for (SketchCode code : codes) { + if (code.getFileName().equals(newCode.getFileName())) { + codes.set(codes.indexOf(code), newCode); return; } } } - protected void insertCode(SketchCode sketchCode) { - addCodeDoc(new SketchCodeDocument(sketchCode, null)); - } - protected void sortCode() { - if (codeDocs.size() < 2) + if (codes.size() < 2) return; - SketchCodeDocument first = codeDocs.remove(0); - Collections.sort(codeDocs, CODE_DOCS_COMPARATOR); - codeDocs.add(0, first); - } - - public SketchCodeDocument getCodeDoc(int i) { - return codeDocs.get(i); + SketchCode first = codes.remove(0); + Collections.sort(codes, CODE_DOCS_COMPARATOR); + codes.add(0, first); } public SketchCode getCode(int i) { - return codeDocs.get(i).getCode(); + return codes.get(i); } protected void removeCode(SketchCode which) { - for (SketchCodeDocument codeDoc : codeDocs) { - if (codeDoc.getCode() == which) { - codeDocs.remove(codeDoc); + for (SketchCode code : codes) { + if (code == which) { + codes.remove(code); return; } } - System.err.println(_("removeCode: internal error.. could not find code")); - } - - public int indexOfCodeDoc(SketchCodeDocument codeDoc) { - return codeDocs.indexOf(codeDoc); + System.err.println("removeCode: internal error.. could not find code"); } public int indexOfCode(SketchCode who) { - for (SketchCodeDocument codeDoc : codeDocs) { - if (codeDoc.getCode() == who) { - return codeDocs.indexOf(codeDoc); - } + for (SketchCode code : codes) { + if (code == who) + return codes.indexOf(code); } return -1; } @@ -103,6 +87,6 @@ public class SketchData { } public void clearCodeDocs() { - codeDocs.clear(); + codes.clear(); } } diff --git a/app/src/processing/app/debug/Compiler.java b/app/src/processing/app/debug/Compiler.java index da601f563..fd1094757 100644 --- a/app/src/processing/app/debug/Compiler.java +++ b/app/src/processing/app/debug/Compiler.java @@ -40,7 +40,6 @@ import processing.app.Base; import processing.app.I18n; import processing.app.Preferences; import processing.app.SketchCode; -import processing.app.SketchCodeDocument; import processing.app.SketchData; import processing.app.helpers.FileUtils; import processing.app.helpers.PreferencesMap; @@ -50,7 +49,6 @@ import processing.app.helpers.filefilters.OnlyDirs; import processing.app.packages.Library; import processing.app.packages.LibraryList; import processing.app.preproc.PdePreprocessor; -import processing.core.PApplet; public class Compiler implements MessageConsumer { @@ -901,8 +899,7 @@ public class Compiler implements MessageConsumer { StringBuffer bigCode = new StringBuffer(); int bigCount = 0; - for (SketchCodeDocument scd : sketch.getCodeDocs()) { - SketchCode sc = scd.getCode(); + for (SketchCode sc : sketch.getCodes()) { if (sc.isExtension("ino") || sc.isExtension("pde")) { sc.setPreprocOffset(bigCount); // These #line directives help the compiler report errors with @@ -962,8 +959,7 @@ public class Compiler implements MessageConsumer { // 3. then loop over the code[] and save each .java file - for (SketchCodeDocument scd : sketch.getCodeDocs()) { - SketchCode sc = scd.getCode(); + for (SketchCode sc : sketch.getCodes()) { if (sc.isExtension("c") || sc.isExtension("cpp") || sc.isExtension("h")) { // no pre-processing services necessary for java files // just write the the contents of 'program' to a .java file @@ -1005,8 +1001,7 @@ public class Compiler implements MessageConsumer { // Placing errors is simple, because we inserted #line directives // into the preprocessed source. The compiler gives us correct // the file name and line number. :-) - for (SketchCodeDocument codeDoc : sketch.getCodeDocs()) { - SketchCode code = codeDoc.getCode(); + for (SketchCode code : sketch.getCodes()) { if (dotJavaFilename.equals(code.getFileName())) { return new RunnerException(message, sketch.indexOfCode(code), dotJavaLine); } From b61f2a419f238afa22fb31e19179db25394faf60 Mon Sep 17 00:00:00 2001 From: Claudio Indellicati Date: Sun, 6 Apr 2014 00:29:20 +0200 Subject: [PATCH 016/148] Made Compiler and PdePreprocessor independent from Preferences. Created a class PreferencesData to manage all parameters except the ones for the GUI. Removed GUI parameters management from ParametersMap. Created ParametersHelper class to help with GUI parameters management. Used ParametersHelper in Themes. --- app/src/processing/app/Preferences.java | 274 ++++-------------- app/src/processing/app/PreferencesData.java | 214 ++++++++++++++ app/src/processing/app/Theme.java | 11 +- app/src/processing/app/debug/Compiler.java | 7 +- .../app/helpers/PreferencesHelper.java | 103 +++++++ .../app/helpers/PreferencesMap.java | 59 ---- .../app/preproc/PdePreprocessor.java | 2 +- 7 files changed, 378 insertions(+), 292 deletions(-) create mode 100644 app/src/processing/app/PreferencesData.java create mode 100644 app/src/processing/app/helpers/PreferencesHelper.java diff --git a/app/src/processing/app/Preferences.java b/app/src/processing/app/Preferences.java index b8b8471f8..46008c962 100644 --- a/app/src/processing/app/Preferences.java +++ b/app/src/processing/app/Preferences.java @@ -38,15 +38,7 @@ import java.awt.event.MouseAdapter; import java.awt.event.MouseEvent; import java.awt.event.WindowAdapter; import java.awt.event.WindowEvent; -import java.io.BufferedReader; import java.io.File; -import java.io.IOException; -import java.io.InputStream; -import java.io.InputStreamReader; -import java.io.PrintWriter; -import java.util.Arrays; -import java.util.MissingResourceException; -import java.util.StringTokenizer; import javax.swing.Box; import javax.swing.JButton; @@ -58,10 +50,9 @@ import javax.swing.JTextField; import javax.swing.KeyStroke; import processing.app.helpers.FileUtils; +import processing.app.helpers.PreferencesHelper; import processing.app.helpers.PreferencesMap; -import processing.app.syntax.SyntaxStyle; import processing.core.PApplet; -import processing.core.PConstants; /** @@ -93,7 +84,7 @@ import processing.core.PConstants; */ public class Preferences { - static final String PREFS_FILE = "preferences.txt"; + static final String PREFS_FILE = PreferencesData.PREFS_FILE; class Language { Language(String _name, String _originalName, String _isoCode) { @@ -238,72 +229,12 @@ public class Preferences { Editor editor; - // data model - - static PreferencesMap defaults; - static PreferencesMap prefs = new PreferencesMap(); - static File preferencesFile; - static boolean doSave = true; - - static protected void init(File file) { - if (file != null) - preferencesFile = file; - else - preferencesFile = Base.getSettingsFile(Preferences.PREFS_FILE); - // start by loading the defaults, in case something - // important was deleted from the user prefs - try { - prefs.load(Base.getLibStream("preferences.txt")); - } catch (IOException e) { - Base.showError(null, _("Could not read default settings.\n" + - "You'll need to reinstall Arduino."), e); - } - - // set some runtime constants (not saved on preferences file) - File hardwareFolder = Base.getHardwareFolder(); - prefs.put("runtime.ide.path", hardwareFolder.getParentFile().getAbsolutePath()); - prefs.put("runtime.ide.version", "" + Base.REVISION); - - // clone the hash table - defaults = new PreferencesMap(prefs); - - if (preferencesFile.exists()) { - // load the previous preferences file - try { - prefs.load(preferencesFile); - } catch (IOException ex) { - Base.showError(_("Error reading preferences"), - I18n.format(_("Error reading the preferences file. " - + "Please delete (or move)\n" - + "{0} and restart Arduino."), - preferencesFile.getAbsolutePath()), ex); - } - } - - // load the I18n module for internationalization - try { - I18n.init(get("editor.languages.current")); - } catch (MissingResourceException e) { - I18n.init("en"); - set("editor.languages.current", "en"); - } - - // set some other runtime constants (not saved on preferences file) - set("runtime.os", PConstants.platformNames[PApplet.platform]); + PreferencesData.init(file); // other things that have to be set explicitly for the defaults - setColor("run.window.bgcolor", SystemColor.control); - - fixPreferences(); - } - - private static void fixPreferences() { - String baud = get("serial.debug_rate"); - if ("14400".equals(baud) || "28800".equals(baud) || "38400".equals(baud)) { - set("serial.debug_rate", "9600"); - } + PreferencesHelper.putColor(PreferencesData.prefs, "run.window.bgcolor", SystemColor.control); } @@ -380,7 +311,7 @@ public class Preferences { label = new JLabel(_("Editor language: ")); box.add(label); comboLanguage = new JComboBox(languages); - String currentLanguage = Preferences.get("editor.languages.current"); + String currentLanguage = PreferencesData.get("editor.languages.current"); for (Language language : languages) { if (language.isoCode.equals(currentLanguage)) comboLanguage.setSelectedItem(language); @@ -507,11 +438,11 @@ public class Preferences { right = Math.max(right, left + d.width); top += d.height; // + GUI_SMALL; - label = new JLabel(preferencesFile.getAbsolutePath()); + label = new JLabel(PreferencesData.preferencesFile.getAbsolutePath()); final JLabel clickable = label; label.addMouseListener(new MouseAdapter() { public void mousePressed(MouseEvent e) { - Base.openFolder(preferencesFile.getParentFile()); + Base.openFolder(PreferencesData.preferencesFile.getParentFile()); } public void mouseEntered(MouseEvent e) { @@ -630,19 +561,19 @@ public class Preferences { */ protected void applyFrame() { // put each of the settings into the table - setBoolean("build.verbose", verboseCompilationBox.isSelected()); - setBoolean("upload.verbose", verboseUploadBox.isSelected()); - setBoolean("editor.linenumbers", displayLineNumbersBox.isSelected()); - setBoolean("upload.verify", verifyUploadBox.isSelected()); - setBoolean("editor.save_on_verify", saveVerifyUploadBox.isSelected()); - + PreferencesData.setBoolean("build.verbose", verboseCompilationBox.isSelected()); + PreferencesData.setBoolean("upload.verbose", verboseUploadBox.isSelected()); + PreferencesData.setBoolean("editor.linenumbers", displayLineNumbersBox.isSelected()); + PreferencesData.setBoolean("upload.verify", verifyUploadBox.isSelected()); + PreferencesData.setBoolean("editor.save_on_verify", saveVerifyUploadBox.isSelected()); + // setBoolean("sketchbook.closing_last_window_quits", // closingLastQuitsBox.isSelected()); //setBoolean("sketchbook.prompt", sketchPromptBox.isSelected()); //setBoolean("sketchbook.auto_clean", sketchCleanBox.isSelected()); // if the sketchbook path has changed, rebuild the menus - String oldPath = get("sketchbook.path"); + String oldPath = PreferencesData.get("sketchbook.path"); String newPath = sketchbookLocationField.getText(); if (newPath.isEmpty()) { if (Base.getPortableFolder() == null) @@ -652,12 +583,12 @@ public class Preferences { } if (!newPath.equals(oldPath)) { editor.base.rebuildSketchbookMenus(); - set("sketchbook.path", newPath); + PreferencesData.set("sketchbook.path", newPath); } - setBoolean("editor.external", externalEditorBox.isSelected()); - setBoolean("update.check", checkUpdatesBox.isSelected()); - setBoolean("editor.save_on_verify", saveVerifyUploadBox.isSelected()); + PreferencesData.setBoolean("editor.external", externalEditorBox.isSelected()); + PreferencesData.setBoolean("update.check", checkUpdatesBox.isSelected()); + PreferencesData.setBoolean("editor.save_on_verify", saveVerifyUploadBox.isSelected()); /* // was gonna use this to check memory settings, @@ -674,24 +605,24 @@ public class Preferences { String newSizeText = fontSizeField.getText(); try { int newSize = Integer.parseInt(newSizeText.trim()); - String pieces[] = PApplet.split(get("editor.font"), ','); + String pieces[] = PApplet.split(PreferencesData.get("editor.font"), ','); pieces[2] = String.valueOf(newSize); - set("editor.font", PApplet.join(pieces, ',')); + PreferencesData.set("editor.font", PApplet.join(pieces, ',')); } catch (Exception e) { System.err.println(I18n.format(_("ignoring invalid font size {0}"), newSizeText)); } if (autoAssociateBox != null) { - setBoolean("platform.auto_file_type_associations", + PreferencesData.setBoolean("platform.auto_file_type_associations", autoAssociateBox.isSelected()); } - setBoolean("editor.update_extension", updateExtensionBox.isSelected()); + PreferencesData.setBoolean("editor.update_extension", updateExtensionBox.isSelected()); // adds the selected language to the preferences file Language newLanguage = (Language) comboLanguage.getSelectedItem(); - set("editor.languages.current", newLanguage.isoCode); + PreferencesData.set("editor.languages.current", newLanguage.isoCode); editor.applyPreferences(); } @@ -701,10 +632,10 @@ public class Preferences { this.editor = editor; // set all settings entry boxes to their actual status - verboseCompilationBox.setSelected(getBoolean("build.verbose")); - verboseUploadBox.setSelected(getBoolean("upload.verbose")); - displayLineNumbersBox.setSelected(getBoolean("editor.linenumbers")); - verifyUploadBox.setSelected(getBoolean("upload.verify")); + verboseCompilationBox.setSelected(PreferencesData.getBoolean("build.verbose")); + verboseUploadBox.setSelected(PreferencesData.getBoolean("upload.verbose")); + displayLineNumbersBox.setSelected(PreferencesData.getBoolean("editor.linenumbers")); + verifyUploadBox.setSelected(PreferencesData.getBoolean("upload.verify")); //closingLastQuitsBox. // setSelected(getBoolean("sketchbook.closing_last_window_quits")); @@ -714,200 +645,95 @@ public class Preferences { // setSelected(getBoolean("sketchbook.auto_clean")); sketchbookLocationField. - setText(get("sketchbook.path")); + setText(PreferencesData.get("sketchbook.path")); externalEditorBox. - setSelected(getBoolean("editor.external")); + setSelected(PreferencesData.getBoolean("editor.external")); checkUpdatesBox. - setSelected(getBoolean("update.check")); + setSelected(PreferencesData.getBoolean("update.check")); saveVerifyUploadBox. - setSelected(getBoolean("editor.save_on_verify")); + setSelected(PreferencesData.getBoolean("editor.save_on_verify")); if (autoAssociateBox != null) { autoAssociateBox. - setSelected(getBoolean("platform.auto_file_type_associations")); + setSelected(PreferencesData.getBoolean("platform.auto_file_type_associations")); } - updateExtensionBox.setSelected(get("editor.update_extension") == null || - getBoolean("editor.update_extension")); + updateExtensionBox.setSelected(PreferencesData.get("editor.update_extension") == null || + PreferencesData.getBoolean("editor.update_extension")); dialog.setVisible(true); } - // ................................................................. - - - static public String[] loadStrings(InputStream input) { - try { - BufferedReader reader = - new BufferedReader(new InputStreamReader(input, "UTF-8")); - - String lines[] = new String[100]; - int lineCount = 0; - String line = null; - while ((line = reader.readLine()) != null) { - if (lineCount == lines.length) { - String temp[] = new String[lineCount << 1]; - System.arraycopy(lines, 0, temp, 0, lineCount); - lines = temp; - } - lines[lineCount++] = line; - } - reader.close(); - - if (lineCount == lines.length) { - return lines; - } - - // resize array to appropriate amount for these lines - String output[] = new String[lineCount]; - System.arraycopy(lines, 0, output, 0, lineCount); - return output; - - } catch (IOException e) { - e.printStackTrace(); - //throw new RuntimeException("Error inside loadStrings()"); - } - return null; - } - - - - // ................................................................. - - static protected void save() { - if (!doSave) return; -// try { - // on startup, don't worry about it - // this is trying to update the prefs for who is open - // before Preferences.init() has been called. - if (preferencesFile == null) return; - - // Fix for 0163 to properly use Unicode when writing preferences.txt - PrintWriter writer = PApplet.createWriter(preferencesFile); - - String[] keys = prefs.keySet().toArray(new String[0]); - Arrays.sort(keys); - for (String key: keys) { - if (key.startsWith("runtime.")) - continue; - writer.println(key + "=" + prefs.get(key)); - } - - writer.flush(); - writer.close(); + PreferencesData.save(); } // ................................................................. static public String get(String attribute) { - return prefs.get(attribute); + return PreferencesData.get(attribute); } static public String get(String attribute, String defaultValue) { - String value = get(attribute); - return (value == null) ? defaultValue : value; + return PreferencesData.get(attribute, defaultValue); } public static boolean has(String key) { - return prefs.containsKey(key); + return PreferencesData.has(key); } public static void remove(String key) { - prefs.remove(key); - } - - static public String getDefault(String attribute) { - return defaults.get(attribute); + PreferencesData.remove(key); } static public void set(String attribute, String value) { - prefs.put(attribute, value); - } - - - static public void unset(String attribute) { - prefs.remove(attribute); + PreferencesData.set(attribute, value); } static public boolean getBoolean(String attribute) { - return prefs.getBoolean(attribute); + return PreferencesData.getBoolean(attribute); } static public void setBoolean(String attribute, boolean value) { - prefs.putBoolean(attribute, value); + PreferencesData.setBoolean(attribute, value); } static public int getInteger(String attribute) { - return Integer.parseInt(get(attribute)); + return PreferencesData.getInteger(attribute); } static public void setInteger(String key, int value) { - set(key, String.valueOf(value)); - } - - - static public Color getColor(String name) { - Color parsed = prefs.getColor(name); - if (parsed != null) - return parsed; - return Color.GRAY; // set a default - } - - - static public void setColor(String attr, Color what) { - prefs.putColor(attr, what); + PreferencesData.setInteger(key, value); } static public Font getFont(String attr) { - Font font = prefs.getFont(attr); + Font font = PreferencesHelper.getFont(PreferencesData.prefs, attr); if (font == null) { - String value = defaults.get(attr); - prefs.put(attr, value); - font = prefs.getFont(attr); + String value = PreferencesData.defaults.get(attr); + PreferencesData.prefs.put(attr, value); + font = PreferencesHelper.getFont(PreferencesData.prefs, attr); } return font; } - - static public SyntaxStyle getStyle(String what) { - String str = get("editor." + what + ".style"); - - StringTokenizer st = new StringTokenizer(str, ","); - - String s = st.nextToken(); - if (s.indexOf("#") == 0) s = s.substring(1); - Color color = Color.DARK_GRAY; - try { - color = new Color(Integer.parseInt(s, 16)); - } catch (Exception e) { } - - s = st.nextToken(); - boolean bold = (s.indexOf("bold") != -1); - boolean italic = (s.indexOf("italic") != -1); - boolean underlined = (s.indexOf("underlined") != -1); - - return new SyntaxStyle(color, italic, bold, underlined); - } - // get a copy of the Preferences static public PreferencesMap getMap() { - return new PreferencesMap(prefs); + return PreferencesData.getMap(); } // Decide wether changed preferences will be saved. When value is // false, Preferences.save becomes a no-op. static public void setDoSave(boolean value) { - doSave = value; + PreferencesData.setDoSave(value); } } diff --git a/app/src/processing/app/PreferencesData.java b/app/src/processing/app/PreferencesData.java new file mode 100644 index 000000000..2b4af0118 --- /dev/null +++ b/app/src/processing/app/PreferencesData.java @@ -0,0 +1,214 @@ +package processing.app; + +import static processing.app.I18n._; + +import java.io.BufferedReader; +import java.io.File; +import java.io.IOException; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.io.PrintWriter; +import java.util.Arrays; +import java.util.MissingResourceException; + +import processing.app.helpers.PreferencesMap; +import processing.core.PApplet; +import processing.core.PConstants; + + +public class PreferencesData { + + static final String PREFS_FILE = "preferences.txt"; + + // data model + + static PreferencesMap defaults; + static PreferencesMap prefs = new PreferencesMap(); + static File preferencesFile; + static boolean doSave = true; + + + static public void init(File file) { + if (file != null) + preferencesFile = file; + else + preferencesFile = Base.getSettingsFile(Preferences.PREFS_FILE); + + // start by loading the defaults, in case something + // important was deleted from the user prefs + try { + prefs.load(Base.getLibStream("preferences.txt")); + } catch (IOException e) { + Base.showError(null, _("Could not read default settings.\n" + + "You'll need to reinstall Arduino."), e); + } + + // set some runtime constants (not saved on preferences file) + File hardwareFolder = Base.getHardwareFolder(); + prefs.put("runtime.ide.path", hardwareFolder.getParentFile().getAbsolutePath()); + prefs.put("runtime.ide.version", "" + Base.REVISION); + + // clone the hash table + defaults = new PreferencesMap(prefs); + + if (preferencesFile.exists()) { + // load the previous preferences file + try { + prefs.load(preferencesFile); + } catch (IOException ex) { + Base.showError(_("Error reading preferences"), + I18n.format(_("Error reading the preferences file. " + + "Please delete (or move)\n" + + "{0} and restart Arduino."), + preferencesFile.getAbsolutePath()), ex); + } + } + + // load the I18n module for internationalization + try { + I18n.init(get("editor.languages.current")); + } catch (MissingResourceException e) { + I18n.init("en"); + set("editor.languages.current", "en"); + } + + // set some other runtime constants (not saved on preferences file) + set("runtime.os", PConstants.platformNames[PApplet.platform]); + + fixPreferences(); + } + + private static void fixPreferences() { + String baud = get("serial.debug_rate"); + if ("14400".equals(baud) || "28800".equals(baud) || "38400".equals(baud)) { + set("serial.debug_rate", "9600"); + } + } + + + static public String[] loadStrings(InputStream input) { + try { + BufferedReader reader = + new BufferedReader(new InputStreamReader(input, "UTF-8")); + + String lines[] = new String[100]; + int lineCount = 0; + String line = null; + while ((line = reader.readLine()) != null) { + if (lineCount == lines.length) { + String temp[] = new String[lineCount << 1]; + System.arraycopy(lines, 0, temp, 0, lineCount); + lines = temp; + } + lines[lineCount++] = line; + } + reader.close(); + + if (lineCount == lines.length) { + return lines; + } + + // resize array to appropriate amount for these lines + String output[] = new String[lineCount]; + System.arraycopy(lines, 0, output, 0, lineCount); + return output; + + } catch (IOException e) { + e.printStackTrace(); + //throw new RuntimeException("Error inside loadStrings()"); + } + return null; + } + + + static protected void save() { + if (!doSave) + return; + + // on startup, don't worry about it + // this is trying to update the prefs for who is open + // before Preferences.init() has been called. + if (preferencesFile == null) return; + + // Fix for 0163 to properly use Unicode when writing preferences.txt + PrintWriter writer = PApplet.createWriter(preferencesFile); + + String[] keys = prefs.keySet().toArray(new String[0]); + Arrays.sort(keys); + for (String key: keys) { + if (key.startsWith("runtime.")) + continue; + writer.println(key + "=" + prefs.get(key)); + } + + writer.flush(); + writer.close(); + } + + + // ................................................................. + + static public String get(String attribute) { + return prefs.get(attribute); + } + + static public String get(String attribute, String defaultValue) { + String value = get(attribute); + return (value == null) ? defaultValue : value; + } + + public static boolean has(String key) { + return prefs.containsKey(key); + } + + public static void remove(String key) { + prefs.remove(key); + } + + static public String getDefault(String attribute) { + return defaults.get(attribute); + } + + + static public void set(String attribute, String value) { + prefs.put(attribute, value); + } + + + static public void unset(String attribute) { + prefs.remove(attribute); + } + + + static public boolean getBoolean(String attribute) { + return prefs.getBoolean(attribute); + } + + + static public void setBoolean(String attribute, boolean value) { + prefs.putBoolean(attribute, value); + } + + + static public int getInteger(String attribute) { + return Integer.parseInt(get(attribute)); + } + + + static public void setInteger(String key, int value) { + set(key, String.valueOf(value)); + } + + // get a copy of the Preferences + static public PreferencesMap getMap() + { + return new PreferencesMap(prefs); + } + + // Decide wether changed preferences will be saved. When value is + // false, Preferences.save becomes a no-op. + static public void setDoSave(boolean value) + { + doSave = value; + } +} diff --git a/app/src/processing/app/Theme.java b/app/src/processing/app/Theme.java index 96ac78b43..7f23d3c46 100644 --- a/app/src/processing/app/Theme.java +++ b/app/src/processing/app/Theme.java @@ -27,6 +27,7 @@ import java.awt.Color; import java.awt.Font; import java.awt.SystemColor; +import processing.app.helpers.PreferencesHelper; import processing.app.helpers.PreferencesMap; import processing.app.syntax.SyntaxStyle; @@ -86,19 +87,19 @@ public class Theme { } static public Color getColor(String name) { - return PreferencesMap.parseColor(get(name)); + return PreferencesHelper.parseColor(get(name)); } static public void setColor(String attr, Color color) { - table.putColor(attr, color); + PreferencesHelper.putColor(table, attr, color); } static public Font getFont(String attr) { - Font font = table.getFont(attr); + Font font = PreferencesHelper.getFont(table, attr); if (font == null) { String value = getDefault(attr); set(attr, value); - font = table.getFont(attr); + font = PreferencesHelper.getFont(table, attr); } return font; } @@ -106,7 +107,7 @@ public class Theme { static public SyntaxStyle getStyle(String what) { String split[] = get("editor." + what + ".style").split(","); - Color color = PreferencesMap.parseColor(split[0]); + Color color = PreferencesHelper.parseColor(split[0]); String style = split[1]; boolean bold = style.contains("bold"); diff --git a/app/src/processing/app/debug/Compiler.java b/app/src/processing/app/debug/Compiler.java index fd1094757..232b5ac7c 100644 --- a/app/src/processing/app/debug/Compiler.java +++ b/app/src/processing/app/debug/Compiler.java @@ -38,7 +38,7 @@ import java.util.Map; import processing.app.Base; import processing.app.I18n; -import processing.app.Preferences; +import processing.app.PreferencesData; import processing.app.SketchCode; import processing.app.SketchData; import processing.app.helpers.FileUtils; @@ -49,6 +49,7 @@ import processing.app.helpers.filefilters.OnlyDirs; import processing.app.packages.Library; import processing.app.packages.LibraryList; import processing.app.preproc.PdePreprocessor; +import processing.core.PApplet; public class Compiler implements MessageConsumer { @@ -104,7 +105,7 @@ public class Compiler implements MessageConsumer { public boolean compile(boolean _verbose) throws RunnerException { preprocess(prefs.get("build.path")); - verbose = _verbose || Preferences.getBoolean("build.verbose"); + verbose = _verbose || PreferencesData.getBoolean("build.verbose"); sketchIsCompiled = false; objectFiles = new ArrayList(); @@ -203,7 +204,7 @@ public class Compiler implements MessageConsumer { // Merge all the global preference configuration in order of priority PreferencesMap p = new PreferencesMap(); - p.putAll(Preferences.getMap()); + p.putAll(PreferencesData.getMap()); if (corePlatform != null) p.putAll(corePlatform.getPreferences()); p.putAll(targetPlatform.getPreferences()); diff --git a/app/src/processing/app/helpers/PreferencesHelper.java b/app/src/processing/app/helpers/PreferencesHelper.java new file mode 100644 index 000000000..0e096e7f6 --- /dev/null +++ b/app/src/processing/app/helpers/PreferencesHelper.java @@ -0,0 +1,103 @@ +package processing.app.helpers; + +import java.awt.Color; +import java.awt.Font; + +public abstract class PreferencesHelper { + +// /** +// * Create a Color with the value of the specified key. The format of the color +// * should be an hexadecimal number of 6 digit, eventually prefixed with a '#'. +// * +// * @param name +// * @return A Color object or null if the key is not found or the format +// * is wrong +// */ +// static public Color getColor(PreferencesMap prefs, String name) { +// Color parsed = parseColor(prefs.get(name)); +// if (parsed != null) +// return parsed; +// return Color.GRAY; // set a default +// } +// +// +// static public void setColor(PreferencesMap prefs, String attr, Color what) { +// putColor(prefs, attr, what); +// } +// +// +// static public Font getFontWithDefault(PreferencesMap prefs, PreferencesMap defaults, String attr) { +// Font font = getFont(prefs, attr); +// if (font == null) { +// String value = defaults.get(attr); +// prefs.put(attr, value); +// font = getFont(prefs, attr); +// } +// return font; +// } +// +// static public SyntaxStyle getStyle(PreferencesMap prefs, String what) { +// String str = prefs.get("editor." + what + ".style"); +// +// StringTokenizer st = new StringTokenizer(str, ","); +// +// String s = st.nextToken(); +// if (s.indexOf("#") == 0) s = s.substring(1); +// Color color = Color.DARK_GRAY; +// try { +// color = new Color(Integer.parseInt(s, 16)); +// } catch (Exception e) { } +// +// s = st.nextToken(); +// boolean bold = (s.indexOf("bold") != -1); +// boolean italic = (s.indexOf("italic") != -1); +// boolean underlined = (s.indexOf("underlined") != -1); +// +// return new SyntaxStyle(color, italic, bold, underlined); +// } + + /** + * Set the value of the specified key based on the Color passed as parameter. + * + * @param attr + * @param color + */ + public static void putColor(PreferencesMap prefs, String attr, Color color) { + prefs.put(attr, "#" + String.format("%06x", color.getRGB() & 0xffffff)); + } + + public static Color parseColor(String v) { + try { + if (v.indexOf("#") == 0) + v = v.substring(1); + return new Color(Integer.parseInt(v, 16)); + } catch (Exception e) { + return null; + } + } + + public static Font getFont(PreferencesMap prefs, String key) { + String value = prefs.get(key); + if (value == null) + return null; + String[] split = value.split(","); + if (split.length != 3) + return null; + + String name = split[0]; + int style = Font.PLAIN; + if (split[1].contains("bold")) + style |= Font.BOLD; + if (split[1].contains("italic")) + style |= Font.ITALIC; + int size; + try { + // ParseDouble handle numbers with decimals too + size = (int) Double.parseDouble(split[2]); + } catch (NumberFormatException e) { + // for wrong formatted size pick the default + size = 12; + } + return new Font(name, style, size); + } +} diff --git a/app/src/processing/app/helpers/PreferencesMap.java b/app/src/processing/app/helpers/PreferencesMap.java index 3f2b264ef..d374fd850 100644 --- a/app/src/processing/app/helpers/PreferencesMap.java +++ b/app/src/processing/app/helpers/PreferencesMap.java @@ -21,8 +21,6 @@ */ package processing.app.helpers; -import java.awt.Color; -import java.awt.Font; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; @@ -324,61 +322,4 @@ public class PreferencesMap extends LinkedHashMap { return new Boolean(prev); } - /** - * Create a Color with the value of the specified key. The format of the color - * should be an hexadecimal number of 6 digit, eventually prefixed with a '#'. - * - * @param name - * @return A Color object or null if the key is not found or the format - * is wrong - */ - public Color getColor(String name) { - return parseColor(get(name)); - } - - /** - * Set the value of the specified key based on the Color passed as parameter. - * - * @param attr - * @param color - */ - public void putColor(String attr, Color color) { - put(attr, "#" + String.format("%06x", color.getRGB() & 0xffffff)); - } - - public static Color parseColor(String v) { - try { - if (v.indexOf("#") == 0) - v = v.substring(1); - return new Color(Integer.parseInt(v, 16)); - } catch (Exception e) { - return null; - } - } - - public Font getFont(String key) { - String value = get(key); - if (value == null) - return null; - String[] split = value.split(","); - if (split.length != 3) - return null; - - String name = split[0]; - int style = Font.PLAIN; - if (split[1].contains("bold")) - style |= Font.BOLD; - if (split[1].contains("italic")) - style |= Font.ITALIC; - int size; - try { - // ParseDouble handle numbers with decimals too - size = (int) Double.parseDouble(split[2]); - } catch (NumberFormatException e) { - // for wrong formatted size pick the default - size = 12; - } - return new Font(name, style, size); - } - } diff --git a/app/src/processing/app/preproc/PdePreprocessor.java b/app/src/processing/app/preproc/PdePreprocessor.java index 10e4b3dd5..e468cfd28 100644 --- a/app/src/processing/app/preproc/PdePreprocessor.java +++ b/app/src/processing/app/preproc/PdePreprocessor.java @@ -90,7 +90,7 @@ public class PdePreprocessor { program = scrubComments(program); // If there are errors, an exception is thrown and this fxn exits. - if (Preferences.getBoolean("preproc.substitute_unicode")) { + if (PreferencesData.getBoolean("preproc.substitute_unicode")) { program = substituteUnicode(program); } From 21de7bdea389f5e3f3d9d9d97bd6f1b18a31acc0 Mon Sep 17 00:00:00 2001 From: Claudio Indellicati Date: Mon, 7 Apr 2014 18:20:17 +0200 Subject: [PATCH 017/148] Moved some code from Sketch to SketchData. --- app/src/processing/app/Sketch.java | 180 +++++-------------------- app/src/processing/app/SketchData.java | 151 +++++++++++++++++++++ 2 files changed, 186 insertions(+), 145 deletions(-) diff --git a/app/src/processing/app/Sketch.java b/app/src/processing/app/Sketch.java index fcc3e915b..b9e93e677 100644 --- a/app/src/processing/app/Sketch.java +++ b/app/src/processing/app/Sketch.java @@ -50,21 +50,9 @@ public class Sketch { private Editor editor; - /** main pde file for this sketch. */ - private File primaryFile; - /** true if any of the files have been modified. */ private boolean modified; - /** folder that contains this sketch */ - private File folder; - - /** data folder location for this sketch (may not exist yet) */ - private File dataFolder; - - /** code folder location for this sketch (may not exist yet) */ - private File codeFolder; - private SketchCodeDocument current; private int currentIndex; @@ -85,14 +73,7 @@ public class Sketch { */ public Sketch(Editor _editor, File file) throws IOException { editor = _editor; - data = new SketchData(); - primaryFile = file; - - // get the name of the sketch by chopping .pde or .java - // off of the main file name - String mainFilename = primaryFile.getName(); - int suffixLength = getDefaultExtension().length() + 1; - data.setName(mainFilename.substring(0, mainFilename.length() - suffixLength)); + data = new SketchData(file); // lib/build must exist when the application is started // it is added to the CLASSPATH by default, but if it doesn't @@ -113,9 +94,6 @@ public class Sketch { tempBuildFolder = Base.getBuildFolder(); //Base.addBuildFolderToClassPath(); - folder = new File(file.getParent()); - //System.out.println("sketch dir is " + folder); - load(); } @@ -135,60 +113,7 @@ public class Sketch { * in which case the load happens each time "run" is hit. */ protected void load() throws IOException { - codeFolder = new File(folder, "code"); - dataFolder = new File(folder, "data"); - - // get list of files in the sketch folder - String list[] = folder.list(); - - // reset these because load() may be called after an - // external editor event. (fix for 0099) - data.clearCodeDocs(); - - List extensions = getExtensions(); - - for (String filename : list) { - // Ignoring the dot prefix files is especially important to avoid files - // with the ._ prefix on Mac OS X. (You'll see this with Mac files on - // non-HFS drives, i.e. a thumb drive formatted FAT32.) - if (filename.startsWith(".")) continue; - - // Don't let some wacko name a directory blah.pde or bling.java. - if (new File(folder, filename).isDirectory()) continue; - - // figure out the name without any extension - String base = filename; - // now strip off the .pde and .java extensions - for (String extension : extensions) { - if (base.toLowerCase().endsWith("." + extension)) { - base = base.substring(0, base.length() - (extension.length() + 1)); - - // Don't allow people to use files with invalid names, since on load, - // it would be otherwise possible to sneak in nasty filenames. [0116] - if (Sketch.isSanitaryName(base)) { - data.addCode(new SketchCodeDocument(new File(folder, filename))); - } else { - System.err.println(I18n.format("File name {0} is invalid: ignored", filename)); - } - } - } - } - - if (data.getCodeCount() == 0) - throw new IOException(_("No valid code files found")); - - // move the main class to the first tab - // start at 1, if it's at zero, don't bother - for (SketchCode code : data.getCodes()) { - //if (code[i].file.getName().equals(mainFilename)) { - if (code.getFile().equals(primaryFile)) { - data.moveCodeToFront(code); - break; - } - } - - // sort the entries at the top - data.sortCode(); + data.load(); // set the main file to be the current tab if (editor != null) { @@ -335,7 +260,7 @@ public class Sketch { I18n.format( _("A file named \"{0}\" already exists in \"{1}\""), c.getFileName(), - folder.getAbsolutePath() + data.getFolder().getAbsolutePath() )); return; } @@ -364,7 +289,7 @@ public class Sketch { } - File newFile = new File(folder, newName); + File newFile = new File(data.getFolder(), newName); // if (newFile.exists()) { // yay! users will try anything // Base.showMessage("Nope", // "A file named \"" + newFile + "\" already exists\n" + @@ -386,7 +311,7 @@ public class Sketch { if (currentIndex == 0) { // get the new folder name/location String folderName = newName.substring(0, newName.indexOf('.')); - File newFolder = new File(folder.getParentFile(), folderName); + File newFolder = new File(data.getFolder().getParentFile(), folderName); if (newFolder.exists()) { Base.showWarning(_("Cannot Rename"), I18n.format( @@ -434,7 +359,7 @@ public class Sketch { } // now rename the sketch folder and re-open - boolean success = folder.renameTo(newFolder); + boolean success = data.getFolder().renameTo(newFolder); if (!success) { Base.showWarning(_("Error"), _("Could not rename the sketch. (2)"), null); return; @@ -479,7 +404,7 @@ public class Sketch { I18n.format( "Could not create the file \"{0}\" in \"{1}\"", newFile, - folder.getAbsolutePath() + data.getFolder().getAbsolutePath() ), e); return; } @@ -534,7 +459,7 @@ public class Sketch { // to do a save on the handleNew() // delete the entire sketch - Base.removeDir(folder); + Base.removeDir(data.getFolder()); // get the changes into the sketchbook menu //sketchbook.rebuildMenus(); @@ -680,10 +605,7 @@ public class Sketch { } } - for (SketchCode code : data.getCodes()) { - if (code.isModified()) - code.save(); - } + data.save(); calcModified(); return true; } @@ -720,10 +642,10 @@ public class Sketch { if (isReadOnly() || isUntitled()) { // default to the sketchbook folder - fd.setSelectedFile(new File(Base.getSketchbookFolder().getAbsolutePath(), folder.getName())); + fd.setSelectedFile(new File(Base.getSketchbookFolder().getAbsolutePath(), data.getFolder().getName())); } else { // default to the parent folder of where this was - fd.setSelectedFile(folder); + fd.setSelectedFile(data.getFolder()); } int returnVal = fd.showSaveDialog(editor); @@ -755,7 +677,7 @@ public class Sketch { } // check if the paths are identical - if (newFolder.equals(folder)) { + if (newFolder.equals(data.getFolder())) { // just use "save" here instead, because the user will have received a // message (from the operating system) about "do you want to replace?" return save(); @@ -764,7 +686,7 @@ public class Sketch { // check to see if the user is trying to save this sketch inside itself try { String newPath = newFolder.getCanonicalPath() + File.separator; - String oldPath = folder.getCanonicalPath() + File.separator; + String oldPath = data.getFolder().getCanonicalPath() + File.separator; if (newPath.indexOf(oldPath) == 0) { Base.showWarning(_("How very Borges of you"), @@ -800,20 +722,20 @@ public class Sketch { } // re-copy the data folder (this may take a while.. add progress bar?) - if (dataFolder.exists()) { + if (data.getDataFolder().exists()) { File newDataFolder = new File(newFolder, "data"); - Base.copyDir(dataFolder, newDataFolder); + Base.copyDir(data.getDataFolder(), newDataFolder); } // re-copy the code folder - if (codeFolder.exists()) { + if (data.getCodeFolder().exists()) { File newCodeFolder = new File(newFolder, "code"); - Base.copyDir(codeFolder, newCodeFolder); + Base.copyDir(data.getCodeFolder(), newCodeFolder); } // copy custom applet.html file if one exists // http://dev.processing.org/bugs/show_bug.cgi?id=485 - File customHtml = new File(folder, "applet.html"); + File customHtml = new File(data.getFolder(), "applet.html"); if (customHtml.exists()) { File newHtml = new File(newFolder, "applet.html"); Base.copyFile(customHtml, newHtml); @@ -912,19 +834,19 @@ public class Sketch { //if (!codeFolder.exists()) codeFolder.mkdirs(); prepareCodeFolder(); - destFile = new File(codeFolder, filename); + destFile = new File(data.getCodeFolder(), filename); } else { - for (String extension : getExtensions()) { + for (String extension : data.getExtensions()) { String lower = filename.toLowerCase(); if (lower.endsWith("." + extension)) { - destFile = new File(this.folder, filename); + destFile = new File(data.getFolder(), filename); codeExtension = extension; } } if (codeExtension == null) { prepareDataFolder(); - destFile = new File(dataFolder, filename); + destFile = new File(data.getDataFolder(), filename); } } @@ -1511,14 +1433,14 @@ public class Sketch { * but not its contents. */ protected void ensureExistence() { - if (folder.exists()) return; + if (data.getFolder().exists()) return; Base.showWarning(_("Sketch Disappeared"), _("The sketch folder has disappeared.\n " + "Will attempt to re-save in the same location,\n" + "but anything besides the code will be lost."), null); try { - folder.mkdirs(); + data.getFolder().mkdirs(); modified = true; for (SketchCode code : data.getCodes()) { @@ -1542,7 +1464,7 @@ public class Sketch { * volumes or folders without appropriate permissions. */ public boolean isReadOnly() { - String apath = folder.getAbsolutePath(); + String apath = data.getFolder().getAbsolutePath(); for (File folder : Base.getLibrariesPath()) { if (apath.startsWith(folder.getAbsolutePath())) return true; @@ -1591,7 +1513,7 @@ public class Sketch { * extensions. */ public boolean validExtension(String what) { - return getExtensions().contains(what); + return data.getExtensions().contains(what); } @@ -1599,7 +1521,7 @@ public class Sketch { * Returns the default extension for this editor setup. */ public String getDefaultExtension() { - return "ino"; + return data.getDefaultExtension(); } static private List hiddenExtensions = Arrays.asList("ino", "pde"); @@ -1608,13 +1530,6 @@ public class Sketch { return hiddenExtensions; } - /** - * Returns a String[] array of proper extensions. - */ - public List getExtensions() { - return Arrays.asList("ino", "pde", "c", "cpp", "h"); - } - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . @@ -1630,20 +1545,11 @@ public class Sketch { } - /** - * Returns a file object for the primary .pde of this sketch. - */ - public File getPrimaryFile() { - return primaryFile; - } - - /** * Returns path to the main .pde file for this sketch. */ public String getMainFilePath() { - return primaryFile.getAbsolutePath(); - //return code[0].file.getAbsolutePath(); + return data.getMainFilePath(); } @@ -1651,15 +1557,7 @@ public class Sketch { * Returns the sketch folder. */ public File getFolder() { - return folder; - } - - - /** - * Returns the location of the sketch's data folder. (It may not exist yet.) - */ - public File getDataFolder() { - return dataFolder; + return data.getFolder(); } @@ -1668,18 +1566,10 @@ public class Sketch { * it also returns the data folder, since it's likely about to be used. */ public File prepareDataFolder() { - if (!dataFolder.exists()) { - dataFolder.mkdirs(); + if (!data.getDataFolder().exists()) { + data.getDataFolder().mkdirs(); } - return dataFolder; - } - - - /** - * Returns the location of the sketch's code folder. (It may not exist yet.) - */ - public File getCodeFolder() { - return codeFolder; + return data.getDataFolder(); } @@ -1688,10 +1578,10 @@ public class Sketch { * it also returns the code folder, since it's likely about to be used. */ public File prepareCodeFolder() { - if (!codeFolder.exists()) { - codeFolder.mkdirs(); + if (!data.getCodeFolder().exists()) { + data.getCodeFolder().mkdirs(); } - return codeFolder; + return data.getCodeFolder(); } diff --git a/app/src/processing/app/SketchData.java b/app/src/processing/app/SketchData.java index 4f4a16c0e..25b9d9c17 100644 --- a/app/src/processing/app/SketchData.java +++ b/app/src/processing/app/SketchData.java @@ -1,12 +1,29 @@ package processing.app; +import static processing.app.I18n._; + +import java.io.File; +import java.io.IOException; import java.util.ArrayList; +import java.util.Arrays; import java.util.Collections; import java.util.Comparator; import java.util.List; public class SketchData { + /** main pde file for this sketch. */ + private File primaryFile; + + /** folder that contains this sketch */ + private File folder; + + /** data folder location for this sketch (may not exist yet) */ + private File dataFolder; + + /** code folder location for this sketch (may not exist yet) */ + private File codeFolder; + /** * Name of sketch, which is the name of main file (without .pde or .java * extension) @@ -22,6 +39,99 @@ public class SketchData { } }; + SketchData(File file) { + primaryFile = file; + + // get the name of the sketch by chopping .pde or .java + // off of the main file name + String mainFilename = primaryFile.getName(); + int suffixLength = getDefaultExtension().length() + 1; + name = mainFilename.substring(0, mainFilename.length() - suffixLength); + + folder = new File(file.getParent()); + //System.out.println("sketch dir is " + folder); + } + + /** + * Build the list of files. + *

+ * Generally this is only done once, rather than + * each time a change is made, because otherwise it gets to be + * a nightmare to keep track of what files went where, because + * not all the data will be saved to disk. + *

+ * This also gets called when the main sketch file is renamed, + * because the sketch has to be reloaded from a different folder. + *

+ * Another exception is when an external editor is in use, + * in which case the load happens each time "run" is hit. + */ + protected void load() throws IOException { + codeFolder = new File(folder, "code"); + dataFolder = new File(folder, "data"); + + // get list of files in the sketch folder + String list[] = folder.list(); + + // reset these because load() may be called after an + // external editor event. (fix for 0099) +// codeDocs = new SketchCodeDoc[list.length]; + clearCodeDocs(); +// data.setCodeDocs(codeDocs); + + List extensions = getExtensions(); + + for (String filename : list) { + // Ignoring the dot prefix files is especially important to avoid files + // with the ._ prefix on Mac OS X. (You'll see this with Mac files on + // non-HFS drives, i.e. a thumb drive formatted FAT32.) + if (filename.startsWith(".")) continue; + + // Don't let some wacko name a directory blah.pde or bling.java. + if (new File(folder, filename).isDirectory()) continue; + + // figure out the name without any extension + String base = filename; + // now strip off the .pde and .java extensions + for (String extension : extensions) { + if (base.toLowerCase().endsWith("." + extension)) { + base = base.substring(0, base.length() - (extension.length() + 1)); + + // Don't allow people to use files with invalid names, since on load, + // it would be otherwise possible to sneak in nasty filenames. [0116] + if (Sketch.isSanitaryName(base)) { + addCode(new SketchCodeDocument(new File(folder, filename))); + } else { + System.err.println(I18n.format("File name {0} is invalid: ignored", filename)); + } + } + } + } + + if (getCodeCount() == 0) + throw new IOException(_("No valid code files found")); + + // move the main class to the first tab + // start at 1, if it's at zero, don't bother + for (SketchCode code : getCodes()) { + //if (code[i].file.getName().equals(mainFilename)) { + if (code.getFile().equals(primaryFile)) { + moveCodeToFront(code); + break; + } + } + + // sort the entries at the top + sortCode(); + } + + public void save() throws IOException { + for (SketchCode code : getCodes()) { + if (code.isModified()) + code.save(); + } + } + public int getCodeCount() { return codes.size(); } @@ -30,6 +140,35 @@ public class SketchData { return codes.toArray(new SketchCode[0]); } + /** + * Returns the default extension for this editor setup. + */ + public String getDefaultExtension() { + return "ino"; + } + + /** + * Returns a String[] array of proper extensions. + */ + public List getExtensions() { + return Arrays.asList("ino", "pde", "c", "cpp", "h"); + } + + /** + * Returns a file object for the primary .pde of this sketch. + */ + public File getPrimaryFile() { + return primaryFile; + } + + /** + * Returns path to the main .pde file for this sketch. + */ + public String getMainFilePath() { + return primaryFile.getAbsolutePath(); + //return code[0].file.getAbsolutePath(); + } + public void addCode(SketchCode sketchCode) { codes.add(sketchCode); } @@ -89,4 +228,16 @@ public class SketchData { public void clearCodeDocs() { codes.clear(); } + + public File getFolder() { + return folder; + } + + public File getDataFolder() { + return dataFolder; + } + + public File getCodeFolder() { + return codeFolder; + } } From 18a8d4d627a6c7c9d7f6255052eff11c727b249b Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Tue, 19 Aug 2014 11:50:51 +0200 Subject: [PATCH 018/148] Created PApplet and PConstants wrapper classes. Also removed unused ColorSelector and CreateFont to reduce wrappers size to the minimum. This commit is preparatory for dropping dependency on processing-core. --- app/src/processing/app/legacy/PApplet.java | 729 ++++++++++++++++ app/src/processing/app/legacy/PConstants.java | 22 + .../processing/app/tools/ColorSelector.java | 609 ------------- app/src/processing/app/tools/CreateFont.java | 813 ------------------ 4 files changed, 751 insertions(+), 1422 deletions(-) create mode 100644 app/src/processing/app/legacy/PApplet.java create mode 100644 app/src/processing/app/legacy/PConstants.java delete mode 100644 app/src/processing/app/tools/ColorSelector.java delete mode 100644 app/src/processing/app/tools/CreateFont.java diff --git a/app/src/processing/app/legacy/PApplet.java b/app/src/processing/app/legacy/PApplet.java new file mode 100644 index 000000000..c444a3b2f --- /dev/null +++ b/app/src/processing/app/legacy/PApplet.java @@ -0,0 +1,729 @@ +package processing.app.legacy; + +import java.io.BufferedReader; +import java.io.File; +import java.io.FileInputStream; +import java.io.FileOutputStream; +import java.io.IOException; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.io.OutputStream; +import java.io.OutputStreamWriter; +import java.io.PrintWriter; +import java.io.UnsupportedEncodingException; +import java.text.NumberFormat; +import java.util.ArrayList; +import java.util.StringTokenizer; +import java.util.regex.Matcher; +import java.util.regex.Pattern; +import java.util.zip.GZIPInputStream; +import java.util.zip.GZIPOutputStream; + +public class PApplet { + + /** Path to sketch folder */ + public String sketchPath; //folder; + + /** + * Full name of the Java version (i.e. 1.5.0_11). + * Prior to 0125, this was only the first three digits. + */ + public static final String javaVersionName = + System.getProperty("java.version"); + + /** + * Version of Java that's in use, whether 1.1 or 1.3 or whatever, + * stored as a float. + *

+ * Note that because this is stored as a float, the values may + * not be exactly 1.3 or 1.4. Instead, make sure you're + * comparing against 1.3f or 1.4f, which will have the same amount + * of error (i.e. 1.40000001). This could just be a double, but + * since Processing only uses floats, it's safer for this to be a float + * because there's no good way to specify a double with the preproc. + */ + public static final float javaVersion = + new Float(javaVersionName.substring(0, 3)).floatValue(); + + /** + * Current platform in use, one of the + * PConstants WINDOWS, MACOSX, MACOS9, LINUX or OTHER. + */ + static public int platform; + + /** + * Name associated with the current 'platform' (see PConstants.platformNames) + */ + //static public String platformName; + + static { + String osname = System.getProperty("os.name"); + + if (osname.indexOf("Mac") != -1) { + platform = PConstants.MACOSX; + + } else if (osname.indexOf("Windows") != -1) { + platform = PConstants.WINDOWS; + + } else if (osname.equals("Linux")) { // true for the ibm vm + platform = PConstants.LINUX; + + } else { + platform = PConstants.OTHER; + } + } + + /** + * GIF image of the Processing logo. + */ + static public final byte[] ICON_IMAGE = { + 71, 73, 70, 56, 57, 97, 16, 0, 16, 0, -60, 0, 0, 0, 0, 0, + 0, 0, -127, 0, -127, 0, 0, -127, -127, -127, 0, 0, -127, 0, -127, -127, + -127, 0, -127, -127, -127, -63, -63, -63, 0, 0, -1, 0, -1, 0, 0, -1, + -1, -1, 0, 0, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, -7, 4, + 9, 0, 0, 16, 0, 44, 0, 0, 0, 0, 16, 0, 16, 0, 0, 5, + 75, 32, 36, -118, -57, 96, 14, -57, -88, 66, -27, -23, -90, -86, 43, -97, + 99, 59, -65, -30, 125, -77, 3, -14, -4, 8, -109, 15, -120, -22, 61, 78, + 15, -124, 15, 25, 28, 28, 93, 63, -45, 115, -22, -116, 90, -83, 82, 89, + -44, -103, 61, 44, -91, -54, -89, 19, -111, 50, 18, -51, -55, 1, 73, -121, + -53, -79, 77, 43, -101, 12, -74, -30, -99, -24, -94, 16, 0, 59, + }; + + /** + * Split the provided String at wherever whitespace occurs. Multiple + * whitespace (extra spaces or tabs or whatever) between items will count as a + * single break. + *

+ * The whitespace characters are "\t\n\r\f", which are the defaults for + * java.util.StringTokenizer, plus the unicode non-breaking space character, + * which is found commonly on files created by or used in conjunction with Mac + * OS X (character 160, or 0x00A0 in hex). + * + *

+   * i.e. splitTokens("a b") -> { "a", "b" }
+   *      splitTokens("a    b") -> { "a", "b" }
+   *      splitTokens("a\tb") -> { "a", "b" }
+   *      splitTokens("a \t  b  ") -> { "a", "b" }
+   * 
+ */ + static public String[] splitTokens(String what) { + return splitTokens(what, PConstants.WHITESPACE); + } + + /** + * Splits a string into pieces, using any of the chars in the String 'delim' + * as separator characters. For instance, in addition to white space, you + * might want to treat commas as a separator. The delimeter characters won't + * appear in the returned String array. + * + *
+   * i.e. splitTokens("a, b", " ,") -> { "a", "b" }
+   * 
+ * + * To include all the whitespace possibilities, use the variable WHITESPACE, + * found in PConstants: + * + *
+   * i.e. splitTokens("a   | b", WHITESPACE + "|");  ->  { "a", "b" }
+   * 
+ */ + static public String[] splitTokens(String what, String delim) { + StringTokenizer toker = new StringTokenizer(what, delim); + String pieces[] = new String[toker.countTokens()]; + + int index = 0; + while (toker.hasMoreTokens()) { + pieces[index++] = toker.nextToken(); + } + return pieces; + } + + /** + * Split a string into pieces along a specific character. Most commonly used + * to break up a String along a space or a tab character. + *

+ * This operates differently than the others, where the single delimeter is + * the only breaking point, and consecutive delimeters will produce an empty + * string (""). This way, one can split on tab characters, but maintain the + * column alignments (of say an excel file) where there are empty columns. + */ + static public String[] split(String what, char delim) { + // do this so that the exception occurs inside the user's + // program, rather than appearing to be a bug inside split() + if (what == null) + return null; + + char chars[] = what.toCharArray(); + int splitCount = 0; // 1; + for (int i = 0; i < chars.length; i++) { + if (chars[i] == delim) + splitCount++; + } + if (splitCount == 0) { + String splits[] = new String[1]; + splits[0] = new String(what); + return splits; + } + String splits[] = new String[splitCount + 1]; + int splitIndex = 0; + int startIndex = 0; + for (int i = 0; i < chars.length; i++) { + if (chars[i] == delim) { + splits[splitIndex++] = new String(chars, startIndex, i - startIndex); + startIndex = i + 1; + } + } + splits[splitIndex] = new String(chars, startIndex, chars.length + - startIndex); + return splits; + } + + static public String[] subset(String list[], int start, int count) { + String output[] = new String[count]; + System.arraycopy(list, start, output, 0, count); + return output; + } + + + /** + * Join an array of Strings together as a single String, + * separated by the whatever's passed in for the separator. + */ + static public String join(String str[], char separator) { + return join(str, String.valueOf(separator)); + } + + + /** + * Join an array of Strings together as a single String, + * separated by the whatever's passed in for the separator. + *

+ * To use this on numbers, first pass the array to nf() or nfs() + * to get a list of String objects, then use join on that. + *

+   * e.g. String stuff[] = { "apple", "bear", "cat" };
+   *      String list = join(stuff, ", ");
+   *      // list is now "apple, bear, cat"
+ */ + static public String join(String str[], String separator) { + StringBuffer buffer = new StringBuffer(); + for (int i = 0; i < str.length; i++) { + if (i != 0) buffer.append(separator); + buffer.append(str[i]); + } + return buffer.toString(); + } + + /** + * Parse a String into an int value. Returns 0 if the value is bad. + */ + static final public int parseInt(String what) { + return parseInt(what, 0); + } + + /** + * Parse a String to an int, and provide an alternate value that + * should be used when the number is invalid. + */ + static final public int parseInt(String what, int otherwise) { + try { + int offset = what.indexOf('.'); + if (offset == -1) { + return Integer.parseInt(what); + } else { + return Integer.parseInt(what.substring(0, offset)); + } + } catch (NumberFormatException e) { } + return otherwise; + } + + /** + * Make an array of int elements from an array of String objects. + * If the String can't be parsed as a number, it will be set to zero. + * + * String s[] = { "1", "300", "44" }; + * int numbers[] = parseInt(s); + * + * numbers will contain { 1, 300, 44 } + */ + static public int[] parseInt(String what[]) { + return parseInt(what, 0); + } + + /** + * Make an array of int elements from an array of String objects. + * If the String can't be parsed as a number, its entry in the + * array will be set to the value of the "missing" parameter. + * + * String s[] = { "1", "300", "apple", "44" }; + * int numbers[] = parseInt(s, 9999); + * + * numbers will contain { 1, 300, 9999, 44 } + */ + static public int[] parseInt(String what[], int missing) { + int output[] = new int[what.length]; + for (int i = 0; i < what.length; i++) { + try { + output[i] = Integer.parseInt(what[i]); + } catch (NumberFormatException e) { + output[i] = missing; + } + } + return output; + } + + static public String[] loadStrings(File file) { + InputStream is = createInput(file); + if (is != null) return loadStrings(is); + return null; + } + + static public String[] loadStrings(InputStream input) { + try { + BufferedReader reader = + new BufferedReader(new InputStreamReader(input, "UTF-8")); + + String lines[] = new String[100]; + int lineCount = 0; + String line = null; + while ((line = reader.readLine()) != null) { + if (lineCount == lines.length) { + String temp[] = new String[lineCount << 1]; + System.arraycopy(lines, 0, temp, 0, lineCount); + lines = temp; + } + lines[lineCount++] = line; + } + reader.close(); + + if (lineCount == lines.length) { + return lines; + } + + // resize array to appropriate amount for these lines + String output[] = new String[lineCount]; + System.arraycopy(lines, 0, output, 0, lineCount); + return output; + + } catch (IOException e) { + e.printStackTrace(); + //throw new RuntimeException("Error inside loadStrings()"); + } + return null; + } + + public void saveStrings(String filename, String strings[]) { + saveStrings(saveFile(filename), strings); + } + + + static public void saveStrings(File file, String strings[]) { + saveStrings(createOutput(file), strings); + } + + + static public void saveStrings(OutputStream output, String strings[]) { + PrintWriter writer = createWriter(output); + for (int i = 0; i < strings.length; i++) { + writer.println(strings[i]); + } + writer.flush(); + writer.close(); + } + + + static public int[] expand(int list[]) { + return expand(list, list.length << 1); + } + + static public int[] expand(int list[], int newSize) { + int temp[] = new int[newSize]; + System.arraycopy(list, 0, temp, 0, Math.min(newSize, list.length)); + return temp; + } + + static final public String hex(int what, int digits) { + String stuff = Integer.toHexString(what).toUpperCase(); + + int length = stuff.length(); + if (length > digits) { + return stuff.substring(length - digits); + + } else if (length < digits) { + return "00000000".substring(8 - (digits-length)) + stuff; + } + return stuff; + } + + static public final int constrain(int amt, int low, int high) { + return (amt < low) ? low : ((amt > high) ? high : amt); + } + + static public final float constrain(float amt, float low, float high) { + return (amt < low) ? low : ((amt > high) ? high : amt); + } + + /** + * Attempts to open an application or file using your platform's launcher. The file parameter is a String specifying the file name and location. The location parameter must be a full path name, or the name of an executable in the system's PATH. In most cases, using a full path is the best option, rather than relying on the system PATH. Be sure to make the file executable before attempting to open it (chmod +x). + *

+ * The args parameter is a String or String array which is passed to the command line. If you have multiple parameters, e.g. an application and a document, or a command with multiple switches, use the version that takes a String array, and place each individual item in a separate element. + *

+ * If args is a String (not an array), then it can only be a single file or application with no parameters. It's not the same as executing that String using a shell. For instance, open("jikes -help") will not work properly. + *

+ * This function behaves differently on each platform. On Windows, the parameters are sent to the Windows shell via "cmd /c". On Mac OS X, the "open" command is used (type "man open" in Terminal.app for documentation). On Linux, it first tries gnome-open, then kde-open, but if neither are available, it sends the command to the shell without any alterations. + *

+ * For users familiar with Java, this is not quite the same as Runtime.exec(), because the launcher command is prepended. Instead, the exec(String[]) function is a shortcut for Runtime.getRuntime.exec(String[]). + * + * @webref input:files + * @param filename name of the file + * @usage Application + */ + static public void open(String filename) { + open(new String[] { filename }); + } + + static String openLauncher; + + /** + * Launch a process using a platforms shell. This version uses an array + * to make it easier to deal with spaces in the individual elements. + * (This avoids the situation of trying to put single or double quotes + * around different bits). + * + * @param list of commands passed to the command line + */ + static public Process open(String argv[]) { + String[] params = null; + + if (platform == PConstants.WINDOWS) { + // just launching the .html file via the shell works + // but make sure to chmod +x the .html files first + // also place quotes around it in case there's a space + // in the user.dir part of the url + params = new String[] { "cmd", "/c" }; + + } else if (platform == PConstants.MACOSX) { + params = new String[] { "open" }; + + } else if (platform == PConstants.LINUX) { + if (openLauncher == null) { + // Attempt to use gnome-open + try { + Process p = Runtime.getRuntime().exec(new String[] { "gnome-open" }); + /*int result =*/ p.waitFor(); + // Not installed will throw an IOException (JDK 1.4.2, Ubuntu 7.04) + openLauncher = "gnome-open"; + } catch (Exception e) { } + } + if (openLauncher == null) { + // Attempt with kde-open + try { + Process p = Runtime.getRuntime().exec(new String[] { "kde-open" }); + /*int result =*/ p.waitFor(); + openLauncher = "kde-open"; + } catch (Exception e) { } + } + if (openLauncher == null) { + System.err.println("Could not find gnome-open or kde-open, " + + "the open() command may not work."); + } + if (openLauncher != null) { + params = new String[] { openLauncher }; + } + //} else { // give up and just pass it to Runtime.exec() + //open(new String[] { filename }); + //params = new String[] { filename }; + } + if (params != null) { + // If the 'open', 'gnome-open' or 'cmd' are already included + if (params[0].equals(argv[0])) { + // then don't prepend those params again + return exec(argv); + } else { + params = concat(params, argv); + return exec(params); + } + } else { + return exec(argv); + } + } + + static public Process exec(String[] argv) { + try { + return Runtime.getRuntime().exec(argv); + } catch (Exception e) { + e.printStackTrace(); + throw new RuntimeException("Could not open " + join(argv, ' ')); + } + } + + static public String[] concat(String a[], String b[]) { + String c[] = new String[a.length + b.length]; + System.arraycopy(a, 0, c, 0, a.length); + System.arraycopy(b, 0, c, a.length, b.length); + return c; + } + + /** + * Identical to match(), except that it returns an array of all matches in + * the specified String, rather than just the first. + */ + static public String[][] matchAll(String what, String regexp) { + Pattern p = Pattern.compile(regexp, Pattern.MULTILINE | Pattern.DOTALL); + Matcher m = p.matcher(what); + ArrayList results = new ArrayList(); + int count = m.groupCount() + 1; + while (m.find()) { + String[] groups = new String[count]; + for (int i = 0; i < count; i++) { + groups[i] = m.group(i); + } + results.add(groups); + } + if (results.isEmpty()) { + return null; + } + String[][] matches = new String[results.size()][count]; + for (int i = 0; i < matches.length; i++) { + matches[i] = (String[]) results.get(i); + } + return matches; + } + + /** + * Match a string with a regular expression, and returns the match as an + * array. The first index is the matching expression, and array elements + * [1] and higher represent each of the groups (sequences found in parens). + * + * This uses multiline matching (Pattern.MULTILINE) and dotall mode + * (Pattern.DOTALL) by default, so that ^ and $ match the beginning and + * end of any lines found in the source, and the . operator will also + * pick up newline characters. + */ + static public String[] match(String what, String regexp) { + Pattern p = Pattern.compile(regexp, Pattern.MULTILINE | Pattern.DOTALL); + Matcher m = p.matcher(what); + if (m.find()) { + int count = m.groupCount() + 1; + String[] groups = new String[count]; + for (int i = 0; i < count; i++) { + groups[i] = m.group(i); + } + return groups; + } + return null; + } + + /** + * Integer number formatter. + */ + static private NumberFormat int_nf; + static private int int_nf_digits; + static private boolean int_nf_commas; + + static public String[] nf(int num[], int digits) { + String formatted[] = new String[num.length]; + for (int i = 0; i < formatted.length; i++) { + formatted[i] = nf(num[i], digits); + } + return formatted; + } + + static public String nf(int num, int digits) { + if ((int_nf != null) && + (int_nf_digits == digits) && + !int_nf_commas) { + return int_nf.format(num); + } + + int_nf = NumberFormat.getInstance(); + int_nf.setGroupingUsed(false); // no commas + int_nf_commas = false; + int_nf.setMinimumIntegerDigits(digits); + int_nf_digits = digits; + return int_nf.format(num); + } + + static final public String[] str(int x[]) { + String s[] = new String[x.length]; + for (int i = 0; i < x.length; i++) s[i] = String.valueOf(x[i]); + return s; + } + + /** + * I want to print lines to a file. I have RSI from typing these + * eight lines of code so many times. + */ + static public PrintWriter createWriter(File file) { + try { + createPath(file); // make sure in-between folders exist + OutputStream output = new FileOutputStream(file); + if (file.getName().toLowerCase().endsWith(".gz")) { + output = new GZIPOutputStream(output); + } + return createWriter(output); + + } catch (Exception e) { + if (file == null) { + throw new RuntimeException("File passed to createWriter() was null"); + } else { + e.printStackTrace(); + throw new RuntimeException("Couldn't create a writer for " + + file.getAbsolutePath()); + } + } + //return null; + } + + + /** + * I want to print lines to a file. Why am I always explaining myself? + * It's the JavaSoft API engineers who need to explain themselves. + */ + static public PrintWriter createWriter(OutputStream output) { + try { + OutputStreamWriter osw = new OutputStreamWriter(output, "UTF-8"); + return new PrintWriter(osw); + } catch (UnsupportedEncodingException e) { } // not gonna happen + return null; + } + + static public InputStream createInput(File file) { + if (file == null) { + throw new IllegalArgumentException("File passed to createInput() was null"); + } + try { + InputStream input = new FileInputStream(file); + if (file.getName().toLowerCase().endsWith(".gz")) { + return new GZIPInputStream(input); + } + return input; + + } catch (IOException e) { + System.err.println("Could not createInput() for " + file); + e.printStackTrace(); + return null; + } + } + + /** + * Returns a path inside the applet folder to save to. Like sketchPath(), + * but creates any in-between folders so that things save properly. + *

+ * All saveXxxx() functions use the path to the sketch folder, rather than + * its data folder. Once exported, the data folder will be found inside the + * jar file of the exported application or applet. In this case, it's not + * possible to save data into the jar file, because it will often be running + * from a server, or marked in-use if running from a local file system. + * With this in mind, saving to the data path doesn't make sense anyway. + * If you know you're running locally, and want to save to the data folder, + * use saveXxxx("data/blah.dat"). + */ + public String savePath(String where) { + if (where == null) return null; + String filename = sketchPath(where); + createPath(filename); + return filename; + } + + + /** + * Identical to savePath(), but returns a File object. + */ + public File saveFile(String where) { + return new File(savePath(where)); + } + + /** + * Similar to createInput() (formerly openStream), this creates a Java + * OutputStream for a given filename or path. The file will be created in + * the sketch folder, or in the same folder as an exported application. + *

+ * If the path does not exist, intermediate folders will be created. If an + * exception occurs, it will be printed to the console, and null will be + * returned. + *

+ * Future releases may also add support for handling HTTP POST via this + * method (for better symmetry with createInput), however that's maybe a + * little too clever (and then we'd have to add the same features to the + * other file functions like createWriter). Who you callin' bloated? + */ + public OutputStream createOutput(String filename) { + return createOutput(saveFile(filename)); + } + + + static public OutputStream createOutput(File file) { + try { + createPath(file); // make sure the path exists + FileOutputStream fos = new FileOutputStream(file); + if (file.getName().toLowerCase().endsWith(".gz")) { + return new GZIPOutputStream(fos); + } + return fos; + + } catch (IOException e) { + e.printStackTrace(); + } + return null; + } + + /** + * Prepend the sketch folder path to the filename (or path) that is + * passed in. External libraries should use this function to save to + * the sketch folder. + *

+ * Note that when running as an applet inside a web browser, + * the sketchPath will be set to null, because security restrictions + * prevent applets from accessing that information. + *

+ * This will also cause an error if the sketch is not inited properly, + * meaning that init() was never called on the PApplet when hosted + * my some other main() or by other code. For proper use of init(), + * see the examples in the main description text for PApplet. + */ + public String sketchPath(String where) { + if (sketchPath == null) { + return where; +// throw new RuntimeException("The applet was not inited properly, " + +// "or security restrictions prevented " + +// "it from determining its path."); + } + // isAbsolute() could throw an access exception, but so will writing + // to the local disk using the sketch path, so this is safe here. + // for 0120, added a try/catch anyways. + try { + if (new File(where).isAbsolute()) return where; + } catch (Exception e) { } + + return sketchPath + File.separator + where; + } + + /** + * Takes a path and creates any in-between folders if they don't + * already exist. Useful when trying to save to a subfolder that + * may not actually exist. + */ + static public void createPath(String path) { + createPath(new File(path)); + } + + + static public void createPath(File file) { + try { + String parent = file.getParent(); + if (parent != null) { + File unit = new File(parent); + if (!unit.exists()) unit.mkdirs(); + } + } catch (SecurityException se) { + System.err.println("You don't have permissions to create " + + file.getAbsolutePath()); + } + } + + +} diff --git a/app/src/processing/app/legacy/PConstants.java b/app/src/processing/app/legacy/PConstants.java new file mode 100644 index 000000000..3b1d491d5 --- /dev/null +++ b/app/src/processing/app/legacy/PConstants.java @@ -0,0 +1,22 @@ +package processing.app.legacy; + +public class PConstants { + + // platform IDs for PApplet.platform + + public static final int OTHER = 0; + public static final int WINDOWS = 1; + public static final int MACOSX = 2; + public static final int LINUX = 3; + + public static final String[] platformNames = { + "other", "windows", "macosx", "linux" + }; + + + // used by split, all the standard whitespace chars + // (also includes unicode nbsp, that little bostage) + + static final String WHITESPACE = " \t\n\r\f\u00A0"; + +} diff --git a/app/src/processing/app/tools/ColorSelector.java b/app/src/processing/app/tools/ColorSelector.java deleted file mode 100644 index de1402239..000000000 --- a/app/src/processing/app/tools/ColorSelector.java +++ /dev/null @@ -1,609 +0,0 @@ -/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */ - -/* - Part of the Processing project - http://processing.org - - Copyright (c) 2006-08 Ben Fry and Casey Reas - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software Foundation, - Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -*/ - -package processing.app.tools; - -import processing.app.*; -import processing.core.*; - -import java.awt.*; -import java.awt.event.*; -import javax.swing.*; -import javax.swing.border.*; -import javax.swing.event.*; -import javax.swing.text.*; - - -/** - * Color selector tool for the Tools menu. - *

- * Using the keyboard shortcuts, you can copy/paste the values for the - * colors and paste them into your program. We didn't do any sort of - * auto-insert of colorMode() or fill() or stroke() code cuz we couldn't - * decide on a good way to do this.. your contributions welcome). - */ -public class ColorSelector implements Tool, DocumentListener { - - Editor editor; - JFrame frame; - - int hue, saturation, brightness; // range 360, 100, 100 - int red, green, blue; // range 256, 256, 256 - - ColorRange range; - ColorSlider slider; - - JTextField hueField, saturationField, brightnessField; - JTextField redField, greenField, blueField; - - JTextField hexField; - - JPanel colorPanel; - - - public String getMenuTitle() { - return "Color Selector"; - } - - - public void init(Editor editor) { - this.editor = editor; - - frame = new JFrame("Color Selector"); - frame.getContentPane().setLayout(new BorderLayout()); - - Box box = Box.createHorizontalBox(); - box.setBorder(new EmptyBorder(12, 12, 12, 12)); - - range = new ColorRange(); - range.init(); - Box rangeBox = new Box(BoxLayout.Y_AXIS); - rangeBox.setAlignmentY(0); - rangeBox.setBorder(BorderFactory.createBevelBorder(BevelBorder.LOWERED)); - rangeBox.add(range); - box.add(rangeBox); - box.add(Box.createHorizontalStrut(10)); - - slider = new ColorSlider(); - slider.init(); - Box sliderBox = new Box(BoxLayout.Y_AXIS); - sliderBox.setAlignmentY(0); - sliderBox.setBorder(BorderFactory.createBevelBorder(BevelBorder.LOWERED)); - sliderBox.add(slider); - box.add(sliderBox); - box.add(Box.createHorizontalStrut(10)); - - box.add(createColorFields()); - box.add(Box.createHorizontalStrut(10)); - - frame.getContentPane().add(box, BorderLayout.CENTER); - frame.pack(); - frame.setResizable(false); - - // these don't help either.. they fix the component size but - // leave a gap where the component is located - //range.setSize(256, 256); - //slider.setSize(256, 20); - - Dimension size = frame.getSize(); - Dimension screen = Toolkit.getDefaultToolkit().getScreenSize(); - frame.setLocation((screen.width - size.width) / 2, - (screen.height - size.height) / 2); - - frame.setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE); - frame.addWindowListener(new WindowAdapter() { - public void windowClosing(WindowEvent e) { - frame.setVisible(false); - } - }); - Base.registerWindowCloseKeys(frame.getRootPane(), new ActionListener() { - public void actionPerformed(ActionEvent actionEvent) { - frame.setVisible(false); - } - }); - - Base.setIcon(frame); - - hueField.getDocument().addDocumentListener(this); - saturationField.getDocument().addDocumentListener(this); - brightnessField.getDocument().addDocumentListener(this); - redField.getDocument().addDocumentListener(this); - greenField.getDocument().addDocumentListener(this); - blueField.getDocument().addDocumentListener(this); - hexField.getDocument().addDocumentListener(this); - - hexField.setText("FFFFFF"); - } - - - public void run() { - frame.setVisible(true); - // You've got to be f--ing kidding me.. why did the following line - // get deprecated for the pile of s-- that follows it? - //frame.setCursor(Cursor.CROSSHAIR_CURSOR); - frame.setCursor(Cursor.getPredefinedCursor(Cursor.CROSSHAIR_CURSOR)); - } - - - public void changedUpdate(DocumentEvent e) { - //System.out.println("changed"); - } - - public void removeUpdate(DocumentEvent e) { - //System.out.println("remove"); - } - - - boolean updating; - - public void insertUpdate(DocumentEvent e) { - if (updating) return; // don't update forever recursively - updating = true; - - Document doc = e.getDocument(); - if (doc == hueField.getDocument()) { - hue = bounded(hue, hueField, 359); - updateRGB(); - updateHex(); - - } else if (doc == saturationField.getDocument()) { - saturation = bounded(saturation, saturationField, 99); - updateRGB(); - updateHex(); - - } else if (doc == brightnessField.getDocument()) { - brightness = bounded(brightness, brightnessField, 99); - updateRGB(); - updateHex(); - - } else if (doc == redField.getDocument()) { - red = bounded(red, redField, 255); - updateHSB(); - updateHex(); - - } else if (doc == greenField.getDocument()) { - green = bounded(green, greenField, 255); - updateHSB(); - updateHex(); - - } else if (doc == blueField.getDocument()) { - blue = bounded(blue, blueField, 255); - updateHSB(); - updateHex(); - - } else if (doc == hexField.getDocument()) { - String str = hexField.getText(); - while (str.length() < 6) { - str += "0"; - } - if (str.length() > 6) { - str = str.substring(0, 6); - } - updateRGB2(Integer.parseInt(str, 16)); - updateHSB(); - } - range.redraw(); - slider.redraw(); - colorPanel.repaint(); - updating = false; - } - - - /** - * Set the RGB values based on the current HSB values. - */ - protected void updateRGB() { - int rgb = Color.HSBtoRGB((float)hue / 359f, - (float)saturation / 99f, - (float)brightness / 99f); - updateRGB2(rgb); - } - - - /** - * Set the RGB values based on a calculated ARGB int. - * Used by both updateRGB() to set the color from the HSB values, - * and by updateHex(), to unpack the hex colors and assign them. - */ - protected void updateRGB2(int rgb) { - red = (rgb >> 16) & 0xff; - green = (rgb >> 8) & 0xff; - blue = rgb & 0xff; - - redField.setText(String.valueOf(red)); - greenField.setText(String.valueOf(green)); - blueField.setText(String.valueOf(blue)); - } - - - /** - * Set the HSB values based on the current RGB values. - */ - protected void updateHSB() { - float hsb[] = new float[3]; - Color.RGBtoHSB(red, green, blue, hsb); - - hue = (int) (hsb[0] * 359.0f); - saturation = (int) (hsb[1] * 99.0f); - brightness = (int) (hsb[2] * 99.0f); - - hueField.setText(String.valueOf(hue)); - saturationField.setText(String.valueOf(saturation)); - brightnessField.setText(String.valueOf(brightness)); - } - - - protected void updateHex() { - hexField.setText(PApplet.hex(red, 2) + - PApplet.hex(green, 2) + - PApplet.hex(blue, 2)); - } - - - /** - * Get the bounded value for a specific range. If the value is outside - * the max, you can't edit right away, so just act as if it's already - * been bounded and return the bounded value, then fire an event to set - * it to the value that was just returned. - */ - protected int bounded(int current, final JTextField field, final int max) { - String text = field.getText(); - if (text.length() == 0) { - return 0; - } - try { - int value = Integer.parseInt(text); - if (value > max) { - SwingUtilities.invokeLater(new Runnable() { - public void run() { - field.setText(String.valueOf(max)); - } - }); - return max; - } - return value; - - } catch (NumberFormatException e) { - return current; // should not be reachable - } - } - - - protected Container createColorFields() { - Box box = Box.createVerticalBox(); - box.setAlignmentY(0); - - colorPanel = new JPanel() { - public void paintComponent(Graphics g) { - g.setColor(new Color(red, green, blue)); - Dimension size = getSize(); - g.fillRect(0, 0, size.width, size.height); - } - }; - colorPanel.setBorder(BorderFactory.createBevelBorder(BevelBorder.LOWERED)); - Dimension dim = new Dimension(60, 40); - colorPanel.setMinimumSize(dim); - //colorPanel.setMaximumSize(dim); - //colorPanel.setPreferredSize(dim); - box.add(colorPanel); - box.add(Box.createVerticalStrut(10)); - - Box row; - - row = Box.createHorizontalBox(); - row.add(createFixedLabel("H:")); - row.add(hueField = new NumberField(4, false)); - row.add(new JLabel(" \u00B0")); // degree symbol - row.add(Box.createHorizontalGlue()); - box.add(row); - box.add(Box.createVerticalStrut(5)); - - row = Box.createHorizontalBox(); - row.add(createFixedLabel("S:")); - row.add(saturationField = new NumberField(4, false)); - row.add(new JLabel(" %")); - row.add(Box.createHorizontalGlue()); - box.add(row); - box.add(Box.createVerticalStrut(5)); - - row = Box.createHorizontalBox(); - row.add(createFixedLabel("B:")); - row.add(brightnessField = new NumberField(4, false)); - row.add(new JLabel(" %")); - row.add(Box.createHorizontalGlue()); - box.add(row); - box.add(Box.createVerticalStrut(10)); - - // - - row = Box.createHorizontalBox(); - row.add(createFixedLabel("R:")); - row.add(redField = new NumberField(4, false)); - row.add(Box.createHorizontalGlue()); - box.add(row); - box.add(Box.createVerticalStrut(5)); - - row = Box.createHorizontalBox(); - row.add(createFixedLabel("G:")); - row.add(greenField = new NumberField(4, false)); - row.add(Box.createHorizontalGlue()); - box.add(row); - box.add(Box.createVerticalStrut(5)); - - row = Box.createHorizontalBox(); - row.add(createFixedLabel("B:")); - row.add(blueField = new NumberField(4, false)); - row.add(Box.createHorizontalGlue()); - box.add(row); - box.add(Box.createVerticalStrut(10)); - - // - - row = Box.createHorizontalBox(); - row.add(createFixedLabel("#")); - row.add(hexField = new NumberField(5, true)); - row.add(Box.createHorizontalGlue()); - box.add(row); - box.add(Box.createVerticalStrut(10)); - - box.add(Box.createVerticalGlue()); - return box; - } - - - int labelH; - - /** - * return a label of a fixed width - */ - protected JLabel createFixedLabel(String title) { - JLabel label = new JLabel(title); - if (labelH == 0) { - labelH = label.getPreferredSize().height; - } - Dimension dim = new Dimension(20, labelH); - label.setPreferredSize(dim); - label.setMinimumSize(dim); - label.setMaximumSize(dim); - return label; - } - - - public class ColorRange extends PApplet { - - static final int WIDE = 256; - static final int HIGH = 256; - - int lastX, lastY; - - - public void setup() { - size(WIDE, HIGH, P3D); - noLoop(); - - colorMode(HSB, 360, 256, 256); - noFill(); - rectMode(CENTER); - } - - public void draw() { - if ((g == null) || (g.pixels == null)) return; - if ((width != WIDE) || (height < HIGH)) { - //System.out.println("bad size " + width + " " + height); - return; - } - - int index = 0; - for (int j = 0; j < 256; j++) { - for (int i = 0; i < 256; i++) { - g.pixels[index++] = color(hue, i, 255 - j); - } - } - - stroke((brightness > 50) ? 0 : 255); - rect(lastX, lastY, 9, 9); - } - - public void mousePressed() { - updateMouse(); - } - - public void mouseDragged() { - updateMouse(); - } - - public void updateMouse() { - if ((mouseX >= 0) && (mouseX < 256) && - (mouseY >= 0) && (mouseY < 256)) { - int nsaturation = (int) (100 * (mouseX / 255.0f)); - int nbrightness = 100 - ((int) (100 * (mouseY / 255.0f))); - saturationField.setText(String.valueOf(nsaturation)); - brightnessField.setText(String.valueOf(nbrightness)); - - lastX = mouseX; - lastY = mouseY; - } - } - - public Dimension getPreferredSize() { - return new Dimension(WIDE, HIGH); - } - - public Dimension getMinimumSize() { - return new Dimension(WIDE, HIGH); - } - - public Dimension getMaximumSize() { - return new Dimension(WIDE, HIGH); - } - - public void keyPressed() { - if (key == ESC) { - ColorSelector.this.frame.setVisible(false); - // don't quit out of processing - // http://dev.processing.org/bugs/show_bug.cgi?id=1006 - key = 0; - } - } - } - - - public class ColorSlider extends PApplet { - - static final int WIDE = 20; - static final int HIGH = 256; - - public void setup() { - size(WIDE, HIGH, P3D); - colorMode(HSB, 255, 100, 100); - noLoop(); - } - - public void draw() { - if ((g == null) || (g.pixels == null)) return; - if ((width != WIDE) || (height < HIGH)) { - //System.out.println("bad size " + width + " " + height); - return; - } - - int index = 0; - int sel = 255 - (int) (255 * (hue / 359f)); - for (int j = 0; j < 256; j++) { - int c = color(255 - j, 100, 100); - if (j == sel) c = 0xFF000000; - for (int i = 0; i < WIDE; i++) { - g.pixels[index++] = c; - } - } - } - - public void mousePressed() { - updateMouse(); - } - - public void mouseDragged() { - updateMouse(); - } - - public void updateMouse() { - if ((mouseX >= 0) && (mouseX < 256) && - (mouseY >= 0) && (mouseY < 256)) { - int nhue = 359 - (int) (359 * (mouseY / 255.0f)); - hueField.setText(String.valueOf(nhue)); - } - } - - public Dimension getPreferredSize() { - return new Dimension(WIDE, HIGH); - } - - public Dimension getMinimumSize() { - return new Dimension(WIDE, HIGH); - } - - public Dimension getMaximumSize() { - return new Dimension(WIDE, HIGH); - } - - public void keyPressed() { - if (key == ESC) { - ColorSelector.this.frame.setVisible(false); - // don't quit out of processing - // http://dev.processing.org/bugs/show_bug.cgi?id=1006 - key = 0; - } - } - } - - - /** - * Extension of JTextField that only allows numbers - */ - class NumberField extends JTextField { - - public boolean allowHex; - - public NumberField(int cols, boolean allowHex) { - super(cols); - this.allowHex = allowHex; - } - - protected Document createDefaultModel() { - return new NumberDocument(this); - } - - public Dimension getPreferredSize() { - if (!allowHex) { - return new Dimension(45, super.getPreferredSize().height); - } - return super.getPreferredSize(); - } - - public Dimension getMinimumSize() { - return getPreferredSize(); - } - - public Dimension getMaximumSize() { - return getPreferredSize(); - } - } - - - /** - * Document model to go with JTextField that only allows numbers. - */ - class NumberDocument extends PlainDocument { - - NumberField parentField; - - public NumberDocument(NumberField parentField) { - this.parentField = parentField; - //System.out.println("setting parent to " + parentSelector); - } - - public void insertString(int offs, String str, AttributeSet a) - throws BadLocationException { - - if (str == null) return; - - char chars[] = str.toCharArray(); - int charCount = 0; - // remove any non-digit chars - for (int i = 0; i < chars.length; i++) { - boolean ok = Character.isDigit(chars[i]); - if (parentField.allowHex) { - if ((chars[i] >= 'A') && (chars[i] <= 'F')) ok = true; - if ((chars[i] >= 'a') && (chars[i] <= 'f')) ok = true; - } - if (ok) { - if (charCount != i) { // shift if necessary - chars[charCount] = chars[i]; - } - charCount++; - } - } - super.insertString(offs, new String(chars, 0, charCount), a); - // can't call any sort of methods on the enclosing class here - // seems to have something to do with how Document objects are set up - } - } -} diff --git a/app/src/processing/app/tools/CreateFont.java b/app/src/processing/app/tools/CreateFont.java deleted file mode 100644 index 62d2ce4c0..000000000 --- a/app/src/processing/app/tools/CreateFont.java +++ /dev/null @@ -1,813 +0,0 @@ -/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */ - -/* - Part of the Processing project - http://processing.org - - Copyright (c) 2004-10 Ben Fry and Casey Reas - Copyright (c) 2001-04 Massachusetts Institute of Technology - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software Foundation, - Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -*/ - -package processing.app.tools; - -import processing.app.*; -import processing.core.*; - -import java.awt.*; -import java.awt.event.*; -import java.io.*; -import java.util.*; - -import javax.swing.*; -import javax.swing.border.*; -import javax.swing.event.*; - - -/** - * GUI tool for font creation heaven/hell. - */ -public class CreateFont extends JFrame implements Tool { - Editor editor; - //Sketch sketch; - - Dimension windowSize; - - JList fontSelector; - JTextField sizeSelector; - JButton charsetButton; - JCheckBox smoothBox; - JComponent sample; - JButton okButton; - JTextField filenameField; - - HashMap table; - boolean smooth = true; - - Font font; - - String[] list; - int selection = -1; - - CharacterSelector charSelector; - - - public CreateFont() { - super("Create Font"); - } - - - public String getMenuTitle() { - return "Create Font..."; - } - - - public void init(Editor editor) { - this.editor = editor; - - Container paine = getContentPane(); - paine.setLayout(new BorderLayout()); //10, 10)); - - JPanel pain = new JPanel(); - pain.setBorder(new EmptyBorder(13, 13, 13, 13)); - paine.add(pain, BorderLayout.CENTER); - - pain.setLayout(new BoxLayout(pain, BoxLayout.Y_AXIS)); - - String labelText = - "Use this tool to create bitmap fonts for your program.\n" + - "Select a font and size, and click 'OK' to generate the font.\n" + - "It will be added to the data folder of the current sketch."; - - JTextArea textarea = new JTextArea(labelText); - textarea.setBorder(new EmptyBorder(10, 10, 20, 10)); - textarea.setBackground(null); - textarea.setEditable(false); - textarea.setHighlighter(null); - textarea.setFont(new Font("Dialog", Font.PLAIN, 12)); - pain.add(textarea); - - // don't care about families starting with . or # - // also ignore dialog, dialoginput, monospaced, serif, sansserif - - // getFontList is deprecated in 1.4, so this has to be used - GraphicsEnvironment ge = - GraphicsEnvironment.getLocalGraphicsEnvironment(); - - Font fonts[] = ge.getAllFonts(); - - String flist[] = new String[fonts.length]; - table = new HashMap(); - - int index = 0; - for (int i = 0; i < fonts.length; i++) { - //String psname = fonts[i].getPSName(); - //if (psname == null) System.err.println("ps name is null"); - - flist[index++] = fonts[i].getPSName(); - table.put(fonts[i].getPSName(), fonts[i]); - } - - list = new String[index]; - System.arraycopy(flist, 0, list, 0, index); - - fontSelector = new JList(list); - fontSelector.addListSelectionListener(new ListSelectionListener() { - public void valueChanged(ListSelectionEvent e) { - if (e.getValueIsAdjusting() == false) { - selection = fontSelector.getSelectedIndex(); - okButton.setEnabled(true); - update(); - } - } - }); - - fontSelector.setSelectionMode(ListSelectionModel.SINGLE_SELECTION); - fontSelector.setVisibleRowCount(12); - JScrollPane fontScroller = new JScrollPane(fontSelector); - pain.add(fontScroller); - - Dimension d1 = new Dimension(13, 13); - pain.add(new Box.Filler(d1, d1, d1)); - - sample = new SampleComponent(this); - - // Seems that in some instances, no default font is set - // http://dev.processing.org/bugs/show_bug.cgi?id=777 - sample.setFont(new Font("Dialog", Font.PLAIN, 12)); - - pain.add(sample); - - Dimension d2 = new Dimension(6, 6); - pain.add(new Box.Filler(d2, d2, d2)); - - JPanel panel = new JPanel(); - panel.add(new JLabel("Size:")); - sizeSelector = new JTextField(" 48 "); - sizeSelector.getDocument().addDocumentListener(new DocumentListener() { - public void insertUpdate(DocumentEvent e) { update(); } - public void removeUpdate(DocumentEvent e) { update(); } - public void changedUpdate(DocumentEvent e) { } - }); - panel.add(sizeSelector); - - smoothBox = new JCheckBox("Smooth"); - smoothBox.addActionListener(new ActionListener() { - public void actionPerformed(ActionEvent e) { - smooth = smoothBox.isSelected(); - update(); - } - }); - smoothBox.setSelected(smooth); - panel.add(smoothBox); - -// allBox = new JCheckBox("All Characters"); -// allBox.addActionListener(new ActionListener() { -// public void actionPerformed(ActionEvent e) { -// all = allBox.isSelected(); -// } -// }); -// allBox.setSelected(all); -// panel.add(allBox); - charsetButton = new JButton("Characters..."); - charsetButton.addActionListener(new ActionListener() { - public void actionPerformed(ActionEvent e) { - //showCharacterList(); - charSelector.setVisible(true); - } - }); - panel.add(charsetButton); - - pain.add(panel); - - JPanel filestuff = new JPanel(); - filestuff.add(new JLabel("Filename:")); - filestuff.add(filenameField = new JTextField(20)); - filestuff.add(new JLabel(".vlw")); - pain.add(filestuff); - - JPanel buttons = new JPanel(); - JButton cancelButton = new JButton("Cancel"); - cancelButton.addActionListener(new ActionListener() { - public void actionPerformed(ActionEvent e) { - setVisible(false); - } - }); - okButton = new JButton("OK"); - okButton.addActionListener(new ActionListener() { - public void actionPerformed(ActionEvent e) { - build(); - } - }); - okButton.setEnabled(false); - - buttons.add(cancelButton); - buttons.add(okButton); - pain.add(buttons); - - JRootPane root = getRootPane(); - root.setDefaultButton(okButton); - ActionListener disposer = new ActionListener() { - public void actionPerformed(ActionEvent actionEvent) { - setVisible(false); - } - }; - Base.registerWindowCloseKeys(root, disposer); - Base.setIcon(this); - - setResizable(false); - pack(); - - // do this after pack so it doesn't affect layout - sample.setFont(new Font(list[0], Font.PLAIN, 48)); - - fontSelector.setSelectedIndex(0); - - Dimension screen = Toolkit.getDefaultToolkit().getScreenSize(); - windowSize = getSize(); - - setLocation((screen.width - windowSize.width) / 2, - (screen.height - windowSize.height) / 2); - - // create this behind the scenes - charSelector = new CharacterSelector(); - } - - - public void run() { - setVisible(true); - } - - - public void update() { - int fontsize = 0; - try { - fontsize = Integer.parseInt(sizeSelector.getText().trim()); - //System.out.println("'" + sizeSelector.getText() + "'"); - } catch (NumberFormatException e2) { } - - // if a deselect occurred, selection will be -1 - if ((fontsize > 0) && (fontsize < 256) && (selection != -1)) { - //font = new Font(list[selection], Font.PLAIN, fontsize); - Font instance = (Font) table.get(list[selection]); - font = instance.deriveFont(Font.PLAIN, fontsize); - //System.out.println("setting font to " + font); - sample.setFont(font); - - String filenameSuggestion = list[selection].replace(' ', '_'); - filenameSuggestion += "-" + fontsize; - filenameField.setText(filenameSuggestion); - } - } - - - public void build() { - int fontsize = 0; - try { - fontsize = Integer.parseInt(sizeSelector.getText().trim()); - } catch (NumberFormatException e) { } - - if (fontsize <= 0) { - JOptionPane.showMessageDialog(this, "Bad font size, try again.", - "Badness", JOptionPane.WARNING_MESSAGE); - return; - } - - String filename = filenameField.getText().trim(); - if (filename.length() == 0) { - JOptionPane.showMessageDialog(this, "Enter a file name for the font.", - "Lameness", JOptionPane.WARNING_MESSAGE); - return; - } - if (!filename.endsWith(".vlw")) { - filename += ".vlw"; - } - - // Please implement me properly. The schematic is below, but not debugged. - // http://dev.processing.org/bugs/show_bug.cgi?id=1464 - -// final String filename2 = filename; -// final int fontsize2 = fontsize; -// SwingUtilities.invokeLater(new Runnable() { -// public void run() { - try { - Font instance = (Font) table.get(list[selection]); - font = instance.deriveFont(Font.PLAIN, fontsize); - //PFont f = new PFont(font, smooth, all ? null : PFont.CHARSET); - PFont f = new PFont(font, smooth, charSelector.getCharacters()); - -// PFont f = new PFont(font, smooth, null); -// char[] charset = charSelector.getCharacters(); -// ProgressMonitor progressMonitor = new ProgressMonitor(CreateFont.this, -// "Creating font", "", 0, charset.length); -// progressMonitor.setProgress(0); -// for (int i = 0; i < charset.length; i++) { -// System.out.println(charset[i]); -// f.index(charset[i]); // load this char -// progressMonitor.setProgress(i+1); -// } - - // make sure the 'data' folder exists - File folder = editor.getSketch().prepareDataFolder(); - f.save(new FileOutputStream(new File(folder, filename))); - - } catch (IOException e) { - JOptionPane.showMessageDialog(CreateFont.this, - "An error occurred while creating font.", - "No font for you", - JOptionPane.WARNING_MESSAGE); - e.printStackTrace(); - } -// } -// }); - - setVisible(false); - } - - - /** - * make the window vertically resizable - */ - public Dimension getMaximumSize() { - return new Dimension(windowSize.width, 2000); -} - - - public Dimension getMinimumSize() { - return windowSize; - } - - - /* - public void show(File targetFolder) { - this.targetFolder = targetFolder; - show(); - } - */ -} - - -/** - * Component that draws the sample text. This is its own subclassed component - * because Mac OS X controls seem to reset the RenderingHints for smoothing - * so that they cannot be overridden properly for JLabel or JTextArea. - * @author fry - */ -class SampleComponent extends JComponent { - // see http://rinkworks.com/words/pangrams.shtml - String text = - "Forsaking monastic tradition, twelve jovial friars gave up their " + - "vocation for a questionable existence on the flying trapeze."; - int high = 80; - - CreateFont parent; - - public SampleComponent(CreateFont p) { - this.parent = p; - - // and yet, we still need an inner class to handle the basics. - // or no, maybe i'll refactor this as a separate class! - // maybe a few getters and setters? mmm? - addMouseListener(new MouseAdapter() { - public void mousePressed(MouseEvent e) { - String input = - (String) JOptionPane.showInputDialog(parent, - "Enter new sample text:", - "Sample Text", - JOptionPane.PLAIN_MESSAGE, - null, // icon - null, // choices - text); - if (input != null) { - text = input; - parent.repaint(); - } - } - }); - } - - public void paintComponent(Graphics g) { -// System.out.println("smoothing set to " + smooth); - Graphics2D g2 = (Graphics2D) g; - g2.setColor(Color.WHITE); - Dimension dim = getSize(); - g2.fillRect(0, 0, dim.width, dim.height); - g2.setColor(Color.BLACK); - - g2.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, - parent.smooth ? - RenderingHints.VALUE_TEXT_ANTIALIAS_ON : - RenderingHints.VALUE_TEXT_ANTIALIAS_OFF); - // add this one as well (after 1.0.9) - g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, - parent.smooth ? - RenderingHints.VALUE_ANTIALIAS_ON : - RenderingHints.VALUE_ANTIALIAS_OFF); - //super.paintComponent(g2); - Font font = getFont(); - int ascent = g2.getFontMetrics().getAscent(); -// System.out.println(f.getName()); - g2.setFont(font); - g2.drawString(text, 5, dim.height - (dim.height - ascent) / 2); - } - - public Dimension getPreferredSize() { - return new Dimension(400, high); - } - - public Dimension getMaximumSize() { - return new Dimension(10000, high); - } - - public Dimension getMinimumSize() { - return new Dimension(100, high); - } -} - - -/** - * Frame for selecting which characters will be included with the font. - */ -class CharacterSelector extends JFrame { - JRadioButton defaultCharsButton; - JRadioButton allCharsButton; - JRadioButton unicodeCharsButton; - JScrollPane unicodeBlockScroller; - JList charsetList; - - - public CharacterSelector() { - super("Character Selector"); - - charsetList = new CheckBoxList(); - DefaultListModel model = new DefaultListModel(); - charsetList.setModel(model); - for (String item : blockNames) { - model.addElement(new JCheckBox(item)); - } - - unicodeBlockScroller = - new JScrollPane(charsetList, - ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS, - ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER); - - Container outer = getContentPane(); - outer.setLayout(new BorderLayout()); - - JPanel pain = new JPanel(); - pain.setBorder(new EmptyBorder(13, 13, 13, 13)); - outer.add(pain, BorderLayout.CENTER); - - pain.setLayout(new BoxLayout(pain, BoxLayout.Y_AXIS)); - - String labelText = - "Default characters will include most bitmaps for Mac OS\n" + - "and Windows Latin scripts. Including all characters may\n" + - "require large amounts of memory for all of the bitmaps.\n" + - "For greater control, you can select specific Unicode blocks."; - JTextArea textarea = new JTextArea(labelText); - textarea.setBorder(new EmptyBorder(13, 8, 13, 8)); - textarea.setBackground(null); - textarea.setEditable(false); - textarea.setHighlighter(null); - textarea.setFont(new Font("Dialog", Font.PLAIN, 12)); - pain.add(textarea); - - ActionListener listener = new ActionListener() { - public void actionPerformed(ActionEvent e) { - //System.out.println("action " + unicodeCharsButton.isSelected()); - //unicodeBlockScroller.setEnabled(unicodeCharsButton.isSelected()); - charsetList.setEnabled(unicodeCharsButton.isSelected()); - } - }; - defaultCharsButton = new JRadioButton("Default Characters"); - allCharsButton = new JRadioButton("All Characters"); - unicodeCharsButton = new JRadioButton("Specific Unicode Blocks"); - - defaultCharsButton.addActionListener(listener); - allCharsButton.addActionListener(listener); - unicodeCharsButton.addActionListener(listener); - - ButtonGroup group = new ButtonGroup(); - group.add(defaultCharsButton); - group.add(allCharsButton); - group.add(unicodeCharsButton); - - JPanel radioPanel = new JPanel(); - //radioPanel.setBackground(Color.red); - radioPanel.setLayout(new BoxLayout(radioPanel, BoxLayout.Y_AXIS)); - radioPanel.add(defaultCharsButton); - radioPanel.add(allCharsButton); - radioPanel.add(unicodeCharsButton); - - JPanel rightStuff = new JPanel(); - rightStuff.setLayout(new BoxLayout(rightStuff, BoxLayout.X_AXIS)); - rightStuff.add(radioPanel); - rightStuff.add(Box.createHorizontalGlue()); - pain.add(rightStuff); - pain.add(Box.createVerticalStrut(13)); - -// pain.add(radioPanel); - -// pain.add(defaultCharsButton); -// pain.add(allCharsButton); -// pain.add(unicodeCharsButton); - - defaultCharsButton.setSelected(true); - charsetList.setEnabled(false); - - //frame.getContentPane().add(scroller); - pain.add(unicodeBlockScroller); - pain.add(Box.createVerticalStrut(8)); - - JPanel buttons = new JPanel(); - JButton okButton = new JButton("OK"); - okButton.addActionListener(new ActionListener() { - public void actionPerformed(ActionEvent e) { - setVisible(false); - } - }); - okButton.setEnabled(true); - buttons.add(okButton); - pain.add(buttons); - - JRootPane root = getRootPane(); - root.setDefaultButton(okButton); - ActionListener disposer = new ActionListener() { - public void actionPerformed(ActionEvent actionEvent) { - setVisible(false); - } - }; - Base.registerWindowCloseKeys(root, disposer); - Base.setIcon(this); - - pack(); - - Dimension screen = Toolkit.getDefaultToolkit().getScreenSize(); - Dimension windowSize = getSize(); - - setLocation((screen.width - windowSize.width) / 2, - (screen.height - windowSize.height) / 2); - } - - - protected char[] getCharacters() { - if (defaultCharsButton.isSelected()) { - return PFont.CHARSET; - } - - char[] charset = new char[65536]; - if (allCharsButton.isSelected()) { - for (int i = 0; i < 0xFFFF; i++) { - charset[i] = (char) i; - } - } else { - DefaultListModel model = (DefaultListModel) charsetList.getModel(); - int index = 0; - for (int i = 0; i < BLOCKS.length; i++) { - if (((JCheckBox) model.get(i)).isSelected()) { - for (int j = blockStart[i]; j <= blockStop[i]; j++) { - charset[index++] = (char) j; - } - } - } - charset = PApplet.subset(charset, 0, index); - } - //System.out.println("Creating font with " + charset.length + " characters."); - return charset; - } - - - // http://www.unicode.org/Public/UNIDATA/Blocks.txt - static final String[] BLOCKS = { - "0000..007F; Basic Latin", - "0080..00FF; Latin-1 Supplement", - "0100..017F; Latin Extended-A", - "0180..024F; Latin Extended-B", - "0250..02AF; IPA Extensions", - "02B0..02FF; Spacing Modifier Letters", - "0300..036F; Combining Diacritical Marks", - "0370..03FF; Greek and Coptic", - "0400..04FF; Cyrillic", - "0500..052F; Cyrillic Supplement", - "0530..058F; Armenian", - "0590..05FF; Hebrew", - "0600..06FF; Arabic", - "0700..074F; Syriac", - "0750..077F; Arabic Supplement", - "0780..07BF; Thaana", - "07C0..07FF; NKo", - "0800..083F; Samaritan", - "0900..097F; Devanagari", - "0980..09FF; Bengali", - "0A00..0A7F; Gurmukhi", - "0A80..0AFF; Gujarati", - "0B00..0B7F; Oriya", - "0B80..0BFF; Tamil", - "0C00..0C7F; Telugu", - "0C80..0CFF; Kannada", - "0D00..0D7F; Malayalam", - "0D80..0DFF; Sinhala", - "0E00..0E7F; Thai", - "0E80..0EFF; Lao", - "0F00..0FFF; Tibetan", - "1000..109F; Myanmar", - "10A0..10FF; Georgian", - "1100..11FF; Hangul Jamo", - "1200..137F; Ethiopic", - "1380..139F; Ethiopic Supplement", - "13A0..13FF; Cherokee", - "1400..167F; Unified Canadian Aboriginal Syllabics", - "1680..169F; Ogham", - "16A0..16FF; Runic", - "1700..171F; Tagalog", - "1720..173F; Hanunoo", - "1740..175F; Buhid", - "1760..177F; Tagbanwa", - "1780..17FF; Khmer", - "1800..18AF; Mongolian", - "18B0..18FF; Unified Canadian Aboriginal Syllabics Extended", - "1900..194F; Limbu", - "1950..197F; Tai Le", - "1980..19DF; New Tai Lue", - "19E0..19FF; Khmer Symbols", - "1A00..1A1F; Buginese", - "1A20..1AAF; Tai Tham", - "1B00..1B7F; Balinese", - "1B80..1BBF; Sundanese", - "1C00..1C4F; Lepcha", - "1C50..1C7F; Ol Chiki", - "1CD0..1CFF; Vedic Extensions", - "1D00..1D7F; Phonetic Extensions", - "1D80..1DBF; Phonetic Extensions Supplement", - "1DC0..1DFF; Combining Diacritical Marks Supplement", - "1E00..1EFF; Latin Extended Additional", - "1F00..1FFF; Greek Extended", - "2000..206F; General Punctuation", - "2070..209F; Superscripts and Subscripts", - "20A0..20CF; Currency Symbols", - "20D0..20FF; Combining Diacritical Marks for Symbols", - "2100..214F; Letterlike Symbols", - "2150..218F; Number Forms", - "2190..21FF; Arrows", - "2200..22FF; Mathematical Operators", - "2300..23FF; Miscellaneous Technical", - "2400..243F; Control Pictures", - "2440..245F; Optical Character Recognition", - "2460..24FF; Enclosed Alphanumerics", - "2500..257F; Box Drawing", - "2580..259F; Block Elements", - "25A0..25FF; Geometric Shapes", - "2600..26FF; Miscellaneous Symbols", - "2700..27BF; Dingbats", - "27C0..27EF; Miscellaneous Mathematical Symbols-A", - "27F0..27FF; Supplemental Arrows-A", - "2800..28FF; Braille Patterns", - "2900..297F; Supplemental Arrows-B", - "2980..29FF; Miscellaneous Mathematical Symbols-B", - "2A00..2AFF; Supplemental Mathematical Operators", - "2B00..2BFF; Miscellaneous Symbols and Arrows", - "2C00..2C5F; Glagolitic", - "2C60..2C7F; Latin Extended-C", - "2C80..2CFF; Coptic", - "2D00..2D2F; Georgian Supplement", - "2D30..2D7F; Tifinagh", - "2D80..2DDF; Ethiopic Extended", - "2DE0..2DFF; Cyrillic Extended-A", - "2E00..2E7F; Supplemental Punctuation", - "2E80..2EFF; CJK Radicals Supplement", - "2F00..2FDF; Kangxi Radicals", - "2FF0..2FFF; Ideographic Description Characters", - "3000..303F; CJK Symbols and Punctuation", - "3040..309F; Hiragana", - "30A0..30FF; Katakana", - "3100..312F; Bopomofo", - "3130..318F; Hangul Compatibility Jamo", - "3190..319F; Kanbun", - "31A0..31BF; Bopomofo Extended", - "31C0..31EF; CJK Strokes", - "31F0..31FF; Katakana Phonetic Extensions", - "3200..32FF; Enclosed CJK Letters and Months", - "3300..33FF; CJK Compatibility", - "3400..4DBF; CJK Unified Ideographs Extension A", - "4DC0..4DFF; Yijing Hexagram Symbols", - "4E00..9FFF; CJK Unified Ideographs", - "A000..A48F; Yi Syllables", - "A490..A4CF; Yi Radicals", - "A4D0..A4FF; Lisu", - "A500..A63F; Vai", - "A640..A69F; Cyrillic Extended-B", - "A6A0..A6FF; Bamum", - "A700..A71F; Modifier Tone Letters", - "A720..A7FF; Latin Extended-D", - "A800..A82F; Syloti Nagri", - "A830..A83F; Common Indic Number Forms", - "A840..A87F; Phags-pa", - "A880..A8DF; Saurashtra", - "A8E0..A8FF; Devanagari Extended", - "A900..A92F; Kayah Li", - "A930..A95F; Rejang", - "A960..A97F; Hangul Jamo Extended-A", - "A980..A9DF; Javanese", - "AA00..AA5F; Cham", - "AA60..AA7F; Myanmar Extended-A", - "AA80..AADF; Tai Viet", - "ABC0..ABFF; Meetei Mayek", - "AC00..D7AF; Hangul Syllables", - "D7B0..D7FF; Hangul Jamo Extended-B", - "D800..DB7F; High Surrogates", - "DB80..DBFF; High Private Use Surrogates", - "DC00..DFFF; Low Surrogates", - "E000..F8FF; Private Use Area", - "F900..FAFF; CJK Compatibility Ideographs", - "FB00..FB4F; Alphabetic Presentation Forms", - "FB50..FDFF; Arabic Presentation Forms-A", - "FE00..FE0F; Variation Selectors", - "FE10..FE1F; Vertical Forms", - "FE20..FE2F; Combining Half Marks", - "FE30..FE4F; CJK Compatibility Forms", - "FE50..FE6F; Small Form Variants", - "FE70..FEFF; Arabic Presentation Forms-B", - "FF00..FFEF; Halfwidth and Fullwidth Forms", - "FFF0..FFFF; Specials" - }; - - static String[] blockNames; - static int[] blockStart; - static int[] blockStop; - static { - int count = BLOCKS.length; - blockNames = new String[count]; - blockStart = new int[count]; - blockStop = new int[count]; - for (int i = 0; i < count; i++) { - String line = BLOCKS[i]; - blockStart[i] = PApplet.unhex(line.substring(0, 4)); - blockStop[i] = PApplet.unhex(line.substring(6, 10)); - blockNames[i] = line.substring(12); - } -// PApplet.println(codePointStop); -// PApplet.println(codePoints); - } -} - - -// Code for this CheckBoxList class found on the net, though I've lost the -// link. If you run across the original version, please let me know so that -// the original author can be credited properly. It was from a snippet -// collection, but it seems to have been picked up so many places with others -// placing their copyright on it, that I haven't been able to determine the -// original author. [fry 20100216] -class CheckBoxList extends JList { - protected static Border noFocusBorder = new EmptyBorder(1, 1, 1, 1); - - public CheckBoxList() { - setCellRenderer(new CellRenderer()); - - addMouseListener(new MouseAdapter() { - public void mousePressed(MouseEvent e) { - if (isEnabled()) { - int index = locationToIndex(e.getPoint()); - - if (index != -1) { - JCheckBox checkbox = (JCheckBox) - getModel().getElementAt(index); - checkbox.setSelected(!checkbox.isSelected()); - repaint(); - } - } - } - }); - setSelectionMode(ListSelectionModel.SINGLE_SELECTION); - } - - - protected class CellRenderer implements ListCellRenderer { - public Component getListCellRendererComponent(JList list, Object value, - int index, boolean isSelected, - boolean cellHasFocus) { - JCheckBox checkbox = (JCheckBox) value; - checkbox.setBackground(isSelected ? getSelectionBackground() : getBackground()); - checkbox.setForeground(isSelected ? getSelectionForeground() : getForeground()); - //checkbox.setEnabled(isEnabled()); - checkbox.setEnabled(list.isEnabled()); - checkbox.setFont(getFont()); - checkbox.setFocusPainted(false); - checkbox.setBorderPainted(true); - checkbox.setBorder(isSelected ? UIManager.getBorder("List.focusCellHighlightBorder") : noFocusBorder); - return checkbox; - } - } -} \ No newline at end of file From e0f680be5bedeeb4e1125b808033e1f9478c4f07 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Tue, 19 Aug 2014 11:53:44 +0200 Subject: [PATCH 019/148] Drop dependency from processing-core project. --- app/.classpath | 1 - app/src/processing/app/AbstractMonitor.java | 2 +- app/src/processing/app/Base.java | 3 ++- app/src/processing/app/Editor.java | 4 +++- app/src/processing/app/Platform.java | 2 +- app/src/processing/app/Preferences.java | 2 +- app/src/processing/app/PreferencesData.java | 4 ++-- app/src/processing/app/SerialMonitor.java | 2 +- app/src/processing/app/UpdateCheck.java | 2 +- app/src/processing/app/debug/Compiler.java | 2 +- app/src/processing/app/helpers/PreferencesMap.java | 4 +--- app/src/processing/app/linux/Platform.java | 2 +- app/src/processing/app/macosx/Platform.java | 8 ++++---- app/src/processing/app/preproc/PdePreprocessor.java | 3 +-- app/src/processing/app/syntax/PdeKeywords.java | 3 ++- app/src/processing/app/tools/AutoFormat.java | 2 +- app/src/processing/app/tools/DiscourseFormat.java | 2 +- app/src/processing/app/windows/Platform.java | 6 ++++-- 18 files changed, 28 insertions(+), 26 deletions(-) diff --git a/app/.classpath b/app/.classpath index 32030b38e..a37f05e66 100644 --- a/app/.classpath +++ b/app/.classpath @@ -5,7 +5,6 @@ - diff --git a/app/src/processing/app/AbstractMonitor.java b/app/src/processing/app/AbstractMonitor.java index 9a3de6043..027601c57 100644 --- a/app/src/processing/app/AbstractMonitor.java +++ b/app/src/processing/app/AbstractMonitor.java @@ -1,7 +1,7 @@ package processing.app; import processing.app.debug.MessageConsumer; -import processing.core.PApplet; +import processing.app.legacy.PApplet; import javax.swing.*; import javax.swing.border.EmptyBorder; diff --git a/app/src/processing/app/Base.java b/app/src/processing/app/Base.java index 282162552..574b8a4fa 100644 --- a/app/src/processing/app/Base.java +++ b/app/src/processing/app/Base.java @@ -46,11 +46,12 @@ import processing.app.helpers.PreferencesMap; import processing.app.helpers.filefilters.OnlyDirs; import processing.app.helpers.filefilters.OnlyFilesWithExtension; import processing.app.javax.swing.filechooser.FileNameExtensionFilter; +import processing.app.legacy.PApplet; +import processing.app.legacy.PConstants; import processing.app.packages.Library; import processing.app.packages.LibraryList; import processing.app.tools.MenuScroller; import processing.app.tools.ZipDeflater; -import processing.core.*; import static processing.app.I18n._; diff --git a/app/src/processing/app/Editor.java b/app/src/processing/app/Editor.java index 35cfc4553..0a9280063 100644 --- a/app/src/processing/app/Editor.java +++ b/app/src/processing/app/Editor.java @@ -23,13 +23,15 @@ package processing.app; import cc.arduino.packages.UploaderAndMonitorFactory; + import com.jcraft.jsch.JSchException; + import processing.app.debug.*; import processing.app.forms.PasswordAuthorizationDialog; import processing.app.helpers.PreferencesMapException; +import processing.app.legacy.PApplet; import processing.app.syntax.*; import processing.app.tools.*; -import processing.core.*; import static processing.app.I18n._; import java.awt.*; diff --git a/app/src/processing/app/Platform.java b/app/src/processing/app/Platform.java index 59ce7f881..bf0f8ddd5 100644 --- a/app/src/processing/app/Platform.java +++ b/app/src/processing/app/Platform.java @@ -35,7 +35,7 @@ import com.sun.jna.Native; import processing.app.debug.TargetBoard; import processing.app.debug.TargetPackage; import processing.app.debug.TargetPlatform; -import processing.core.PConstants; +import processing.app.legacy.PConstants; /** diff --git a/app/src/processing/app/Preferences.java b/app/src/processing/app/Preferences.java index 46008c962..5b07f6933 100644 --- a/app/src/processing/app/Preferences.java +++ b/app/src/processing/app/Preferences.java @@ -52,7 +52,7 @@ import javax.swing.KeyStroke; import processing.app.helpers.FileUtils; import processing.app.helpers.PreferencesHelper; import processing.app.helpers.PreferencesMap; -import processing.core.PApplet; +import processing.app.legacy.PApplet; /** diff --git a/app/src/processing/app/PreferencesData.java b/app/src/processing/app/PreferencesData.java index 2b4af0118..52e3ad87d 100644 --- a/app/src/processing/app/PreferencesData.java +++ b/app/src/processing/app/PreferencesData.java @@ -12,8 +12,8 @@ import java.util.Arrays; import java.util.MissingResourceException; import processing.app.helpers.PreferencesMap; -import processing.core.PApplet; -import processing.core.PConstants; +import processing.app.legacy.PApplet; +import processing.app.legacy.PConstants; public class PreferencesData { diff --git a/app/src/processing/app/SerialMonitor.java b/app/src/processing/app/SerialMonitor.java index 0be575ed2..67e90d5bb 100644 --- a/app/src/processing/app/SerialMonitor.java +++ b/app/src/processing/app/SerialMonitor.java @@ -19,7 +19,7 @@ package processing.app; import cc.arduino.packages.BoardPort; -import processing.core.PApplet; +import processing.app.legacy.PApplet; import java.awt.*; import java.awt.event.ActionEvent; diff --git a/app/src/processing/app/UpdateCheck.java b/app/src/processing/app/UpdateCheck.java index 21db25b5c..0e94366e9 100644 --- a/app/src/processing/app/UpdateCheck.java +++ b/app/src/processing/app/UpdateCheck.java @@ -31,7 +31,7 @@ import java.util.Random; import javax.swing.JOptionPane; -import processing.core.PApplet; +import processing.app.legacy.PApplet; import static processing.app.I18n._; diff --git a/app/src/processing/app/debug/Compiler.java b/app/src/processing/app/debug/Compiler.java index 232b5ac7c..1f7540e9c 100644 --- a/app/src/processing/app/debug/Compiler.java +++ b/app/src/processing/app/debug/Compiler.java @@ -49,7 +49,7 @@ import processing.app.helpers.filefilters.OnlyDirs; import processing.app.packages.Library; import processing.app.packages.LibraryList; import processing.app.preproc.PdePreprocessor; -import processing.core.PApplet; +import processing.app.legacy.PApplet; public class Compiler implements MessageConsumer { diff --git a/app/src/processing/app/helpers/PreferencesMap.java b/app/src/processing/app/helpers/PreferencesMap.java index d374fd850..a48617a62 100644 --- a/app/src/processing/app/helpers/PreferencesMap.java +++ b/app/src/processing/app/helpers/PreferencesMap.java @@ -27,14 +27,12 @@ import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStream; import java.util.LinkedHashMap; -import java.util.LinkedHashSet; import java.util.Map; -import java.util.Set; import java.util.SortedSet; import java.util.TreeSet; import processing.app.Base; -import processing.core.PApplet; +import processing.app.legacy.PApplet; @SuppressWarnings("serial") public class PreferencesMap extends LinkedHashMap { diff --git a/app/src/processing/app/linux/Platform.java b/app/src/processing/app/linux/Platform.java index 7f4afefd5..3c4fa59dd 100644 --- a/app/src/processing/app/linux/Platform.java +++ b/app/src/processing/app/linux/Platform.java @@ -27,7 +27,7 @@ import org.apache.commons.exec.Executor; import processing.app.Preferences; import processing.app.debug.TargetPackage; import processing.app.tools.ExternalProcessExecutor; -import processing.core.PConstants; +import processing.app.legacy.PConstants; import java.io.*; import java.util.Map; diff --git a/app/src/processing/app/macosx/Platform.java b/app/src/processing/app/macosx/Platform.java index 7bbe74984..1d1a2305a 100644 --- a/app/src/processing/app/macosx/Platform.java +++ b/app/src/processing/app/macosx/Platform.java @@ -28,8 +28,8 @@ import org.apache.commons.exec.Executor; import processing.app.Base; import processing.app.debug.TargetPackage; import processing.app.tools.ExternalProcessExecutor; -import processing.core.PApplet; -import processing.core.PConstants; +import processing.app.legacy.PApplet; +import processing.app.legacy.PConstants; import javax.swing.*; import java.awt.*; @@ -129,7 +129,7 @@ public class Platform extends processing.app.Platform { } else { // Assume this is a file instead, and just open it. // Extension of http://dev.processing.org/bugs/show_bug.cgi?id=1010 - processing.core.PApplet.open(url); + PApplet.open(url); } } else { try { @@ -162,7 +162,7 @@ public class Platform extends processing.app.Platform { public void openFolder(File file) throws Exception { //openURL(file.getAbsolutePath()); // handles char replacement, etc - processing.core.PApplet.open(file.getAbsolutePath()); + PApplet.open(file.getAbsolutePath()); } diff --git a/app/src/processing/app/preproc/PdePreprocessor.java b/app/src/processing/app/preproc/PdePreprocessor.java index e468cfd28..576f7468b 100644 --- a/app/src/processing/app/preproc/PdePreprocessor.java +++ b/app/src/processing/app/preproc/PdePreprocessor.java @@ -31,11 +31,10 @@ package processing.app.preproc; import static processing.app.I18n._; import processing.app.*; -import processing.core.*; +import processing.app.legacy.PApplet; import java.io.*; import java.util.*; - import java.util.regex.*; diff --git a/app/src/processing/app/syntax/PdeKeywords.java b/app/src/processing/app/syntax/PdeKeywords.java index d8e48f8e8..ccf52531c 100644 --- a/app/src/processing/app/syntax/PdeKeywords.java +++ b/app/src/processing/app/syntax/PdeKeywords.java @@ -25,6 +25,7 @@ package processing.app.syntax; import processing.app.*; +import processing.app.legacy.PApplet; import processing.app.packages.Library; import java.io.*; @@ -84,7 +85,7 @@ public class PdeKeywords extends CTokenMarker { // in case there's any garbage on the line //if (line.trim().length() == 0) continue; - String pieces[] = processing.core.PApplet.split(line, '\t'); + String pieces[] = PApplet.split(line, '\t'); if (pieces.length >= 2) { //int tab = line.indexOf('\t'); // any line with no tab is ignored diff --git a/app/src/processing/app/tools/AutoFormat.java b/app/src/processing/app/tools/AutoFormat.java index 8cad91385..c2c109c06 100644 --- a/app/src/processing/app/tools/AutoFormat.java +++ b/app/src/processing/app/tools/AutoFormat.java @@ -25,7 +25,7 @@ package processing.app.tools; import processing.app.*; -import processing.core.PApplet; +import processing.app.legacy.PApplet; import static processing.app.I18n._; import java.io.*; diff --git a/app/src/processing/app/tools/DiscourseFormat.java b/app/src/processing/app/tools/DiscourseFormat.java index ab5ef22fc..a4a381c5a 100644 --- a/app/src/processing/app/tools/DiscourseFormat.java +++ b/app/src/processing/app/tools/DiscourseFormat.java @@ -29,7 +29,7 @@ import javax.swing.text.Segment; import processing.app.*; import processing.app.syntax.*; -import processing.core.PApplet; +import processing.app.legacy.PApplet; /** * Format for Discourse Tool diff --git a/app/src/processing/app/windows/Platform.java b/app/src/processing/app/windows/Platform.java index e340da417..6d4653d94 100644 --- a/app/src/processing/app/windows/Platform.java +++ b/app/src/processing/app/windows/Platform.java @@ -24,15 +24,17 @@ package processing.app.windows; import com.sun.jna.Library; import com.sun.jna.Native; + import org.apache.commons.exec.CommandLine; import org.apache.commons.exec.Executor; + import processing.app.Base; import processing.app.Preferences; import processing.app.debug.TargetPackage; +import processing.app.legacy.PApplet; +import processing.app.legacy.PConstants; import processing.app.tools.ExternalProcessExecutor; import processing.app.windows.Registry.REGISTRY_ROOT_KEY; -import processing.core.PApplet; -import processing.core.PConstants; import java.io.ByteArrayOutputStream; import java.io.File; From 50f89d9665d554c97f3fa6bd424bb3e8f183eefb Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Tue, 19 Aug 2014 16:48:34 +0200 Subject: [PATCH 020/148] Refactored OS detection subroutine. Moved from Base into a specific utility class OSUtils. Removed unused platform constants. --- .../packages/uploaders/SerialUploader.java | 3 +- app/src/processing/app/Base.java | 89 +++---------------- app/src/processing/app/Editor.java | 9 +- app/src/processing/app/EditorConsole.java | 4 +- app/src/processing/app/EditorHeader.java | 5 +- app/src/processing/app/EditorLineStatus.java | 5 +- app/src/processing/app/EditorStatus.java | 8 +- app/src/processing/app/FindReplace.java | 9 +- app/src/processing/app/Preferences.java | 3 +- app/src/processing/app/Sketch.java | 4 +- app/src/processing/app/helpers/OSUtils.java | 29 ++++++ .../app/helpers/PreferencesMap.java | 7 +- .../processing/app/helpers/ProcessUtils.java | 4 +- .../app/syntax/PdeTextAreaDefaults.java | 5 +- 14 files changed, 82 insertions(+), 102 deletions(-) create mode 100644 app/src/processing/app/helpers/OSUtils.java diff --git a/app/src/cc/arduino/packages/uploaders/SerialUploader.java b/app/src/cc/arduino/packages/uploaders/SerialUploader.java index 059fc5870..f216ec3a3 100644 --- a/app/src/cc/arduino/packages/uploaders/SerialUploader.java +++ b/app/src/cc/arduino/packages/uploaders/SerialUploader.java @@ -39,6 +39,7 @@ import processing.app.Serial; import processing.app.SerialException; import processing.app.debug.RunnerException; import processing.app.debug.TargetPlatform; +import processing.app.helpers.OSUtils; import processing.app.helpers.PreferencesMap; import processing.app.helpers.StringReplacer; import cc.arduino.packages.Uploader; @@ -188,7 +189,7 @@ public class SerialUploader extends Uploader { // come back, so use a longer time out before assuming that the // selected // port is the bootloader (not the sketch). - if (((!Base.isWindows() && elapsed >= 500) || elapsed >= 5000) && now.contains(uploadPort)) { + if (((!OSUtils.isWindows() && elapsed >= 500) || elapsed >= 5000) && now.contains(uploadPort)) { if (verbose) System.out.println("Uploading using selected port: " + uploadPort); return uploadPort; diff --git a/app/src/processing/app/Base.java b/app/src/processing/app/Base.java index 574b8a4fa..e8715dbb5 100644 --- a/app/src/processing/app/Base.java +++ b/app/src/processing/app/Base.java @@ -42,12 +42,12 @@ import processing.app.debug.TargetPackage; import processing.app.debug.TargetPlatform; import processing.app.debug.TargetPlatformException; import processing.app.helpers.FileUtils; +import processing.app.helpers.OSUtils; import processing.app.helpers.PreferencesMap; import processing.app.helpers.filefilters.OnlyDirs; import processing.app.helpers.filefilters.OnlyFilesWithExtension; import processing.app.javax.swing.filechooser.FileNameExtensionFilter; import processing.app.legacy.PApplet; -import processing.app.legacy.PConstants; import processing.app.packages.Library; import processing.app.packages.LibraryList; import processing.app.tools.MenuScroller; @@ -68,19 +68,6 @@ public class Base { /** Set true if this a proper release rather than a numbered revision. */ static public boolean RELEASE = false; - static Map platformNames = new HashMap(); - static { - platformNames.put(PConstants.WINDOWS, "windows"); - platformNames.put(PConstants.MACOSX, "macosx"); - platformNames.put(PConstants.LINUX, "linux"); - } - - static HashMap platformIndices = new HashMap(); - static { - platformIndices.put("windows", PConstants.WINDOWS); - platformIndices.put("macosx", PConstants.MACOSX); - platformIndices.put("linux", PConstants.LINUX); - } static Platform platform; private static DiscoveryManager discoveryManager = new DiscoveryManager(); @@ -263,11 +250,11 @@ public class Base { static protected void initPlatform() { try { Class platformClass = Class.forName("processing.app.Platform"); - if (Base.isMacOS()) { + if (OSUtils.isMacOS()) { platformClass = Class.forName("processing.app.macosx.Platform"); - } else if (Base.isWindows()) { + } else if (OSUtils.isWindows()) { platformClass = Class.forName("processing.app.windows.Platform"); - } else if (Base.isLinux()) { + } else if (OSUtils.isLinux()) { platformClass = Class.forName("processing.app.linux.Platform"); } platform = (Platform) platformClass.newInstance(); @@ -473,7 +460,7 @@ public class Base { // being passed in with 8.3 syntax, which makes the sketch loader code // unhappy, since the sketch folder naming doesn't match up correctly. // http://dev.processing.org/bugs/show_bug.cgi?id=1089 - if (isWindows()) { + if (OSUtils.isWindows()) { try { file = file.getCanonicalFile(); } catch (IOException e) { @@ -1087,7 +1074,7 @@ public class Base { // untitled sketch, just give up and let the user quit. // if (Preferences.getBoolean("sketchbook.closing_last_window_quits") || // (editor.untitled && !editor.getSketch().isModified())) { - if (Base.isMacOS()) { + if (OSUtils.isMacOS()) { Object[] options = { "OK", "Cancel" }; String prompt = _(" " + @@ -1170,7 +1157,7 @@ public class Base { // Save out the current prefs state Preferences.save(); - if (!Base.isMacOS()) { + if (!OSUtils.isMacOS()) { // If this was fired from the menu or an AppleEvent (the Finder), // then Mac OS X will send the terminate signal itself. System.exit(0); @@ -1996,54 +1983,6 @@ public class Base { } - /** - * Map a platform constant to its name. - * @param which PConstants.WINDOWS, PConstants.MACOSX, PConstants.LINUX - * @return one of "windows", "macosx", or "linux" - */ - static public String getPlatformName(int which) { - return platformNames.get(which); - } - - - static public int getPlatformIndex(String what) { - Integer entry = platformIndices.get(what); - return (entry == null) ? -1 : entry.intValue(); - } - - - // These were changed to no longer rely on PApplet and PConstants because - // of conflicts that could happen with older versions of core.jar, where - // the MACOSX constant would instead read as the LINUX constant. - - - /** - * returns true if Processing is running on a Mac OS X machine. - */ - static public boolean isMacOS() { - //return PApplet.platform == PConstants.MACOSX; - return System.getProperty("os.name").indexOf("Mac") != -1; - } - - - /** - * returns true if running on windows. - */ - static public boolean isWindows() { - //return PApplet.platform == PConstants.WINDOWS; - return System.getProperty("os.name").indexOf("Windows") != -1; - } - - - /** - * true if running on linux. - */ - static public boolean isLinux() { - //return PApplet.platform == PConstants.LINUX; - return System.getProperty("os.name").indexOf("Linux") != -1; - } - - // ................................................................. @@ -2176,7 +2115,7 @@ public class Base { static public String getAvrBasePath() { String path = getHardwarePath() + File.separator + "tools" + File.separator + "avr" + File.separator + "bin" + File.separator; - if (Base.isLinux() && !(new File(path)).exists()) { + if (OSUtils.isLinux() && !(new File(path)).exists()) { return ""; // use distribution provided avr tools if bundled tools missing } return path; @@ -2411,7 +2350,7 @@ public class Base { static public void setIcon(Frame frame) { // don't use the low-res icon on Mac OS X; the window should // already have the right icon from the .app file. - if (Base.isMacOS()) return; + if (OSUtils.isMacOS()) return; Image image = Toolkit.getDefaultToolkit().createImage(PApplet.ICON_IMAGE); frame.setIconImage(image); @@ -2464,9 +2403,9 @@ public class Base { } static public void showGettingStarted() { - if (Base.isMacOS()) { + if (OSUtils.isMacOS()) { Base.showReference(_("Guide_MacOSX.html")); - } else if (Base.isWindows()) { + } else if (OSUtils.isWindows()) { Base.showReference(_("Guide_Windows.html")); } else { Base.openURL(_("http://www.arduino.cc/playground/Learning/Linux")); @@ -2570,7 +2509,7 @@ public class Base { // incomplete static public int showYesNoCancelQuestion(Editor editor, String title, String primary, String secondary) { - if (!Base.isMacOS()) { + if (!OSUtils.isMacOS()) { int result = JOptionPane.showConfirmDialog(null, primary + "\n" + secondary, title, JOptionPane.YES_NO_CANCEL_OPTION, @@ -2646,7 +2585,7 @@ public class Base { static public int showYesNoQuestion(Frame editor, String title, String primary, String secondary) { - if (!Base.isMacOS()) { + if (!OSUtils.isMacOS()) { return JOptionPane.showConfirmDialog(editor, "" + "" + primary + "" + @@ -2730,7 +2669,7 @@ public class Base { String path = System.getProperty("user.dir"); // Get a path to somewhere inside the .app folder - if (Base.isMacOS()) { + if (OSUtils.isMacOS()) { // javaroot // $JAVAROOT String javaroot = System.getProperty("javaroot"); diff --git a/app/src/processing/app/Editor.java b/app/src/processing/app/Editor.java index 0a9280063..b449820dc 100644 --- a/app/src/processing/app/Editor.java +++ b/app/src/processing/app/Editor.java @@ -28,6 +28,7 @@ import com.jcraft.jsch.JSchException; import processing.app.debug.*; import processing.app.forms.PasswordAuthorizationDialog; +import processing.app.helpers.OSUtils; import processing.app.helpers.PreferencesMapException; import processing.app.legacy.PApplet; import processing.app.syntax.*; @@ -591,7 +592,7 @@ public class Editor extends JFrame implements RunnerListener { fileMenu.add(item); // macosx already has its own preferences and quit menu - if (!Base.isMacOS()) { + if (!OSUtils.isMacOS()) { fileMenu.addSeparator(); item = newJMenuItem(_("Preferences"), ','); @@ -1110,7 +1111,7 @@ public class Editor extends JFrame implements RunnerListener { menu.add(item); // macosx already has its own about menu - if (!Base.isMacOS()) { + if (!OSUtils.isMacOS()) { menu.addSeparator(); item = new JMenuItem(_("About Arduino")); item.addActionListener(new ActionListener() { @@ -1135,7 +1136,7 @@ public class Editor extends JFrame implements RunnerListener { undoItem.addActionListener(undoAction = new UndoAction()); menu.add(undoItem); - if (!Base.isMacOS()) { + if (!OSUtils.isMacOS()) { redoItem = newJMenuItem(_("Redo"), 'Y'); } else { redoItem = newJMenuItemShift(_("Redo"), 'Z'); @@ -2031,7 +2032,7 @@ public class Editor extends JFrame implements RunnerListener { String prompt = I18n.format(_("Save changes to \"{0}\"? "), sketch.getName()); - if (!Base.isMacOS()) { + if (!OSUtils.isMacOS()) { int result = JOptionPane.showConfirmDialog(this, prompt, _("Close"), JOptionPane.YES_NO_CANCEL_OPTION, diff --git a/app/src/processing/app/EditorConsole.java b/app/src/processing/app/EditorConsole.java index 93d8eaf9d..6ee8e86c8 100644 --- a/app/src/processing/app/EditorConsole.java +++ b/app/src/processing/app/EditorConsole.java @@ -40,6 +40,8 @@ import javax.swing.text.Element; import javax.swing.text.SimpleAttributeSet; import javax.swing.text.StyleConstants; +import processing.app.helpers.OSUtils; + /** * Message console that sits below the editing area. @@ -118,7 +120,7 @@ public class EditorConsole extends JScrollPane { // to fix ugliness.. normally macosx java 1.3 puts an // ugly white border around this object, so turn it off. - if (Base.isMacOS()) { + if (OSUtils.isMacOS()) { setBorder(null); } diff --git a/app/src/processing/app/EditorHeader.java b/app/src/processing/app/EditorHeader.java index 0efd86685..ba96382a5 100644 --- a/app/src/processing/app/EditorHeader.java +++ b/app/src/processing/app/EditorHeader.java @@ -22,6 +22,7 @@ */ package processing.app; +import processing.app.helpers.OSUtils; import processing.app.tools.MenuScroller; import static processing.app.I18n._; @@ -381,7 +382,7 @@ public class EditorHeader extends JComponent { public Dimension getMinimumSize() { - if (Base.isMacOS()) { + if (OSUtils.isMacOS()) { return new Dimension(300, Preferences.GRID_SIZE); } return new Dimension(300, Preferences.GRID_SIZE - 1); @@ -389,7 +390,7 @@ public class EditorHeader extends JComponent { public Dimension getMaximumSize() { - if (Base.isMacOS()) { + if (OSUtils.isMacOS()) { return new Dimension(3000, Preferences.GRID_SIZE); } return new Dimension(3000, Preferences.GRID_SIZE - 1); diff --git a/app/src/processing/app/EditorLineStatus.java b/app/src/processing/app/EditorLineStatus.java index e29fa0c2d..2ef4e8edb 100644 --- a/app/src/processing/app/EditorLineStatus.java +++ b/app/src/processing/app/EditorLineStatus.java @@ -22,6 +22,7 @@ package processing.app; +import processing.app.helpers.OSUtils; import processing.app.syntax.*; import java.awt.*; @@ -61,7 +62,7 @@ public class EditorLineStatus extends JComponent { foreground = Theme.getColor("linestatus.color"); high = Theme.getInteger("linestatus.height"); - if (Base.isMacOS()) { + if (OSUtils.isMacOS()) { resize = Base.getThemeImage("resize.gif", this); } //linestatus.bgcolor = #000000 @@ -118,7 +119,7 @@ public class EditorLineStatus extends JComponent { g.drawString(tmp, size.width - (int) bounds.getWidth() -20 , baseline); - if (Base.isMacOS()) { + if (OSUtils.isMacOS()) { g.drawImage(resize, size.width - 20, 0, this); } } diff --git a/app/src/processing/app/EditorStatus.java b/app/src/processing/app/EditorStatus.java index e09b5b0f9..7cb4b1ee1 100644 --- a/app/src/processing/app/EditorStatus.java +++ b/app/src/processing/app/EditorStatus.java @@ -25,9 +25,13 @@ package processing.app; import java.awt.*; import java.awt.event.*; + import javax.swing.*; +import processing.app.helpers.OSUtils; + import java.awt.datatransfer.*; + import static processing.app.I18n._; @@ -331,7 +335,7 @@ public class EditorStatus extends JPanel /*implements ActionListener*/ { // !@#(* aqua ui #($*(( that turtle-neck wearing #(** (#$@)( // os9 seems to work if bg of component is set, but x still a bastard - if (Base.isMacOS()) { + if (OSUtils.isMacOS()) { //yesButton.setBackground(bgcolor[EDIT]); //noButton.setBackground(bgcolor[EDIT]); cancelButton.setBackground(bgcolor[EDIT]); @@ -444,7 +448,7 @@ public class EditorStatus extends JPanel /*implements ActionListener*/ { progressBar = new JProgressBar(JScrollBar.HORIZONTAL); progressBar.setIndeterminate(false); - if (Base.isMacOS()) { + if (OSUtils.isMacOS()) { //progressBar.setBackground(bgcolor[PROGRESS]); //progressBar.putClientProperty("JProgressBar.style", "circular"); } diff --git a/app/src/processing/app/FindReplace.java b/app/src/processing/app/FindReplace.java index 66bbb5a22..26e7a7549 100644 --- a/app/src/processing/app/FindReplace.java +++ b/app/src/processing/app/FindReplace.java @@ -26,8 +26,11 @@ import static processing.app.I18n._; import java.awt.*; import java.awt.event.*; + import javax.swing.*; +import processing.app.helpers.OSUtils; + /** * Find & Replace window for the Processing editor. @@ -47,7 +50,7 @@ import javax.swing.*; @SuppressWarnings("serial") public class FindReplace extends JFrame implements ActionListener { - static final int EDGE = Base.isMacOS() ? 20 : 13; + static final int EDGE = OSUtils.isMacOS() ? 20 : 13; static final int SMALL = 6; static final int BUTTONGAP = 12; // 12 is correct for Mac, other numbers may be required for other platofrms @@ -143,7 +146,7 @@ public class FindReplace extends JFrame implements ActionListener { buttons.setLayout(new FlowLayout(FlowLayout.CENTER, BUTTONGAP, 0)); // ordering is different on mac versus pc - if (Base.isMacOS()) { + if (OSUtils.isMacOS()) { buttons.add(replaceAllButton = new JButton(_("Replace All"))); buttons.add(replaceButton = new JButton(_("Replace"))); buttons.add(replaceFindButton = new JButton(_("Replace & Find"))); @@ -161,7 +164,7 @@ public class FindReplace extends JFrame implements ActionListener { // to fix ugliness.. normally macosx java 1.3 puts an // ugly white border around this object, so turn it off. - if (Base.isMacOS()) { + if (OSUtils.isMacOS()) { buttons.setBorder(null); } diff --git a/app/src/processing/app/Preferences.java b/app/src/processing/app/Preferences.java index 5b07f6933..e6c692568 100644 --- a/app/src/processing/app/Preferences.java +++ b/app/src/processing/app/Preferences.java @@ -50,6 +50,7 @@ import javax.swing.JTextField; import javax.swing.KeyStroke; import processing.app.helpers.FileUtils; +import processing.app.helpers.OSUtils; import processing.app.helpers.PreferencesHelper; import processing.app.helpers.PreferencesMap; import processing.app.legacy.PApplet; @@ -405,7 +406,7 @@ public class Preferences { // [ ] Automatically associate .pde files with Processing - if (Base.isWindows()) { + if (OSUtils.isWindows()) { autoAssociateBox = new JCheckBox(_("Automatically associate .ino files with Arduino")); pain.add(autoAssociateBox); diff --git a/app/src/processing/app/Sketch.java b/app/src/processing/app/Sketch.java index b9e93e677..aa1d375e4 100644 --- a/app/src/processing/app/Sketch.java +++ b/app/src/processing/app/Sketch.java @@ -25,12 +25,12 @@ package processing.app; import cc.arduino.packages.BoardPort; import cc.arduino.packages.UploaderAndMonitorFactory; - import cc.arduino.packages.Uploader; import processing.app.debug.*; import processing.app.debug.Compiler; import processing.app.debug.Compiler.ProgressListener; import processing.app.forms.PasswordAuthorizationDialog; +import processing.app.helpers.OSUtils; import processing.app.helpers.PreferencesMap; import processing.app.helpers.FileUtils; import processing.app.packages.Library; @@ -529,7 +529,7 @@ public class Sketch { } editor.header.repaint(); - if (Base.isMacOS()) { + if (OSUtils.isMacOS()) { // http://developer.apple.com/qa/qa2001/qa1146.html Object modifiedParam = modified ? Boolean.TRUE : Boolean.FALSE; editor.getRootPane().putClientProperty("windowModified", modifiedParam); diff --git a/app/src/processing/app/helpers/OSUtils.java b/app/src/processing/app/helpers/OSUtils.java new file mode 100644 index 000000000..5efb77e29 --- /dev/null +++ b/app/src/processing/app/helpers/OSUtils.java @@ -0,0 +1,29 @@ +package processing.app.helpers; + +public class OSUtils { + + /** + * returns true if running on windows. + */ + static public boolean isWindows() { + //return PApplet.platform == PConstants.WINDOWS; + return System.getProperty("os.name").indexOf("Windows") != -1; + } + + /** + * true if running on linux. + */ + static public boolean isLinux() { + //return PApplet.platform == PConstants.LINUX; + return System.getProperty("os.name").indexOf("Linux") != -1; + } + + /** + * returns true if Processing is running on a Mac OS X machine. + */ + static public boolean isMacOS() { + //return PApplet.platform == PConstants.MACOSX; + return System.getProperty("os.name").indexOf("Mac") != -1; + } + +} diff --git a/app/src/processing/app/helpers/PreferencesMap.java b/app/src/processing/app/helpers/PreferencesMap.java index a48617a62..b40b8c97a 100644 --- a/app/src/processing/app/helpers/PreferencesMap.java +++ b/app/src/processing/app/helpers/PreferencesMap.java @@ -31,7 +31,6 @@ import java.util.Map; import java.util.SortedSet; import java.util.TreeSet; -import processing.app.Base; import processing.app.legacy.PApplet; @SuppressWarnings("serial") @@ -105,9 +104,9 @@ public class PreferencesMap extends LinkedHashMap { String key = line.substring(0, equals).trim(); String value = line.substring(equals + 1).trim(); - key = processPlatformSuffix(key, ".linux", Base.isLinux()); - key = processPlatformSuffix(key, ".windows", Base.isWindows()); - key = processPlatformSuffix(key, ".macosx", Base.isMacOS()); + key = processPlatformSuffix(key, ".linux", OSUtils.isLinux()); + key = processPlatformSuffix(key, ".windows", OSUtils.isWindows()); + key = processPlatformSuffix(key, ".macosx", OSUtils.isMacOS()); if (key != null) put(key, value); diff --git a/app/src/processing/app/helpers/ProcessUtils.java b/app/src/processing/app/helpers/ProcessUtils.java index d378f991d..1fb74cc79 100644 --- a/app/src/processing/app/helpers/ProcessUtils.java +++ b/app/src/processing/app/helpers/ProcessUtils.java @@ -1,7 +1,5 @@ package processing.app.helpers; -import processing.app.Base; - import java.io.IOException; import java.util.Map; @@ -9,7 +7,7 @@ public class ProcessUtils { public static Process exec(String[] command) throws IOException { // No problems on linux and mac - if (!Base.isWindows()) { + if (!OSUtils.isWindows()) { return Runtime.getRuntime().exec(command); } diff --git a/app/src/processing/app/syntax/PdeTextAreaDefaults.java b/app/src/processing/app/syntax/PdeTextAreaDefaults.java index 382c69aaf..2ff65afa8 100644 --- a/app/src/processing/app/syntax/PdeTextAreaDefaults.java +++ b/app/src/processing/app/syntax/PdeTextAreaDefaults.java @@ -25,6 +25,7 @@ package processing.app.syntax; import processing.app.*; +import processing.app.helpers.OSUtils; public class PdeTextAreaDefaults extends TextAreaDefaults { @@ -35,7 +36,7 @@ public class PdeTextAreaDefaults extends TextAreaDefaults { //inputHandler.addDefaultKeyBindings(); // 0122 // use option on mac for text edit controls that are ctrl on windows/linux - String mod = Base.isMacOS() ? "A" : "C"; + String mod = OSUtils.isMacOS() ? "A" : "C"; // right now, ctrl-up/down is select up/down, but mod should be // used instead, because the mac expects it to be option(alt) @@ -94,7 +95,7 @@ public class PdeTextAreaDefaults extends TextAreaDefaults { inputHandler.addKeyBinding("CS+END", InputHandler.SELECT_DOC_END); } - if (Base.isMacOS()) { + if (OSUtils.isMacOS()) { inputHandler.addKeyBinding("M+LEFT", InputHandler.HOME); inputHandler.addKeyBinding("M+RIGHT", InputHandler.END); inputHandler.addKeyBinding("MS+LEFT", InputHandler.SELECT_HOME); // 0122 From be96ae3a6a3c3ffb0667eae0d8fc444c3c20f64f Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Wed, 24 Sep 2014 11:36:02 +0200 Subject: [PATCH 021/148] Removed no more used 'core' project --- app/build.xml | 5 - build/build.xml | 3 - build/macosx/template.app/Contents/Info.plist | 2 +- build/windows/launcher/config.xml | 1 - build/windows/launcher/config_debug.xml | 1 - core/.classpath | 6 - core/.project | 17 - core/.settings/org.eclipse.jdt.core.prefs | 271 - core/.settings/org.eclipse.jdt.ui.prefs | 5 - core/api.txt | 413 - core/build.xml | 26 - core/done.txt | 3009 ----- core/license.txt | 456 - core/make.sh | 7 - core/methods/.classpath | 7 - core/methods/.project | 17 - core/methods/build.xml | 28 - core/methods/demo/PApplet.java | 9483 -------------- core/methods/demo/PGraphics.java | 5075 -------- core/methods/demo/PImage.java | 2862 ----- core/methods/methods.jar | Bin 3725 -> 0 bytes core/methods/src/PAppletMethods.java | 272 - core/preproc.pl | 186 - core/preproc/.classpath | 7 - core/preproc/.project | 17 - core/preproc/build.xml | 22 - core/preproc/demo/PApplet.java | 8155 ------------- core/preproc/demo/PGraphics.java | 5043 -------- core/preproc/demo/PImage.java | 2713 ---- core/preproc/preproc.jar | Bin 3943 -> 0 bytes .../src/processing/build/PAppletMethods.java | 236 - core/src/processing/core/PApplet.java | 10184 ---------------- core/src/processing/core/PConstants.java | 504 - core/src/processing/core/PFont.java | 877 -- core/src/processing/core/PGraphics.java | 5707 --------- core/src/processing/core/PGraphics2D.java | 2144 ---- core/src/processing/core/PGraphics3D.java | 4379 ------- core/src/processing/core/PGraphicsJava2D.java | 1847 --- core/src/processing/core/PImage.java | 2862 ----- core/src/processing/core/PLine.java | 1278 -- core/src/processing/core/PMatrix.java | 150 - core/src/processing/core/PMatrix2D.java | 450 - core/src/processing/core/PMatrix3D.java | 782 -- core/src/processing/core/PPolygon.java | 701 -- core/src/processing/core/PShape.java | 955 -- core/src/processing/core/PShapeSVG.java | 1473 --- core/src/processing/core/PSmoothTriangle.java | 968 -- core/src/processing/core/PStyle.java | 61 - core/src/processing/core/PTriangle.java | 3850 ------ core/src/processing/core/PVector.java | 565 - core/src/processing/xml/CDATAReader.java | 193 - core/src/processing/xml/ContentReader.java | 212 - core/src/processing/xml/PIReader.java | 157 - core/src/processing/xml/StdXMLBuilder.java | 356 - core/src/processing/xml/StdXMLParser.java | 684 -- core/src/processing/xml/StdXMLReader.java | 626 - core/src/processing/xml/XMLAttribute.java | 153 - core/src/processing/xml/XMLElement.java | 1418 --- .../src/processing/xml/XMLEntityResolver.java | 173 - core/src/processing/xml/XMLException.java | 286 - .../src/processing/xml/XMLParseException.java | 69 - core/src/processing/xml/XMLUtil.java | 758 -- .../xml/XMLValidationException.java | 190 - core/src/processing/xml/XMLValidator.java | 631 - core/src/processing/xml/XMLWriter.java | 307 - core/todo.txt | 782 -- 66 files changed, 1 insertion(+), 85076 deletions(-) delete mode 100644 core/.classpath delete mode 100644 core/.project delete mode 100644 core/.settings/org.eclipse.jdt.core.prefs delete mode 100644 core/.settings/org.eclipse.jdt.ui.prefs delete mode 100644 core/api.txt delete mode 100644 core/build.xml delete mode 100644 core/done.txt delete mode 100644 core/license.txt delete mode 100755 core/make.sh delete mode 100644 core/methods/.classpath delete mode 100644 core/methods/.project delete mode 100644 core/methods/build.xml delete mode 100644 core/methods/demo/PApplet.java delete mode 100644 core/methods/demo/PGraphics.java delete mode 100644 core/methods/demo/PImage.java delete mode 100644 core/methods/methods.jar delete mode 100644 core/methods/src/PAppletMethods.java delete mode 100755 core/preproc.pl delete mode 100644 core/preproc/.classpath delete mode 100644 core/preproc/.project delete mode 100644 core/preproc/build.xml delete mode 100644 core/preproc/demo/PApplet.java delete mode 100644 core/preproc/demo/PGraphics.java delete mode 100644 core/preproc/demo/PImage.java delete mode 100644 core/preproc/preproc.jar delete mode 100644 core/preproc/src/processing/build/PAppletMethods.java delete mode 100644 core/src/processing/core/PApplet.java delete mode 100644 core/src/processing/core/PConstants.java delete mode 100644 core/src/processing/core/PFont.java delete mode 100644 core/src/processing/core/PGraphics.java delete mode 100644 core/src/processing/core/PGraphics2D.java delete mode 100644 core/src/processing/core/PGraphics3D.java delete mode 100644 core/src/processing/core/PGraphicsJava2D.java delete mode 100644 core/src/processing/core/PImage.java delete mode 100644 core/src/processing/core/PLine.java delete mode 100644 core/src/processing/core/PMatrix.java delete mode 100644 core/src/processing/core/PMatrix2D.java delete mode 100644 core/src/processing/core/PMatrix3D.java delete mode 100644 core/src/processing/core/PPolygon.java delete mode 100644 core/src/processing/core/PShape.java delete mode 100644 core/src/processing/core/PShapeSVG.java delete mode 100644 core/src/processing/core/PSmoothTriangle.java delete mode 100644 core/src/processing/core/PStyle.java delete mode 100644 core/src/processing/core/PTriangle.java delete mode 100644 core/src/processing/core/PVector.java delete mode 100644 core/src/processing/xml/CDATAReader.java delete mode 100644 core/src/processing/xml/ContentReader.java delete mode 100644 core/src/processing/xml/PIReader.java delete mode 100644 core/src/processing/xml/StdXMLBuilder.java delete mode 100644 core/src/processing/xml/StdXMLParser.java delete mode 100644 core/src/processing/xml/StdXMLReader.java delete mode 100644 core/src/processing/xml/XMLAttribute.java delete mode 100644 core/src/processing/xml/XMLElement.java delete mode 100644 core/src/processing/xml/XMLEntityResolver.java delete mode 100644 core/src/processing/xml/XMLException.java delete mode 100644 core/src/processing/xml/XMLParseException.java delete mode 100644 core/src/processing/xml/XMLUtil.java delete mode 100644 core/src/processing/xml/XMLValidationException.java delete mode 100644 core/src/processing/xml/XMLValidator.java delete mode 100644 core/src/processing/xml/XMLWriter.java delete mode 100644 core/todo.txt diff --git a/app/build.xml b/app/build.xml index 5b41f0263..0fbcfeea2 100644 --- a/app/build.xml +++ b/app/build.xml @@ -24,11 +24,6 @@ - - - - - - @@ -84,12 +83,10 @@ - - diff --git a/build/macosx/template.app/Contents/Info.plist b/build/macosx/template.app/Contents/Info.plist index 73267a3b8..fe985281f 100755 --- a/build/macosx/template.app/Contents/Info.plist +++ b/build/macosx/template.app/Contents/Info.plist @@ -94,7 +94,7 @@ - $JAVAROOT/pde.jar:$JAVAROOT/core.jar:$JAVAROOT/antlr.jar:$JAVAROOT/apple.jar:$JAVAROOT/ecj.jar:$JAVAROOT/registry.jar:$JAVAROOT/quaqua.jar:$JAVAROOT/jssc-2.8.0.jar:$JAVAROOT/commons-codec-1.7.jar:$JAVAROOT/commons-exec-1.1.jar:$JAVAROOT/commons-httpclient-3.1.jar:$JAVAROOT/commons-logging-1.0.4.jar:$JAVAROOT/jmdns-3.4.1.jar:$JAVAROOT/jsch-0.1.50.jar:$JAVAROOT/jna.jar + $JAVAROOT/pde.jar:$JAVAROOT/antlr.jar:$JAVAROOT/apple.jar:$JAVAROOT/ecj.jar:$JAVAROOT/registry.jar:$JAVAROOT/quaqua.jar:$JAVAROOT/jssc-2.8.0.jar:$JAVAROOT/commons-codec-1.7.jar:$JAVAROOT/commons-exec-1.1.jar:$JAVAROOT/commons-httpclient-3.1.jar:$JAVAROOT/commons-logging-1.0.4.jar:$JAVAROOT/jmdns-3.4.1.jar:$JAVAROOT/jsch-0.1.50.jar:$JAVAROOT/jna.jar JVMArchs diff --git a/build/windows/launcher/config.xml b/build/windows/launcher/config.xml index bb19308dd..dbce4974b 100644 --- a/build/windows/launcher/config.xml +++ b/build/windows/launcher/config.xml @@ -16,7 +16,6 @@ processing.app.Base lib/pde.jar - lib/core.jar lib/jna.jar lib/ecj.jar lib/jssc-2.8.0.jar diff --git a/build/windows/launcher/config_debug.xml b/build/windows/launcher/config_debug.xml index d2366827d..2d1daea26 100644 --- a/build/windows/launcher/config_debug.xml +++ b/build/windows/launcher/config_debug.xml @@ -16,7 +16,6 @@ processing.app.Base lib/pde.jar - lib/core.jar lib/jna.jar lib/ecj.jar lib/jssc-2.8.0.jar diff --git a/core/.classpath b/core/.classpath deleted file mode 100644 index fb5011632..000000000 --- a/core/.classpath +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/core/.project b/core/.project deleted file mode 100644 index e791e6fcd..000000000 --- a/core/.project +++ /dev/null @@ -1,17 +0,0 @@ - - - processing-core - - - - - - org.eclipse.jdt.core.javabuilder - - - - - - org.eclipse.jdt.core.javanature - - diff --git a/core/.settings/org.eclipse.jdt.core.prefs b/core/.settings/org.eclipse.jdt.core.prefs deleted file mode 100644 index d01f908ca..000000000 --- a/core/.settings/org.eclipse.jdt.core.prefs +++ /dev/null @@ -1,271 +0,0 @@ -#Sat Dec 31 13:42:35 CET 2011 -eclipse.preferences.version=1 -org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled -org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 -org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve -org.eclipse.jdt.core.compiler.compliance=1.5 -org.eclipse.jdt.core.compiler.debug.lineNumber=generate -org.eclipse.jdt.core.compiler.debug.localVariable=generate -org.eclipse.jdt.core.compiler.debug.sourceFile=generate -org.eclipse.jdt.core.compiler.problem.assertIdentifier=error -org.eclipse.jdt.core.compiler.problem.enumIdentifier=error -org.eclipse.jdt.core.compiler.source=1.5 -org.eclipse.jdt.core.formatter.align_type_members_on_columns=false -org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16 -org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant=16 -org.eclipse.jdt.core.formatter.alignment_for_arguments_in_explicit_constructor_call=18 -org.eclipse.jdt.core.formatter.alignment_for_arguments_in_method_invocation=18 -org.eclipse.jdt.core.formatter.alignment_for_arguments_in_qualified_allocation_expression=16 -org.eclipse.jdt.core.formatter.alignment_for_assignment=0 -org.eclipse.jdt.core.formatter.alignment_for_binary_expression=16 -org.eclipse.jdt.core.formatter.alignment_for_compact_if=16 -org.eclipse.jdt.core.formatter.alignment_for_conditional_expression=80 -org.eclipse.jdt.core.formatter.alignment_for_enum_constants=16 -org.eclipse.jdt.core.formatter.alignment_for_expressions_in_array_initializer=16 -org.eclipse.jdt.core.formatter.alignment_for_multiple_fields=16 -org.eclipse.jdt.core.formatter.alignment_for_parameters_in_constructor_declaration=18 -org.eclipse.jdt.core.formatter.alignment_for_parameters_in_method_declaration=18 -org.eclipse.jdt.core.formatter.alignment_for_selector_in_method_invocation=16 -org.eclipse.jdt.core.formatter.alignment_for_superclass_in_type_declaration=16 -org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_enum_declaration=16 -org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_type_declaration=16 -org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_constructor_declaration=16 -org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_method_declaration=16 -org.eclipse.jdt.core.formatter.blank_lines_after_imports=1 -org.eclipse.jdt.core.formatter.blank_lines_after_package=1 -org.eclipse.jdt.core.formatter.blank_lines_before_field=0 -org.eclipse.jdt.core.formatter.blank_lines_before_first_class_body_declaration=0 -org.eclipse.jdt.core.formatter.blank_lines_before_imports=1 -org.eclipse.jdt.core.formatter.blank_lines_before_member_type=1 -org.eclipse.jdt.core.formatter.blank_lines_before_method=1 -org.eclipse.jdt.core.formatter.blank_lines_before_new_chunk=1 -org.eclipse.jdt.core.formatter.blank_lines_before_package=0 -org.eclipse.jdt.core.formatter.blank_lines_between_import_groups=1 -org.eclipse.jdt.core.formatter.blank_lines_between_type_declarations=1 -org.eclipse.jdt.core.formatter.brace_position_for_annotation_type_declaration=end_of_line -org.eclipse.jdt.core.formatter.brace_position_for_anonymous_type_declaration=end_of_line -org.eclipse.jdt.core.formatter.brace_position_for_array_initializer=end_of_line -org.eclipse.jdt.core.formatter.brace_position_for_block=end_of_line -org.eclipse.jdt.core.formatter.brace_position_for_block_in_case=end_of_line -org.eclipse.jdt.core.formatter.brace_position_for_constructor_declaration=end_of_line -org.eclipse.jdt.core.formatter.brace_position_for_enum_constant=end_of_line -org.eclipse.jdt.core.formatter.brace_position_for_enum_declaration=end_of_line -org.eclipse.jdt.core.formatter.brace_position_for_method_declaration=end_of_line -org.eclipse.jdt.core.formatter.brace_position_for_switch=end_of_line -org.eclipse.jdt.core.formatter.brace_position_for_type_declaration=end_of_line -org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_block_comment=false -org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_javadoc_comment=false -org.eclipse.jdt.core.formatter.comment.format_block_comments=true -org.eclipse.jdt.core.formatter.comment.format_header=false -org.eclipse.jdt.core.formatter.comment.format_html=true -org.eclipse.jdt.core.formatter.comment.format_javadoc_comments=true -org.eclipse.jdt.core.formatter.comment.format_line_comments=true -org.eclipse.jdt.core.formatter.comment.format_source_code=true -org.eclipse.jdt.core.formatter.comment.indent_parameter_description=true -org.eclipse.jdt.core.formatter.comment.indent_root_tags=true -org.eclipse.jdt.core.formatter.comment.insert_new_line_before_root_tags=insert -org.eclipse.jdt.core.formatter.comment.insert_new_line_for_parameter=insert -org.eclipse.jdt.core.formatter.comment.line_length=80 -org.eclipse.jdt.core.formatter.compact_else_if=true -org.eclipse.jdt.core.formatter.continuation_indentation=2 -org.eclipse.jdt.core.formatter.continuation_indentation_for_array_initializer=2 -org.eclipse.jdt.core.formatter.format_guardian_clause_on_one_line=false -org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_annotation_declaration_header=true -org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_constant_header=true -org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_declaration_header=true -org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_type_header=true -org.eclipse.jdt.core.formatter.indent_breaks_compare_to_cases=true -org.eclipse.jdt.core.formatter.indent_empty_lines=false -org.eclipse.jdt.core.formatter.indent_statements_compare_to_block=true -org.eclipse.jdt.core.formatter.indent_statements_compare_to_body=true -org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_cases=true -org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_switch=false -org.eclipse.jdt.core.formatter.indentation.size=4 -org.eclipse.jdt.core.formatter.insert_new_line_after_annotation=insert -org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_local_variable=insert -org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_member=insert -org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_parameter=do not insert -org.eclipse.jdt.core.formatter.insert_new_line_after_opening_brace_in_array_initializer=do not insert -org.eclipse.jdt.core.formatter.insert_new_line_at_end_of_file_if_missing=do not insert -org.eclipse.jdt.core.formatter.insert_new_line_before_catch_in_try_statement=do not insert -org.eclipse.jdt.core.formatter.insert_new_line_before_closing_brace_in_array_initializer=do not insert -org.eclipse.jdt.core.formatter.insert_new_line_before_else_in_if_statement=do not insert -org.eclipse.jdt.core.formatter.insert_new_line_before_finally_in_try_statement=do not insert -org.eclipse.jdt.core.formatter.insert_new_line_before_while_in_do_statement=do not insert -org.eclipse.jdt.core.formatter.insert_new_line_in_empty_annotation_declaration=insert -org.eclipse.jdt.core.formatter.insert_new_line_in_empty_anonymous_type_declaration=insert -org.eclipse.jdt.core.formatter.insert_new_line_in_empty_block=insert -org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_constant=insert -org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_declaration=insert -org.eclipse.jdt.core.formatter.insert_new_line_in_empty_method_body=insert -org.eclipse.jdt.core.formatter.insert_new_line_in_empty_type_declaration=insert -org.eclipse.jdt.core.formatter.insert_space_after_and_in_type_parameter=insert -org.eclipse.jdt.core.formatter.insert_space_after_assignment_operator=insert -org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation_type_declaration=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_binary_operator=insert -org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_arguments=insert -org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_parameters=insert -org.eclipse.jdt.core.formatter.insert_space_after_closing_brace_in_block=insert -org.eclipse.jdt.core.formatter.insert_space_after_closing_paren_in_cast=insert -org.eclipse.jdt.core.formatter.insert_space_after_colon_in_assert=insert -org.eclipse.jdt.core.formatter.insert_space_after_colon_in_case=insert -org.eclipse.jdt.core.formatter.insert_space_after_colon_in_conditional=insert -org.eclipse.jdt.core.formatter.insert_space_after_colon_in_for=insert -org.eclipse.jdt.core.formatter.insert_space_after_colon_in_labeled_statement=insert -org.eclipse.jdt.core.formatter.insert_space_after_comma_in_allocation_expression=insert -org.eclipse.jdt.core.formatter.insert_space_after_comma_in_annotation=insert -org.eclipse.jdt.core.formatter.insert_space_after_comma_in_array_initializer=insert -org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_parameters=insert -org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_throws=insert -org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_constant_arguments=insert -org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_declarations=insert -org.eclipse.jdt.core.formatter.insert_space_after_comma_in_explicitconstructorcall_arguments=insert -org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_increments=insert -org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_inits=insert -org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_parameters=insert -org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_throws=insert -org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_invocation_arguments=insert -org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_field_declarations=insert -org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_local_declarations=insert -org.eclipse.jdt.core.formatter.insert_space_after_comma_in_parameterized_type_reference=insert -org.eclipse.jdt.core.formatter.insert_space_after_comma_in_superinterfaces=insert -org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_arguments=insert -org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_parameters=insert -org.eclipse.jdt.core.formatter.insert_space_after_ellipsis=insert -org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_parameterized_type_reference=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_arguments=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_parameters=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_opening_brace_in_array_initializer=insert -org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_allocation_expression=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_reference=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_annotation=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_cast=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_catch=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_constructor_declaration=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_enum_constant=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_for=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_if=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_declaration=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_invocation=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_parenthesized_expression=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_switch=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_synchronized=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_while=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_postfix_operator=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_prefix_operator=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_question_in_conditional=insert -org.eclipse.jdt.core.formatter.insert_space_after_question_in_wildcard=do not insert -org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_for=insert -org.eclipse.jdt.core.formatter.insert_space_after_unary_operator=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_and_in_type_parameter=insert -org.eclipse.jdt.core.formatter.insert_space_before_assignment_operator=insert -org.eclipse.jdt.core.formatter.insert_space_before_at_in_annotation_type_declaration=insert -org.eclipse.jdt.core.formatter.insert_space_before_binary_operator=insert -org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_parameterized_type_reference=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_arguments=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_parameters=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_closing_brace_in_array_initializer=insert -org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_allocation_expression=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_reference=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_annotation=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_cast=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_catch=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_constructor_declaration=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_enum_constant=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_for=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_if=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_declaration=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_invocation=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_parenthesized_expression=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_switch=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_synchronized=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_while=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_colon_in_assert=insert -org.eclipse.jdt.core.formatter.insert_space_before_colon_in_case=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_colon_in_conditional=insert -org.eclipse.jdt.core.formatter.insert_space_before_colon_in_default=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_colon_in_for=insert -org.eclipse.jdt.core.formatter.insert_space_before_colon_in_labeled_statement=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_comma_in_allocation_expression=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_comma_in_annotation=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_comma_in_array_initializer=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_parameters=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_throws=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_constant_arguments=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_declarations=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_comma_in_explicitconstructorcall_arguments=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_increments=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_inits=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_parameters=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_throws=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_invocation_arguments=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_field_declarations=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_local_declarations=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_comma_in_parameterized_type_reference=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_comma_in_superinterfaces=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_arguments=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_parameters=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_ellipsis=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_parameterized_type_reference=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_arguments=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_parameters=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_annotation_type_declaration=insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_anonymous_type_declaration=insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_array_initializer=insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_block=insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_constructor_declaration=insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_constant=insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_declaration=insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_method_declaration=insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_switch=insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_type_declaration=insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_allocation_expression=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_reference=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_type_reference=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation_type_member_declaration=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_catch=insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_constructor_declaration=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_enum_constant=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_for=insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_if=insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_declaration=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_invocation=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_parenthesized_expression=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_switch=insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_synchronized=insert -org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_while=insert -org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_return=insert -org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_throw=insert -org.eclipse.jdt.core.formatter.insert_space_before_postfix_operator=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_prefix_operator=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_question_in_conditional=insert -org.eclipse.jdt.core.formatter.insert_space_before_question_in_wildcard=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_semicolon=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_for=do not insert -org.eclipse.jdt.core.formatter.insert_space_before_unary_operator=do not insert -org.eclipse.jdt.core.formatter.insert_space_between_brackets_in_array_type_reference=do not insert -org.eclipse.jdt.core.formatter.insert_space_between_empty_braces_in_array_initializer=do not insert -org.eclipse.jdt.core.formatter.insert_space_between_empty_brackets_in_array_allocation_expression=do not insert -org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_annotation_type_member_declaration=do not insert -org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_constructor_declaration=do not insert -org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_enum_constant=do not insert -org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_declaration=do not insert -org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_invocation=do not insert -org.eclipse.jdt.core.formatter.join_lines_in_comments=true -org.eclipse.jdt.core.formatter.join_wrapped_lines=true -org.eclipse.jdt.core.formatter.keep_else_statement_on_same_line=false -org.eclipse.jdt.core.formatter.keep_empty_array_initializer_on_one_line=false -org.eclipse.jdt.core.formatter.keep_imple_if_on_one_line=false -org.eclipse.jdt.core.formatter.keep_then_statement_on_same_line=false -org.eclipse.jdt.core.formatter.lineSplit=80 -org.eclipse.jdt.core.formatter.never_indent_block_comments_on_first_column=false -org.eclipse.jdt.core.formatter.never_indent_line_comments_on_first_column=false -org.eclipse.jdt.core.formatter.number_of_blank_lines_at_beginning_of_method_body=0 -org.eclipse.jdt.core.formatter.number_of_empty_lines_to_preserve=1 -org.eclipse.jdt.core.formatter.put_empty_statement_on_new_line=true -org.eclipse.jdt.core.formatter.tabulation.char=space -org.eclipse.jdt.core.formatter.tabulation.size=2 -org.eclipse.jdt.core.formatter.use_tabs_only_for_leading_indentations=false -org.eclipse.jdt.core.formatter.wrap_before_binary_operator=false diff --git a/core/.settings/org.eclipse.jdt.ui.prefs b/core/.settings/org.eclipse.jdt.ui.prefs deleted file mode 100644 index 7834a86e6..000000000 --- a/core/.settings/org.eclipse.jdt.ui.prefs +++ /dev/null @@ -1,5 +0,0 @@ -#Fri Dec 30 18:14:57 CET 2011 -eclipse.preferences.version=1 -formatter_profile=_Arduino -formatter_settings_version=11 -org.eclipse.jdt.ui.text.custom_code_templates= diff --git a/core/api.txt b/core/api.txt deleted file mode 100644 index 4b2746f8b..000000000 --- a/core/api.txt +++ /dev/null @@ -1,413 +0,0 @@ - - public void setParent(PApplet parent) - public void setPrimary(boolean primary) - public void setPath(String path) - public void setSize(int iwidth, int iheight) - protected void allocate() - public void dispose() - - public boolean canDraw() - public void beginDraw() - public void endDraw() - - protected void checkSettings() - protected void defaultSettings() - protected void reapplySettings() - - public void hint(int which) - - public void beginShape() - public void beginShape(int kind) - public void edge(boolean e) - public void normal(float nx, float ny, float nz) - public void textureMode(int mode) - public void texture(PImage image) - public void vertex(float x, float y) - public void vertex(float x, float y, float z) - public void vertex(float x, float y, float u, float v) - public void vertex(float x, float y, float z, float u, float v) - protected void vertexTexture(float u, float v); - public void breakShape() - public void endShape() - public void endShape(int mode) - - protected void bezierVertexCheck(); - public void bezierVertex(float x2, float y2, - float x3, float y3, - float x4, float y4) - public void bezierVertex(float x2, float y2, float z2, - float x3, float y3, float z3, - float x4, float y4, float z4) - - protected void curveVertexCheck(); - public void curveVertex(float x, float y) - public void curveVertex(float x, float y, float z) - protected void curveVertexSegment(float x1, float y1, - float x2, float y2, - float x3, float y3, - float x4, float y4) - protected void curveVertexSegment(float x1, float y1, float z1, - float x2, float y2, float z2, - float x3, float y3, float z3, - float x4, float y4, float z4) - - protected void renderPoints(int start, int stop) // P3D - protected void rawPoints(int start, int stop) // P3D - - protected void renderLines(int start, int stop) // P3D - protected void rawLines(int start, int stop) // P3D - - protected void renderTriangles(int start, int stop) // P3D - protected void rawTriangles(int start, int stop) // P3D - - public void flush() - protected void render() - proected void sort() - - public void point(float x, float y) - public void point(float x, float y, float z) - public void line(float x1, float y1, float x2, float y2) - public void line(float x1, float y1, float z1, - float x2, float y2, float z2) - public void triangle(float x1, float y1, - float x2, float y2, - float x3, float y3) - public void quad(float x1, float y1, float x2, float y2, - float x3, float y3, float x4, float y4) - - public void rectMode(int mode) - public void rect(float a, float b, float c, float d) - protected void rectImpl(float x1, float y1, float x2, float y2) - - public void ellipseMode(int mode) - public void ellipse(float a, float b, float c, float d) - protected void ellipseImpl(float x, float y, float w, float h) - - public void arc(float a, float b, float c, float d, - float start, float stop) - protected void arcImpl(float x, float y, float w, float h, - float start, float stop) - - public void box(float size) - public void box(float w, float h, float d) - - public void sphereDetail(int res) - public void sphereDetail(int ures, int vres) - public void sphere(float r) - - public float bezierPoint(float a, float b, float c, float d, float t) - public float bezierTangent(float a, float b, float c, float d, float t) - protected void bezierInitCheck() - protected void bezierInit() - public void bezierDetail(int detail) - public void bezier(float x1, float y1, - float x2, float y2, - float x3, float y3, - float x4, float y4) - public void bezier(float x1, float y1, float z1, - float x2, float y2, float z2, - float x3, float y3, float z3, - float x4, float y4, float z4) - - public float curvePoint(float a, float b, float c, float d, float t) - public float curveTangent(float a, float b, float c, float d, float t) - public void curveDetail(int detail) - public void curveTightness(float tightness) - protected void curveInitCheck() - protected void curveInit() - public void curve(float x1, float y1, - float x2, float y2, - float x3, float y3, - float x4, float y4) - public void curve(float x1, float y1, float z1, - float x2, float y2, float z2, - float x3, float y3, float z3, - float x4, float y4, float z4) - - protected void splineForward(int segments, PMatrix3D matrix) - - public void smooth() - public void noSmooth() - - public void imageMode(int mode) - public void image(PImage image, float x, float y) - public void image(PImage image, float x, float y, float c, float d) - public void image(PImage image, - float a, float b, float c, float d, - int u1, int v1, int u2, int v2) - protected void imageImpl(PImage image, - float x1, float y1, float x2, float y2, - int u1, int v1, int u2, int v2) - - public void shapeMode(int mode) - public void shape(PShape shape) - public void shape(PShape shape, float x, float y) - public void shape(PShape shape, float x, float y, float c, float d) - - public void textAlign(int align) - public void textAlign(int alignX, int alignY) - public float textAscent() - public float textDescent() - public void textFont(PFont which) - public void textFont(PFont which, float size) - public void textLeading(float leading) - public void textMode(int mode) - protected boolean textModeCheck(int mode) - public void textSize(float size) - public float textWidth(char c) - public float textWidth(String str) - protected float textWidthImpl(char buffer[], int start, int stop) - - public void text(char c) - public void text(char c, float x, float y) - public void text(char c, float x, float y, float z) - public void text(String str) - public void text(String str, float x, float y) - public void text(String str, float x, float y, float z) - public void text(String str, float x1, float y1, float x2, float y2) - public void text(String s, float x1, float y1, float x2, float y2, float z) - public void text(int num, float x, float y) - public void text(int num, float x, float y, float z) - public void text(float num, float x, float y) - public void text(float num, float x, float y, float z) - - protected void textLineAlignImpl(char buffer[], int start, int stop, - float x, float y) - protected void textLineImpl(char buffer[], int start, int stop, - float x, float y) - protected void textCharImpl(char ch, float x, float y) - protected void textCharModelImpl(PImage glyph, - float x1, float y1, //float z1, - float x2, float y2, //float z2, - int u2, int v2) - protected void textCharScreenImpl(PImage glyph, - int xx, int yy, - int w0, int h0) - - public void pushMatrix() - public void popMatrix() - - public void translate(float tx, float ty) - public void translate(float tx, float ty, float tz) - public void rotate(float angle) - public void rotateX(float angle) - public void rotateY(float angle) - public void rotateZ(float angle) - public void rotate(float angle, float vx, float vy, float vz) - public void scale(float s) - public void scale(float sx, float sy) - public void scale(float x, float y, float z) - - public void resetMatrix() - public void applyMatrix(PMatrix2D source) - public void applyMatrix(float n00, float n01, float n02, - float n10, float n11, float n12) - public void applyMatrix(PMatrix3D source) - public void applyMatrix(float n00, float n01, float n02, float n03, - float n10, float n11, float n12, float n13, - float n20, float n21, float n22, float n23, - float n30, float n31, float n32, float n33) - - public getMatrix(PMatrix2D target) - public getMatrix(PMatrix3D target) - public void setMatrix(PMatrix2D source) - public void setMatrix(PMatrix3D source) - public void printMatrix() - - public void beginCamera() - public void endCamera() - public void camera() - public void camera(float eyeX, float eyeY, float eyeZ, - float centerX, float centerY, float centerZ, - float upX, float upY, float upZ) - public void printCamera() - - public void ortho() - public void ortho(float left, float right, - float bottom, float top, - float near, float far) - public void perspective() - public void perspective(float fov, float aspect, float near, float far) - public void frustum(float left, float right, - float bottom, float top, - float near, float far) - public void printProjection() - - public float screenX(float x, float y) - public float screenY(float x, float y) - public float screenX(float x, float y, float z) - public float screenY(float x, float y, float z) - public float screenZ(float x, float y, float z) - public float modelX(float x, float y, float z) - public float modelY(float x, float y, float z) - public float modelZ(float x, float y, float z) - - public void pushStyle() - public void popStyle() - public void style(PStyle) - public PStyle getStyle() - public void getStyle(PStyle) - - public void strokeCap(int cap) - public void strokeJoin(int join) - public void strokeWeight(float weight) - - public void noStroke() - public void stroke(int rgb) - public void stroke(int rgb, float alpha) - public void stroke(float gray) - public void stroke(float gray, float alpha) - public void stroke(float x, float y, float z) - public void stroke(float x, float y, float z, float a) - protected void strokeFromCalc() - - public void noTint() - public void tint(int rgb) - public void tint(int rgb, float alpha) - public void tint(float gray) - public void tint(float gray, float alpha) - public void tint(float x, float y, float z) - public void tint(float x, float y, float z, float a) - protected void tintFromCalc() - - public void noFill() - public void fill(int rgb) - public void fill(int rgb, float alpha) - public void fill(float gray) - public void fill(float gray, float alpha) - public void fill(float x, float y, float z) - public void fill(float x, float y, float z, float a) - protected void fillFromCalc() - - public void ambient(int rgb) - public void ambient(float gray) - public void ambient(float x, float y, float z) - protected void ambientFromCalc() - public void specular(int rgb) - public void specular(float gray) - public void specular(float x, float y, float z) - protected void specularFromCalc() - public void shininess(float shine) - public void emissive(int rgb) - public void emissive(float gray) - public void emissive(float x, float y, float z ) - protected void emissiveFromCalc() - - public void lights() - public void noLights() - public void ambientLight(float red, float green, float blue) - public void ambientLight(float red, float green, float blue, - float x, float y, float z) - public void directionalLight(float red, float green, float blue, - float nx, float ny, float nz) - public void pointLight(float red, float green, float blue, - float x, float y, float z) - public void spotLight(float red, float green, float blue, - float x, float y, float z, - float nx, float ny, float nz, - float angle, float concentration) - public void lightFalloff(float constant, float linear, float quadratic) - public void lightSpecular(float x, float y, float z) - protected void lightPosition(int num, float x, float y, float z) - protected void lightDirection(int num, float x, float y, float z) - - public void background(int rgb) - public void background(int rgb, float alpha) - public void background(float gray) - public void background(float gray, float alpha) - public void background(float x, float y, float z) - public void background(float x, float y, float z, float a) - public void background(PImage image) - protected void backgroundFromCalc() - protected void backgroundImpl(PImage image) - protected void backgroundImpl() - - public void colorMode(int mode) - public void colorMode(int mode, float max) - public void colorMode(int mode, float maxX, float maxY, float maxZ) - public void colorMode(int mode, float maxX, float maxY, float maxZ, float maxA) - - protected void colorCalc(int rgb) - protected void colorCalc(int rgb, float alpha) - protected void colorCalc(float gray) - protected void colorCalc(float gray, float alpha) - protected void colorCalc(float x, float y, float z) - protected void colorCalc(float x, float y, float z, float a) - protected void colorCalcARGB(int argb, float alpha) - - public final int color(int gray) - public final int color(int gray, int alpha) - public final int color(int rgb, float alpha) - public final int color(int x, int y, int z) - - public final float alpha(int what) - public final float red(int what) - public final float green(int what) - public final float blue(int what) - public final float hue(int what) - public final float saturation(int what) - public final float brightness(int what) - - public int lerpColor(int c1, int c2, float amt) - static public int lerpColor(int c1, int c2, float amt, int mode) - - public void beginRaw(PGraphics rawGraphics) - public void endRaw() - - static public void showWarning(String msg) - static public void showException(String msg) - - public boolean displayable() - public boolean is2D() - public boolean is3D() - -// - -These are the methods found in PImage, which are inherited by PGraphics. - - public PImage(Image) - public Image getImage() - - public void setCache(Object parent, Object storage) - public void getCache(Object parent) - public void removeCache(Object parent) - - public boolean isModified(); - public void setModified(); - public void setModified(boolean state); - - public void loadPixels() - public void updatePixels() - public void updatePixels(int x, int y, int w, int h) - - public void resize(int wide, int high) - - public int get(int x, int y) - public PImage get(int x, int y, int w, int h) - protected PImage getImpl(int x, int y, int w, int h) - public PImage get() - public void set(int x, int y, int c) - public void set(int x, int y, PImage src) - protected void setImpl(int dx, int dy, int sx, int sy, int sw, int sh, - PImage src) - - public void mask(int alpha[]) - public void mask(PImage alpha) - - public void filter(int kind) - public void filter(int kind, float param) - - public void copy(int sx, int sy, int sw, int sh, - int dx, int dy, int dw, int dh) - public void copy(PImage src, - int sx, int sy, int sw, int sh, - int dx, int dy, int dw, int dh) - - static public int blendColor(int c1, int c2, int mode) - public void blend(int sx, int sy, int sw, int sh, - int dx, int dy, int dw, int dh, int mode) - public void blend(PImage src, - int sx, int sy, int sw, int sh, - int dx, int dy, int dw, int dh, int mode) - - public void save(String path) diff --git a/core/build.xml b/core/build.xml deleted file mode 100644 index 1798a55c1..000000000 --- a/core/build.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/core/done.txt b/core/done.txt deleted file mode 100644 index e09233a15..000000000 --- a/core/done.txt +++ /dev/null @@ -1,3009 +0,0 @@ -0178 core (private) -X filter(DILATE/ERODE) -X dilate(boolean) has bug in clamping of top kernel coordinate -X http://dev.processing.org/bugs/show_bug.cgi?id=1477 -X deprecated 'screen', adding screenW and screenH -X write implementation for get/set methods inside PImage (w/o pixels[]) - - -0177 core (private) -X no changes - - -0176 core (private) -X opengl sketches run at 30fps in present mode on OS X -o still having problems w/ full screen non-FSEM -X http://dev.processing.org/bugs/show_bug.cgi?id=1425 -X PFont not working well with lots of characters -X only create bitmap chars on the fly when needed (in createFont) -X Implement better caching mechanism when creating large fonts -X http://dev.processing.org/bugs/show_bug.cgi?id=1111 -X fix problem with "create font" still showing anti-aliased text -X don't make fonts power of 2 -X PGraphics3D: beginDraw does not release old textures -X http://dev.processing.org/bugs/show_bug.cgi?id=1423 -X fix from taifun_browser -X removing camera() and perspective() from setSize() trashes resize -X probably regression b/c camera/perspective can't be called then -X http://dev.processing.org/bugs/show_bug.cgi?id=1391 - - -0175 core (private) -X changed createInputRaw() to only bother checking URLs if : present - - -0174 core (private) -X svg paths that use 'e' (exponent) not handled properly -X http://dev.processing.org/bugs/show_bug.cgi?id=1408 - - -0173 core (private) -X Re-enabled hack for temporary clipping. -X Clipping still needs to be implemented properly, however. Please help! -X http://dev.processing.org/bugs/show_bug.cgi?id=1393 - - -0172 core (private) -X no changes to the core (or were there?) - - -0171 core (1.0.9) -X Blurred PImages in OPENGL sketches -X removed NPOT texture support (for further testing) -X http://dev.processing.org/bugs/show_bug.cgi?id=1352 - - -0170 core (1.0.8) -X added some min/max functions that work with doubles -X not sure if those are staying in or not -X filter(RGB) supposed to be filter(OPAQUE) -X http://dev.processing.org/bugs/show_bug.cgi?id=1346 -X implement non-power-of-2 textures -X fix get() when used with save() in OpenGL mode -X immediately update projection with OpenGL -X in the past, projection updates required a new frame -X also prevents camera/project from being reset with setSize() (regression?) -X which was a problem anyway because it made GL calls outside draw() -X partial fix for texture edge problems with opengl -o http://dev.processing.org/bugs/show_bug.cgi?id=602 -X some camera problems may be coming from "cameraNear = -8" line -X this may cause other problems with drawing/clipping however -X opengl camera does not update on current frame (has to do a second frame) -X remove methods from PApplet that use doubles - - -0169 core (1.0.7) -X remove major try/catch block from PApplet.main() -X hopefully will allow some exception stuff to come through properly -X PVector.angleDistance() returns NaN -X http://dev.processing.org/bugs/show_bug.cgi?id=1316 - - -0168 core (1.0.6) -X getImage() setting the wrong image type -X http://dev.processing.org/bugs/show_bug.cgi?id=1282 -X strokeWeight() makes lines 2x too thick with P2D -X http://dev.processing.org/bugs/show_bug.cgi?id=1283 -X image() doesn't work with P2D, P3D, and OPENGL with noFill() -X http://dev.processing.org/bugs/show_bug.cgi?id=1299 -o maybe using rgb instead of tint inside drawing loops? -X http://dev.processing.org/bugs/show_bug.cgi?id=1222 - - -0167 core (1.0.5) -X changed text layout methods from private to protected - - -0166 core (1.0.4) -X disable point() going to set() from PGraphicsJava2D -X set() doesn't honor alpha consistently -X also causes problems with PDF -X preliminary thread() implementation -X double param version of map() -X PImage cacheMap problem when using PImage.get() -X http://dev.processing.org/bugs/show_bug.cgi?id=1245 -X problems with > 512 points and P3D/OPENGL (thx DopeShow) -X http://dev.processing.org/bugs/show_bug.cgi?id=1255 -X imageMode(CENTER) doesn't work properly with P2D -X http://dev.processing.org/bugs/show_bug.cgi?id=1232 -X reset matrices when using beginRecord() with PDF -X http://dev.processing.org/bugs/show_bug.cgi?id=1227 -X resizing window distorts gl graphics -X patch from Pablo Funes -X http://dev.processing.org/bugs/show_bug.cgi?id=1176 -X significant point() and set() slowdown on OS X -X http://dev.processing.org/bugs/show_bug.cgi?id=1094 - - -0165 core (1.0.3) -X update to itext 2.1.4 -X endRecord or endRaw produces RuntimeException with PDF library -X http://dev.processing.org/bugs/show_bug.cgi?id=1169 -X problem with beginRaw/endRaw and OpenGL -X http://dev.processing.org/bugs/show_bug.cgi?id=1171 -X set strokeWeight with begin/endRaw -X http://dev.processing.org/bugs/show_bug.cgi?id=1172 -X fix strokeWeight with P3D (better version of line hack) -X make P3D use proper weights -X ArrayIndexOutOfBoundsException with point() -X http://dev.processing.org/bugs/show_bug.cgi?id=1168 - - -0164 core (1.0.2) -X requestImage() causing problems with JAVA2D -X fix minor strokeWeight bug with OpenGL -X text() with char array -o add documentation -o add this for text in a rectangle? -X minor bug fix to svg files that weren't being resized properly -X OpenGL is rendering darker in 0149+ -X http://dev.processing.org/bugs/show_bug.cgi?id=958 -X the fix has been found, just incorporate it -X thanks to dave bollinger -X OutOfMemoryError with ellipse() in P3D and OPENGL -X http://dev.processing.org/bugs/show_bug.cgi?id=1086 -X should also fix problem with AIOOBE -X http://dev.processing.org/bugs/show_bug.cgi?id=1117 -X point(x,y) ignores noStroke() (in some renderers) -X http://dev.processing.org/bugs/show_bug.cgi?id=1090 -X fix startup problem when scheme coloring was odd -X http://dev.processing.org/bugs/show_bug.cgi?id=1109 -X fix several point() problems with P3D -X http://dev.processing.org/bugs/show_bug.cgi?id=1110 -X nextPage() not working properly with PDF as the renderer -X http://dev.processing.org/bugs/show_bug.cgi?id=1131 -X save styles when nextPage() is called -X beginRaw() broken (no DXF, etc working) -X http://dev.processing.org/bugs/show_bug.cgi?id=1099 -X http://dev.processing.org/bugs/show_bug.cgi?id=1144 -X Fix algorithm for quadratic to cubic curve conversion -X wrong algorithm in PGraphicsOpenGL and PShapeSVG -X (thanks to user 'shambles') -X http://dev.processing.org/bugs/show_bug.cgi?id=1122 -X tint() not working in P2D -X http://dev.processing.org/bugs/show_bug.cgi?id=1132 -X blend() y coordinates inverted when using OpenGL -X http://dev.processing.org/bugs/show_bug.cgi?id=1137 - -invalid/wontfix/dupe -X Processing will not start with non-standard disk partitioning on OS X -X http://dev.processing.org/bugs/show_bug.cgi?id=1127 -X Got NoClassDefFoundError exception when accessing quicktime API -X http://dev.processing.org/bugs/show_bug.cgi?id=1128 -X http://dev.processing.org/bugs/show_bug.cgi?id=1129 -X http://dev.processing.org/bugs/show_bug.cgi?id=1130 -X not using present mode correctly -X http://dev.processing.org/bugs/show_bug.cgi?id=1138 -X apparent graphics driver conflict on vista -X http://dev.processing.org/bugs/show_bug.cgi?id=1140 -X PImage.save() does not create parent directories -X http://dev.processing.org/bugs/show_bug.cgi?id=1124 -X sketch turning blue and not working on osx -X http://dev.processing.org/bugs/show_bug.cgi?id=1164 -X dupe: blend() inaccurary -X http://dev.processing.org/bugs/show_bug.cgi?id=1008 -X glPushAttrib style function -X http://dev.processing.org/bugs/show_bug.cgi?id=1150 -X calling saveFrame() in noLoop() (update reference) -X http://dev.processing.org/bugs/show_bug.cgi?id=1155 - -xml -X fix for xml elements that have null names -X added listChildren() method -X added optional toString(boolean) parameter to enable/disable indents - - -0163 core (1.0.1) -X do not parse split() with regexp -X http://dev.processing.org/bugs/show_bug.cgi?id=1060 -X ArrayIndexOutOfBoundsException in ellipseImpl() with 1.0 -X http://dev.processing.org/bugs/show_bug.cgi?id=1068 - - -0162 core (1.0) -X no additional changes for 1.0 - - -0161 core -X present on macosx causing strange flicker/jump while window opens -X using validate() for present mode, pack() otherwise -X http://dev.processing.org/bugs/show_bug.cgi?id=1051 - - -0160 core -X stroked lines drawing on top of everything else in P3D -X http://dev.processing.org/bugs/show_bug.cgi?id=1032 -X 100x100 sketches not working - - -0159 core -o disable present mode? (weirdness with placements on mac) -X deal with some present mode issues -X use FSE on mac within the PDE -X when exporting, never use FSE -_ document changes re: can specify --exclusive on command line -X do we need to do glEnable for multisample with gl? -o just need to test this on a few platforms -X doesn't seem to be the case -X Present mode and OPENGL not working in 0156 with Windows Vista -X http://dev.processing.org/bugs/show_bug.cgi?id=1009 -X Seems to be limited to Java 6u10 (but verify) -o -Dsun.java2d.d3d=false seems to fix the problem -o can probably add that to PApplet.main() -X does not work - - -0158 core -X beginShape(TRIANGLE_FAN), and therefore arc(), broken in P2D -X also a typo in the ColorWheel example -X http://dev.processing.org/bugs/show_bug.cgi?id=1019 -X P2D - null pointer exception drawing line with alpha stroke -X http://dev.processing.org/bugs/show_bug.cgi?id=1023 -X P2D endShape() is working like endShape(CLOSE) -X http://dev.processing.org/bugs/show_bug.cgi?id=1021 -X http://dev.processing.org/bugs/show_bug.cgi?id=1028 (mark as dupe) -X arc() center transparent -X http://dev.processing.org/bugs/show_bug.cgi?id=1027 -X mark as dupe of bug #200 -X but fixed for the P2D case, still afflicts P2D -X P2D - alpha stroke rendered at full opacity -X http://dev.processing.org/bugs/show_bug.cgi?id=1024 -X smooth() on single line ellipses not coming out smooth -X sort of works, just not great -X improve (slightly) the quality of ellipse() and arc() with P2D -X don't use TRIANGLE_FAN on ellipseImpl() and arcImpl() with P2D -X split out ellipseImpl and arcImpl from PGraphics into P2D and P3D -X figure out better model for adaptive sizing of circles -X also goes for arcs, though will be weighted based on arc size -X Bring back CENTER_RADIUS but deprecate it -X http://dev.processing.org/bugs/show_bug.cgi?id=1035 -X enable smoothing by default in opengl -X change hints to instead only be able to DISABLE 2X or 4X -X bring back .width and .height fields for PShape -o need to update the examples to reflect -X no examples to update -X change reference re: smoothing in opengl -X hint(), smooth(), and size() -X rev the version number - - -0157 core -X SVG polygon shapes not drawing since loadShape() and PShape changes -X http://dev.processing.org/bugs/show_bug.cgi?id=1005 -X image(a, x, y) not honoring imageMode(CENTER) -X need to just pass image(a, x, y) to image(a, x, y, a.width, a.height) -X rather than passing it directly to imageImpl() -X http://dev.processing.org/bugs/show_bug.cgi?id=1013 -o disable P2D before releasing (unless implementation is finished) - - -0156 core -X clarify the "no variables in size() command" rule -X http://dev.processing.org/bugs/show_bug.cgi?id=992 -X present mode broken in general? -X placement of elements in present mode is messed up -X "stop" button hops around, window not centered on screen -X http://dev.processing.org/bugs/show_bug.cgi?id=923 -X disable P2D for size() and createGraphics() before releasing -X already was disabled, just a bug in detecting it - - -0155 core -X hint(DISABLE_DEPTH_TEST) throws null pointer exception with OpenGL -X http://dev.processing.org/bugs/show_bug.cgi?id=984 - - -0154 core -X only set apple.awt.graphics.UseQuartz on osx, otherwise security error -X http://dev.processing.org/bugs/show_bug.cgi?id=976 -X add skewX() and skewY() to PMatrix -X Add support style attribute for path tag to Candy SVG (ricard) -X http://dev.processing.org/bugs/show_bug.cgi?id=771 -X remove setX/Y/Z from PVector, copy() (use get() instead), add mult/div -X remove copy() from PVector? -X add mult() and div() with vector inputs? - - -0153 core -X make PImage.init() public again - - -0152 core -X no changes to 0152 core - - -0151 core -X NullPointerException on curveVertex() when using more than 128 vertices -X http://dev.processing.org/bugs/show_bug.cgi?id=952 -X Text not bounding correctly with x, y, w, h -X http://dev.processing.org/bugs/show_bug.cgi?id=954 -o dataFolder() might be flawed b/c it's referring to contents of jar file -o for input, better to use openStream -X clear up the javadoc on this -X odd-size height will make blue line across image in saveFrame() -X http://dev.processing.org/bugs/show_bug.cgi?id=944 -X probably the pixel flipping code (and endian sorting) not happening -X because the blue comes from the byte order flip -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=OpenGL;action=post;num=1219196429 -X ArrayIndexOutOfBoundsException in PLine -X http://dev.processing.org/bugs/show_bug.cgi?id=246 -X http://dev.processing.org/bugs/show_bug.cgi?id=462 -X random AIOOBE with P3D and points -X http://dev.processing.org/bugs/show_bug.cgi?id=937 - -cleanup -X alter bezier and curve matrices to use PMatrix -X float array stuff is redundant with code that's in PMatrix -X and PMatrix has to be included even w/o P3D so... -X add texture support to begin/endRaw -X should we do joins when alpha is turned off? -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=OpenGL;action=display;num=1210007450 -X no, because it's too processor intensive to draw a lotta ellipses -X but added a note about it to the reference for 0151 -X strokeWeight() doesn't work in opengl or p3d -o gl smoothing.. how to disable polygon but keep line enabled -o or at least make a note of this? -o leave smooth off, get the gl object, then enable line smooth -X don't bother, this is a workaround for another bug -o PPolygon no longer in use and PLine is a mess -o make a version of PGraphics3 that uses it for more accurate rendering? - - -0150 core -X no changes to processing.core in 0150 - - -0149 core -X remove MACOS9 constant from processing.core.* -X because code no longer runs on os9 since dropping 1.1 support -X specular() with alpha has been removed -X GLDrawableFactory.chooseGraphicsConfiguration() error with OpenGL -X http://dev.processing.org/bugs/show_bug.cgi?id=891 -X http://dev.processing.org/bugs/show_bug.cgi?id=908 -X fix problem with unregisterXxxx() -X http://dev.processing.org/bugs/show_bug.cgi?id=910 -X make parseFloat() with String[] array return NaN for missing values -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Syntax;action=display;num=1220880375 -X fix problems with text in a rectangle -X http://dev.processing.org/bugs/show_bug.cgi?id=893 -X http://dev.processing.org/bugs/show_bug.cgi?id=899 -X finish getImage() method inside PImage -X delay() is broken -X http://dev.processing.org/bugs/show_bug.cgi?id=894 -X remove extra ~ files from core.jar -X also fix for other libraries in the make scripts across platforms -X fix problems in PApplet regarding signed code -X createInput() wasn't bothering to check files when not online -X unhint() has been removed, see the reference for hint() for changes -o enable() and disable() instead of hint()/unhint() -o should these use text strings? how will that be compiled? -X remove unhint(), add opposite hints for those that need to be disabled -o maybe update hint() ref to be more clear about screen not accumulating -X no, it's explicitly stated as such -X make decisions about whether PGraphics is an abstract class or not -X method signature is a real problem -X figure out how to handle constructor mess -X clean up setMainDrawingSurface() -X should instead be inside size(), and init(), no? -X add to hint(DISABLE_DEPTH_TEST) -X gl.glClear(GL.GL_DEPTH_BUFFER_BIT); -X or clearing the zbuffer for P3D -X also add a note to the hint() reference -X DISABLE_DEPTH_TEST bad results -X have to clear the zbuffer to make it work -X this may be specific to lines -X http://dev.processing.org/bugs/show_bug.cgi?id=827 -X though it also seems to be a problem with opengl -X also make a note of disabling as a way to help font appearance -o Font width calculation fails when using vectorfonts and PDF -o http://dev.processing.org/bugs/show_bug.cgi?id=920 -X um, this is gross: getMatrix((PMatrix2D) null) -X no changing point sizes when using beginShape(POINTS) -X this is an opengl restriction, should we stick with it elsewhere? -X and changing stroke weight in general (with lines/shapes) -o no renderer does this, we should probably disable it -X added a note to the reference about it -X may need to add to PApplet.main() for OS X 10.5 -X System.setProperty("apple.awt.graphics.UseQuartz", "true"); -X deprecate arraycopy(), change to arrayCopy() - -cleaning -o chooseFile() and chooseFolder() with named fxn callbacks -o the function must take a File object as a parameter -o add better error messages for all built-in renderers -o i.e. "import library -> pdf" when pdf is missing -o cameraXYZ doesn't seem to actually be used for anything -o since camera functions don't even look at it or set it -o registerSize() in arcball is causing trouble -o some sort of infinite loop issue -o textMode(SCREEN) is broken for opengl -o http://dev.processing.org/bugs/show_bug.cgi?id=426 -o textSpace(SCREEN) for opengl and java2d -o don't use loadPixels for either -o use font code to set the cached color of the font, then call set() -o although set() with alpha is a little different.. -o resizing opengl applet likely to cause big trouble -o componentlistener should prolly only do size() command outside of draw -o fjen says blend() doens't work in JAVA2D -o the functions are fairly well separated now in PMethods -o just go through all the stuff to make sure it's setting properly - -point() -X java2d - if strokeWeight is 1, do screenX/Y and set() -X if strokeWeight larger, should work ok with line() -X no, use an ellipse if strokeWeight is larger -X gl points not working again -X need to implement point() as actual gl points -X this means adding points to the pipeline -X point() doesn't work with some graphics card setups -X particularly with opengl and java2d -X http://dev.processing.org/bugs/show_bug.cgi?id=121 -X point() issues -o point() being funneled through beginShape is terribly slow -X go the other way 'round -X sometimes broken, could be a problem with java 1.5? (was using win2k) - -font -X fix getFontMetrics() warning -X need to have a getGraphics() to get the actual Graphics object -X where drawing is happening. parent.getGraphics() works except for OpenGL -X Java2D textLinePlacedImpl should check for ENABLE_NATIVE_FONTS hint -X http://dev.processing.org/bugs/show_bug.cgi?id=633 -X also try to check native font on textFont() commands -X in case the hint() has been enabled in the meantime -X or rather, always load native font, even w/o the hint() being set - -PGraphics API changes -X setMainDrawingSurface() -> setPrimarySurface() -X mainDrawingSurface = primarySurface; -X resize() -> setSize() (roughly) -X endShape() with no params is no longer 'final' -X X/Y/Z -> TX/TY/TZ -X MX/MY/MZ -> X/Y/Z (for sake of PShape) -X render_triangles -> renderTriangles() -X depth_sort_triangles -> sortTriangles() -X render_lines -> renderLines() -X depth_sort_lines -> sortLines() -X no longer any abstract methods in PGraphics itself -X removed support for specular alpha (and its 'SPA' constant) -X clear() -> backgroundImpl() -X add DIAMETER as synonym for CENTER for ellipseMode and friends -X textFontNative and textFontNativeMetrics have been removed -X they've been re-implemented per-PGraphics in a less hacky way -X hint(ENABLE_NATIVE_FONTS) goes away -X need to mention in createFont() reference -X also maybe cover in the loadFont() reference? (maybe problem...) -X image.cache has been removed, replaced with get/set/removeCache() -X this allows per-renderer image cache data to be stored -X imageMode has been removed from PImage, too awkward -X this also means that imageMode ignored for get(), set(), blend() and copy() -X smooth is now part of PGraphics, moved out of PImage -X raw must handle points, lines, triangles, and textures -X light position and normal are now PVector object -X changed NORMALIZED to NORMAL for textureMode() - -shapes -X maybe finish off the svg crap for this release -X working on pshape -X add shape() methods to PGraphics/PApplet -X test and fix svg examples -X revisions.txt for x/y/z/ tx/ty/tz.. other changes in api.txt -X bring svg into main lib -X need to straighten out 'table' object for quick object lookup -X maybe add to all parent tables? (no, this gets enormous quickly) -X fix svg caps/joins for opengl with svg library -X http://dev.processing.org/bugs/show_bug.cgi?id=628 -X save/restore more of the p5 graphics drawing state -X not setting colorMode(), strokeCap, etc. -X ignoreStyles is broken - how to handle -X need a whole "styles" handler -X handle cap/join stuff by -X if it's setting the default, no error message -X if it's not the default, then show an error msg once -X have a list Strings for errors called, rather than constants for all -X that way, no need to have an error message for every friggin function -X PMatrix now PMatrix3D (maybe not yet?) -X change svg library reference - -hint/unhint/enable/disable -X option to have renderer errors show up -X 1) as text warnings 2) as runtime exceptions 3) never -X add warning system for pgraphics, rather than runtime exceptions -X keep array of warning strings, and booleans for whether they've called -X ENABLE_DEPTH_SORT not really working for GL -X because the zbuffer is still there, it's still calculating -X actually, this is probably because it happens after the frame -X so really, flush is required whenever the depth sort is called -X need to check this--isn't this referring to DISABLE_DEPTH_TEST? -X ENABLE_DEPTH_SORT causing trouble with MovieMaker -X need to make the flush() api accessible -X http://dev.processing.org/bugs/show_bug.cgi?id=692 -X image smoothing -X straighten out default vs. ACCURATE vs. whatever -X Java2D and P3D and OpenGL are all inconsistent -o need to be able to do hint() to do nearest neighbor filtering -X http://dev.processing.org/bugs/show_bug.cgi?id=685 -o imageDetail(), textDetail(), etc? -o decisions on image smoothing vs. text smoothing vs. all - - -0148 core -X tweaks to PGraphicsOpenGL to support GLGraphics - - -0147 core -X processing sketches not restarting after switching pages in safari -X http://dev.processing.org/bugs/show_bug.cgi?id=581 - -cleaning -X misshapen fonts on osx (apple fixed their bug) -X http://dev.processing.org/bugs/show_bug.cgi?id=404 - - -0146 core -X fix the internal file chooser so that people don't need to make their own -X threading is a problem with inputFile() and inputFolder() -X dynamically load swingworker? -o remove saveFile() methods? -o write up examples for these instead? -o start an integration section? -X get() in java2d not honoring imageMode or rectMode -X add imageMode(CENTER) implementation -X add a bunch of changes to the reference to support this -X Duplicate 3d faces in beginRaw() export -X this was actually doubling geometry, potentially a bit of a disaster -X http://dev.processing.org/bugs/show_bug.cgi?id=737 -o bezierVertex YZ Plane fill problem -X http://dev.processing.org/bugs/show_bug.cgi?id=752 -X weird coplanar stuff, shouldn't be doing 3D anyway - -cleanup -X switch to requestImage() (done in 0145) -o can bug 77 be fixed with a finalizer? (no, it cannot) -X make sure that images with alpha still have alpha in current code -X text in rectangle is drawing outside the box -X http://dev.processing.org/bugs/show_bug.cgi?id=844 -X points missing in part of screen -X http://dev.processing.org/bugs/show_bug.cgi?id=269 - - -0145 core -X separate x/y axis on sphereDetail() params -X http://dev.processing.org/bugs/show_bug.cgi?id=856 -X make sure docs for PImage use createImage -X add notes about JOGLAppletLauncher -X http://download.java.net/media/jogl/builds/nightly/javadoc_public/com/sun/opengl/util/JOGLAppletLauncher.html -X added to javadoc -o need a halt() method which will kill but not quit app (sets finished?) -o exit() will actually leave the application -o this may in fact only be internal -X this is just the stop() method, though maybe we need to document it -X text(String, float, float, float, float) draws text outside box -X http://dev.processing.org/bugs/show_bug.cgi?id=844 -X implement textAlign() for y coords in text rect -X need to add reference for this -X textAlign() bottom now takes textDescent() into account -X remove gzip-related hint() - -threading -X major threading overhaul before 1.0 (compendium) -X http://dev.processing.org/bugs/show_bug.cgi?id=511 -X ewjordan has added a good trace of the badness -X need to move off anim off the main event thread -X move away from using method like display -X look into opengl stuff for dealing with this -X move addListeners() calls back out of PGraphics -X resize window will nuke font setting -X textFont() used in setup() is null once draw() arrives -X http://dev.processing.org/bugs/show_bug.cgi?id=726 -X colorMode() set inside setup() sometimes not set once draw() arrives -X http://dev.processing.org/bugs/show_bug.cgi?id=767 -X applet sizing issues with external vm -X could this possibly be related to the linux bug? -X http://dev.processing.org/bugs/show_bug.cgi?id=430 -X alloc() stuff not fixed because of thread halting -X problem where alloc happens inside setup(), so, uh.. -X http://dev.processing.org/bugs/show_bug.cgi?id=369 -X should instead create new buffer, and swap it in next time through -X sonia (and anything awt) is locking up on load in rev 91 -X prolly something w/ the threading issues -X paint is synchronized in 0091 -X however this is a necessity, otherwise nasty flickering ensues -X and using a "glock" object seems to completely deadlock -X http://dev.processing.org/bugs/show_bug.cgi?id=46 -o claim that things are much slower in 107 vs 92 -o http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Suggestions;action=display;num=1141763531 -X hopefully this is cleaned up by removing some of the synchronization -X sketches lock up when system time is changed -X http://dev.processing.org/bugs/show_bug.cgi?id=639 -X can draw() not be run on awt event thread? -X look into opengl stuff for dealing with this -o "is there a better way to do this" thread in lists folder -X framerate that's reported is out of joint with actual -X http://dev.processing.org/bugs/show_bug.cgi?id=512 -X accuracy of frame timer is incorrect -X seems to be aliasing effect of low resolution on millis() -X so rates coming out double or half of their actual -X probably need to integrate over a rolling array of 10 frames or so -X frameRate() speeds up temporarily if CPU load drops dramatically -X http://dev.processing.org/bugs/show_bug.cgi?id=297 -o perhaps add a hint(DISABLE_FRAMERATE_DAMPER) -X fix the flicker in java2d mode -X http://dev.processing.org/bugs/show_bug.cgi?id=122 -X framerate(30) is still flickery and jumpy.. -X not clear what's happening here -X appears to be much worse (unfinished drawing) on macosx -X try turning off hw accel on the mac to see if that's the problem - - -0144 core -X if loading an image in p5 and the image is bad, no error msg shown -X that is, if a loadImage() turns up an access denied page -X added an error message for this, and the image width and height will be -1 -X added loadImageAsync() for threaded image loading - -opengl fixes -X incorporate changes from andres colubri into PGraphicsOpenGL -X most of the changes incorporated, something weird with constructors -X use gluErrorString() for glError() stuff -X PGraphicsOpenGL.java: -X directionalLight() and .pointLight() are both calling -X glLightNoAmbient() which then creates a new FloatBuffer -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1199376364 - - -0143 core -X some fonts broken in java 1.5 on osx have changed again -X http://dev.processing.org/bugs/show_bug.cgi?id=407 -X filed as bug #4769141 with apple http://bugreport.apple.com/ -X appears that asking for the postscript name no longer works -o fix "create font" and associated font stuff to straighten it out -X was grabbing the wrong native font with ico sketch -X seems that the psname is no longer a good way to grab the font? related? -X available font issues -X is getFontList returning a different set of fonts from device2d? -X try it out on java 1.3 versus 1.4 -X getAllFonts() not quite working for many fonts -X i.e. Orator Std on windows.. macosx seems to be ok -X is getFamilyNames() any different/better? -X when did this break? 1.4.1? 1.4.x vs 1.3? -X may be that cff fonts won't work? -X or is it only those with ps names? -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1117445969 -o leading looks too big, at least in PGraphics2 with news gothic -X though prolly the converted version of the .ttf? -X add a fix so that negative angle values won't hork up arc() command -X add resize() method to PImage - - -0142 core -X update iText in PDF library to 2.1.2u -X loadStrings(".") should not list directory contents -X http://dev.processing.org/bugs/show_bug.cgi?id=716 - - -0141 core -X no changes to core in 0141 - - -0140 core -X add static version of loadBytes() that reads from a File object -X slightly clearer error messages when OpenGL stuff is missing - - -0139 core -X no changes to core in 0139 - - -0138 core -X improve tessellation accuracy by using doubles internally -X http://dev.processing.org/bugs/show_bug.cgi?id=774 - - -0137 core -X add gz handling for createOutput() -X change openStream() to createInput() (done in 0136) -X add createOutput() -X deprecate openStream() naming - - -0136 core -X add static version of saveStream() (uses a File and InputStream object) -X A "noLoop()" sketch may be unresponsive to exit request -X http://dev.processing.org/bugs/show_bug.cgi?id=694 -X Fixed bug with subset() when no length parameter was specified -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Syntax;action=display;num=1196366408 -X http://dev.processing.org/bugs/show_bug.cgi?id=707 -X figure out why tiff images won't open with after effects -X http://dev.processing.org/bugs/show_bug.cgi?id=153 -X open with photoshop, resave, see which tags change -X specifically, which tags that were in the original image file -X perhaps something gets corrected? -X had a fix, but decided not to re-implement the loadTIFF stuff too -X fix for bezierTangent() problem from dave bollinger -X http://dev.processing.org/bugs/show_bug.cgi?id=710 -X implement curveTangent (thanks to davbol) -X http://dev.processing.org/bugs/show_bug.cgi?id=715 -X fix problem with get() when imageMode(CORNERS) was in use -X fix bug with splice() and arrays -X http://dev.processing.org/bugs/show_bug.cgi?id=734 -X 'screen' is now static -X undo this--may need to be better about specifying screen and all -X PImage mask doesn't work after first call -X http://dev.processing.org/bugs/show_bug.cgi?id=744 -X load and save tga results in upside down tga -X http://dev.processing.org/bugs/show_bug.cgi?id=742 -X fix problem with g.smooth always returning false in JAVA2D -X http://dev.processing.org/bugs/show_bug.cgi?id=762 -X add XMLElement (not filename) constructor to SVG lib -X http://dev.processing.org/bugs/show_bug.cgi?id=773 - - -0135 core -X modelX/Y/Z still having trouble -X http://dev.processing.org/bugs/show_bug.cgi?id=486 -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Suggestions;action=display;num=1186614415 -X add docs for model/screen/Y/Z -X added for model, along with example. -X screen was already complete -X bring back opengl mipmaps (create them myself? try w/ newer jogl?) -X opengl mipmaps are leaking (regression in spite of #150 fix) -X http://dev.processing.org/bugs/show_bug.cgi?id=610 -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=OpenGL;action=display;num=1193967684 -X seems to not actually be a problem on mbp, try desktop? -X copy() was needing updatePixels() when used with OPENGL or JAVA2D -X http://dev.processing.org/bugs/show_bug.cgi?id=681 -X check on the bug report for this one as well -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Syntax;action=display;num=1173394373 - -earlier -o add notes about fixing serial on the mac to the faq (and link to bug) -X not necessary, hopefuly things working better now -X utf8 and encodings -X createWriter() and createReader() that take encodings -X xml files seem to be a lot of UTF-8 -X xml stuff -X getItem("name"); -X getItems("name"); (same, but looks for multiple matches -X getItem("path/to/item"); -o or could use getItem and getItemList? getItemArray()? -o read more about xpath -X parse xml from a string object -X not have to just use Reader -X add mention of this to the board -o update to new version of jogl -X fix mini p5 bugs for eugene - - -0134 core -X add noLights() method -X http://dev.processing.org/bugs/show_bug.cgi?id=666 -X redraw the screen after resize events (even with noLoop) -X http://dev.processing.org/bugs/show_bug.cgi?id=664 -o problem with transparency in mask() -o http://dev.processing.org/bugs/show_bug.cgi?id=674 -X mark bug as invalid, using fill() instead of tint() -X move to UTF-8 as native format for core file i/o operations -X update reference to document the change -o jogl glibc 2.4 problem on linux -o move back to previous jogl until 1.1.1 is released -X http://dev.processing.org/bugs/show_bug.cgi?id=675 -o deal with opengl applet export changes -o what is deployment suggestion for all the different platforms? -o can the jar files actually provide the DLLs properly? -X revert back to jogl 1.0 - - -0133 core -X fix problem with "export to application" and opengl -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=OpenGL;action=display;num=1193142573 -X add focus requests so that better chance of keys etc working -X http://dev.processing.org/bugs/show_bug.cgi?id=645 -X argh, these make things worse (P3D run internal) -X add stuff about classversionerrors to the reference -X also update the libraries page -X fix background() with P3D and beginRaw() -X endRaw() has a problem with hint(ENABLE_DEPTH_SORT) -X because the triangles won't be rendered by the time endRaw() is called -X force depth sorted triangles to flush -X is mousePressed broken with noLoop() or redraw()? -X sort of but not really, add notes to reference about it - -cleaning -o calling graphics.smooth(), graphics.colorMode() outside begin/endDraw -o this causes everything to be reset once the draw occurs -o kinda seems problematic and prone to errors? -X nope, just need to say to do all commands inside begin/endDraw -o finish implementation so 1.1 support can return -X http://dev.processing.org/bugs/show_bug.cgi?id=125 -o check into ricard's problems with beginRecord() -X i believe these were caused by linux java2d issues -X beginFrame()/beginDraw() and defaults() -X when should these be called, when not? -X seems as though the begin/end should happen inside beginRaw/Record -X defaults() gets called by the size() command in PApplet -o would be cool if could sort w/o the sort class.. -o meaning use reflection to sort objects, just by implementing a few methods -o would be much simpler and less confusing than new Sort() etc -o or would it be ridiculously slow? -X just using Comparator instead, since moving to Java 1.4 -X make a PException that extends RuntimeException but packages an ex? -X http://java.sun.com/docs/books/tutorial/essential/exceptions/runtime.html -X no, not necessary, and exceptions suck -o need to write an error if people try to use opengl with 1.3 (i.e. on export) -o don't let users with java < 1.4 load OPENGL -o http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Contribution_3DOpenGL;action=display;num=1114368123;start=3 -o catch security exceptions around applet i/o calls -o not just for saving files, but provide better error msgs when -o attempting to download from another server -X nope, just cover this in the reference -o files not in the data folder (works in env, not in sketch) -X mentioned repeatedly in the docs -o fix link() to handle relative URLs -o http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1081710684 -X more trouble (and bug-worthy) than it's worth -o put SecurityException things around file i/o for applets -o rather than checking online(), since applets might be signed -X no, better to let errors come through -o slow on java2d, fast on p3d -o http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1115276250;start=3 - -ancient -o strokeWeight is still broken -o setting stroke width on circle makes odd patterns -o http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1077013848 -o http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1080347160 -o more weirdness with stroke on rect, prolly not alpha -o http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1085799526 -o rect is not getting it's stroke color set -o http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1073582391;start=0 -o weird problem with drawing/filling squares -o http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1077226984 -o alpha of zero still draws boogers on screen -o http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1073329613;start=0 -o http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1080342288;start=0 -o break apart functions into local (placement) and override (blitting) -o just have a "thin_flat_line" option in opengl code -o is quad strip broken or not behaving as expected? -X may be correct, it worked for nik -X inside draw() mode, delay() does nothing -X delay might be a good way to signal drawing to the screen/updating -X set(x, y, image) x, y not setting with processing - -fixed earlier -X is the texture[] array in PGraphics3D causing the problems with memory? -X actually it's a PGraphicsGL problem.. -X maybe the image binding not getting unbound? -o should image i/o be moved into PImage? -o still needs applet object, so it's not like this is very useful -o external PImage methods could take stream, i suppose.. -X relevant parts were moved in, others not -o loadImage() using spaces in the name -o if loadImage() with spaces when online(), throw an error -o get tiff exporter for p5 to support argb and gray -X would also need to modify the tiff loading code, -X because the header would be different -X http://dev.processing.org/bugs/show_bug.cgi?id=343 -X map() is not colored, neither is norm -X image outofmemoryerror for casey's students -X http://dev.processing.org/bugs/show_bug.cgi?id=355 -X this may be related to a ton of other memory bugs -X 1.5.0_07 and 1.4.2_12 contain the -XX:+HeapDumpOnOutOfMemoryError switch -X invaluable for tracking down memory leaks -X can't replicate anymore -X texture mapping -X very odd, "doom era" stuff -X would it be possible to have a 'slow but accurate' mode? -X http://dev.processing.org/bugs/show_bug.cgi?id=103 -X fixed in release 0125 -X add hint() and unhint() -X also add unhint() to the keywords file -X and maybe remove hint() from keywords_base? -o present mode is flakey.. applet doesn't always come up -o seems like hitting stop helps shut it down? -o is full screen window not being taken down properly? -o has this fixed itself, or is it an issue with launching externally? -X seems to be fixed in later java versions -X rewrite getImpl/setImpl inside opengl -X placement of 100x100 items is odd -X happens with P3D and maybe also P2D? -X http://dev.processing.org/bugs/show_bug.cgi?id=128 - - -0132 core -X an image marked RGB but with 0s for the alpha won't draw in JAVA2D -X images with 0x00 in their high bits being drawn transparent -X also if transparency set but RGB is setting, still honors transparency -X http://dev.processing.org/bugs/show_bug.cgi?id=351 -X improve memory requirements for drawing images with JAVA2D -X now using significantly less memory - -tint/textures -X tint() and noTint() switching problem in P2D -X this should be a quick fix -X http://dev.processing.org/bugs/show_bug.cgi?id=222 -X related to the fill bugs: when fill is identical, no fill applied -X actually tint() should take over for fill as per-vertex color -X when textured images are being used -X http://dev.processing.org/bugs/show_bug.cgi?id=169 -X tint() should set texture color, fill() is ignored with textures -X add to the reference -X fix tint() for PGraphics3 (what could be wrong?) -X tint() honoring alpha but not colored tint -X maybe not setting fill color when drawing textures -X guessing it's an implementation issue in sami's renderer -X check with the a_Displaying example and tint(255, 0, 0, 100); -X http://dev.processing.org/bugs/show_bug.cgi?id=90 - - -0131 core -X hint(DISABLE_DEPTH_TEST) not behaving consistently -X http://dev.processing.org/bugs/show_bug.cgi?id=483 -o make hints static - cannot do that -X clean up hinting mechanism a bit -X look into jogl anti-aliasing on osx -o smoothMode(2) and smoothMode(4), right after size()? -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=OpenGL;action=display;num=1175552759 -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=OpenGL;action=display;num=1164236069 -X look into capabilities stuff from mike creighton -X also sets the aa mode on the pc so it no longer needs control panel bunk -X update to JOGL 1.1.0 -X add gluegen-rt back to the applet export -X http://download.java.net/media/jogl/builds/nightly/javadoc_public/com/sun/opengl/util/JOGLAppletLauncher.html -X add print() and println() for long and double -X http://dev.processing.org/bugs/show_bug.cgi?id=652 -X fix minor bug in saveStream() (undocumented) -X "this file is named" errors don't like subdirectories -X need to strip off past the file separator or something - - -0130 core -X fixed problem with size() and the default renderer -X the renderer was being reset after setup(), -X so anything that occurred inside setup() was completely ignored. -X http://dev.processing.org/bugs/show_bug.cgi?id=646 -X http://dev.processing.org/bugs/show_bug.cgi?id=648 -X http://dev.processing.org/bugs/show_bug.cgi?id=649 -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1192873557 -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1192731014 - - -0129 core -X width and height not always set properly -X http://dev.processing.org/bugs/show_bug.cgi?id=642 -X bring back background() with alpha - - -0128 core -X remove PFont reflection stuff -X remove cursor reflection stuff -X fix up sorting functions -X implement sortCompare() and sortSwap() -X discuss this with casey -X also could be using Arrays.sort(blah) with Comparable (1.2+) -X make sorting functions static -X use methods from Arrays class, cuts down on code significantly -X implement sortCompare() and sortSwap() -X discuss this with casey -o also could be using Arrays.sort(blah) with Comparable (1.2+) -X make sorting functions static? -o should loadFont() work with ttf files (instead of createFont?) -X otherwise loadFont() would work with font names as well, awkward -X better to use createFont() for both -o jogl issues with some cards on linux, might be fixed with newer jogl -X http://dev.processing.org/bugs/show_bug.cgi?id=367 -X remove methods for background() to include an alpha value -X this is undefined territory because of zbuffer and all -X if you want that effect, use a rect() -X saveFrame() produces a black background because bg not set correctly: -X http://dev.processing.org/bugs/show_bug.cgi?id=421 -X background not being set properly -X http://dev.processing.org/bugs/show_bug.cgi?id=454 -X having shut off the defaults reset, background not getting called for java2d -X so this will make that other stuff regress again -X in particular, when the applet is resized, but renderer not changed -X why aren't background() / defaults() being called for opengl? -o http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Contribution_3DOpenGL;action=display;num=1118784331 -o simon reports borders on P3D and OPENGL if background() not called -X window fixed at 100x100 pixels -X http://dev.processing.org/bugs/show_bug.cgi?id=197 -X width/height on problem machine prints out as: -X 100x100 issues are exhibited on bh140c PCs, test and fix! -X 100,200 and 128,200 -o AIOOBE on PLine 757.. halts renderer -o fix erik's problems with export (also in bugs db) -X draw() called twice in vista with java 1.6 -X http://dev.processing.org/bugs/show_bug.cgi?id=587 - -cleanup from previous releases -X P3D not doing bilinear interpolation in text and images -X because smooth() has to be set (and smooth throws an error in P3D) -X how should this be handled? a hint? allowing smooth()? -X probably just allow smooth() but don't smooth anything -o pdf export ignoring transparency on linux -o check to see if this is the case on other linux machines -o seems to be working fine on windows -o http://dev.processing.org/bugs/show_bug.cgi?id=345 -X change how java version is determined on mac -X http://developer.apple.com/technotes/tn2002/tn2110.html -X (this tn provides no guidance for macos8/9.. gah) -o little window showing up on macosx when running -X never able to confirm, probably just old java bug -X http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1081284410 -o flicker happening on osx java 1.4, but not 1.3: -o http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1083184297 -o don't let users on < 1.3 load JAVA2D -X set upper bound on framerate so as not to completely hose things? - -fixed in 0127 -X ARGB problems with createGraphics -o P3D from createGraphics needs to be marked RGB not ARGB -X http://dev.processing.org/bugs/show_bug.cgi?id=160 -X http://dev.processing.org/bugs/show_bug.cgi?id=428 -X http://dev.processing.org/bugs/show_bug.cgi?id=482 -X http://dev.processing.org/bugs/show_bug.cgi?id=530 -X http://dev.processing.org/bugs/show_bug.cgi?id=527 - -reasons to drop 1.1 support (and support 1.3+) -X remove reflection from createFont() constructor/methods in PFont -X this would make PFont much smaller -X array functions could be done through Arrays.xxx class -X although some of these may be built in -X sorting could be done through built-in sort() class -X split() function could echo the built in split/regexp setup -X and add features for regexp -X could introduce use of Timer class in examples -X also use SwingWorker to launch things on other threads -X weirdness of two modes of handling font metrics -X textFontNativeMetrics gives deprecation error -X getFontList stuff in PFont causes problems - - -0127 core -X pixel operations are broken in opengl -X get(), set(), copy(), blend(), loadPixels, updatePixels() -X set(x, y, image) y reversed in openGL -X background(image) also broken -X also textMode(SCREEN) -X http://dev.processing.org/bugs/show_bug.cgi?id=91 -o replaceAll() not supported by 1.1 -o http://dev.processing.org/bugs/show_bug.cgi?id=561 -o make version of loadBytes that checks length of the stream first -o this might not be worth it -o the number of cases where this works is small (half of url streams) -o and who knows if the value returned will be correct -o (i.e. will it be the uncompressed or compressed size of the data?) - -createGraphics() issues -X offscreen buffers fail with texture mapping -X pixels not being set opaque (only with textures?) -X http://dev.processing.org/bugs/show_bug.cgi?id=594 -X add note to createGraphics() docs that opacity at edges is binary -X PGraphics problem with fillColor -X http://dev.processing.org/bugs/show_bug.cgi?id=468 - -fixed earlier -X add to open() reference problems with mac -X need to use the 'open' command on osx -X or need to do this by hand -X prolly better to do it by default, since on windows we use cmd? -X check to see if the user has 'open' in there already -X they can call Runtime.getRuntime().exec() if they want more control - -fixed earlier (in 0125) by ewjordan -X accuracy in P3D is very low -X http://dev.processing.org/bugs/show_bug.cgi?id=95 -X textured polys throwing a lot of exceptions (ouch) -X http://dev.processing.org/bugs/show_bug.cgi?id=546 -X polygons in z axis with nonzero x or y not filling properly -X http://dev.processing.org/bugs/show_bug.cgi?id=547 - - -0126 core -o rect() after strokeWeight(1) gives wrong coords -X http://dev.processing.org/bugs/show_bug.cgi?id=535 -X bug in osx java 1.4 vs 1.5 -X fix bug in str() methods that take arrays -X method was not working properly, was using the object reference -X new version of saveStream() -X implement auto-gzip and gunzip -X fix bug where sort() on 0 length array would return null -X instead, returns an array -X unregisterXxxx() calls to remove methods from libs -X http://dev.processing.org/bugs/show_bug.cgi?id=312 -X implemented by ewjordan -X sort() on strings ignores case -X mention the change in the reference -X added MIN_FLOAT, MAX_FLOAT, MIN_INT, MAX_INT to PConstants -X throw AIOOBE when min() or max() called on zero length array -o fix lerpColor() to take the shortest route around the HSB scale -o loadBytes() doesn't do auto gunzip? but loadStrings and createReader do? -X this might be a good solution for dealing with the differences -o with loadBytes(), they can use gzipInput (or loadBytesGZ?) -o although what does openStream do? (doesn't do auto?) -X auto-gunzip on createReader() -o add auto-gunzip to loadStrings() -X others for auto-gunzip? -X do the same for createWriter() et al -X disable mipmaps in 0126 -X http://dev.processing.org/bugs/show_bug.cgi?id=610 -X add match() method that returns an array of matched items - - -0125 core -X more blend() modes (the five listed on the thread below?) -X http://dev.processing.org/bugs/show_bug.cgi?id=132 -X figure out what the modes should actually be: -X photoshop: normal, dissolve; darken, multiply, color burn, -X linear burn; lighten, screen, color dodge, linear -X dodge; overlay, soft light, hard light, vivid light, -X linear light, pin light, hard mix; difference, -X exclusion; hue, saturation, color, luminosity -X illustrator: normal; darken, multiply, color burn; lighten, -X screen, color dodge; overlay, soft light, hard light; -X difference, exclusion; hue, sat, color, luminosity -X director: Copy, Transparent, Reverse, Ghost, Not copy, -X Not transparent, Not reverse, Not ghost, Matte, Mask; -X (below seems more useful: -X Blend, Add pin, Add, Subtract pin, Background transparent, -X Lightest, Subtract, Darkest, Lighten, Darken -X flash: -X DIFFERENCE: C = abs(A-B); -X MULTIPLY: C = (A * B ) / 255 -X SCREEN: C= 255 - ( (255-A) * (255-B) / 255 ) -X OVERLAY: C = B < 128 ? (2*A*B/255) : 255-2*(255-A)*(255-B)/255 -X HARD_LIGHT: C = A < 128 ? (2*A*B/255) : 255-2*(255-A)*(255-B)/255 -X SOFT_LIGHT: C = B < 128 ? 2*((A>>1)+64)*B/255 : 255-(2*(255-((A>>1)+64))*(255-B)/255) -X jre 1.5.0_10 is still default at java.com.. blech -X http://dev.processing.org/bugs/show_bug.cgi?id=513 -X constant CENTER_RADIUS will be changed to just RADIUS -X CENTER_RADIUS is being deprecated, not removed -X remove CENTER_RADIUS from any p5 code (i.e. examples) -X split() inconsistency (emailed casey, will discuss later) -X make split(String, String) behave like String.split(String) -X and make current split(String) into splitTokens(String) -X that means split(String) no longer exists -o add splitTokens() documentation -o document new version of split() and regexp -o should we mention String.split? -X ironed out more of the preproc parseXxxx() functions -X deal with targa upside-down and non-rle encoding for tga images -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1171576234 -X change println(array) to be useful -o document using join() for old method -X remove print(array) since it's silly? -X make sure it's not in the reference -X [0] "potato", [1] "tomato", [2] "apple" -X fix filter(GRAY) on an ALPHA image to produce a good RGB image - -0125p2 -X updatePixels ref is wrong -X has x/y/w/h version -X the reference is also cut off -X make ENTER, TAB, etc all into char values (instead of int) -X some way to vertically center text -X either by setting its middle vertical point -X or by setting a top/bottom for the rectangle in which it should be placed -o maybe textAlign(CENTER | VERTICAL_CENTER); -X or TOP, MIDDLE, and BOTTOM -o textAlign(CENTER | TOP); -o could even have textAlign(CENTER) and textAlign(TOP) not replace each other -X or textAlign(LEFT, MIDDLE); -> this one seems best -X add reference for new param, and update keywords.txt -X given to andy - -0125p3 -X PImage.save() method is not working with get() -X http://dev.processing.org/bugs/show_bug.cgi?id=558 -X NullPointerException in Create Font with "All Characters" enabled -X http://dev.processing.org/bugs/show_bug.cgi?id=564 -X added min() and max() for float and int arrays -X need to update reference -X moved around min/max functions -X opengl image memory leaking -X when creating a new PImage on every frame, slurps a ton of memory -X workaround is to write the code properly, but suggests something bad -X http://dev.processing.org/bugs/show_bug.cgi?id=150 -X opengl keeping memory around.. -X could this be in vertices that have an image associated -X or the image buffer used for textures -X that never gets cleared fully? -X registerSize() was registering as pre() instead -X http://dev.processing.org/bugs/show_bug.cgi?id=582 -X set() doesn't bounds check -X this shouldn't actually be the case -X http://dev.processing.org/bugs/show_bug.cgi?id=522 -X get()/set() in PGraphicsJava2D don't bounds check -X was actually a dumb error in setDataElements() -X set modified to true on endDraw() so that image updates properly -X http://dev.processing.org/bugs/show_bug.cgi?id=526 -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Syntax;action=display;num=1171574044 - -0125p4 (in progress) -X significant improvement to text and images in opengl -X now using mipmaps to interpolate large and small images -X fix bug with mipmapping on radeon 9700 -X things not showing up in linux -X this may be fixed along with bug #341 -X probably threading issue, 98 doesn't have any trouble -X signs point to Runner or PApplet changes between 98 and 99 -X commenting out applet.setupFrameResizeListener() -X in line 307 from Runner.java solved the problem -X http://dev.processing.org/bugs/show_bug.cgi?id=282 -X size of sketch different in setup() and draw() on linux -X make sure that the sketch isn't being sized based on bad insets -X problem with resizing the component when the frame wasn't resizable -X http://dev.processing.org/bugs/show_bug.cgi?id=341 -X major rework of the open() command -X add gnome-open/kde-open for with PApplet.open() -X add open (-a?) on osx to the open() command -X make changes in the javadoc and reference -X opengl crashes when depth sorting more than two textured shapes -X http://dev.processing.org/bugs/show_bug.cgi?id=560 - -ewjordan stuff (changes checked in) -X rect() changes size as it changes position -X http://dev.processing.org/bugs/show_bug.cgi?id=95 -X strange texture warping in P3D -X hint(ENABLE_ACCURATE_TEXTURES) -X http://dev.processing.org/bugs/show_bug.cgi?id=103 -X lines skip on 200x200 surface because of fixed point rounding error -X http://dev.processing.org/bugs/show_bug.cgi?id=267 -X this may be same as 95 -X Polygons parallel to z-axis not always filling with nonzero x or y -X http://dev.processing.org/bugs/show_bug.cgi?id=547 - - -0124 core -X with smooth() turned off, shouldn't be smoothing image on resize -X but on osx, apple defaults the image smoothing to true -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Programs;action=display;num=1164753510 -X http://developer.apple.com/documentation/Java/Conceptual/JavaPropVMInfoRef/Articles/JavaSystemProperties.html#//apple_ref/doc/uid/TP40001975-DontLinkElementID_6 -X background(0, 0, 0, 0) was resetting stroke, smooth, etc. -X make imageImpl() use WritableRaster in an attempt to speed things up -X fix weird situation where fonts used in more than one renderer wouldn't show -X opengl doesn't draw a background for the raw recorder -X change P3D to smooth images nicely (bilinear was disabled) -X ambientLight(r,g,b) was still ambientLight(r,g,r) -X http://dev.processing.org/bugs/show_bug.cgi?id=465 -X fix from dave bollinger for the POSTERIZE filter -X http://dev.processing.org/bugs/show_bug.cgi?id=399 -X fix PImage regression in 0124 and the cache crap -X added a version of trim() that handles an entire array -X removed contract(), one can use expand() and subset() instead -X backgroundColor to cccccc instead of c0c0c0 -X loadImage() requires an extension, maybe add a second version? -X loadImage("blah", "jpg"); -X otherwise people have to use strange hacks to get around it -X also chop off ? from url detritus -X also just pass off to default createImage() if no extension available -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Syntax;action=display;num=1165174666 -X http://dev.processing.org/bugs/show_bug.cgi?id=500 -X java 1.5.0_10 breaks jogl -X add error message to p5 about it -X http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6504460 -X http://www.javagaming.org/forums/index.php?topic=15439.0 -X upgrade to 1.5.0_11 or later: -X http://java.sun.com/javase/downloads/index_jdk5.jsp -X or downgrade to 1.5.0_09 -X http://java.sun.com/products/archive/j2se/5.0_09/index.html -X no disk in drive error -X was this something that changed with the java updates? (1.5_10) -X doesn't seem to be, still not sure -X problem was the floppy drive.. gak -X http://dev.processing.org/bugs/show_bug.cgi?id=478 -X copy() sort of broken in JAVA2D -X example sketch posted with bug report -X http://dev.processing.org/bugs/show_bug.cgi?id=372 -o saveStrings(filename, strings, count) -o otherwise the save is kinda wonky -o or maybe that should just be done with the array fxns - -fixed earlier -o sketches often freeze when stop is hit on an HT machine -o need to test the examples cited on pardis' machine -o http://dev.processing.org/bugs/show_bug.cgi?id=232 -X debug NumberFormat InterruptedException on dual proc machine -X use notify() instead of interrupt()? -X or Thread.currentThread() should be checked first? -o svg loader is on the list for 1.0 -o maybe include as part of PApplet (casey thinks so) -X using gl, lines don't show up in pdf with record (they're ok with p3d) -X http://dev.processing.org/bugs/show_bug.cgi?id=325 -o with network connection -o download a copy of the source for 0069, get the renderer -o svn mv PGraphics2 PGraphicsJava -o version of BApplet that replaces g. with ai. or pdf. - - -0123 core -X setup() and basic mode apps not working -X http://dev.processing.org/bugs/show_bug.cgi?id=463 - - -0122 core -X noiseSeed() only works once, before the arrays are created -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1162856262 -X make lerpColor honor the current color mode -X lerpColor(c1, c2, amt, RGB/HSB/???) -o test this out for a bit -o though that's awkward b/c colors always RGB -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Suggestions;action=display;num=1160096087 -X regression in P3D that prevents point() from drawing -X problem is with setup_vertex() not adding similar points -X http://dev.processing.org/bugs/show_bug.cgi?id=444 -X if doing openstream on url, says that "the file" is missing or invalid -X add notes about it being a url - -fixed earlier, bug cleaning -X gray background in pdf (using both gl and p3d) -X http://dev.processing.org/bugs/show_bug.cgi?id=324 -X verified as fixed in 0122 - - -0121 core -X need to document changes to int() (no longer accepts boolean) -X background(0, 0, 0, 0) is the way to really clear everything with zeroes -X or background(0, 0), but the former is prolly better conceptually -X how to clear the screen with alpha? background(0, 0, 0, 0)? -o background(EMPTY) -> background(0x01000000) or something? -X size(), beginRecords(), beginRaw(), createGraphics() -X broken for file-based renderers in 0120 -X http://dev.processing.org/bugs/show_bug.cgi?id=434 - - -0120 core -X fixed error when using hint(ENABLE_NATIVE_FONTS) with JAVA2D -X java.lang.IllegalArgumentException: -X null incompatible with Global antialiasing enable key -X fix issue where ambientLight(r, g, b) was instead ambientLight(r, g, r) -X http://dev.processing.org/bugs/show_bug.cgi?id=412 -X createFont() should always use native fonts -X need to warn that fonts may not be installed -X recommend that people include the ttf if that's the thing -X or rather, that this is only recommended for offline use -X fix 3D tessellation problems with curveVertex and bezierVertex -X actually was z = Float.MAX_VALUE regression -X http://dev.processing.org/bugs/show_bug.cgi?id=390 -X two examples in sketchbook -X this has been reported several times -X concave polygons having trouble if points come back to meet -X tesselator/triangulator gets confused when points doubled up -X might need to avoid previous vertex hitting itself -X http://dev.processing.org/bugs/show_bug.cgi?id=97 -X graphics gems 5 has more about tessellation -X polygons perpendicular to axis not drawing -X is this a clipping error? -X probably a triangulation error, because triangles work ok -X http://dev.processing.org/bugs/show_bug.cgi?id=111 -X problem is that the area of the polygon isn't taking into account z -X lookat is now camera(), but not fixed in the docs -X add notes to the faq about the camera changes on the changes page -o update run.bat for new quicktime -o unfortunately this is messy because qtjava sometimes has quotes -o and qtsystem might be somewhere besides c:\progra~1 -X run.bat has been removed from current releases -X registering font directories in pdf.. is it necessary? -X (commented out for 0100) -X re-added for 0120 -o when re-calling size() with opengl, need to remove the old canvas -o need to check to see if this is working properly now -X passing applet into createGraphics.. problems with re-adding listeners -X since the listeners are added to the PApplet -X i think the listeners aren't re-added, but need to double check -X createGraphics() having problems with JAVA2D, and sometimes with P3D -X http://dev.processing.org/bugs/show_bug.cgi?id=419 -X with default renderer, no default background color? -X only sometimes.. why is this? -X only call defaults() when it's part of a PApplet canvas -X make sure that defaults() is no longer necessary -X don't want to hose PGraphics for others -X both for pdf, and making background transparent images -X PGraphics3D should alloc to all transparent -X unless it's the main drawing surface (does it know on alloc?) -X in which case it should be set to opaque -X have createGraphics() create a completely transparent image -X and also not require defaults() to be called -X make a note in the createFont() reference that 1.5 on OS X has problems -o if calling beginPixels inside another, need to increment a counter -o otherwise the end will look like it's time to update -o which may not actually be the case -o i.e. calling filter() inside begin/end block -X get creating new PGraphics/2/3 working again -X http://dev.processing.org/bugs/show_bug.cgi?id=92 -X maybe createGraphics(200, 200) to create same as source -X createGraphics(200, 200, P2D) to create 2D from 3D -X also, drawing a PGraphics2 doesn't seem to work -X new PGraphics2 objects are set as RGB, but on loadPixels/updatePixels -X they're drawn as transparent and don't have their high bits set -X problems between modelX between alpha and beta -X http://dev.processing.org/bugs/show_bug.cgi?id=386 -X y may be flipped in modelX/Y/Z stuff on opengl -X is this the same bug? assuming that it is - -in previous releases -X when using PGraphics, must call beginFrame() and endFrame() -X also need to be able to turn off MemoryImageSource on endFrame -X call defaults() in beginFrame() -X should PGraphics be a base class with implementations and variables? -X then PGraphics2D and PGraphics3D that subclass it? -X (or even just PGraphics2 and PGraphics3) -X also rename PGraphics2 to PGraphicsJava -X it's goofy to have the naming so different -X tweak to only exit from ESC on keyPressed -o probably should just make this a hint() instead -X just documented in reference instead -o metaballs example dies when using box() -o long string of exceptions, which are also missing their newlines -X grabbing sun.cpu.endian throws a security exception with gl applets -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Contribution_3DOpenGL;action=display;num=1114368123 - - -0119 core -X add saveStream() method -X change to handle Java 1.5 f-up where URLs now give FileNotFoundException -X http://dev.processing.org/bugs/show_bug.cgi?id=403 -X add unlerp() method - - -0118 core -X replace jogl.jar with a signed version -X fix the export.txt file for the linux release -X fix problem with setting the parent and the PDF renderer - - -0117 core -X no changes, only to the build scripts - - -0116 core -X make background() ignore transformations in JAVA2D -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1147010374 -o createGraphics to not require defaults() -X can't do, because an end() function must be called to clear the renderer -X add "hide stop button" arg for PApplet -X beginFrame/endFrame -> beginDraw/endDraw -X add new constant for the DXF renderer -X array utilities on Object[] are worthless.. fix it with reflection? -X see if reflection will allow expand for all class types -X expand, append, contract, subset, splice, concat, reverse -X typed version of array functions: -X append(), shorten(), splice, slice, subset, concat, reverse -X http://dev.processing.org/bugs/show_bug.cgi?id=115 -X fix issue where processing applets would run extremely fast -X after having been starved of resources where there framerate dropped -X http://dev.processing.org/bugs/show_bug.cgi?id=336 -X added color/stroke/tint/fill(#FF8800, 30); -X test imageio with images that have alpha (does it work?) -X nope, doesn't, didn't finish support -X http://dev.processing.org/bugs/show_bug.cgi?id=350 -X openStream() fails with java plug-in because non-null stream returned -X http://dev.processing.org/bugs/show_bug.cgi?id=359 -X update jogl to latest beta 5 -X make framerate into frameRate (to match frameCount) -X AIOOBE in P3D during defaults/background/clear -X PGraphics.clear() problem from workbench and malware stuff -X had to put synchronized onto draw and size() -X actually it'll work if it's only on size() -X the sync on the mac hangs an applet running by itself -X even though it seems to be ok for a component -X thread sync problem with allocation -X http://dev.processing.org/bugs/show_bug.cgi?id=369 -X major threading change to use wait()/notifyAll() instead of interrupt/sleep -X noLoop() at end of setup is prolly b/c of interruptedex -X need to not call Thread.interrupt() -X opengl + noLoop() causes InterruptedException -X check to see noLoop() breakage is fixed in 92 vs 91 -X checked, not fixed -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1115330568 -X http://dev.processing.org/bugs/show_bug.cgi?id=164 -X remove image(filename) and textFont(filename) et al. -X revision 115 may be saving raw files as TIFF format -X may be a bug specific to java 1.5 (nope) -X http://dev.processing.org/bugs/show_bug.cgi?id=378 -X saveFrame() not working for casey -X problem with tiff loading in photoshop etc -X check http:// stuff to see if it's a url first on openStream() -X it's the most harmless, since prolly just a MFUEx -X fix problem where root of exported sketch won't be checked -X http://dev.processing.org/bugs/show_bug.cgi?id=389 -X createFont not working from applets (only with .ttf?) -X throws a security exception because of the reflection stuff -X http://dev.processing.org/bugs/show_bug.cgi?id=101 -X urls with ampersands don't work with link() -X Runtime.getRuntime().exec("cmd /c start " + url.replaceAll("&","^&")); -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1149974261 -X fix bug where smooth() was shut off after using text -X (that had the smoothing turned off when used in "Create Font") -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1148362664 -X fix dxf to use begin/endDraw instead of begin/endFrame -X fixes axel's bug with dxf export -X set default frameRate cap at 60 -X otherwise really thrashing the cpu when not necessary -X jpeg loading may be extremely slow (loadBytes?) -X seems specific to 0115 versus the others -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1158111639 -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1154714548 -X http://dev.processing.org/bugs/show_bug.cgi?id=392 -X loadImage() problems with png and jpg -X actually it's an issue with some types of jpeg files -X http://dev.processing.org/bugs/show_bug.cgi?id=279 -X java.lang.IllegalArgumentException: -X Width (-1) and height (-1) cannot be <= 0 -X identical to what happens when the image data is bad -X for instance, trying to load a tiff image with the jpg loader -X http://dev.processing.org/bugs/show_bug.cgi?id=305 -o blend() mode param should be moved to the front -X nah, works better with the other format -X make sure there's parity with the copy() functions -X remove single pixel blend functions -o blend() should prolly have its mode be the first param -X move blend() to blendColor() when applying it to a color -X added lerpColor(), though it needs a new name -X went back to old image i/o (sometimes caused trouble when exported) -X http://dev.processing.org/bugs/show_bug.cgi?id=376 -X change reader() to createReader() for consistency? -X though printwriter is odd for output.. -X also createWriter() and the rest -o add to docs: save() on a PImage needs savePath() added -X hint(DISABLE_NATIVE_FONTS) to disable the built-in stuff? -X or maybe this should be hint(ENABLE_NATIVE_FONTS) instead? -X figure out default behavior for native text fonts -X make sure insideDrawWait() is in other resize() methods -X begin/end/alloc waits to PGraphicsJava2D, PGraphicsOpenGL, PGraphics3D -X fix bug with fill(#ffcc00, 50); -X toInt() on a float string needs to work -X need to check for periods to see if float -> int first -X shape changes -X remove LINE_STRIP - tell people to use beginShape() with no params -X remove LINE_LOOP - tell people to use endShape(CLOSE) -o also remove POLYGON? -X may as well remove it -X though something still needed as an internal constant -X add endShape(CLOSE) or CLOSED -X when running as an applet, sketchPath won't be set -X change the error message slightly -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Syntax;action=display;num=1153150923 -X use parseFloat instead of toFloat()? to be consistent with javascript -X also clean up some of the casting silliness - -more recent -X only update mouse pos on moved and dragged -X http://dev.processing.org/bugs/show_bug.cgi?id=170 -X also updates a bug that caused sketches to jump in funny ways - -fixed in 0115 / quicktime 7.1 -X color values on camera input flipped on intel macs -X checked in a change for this recommended on qtjava list -X http://dev.processing.org/bugs/show_bug.cgi?id=313 - -really old stuff -o get loop, noLoop, redraw, and framerate all working in opengl -o needs custom animator thread.. -o depth() shouldn't be needed for opengl unless actually 3D -o right now the camera doesn't get set up unless you call depth() -o box and sphere are broken in gl -o what should the update image function be called? - - -0115 core -X remove debug message from loadPixels() -X remove debug message from PGraphics2.save() -X fix error message with dxf when used with opengl -X if file is missing for reader() -X return null and println an error rather than failing -X add arraycopy(from, to, count); -X fix fill/stroke issues in bugs db (bug 339) -X saveTIFF, saveHeaderTIFF, saveTGA no longer public/static in PImage -X this was a mistake to expose the api this way -X more image file i/o in java 1.4 -X add dynamic loading of the jpeg, png, and gif(?) encoder classes -X http://dev.processing.org/bugs/show_bug.cgi?id=165 -X http://java.sun.com/products/java-media/jai/index.jsp -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Programs;action=display;num=1120174647 -X P5 cannot read files generated by saveFrame() -X need to update docs re: tga -X and add support for reading its own uncompressed TIFs -X http://dev.processing.org/bugs/show_bug.cgi?id=260 - - -0114 core -X added createGraphics(width, height, renderer) -X no need to use (..., null) anymore -X fix set() for JAVA2D, also fixes background(PImage) for JAVA2D -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Syntax;action=display;num=1145108567 -X remove "max texture size" debug message -X flicker with depth sort enabled -X implement basic depth sorting for triangles in P3D and OPENGL -X add option to sort triangles back to front so alpha works -X http://dev.processing.org/bugs/show_bug.cgi?id=176 -o at least add it to the faq, or this would be a test case w/ the sorting - - -0113 core -X fix for open() on macosx submitted by chandler - - -0112 core -X saveFrame() issues with JAVA2D on osx -X http://dev.processing.org/bugs/show_bug.cgi?id=189 -o implement hint(NO_DEPTH_TEST) for opengl -X already done hint(DISABLE_DEPTH_TEXT); -X check min/max texture sizes when binding to avoid problems -X minimum texture size may be 64x64 -X maximum appears to be 2048, on macs maybe 512 -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Contribution_3DOpenGL;action=display;num=1137130317 -X fix non-bound textures from mangling everything else -X http://dev.processing.org/bugs/show_bug.cgi?id=322 -X fix enable/disable textures for some objects -X also a big problem for fonts -X calling updatePixels() on each frame fixes the issue (sorta) -X images are memory leaking pretty badly -X texture re-allocated on each frame -X lighting bug introduced in rev 109 -X spotLight has troubles with an invalid value -X probably somethign weird about the params (3 vs 4) being sent -X the first spotLight works fine, it's something with the second -X (the one that follows the mouse) -X just something to debug in the example -X regression from contributed code.. -X was using apply() instead of set() in PMatrix inverse copy -X filter() is also broken (not rewinding the intbuffer) -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Contribution_3DOpenGL;action=display;num=1144561113 - -sound has been removed -o duration as an internal param, not a function -o When a sound is finished playing, -o it should return to 0 so it can play again -o Putting sound.loop() in draw() seemed to spawn multiple sounds threads? -o After a sound is paused, it will only play from where it was paused -o to its end and will not loop again -o The ref in PSound2 says volume accepts vals from 0...1 -o but values larger than one increase the volume. -o SoundEvent // is sound finished?? Can't access now. -o make java 1.1 version of PSound work properly -o merge PSound and PSound2 via reflection? -o once debugged, merge these back together and use reflection -o (unless it's a messy disaster) -o Unsupported control type: Master Gain -o what's actually causing this error? -o http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1115467831 -o PSound.play() won't play the sound a 2nd time (reopened) -o http://dev.processing.org/bugs/show_bug.cgi?id=208 -o loadSound apparently broken in java 1.5? -o http://dev.processing.org/bugs/show_bug.cgi?id=285 -X need to just remove PSound altogether - - -0111 core -X need to have a better way of getting/figuring out the endian -X use ByteOrder class in jdk 1.4, since issue is local to JOGL -X security ex when run as an applet -X also can no longer assume that macosx is big endian -X http://dev.processing.org/bugs/show_bug.cgi?id=309 -o making 'run' synchronized caused a freeze on start w/ opengl -X display() as a function name is problematic -X causes nothing to show up.. either rename or mark it final -X http://dev.processing.org/bugs/show_bug.cgi?id=213 -X fix for lights throwing a BufferOverflowException - - -0110 core -X finish updates for osx and opengl -X http://developer.apple.com/qa/qa2005/qa1295.html -X find/build universal version of jogl - - -0109 core -X loadImage("") produces weird error message -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Programs;action=display;num=1136487954 -X still having strokeCap() problems -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1134011764 -X fixes contributed by willis morse to deal with memory wastefulness -X should help speed up some types of OPENGL and P3D mode sketches - - -0108 core -X image(String filename, ...) and textFont(String filename, ...) implemented -X add notes to faq about video fix -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=VideoCamera;action=display;num=1134871549 -X look into code that fixes crash on camera.settings() -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=VideoCamera;action=display;num=1139376484 -X finish dxf writer that'll work with recordRaw() - - -0107 core -X no changes, only fixes for "save" bugs - - -0106 core -X fix bug where more than 512 vertices would cause trouble in P3D and OPENGL - - -0105 core -X fix some issues with beginRaw and opengl - - -0104 core -X don't open a window the size of the pdf if in pdf mode -X need to have some sort of flag in the gfx context that it's visible or not -o handled inside updateSize()? -X if it doesn't display to the screen, needs to never show a window -X basically if the main gfx context isn't viewable, close the window -X since it may have already been opened at 100x100 -X avoid opening it in the first place? -X added toolkit getFontMetrics() for shape mode fonts to be able to change size -X recordRaw() to a PGraphics3 should send 3D data. -X but recordRaw() to a PGraphics(2) should send only 2D data. - - -0103 core -X fix stack overflow problem -X bug in itext implementation on osx (10.4 only?) -X http://www.mail-archive.com/itext-questions@lists.sourceforge.net/msg20234.html - -in previous releases -X recordFrame() and beginFile()/endFile() -X how to deal with triangles/lines and triangleCount and lineCount -X maybe just need a triangleImpl and lineImpl -X because it's too messy to retain the triangle objects and info -X calling recordFrame() from mousePressed is important -X dangerous tho because mouse fxn called just before endFrame - - -0102 core -X no changes, windows-only release to deal with processing.exe - - -0101 core -X add dispose() call to the shutdown part of PApplet - - -0100 core -X user.dir wasn't getting set properly -X when graphics can be resized, resize rather than creating new context -X change savePath() et al a great deal, include better docs -X http://dev.processing.org/bugs/show_bug.cgi?id=199 -X straighten out save() and saveFrame() -o use File object for when people know what they're doing? -X same issue occurs with pdf and creating graphics obj - -get initial version of pdf working -X get rid of beginFrame/endFrame echo to recorders? -X that way begin/end can just be where the recorder starts/stops? -X recordRaw is really confusing.. -X when to use beginFrame/endFrame -X is beginRaw/endRaw really needed? -X seems to be a problem that it's an applet method -X but then it's called on the g of the applet -X but then it's the recorderRaw of that g that gets it called.. -X how to flush when the sketch is done -X inside dispose method? explicit close? -X call exit() at end of pdf apps? exit calls dispose on gfx? -X beginRecord() and endRecord() so that record doesn't stop after frame? -X enable PGraphicsPDF for inclusion -X write documentation on images (they suck) and fonts (use ttf) - - -0099 core -X removed playing() method from PSound -X integrate destroy() method from shiffman as dispose() in PSound2 -X ComponentListener is probably what's needed for resize() -X make sure that components can be resized properly via size() -X http://dev.processing.org/bugs/show_bug.cgi?id=209 -X or that it properly responds to a setBounds() call -X calling size() elsewhere in the app doesn't quite work -X A second call to size almost works. -X The buffer apparently gets allocated and saveFrame saves the -X new size but drawing appears to be disabled. -X http://dev.processing.org/bugs/show_bug.cgi?id=243 - - -0098 core -X change recordShapes() to just record() and recordRaw() -X width, height set to zero in static mode -X http://dev.processing.org/bugs/show_bug.cgi?id=198 -X probably only set when resize() is called, and it's not happening -X be careful when fixing this, bugs 195/197 were a result: -X http://dev.processing.org/bugs/show_bug.cgi?id=195 -X http://dev.processing.org/bugs/show_bug.cgi?id=197 -X PSound.play() won't play the sound a 2nd time -X (have to call stop() first) -X http://dev.processing.org/bugs/show_bug.cgi?id=208 - - -0097 core -X no changes, only export to application stuff - - -0096 core -X set applet.path to user.dir if init() is reached and it's not set -X add DISABLE_DEPTH_TEST to PGraphics3 -X need to document this somewhere -X also need to add to PGraphicsGL -X access logs are being spammed because openStream() gets a 404 -X the default should be to check the .jar file -X openStream() doesn't work with subfolders -X http://dev.processing.org/bugs/show_bug.cgi?id=218 -X screwed up movie loading paths (quick fix) -X http://dev.processing.org/bugs/show_bug.cgi?id=216 -X additional cleanup in the Movie class -X make path thing into getPath() or something? -X sketchPath(), dataPath(), savePath(), createPath() -X applet shouldn't be resizing itself -X opens at correct size, then makes itself small, then large again -X setup() mode apps often don't open at the correct placement -X because of their resizing -X check into bug where applet crashing if image not available -X probably need to add a hint() to make things not halt -X loadBytes() and openStream() et al need to return null -X loadImage() can too, but print an error to the console -X "not available in P3D" should read "OPENGL" in opengl lib -X keypressed ref: repeating keys -X also remove "no drawing inside keypressed" -X text block wrap problem with manual break character (\n) -X http://dev.processing.org/bugs/show_bug.cgi?id=188 - -draw mode issues -X when run externally without a draw, applets will exit immediately -X when run internally (no code folder or .java files) will just wait -X shouldn't quit draw mode apps immediately -X otherwise something gets drawn then the applet exits -X should instead use exit() when they need to exit -X NullPointerException when no draw() -X http://dev.processing.org/bugs/show_bug.cgi?id=210 -X window closing immediately with library imports -X http://dev.processing.org/bugs/show_bug.cgi?id=204 -X check into loadImage() with jars bug, very frustrating -o when using loadImage() on a jar, turn off "no cache" option? -X image no load halts the program (rather than returning null) -X note in the reference: png images work with java 1.3+ -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=WebsiteBugs;action=display;num=1125968697 -X add bug re: gif image break missing to revisions.txt -X http://dev.processing.org/bugs/show_bug.cgi?id=217 - -image pile -X get loadImage() to work properly with data folder -X should probably use the code from loadStream -X and the url stuff should be an alternate method altogether -o loadImage() seems to be caching everything from the jar -X http://java.sun.com/developer/technicalArticles/Media/imagestrategies/index.html -o make a note of how to disable this -o http://processing.org/discourse/yabb/YaBB.cgi?board=Programs;action=display;num=1078795681 -o bizarre image loading error with c_Rollover.zip -X couldn't find/replicate this -o read uncompressed tiff -X read uncompressed tga files. -X http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_Software;action=display;num=1081190619 -X http://processing.org/discourse/yabb/YaBB.cgi?board=Tools;action=display;num=1066742994 -o updated png encoder -o http://processing.org/discourse/yabb/YaBB.cgi?board=Syntax;action=display;num=1083792994 - -older stuff, no longer an issue -o don't cache stuff from loadStrings and others -o mac java vm won't give up old version of file -o or use setUseCaches(false) -o too many push() will silently stop the applet inside a loop -X allow save(), saveFrame() et al to properly pass in absolute paths -X (so that it doesn't always save to the applet folder) -X could require that save() takes an absolute path? -X loadImage must be used inside or after setup -X either document this and/or provide a better error message -X http://processing.org/discourse/yabb/YaBB.cgi?board=Programs;action=display;num=1060879468 -X expose function to write tiff header in PImage (advanced) -X helps with writing enormous images -X tag release 93 (francis thinks it's rev 1666) - - -0095 core -X undo the fix that causes the width/height to be properly set - - -0094 core -X fix bug that was causing font sizes not to be set on opengl -X http://dev.processing.org/bugs/show_bug.cgi?id=174 -X apply fix from toxi to make targa files less picky -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1127999630 -X "folder" has been renamed to "path" to match savePath(). -X added "dataPath" to return the full path to something in the data folder -X savePath should maybe be appletPath or sketchPath -X because can be used for opening files too -X (i.e. if needing a File object) -X width, height set to zero in static mode -X probably only set when resize() is called, and it's not happening -X g.smooth is always false in opengl -X http://dev.processing.org/bugs/show_bug.cgi?id=192 - -o triangleColors are different because they're per-triangle -o as opposed to per-vertex, because it's based on the facet of the tri -X make vertexCount etc properly accessible in PGraphics3 -X so that people can do things like the dxf renderer -X also have a simple way to hook in triangle leeches to PGraphics3 -X this exists, but needs to be documented, or have accessors - - -0093 core -X upgrade jogl to a newer rev to fix osx "cannot lock" issues -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1118603714 -X http://192.18.37.44/forums/index.php?topic=1596.msg79680#msg79680 -X faster blur code contributed by toxi -X filter(ERODE) and filter(DILATE) contributed by toxi -o textAscent() should probably be g.textAscent instead -o more like textLeading() etc -X nope, because it requires grabbing the font metrics and other calculations -X bezierDetail, curveDetail made public -X added textMode(SHAPE) for OPENGL -X error message saying that strokeCap and strokeJoin don't work in P3D -X textMode(SHAPE) throws ex when drawing and font not installed -X fix a bug with filename capitalization error throwing -X add NO_DEPTH_TEST to PGraphics3 -X java 1.4 code snuck into PApplet, causing problems on the mac -X http://dev.processing.org/bugs/show_bug.cgi?id=146 -X prevent PGraphics.save() from inserting a file prefix -X so that people can use absolute paths -X or add a version that takes a file object - -nixed or fixed in previous releases -X textMode(SCREEN) having issues on Mac OS X -X seem to be problems with updatePixels() on the mac -X appears to run asynchronously -X move zbuffer et al into PGraphics so that people don't have to cast to P3 -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Contribution_3DOpenGL;action=display;num=1116978834 -o noLoop() is behaving strangely -o http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1116002432;start=0 - - -0092 core -X rle-compressed tga save() method added by toxi -X also version that only saves RGB instead of ARGB -X proper/consistent api to access matrices in PGraphics/PGraphics3 -X first use loadMatrix(), then m00, m01 etc -X find the post on the board and make a note of this -X proper api for access to Graphics2D object in PGraphics2 -X just add the current "g2" thing to the faq -X and make a note of it on the suggestions board -X vars like cameraX etc need to be in PGraphics -X otherwise g.xxxx won't work -X how far should this go? vertices etc? -X vertices not included because switching to triangleImpl and lineImpl -X fix for copy() in java2d to make things a little speedier -X make PApplet.main() for java 1.3 friendly (Color class constants) -X remove call to background() in PGraphics2 -o change PGraphics to PGraphics2 -o or not, because PGraphics has all the base stuff for 3D -o change PGraphics2 to PGraphicsJava or PGraphicsJava2D -o maybe wait until the new shape stuff is done? -X move font placement stuff back into PGraphics? -X figure out how to get regular + java fonts working -X use that do drive how the api is set up -X optimize fonts by using native fonts in PGraphics2 -X especially textMode(SCREEN) which is disastrously slow -X in java2d, can quickly blit the image itself -X this way, can isolate it for gl too, which will use glBitmap -X danger of this setup is that it may run much nicer for the author -X i.e. with the font installed, and then super slow for their users -X add "smooth" as a field inside the font file -X and when smooth field is set, make sure JAVA2D enables smoothing -X since otherwise smooth() has to be called for the whole g2 -X rob saunders contributed a fix for a bug in PImage.copy() -X the wrong boundaries were being copied in the code -X fix bug where noLoop() was waiting 10 secs to call exit() -X add ability to draw text from the current text position - - -0091 core -X change to synchronization to hopefully fix some update issues -X curveVertex() problem in P2D when > 128 points fixed -_ http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1115856359;start=0 -X for present mode, need to set a default display -X currently crashes if only --present is specified w/o --display -o make the 1.4 code in PApplet load via reflection -X doesn't appear necessary with 1.3 applets -o or is some of the stuff usable in 1.3 but not all? -o ie. the device config classes exist but not the set full screen method -X currently some bugs in the main() because it's not sizing applets -X if running in present mode it works ok -X but that also needs its display set.. argh -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1115834600;start=0 -X add exit() function to actually explicitly quit -X scripts will just require that people include exit at the end -X esc should kill fullscreen mode (actually now it just quits anything) -X can a key handler be added to the window? not really -X add an escape listener to the applet tho.. but will it work with gl? -X how can this be shut off for presentations? -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1114027594;start=0 -X present mode wasn't reading the stop button color -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Suggestions;action=display;num=1116166897;start=0 -X cleaned up the createFont() functions a little -X java 1.3 required message isn't clickable -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1117552076 - - -0090 core -X added arraycopy() function that calls System.arraycopy() -X also the useful shortcut fxn - - -0089 core -X no changes since 88 - - -0088 core -X createFont crashes on verdana (win2k) -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1115258282;start=0 -X made ceil(), floor(), and round() return ints instead of floats -X fix for PSound: Unsupported control type: Master Gain -X just shuts off the volume control -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1115467831;start=0 - -cleared out / completed in previous releases -X typed version of expand() and contract() -o fishwick bug with text() and shapes -o ellipses no longer completed when g.dimensions = 2 or 3, -o or not even drawn.. what a mess. -X go through and figure out what stuff to make public -o depth testing of lines vs text is problematic -o probably need to patch in an older version of the line code -o use depth()/noDepth() to handle depth test -X on exceptions, use die to just kill the applet -X make the file i/o stuff work more cleanly -X if people want to use their own file i/o they can do that too -o this could also be contributing to the hanging bug -X static applets need to be able to resize themselves on 'play' -X figure out what to do with static apps exported as application -X needs to just hang there -o scripts (w/ no graphics) will need to call exit() explicitly -o actually.. just override the default draw() to say exit() -X may need a fileOutput() and fileInput() function -X to take care of exception handling -o or maybe scripts are just handled with a different method? (yech) -o or maybe setup() can actually throw and Exception? -o but that's inserted by the parser, and hidden from the user? -o implement size(0, 0) -> just doesn't bother doing a frame.show(); -o too abstract, just have draw() call exit by default -o so if nothing inside draw, just quits -o make properly exit after things are finished -o still some weirdness with thread flickering on the mac -o and frenetic display updates on the pc -o move really general things out of PConstants (X, Y, Z..) ? -X add something to PApplet to have constants for the platform -o needed for error messages (don't talk about winvdig on mac) -X and also useful for programs -X bring screen space and font size settings back in to PGraphics -X causing too much trouble to be stuck down in PFont - - -0087 core - -fixed in previous releases -X The PushPop example in Transformations is not working -X with lights() callled -X The transparency of the Rotate3D example in Translformations -X is not as expected -X lighting totally sucks (both PGraphics3 and PGraphicsGL) -X bring in materials for opengl as well? -X don't include a class, just make it similar to the light functions -X sphere() and box() should set normals and take textures -X background color seems to be wrong? -X check this once lighting actually works -X printarr() of null array crashes without an error -X actually, errors from many crashes not coming through on the mac? - - -0086 core -X java 1.4 getButton() was inside the mouse handler -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1114147314;start=3 -X color() doesn't work properly because g might be null? -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1114518309;start=0 -X textMode(RIGHT) etc causing trouble.. tell ppl to use textAlign() -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Syntax;action=display;num=1114219121;start=4 -X saveFrame with a filename still causing trouble: -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1114097641;start=0 -X fov should be in radians -X present mode not working on macosx 10.2? -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1114381302;start=0 -X ex on endshape if no calls to vertex -X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1113940972 -X is camera backwards, or staying fixed and moving the scene? -X camera() is broken, should be ok to call it at beinning of loop -X end of lookat might be backwards -X or endCamera might be swapping camera and cameraInv -X beginCamera also grabs it backwards - - -0085 core -X camera() was missing from PGraphics -X some tweaks to openStream() for loading images and less errors -X basic clipping in P3D from simon - - -0084 core -X fixed create font / incremented font file version number -X simon lighting fixes -X added simon's lighting docs to lights() fxn in javadoc -X set default stroke cap as ROUND -X otherwise smooth() makes points disappear -X hack for text with a z coordinate - - -0083 core -X fix double key events -X fix mrj.version security error on the pc -X set() fixes for PGraphics2 and setImpl inside PGraphics -X remove angleMode (also from PMatrix classes) -X remove/rename postSetup() stuff from PGraphics/PApplet -X camera(), perspective(), ortho() -X matrix set by the camera on each beginFrame -X push/pop are now pushMatrix/popMatrix -o get PGraphics.java engine working again - -lighting stuff -X make fill() cover ambient and diffuse -X provide separate call for ambient to shut it off -o why does diffuse just mirror fill()? -o seems to cover just diffuse, not ambient_and_diffuse like fill -o maybe fill() should set diffuse, and sep call to ambient() sets ambient? -X removed it -X move dot() to the bottom w/ the other math - -already done -X remove PMethods as actual class, use recordFrame(PGraphics) -X size(200, 200, "processing.illustrator.PGraphicsAI"); - -api questions -o image(String name) and textFont(String name) -o do we change to font(arial, 12) ? -X remove angleMode() ? -X be consistent about getXxx() methods -X just use the variable names.. don't do overkill on fillR et al -X or just what functions are actually made public -X is fillRi needed? it's pretty goofy.. -X how to handle full screen (opengl especially) or no screen (for scripts) - -tweaking up simong light code -o what's up with resetLights? -o add PLight object to avoid method overflow -o preApplyMatrix, invApplyMatrix? -o applyMatrixPre and applyMatrixIn -o rotateXInv is ugly.. -o irotateX?, papplyMatrix? - -wednesday evening -X expose api to launch files, folders, URLs -X use with/in place of link() -X call it open() -X what to call firstMouse -X implement rightMouse? -X yes, mouseButton = LEFT, CENTER, or RIGHT -X error when running on 1.1... -X You need to install Java 1.3 or later to view this content. -X Click here to visit java.com and install. -X make inverseCamera into cameraInv -X fix messages referring to depth() -X route all of them through a single function rather than current waste -X fix bezierVertex() in P3D for newer api - -wednesday late -X track loadImage() with filenames that are inconsistent -X really a problem with the ves61r kids -X i.e. mixed case filename in sketch is different in windows -X but when uploaded to a unix server causes a serious problem -X use canonicalPath to flag possible problems -X http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1096508877;start=5 -o fix shapes in P3D (line loop, polygons, etc) -o should we include a from and to for the directional light? -X no, cuz it doesn't do much really.. -X fromX-toX etc is all that's different - -thursday day -X set modelview to camera on endCamera -X add ortho() and perspective() to PGraphics.java - -thursday evening -o textMode(ALIGN_LEFT) etc, should make sure that left/center/right not used -X though since have to change to LEFT, should be easy to switch - -friday night -o should toInt('5') return the ascii or the char? -X since (int) '5' returns the ascii, that's what it does -X made a note in the PApplet reference - -text api -X textMode ALIGN_CENTER _LEFT _RIGHT -> CENTER, LEFT, RIGHT ? -X use built-in font if available? yes -o text() with \n is semi-broken -X does the font or PApplet control the size? (the font, ala java) -X without setting the font, SCREEN_SPACE comes out weird -o move SCREEN_SPACE into ScreenFont() class? -o probably not, casey thinks screen space text is prolly more useful -o that way can clear up some of the general confusion in the code -X textFont with a named font can use the renderer/os font -X illustrator api can get the ps name from the java font name -X since it's associated with the font file.. wee! -X for postscript, can grab the real font -o altho problem here is that really the fonts just need a name -o since needs to render to screen as well -o font has to be installed to get psname -X fine because why would you embed a ps font that you don't have? -o need to resolve SCREEN_SPACE vs OBJECT_SPACE -o can this be auto-detected with noDepth()? -o how does rotated text work? -o PFont.rotate(180) rotate(PI) -o or can this be detected from the matrix? -X don't use pixels to do screen space text inside PFont -X add a function in PGraphics for direct pixel image impl -X store the font name in the vlw font file (at the end) -o could include multiple names for multi platforms -X get text impl stuff working properly -o look into fixing the texture mapping to not squash fonts -o NEW_GRAPHICS totally smashes everything - -friday postgame -X implement createFont() -X with a .ttf does a create font internally (1.3+ only) -X although the images aren't populated -X until a P2D/P3D/OPENGL tries to draw them, which triggers it -X but if PGraphics2, just uses the built-in font -X also works for font names and just creating them -X if font name doesn't end with otf or ttf, then tries to create it -X change objectX/Y/Z to modelX/Y/Z -X PFont.list() to return string list of all the available fonts -X probably not a mode of use that we really want to encourage -X actually important because the whole graphicsdevice crap is silly -X and we need a 1.1 versus 1.3/1.4 version -X implement printarr() as println() ? -X actually deal with all the array types.. oy -X should nf() handle commas as well? -X just add a basic nfc() version for ints and floats -o yes, and add nf(int what) so that non-padded version works -o but don't put commas into the zero-padded version -o make nf/nfs/nfp not so weird -o nf(PLUS, ...) nf(PAD, ...) nfc(PLUS, ...) -X unhex was broken for numbers bigger than 2^31 - -saturday late afternoon -X fix bug with openStream() and upper/lowercase stuff -X do a better job of handling any kind of URLs in openStream() - -sunday morning -X incorporate simon's new lighting code - - -0082 core -X make jdkVersion, jdkVersionName, platform, platformName variables -X additional note about screen sizes and displays -X sto instead of stop in present mode -X appears that opengl libraries weren't correctly added in 81? -X requestFocus() now called on gl canvas -X basic lights now work by default - - -0081 core -X background(PImage) now works in opengl -X when running externally, applets don't always get placed properly -X if size is never set, then doesn't always layout -X problem is in gl and in core, and is inconsistent -X move more logic for layout into PApplet.. maybe a static method? -X this way can avoid duplicating / breaking things -o what is the stroked version of a sphere? a circle? -X write list of params that can be passed to PApplet -o document in the code a note about how size() et al place themselves -X saveFrame was double-adding the save path because of save() changes - -size(200, 200, P3D) - createGraphics and placement issues -X make pappletgl work back inside papplet -X and then size(300, 300, DEPTH) etc -X get rid of opengl renderer menu -o otherwise hint() to use the p5 renderer instead of java2d -X applet placement is screwy -X how to force PGraphics() instead of PGraphics2() -X size(300, 200, P2D); -X size() doing a setBounds() is really bad -X because it means things can't be embedded properly -o applets on osx (and windows) sometimes show up 20 pixels off the top -X how to shut off rendering to screen when illustrator in use? -X need size(30000, 20000) for illustrator, problem in papplet -X size(30000, 20000, ILLUSTRATOR) -X make Graphics2 et al load dynamically using reflection -X can this be done with g2 and if exception just falls back to g1? -X this way people can remove g1 by hand -o size() that changes renderer will throw nasty exception in draw() -X or maybe that's ok? document that no changing renderers? -X take a look to see what needs to happen to get PAppletGL merged in -X i.e. can i just extend GLCanvas? - -present mode -o call present() from inside the code? -o that if applet is 500x500, centers on a 800x600 window -X no, that's nasty... use --present to launch in present window -X though how do you get the screen size? -X screen.width and screen.height? - yes -X write java 1.4 code for full screen version of PApplet -X this might be used for presentation mode -X proper full screen code for present mode -X why do mouse motion events go away in full screen mode -X or with a Window object -X use screen manager to run present mode properly -X set both versions to require java 1.4 -X change the Info.plist inside macosx -X and add something to PdeBase to make sure that it's in 1.4 -X running present mode with a bug in the program hoses things -X make sure the program compiles before starting present mode - - -0080 core -X PApplet.saveFrame() is saving to sketch folder, PApplet.save() is not -X PApplet.save() will save to the applet folder, -X but PImage.save() or PGraphics.save() will save only to the current -X working directory, usually the Processing folder. -X removed static version of mask() from PImage -X no more PImage.mask(theImage, maskImage) -X just use theImage.mask(maskImage) -X PImage.filter() -X maybe use quasimondo's gaussian blur code? -X http://incubator.quasimondo.com/processing/gaussian_blur_1.php -o filter() on subsections? yes, in keeping with rest of api -X no, in keeping with getting shit done -X BLUR - write simple blur -X how does photoshop handle this? -X BLUR - add gaussian blur -X email re: credit/attribution and descrepancy between algos -X forgot to mention the line hack to get points working in 78 -X implemented PGraphicsGL.set(x, y, argb) -X implement PGraphicsGL.set(x, y, PImage) -X blend, copy, filter all implemented for opengl -X copy(Pimage, x, y) has become set(x, y, PImage) -X textMode -> textAlign -X ALIGN_LEFT, ALIGN_CENTER, ALIGN_RIGHT -> LEFT, CENTER, RIGHT -X textSpace -> textMode -X NORMAL_SPACE -> NORMALIZED, OBJECT_SPACE -> OBJECT -X text in a box is broken (at least for PGraphics2) -o check to see if it's a rounding error with width() -o get text rect working again (seems to be in infinite loop) -X nope, was just that the space width wasn't being scaled up properly -X clean up the javadoc so no more errors -X change mbox to PFont.size? -o make width() return values based on natural size? -X not a great idea.. plus java2d uses 1 pixel font for things -X email simon re: lighting api -X things are actually more on track than expected -X camera is swapping colors in gl (on mac?) -X in fact, all textures on mac were swapping colors -X test this on windows to see if fixed -X sphere x,y,z,r or box w,h,d.. need to make them consistent -X goodbye sphere(x, y, z, r) -o should available() be waiting() or something like that instead? -o go through and see what functions (no pixel ops?) frame recorders should have -X decided instead to use recordFrame(PGraphics) -o remove SCREEN_SPACE altogether? -X can't do this for now - -implemented in 79 -X make sure arc goes in the right direction that we want it to -X (make sure that PGraphics3 goes the same direction) - - -0079 core -X no changes to core in this release - - -0078 core -X text fixes -X lines were getting horizontally mashed together -X lines also getting vertically smashed together -X make a note of the change to font.width() -X backwards rects and backwards ellipses weren't properly drawn -X code now compensates for negative widths or swapped x1/x2 -X what to do about backwards images -X imageMode() wasn't being set properly -X fix noLoop() not properly running -X If noLoop() is called in setup(), nothing is drawn to the screen. -X also fix redraw() to include interrupt() again -X loadPixels throwing NPEs -X fixes to SCREEN_SPACE text not being sized properly -X loadPixels()/updatePixels() on screen space text (ouch) -X get SCREEN_SPACE text working again -X patch in newer jogl.. too many BSODs -X saveFrame seems to be broken -X fixed for PGraphics2 -X fixed for PGraphicsGL -X also implemented loadPixels/updatePixels for gl -X fix tint() with color and alpha for PGraphics2 -X alpha() colors are inverted (white is opaque.. doesn't make sense) -X should we swap this around? no - this is how photoshop works -X fix arc -X get() is back -X set camera.modified so that it draws properly -X it's annoying not having a copy() function inside PImage -X formerly get() with no params -o clone throws an exception -o PImage constructor that takes itself? -o PImage copy = new PImage(another); -X got rid of CONCAVE_POLYGON and CONVEX_POLYGON -X hack for points to work in opengl, but still not working broadly -X work on filter() functions -X POSTERIZE - find simple code that does it? -X there must be a straightforward optimized version of it -o EDGES - find edges in casey's example is differen than photoshop -o which version do people want with their stuff -X edges filter removed -X several fixes to Movie and Camera to work with the new gfx model -X PImage.get(x, y, w, h) had a bug when things went off the edge -X set defaults for strokeCap and strokeJoin -X get() and gl images were broken for screen sizes less than full size -X fix arcs, were badly broken between java2d and pgraphics -X look at curve functions more closely -X should we switch to curveVertex(1,2,3) (ala curveto) -X because some confusion with mixing types of curves -o make sure we don't want curveVertices(1,2,3,u,v) -o also make test cases so that java2d and java11 behave the same -X implement PGraphics2.curveVertex() -X updatePixels() not setting PApplet.pixels -X make loadPixels in PGraphics ignored, and put it in PApplet -X made loadStrings() and openStream(File) static again -X test loadPixels()/updatePixels()/saveFrame() on the pc -X better, just assume that they need the endian swap -X fixed draw mode apps for opengl -X (gl was missing a beginFrame) -X pmouseX, pmouseY are not working in OpenGL mode -X (as they are working in Processing mode) - -o screenX/Y aren't properly working for 2D points against a 3D matrix -o (ryan alexander rounding bug) -o Just to clarify, it works completely correctly with rounding -o screenX/Y and also using the 3 arg version of translate - -o ie translate(hw,hh,0) instead of just translate(hw,hh). -X no longer an issue because moving to 2D and 3D modes -o PImage: remove the static versions of manipulators? -o probably not, because they're inherited by PApplet -o i.e. mask(image, themask); -X no PImage needed b/c PGraphics is a PImage -o colorMode(GRAY) to avoid stroke(0) causing trouble? -o or maybe get rid of stroke(0)? hrm - - -0077 core -X bring back pmouseX/Y using a tricky method of storing separate -X values for inside draw() versus inside the event handler versions -X debug handling, and make firstMouse public -X explicitly state depth()/nodepth() -X don't allocate zbuffer & stencil until depth() is called -X arc with stroke only draws the arc shape itself -X may need a 'wedge' function to draw a stroke around the whole thing -X only allocate stencil and zbuffer on first call to depth() -X this will require changes to PTriangle and PLine inside their loops -X try running javadoc -X die() may need to throw a RuntimeException -o call filter() to convert RGB/RGBA/ALPHA/GRAY -o cuz the cache is gonna be bad going rgb to rgba -X don't bother, people can re-create the image or set cache null -X fix font coloring in PGraphics2 -X fix tint() for PGraphics2 -X get text working again -X partially the problem is with ALPHA images -X how should they be stored internally -X also colored text, requires tint() to work properly -X move textMode and textSpace back out of PFont -X use die() to fail in font situations -X can't, just use a RuntimeException - -covered in previous -X before graphics engine change, attach jogl stuff -X need to try jogl to make sure no further changes -X and the illustrator stuff -o massive graphics engine changes -o move to new graphics engine -o test with rgb cube, shut off smoothing -o make sure line artifacts are because of smoothing -o implement 2x oversampling for anti-aliasing -o renderers can plug in: -o at direct api level -o taking over all color() functions and vertex collection -o at endShape() level -o where vertices are collected by core and blit on endShape() -o (takes polygons and lines) -o at post tesselation level -o takes only line segments and triangles to blit (dxf writer) -o api for file-based renderers -o need to work this out since it will affect other api changes -o size(0, 0) and then ai.size(10000, 20000) -o size 0 is code for internal to not show any window -o saveFrame(PRenderer) or saveFrame("name", PRenderer) -o saveFrame gets called at the beginning of loop() -o or is just a message to save the next frame (problem for anim) -X vertices max out at 512.. make it grow -X add gzipInput and gzipOutput -X light(x, y, z, c1, c2, c3, TYPE) -X also BLight with same constructor, and on() and off() fxn -X make sure applet is stopping in draw mode -X loadImage() is broken on some machines -X hacked for a fix in 72, but need to better coordinate with openStream() - -postscript -X pushing all intelligence down into class that implements PMethods -o keep hints about type of geometry used to reconstruct -o no special class, just uses public vars from PGraphics -o how to hook into curve rendering so that curve segments are drawn -o maybe lines are rendered and sorted, -o but they point to an original version of the curve geometry -o that can be re-rendered -o also integrate catmull-rom -> bezier inverse matrices -o even with the general catmull-rom, to render via ai beziers - -api changes -X removed circle.. it's dumb when ellipse() is in there -X (it's not like we have square() in the api) -X arcMode is gone.. just uses ellipseMode() -X save tga and tif methods are static and public -X imageMode(CORNER) and CORNERS are the only usable versions -X alpha(PImage) is now called mask() instead -X already have an alpha() function that gets alpha bits -X on start, mouseX is 0.. how to avoid? -X use firstMouse variable.. figure out naming -X get frame recording working -X not tested, but at least it's there - -image stuff -o could also do PImage2, which would need a getPixels() before messing w/ it -o bad idea, distinction not clear -o even in java 1.1, could use regular java.awt.Image and require getPixels() -o -> 1.1 wouldn't help anything, because needs pixels to render, oops -X the updatePixels() in PGraphics has to be overridden (from PImage) -X to make itself actually update on-screen -X actually, should be no different than the check_image function -X PGraphics2 and PGraphicsGL will need loadPixels() to be called -X in order to read pixels from the buffer -X loadPixels() and updatePixels() prolly should be shut off in opengl -X make people use get() instead to grab sub-images -X PGraphicsGL.copy() needs to be overridden.. use glDrawBitmap -o loadImage() needs to handle 1.1 vs 1.3 loading -o set image.format to be BUFFERED? no.. just use RGBA always -o have a flag to always use the cache, i.e. with BufferedImage -o turn that off when someone modifies it (nope, no need to) -X PImage.getPixels(), updatePixels(), updatePixels(x, y, w, h), -o PImage.setPixels(int another[]); -X imageMode(CENTER) is weird for copy() and updatePixels() -X perhaps copy() and get() ignore imageMode and use xywh or x1y1x2y2? -X or disallow imageMode(CENTER) altogether? -o in java 1.3, getPixels() can call getRGB() via reflection -o cache.getClass().getName().equals("BufferedImage") -X readPixels/writePixels? -X has to happen, since this is so fundamental to gl as well -X loadImage in 1.3 leaves pixels[] null (not in 1.1) -X 1.3 plus gl is a problem, since conflicting caches -X gl has no need for a bufferedimage tho -X so maybe checks to see if the cache is a BufferedImage -X if it is, calls getPixels to set the int array -X then replaces cache with glimageache -X pappletgl loadimage could take care of this instead -X calls super.loadImage(), if cache != null, proceed.. -X this is prolly a mess -X PImage.getPixels() and PImage.getPixels(x, y, w, h) -> -X (the xywh version still allocates the entire array, but only updates those) -X only needed for java2d -X not (necessarily) needed when loading images, -X but definitely needed when setting pixels on PGraphics -X PImage.updatePixels() and PImage.updatePixels(x, y, w, h) -X (this is actually just setModified) -X in opengl, marks all or some as modified -X so next time it's drawn, the texture is updated PGraphicsGL.image() -X in java2d, updates the BufferedImage on next draw -X can't use regular getPixels() on PGraphics, because its image isn't 'cache' -X also, the cache may be used to draw the whole surface as a gl texture (?) -X not a problem for the main PGraphics, but for any others created to draw on - -opengl -X make light() functions actually do something in PGraphicsGL -X box() and sphere() working again -X make opengl work in draw mode -X set initial size using --size= -X color channels seem to be swapped on windows in image example -X check on the mac to see what it looks like - -X default to single byte input from serial port -X and add serial.setBuffer() for message length as alternative -X or serial.setDelimiter() to fire message on delim -X named it bufferUntil(); - - -0076 core -X no changes, only launcher issues - - -0075 -X textureMode(NORMAL_SPACE) screws up the image() command -X image() appears to require IMAGE_SPACE to function properly. -X added focusGained() and focusLost() -X lots of changes to internal naming of vars -X screenX(x, y) and screenY(x, y) added for noDepth() -X add TRIANGLE_FAN -X eyeX, eyeY etc have been renamed cameraX/Y/Z, and cameraNear/Far -X modify targa and tiff writing routines to break into header writing -X writeTIFF, writeHeaderTIFF, writeTGA, writeHeaderTGA -X MAJOR CHANGE: RGBA becomes ARGB for accuracy -o uv coords > 1 shouldn't clamp, they should just repeat ala opengl -o actually i think opengl has a setting for it -o remove need to use depth() at the beginning -X need only be set once -X pmouseX is broken again -X remove pmouseX/Y altogether -X maintain things a bit different -o email the beta@ list to see how people are using pmouseX -X changed PMovie.length to PMovie.duration -X move around/simplify loadImage() inside PApplet -X working to add more die() statements inside PApplet -o can ALPHA fonts work using the other replace modes? - -fixed in previous releases -X text stuff -X text() with alignment doesn't work for multiple lines -X don't change the size of a font when in screen space mode -X patch rotated text (from visualclusto) into bfont -X what sort of api? textSpace(ROTATED) ? -X rotated text has a bug for when it goes offscreen - -opengl -X why is the thing hanging until 'stop' is hit? -X what happens when stop is hit that sets it free? -X (at what point does it start working properly?) -X cache needs to also make things a power of 2 -X if images are already a power of 2, then needn't re-alloc -X cacheIndex needs to be set to -1 when the image is modified -X or maybe have a modified() function? -X debug why certain spots are having errors (see 'problem here' notes) -X INVALID_OPERATION after drawing lines for cube -X fix noLoop bug -X remove errors when drawing textures -X reverse y coordinates -X make play button un-highlight with opengl -X also make window move messages work properly -X very necessary, since opens window at 100x100 -X problem was the threading issues -X bring back renderer menu -X reading/saving pref for opengl renderer -X remove cameraMode(PERSPECTIVE) on each frame -X why is the first one failing? -X still threading issues with running opengl -X threading really horks up dual processor machine.. -X first run hangs until quit -X though doesn't seem to replicate when p5 is restarted -X make sure background() gets called at least once with opengl -X otherwise screen never actually updates -X beginFrame() around setup() -X draw mode stuff happens inside setup.. -o or maybe need to get better at size() inside of draw() ? -X make this consistent with the regular PApplet -X otherwise things are going to be weird/difficult for debugging - - -0074 core -X removed zbuffer precision hack in PLine to improve z ordering -X no longer set g.dimensions = 3 when using vertex(x, y, 0) - - -0073 core -X tweak to fonts to use TEXT_ANTIALIAS because of macosx @#$(*& -X loadImage() is broken on some machines -X hacked for a fix in 72, but need to better coordinate with openStream() - - -0072 core -X make m00, m01 etc public -X hack to make loadImage() work -X cache settings are ignored, may be slow as hell -X make hints[] no longer static -X they weren't properly resetting - - -0071 core -X properly swap alpha values when lines need to be rendered backwards -X make cursor() commands public -X ltext and rtext for screen space stuff -X ltext is broken when it goes y < 0 or y > height -X ltext & rtext completely working -X make sure font creator is making fonts properly fixed width -X probably not using java charwidth for the char's width -X probably wasn't using textFont() properly -X now that it's actually a key, should it be a char? (what's keyChar?) -X that way println(c) would work a little better.. -X libraryCalls() not properly working for pre, post, or draw() -o image(myg, x, y) doesn't work but image(myg, x, y, w, h) does -o (image kind prolly not set right and so image() gets pissy) -o http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1091798655 - -text fixes -X make text rect use rectMode for placement -X if a word (no spaces) is too long to fit, insert a 'space' -X move left/center/right aligning into the font class -X otherwise text with alignment has problems with returns -X could PFont2 be done entirely with reflection? -X that way other font types can properly extend PFont -o font char widths from orator were not fixed width -o may just need to regenerate. if not, widths may be set wrong. - - -0070 core -o check ordering of split() in java vs perl for regexp -X don't include empty chars in font builder -X .vlw font files are enormous with full charset -X check to see if the character exists before adding it to the font -X fixed (unreported) problem with char lookup code -o split() with multiple args (i think this is completed) -X http://processing.org/discourse/yabb/YaBB.cgi?board=Syntax;action=display;num=1078985667 -X trim() not chop().. whups -X random(5, 5) -> return 5, random(6, 4) return error -X http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1083275855;start=0 -X use random.nextFloat() because it's faster -X make grayscale image in p5 -X could be used with alpha() to properly set alpha values -X made into filter(GRAYSCALE) and filter(BLACK_WHITE) functions -X make g.depthTest settable as a hint -X http://processing.org/discourse/yabb/YaBB.cgi?board=BugFixes;action=display;num=1096303102;start=0 -X #ifdef to remove client and server code as well -X need to resolve issues between rendering screen/file -X illustrator-based rendering needs to work for ars projects -X screen may be 400x400 pixels, but file be 36x36" -X launcher.cpp broke serial.. see versions in processing.notcvs -X rewrite bagel code.. -X for this release, because it will break things along with the lib stuff -X switch to PImage, PApplet, etc -o bug in BImage.smooth() when resizing an image -o http://processing.org/discourse/yabb/YaBB.cgi?board=BugFixes;action=display;num=1096303158;start=0 -X shut off the automatic gunzipping of streams, keep for fonts -X fix for duplicated points in polygons that foiled the tesselator -X http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1077819175 -X cleaned up texture() code between NEW/OLD graphics -X not quite so much duplicated in cases etc. -X lines: vertex coloring bug with my swap hack -X http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1085348942 -X last vertex on LINE_LOOP fades out -X http://processing.org/discourse/yabb/YaBB.cgi?board=BugFixes;action=display;num=1096303406;start=0 -X include values in PConstants for additional blend modes: -X DIFFERENCE, MULTIPLY, SCREEN, OVERLAY, HARD_LIGHT, SOFT_LIGHT -X include a lerp()? is there one in flash? -X http://processing.org/discourse/yabb/YaBB.cgi?board=Programs;action=display;num=1083289030 -X should it be called lerp or mix? -X acos, asin, atan, log, exp, ceil/floor, pow, mag(x,y,z) -X color issues -X doesn't work when outside a function: -X color bg_color = color(255,0,0); -X colorMode broken for red() green() etc -X http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1068664455 -X add color(gray) and color(gray, alpha) -X http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1089898189;start=0 -X http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_Software;action=display;num=1090133107 -o update() mode needs to be hacked in (?) -X make 'online' a boolean -X pass in args[] from main -X angleMode(DEGREES) and angleMode(RADIANS) -X http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_Software;action=display;num=1075507381;start=0 -X fixes to line and curve code -X api to properly sense when applet has focus -X add a 'focused' variable to the applet -X code now in zipdecode, maybe just list this as a standard thing? -X do applets know when they're stopped? stop? dispose? -X would be good to set a param in p5 so that the thread dies -X if people have other threads they've spawned, impossible to stop - -cleaning up -X make bagel more usable as standalone -X breakout BGraphics (have its own BImage) -o breakout BApplet into BComponent ? (fix out-of-bounds mouse - doesn't) -o opengl export / rendering mode -o currently implemented, but somewhat broken -o finish this once all the line code is done -o make possible to use buzz.pl to create versions w/ stuff removed -o build gl4java for java 1.4 -o separating of BGraphics and BApplet -o change copyrights on the files again (to match ?) -X loadStrings has a problem with URLs and a code folder -o turned out to be a problem with firewall/antivirus software -o http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1086551792 -o when running as an applet, need to loadStream from documentBase too -o problem is that BGraphics has the loadStream code, not BApplet -o new sphere code from toxi -o already added a while back -o http://processing.org/discourse/yabb/YaBB.cgi?board=Syntax;action=display;num=1067005325 -o sphere code needs only front face polygon -o all triangles must be counter-clockwise (front-facing) -X fix loadImage to be inside PApplet - -040715 -X saveFrame() to a folder horks things up if a mkdirs() is required -X on macosx, this makes things hang; on windows it complains -X http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1081706752;start=0 -X decide on whether to use PTools -X decided against, since it doesn't help anything -X and some functions need the applet object, so it's just annoying -o i.e. move math functions into utility library -o check what other functions require PGraphics to exist but shouldn't -o look at BGraphics to see if setting an 'applet' could be used -o then other than that, if no applet set, no connection to PApplet - -040716 -X change font api to not use leading() as a way to reset the leading -X resetLeading and resetSize are the things -X embed all available chars from a font, so japanese, etc works -X http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_Software;action=display;num=1083598817;start=3 -X fix a bunch of font bugs regarding charsets and lookup -X array operations: boolean, byte, char, int, float, String -X expand/contract -X append, shorten -o shift/unshift -o slice -X splice -X reverse -X concat - -040717 -X make clone() into copy() -X add a method BApplet.setPath() or something like that -X use it to repair saveBytes, saveStrings, etc -X put screenshots into their sketch folder -o http://processing.org/discourse/yabb/YaBB.cgi?board=Syntax;action=display;num=1046185738;start=0 -X full casting operations on primitives and arrays of them -X text(String text, x, y, width, height) // based on rectMode -X textMode() for align left, center, right (no justify.. har!) -X hex(), binary(), unhex(), unbinary() - -040725 -X fix array functions not returning a value - -040726 -X noiseSeed and randomSeed -X http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_Software;action=display;num=1090749784;start=0 - -040727 -X incorporated NO_FLYING_POO line/poly hack developed for axel - -040902 -X sort() should return an array, rather than sort in place -X fix binary function, had wrong offset number -X casey: i wan't able to get binary() to work at all: -o Typography: Helix won't compile -o works fine, just needs BFont -> PFont -X standalone 'alpha' function for PImage (static methods for alpha fxns) -X Image: Edge, Image: Blur: Alpha not set? The error is easier to see on Blur -X turns out bounds checking wasn't working properly on colors - -040903 -X fix mouse/key events, make properly public for the package stuff -X The biggest problem was the key and mouse functions not working. -X Input: Mouse_Functions -X Input: Keyboard_Functions -X processing.net -> PClient, PServer -X write client/server implementations for new-style api -X basic test with old net server has things working fine - -040908 -X inputFile, outputFile, reader, writer commands -X also loadStrings(File file) - -040913 -X printarr instead of print/println for arrays -X println(Object o) conflicts with println(int a[]) -X but println(Object o) is very needed - -040919 -X loop/noLoop setup - -040920 -X make loop/noLoop work properly -X fixes/changes to key and mousehandling -X tab key not working? -X http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1091853942;start=0 -X mousePressed, keyPressed, others.. queue them all -X queue multiple times -X http://processing.org/discourse/yabb/YaBB.cgi?board=Syntax;action=display;num=1079555200;start=0 -X strangeness with key codes on keyPressed -X http://processing.org/discourse/yabb/YaBB.cgi?board=Syntax;action=display;num=1083406438;start=0 -X key codes not properly coming through for UP/DOWN/etc -X had to bring back keyCode -X http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1075138932;start=0 -X add redraw() function -X call redraw() on the first time through (to force initial draw) -X otherwise noLoop() in setup means no drawing happens at all - -040920 evening -X defaults for PApplet and PGraphics are different -o PGraphics has none.. PApplet has fill/stroke -X actually not the case, only that wasn't calling decent superclass -X set PImage.format as RGB by default? -X this was problem with rendering an image from PGraphics on board -X http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1091798655;start=0 -X http://processing.org/discourse/yabb/YaBB.cgi?board=Syntax;action=display;num=1080671926;start=0 - -040921 morning -X bug in get() that was removing the high bits (rather than adding) - -040921 evening -X lots of work on libraries, figuring out PLibrary api - -040922 -X get library stuff debugged -X port arcball and finish up dxf writer -X beginCamera() no longer sets an identity matrix - -040925 -X make savePath() and createPath() accessible to the outside world -X useful for libraries saving files etc. - - -0070p8 -X sizing bug fix to fonts, they now match platform standards -X however, *this will break people's code* -X text in a box not written -X make sure to note in the docs that text/textrect position differently -o for this reason, should it be called textrect()? -X font heights and leading are bad -X get good values for ascent and descent -X if ScreenFont subclasses PFont.. can that be used in textFont()? -X check to make sure the tops of fonts not getting chopped in font builder - - -0069 bagel -X text(x, y, z) -X fixed camera modes / replaced how isometric is handled -X whoa.. BGraphics.screenX() et al had the camera stuff shut off -X and that's what shipped in 67. shite. -X need to get things fixed up properly so camera is properly set -X ISOMETRIC was completely broken.. need to implement properly -X also, the default camera is perspective -X cameraMode(PERSPECTIVE) and cameraMode(ORTHOGRAPHIC) setup basic cameras -X if the user wants a custom camera, call cameraMode(CUSTOM); before begin() -X printMatrix() and printCamera() to output the matrices for each -X more functions made static (loadStrings, loadBytes) that could be -X print() commands in BApplet were among these -X die() command to exit an application or just stall out an applet -X die(String error) and die(String error, Exception e) -X more documentation in comments for functions -X chop() function that properly also handles nbsp -X join() was handled weird -X run nf() and nfs() on arrays -X nfp() to show plus sign -X toInt, toFloat, toDouble (nf is for toString.. inconsistent) -o split() function splits strings instead of splitStrings() -o ints() converts an array of strings/doubles/floats to an int array -o split() should also use StringTokenizer -o to do countTokens() and then stuff into an array -o shave() or chomp() or trim() method to remove whitespace on either side -o including unicode nbsp -X min() and max() with three values were broken (now fixed) -X http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1076804172 -X CONTROL wasn't properly set in BConstants -X http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1077058788 -X macosx.. flickering several times on startup -X fixed this, along with other sluggishness related threading issues -X http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1073111031 -X bug with charset table on older fonts -X index_hunt was look through the table, not what was in the font -X http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1077475307;start=0 -X seems to be some difficult threading problems still present -X fixed many threading issues across macosx and linux -X side-porting changes -X new(er) line code is not in the main 'processing' -X making perlin non-static not in the main bagel -X polygon stroking hack code from the end of 68 -X erikb found a bug inside split(), it would die on empty strings -X http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs;action=display;num=1077664736 -X fixed it, also modified behavior of split() with a delimeter -X previously, it would remove the final delimeter and an empty entry -X but that's now disabled, since the split cmd is very specific -X code from toxi to support .tga files in loadImage -X http://processing.org/discourse/yabb/YaBB.cgi?board=Programs;action=display;num=1078459847;start=0 -X fix bug where single pixel points were ignoring their alpha values -X static loadStrings and loadBytes aren't being added to BApplet -X (the versions that use an inputstream) -X added support for handling static functions in make.pl -X threading is broken again on windows -X windows needs a sleep(1) instead of the yield() -X random(3) should be non-inclusive of the 3 -X http://processing.org/discourse/yabb/YaBB.cgi?board=Syntax;action=display;num=1079935258;start=5 - -api changes -X loadStream -> openStream for better consistency - -jdf -X dynamic loading of code for setting cursor (removed JDK13 ifdef) -X why aren't cursors working on the mac? -X fix from jdf to just set size to 0,0 diff --git a/core/license.txt b/core/license.txt deleted file mode 100644 index 16f1ad162..000000000 --- a/core/license.txt +++ /dev/null @@ -1,456 +0,0 @@ - GNU LESSER GENERAL PUBLIC LICENSE - Version 2.1, February 1999 - - Copyright (C) 1991, 1999 Free Software Foundation, Inc. - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - -[ This is the first released version of the Lesser GPL. - It also counts as the successor of the GNU Library Public - License, version 2, hence the version number 2.1. ] - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -Licenses are intended to guarantee your freedom to share and change -free software--to make sure the software is free for all its users. - - This license, the Lesser General Public License, applies to some -specially designated software packages--typically libraries--of the -Free Software Foundation and other authors who decide to use it. You -can use it too, but we suggest you first think carefully about whether -this license or the ordinary General Public License is the better -strategy to use in any particular case, based on the explanations below. - - When we speak of free software, we are referring to freedom of use, -not price. Our General Public Licenses are designed to make sure that -you have the freedom to distribute copies of free software (and charge -for this service if you wish); that you receive source code or can get -it if you want it; that you can change the software and use pieces of -it in new free programs; and that you are informed that you can do -these things. - - To protect your rights, we need to make restrictions that forbid -distributors to deny you these rights or to ask you to surrender these -rights. These restrictions translate to certain responsibilities for -you if you distribute copies of the library or if you modify it. - - For example, if you distribute copies of the library, whether gratis -or for a fee, you must give the recipients all the rights that we gave -you. You must make sure that they, too, receive or can get the source -code. If you link other code with the library, you must provide -complete object files to the recipients, so that they can relink them -with the library after making changes to the library and recompiling -it. And you must show them these terms so they know their rights. - - We protect your rights with a two-step method: (1) we copyright the -library, and (2) we offer you this license, which gives you legal -permission to copy, distribute and/or modify the library. - - To protect each distributor, we want to make it very clear that -there is no warranty for the free library. Also, if the library is -modified by someone else and passed on, the recipients should know -that what they have is not the original version, so that the original -author's reputation will not be affected by problems that might be -introduced by others. - - Finally, software patents pose a constant threat to the existence of -any free program. We wish to make sure that a company cannot -effectively restrict the users of a free program by obtaining a -restrictive license from a patent holder. Therefore, we insist that -any patent license obtained for a version of the library must be -consistent with the full freedom of use specified in this license. - - Most GNU software, including some libraries, is covered by the -ordinary GNU General Public License. This license, the GNU Lesser -General Public License, applies to certain designated libraries, and -is quite different from the ordinary General Public License. We use -this license for certain libraries in order to permit linking those -libraries into non-free programs. - - When a program is linked with a library, whether statically or using -a shared library, the combination of the two is legally speaking a -combined work, a derivative of the original library. The ordinary -General Public License therefore permits such linking only if the -entire combination fits its criteria of freedom. The Lesser General -Public License permits more lax criteria for linking other code with -the library. - - We call this license the "Lesser" General Public License because it -does Less to protect the user's freedom than the ordinary General -Public License. It also provides other free software developers Less -of an advantage over competing non-free programs. These disadvantages -are the reason we use the ordinary General Public License for many -libraries. However, the Lesser license provides advantages in certain -special circumstances. - - For example, on rare occasions, there may be a special need to -encourage the widest possible use of a certain library, so that it becomes -a de-facto standard. To achieve this, non-free programs must be -allowed to use the library. A more frequent case is that a free -library does the same job as widely used non-free libraries. In this -case, there is little to gain by limiting the free library to free -software only, so we use the Lesser General Public License. - - In other cases, permission to use a particular library in non-free -programs enables a greater number of people to use a large body of -free software. For example, permission to use the GNU C Library in -non-free programs enables many more people to use the whole GNU -operating system, as well as its variant, the GNU/Linux operating -system. - - Although the Lesser General Public License is Less protective of the -users' freedom, it does ensure that the user of a program that is -linked with the Library has the freedom and the wherewithal to run -that program using a modified version of the Library. - - The precise terms and conditions for copying, distribution and -modification follow. Pay close attention to the difference between a -"work based on the library" and a "work that uses the library". The -former contains code derived from the library, whereas the latter must -be combined with the library in order to run. - - GNU LESSER GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License Agreement applies to any software library or other -program which contains a notice placed by the copyright holder or -other authorized party saying it may be distributed under the terms of -this Lesser General Public License (also called "this License"). -Each licensee is addressed as "you". - - A "library" means a collection of software functions and/or data -prepared so as to be conveniently linked with application programs -(which use some of those functions and data) to form executables. - - The "Library", below, refers to any such software library or work -which has been distributed under these terms. A "work based on the -Library" means either the Library or any derivative work under -copyright law: that is to say, a work containing the Library or a -portion of it, either verbatim or with modifications and/or translated -straightforwardly into another language. (Hereinafter, translation is -included without limitation in the term "modification".) - - "Source code" for a work means the preferred form of the work for -making modifications to it. For a library, complete source code means -all the source code for all modules it contains, plus any associated -interface definition files, plus the scripts used to control compilation -and installation of the library. - - Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running a program using the Library is not restricted, and output from -such a program is covered only if its contents constitute a work based -on the Library (independent of the use of the Library in a tool for -writing it). Whether that is true depends on what the Library does -and what the program that uses the Library does. - - 1. You may copy and distribute verbatim copies of the Library's -complete source code as you receive it, in any medium, provided that -you conspicuously and appropriately publish on each copy an -appropriate copyright notice and disclaimer of warranty; keep intact -all the notices that refer to this License and to the absence of any -warranty; and distribute a copy of this License along with the -Library. - - You may charge a fee for the physical act of transferring a copy, -and you may at your option offer warranty protection in exchange for a -fee. - - 2. You may modify your copy or copies of the Library or any portion -of it, thus forming a work based on the Library, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) The modified work must itself be a software library. - - b) You must cause the files modified to carry prominent notices - stating that you changed the files and the date of any change. - - c) You must cause the whole of the work to be licensed at no - charge to all third parties under the terms of this License. - - d) If a facility in the modified Library refers to a function or a - table of data to be supplied by an application program that uses - the facility, other than as an argument passed when the facility - is invoked, then you must make a good faith effort to ensure that, - in the event an application does not supply such function or - table, the facility still operates, and performs whatever part of - its purpose remains meaningful. - - (For example, a function in a library to compute square roots has - a purpose that is entirely well-defined independent of the - application. Therefore, Subsection 2d requires that any - application-supplied function or table used by this function must - be optional: if the application does not supply it, the square - root function must still compute square roots.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Library, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Library, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote -it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Library. - -In addition, mere aggregation of another work not based on the Library -with the Library (or with a work based on the Library) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may opt to apply the terms of the ordinary GNU General Public -License instead of this License to a given copy of the Library. To do -this, you must alter all the notices that refer to this License, so -that they refer to the ordinary GNU General Public License, version 2, -instead of to this License. (If a newer version than version 2 of the -ordinary GNU General Public License has appeared, then you can specify -that version instead if you wish.) Do not make any other change in -these notices. - - Once this change is made in a given copy, it is irreversible for -that copy, so the ordinary GNU General Public License applies to all -subsequent copies and derivative works made from that copy. - - This option is useful when you wish to copy part of the code of -the Library into a program that is not a library. - - 4. You may copy and distribute the Library (or a portion or -derivative of it, under Section 2) in object code or executable form -under the terms of Sections 1 and 2 above provided that you accompany -it with the complete corresponding machine-readable source code, which -must be distributed under the terms of Sections 1 and 2 above on a -medium customarily used for software interchange. - - If distribution of object code is made by offering access to copy -from a designated place, then offering equivalent access to copy the -source code from the same place satisfies the requirement to -distribute the source code, even though third parties are not -compelled to copy the source along with the object code. - - 5. A program that contains no derivative of any portion of the -Library, but is designed to work with the Library by being compiled or -linked with it, is called a "work that uses the Library". Such a -work, in isolation, is not a derivative work of the Library, and -therefore falls outside the scope of this License. - - However, linking a "work that uses the Library" with the Library -creates an executable that is a derivative of the Library (because it -contains portions of the Library), rather than a "work that uses the -library". The executable is therefore covered by this License. -Section 6 states terms for distribution of such executables. - - When a "work that uses the Library" uses material from a header file -that is part of the Library, the object code for the work may be a -derivative work of the Library even though the source code is not. -Whether this is true is especially significant if the work can be -linked without the Library, or if the work is itself a library. The -threshold for this to be true is not precisely defined by law. - - If such an object file uses only numerical parameters, data -structure layouts and accessors, and small macros and small inline -functions (ten lines or less in length), then the use of the object -file is unrestricted, regardless of whether it is legally a derivative -work. (Executables containing this object code plus portions of the -Library will still fall under Section 6.) - - Otherwise, if the work is a derivative of the Library, you may -distribute the object code for the work under the terms of Section 6. -Any executables containing that work also fall under Section 6, -whether or not they are linked directly with the Library itself. - - 6. As an exception to the Sections above, you may also combine or -link a "work that uses the Library" with the Library to produce a -work containing portions of the Library, and distribute that work -under terms of your choice, provided that the terms permit -modification of the work for the customer's own use and reverse -engineering for debugging such modifications. - - You must give prominent notice with each copy of the work that the -Library is used in it and that the Library and its use are covered by -this License. You must supply a copy of this License. If the work -during execution displays copyright notices, you must include the -copyright notice for the Library among them, as well as a reference -directing the user to the copy of this License. Also, you must do one -of these things: - - a) Accompany the work with the complete corresponding - machine-readable source code for the Library including whatever - changes were used in the work (which must be distributed under - Sections 1 and 2 above); and, if the work is an executable linked - with the Library, with the complete machine-readable "work that - uses the Library", as object code and/or source code, so that the - user can modify the Library and then relink to produce a modified - executable containing the modified Library. (It is understood - that the user who changes the contents of definitions files in the - Library will not necessarily be able to recompile the application - to use the modified definitions.) - - b) Use a suitable shared library mechanism for linking with the - Library. A suitable mechanism is one that (1) uses at run time a - copy of the library already present on the user's computer system, - rather than copying library functions into the executable, and (2) - will operate properly with a modified version of the library, if - the user installs one, as long as the modified version is - interface-compatible with the version that the work was made with. - - c) Accompany the work with a written offer, valid for at - least three years, to give the same user the materials - specified in Subsection 6a, above, for a charge no more - than the cost of performing this distribution. - - d) If distribution of the work is made by offering access to copy - from a designated place, offer equivalent access to copy the above - specified materials from the same place. - - e) Verify that the user has already received a copy of these - materials or that you have already sent this user a copy. - - For an executable, the required form of the "work that uses the -Library" must include any data and utility programs needed for -reproducing the executable from it. However, as a special exception, -the materials to be distributed need not include anything that is -normally distributed (in either source or binary form) with the major -components (compiler, kernel, and so on) of the operating system on -which the executable runs, unless that component itself accompanies -the executable. - - It may happen that this requirement contradicts the license -restrictions of other proprietary libraries that do not normally -accompany the operating system. Such a contradiction means you cannot -use both them and the Library together in an executable that you -distribute. - - 7. You may place library facilities that are a work based on the -Library side-by-side in a single library together with other library -facilities not covered by this License, and distribute such a combined -library, provided that the separate distribution of the work based on -the Library and of the other library facilities is otherwise -permitted, and provided that you do these two things: - - a) Accompany the combined library with a copy of the same work - based on the Library, uncombined with any other library - facilities. This must be distributed under the terms of the - Sections above. - - b) Give prominent notice with the combined library of the fact - that part of it is a work based on the Library, and explaining - where to find the accompanying uncombined form of the same work. - - 8. You may not copy, modify, sublicense, link with, or distribute -the Library except as expressly provided under this License. Any -attempt otherwise to copy, modify, sublicense, link with, or -distribute the Library is void, and will automatically terminate your -rights under this License. However, parties who have received copies, -or rights, from you under this License will not have their licenses -terminated so long as such parties remain in full compliance. - - 9. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Library or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Library (or any work based on the -Library), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Library or works based on it. - - 10. Each time you redistribute the Library (or any work based on the -Library), the recipient automatically receives a license from the -original licensor to copy, distribute, link with or modify the Library -subject to these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties with -this License. - - 11. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Library at all. For example, if a patent -license would not permit royalty-free redistribution of the Library by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Library. - -If any portion of this section is held invalid or unenforceable under any -particular circumstance, the balance of the section is intended to apply, -and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 12. If the distribution and/or use of the Library is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Library under this License may add -an explicit geographical distribution limitation excluding those countries, -so that distribution is permitted only in or among countries not thus -excluded. In such case, this License incorporates the limitation as if -written in the body of this License. - - 13. The Free Software Foundation may publish revised and/or new -versions of the Lesser General Public License from time to time. -Such new versions will be similar in spirit to the present version, -but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Library -specifies a version number of this License which applies to it and -"any later version", you have the option of following the terms and -conditions either of that version or of any later version published by -the Free Software Foundation. If the Library does not specify a -license version number, you may choose any version ever published by -the Free Software Foundation. - - 14. If you wish to incorporate parts of the Library into other free -programs whose distribution conditions are incompatible with these, -write to the author to ask for permission. For software which is -copyrighted by the Free Software Foundation, write to the Free -Software Foundation; we sometimes make exceptions for this. Our -decision will be guided by the two goals of preserving the free status -of all derivatives of our free software and of promoting the sharing -and reuse of software generally. - - NO WARRANTY - - 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO -WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. -EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR -OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY -KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE -LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME -THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN -WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY -AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU -FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR -CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE -LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING -RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A -FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF -SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGES. \ No newline at end of file diff --git a/core/make.sh b/core/make.sh deleted file mode 100755 index 78d91b33a..000000000 --- a/core/make.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh - -#javadoc -public -d doc *.java -#javadoc -private -d doc *.java -chmod +x preproc.pl -./preproc.pl -jikes -d . +D *.java diff --git a/core/methods/.classpath b/core/methods/.classpath deleted file mode 100644 index d9132e9f4..000000000 --- a/core/methods/.classpath +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/core/methods/.project b/core/methods/.project deleted file mode 100644 index 629f1c16a..000000000 --- a/core/methods/.project +++ /dev/null @@ -1,17 +0,0 @@ - - - preproc - - - - - - org.eclipse.jdt.core.javabuilder - - - - - - org.eclipse.jdt.core.javanature - - diff --git a/core/methods/build.xml b/core/methods/build.xml deleted file mode 100644 index c37b243eb..000000000 --- a/core/methods/build.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/core/methods/demo/PApplet.java b/core/methods/demo/PApplet.java deleted file mode 100644 index b2a09c1bb..000000000 --- a/core/methods/demo/PApplet.java +++ /dev/null @@ -1,9483 +0,0 @@ -/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */ - -/* - Part of the Processing project - http://processing.org - - Copyright (c) 2004-10 Ben Fry and Casey Reas - Copyright (c) 2001-04 Massachusetts Institute of Technology - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation, version 2.1. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General - Public License along with this library; if not, write to the - Free Software Foundation, Inc., 59 Temple Place, Suite 330, - Boston, MA 02111-1307 USA -*/ - -package processing.core; - -import java.applet.*; -import java.awt.*; -import java.awt.event.*; -import java.awt.image.*; -import java.io.*; -import java.lang.reflect.*; -import java.net.*; -import java.text.*; -import java.util.*; -import java.util.regex.*; -import java.util.zip.*; - -import javax.imageio.ImageIO; -import javax.swing.JFileChooser; -import javax.swing.SwingUtilities; - -import processing.core.PShape; - - -/** - * Base class for all sketches that use processing.core. - *

- * Note that you should not use AWT or Swing components inside a Processing - * applet. The surface is made to automatically update itself, and will cause - * problems with redraw of components drawn above it. If you'd like to - * integrate other Java components, see below. - *

- * As of release 0145, Processing uses active mode rendering in all cases. - * All animation tasks happen on the "Processing Animation Thread". The - * setup() and draw() methods are handled by that thread, and events (like - * mouse movement and key presses, which are fired by the event dispatch - * thread or EDT) are queued to be (safely) handled at the end of draw(). - * For code that needs to run on the EDT, use SwingUtilities.invokeLater(). - * When doing so, be careful to synchronize between that code (since - * invokeLater() will make your code run from the EDT) and the Processing - * animation thread. Use of a callback function or the registerXxx() methods - * in PApplet can help ensure that your code doesn't do something naughty. - *

- * As of release 0136 of Processing, we have discontinued support for versions - * of Java prior to 1.5. We don't have enough people to support it, and for a - * project of our size, we should be focusing on the future, rather than - * working around legacy Java code. In addition, Java 1.5 gives us access to - * better timing facilities which will improve the steadiness of animation. - *

- * This class extends Applet instead of JApplet because 1) historically, - * we supported Java 1.1, which does not include Swing (without an - * additional, sizable, download), and 2) Swing is a bloated piece of crap. - * A Processing applet is a heavyweight AWT component, and can be used the - * same as any other AWT component, with or without Swing. - *

- * Similarly, Processing runs in a Frame and not a JFrame. However, there's - * nothing to prevent you from embedding a PApplet into a JFrame, it's just - * that the base version uses a regular AWT frame because there's simply - * no need for swing in that context. If people want to use Swing, they can - * embed themselves as they wish. - *

- * It is possible to use PApplet, along with core.jar in other projects. - * In addition to enabling you to use Java 1.5+ features with your sketch, - * this also allows you to embed a Processing drawing area into another Java - * application. This means you can use standard GUI controls with a Processing - * sketch. Because AWT and Swing GUI components cannot be used on top of a - * PApplet, you can instead embed the PApplet inside another GUI the way you - * would any other Component. - *

- * It is also possible to resize the Processing window by including - * frame.setResizable(true) inside your setup() method. - * Note that the Java method frame.setSize() will not work unless - * you first set the frame to be resizable. - *

- * Because the default animation thread will run at 60 frames per second, - * an embedded PApplet can make the parent sluggish. You can use frameRate() - * to make it update less often, or you can use noLoop() and loop() to disable - * and then re-enable looping. If you want to only update the sketch - * intermittently, use noLoop() inside setup(), and redraw() whenever - * the screen needs to be updated once (or loop() to re-enable the animation - * thread). The following example embeds a sketch and also uses the noLoop() - * and redraw() methods. You need not use noLoop() and redraw() when embedding - * if you want your application to animate continuously. - *

- * public class ExampleFrame extends Frame {
- *
- *     public ExampleFrame() {
- *         super("Embedded PApplet");
- *
- *         setLayout(new BorderLayout());
- *         PApplet embed = new Embedded();
- *         add(embed, BorderLayout.CENTER);
- *
- *         // important to call this whenever embedding a PApplet.
- *         // It ensures that the animation thread is started and
- *         // that other internal variables are properly set.
- *         embed.init();
- *     }
- * }
- *
- * public class Embedded extends PApplet {
- *
- *     public void setup() {
- *         // original setup code here ...
- *         size(400, 400);
- *
- *         // prevent thread from starving everything else
- *         noLoop();
- *     }
- *
- *     public void draw() {
- *         // drawing code goes here
- *     }
- *
- *     public void mousePressed() {
- *         // do something based on mouse movement
- *
- *         // update the screen (run draw once)
- *         redraw();
- *     }
- * }
- * 
- * - *

Processing on multiple displays

- *

I was asked about Processing with multiple displays, and for lack of a - * better place to document it, things will go here.

- *

You can address both screens by making a window the width of both, - * and the height of the maximum of both screens. In this case, do not use - * present mode, because that's exclusive to one screen. Basically it'll - * give you a PApplet that spans both screens. If using one half to control - * and the other half for graphics, you'd just have to put the 'live' stuff - * on one half of the canvas, the control stuff on the other. This works - * better in windows because on the mac we can't get rid of the menu bar - * unless it's running in present mode.

- *

For more control, you need to write straight java code that uses p5. - * You can create two windows, that are shown on two separate screens, - * that have their own PApplet. this is just one of the tradeoffs of one of - * the things that we don't support in p5 from within the environment - * itself (we must draw the line somewhere), because of how messy it would - * get to start talking about multiple screens. It's also not that tough to - * do by hand w/ some Java code.

- * @usage Web & Application - */ -public class PApplet extends Applet - implements PConstants, Runnable, - MouseListener, MouseMotionListener, KeyListener, FocusListener -{ - /** - * Full name of the Java version (i.e. 1.5.0_11). - * Prior to 0125, this was only the first three digits. - */ - public static final String javaVersionName = - System.getProperty("java.version"); - - /** - * Version of Java that's in use, whether 1.1 or 1.3 or whatever, - * stored as a float. - *

- * Note that because this is stored as a float, the values may - * not be exactly 1.3 or 1.4. Instead, make sure you're - * comparing against 1.3f or 1.4f, which will have the same amount - * of error (i.e. 1.40000001). This could just be a double, but - * since Processing only uses floats, it's safer for this to be a float - * because there's no good way to specify a double with the preproc. - */ - public static final float javaVersion = - new Float(javaVersionName.substring(0, 3)).floatValue(); - - /** - * Current platform in use. - *

- * Equivalent to System.getProperty("os.name"), just used internally. - */ - - /** - * Current platform in use, one of the - * PConstants WINDOWS, MACOSX, MACOS9, LINUX or OTHER. - */ - static public int platform; - - /** - * Name associated with the current 'platform' (see PConstants.platformNames) - */ - //static public String platformName; - - static { - String osname = System.getProperty("os.name"); - - if (osname.indexOf("Mac") != -1) { - platform = MACOSX; - - } else if (osname.indexOf("Windows") != -1) { - platform = WINDOWS; - - } else if (osname.equals("Linux")) { // true for the ibm vm - platform = LINUX; - - } else { - platform = OTHER; - } - } - - /** - * Modifier flags for the shortcut key used to trigger menus. - * (Cmd on Mac OS X, Ctrl on Linux and Windows) - */ - static public final int MENU_SHORTCUT = - Toolkit.getDefaultToolkit().getMenuShortcutKeyMask(); - - /** The PGraphics renderer associated with this PApplet */ - public PGraphics g; - - //protected Object glock = new Object(); // for sync - - /** The frame containing this applet (if any) */ - public Frame frame; - - /** - * The screen size when the applet was started. - *

- * Access this via screen.width and screen.height. To make an applet - * run at full screen, use size(screen.width, screen.height). - *

- * If you have multiple displays, this will be the size of the main - * display. Running full screen across multiple displays isn't - * particularly supported, and requires more monkeying with the values. - * This probably can't/won't be fixed until/unless I get a dual head - * system. - *

- * Note that this won't update if you change the resolution - * of your screen once the the applet is running. - *

- * This variable is not static, because future releases need to be better - * at handling multiple displays. - */ - public Dimension screen = - Toolkit.getDefaultToolkit().getScreenSize(); - - /** - * A leech graphics object that is echoing all events. - */ - public PGraphics recorder; - - /** - * Command line options passed in from main(). - *

- * This does not include the arguments passed in to PApplet itself. - */ - public String args[]; - - /** Path to sketch folder */ - public String sketchPath; //folder; - - /** When debugging headaches */ - static final boolean THREAD_DEBUG = false; - - /** Default width and height for applet when not specified */ - static public final int DEFAULT_WIDTH = 100; - static public final int DEFAULT_HEIGHT = 100; - - /** - * Minimum dimensions for the window holding an applet. - * This varies between platforms, Mac OS X 10.3 can do any height - * but requires at least 128 pixels width. Windows XP has another - * set of limitations. And for all I know, Linux probably lets you - * make windows with negative sizes. - */ - static public final int MIN_WINDOW_WIDTH = 128; - static public final int MIN_WINDOW_HEIGHT = 128; - - /** - * Exception thrown when size() is called the first time. - *

- * This is used internally so that setup() is forced to run twice - * when the renderer is changed. This is the only way for us to handle - * invoking the new renderer while also in the midst of rendering. - */ - static public class RendererChangeException extends RuntimeException { } - - /** - * true if no size() command has been executed. This is used to wait until - * a size has been set before placing in the window and showing it. - */ - public boolean defaultSize; - - volatile boolean resizeRequest; - volatile int resizeWidth; - volatile int resizeHeight; - - /** - * Array containing the values for all the pixels in the display window. These values are of the color datatype. This array is the size of the display window. For example, if the image is 100x100 pixels, there will be 10000 values and if the window is 200x300 pixels, there will be 60000 values. The index value defines the position of a value within the array. For example, the statment color b = pixels[230] will set the variable b to be equal to the value at that location in the array.

Before accessing this array, the data must loaded with the loadPixels() function. After the array data has been modified, the updatePixels() function must be run to update the changes. Without loadPixels(), running the code may (or will in future releases) result in a NullPointerException. - * Pixel buffer from this applet's PGraphics. - *

- * When used with OpenGL or Java2D, this value will - * be null until loadPixels() has been called. - * - * @webref image:pixels - * @see processing.core.PApplet#loadPixels() - * @see processing.core.PApplet#updatePixels() - * @see processing.core.PApplet#get(int, int, int, int) - * @see processing.core.PApplet#set(int, int, int) - * @see processing.core.PImage - */ - public int pixels[]; - - /** width of this applet's associated PGraphics - * @webref environment - */ - public int width; - - /** height of this applet's associated PGraphics - * @webref environment - * */ - public int height; - - /** - * The system variable mouseX always contains the current horizontal coordinate of the mouse. - * @webref input:mouse - * @see PApplet#mouseY - * @see PApplet#mousePressed - * @see PApplet#mousePressed() - * @see PApplet#mouseReleased() - * @see PApplet#mouseMoved() - * @see PApplet#mouseDragged() - * - * */ - public int mouseX; - - /** - * The system variable mouseY always contains the current vertical coordinate of the mouse. - * @webref input:mouse - * @see PApplet#mouseX - * @see PApplet#mousePressed - * @see PApplet#mousePressed() - * @see PApplet#mouseReleased() - * @see PApplet#mouseMoved() - * @see PApplet#mouseDragged() - * */ - public int mouseY; - - /** - * Previous x/y position of the mouse. This will be a different value - * when inside a mouse handler (like the mouseMoved() method) versus - * when inside draw(). Inside draw(), pmouseX is updated once each - * frame, but inside mousePressed() and friends, it's updated each time - * an event comes through. Be sure to use only one or the other type of - * means for tracking pmouseX and pmouseY within your sketch, otherwise - * you're gonna run into trouble. - * @webref input:mouse - * @see PApplet#pmouseY - * @see PApplet#mouseX - * @see PApplet#mouseY - */ - public int pmouseX; - - /** - * @webref input:mouse - * @see PApplet#pmouseX - * @see PApplet#mouseX - * @see PApplet#mouseY - */ - public int pmouseY; - - /** - * previous mouseX/Y for the draw loop, separated out because this is - * separate from the pmouseX/Y when inside the mouse event handlers. - */ - protected int dmouseX, dmouseY; - - /** - * pmouseX/Y for the event handlers (mousePressed(), mouseDragged() etc) - * these are different because mouse events are queued to the end of - * draw, so the previous position has to be updated on each event, - * as opposed to the pmouseX/Y that's used inside draw, which is expected - * to be updated once per trip through draw(). - */ - protected int emouseX, emouseY; - - /** - * Used to set pmouseX/Y to mouseX/Y the first time mouseX/Y are used, - * otherwise pmouseX/Y are always zero, causing a nasty jump. - *

- * Just using (frameCount == 0) won't work since mouseXxxxx() - * may not be called until a couple frames into things. - */ - public boolean firstMouse; - - /** - * Processing automatically tracks if the mouse button is pressed and which button is pressed. - * The value of the system variable mouseButton is either LEFT, RIGHT, or CENTER depending on which button is pressed. - *

Advanced:

- * If running on Mac OS, a ctrl-click will be interpreted as - * the righthand mouse button (unlike Java, which reports it as - * the left mouse). - * @webref input:mouse - * @see PApplet#mouseX - * @see PApplet#mouseY - * @see PApplet#mousePressed() - * @see PApplet#mouseReleased() - * @see PApplet#mouseMoved() - * @see PApplet#mouseDragged() - */ - public int mouseButton; - - /** - * Variable storing if a mouse button is pressed. The value of the system variable mousePressed is true if a mouse button is pressed and false if a button is not pressed. - * @webref input:mouse - * @see PApplet#mouseX - * @see PApplet#mouseY - * @see PApplet#mouseReleased() - * @see PApplet#mouseMoved() - * @see PApplet#mouseDragged() - */ - public boolean mousePressed; - public MouseEvent mouseEvent; - - /** - * The system variable key always contains the value of the most recent key on the keyboard that was used (either pressed or released).

- * For non-ASCII keys, use the keyCode variable. - * The keys included in the ASCII specification (BACKSPACE, TAB, ENTER, RETURN, ESC, and DELETE) do not require checking to see if they key is coded, and you should simply use the key variable instead of keyCode - * If you're making cross-platform projects, note that the ENTER key is commonly used on PCs and Unix and the RETURN key is used instead on Macintosh. - * Check for both ENTER and RETURN to make sure your program will work for all platforms. - * =advanced - * - * Last key pressed. - *

- * If it's a coded key, i.e. UP/DOWN/CTRL/SHIFT/ALT, - * this will be set to CODED (0xffff or 65535). - * @webref input:keyboard - * @see PApplet#keyCode - * @see PApplet#keyPressed - * @see PApplet#keyPressed() - * @see PApplet#keyReleased() - */ - public char key; - - /** - * The variable keyCode is used to detect special keys such as the UP, DOWN, LEFT, RIGHT arrow keys and ALT, CONTROL, SHIFT. - * When checking for these keys, it's first necessary to check and see if the key is coded. This is done with the conditional "if (key == CODED)" as shown in the example. - *

The keys included in the ASCII specification (BACKSPACE, TAB, ENTER, RETURN, ESC, and DELETE) do not require checking to see if they key is coded, and you should simply use the key variable instead of keyCode - * If you're making cross-platform projects, note that the ENTER key is commonly used on PCs and Unix and the RETURN key is used instead on Macintosh. - * Check for both ENTER and RETURN to make sure your program will work for all platforms. - *

For users familiar with Java, the values for UP and DOWN are simply shorter versions of Java's KeyEvent.VK_UP and KeyEvent.VK_DOWN. - * Other keyCode values can be found in the Java KeyEvent reference. - * - * =advanced - * When "key" is set to CODED, this will contain a Java key code. - *

- * For the arrow keys, keyCode will be one of UP, DOWN, LEFT and RIGHT. - * Also available are ALT, CONTROL and SHIFT. A full set of constants - * can be obtained from java.awt.event.KeyEvent, from the VK_XXXX variables. - * @webref input:keyboard - * @see PApplet#key - * @see PApplet#keyPressed - * @see PApplet#keyPressed() - * @see PApplet#keyReleased() - */ - public int keyCode; - - /** - * The boolean system variable keyPressed is true if any key is pressed and false if no keys are pressed. - * @webref input:keyboard - * @see PApplet#key - * @see PApplet#keyCode - * @see PApplet#keyPressed() - * @see PApplet#keyReleased() - */ - public boolean keyPressed; - - /** - * the last KeyEvent object passed into a mouse function. - */ - public KeyEvent keyEvent; - - /** - * Gets set to true/false as the applet gains/loses focus. - * @webref environment - */ - public boolean focused = false; - - /** - * true if the applet is online. - *

- * This can be used to test how the applet should behave - * since online situations are different (no file writing, etc). - * @webref environment - */ - public boolean online = false; - - /** - * Time in milliseconds when the applet was started. - *

- * Used by the millis() function. - */ - long millisOffset; - - /** - * The current value of frames per second. - *

- * The initial value will be 10 fps, and will be updated with each - * frame thereafter. The value is not instantaneous (since that - * wouldn't be very useful since it would jump around so much), - * but is instead averaged (integrated) over several frames. - * As such, this value won't be valid until after 5-10 frames. - */ - public float frameRate = 10; - /** Last time in nanoseconds that frameRate was checked */ - protected long frameRateLastNanos = 0; - - /** As of release 0116, frameRate(60) is called as a default */ - protected float frameRateTarget = 60; - protected long frameRatePeriod = 1000000000L / 60L; - - protected boolean looping; - - /** flag set to true when a redraw is asked for by the user */ - protected boolean redraw; - - /** - * How many frames have been displayed since the applet started. - *

- * This value is read-only do not attempt to set it, - * otherwise bad things will happen. - *

- * Inside setup(), frameCount is 0. - * For the first iteration of draw(), frameCount will equal 1. - */ - public int frameCount; - - /** - * true if this applet has had it. - */ - public boolean finished; - - /** - * true if exit() has been called so that things shut down - * once the main thread kicks off. - */ - protected boolean exitCalled; - - Thread thread; - - protected RegisteredMethods sizeMethods; - protected RegisteredMethods preMethods, drawMethods, postMethods; - protected RegisteredMethods mouseEventMethods, keyEventMethods; - protected RegisteredMethods disposeMethods; - - // messages to send if attached as an external vm - - /** - * Position of the upper-lefthand corner of the editor window - * that launched this applet. - */ - static public final String ARGS_EDITOR_LOCATION = "--editor-location"; - - /** - * Location for where to position the applet window on screen. - *

- * This is used by the editor to when saving the previous applet - * location, or could be used by other classes to launch at a - * specific position on-screen. - */ - static public final String ARGS_EXTERNAL = "--external"; - - static public final String ARGS_LOCATION = "--location"; - - static public final String ARGS_DISPLAY = "--display"; - - static public final String ARGS_BGCOLOR = "--bgcolor"; - - static public final String ARGS_PRESENT = "--present"; - - static public final String ARGS_EXCLUSIVE = "--exclusive"; - - static public final String ARGS_STOP_COLOR = "--stop-color"; - - static public final String ARGS_HIDE_STOP = "--hide-stop"; - - /** - * Allows the user or PdeEditor to set a specific sketch folder path. - *

- * Used by PdeEditor to pass in the location where saveFrame() - * and all that stuff should write things. - */ - static public final String ARGS_SKETCH_FOLDER = "--sketch-path"; - - /** - * When run externally to a PdeEditor, - * this is sent by the applet when it quits. - */ - //static public final String EXTERNAL_QUIT = "__QUIT__"; - static public final String EXTERNAL_STOP = "__STOP__"; - - /** - * When run externally to a PDE Editor, this is sent by the applet - * whenever the window is moved. - *

- * This is used so that the editor can re-open the sketch window - * in the same position as the user last left it. - */ - static public final String EXTERNAL_MOVE = "__MOVE__"; - - /** true if this sketch is being run by the PDE */ - boolean external = false; - - - static final String ERROR_MIN_MAX = - "Cannot use min() or max() on an empty array."; - - - // during rev 0100 dev cycle, working on new threading model, - // but need to disable and go conservative with changes in order - // to get pdf and audio working properly first. - // for 0116, the CRUSTY_THREADS are being disabled to fix lots of bugs. - //static final boolean CRUSTY_THREADS = false; //true; - - - public void init() { -// println("Calling init()"); - - // send tab keys through to the PApplet - setFocusTraversalKeysEnabled(false); - - millisOffset = System.currentTimeMillis(); - - finished = false; // just for clarity - - // this will be cleared by draw() if it is not overridden - looping = true; - redraw = true; // draw this guy once - firstMouse = true; - - // these need to be inited before setup - sizeMethods = new RegisteredMethods(); - preMethods = new RegisteredMethods(); - drawMethods = new RegisteredMethods(); - postMethods = new RegisteredMethods(); - mouseEventMethods = new RegisteredMethods(); - keyEventMethods = new RegisteredMethods(); - disposeMethods = new RegisteredMethods(); - - try { - getAppletContext(); - online = true; - } catch (NullPointerException e) { - online = false; - } - - try { - if (sketchPath == null) { - sketchPath = System.getProperty("user.dir"); - } - } catch (Exception e) { } // may be a security problem - - Dimension size = getSize(); - if ((size.width != 0) && (size.height != 0)) { - // When this PApplet is embedded inside a Java application with other - // Component objects, its size() may already be set externally (perhaps - // by a LayoutManager). In this case, honor that size as the default. - // Size of the component is set, just create a renderer. - g = makeGraphics(size.width, size.height, getSketchRenderer(), null, true); - // This doesn't call setSize() or setPreferredSize() because the fact - // that a size was already set means that someone is already doing it. - - } else { - // Set the default size, until the user specifies otherwise - this.defaultSize = true; - int w = getSketchWidth(); - int h = getSketchHeight(); - g = makeGraphics(w, h, getSketchRenderer(), null, true); - // Fire component resize event - setSize(w, h); - setPreferredSize(new Dimension(w, h)); - } - width = g.width; - height = g.height; - - addListeners(); - - // this is automatically called in applets - // though it's here for applications anyway - start(); - } - - - public int getSketchWidth() { - return DEFAULT_WIDTH; - } - - - public int getSketchHeight() { - return DEFAULT_HEIGHT; - } - - - public String getSketchRenderer() { - return JAVA2D; - } - - - /** - * Called by the browser or applet viewer to inform this applet that it - * should start its execution. It is called after the init method and - * each time the applet is revisited in a Web page. - *

- * Called explicitly via the first call to PApplet.paint(), because - * PAppletGL needs to have a usable screen before getting things rolling. - */ - public void start() { - // When running inside a browser, start() will be called when someone - // returns to a page containing this applet. - // http://dev.processing.org/bugs/show_bug.cgi?id=581 - finished = false; - - if (thread != null) return; - thread = new Thread(this, "Animation Thread"); - thread.start(); - } - - - /** - * Called by the browser or applet viewer to inform - * this applet that it should stop its execution. - *

- * Unfortunately, there are no guarantees from the Java spec - * when or if stop() will be called (i.e. on browser quit, - * or when moving between web pages), and it's not always called. - */ - public void stop() { - // bringing this back for 0111, hoping it'll help opengl shutdown - finished = true; // why did i comment this out? - - // don't run stop and disposers twice - if (thread == null) return; - thread = null; - - // call to shut down renderer, in case it needs it (pdf does) - if (g != null) g.dispose(); - - // maybe this should be done earlier? might help ensure it gets called - // before the vm just craps out since 1.5 craps out so aggressively. - disposeMethods.handle(); - } - - - /** - * Called by the browser or applet viewer to inform this applet - * that it is being reclaimed and that it should destroy - * any resources that it has allocated. - *

- * This also attempts to call PApplet.stop(), in case there - * was an inadvertent override of the stop() function by a user. - *

- * destroy() supposedly gets called as the applet viewer - * is shutting down the applet. stop() is called - * first, and then destroy() to really get rid of things. - * no guarantees on when they're run (on browser quit, or - * when moving between pages), though. - */ - public void destroy() { - ((PApplet)this).stop(); - } - - - /** - * This returns the last width and height specified by the user - * via the size() command. - */ -// public Dimension getPreferredSize() { -// return new Dimension(width, height); -// } - - -// public void addNotify() { -// super.addNotify(); -// println("addNotify()"); -// } - - - - ////////////////////////////////////////////////////////////// - - - public class RegisteredMethods { - int count; - Object objects[]; - Method methods[]; - - - // convenience version for no args - public void handle() { - handle(new Object[] { }); - } - - public void handle(Object oargs[]) { - for (int i = 0; i < count; i++) { - try { - //System.out.println(objects[i] + " " + args); - methods[i].invoke(objects[i], oargs); - } catch (Exception e) { - e.printStackTrace(); - } - } - } - - public void add(Object object, Method method) { - if (objects == null) { - objects = new Object[5]; - methods = new Method[5]; - } - if (count == objects.length) { - objects = (Object[]) PApplet.expand(objects); - methods = (Method[]) PApplet.expand(methods); -// Object otemp[] = new Object[count << 1]; -// System.arraycopy(objects, 0, otemp, 0, count); -// objects = otemp; -// Method mtemp[] = new Method[count << 1]; -// System.arraycopy(methods, 0, mtemp, 0, count); -// methods = mtemp; - } - objects[count] = object; - methods[count] = method; - count++; - } - - - /** - * Removes first object/method pair matched (and only the first, - * must be called multiple times if object is registered multiple times). - * Does not shrink array afterwards, silently returns if method not found. - */ - public void remove(Object object, Method method) { - int index = findIndex(object, method); - if (index != -1) { - // shift remaining methods by one to preserve ordering - count--; - for (int i = index; i < count; i++) { - objects[i] = objects[i+1]; - methods[i] = methods[i+1]; - } - // clean things out for the gc's sake - objects[count] = null; - methods[count] = null; - } - } - - protected int findIndex(Object object, Method method) { - for (int i = 0; i < count; i++) { - if (objects[i] == object && methods[i].equals(method)) { - //objects[i].equals() might be overridden, so use == for safety - // since here we do care about actual object identity - //methods[i]==method is never true even for same method, so must use - // equals(), this should be safe because of object identity - return i; - } - } - return -1; - } - } - - - public void registerSize(Object o) { - Class methodArgs[] = new Class[] { Integer.TYPE, Integer.TYPE }; - registerWithArgs(sizeMethods, "size", o, methodArgs); - } - - public void registerPre(Object o) { - registerNoArgs(preMethods, "pre", o); - } - - public void registerDraw(Object o) { - registerNoArgs(drawMethods, "draw", o); - } - - public void registerPost(Object o) { - registerNoArgs(postMethods, "post", o); - } - - public void registerMouseEvent(Object o) { - Class methodArgs[] = new Class[] { MouseEvent.class }; - registerWithArgs(mouseEventMethods, "mouseEvent", o, methodArgs); - } - - - public void registerKeyEvent(Object o) { - Class methodArgs[] = new Class[] { KeyEvent.class }; - registerWithArgs(keyEventMethods, "keyEvent", o, methodArgs); - } - - public void registerDispose(Object o) { - registerNoArgs(disposeMethods, "dispose", o); - } - - - protected void registerNoArgs(RegisteredMethods meth, - String name, Object o) { - Class c = o.getClass(); - try { - Method method = c.getMethod(name, new Class[] {}); - meth.add(o, method); - - } catch (NoSuchMethodException nsme) { - die("There is no public " + name + "() method in the class " + - o.getClass().getName()); - - } catch (Exception e) { - die("Could not register " + name + " + () for " + o, e); - } - } - - - protected void registerWithArgs(RegisteredMethods meth, - String name, Object o, Class cargs[]) { - Class c = o.getClass(); - try { - Method method = c.getMethod(name, cargs); - meth.add(o, method); - - } catch (NoSuchMethodException nsme) { - die("There is no public " + name + "() method in the class " + - o.getClass().getName()); - - } catch (Exception e) { - die("Could not register " + name + " + () for " + o, e); - } - } - - - public void unregisterSize(Object o) { - Class methodArgs[] = new Class[] { Integer.TYPE, Integer.TYPE }; - unregisterWithArgs(sizeMethods, "size", o, methodArgs); - } - - public void unregisterPre(Object o) { - unregisterNoArgs(preMethods, "pre", o); - } - - public void unregisterDraw(Object o) { - unregisterNoArgs(drawMethods, "draw", o); - } - - public void unregisterPost(Object o) { - unregisterNoArgs(postMethods, "post", o); - } - - public void unregisterMouseEvent(Object o) { - Class methodArgs[] = new Class[] { MouseEvent.class }; - unregisterWithArgs(mouseEventMethods, "mouseEvent", o, methodArgs); - } - - public void unregisterKeyEvent(Object o) { - Class methodArgs[] = new Class[] { KeyEvent.class }; - unregisterWithArgs(keyEventMethods, "keyEvent", o, methodArgs); - } - - public void unregisterDispose(Object o) { - unregisterNoArgs(disposeMethods, "dispose", o); - } - - - protected void unregisterNoArgs(RegisteredMethods meth, - String name, Object o) { - Class c = o.getClass(); - try { - Method method = c.getMethod(name, new Class[] {}); - meth.remove(o, method); - } catch (Exception e) { - die("Could not unregister " + name + "() for " + o, e); - } - } - - - protected void unregisterWithArgs(RegisteredMethods meth, - String name, Object o, Class cargs[]) { - Class c = o.getClass(); - try { - Method method = c.getMethod(name, cargs); - meth.remove(o, method); - } catch (Exception e) { - die("Could not unregister " + name + "() for " + o, e); - } - } - - - ////////////////////////////////////////////////////////////// - - - public void setup() { - } - - - public void draw() { - // if no draw method, then shut things down - //System.out.println("no draw method, goodbye"); - finished = true; - } - - - ////////////////////////////////////////////////////////////// - - - protected void resizeRenderer(int iwidth, int iheight) { -// println("resizeRenderer request for " + iwidth + " " + iheight); - if (width != iwidth || height != iheight) { -// println(" former size was " + width + " " + height); - g.setSize(iwidth, iheight); - width = iwidth; - height = iheight; - } - } - - - /** - * Defines the dimension of the display window in units of pixels. The size() function must be the first line in setup(). If size() is not called, the default size of the window is 100x100 pixels. The system variables width and height are set by the parameters passed to the size() function.

- * Do not use variables as the parameters to size() command, because it will cause problems when exporting your sketch. When variables are used, the dimensions of your sketch cannot be determined during export. Instead, employ numeric values in the size() statement, and then use the built-in width and height variables inside your program when you need the dimensions of the display window are needed.

- * The MODE parameters selects which rendering engine to use. For example, if you will be drawing 3D shapes for the web use P3D, if you want to export a program with OpenGL graphics acceleration use OPENGL. A brief description of the four primary renderers follows:

JAVA2D - The default renderer. This renderer supports two dimensional drawing and provides higher image quality in overall, but generally slower than P2D.

P2D (Processing 2D) - Fast 2D renderer, best used with pixel data, but not as accurate as the JAVA2D default.

P3D (Processing 3D) - Fast 3D renderer for the web. Sacrifices rendering quality for quick 3D drawing.

OPENGL - High speed 3D graphics renderer that makes use of OpenGL-compatible graphics hardware is available. Keep in mind that OpenGL is not magic pixie dust that makes any sketch faster (though it's close), so other rendering options may produce better results depending on the nature of your code. Also note that with OpenGL, all graphics are smoothed: the smooth() and noSmooth() commands are ignored.

PDF - The PDF renderer draws 2D graphics directly to an Acrobat PDF file. This produces excellent results when you need vector shapes for high resolution output or printing. You must first use Import Library → PDF to make use of the library. More information can be found in the PDF library reference. - * If you're manipulating pixels (using methods like get() or blend(), or manipulating the pixels[] array), P2D and P3D will usually be faster than the default (JAVA2D) setting, and often the OPENGL setting as well. Similarly, when handling lots of images, or doing video playback, P2D and P3D will tend to be faster.

- * The P2D, P3D, and OPENGL renderers do not support strokeCap() or strokeJoin(), which can lead to ugly results when using strokeWeight(). (Bug 955)

- * For the most elegant and accurate results when drawing in 2D, particularly when using smooth(), use the JAVA2D renderer setting. It may be slower than the others, but is the most complete, which is why it's the default. Advanced users will want to switch to other renderers as they learn the tradeoffs.

- * Rendering graphics requires tradeoffs between speed, accuracy, and general usefulness of the available features. None of the renderers are perfect, so we provide multiple options so that you can decide what tradeoffs make the most sense for your project. We'd prefer all of them to have perfect visual accuracy, high performance, and support a wide range of features, but that's simply not possible.

- * The maximum width and height is limited by your operating system, and is usually the width and height of your actual screen. On some machines it may simply be the number of pixels on your current screen, meaning that a screen that's 800x600 could support size(1600, 300), since it's the same number of pixels. This varies widely so you'll have to try different rendering modes and sizes until you get what you're looking for. If you need something larger, use createGraphics to create a non-visible drawing surface. - *

Again, the size() method must be the first line of the code (or first item inside setup). Any code that appears before the size() command may run more than once, which can lead to confusing results. - * - * =advanced - * Starts up and creates a two-dimensional drawing surface, - * or resizes the current drawing surface. - *

- * This should be the first thing called inside of setup(). - *

- * If using Java 1.3 or later, this will default to using - * PGraphics2, the Java2D-based renderer. If using Java 1.1, - * or if PGraphics2 is not available, then PGraphics will be used. - * To set your own renderer, use the other version of the size() - * method that takes a renderer as its last parameter. - *

- * If called once a renderer has already been set, this will - * use the previous renderer and simply resize it. - * - * @webref structure - * @param iwidth width of the display window in units of pixels - * @param iheight height of the display window in units of pixels - */ - public void size(int iwidth, int iheight) { - size(iwidth, iheight, JAVA2D, null); - } - - /** - * - * @param irenderer Either P2D, P3D, JAVA2D, or OPENGL - */ - public void size(int iwidth, int iheight, String irenderer) { - size(iwidth, iheight, irenderer, null); - } - - - /** - * Creates a new PGraphics object and sets it to the specified size. - * - * Note that you cannot change the renderer once outside of setup(). - * In most cases, you can call size() to give it a new size, - * but you need to always ask for the same renderer, otherwise - * you're gonna run into trouble. - * - * The size() method should *only* be called from inside the setup() or - * draw() methods, so that it is properly run on the main animation thread. - * To change the size of a PApplet externally, use setSize(), which will - * update the component size, and queue a resize of the renderer as well. - */ - public void size(final int iwidth, final int iheight, - String irenderer, String ipath) { - // Run this from the EDT, just cuz it's AWT stuff (or maybe later Swing) - SwingUtilities.invokeLater(new Runnable() { - public void run() { - // Set the preferred size so that the layout managers can handle it - setPreferredSize(new Dimension(iwidth, iheight)); - setSize(iwidth, iheight); - } - }); - - // ensure that this is an absolute path - if (ipath != null) ipath = savePath(ipath); - - String currentRenderer = g.getClass().getName(); - if (currentRenderer.equals(irenderer)) { - // Avoid infinite loop of throwing exception to reset renderer - resizeRenderer(iwidth, iheight); - //redraw(); // will only be called insize draw() - - } else { // renderer is being changed - // otherwise ok to fall through and create renderer below - // the renderer is changing, so need to create a new object - g = makeGraphics(iwidth, iheight, irenderer, ipath, true); - width = iwidth; - height = iheight; - - // fire resize event to make sure the applet is the proper size -// setSize(iwidth, iheight); - // this is the function that will run if the user does their own - // size() command inside setup, so set defaultSize to false. - defaultSize = false; - - // throw an exception so that setup() is called again - // but with a properly sized render - // this is for opengl, which needs a valid, properly sized - // display before calling anything inside setup(). - throw new RendererChangeException(); - } - } - - - /** - * Creates and returns a new PGraphics object of the types P2D, P3D, and JAVA2D. Use this class if you need to draw into an off-screen graphics buffer. It's not possible to use createGraphics() with OPENGL, because it doesn't allow offscreen use. The DXF and PDF renderers require the filename parameter. - *

It's important to call any drawing commands between beginDraw() and endDraw() statements. This is also true for any commands that affect drawing, such as smooth() or colorMode(). - *

Unlike the main drawing surface which is completely opaque, surfaces created with createGraphics() can have transparency. This makes it possible to draw into a graphics and maintain the alpha channel. By using save() to write a PNG or TGA file, the transparency of the graphics object will be honored. Note that transparency levels are binary: pixels are either complete opaque or transparent. For the time being (as of release 0127), this means that text characters will be opaque blocks. This will be fixed in a future release (Bug 641). - * - * =advanced - * Create an offscreen PGraphics object for drawing. This can be used - * for bitmap or vector images drawing or rendering. - *

    - *
  • Do not use "new PGraphicsXxxx()", use this method. This method - * ensures that internal variables are set up properly that tie the - * new graphics context back to its parent PApplet. - *
  • The basic way to create bitmap images is to use the saveFrame() - * function. - *
  • If you want to create a really large scene and write that, - * first make sure that you've allocated a lot of memory in the Preferences. - *
  • If you want to create images that are larger than the screen, - * you should create your own PGraphics object, draw to that, and use - * save(). - * For now, it's best to use P3D in this scenario. - * P2D is currently disabled, and the JAVA2D default will give mixed - * results. An example of using P3D: - *
    -   *
    -   * PGraphics big;
    -   *
    -   * void setup() {
    -   *   big = createGraphics(3000, 3000, P3D);
    -   *
    -   *   big.beginDraw();
    -   *   big.background(128);
    -   *   big.line(20, 1800, 1800, 900);
    -   *   // etc..
    -   *   big.endDraw();
    -   *
    -   *   // make sure the file is written to the sketch folder
    -   *   big.save("big.tif");
    -   * }
    -   *
    -   * 
    - *
  • It's important to always wrap drawing to createGraphics() with - * beginDraw() and endDraw() (beginFrame() and endFrame() prior to - * revision 0115). The reason is that the renderer needs to know when - * drawing has stopped, so that it can update itself internally. - * This also handles calling the defaults() method, for people familiar - * with that. - *
  • It's not possible to use createGraphics() with the OPENGL renderer, - * because it doesn't allow offscreen use. - *
  • With Processing 0115 and later, it's possible to write images in - * formats other than the default .tga and .tiff. The exact formats and - * background information can be found in the developer's reference for - * PImage.save(). - *
- * - * @webref rendering - * @param iwidth width in pixels - * @param iheight height in pixels - * @param irenderer Either P2D (not yet implemented), P3D, JAVA2D, PDF, DXF - * - * @see processing.core.PGraphics - * - */ - public PGraphics createGraphics(int iwidth, int iheight, - String irenderer) { - PGraphics pg = makeGraphics(iwidth, iheight, irenderer, null, false); - //pg.parent = this; // make save() work - return pg; - } - - - /** - * Create an offscreen graphics surface for drawing, in this case - * for a renderer that writes to a file (such as PDF or DXF). - * @param ipath the name of the file (can be an absolute or relative path) - */ - public PGraphics createGraphics(int iwidth, int iheight, - String irenderer, String ipath) { - if (ipath != null) { - ipath = savePath(ipath); - } - PGraphics pg = makeGraphics(iwidth, iheight, irenderer, ipath, false); - pg.parent = this; // make save() work - return pg; - } - - - /** - * Version of createGraphics() used internally. - * - * @param ipath must be an absolute path, usually set via savePath() - * @oaram applet the parent applet object, this should only be non-null - * in cases where this is the main drawing surface object. - */ - protected PGraphics makeGraphics(int iwidth, int iheight, - String irenderer, String ipath, - boolean iprimary) { - if (irenderer.equals(OPENGL)) { - if (PApplet.platform == WINDOWS) { - String s = System.getProperty("java.version"); - if (s != null) { - if (s.equals("1.5.0_10")) { - System.err.println("OpenGL support is broken with Java 1.5.0_10"); - System.err.println("See http://dev.processing.org" + - "/bugs/show_bug.cgi?id=513 for more info."); - throw new RuntimeException("Please update your Java " + - "installation (see bug #513)"); - } - } - } - } - -// if (irenderer.equals(P2D)) { -// throw new RuntimeException("The P2D renderer is currently disabled, " + -// "please use P3D or JAVA2D."); -// } - - String openglError = - "Before using OpenGL, first select " + - "Import Library > opengl from the Sketch menu."; - - try { - /* - Class rendererClass = Class.forName(irenderer); - - Class constructorParams[] = null; - Object constructorValues[] = null; - - if (ipath == null) { - constructorParams = new Class[] { - Integer.TYPE, Integer.TYPE, PApplet.class - }; - constructorValues = new Object[] { - new Integer(iwidth), new Integer(iheight), this - }; - } else { - constructorParams = new Class[] { - Integer.TYPE, Integer.TYPE, PApplet.class, String.class - }; - constructorValues = new Object[] { - new Integer(iwidth), new Integer(iheight), this, ipath - }; - } - - Constructor constructor = - rendererClass.getConstructor(constructorParams); - PGraphics pg = (PGraphics) constructor.newInstance(constructorValues); - */ - - Class rendererClass = - Thread.currentThread().getContextClassLoader().loadClass(irenderer); - - //Class params[] = null; - //PApplet.println(rendererClass.getConstructors()); - Constructor constructor = rendererClass.getConstructor(new Class[] { }); - PGraphics pg = (PGraphics) constructor.newInstance(); - - pg.setParent(this); - pg.setPrimary(iprimary); - if (ipath != null) pg.setPath(ipath); - pg.setSize(iwidth, iheight); - - // everything worked, return it - return pg; - - } catch (InvocationTargetException ite) { - String msg = ite.getTargetException().getMessage(); - if ((msg != null) && - (msg.indexOf("no jogl in java.library.path") != -1)) { - throw new RuntimeException(openglError + - " (The native library is missing.)"); - - } else { - ite.getTargetException().printStackTrace(); - Throwable target = ite.getTargetException(); - if (platform == MACOSX) target.printStackTrace(System.out); // bug - // neither of these help, or work - //target.printStackTrace(System.err); - //System.err.flush(); - //System.out.println(System.err); // and the object isn't null - throw new RuntimeException(target.getMessage()); - } - - } catch (ClassNotFoundException cnfe) { - if (cnfe.getMessage().indexOf("processing.opengl.PGraphicsGL") != -1) { - throw new RuntimeException(openglError + - " (The library .jar file is missing.)"); - } else { - throw new RuntimeException("You need to use \"Import Library\" " + - "to add " + irenderer + " to your sketch."); - } - - } catch (Exception e) { - //System.out.println("ex3"); - if ((e instanceof IllegalArgumentException) || - (e instanceof NoSuchMethodException) || - (e instanceof IllegalAccessException)) { - e.printStackTrace(); - /* - String msg = "public " + - irenderer.substring(irenderer.lastIndexOf('.') + 1) + - "(int width, int height, PApplet parent" + - ((ipath == null) ? "" : ", String filename") + - ") does not exist."; - */ - String msg = irenderer + " needs to be updated " + - "for the current release of Processing."; - throw new RuntimeException(msg); - - } else { - if (platform == MACOSX) e.printStackTrace(System.out); - throw new RuntimeException(e.getMessage()); - } - } - } - - - /** - * Creates a new PImage (the datatype for storing images). This provides a fresh buffer of pixels to play with. Set the size of the buffer with the width and height parameters. The format parameter defines how the pixels are stored. See the PImage reference for more information. - *

Be sure to include all three parameters, specifying only the width and height (but no format) will produce a strange error. - *

Advanced users please note that createImage() should be used instead of the syntax new PImage(). - * =advanced - * Preferred method of creating new PImage objects, ensures that a - * reference to the parent PApplet is included, which makes save() work - * without needing an absolute path. - * - * @webref image - * @param wide width in pixels - * @param high height in pixels - * @param format Either RGB, ARGB, ALPHA (grayscale alpha channel) - * - * @see processing.core.PImage - * @see processing.core.PGraphics - */ - public PImage createImage(int wide, int high, int format) { - PImage image = new PImage(wide, high, format); - image.parent = this; // make save() work - return image; - } - - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - - public void update(Graphics screen) { - paint(screen); - } - - - //synchronized public void paint(Graphics screen) { // shutting off for 0146 - public void paint(Graphics screen) { - // ignore the very first call to paint, since it's coming - // from the o.s., and the applet will soon update itself anyway. - if (frameCount == 0) { -// println("Skipping frame"); - // paint() may be called more than once before things - // are finally painted to the screen and the thread gets going - return; - } - - // without ignoring the first call, the first several frames - // are confused because paint() gets called in the midst of - // the initial nextFrame() call, so there are multiple - // updates fighting with one another. - - // g.image is synchronized so that draw/loop and paint don't - // try to fight over it. this was causing a randomized slowdown - // that would cut the frameRate into a third on macosx, - // and is probably related to the windows sluggishness bug too - - // make sure the screen is visible and usable - // (also prevents over-drawing when using PGraphicsOpenGL) - if ((g != null) && (g.image != null)) { -// println("inside paint(), screen.drawImage()"); - screen.drawImage(g.image, 0, 0, null); - } - } - - - // active paint method - protected void paint() { - try { - Graphics screen = this.getGraphics(); - if (screen != null) { - if ((g != null) && (g.image != null)) { - screen.drawImage(g.image, 0, 0, null); - } - Toolkit.getDefaultToolkit().sync(); - } - } catch (Exception e) { - // Seen on applet destroy, maybe can ignore? - e.printStackTrace(); - -// } finally { -// if (g != null) { -// g.dispose(); -// } - } - } - - - ////////////////////////////////////////////////////////////// - - - /** - * Main method for the primary animation thread. - * - * Painting in AWT and Swing - */ - public void run() { // not good to make this synchronized, locks things up - long beforeTime = System.nanoTime(); - long overSleepTime = 0L; - - int noDelays = 0; - // Number of frames with a delay of 0 ms before the - // animation thread yields to other running threads. - final int NO_DELAYS_PER_YIELD = 15; - - /* - // this has to be called after the exception is thrown, - // otherwise the supporting libs won't have a valid context to draw to - Object methodArgs[] = - new Object[] { new Integer(width), new Integer(height) }; - sizeMethods.handle(methodArgs); - */ - - while ((Thread.currentThread() == thread) && !finished) { - // Don't resize the renderer from the EDT (i.e. from a ComponentEvent), - // otherwise it may attempt a resize mid-render. - if (resizeRequest) { - resizeRenderer(resizeWidth, resizeHeight); - resizeRequest = false; - } - - // render a single frame - handleDraw(); - - if (frameCount == 1) { - // Call the request focus event once the image is sure to be on - // screen and the component is valid. The OpenGL renderer will - // request focus for its canvas inside beginDraw(). - // http://java.sun.com/j2se/1.4.2/docs/api/java/awt/doc-files/FocusSpec.html - //println("requesting focus"); - requestFocus(); - } - - // wait for update & paint to happen before drawing next frame - // this is necessary since the drawing is sometimes in a - // separate thread, meaning that the next frame will start - // before the update/paint is completed - - long afterTime = System.nanoTime(); - long timeDiff = afterTime - beforeTime; - //System.out.println("time diff is " + timeDiff); - long sleepTime = (frameRatePeriod - timeDiff) - overSleepTime; - - if (sleepTime > 0) { // some time left in this cycle - try { -// Thread.sleep(sleepTime / 1000000L); // nanoseconds -> milliseconds - Thread.sleep(sleepTime / 1000000L, (int) (sleepTime % 1000000L)); - noDelays = 0; // Got some sleep, not delaying anymore - } catch (InterruptedException ex) { } - - overSleepTime = (System.nanoTime() - afterTime) - sleepTime; - //System.out.println(" oversleep is " + overSleepTime); - - } else { // sleepTime <= 0; the frame took longer than the period -// excess -= sleepTime; // store excess time value - overSleepTime = 0L; - - if (noDelays > NO_DELAYS_PER_YIELD) { - Thread.yield(); // give another thread a chance to run - noDelays = 0; - } - } - - beforeTime = System.nanoTime(); - } - - stop(); // call to shutdown libs? - - // If the user called the exit() function, the window should close, - // rather than the sketch just halting. - if (exitCalled) { - exit2(); - } - } - - - //synchronized public void handleDisplay() { - public void handleDraw() { - if (g != null && (looping || redraw)) { - if (!g.canDraw()) { - // Don't draw if the renderer is not yet ready. - // (e.g. OpenGL has to wait for a peer to be on screen) - return; - } - - //System.out.println("handleDraw() " + frameCount); - - g.beginDraw(); - if (recorder != null) { - recorder.beginDraw(); - } - - long now = System.nanoTime(); - - if (frameCount == 0) { - try { - //println("Calling setup()"); - setup(); - //println("Done with setup()"); - - } catch (RendererChangeException e) { - // Give up, instead set the new renderer and re-attempt setup() - return; - } - this.defaultSize = false; - - } else { // frameCount > 0, meaning an actual draw() - // update the current frameRate - double rate = 1000000.0 / ((now - frameRateLastNanos) / 1000000.0); - float instantaneousRate = (float) rate / 1000.0f; - frameRate = (frameRate * 0.9f) + (instantaneousRate * 0.1f); - - preMethods.handle(); - - // use dmouseX/Y as previous mouse pos, since this is the - // last position the mouse was in during the previous draw. - pmouseX = dmouseX; - pmouseY = dmouseY; - - //println("Calling draw()"); - draw(); - //println("Done calling draw()"); - - // dmouseX/Y is updated only once per frame (unlike emouseX/Y) - dmouseX = mouseX; - dmouseY = mouseY; - - // these are called *after* loop so that valid - // drawing commands can be run inside them. it can't - // be before, since a call to background() would wipe - // out anything that had been drawn so far. - dequeueMouseEvents(); - dequeueKeyEvents(); - - drawMethods.handle(); - - redraw = false; // unset 'redraw' flag in case it was set - // (only do this once draw() has run, not just setup()) - - } - - g.endDraw(); - if (recorder != null) { - recorder.endDraw(); - } - - frameRateLastNanos = now; - frameCount++; - - // Actively render the screen - paint(); - -// repaint(); -// getToolkit().sync(); // force repaint now (proper method) - - postMethods.handle(); - } - } - - - ////////////////////////////////////////////////////////////// - - - - synchronized public void redraw() { - if (!looping) { - redraw = true; -// if (thread != null) { -// // wake from sleep (necessary otherwise it'll be -// // up to 10 seconds before update) -// if (CRUSTY_THREADS) { -// thread.interrupt(); -// } else { -// synchronized (blocker) { -// blocker.notifyAll(); -// } -// } -// } - } - } - - - synchronized public void loop() { - if (!looping) { - looping = true; - } - } - - - synchronized public void noLoop() { - if (looping) { - looping = false; - } - } - - - ////////////////////////////////////////////////////////////// - - - public void addListeners() { - addMouseListener(this); - addMouseMotionListener(this); - addKeyListener(this); - addFocusListener(this); - - addComponentListener(new ComponentAdapter() { - public void componentResized(ComponentEvent e) { - Component c = e.getComponent(); - //System.out.println("componentResized() " + c); - Rectangle bounds = c.getBounds(); - resizeRequest = true; - resizeWidth = bounds.width; - resizeHeight = bounds.height; - } - }); - } - - - ////////////////////////////////////////////////////////////// - - - MouseEvent mouseEventQueue[] = new MouseEvent[10]; - int mouseEventCount; - - protected void enqueueMouseEvent(MouseEvent e) { - synchronized (mouseEventQueue) { - if (mouseEventCount == mouseEventQueue.length) { - MouseEvent temp[] = new MouseEvent[mouseEventCount << 1]; - System.arraycopy(mouseEventQueue, 0, temp, 0, mouseEventCount); - mouseEventQueue = temp; - } - mouseEventQueue[mouseEventCount++] = e; - } - } - - protected void dequeueMouseEvents() { - synchronized (mouseEventQueue) { - for (int i = 0; i < mouseEventCount; i++) { - mouseEvent = mouseEventQueue[i]; - handleMouseEvent(mouseEvent); - } - mouseEventCount = 0; - } - } - - - /** - * Actually take action based on a mouse event. - * Internally updates mouseX, mouseY, mousePressed, and mouseEvent. - * Then it calls the event type with no params, - * i.e. mousePressed() or mouseReleased() that the user may have - * overloaded to do something more useful. - */ - protected void handleMouseEvent(MouseEvent event) { - int id = event.getID(); - - // http://dev.processing.org/bugs/show_bug.cgi?id=170 - // also prevents mouseExited() on the mac from hosing the mouse - // position, because x/y are bizarre values on the exit event. - // see also the id check below.. both of these go together - if ((id == MouseEvent.MOUSE_DRAGGED) || - (id == MouseEvent.MOUSE_MOVED)) { - pmouseX = emouseX; - pmouseY = emouseY; - mouseX = event.getX(); - mouseY = event.getY(); - } - - mouseEvent = event; - - int modifiers = event.getModifiers(); - if ((modifiers & InputEvent.BUTTON1_MASK) != 0) { - mouseButton = LEFT; - } else if ((modifiers & InputEvent.BUTTON2_MASK) != 0) { - mouseButton = CENTER; - } else if ((modifiers & InputEvent.BUTTON3_MASK) != 0) { - mouseButton = RIGHT; - } - // if running on macos, allow ctrl-click as right mouse - if (platform == MACOSX) { - if (mouseEvent.isPopupTrigger()) { - mouseButton = RIGHT; - } - } - - mouseEventMethods.handle(new Object[] { event }); - - // this used to only be called on mouseMoved and mouseDragged - // change it back if people run into trouble - if (firstMouse) { - pmouseX = mouseX; - pmouseY = mouseY; - dmouseX = mouseX; - dmouseY = mouseY; - firstMouse = false; - } - - //println(event); - - switch (id) { - case MouseEvent.MOUSE_PRESSED: - mousePressed = true; - mousePressed(); - break; - case MouseEvent.MOUSE_RELEASED: - mousePressed = false; - mouseReleased(); - break; - case MouseEvent.MOUSE_CLICKED: - mouseClicked(); - break; - case MouseEvent.MOUSE_DRAGGED: - mouseDragged(); - break; - case MouseEvent.MOUSE_MOVED: - mouseMoved(); - break; - } - - if ((id == MouseEvent.MOUSE_DRAGGED) || - (id == MouseEvent.MOUSE_MOVED)) { - emouseX = mouseX; - emouseY = mouseY; - } - } - - - /** - * Figure out how to process a mouse event. When loop() has been - * called, the events will be queued up until drawing is complete. - * If noLoop() has been called, then events will happen immediately. - */ - protected void checkMouseEvent(MouseEvent event) { - if (looping) { - enqueueMouseEvent(event); - } else { - handleMouseEvent(event); - } - } - - - /** - * If you override this or any function that takes a "MouseEvent e" - * without calling its super.mouseXxxx() then mouseX, mouseY, - * mousePressed, and mouseEvent will no longer be set. - */ - public void mousePressed(MouseEvent e) { - checkMouseEvent(e); - } - - public void mouseReleased(MouseEvent e) { - checkMouseEvent(e); - } - - public void mouseClicked(MouseEvent e) { - checkMouseEvent(e); - } - - public void mouseEntered(MouseEvent e) { - checkMouseEvent(e); - } - - public void mouseExited(MouseEvent e) { - checkMouseEvent(e); - } - - public void mouseDragged(MouseEvent e) { - checkMouseEvent(e); - } - - public void mouseMoved(MouseEvent e) { - checkMouseEvent(e); - } - - - /** - * The mousePressed() function is called once after every time a mouse button is pressed. The mouseButton variable (see the related reference entry) can be used to determine which button has been pressed. - * =advanced - * - * If you must, use - * int button = mouseEvent.getButton(); - * to figure out which button was clicked. It will be one of: - * MouseEvent.BUTTON1, MouseEvent.BUTTON2, MouseEvent.BUTTON3 - * Note, however, that this is completely inconsistent across - * platforms. - * @webref input:mouse - * @see PApplet#mouseX - * @see PApplet#mouseY - * @see PApplet#mousePressed - * @see PApplet#mouseReleased() - * @see PApplet#mouseMoved() - * @see PApplet#mouseDragged() - */ - public void mousePressed() { } - - /** - * The mouseReleased() function is called every time a mouse button is released. - * @webref input:mouse - * @see PApplet#mouseX - * @see PApplet#mouseY - * @see PApplet#mousePressed - * @see PApplet#mousePressed() - * @see PApplet#mouseMoved() - * @see PApplet#mouseDragged() - */ - public void mouseReleased() { } - - /** - * The mouseClicked() function is called once after a mouse button has been pressed and then released. - * =advanced - * When the mouse is clicked, mousePressed() will be called, - * then mouseReleased(), then mouseClicked(). Note that - * mousePressed is already false inside of mouseClicked(). - * @webref input:mouse - * @see PApplet#mouseX - * @see PApplet#mouseY - * @see PApplet#mouseButton - * @see PApplet#mousePressed() - * @see PApplet#mouseReleased() - * @see PApplet#mouseMoved() - * @see PApplet#mouseDragged() - */ - public void mouseClicked() { } - - /** - * The mouseDragged() function is called once every time the mouse moves and a mouse button is pressed. - * @webref input:mouse - * @see PApplet#mouseX - * @see PApplet#mouseY - * @see PApplet#mousePressed - * @see PApplet#mousePressed() - * @see PApplet#mouseReleased() - * @see PApplet#mouseMoved() - */ - public void mouseDragged() { } - - /** - * The mouseMoved() function is called every time the mouse moves and a mouse button is not pressed. - * @webref input:mouse - * @see PApplet#mouseX - * @see PApplet#mouseY - * @see PApplet#mousePressed - * @see PApplet#mousePressed() - * @see PApplet#mouseReleased() - * @see PApplet#mouseDragged() - */ - public void mouseMoved() { } - - - ////////////////////////////////////////////////////////////// - - - KeyEvent keyEventQueue[] = new KeyEvent[10]; - int keyEventCount; - - protected void enqueueKeyEvent(KeyEvent e) { - synchronized (keyEventQueue) { - if (keyEventCount == keyEventQueue.length) { - KeyEvent temp[] = new KeyEvent[keyEventCount << 1]; - System.arraycopy(keyEventQueue, 0, temp, 0, keyEventCount); - keyEventQueue = temp; - } - keyEventQueue[keyEventCount++] = e; - } - } - - protected void dequeueKeyEvents() { - synchronized (keyEventQueue) { - for (int i = 0; i < keyEventCount; i++) { - keyEvent = keyEventQueue[i]; - handleKeyEvent(keyEvent); - } - keyEventCount = 0; - } - } - - - protected void handleKeyEvent(KeyEvent event) { - keyEvent = event; - key = event.getKeyChar(); - keyCode = event.getKeyCode(); - - keyEventMethods.handle(new Object[] { event }); - - switch (event.getID()) { - case KeyEvent.KEY_PRESSED: - keyPressed = true; - keyPressed(); - break; - case KeyEvent.KEY_RELEASED: - keyPressed = false; - keyReleased(); - break; - case KeyEvent.KEY_TYPED: - keyTyped(); - break; - } - - // if someone else wants to intercept the key, they should - // set key to zero (or something besides the ESC). - if (event.getID() == KeyEvent.KEY_PRESSED) { - if (key == KeyEvent.VK_ESCAPE) { - exit(); - } - // When running tethered to the Processing application, respond to - // Ctrl-W (or Cmd-W) events by closing the sketch. Disable this behavior - // when running independently, because this sketch may be one component - // embedded inside an application that has its own close behavior. - if (external && - event.getModifiers() == MENU_SHORTCUT && - event.getKeyCode() == 'W') { - exit(); - } - } - } - - - protected void checkKeyEvent(KeyEvent event) { - if (looping) { - enqueueKeyEvent(event); - } else { - handleKeyEvent(event); - } - } - - - /** - * Overriding keyXxxxx(KeyEvent e) functions will cause the 'key', - * 'keyCode', and 'keyEvent' variables to no longer work; - * key events will no longer be queued until the end of draw(); - * and the keyPressed(), keyReleased() and keyTyped() methods - * will no longer be called. - */ - public void keyPressed(KeyEvent e) { checkKeyEvent(e); } - public void keyReleased(KeyEvent e) { checkKeyEvent(e); } - public void keyTyped(KeyEvent e) { checkKeyEvent(e); } - - - /** - * - * The keyPressed() function is called once every time a key is pressed. The key that was pressed is stored in the key variable. - *

For non-ASCII keys, use the keyCode variable. - * The keys included in the ASCII specification (BACKSPACE, TAB, ENTER, RETURN, ESC, and DELETE) do not require checking to see if they key is coded, and you should simply use the key variable instead of keyCode - * If you're making cross-platform projects, note that the ENTER key is commonly used on PCs and Unix and the RETURN key is used instead on Macintosh. - * Check for both ENTER and RETURN to make sure your program will work for all platforms.

Because of how operating systems handle key repeats, holding down a key may cause multiple calls to keyPressed() (and keyReleased() as well). - * The rate of repeat is set by the operating system and how each computer is configured. - * =advanced - * - * Called each time a single key on the keyboard is pressed. - * Because of how operating systems handle key repeats, holding - * down a key will cause multiple calls to keyPressed(), because - * the OS repeat takes over. - *

- * Examples for key handling: - * (Tested on Windows XP, please notify if different on other - * platforms, I have a feeling Mac OS and Linux may do otherwise) - *

-   * 1. Pressing 'a' on the keyboard:
-   *    keyPressed  with key == 'a' and keyCode == 'A'
-   *    keyTyped    with key == 'a' and keyCode ==  0
-   *    keyReleased with key == 'a' and keyCode == 'A'
-   *
-   * 2. Pressing 'A' on the keyboard:
-   *    keyPressed  with key == 'A' and keyCode == 'A'
-   *    keyTyped    with key == 'A' and keyCode ==  0
-   *    keyReleased with key == 'A' and keyCode == 'A'
-   *
-   * 3. Pressing 'shift', then 'a' on the keyboard (caps lock is off):
-   *    keyPressed  with key == CODED and keyCode == SHIFT
-   *    keyPressed  with key == 'A'   and keyCode == 'A'
-   *    keyTyped    with key == 'A'   and keyCode == 0
-   *    keyReleased with key == 'A'   and keyCode == 'A'
-   *    keyReleased with key == CODED and keyCode == SHIFT
-   *
-   * 4. Holding down the 'a' key.
-   *    The following will happen several times,
-   *    depending on your machine's "key repeat rate" settings:
-   *    keyPressed  with key == 'a' and keyCode == 'A'
-   *    keyTyped    with key == 'a' and keyCode ==  0
-   *    When you finally let go, you'll get:
-   *    keyReleased with key == 'a' and keyCode == 'A'
-   *
-   * 5. Pressing and releasing the 'shift' key
-   *    keyPressed  with key == CODED and keyCode == SHIFT
-   *    keyReleased with key == CODED and keyCode == SHIFT
-   *    (note there is no keyTyped)
-   *
-   * 6. Pressing the tab key in an applet with Java 1.4 will
-   *    normally do nothing, but PApplet dynamically shuts
-   *    this behavior off if Java 1.4 is in use (tested 1.4.2_05 Windows).
-   *    Java 1.1 (Microsoft VM) passes the TAB key through normally.
-   *    Not tested on other platforms or for 1.3.
-   * 
- * @see PApplet#key - * @see PApplet#keyCode - * @see PApplet#keyPressed - * @see PApplet#keyReleased() - * @webref input:keyboard - */ - public void keyPressed() { } - - - /** - * The keyReleased() function is called once every time a key is released. The key that was released will be stored in the key variable. See key and keyReleased for more information. - * - * @see PApplet#key - * @see PApplet#keyCode - * @see PApplet#keyPressed - * @see PApplet#keyPressed() - * @webref input:keyboard - */ - public void keyReleased() { } - - - /** - * Only called for "regular" keys like letters, - * see keyPressed() for full documentation. - */ - public void keyTyped() { } - - - ////////////////////////////////////////////////////////////// - - // i am focused man, and i'm not afraid of death. - // and i'm going all out. i circle the vultures in a van - // and i run the block. - - - public void focusGained() { } - - public void focusGained(FocusEvent e) { - focused = true; - focusGained(); - } - - - public void focusLost() { } - - public void focusLost(FocusEvent e) { - focused = false; - focusLost(); - } - - - ////////////////////////////////////////////////////////////// - - // getting the time - - - /** - * Returns the number of milliseconds (thousandths of a second) since starting an applet. This information is often used for timing animation sequences. - * - * =advanced - *

- * This is a function, rather than a variable, because it may - * change multiple times per frame. - * - * @webref input:time_date - * @see processing.core.PApplet#second() - * @see processing.core.PApplet#minute() - * @see processing.core.PApplet#hour() - * @see processing.core.PApplet#day() - * @see processing.core.PApplet#month() - * @see processing.core.PApplet#year() - * - */ - public int millis() { - return (int) (System.currentTimeMillis() - millisOffset); - } - - /** Seconds position of the current time. - * - * @webref input:time_date - * @see processing.core.PApplet#millis() - * @see processing.core.PApplet#minute() - * @see processing.core.PApplet#hour() - * @see processing.core.PApplet#day() - * @see processing.core.PApplet#month() - * @see processing.core.PApplet#year() - * */ - static public int second() { - return Calendar.getInstance().get(Calendar.SECOND); - } - - /** - * Processing communicates with the clock on your computer. The minute() function returns the current minute as a value from 0 - 59. - * - * @webref input:time_date - * @see processing.core.PApplet#millis() - * @see processing.core.PApplet#second() - * @see processing.core.PApplet#hour() - * @see processing.core.PApplet#day() - * @see processing.core.PApplet#month() - * @see processing.core.PApplet#year() - * - * */ - static public int minute() { - return Calendar.getInstance().get(Calendar.MINUTE); - } - - /** - * Processing communicates with the clock on your computer. The hour() function returns the current hour as a value from 0 - 23. - * =advanced - * Hour position of the current time in international format (0-23). - *

- * To convert this value to American time:
- *

int yankeeHour = (hour() % 12);
-   * if (yankeeHour == 0) yankeeHour = 12;
- * - * @webref input:time_date - * @see processing.core.PApplet#millis() - * @see processing.core.PApplet#second() - * @see processing.core.PApplet#minute() - * @see processing.core.PApplet#day() - * @see processing.core.PApplet#month() - * @see processing.core.PApplet#year() - * - */ - static public int hour() { - return Calendar.getInstance().get(Calendar.HOUR_OF_DAY); - } - - /** - * Processing communicates with the clock on your computer. The day() function returns the current day as a value from 1 - 31. - * =advanced - * Get the current day of the month (1 through 31). - *

- * If you're looking for the day of the week (M-F or whatever) - * or day of the year (1..365) then use java's Calendar.get() - * - * @webref input:time_date - * @see processing.core.PApplet#millis() - * @see processing.core.PApplet#second() - * @see processing.core.PApplet#minute() - * @see processing.core.PApplet#hour() - * @see processing.core.PApplet#month() - * @see processing.core.PApplet#year() - */ - static public int day() { - return Calendar.getInstance().get(Calendar.DAY_OF_MONTH); - } - - /** - * Processing communicates with the clock on your computer. The month() function returns the current month as a value from 1 - 12. - * - * @webref input:time_date - * @see processing.core.PApplet#millis() - * @see processing.core.PApplet#second() - * @see processing.core.PApplet#minute() - * @see processing.core.PApplet#hour() - * @see processing.core.PApplet#day() - * @see processing.core.PApplet#year() - */ - static public int month() { - // months are number 0..11 so change to colloquial 1..12 - return Calendar.getInstance().get(Calendar.MONTH) + 1; - } - - /** - * Processing communicates with the clock on your computer. - * The year() function returns the current year as an integer (2003, 2004, 2005, etc). - * - * @webref input:time_date - * @see processing.core.PApplet#millis() - * @see processing.core.PApplet#second() - * @see processing.core.PApplet#minute() - * @see processing.core.PApplet#hour() - * @see processing.core.PApplet#day() - * @see processing.core.PApplet#month() - */ - static public int year() { - return Calendar.getInstance().get(Calendar.YEAR); - } - - - ////////////////////////////////////////////////////////////// - - // controlling time (playing god) - - - /** - * The delay() function causes the program to halt for a specified time. - * Delay times are specified in thousandths of a second. For example, - * running delay(3000) will stop the program for three seconds and - * delay(500) will stop the program for a half-second. Remember: the - * display window is updated only at the end of draw(), so putting more - * than one delay() inside draw() will simply add them together and the new - * frame will be drawn when the total delay is over. - *

- * I'm not sure if this is even helpful anymore, as the screen isn't - * updated before or after the delay, meaning which means it just - * makes the app lock up temporarily. - */ - public void delay(int napTime) { - if (frameCount != 0) { - if (napTime > 0) { - try { - Thread.sleep(napTime); - } catch (InterruptedException e) { } - } - } - } - - - /** - * Specifies the number of frames to be displayed every second. - * If the processor is not fast enough to maintain the specified rate, it will not be achieved. - * For example, the function call frameRate(30) will attempt to refresh 30 times a second. - * It is recommended to set the frame rate within setup(). The default rate is 60 frames per second. - * =advanced - * Set a target frameRate. This will cause delay() to be called - * after each frame so that the sketch synchronizes to a particular speed. - * Note that this only sets the maximum frame rate, it cannot be used to - * make a slow sketch go faster. Sketches have no default frame rate - * setting, and will attempt to use maximum processor power to achieve - * maximum speed. - * @webref environment - * @param newRateTarget number of frames per second - * @see PApplet#delay(int) - */ - public void frameRate(float newRateTarget) { - frameRateTarget = newRateTarget; - frameRatePeriod = (long) (1000000000.0 / frameRateTarget); - } - - - ////////////////////////////////////////////////////////////// - - - /** - * Reads the value of a param. - * Values are always read as a String so if you want them to be an integer or other datatype they must be converted. - * The param() function will only work in a web browser. - * The function should be called inside setup(), - * otherwise the applet may not yet be initialized and connected to its parent web browser. - * - * @webref input:web - * @usage Web - * - * @param what name of the param to read - */ - public String param(String what) { - if (online) { - return getParameter(what); - - } else { - System.err.println("param() only works inside a web browser"); - } - return null; - } - - - /** - * Displays message in the browser's status area. This is the text area in the lower left corner of the browser. - * The status() function will only work when the Processing program is running in a web browser. - * =advanced - * Show status in the status bar of a web browser, or in the - * System.out console. Eventually this might show status in the - * p5 environment itself, rather than relying on the console. - * - * @webref input:web - * @usage Web - * @param what any valid String - */ - public void status(String what) { - if (online) { - showStatus(what); - - } else { - System.out.println(what); // something more interesting? - } - } - - - public void link(String here) { - link(here, null); - } - - - /** - * Links to a webpage either in the same window or in a new window. The complete URL must be specified. - * =advanced - * Link to an external page without all the muss. - *

- * When run with an applet, uses the browser to open the url, - * for applications, attempts to launch a browser with the url. - *

- * Works on Mac OS X and Windows. For Linux, use: - *

open(new String[] { "firefox", url });
- * or whatever you want as your browser, since Linux doesn't - * yet have a standard method for launching URLs. - * - * @webref input:web - * @param url complete url as a String in quotes - * @param frameTitle name of the window to load the URL as a string in quotes - * - */ - public void link(String url, String frameTitle) { - if (online) { - try { - if (frameTitle == null) { - getAppletContext().showDocument(new URL(url)); - } else { - getAppletContext().showDocument(new URL(url), frameTitle); - } - } catch (Exception e) { - e.printStackTrace(); - throw new RuntimeException("Could not open " + url); - } - } else { - try { - if (platform == WINDOWS) { - // the following uses a shell execute to launch the .html file - // note that under cygwin, the .html files have to be chmodded +x - // after they're unpacked from the zip file. i don't know why, - // and don't understand what this does in terms of windows - // permissions. without the chmod, the command prompt says - // "Access is denied" in both cygwin and the "dos" prompt. - //Runtime.getRuntime().exec("cmd /c " + currentDir + "\\reference\\" + - // referenceFile + ".html"); - - // replace ampersands with control sequence for DOS. - // solution contributed by toxi on the bugs board. - url = url.replaceAll("&","^&"); - - // open dos prompt, give it 'start' command, which will - // open the url properly. start by itself won't work since - // it appears to need cmd - Runtime.getRuntime().exec("cmd /c start " + url); - - } else if (platform == MACOSX) { - //com.apple.mrj.MRJFileUtils.openURL(url); - try { -// Class mrjFileUtils = Class.forName("com.apple.mrj.MRJFileUtils"); -// Method openMethod = -// mrjFileUtils.getMethod("openURL", new Class[] { String.class }); - Class eieio = Class.forName("com.apple.eio.FileManager"); - Method openMethod = - eieio.getMethod("openURL", new Class[] { String.class }); - openMethod.invoke(null, new Object[] { url }); - } catch (Exception e) { - e.printStackTrace(); - } - } else { - //throw new RuntimeException("Can't open URLs for this platform"); - // Just pass it off to open() and hope for the best - open(url); - } - } catch (IOException e) { - e.printStackTrace(); - throw new RuntimeException("Could not open " + url); - } - } - } - - - /** - * Attempts to open an application or file using your platform's launcher. The file parameter is a String specifying the file name and location. The location parameter must be a full path name, or the name of an executable in the system's PATH. In most cases, using a full path is the best option, rather than relying on the system PATH. Be sure to make the file executable before attempting to open it (chmod +x). - *

- * The args parameter is a String or String array which is passed to the command line. If you have multiple parameters, e.g. an application and a document, or a command with multiple switches, use the version that takes a String array, and place each individual item in a separate element. - *

- * If args is a String (not an array), then it can only be a single file or application with no parameters. It's not the same as executing that String using a shell. For instance, open("jikes -help") will not work properly. - *

- * This function behaves differently on each platform. On Windows, the parameters are sent to the Windows shell via "cmd /c". On Mac OS X, the "open" command is used (type "man open" in Terminal.app for documentation). On Linux, it first tries gnome-open, then kde-open, but if neither are available, it sends the command to the shell without any alterations. - *

- * For users familiar with Java, this is not quite the same as Runtime.exec(), because the launcher command is prepended. Instead, the exec(String[]) function is a shortcut for Runtime.getRuntime.exec(String[]). - * - * @webref input:files - * @param filename name of the file - * @usage Application - */ - static public void open(String filename) { - open(new String[] { filename }); - } - - - static String openLauncher; - - /** - * Launch a process using a platforms shell. This version uses an array - * to make it easier to deal with spaces in the individual elements. - * (This avoids the situation of trying to put single or double quotes - * around different bits). - * - * @param list of commands passed to the command line - */ - static public Process open(String argv[]) { - String[] params = null; - - if (platform == WINDOWS) { - // just launching the .html file via the shell works - // but make sure to chmod +x the .html files first - // also place quotes around it in case there's a space - // in the user.dir part of the url - params = new String[] { "cmd", "/c" }; - - } else if (platform == MACOSX) { - params = new String[] { "open" }; - - } else if (platform == LINUX) { - if (openLauncher == null) { - // Attempt to use gnome-open - try { - Process p = Runtime.getRuntime().exec(new String[] { "gnome-open" }); - /*int result =*/ p.waitFor(); - // Not installed will throw an IOException (JDK 1.4.2, Ubuntu 7.04) - openLauncher = "gnome-open"; - } catch (Exception e) { } - } - if (openLauncher == null) { - // Attempt with kde-open - try { - Process p = Runtime.getRuntime().exec(new String[] { "kde-open" }); - /*int result =*/ p.waitFor(); - openLauncher = "kde-open"; - } catch (Exception e) { } - } - if (openLauncher == null) { - System.err.println("Could not find gnome-open or kde-open, " + - "the open() command may not work."); - } - if (openLauncher != null) { - params = new String[] { openLauncher }; - } - //} else { // give up and just pass it to Runtime.exec() - //open(new String[] { filename }); - //params = new String[] { filename }; - } - if (params != null) { - // If the 'open', 'gnome-open' or 'cmd' are already included - if (params[0].equals(argv[0])) { - // then don't prepend those params again - return exec(argv); - } else { - params = concat(params, argv); - return exec(params); - } - } else { - return exec(argv); - } - } - - - static public Process exec(String[] argv) { - try { - return Runtime.getRuntime().exec(argv); - } catch (Exception e) { - e.printStackTrace(); - throw new RuntimeException("Could not open " + join(argv, ' ')); - } - } - - - ////////////////////////////////////////////////////////////// - - - /** - * Function for an applet/application to kill itself and - * display an error. Mostly this is here to be improved later. - */ - public void die(String what) { - stop(); - throw new RuntimeException(what); - } - - - /** - * Same as above but with an exception. Also needs work. - */ - public void die(String what, Exception e) { - if (e != null) e.printStackTrace(); - die(what); - } - - - /** - * Call to safely exit the sketch when finished. For instance, - * to render a single frame, save it, and quit. - */ - public void exit() { - if (thread == null) { - // exit immediately, stop() has already been called, - // meaning that the main thread has long since exited - exit2(); - - } else if (looping) { - // stop() will be called as the thread exits - finished = true; - // tell the code to call exit2() to do a System.exit() - // once the next draw() has completed - exitCalled = true; - - } else if (!looping) { - // if not looping, need to call stop explicitly, - // because the main thread will be sleeping - stop(); - - // now get out - exit2(); - } - } - - - void exit2() { - try { - System.exit(0); - } catch (SecurityException e) { - // don't care about applet security exceptions - } - } - - - - ////////////////////////////////////////////////////////////// - - - public void method(String name) { -// final Object o = this; -// final Class c = getClass(); - try { - Method method = getClass().getMethod(name, new Class[] {}); - method.invoke(this, new Object[] { }); - - } catch (IllegalArgumentException e) { - e.printStackTrace(); - } catch (IllegalAccessException e) { - e.printStackTrace(); - } catch (InvocationTargetException e) { - e.getTargetException().printStackTrace(); - } catch (NoSuchMethodException nsme) { - System.err.println("There is no public " + name + "() method " + - "in the class " + getClass().getName()); - } catch (Exception e) { - e.printStackTrace(); - } - } - - - public void thread(final String name) { - Thread later = new Thread() { - public void run() { - method(name); - } - }; - later.start(); - } - - - /* - public void thread(String name) { - final Object o = this; - final Class c = getClass(); - try { - final Method method = c.getMethod(name, new Class[] {}); - Thread later = new Thread() { - public void run() { - try { - method.invoke(o, new Object[] { }); - - } catch (IllegalArgumentException e) { - e.printStackTrace(); - } catch (IllegalAccessException e) { - e.printStackTrace(); - } catch (InvocationTargetException e) { - e.getTargetException().printStackTrace(); - } - } - }; - later.start(); - - } catch (NoSuchMethodException nsme) { - System.err.println("There is no " + name + "() method " + - "in the class " + getClass().getName()); - - } catch (Exception e) { - e.printStackTrace(); - } - } - */ - - - - ////////////////////////////////////////////////////////////// - - // SCREEN GRABASS - - - /** - * Intercepts any relative paths to make them absolute (relative - * to the sketch folder) before passing to save() in PImage. - * (Changed in 0100) - */ - public void save(String filename) { - g.save(savePath(filename)); - } - - - /** - * Grab an image of what's currently in the drawing area and save it - * as a .tif or .tga file. - *

- * Best used just before endDraw() at the end of your draw(). - * This can only create .tif or .tga images, so if neither extension - * is specified it defaults to writing a tiff and adds a .tif suffix. - */ - public void saveFrame() { - try { - g.save(savePath("screen-" + nf(frameCount, 4) + ".tif")); - } catch (SecurityException se) { - System.err.println("Can't use saveFrame() when running in a browser, " + - "unless using a signed applet."); - } - } - - - /** - * Save the current frame as a .tif or .tga image. - *

- * The String passed in can contain a series of # signs - * that will be replaced with the screengrab number. - *

-   * i.e. saveFrame("blah-####.tif");
-   *      // saves a numbered tiff image, replacing the
-   *      // #### signs with zeros and the frame number 
- */ - public void saveFrame(String what) { - try { - g.save(savePath(insertFrame(what))); - } catch (SecurityException se) { - System.err.println("Can't use saveFrame() when running in a browser, " + - "unless using a signed applet."); - } - } - - - /** - * Check a string for #### signs to see if the frame number should be - * inserted. Used for functions like saveFrame() and beginRecord() to - * replace the # marks with the frame number. If only one # is used, - * it will be ignored, under the assumption that it's probably not - * intended to be the frame number. - */ - protected String insertFrame(String what) { - int first = what.indexOf('#'); - int last = what.lastIndexOf('#'); - - if ((first != -1) && (last - first > 0)) { - String prefix = what.substring(0, first); - int count = last - first + 1; - String suffix = what.substring(last + 1); - return prefix + nf(frameCount, count) + suffix; - } - return what; // no change - } - - - - ////////////////////////////////////////////////////////////// - - // CURSOR - - // - - - int cursorType = ARROW; // cursor type - boolean cursorVisible = true; // cursor visibility flag - PImage invisibleCursor; - - - /** - * Set the cursor type - * @param cursorType either ARROW, CROSS, HAND, MOVE, TEXT, WAIT - */ - public void cursor(int cursorType) { - setCursor(Cursor.getPredefinedCursor(cursorType)); - cursorVisible = true; - this.cursorType = cursorType; - } - - - /** - * Replace the cursor with the specified PImage. The x- and y- - * coordinate of the center will be the center of the image. - */ - public void cursor(PImage image) { - cursor(image, image.width/2, image.height/2); - } - - - /** - * Sets the cursor to a predefined symbol, an image, or turns it on if already hidden. - * If you are trying to set an image as the cursor, it is recommended to make the size 16x16 or 32x32 pixels. - * It is not possible to load an image as the cursor if you are exporting your program for the Web. - * The values for parameters x and y must be less than the dimensions of the image. - * =advanced - * Set a custom cursor to an image with a specific hotspot. - * Only works with JDK 1.2 and later. - * Currently seems to be broken on Java 1.4 for Mac OS X - *

- * Based on code contributed by Amit Pitaru, plus additional - * code to handle Java versions via reflection by Jonathan Feinberg. - * Reflection removed for release 0128 and later. - * @webref environment - * @see PApplet#noCursor() - * @param image any variable of type PImage - * @param hotspotX the horizonal active spot of the cursor - * @param hotspotY the vertical active spot of the cursor - */ - public void cursor(PImage image, int hotspotX, int hotspotY) { - // don't set this as cursor type, instead use cursor_type - // to save the last cursor used in case cursor() is called - //cursor_type = Cursor.CUSTOM_CURSOR; - Image jimage = - createImage(new MemoryImageSource(image.width, image.height, - image.pixels, 0, image.width)); - Point hotspot = new Point(hotspotX, hotspotY); - Toolkit tk = Toolkit.getDefaultToolkit(); - Cursor cursor = tk.createCustomCursor(jimage, hotspot, "Custom Cursor"); - setCursor(cursor); - cursorVisible = true; - } - - - /** - * Show the cursor after noCursor() was called. - * Notice that the program remembers the last set cursor type - */ - public void cursor() { - // maybe should always set here? seems dangerous, since - // it's likely that java will set the cursor to something - // else on its own, and the applet will be stuck b/c bagel - // thinks that the cursor is set to one particular thing - if (!cursorVisible) { - cursorVisible = true; - setCursor(Cursor.getPredefinedCursor(cursorType)); - } - } - - - /** - * Hides the cursor from view. Will not work when running the program in a web browser. - * =advanced - * Hide the cursor by creating a transparent image - * and using it as a custom cursor. - * @webref environment - * @see PApplet#cursor() - * @usage Application - */ - public void noCursor() { - if (!cursorVisible) return; // don't hide if already hidden. - - if (invisibleCursor == null) { - invisibleCursor = new PImage(16, 16, ARGB); - } - // was formerly 16x16, but the 0x0 was added by jdf as a fix - // for macosx, which wasn't honoring the invisible cursor - cursor(invisibleCursor, 8, 8); - cursorVisible = false; - } - - - ////////////////////////////////////////////////////////////// - - - static public void print(byte what) { - System.out.print(what); - System.out.flush(); - } - - static public void print(boolean what) { - System.out.print(what); - System.out.flush(); - } - - static public void print(char what) { - System.out.print(what); - System.out.flush(); - } - - static public void print(int what) { - System.out.print(what); - System.out.flush(); - } - - static public void print(float what) { - System.out.print(what); - System.out.flush(); - } - - static public void print(String what) { - System.out.print(what); - System.out.flush(); - } - - static public void print(Object what) { - if (what == null) { - // special case since this does fuggly things on > 1.1 - System.out.print("null"); - } else { - System.out.println(what.toString()); - } - } - - // - - static public void println() { - System.out.println(); - } - - // - - static public void println(byte what) { - print(what); System.out.println(); - } - - static public void println(boolean what) { - print(what); System.out.println(); - } - - static public void println(char what) { - print(what); System.out.println(); - } - - static public void println(int what) { - print(what); System.out.println(); - } - - static public void println(float what) { - print(what); System.out.println(); - } - - static public void println(String what) { - print(what); System.out.println(); - } - - static public void println(Object what) { - if (what == null) { - // special case since this does fuggly things on > 1.1 - System.out.println("null"); - - } else { - String name = what.getClass().getName(); - if (name.charAt(0) == '[') { - switch (name.charAt(1)) { - case '[': - // don't even mess with multi-dimensional arrays (case '[') - // or anything else that's not int, float, boolean, char - System.out.println(what); - break; - - case 'L': - // print a 1D array of objects as individual elements - Object poo[] = (Object[]) what; - for (int i = 0; i < poo.length; i++) { - if (poo[i] instanceof String) { - System.out.println("[" + i + "] \"" + poo[i] + "\""); - } else { - System.out.println("[" + i + "] " + poo[i]); - } - } - break; - - case 'Z': // boolean - boolean zz[] = (boolean[]) what; - for (int i = 0; i < zz.length; i++) { - System.out.println("[" + i + "] " + zz[i]); - } - break; - - case 'B': // byte - byte bb[] = (byte[]) what; - for (int i = 0; i < bb.length; i++) { - System.out.println("[" + i + "] " + bb[i]); - } - break; - - case 'C': // char - char cc[] = (char[]) what; - for (int i = 0; i < cc.length; i++) { - System.out.println("[" + i + "] '" + cc[i] + "'"); - } - break; - - case 'I': // int - int ii[] = (int[]) what; - for (int i = 0; i < ii.length; i++) { - System.out.println("[" + i + "] " + ii[i]); - } - break; - - case 'F': // float - float ff[] = (float[]) what; - for (int i = 0; i < ff.length; i++) { - System.out.println("[" + i + "] " + ff[i]); - } - break; - - /* - case 'D': // double - double dd[] = (double[]) what; - for (int i = 0; i < dd.length; i++) { - System.out.println("[" + i + "] " + dd[i]); - } - break; - */ - - default: - System.out.println(what); - } - } else { // not an array - System.out.println(what); - } - } - } - - // - - /* - // not very useful, because it only works for public (and protected?) - // fields of a class, not local variables to methods - public void printvar(String name) { - try { - Field field = getClass().getDeclaredField(name); - println(name + " = " + field.get(this)); - } catch (Exception e) { - e.printStackTrace(); - } - } - */ - - - ////////////////////////////////////////////////////////////// - - // MATH - - // lots of convenience methods for math with floats. - // doubles are overkill for processing applets, and casting - // things all the time is annoying, thus the functions below. - - - static public final float abs(float n) { - return (n < 0) ? -n : n; - } - - static public final int abs(int n) { - return (n < 0) ? -n : n; - } - - static public final float sq(float a) { - return a*a; - } - - static public final float sqrt(float a) { - return (float)Math.sqrt(a); - } - - static public final float log(float a) { - return (float)Math.log(a); - } - - static public final float exp(float a) { - return (float)Math.exp(a); - } - - static public final float pow(float a, float b) { - return (float)Math.pow(a, b); - } - - - static public final int max(int a, int b) { - return (a > b) ? a : b; - } - - static public final float max(float a, float b) { - return (a > b) ? a : b; - } - - /* - static public final double max(double a, double b) { - return (a > b) ? a : b; - } - */ - - - static public final int max(int a, int b, int c) { - return (a > b) ? ((a > c) ? a : c) : ((b > c) ? b : c); - } - - static public final float max(float a, float b, float c) { - return (a > b) ? ((a > c) ? a : c) : ((b > c) ? b : c); - } - - - /** - * Find the maximum value in an array. - * Throws an ArrayIndexOutOfBoundsException if the array is length 0. - * @param list the source array - * @return The maximum value - */ - static public final int max(int[] list) { - if (list.length == 0) { - throw new ArrayIndexOutOfBoundsException(ERROR_MIN_MAX); - } - int max = list[0]; - for (int i = 1; i < list.length; i++) { - if (list[i] > max) max = list[i]; - } - return max; - } - - /** - * Find the maximum value in an array. - * Throws an ArrayIndexOutOfBoundsException if the array is length 0. - * @param list the source array - * @return The maximum value - */ - static public final float max(float[] list) { - if (list.length == 0) { - throw new ArrayIndexOutOfBoundsException(ERROR_MIN_MAX); - } - float max = list[0]; - for (int i = 1; i < list.length; i++) { - if (list[i] > max) max = list[i]; - } - return max; - } - - - /** - * Find the maximum value in an array. - * Throws an ArrayIndexOutOfBoundsException if the array is length 0. - * @param list the source array - * @return The maximum value - */ - /* - static public final double max(double[] list) { - if (list.length == 0) { - throw new ArrayIndexOutOfBoundsException(ERROR_MIN_MAX); - } - double max = list[0]; - for (int i = 1; i < list.length; i++) { - if (list[i] > max) max = list[i]; - } - return max; - } - */ - - - static public final int min(int a, int b) { - return (a < b) ? a : b; - } - - static public final float min(float a, float b) { - return (a < b) ? a : b; - } - - /* - static public final double min(double a, double b) { - return (a < b) ? a : b; - } - */ - - - static public final int min(int a, int b, int c) { - return (a < b) ? ((a < c) ? a : c) : ((b < c) ? b : c); - } - - static public final float min(float a, float b, float c) { - return (a < b) ? ((a < c) ? a : c) : ((b < c) ? b : c); - } - - /* - static public final double min(double a, double b, double c) { - return (a < b) ? ((a < c) ? a : c) : ((b < c) ? b : c); - } - */ - - - /** - * Find the minimum value in an array. - * Throws an ArrayIndexOutOfBoundsException if the array is length 0. - * @param list the source array - * @return The minimum value - */ - static public final int min(int[] list) { - if (list.length == 0) { - throw new ArrayIndexOutOfBoundsException(ERROR_MIN_MAX); - } - int min = list[0]; - for (int i = 1; i < list.length; i++) { - if (list[i] < min) min = list[i]; - } - return min; - } - - - /** - * Find the minimum value in an array. - * Throws an ArrayIndexOutOfBoundsException if the array is length 0. - * @param list the source array - * @return The minimum value - */ - static public final float min(float[] list) { - if (list.length == 0) { - throw new ArrayIndexOutOfBoundsException(ERROR_MIN_MAX); - } - float min = list[0]; - for (int i = 1; i < list.length; i++) { - if (list[i] < min) min = list[i]; - } - return min; - } - - - /** - * Find the minimum value in an array. - * Throws an ArrayIndexOutOfBoundsException if the array is length 0. - * @param list the source array - * @return The minimum value - */ - /* - static public final double min(double[] list) { - if (list.length == 0) { - throw new ArrayIndexOutOfBoundsException(ERROR_MIN_MAX); - } - double min = list[0]; - for (int i = 1; i < list.length; i++) { - if (list[i] < min) min = list[i]; - } - return min; - } - */ - - static public final int constrain(int amt, int low, int high) { - return (amt < low) ? low : ((amt > high) ? high : amt); - } - - static public final float constrain(float amt, float low, float high) { - return (amt < low) ? low : ((amt > high) ? high : amt); - } - - - static public final float sin(float angle) { - return (float)Math.sin(angle); - } - - static public final float cos(float angle) { - return (float)Math.cos(angle); - } - - static public final float tan(float angle) { - return (float)Math.tan(angle); - } - - - static public final float asin(float value) { - return (float)Math.asin(value); - } - - static public final float acos(float value) { - return (float)Math.acos(value); - } - - static public final float atan(float value) { - return (float)Math.atan(value); - } - - static public final float atan2(float a, float b) { - return (float)Math.atan2(a, b); - } - - - static public final float degrees(float radians) { - return radians * RAD_TO_DEG; - } - - static public final float radians(float degrees) { - return degrees * DEG_TO_RAD; - } - - - static public final int ceil(float what) { - return (int) Math.ceil(what); - } - - static public final int floor(float what) { - return (int) Math.floor(what); - } - - static public final int round(float what) { - return (int) Math.round(what); - } - - - static public final float mag(float a, float b) { - return (float)Math.sqrt(a*a + b*b); - } - - static public final float mag(float a, float b, float c) { - return (float)Math.sqrt(a*a + b*b + c*c); - } - - - static public final float dist(float x1, float y1, float x2, float y2) { - return sqrt(sq(x2-x1) + sq(y2-y1)); - } - - static public final float dist(float x1, float y1, float z1, - float x2, float y2, float z2) { - return sqrt(sq(x2-x1) + sq(y2-y1) + sq(z2-z1)); - } - - - static public final float lerp(float start, float stop, float amt) { - return start + (stop-start) * amt; - } - - /** - * Normalize a value to exist between 0 and 1 (inclusive). - * Mathematically the opposite of lerp(), figures out what proportion - * a particular value is relative to start and stop coordinates. - */ - static public final float norm(float value, float start, float stop) { - return (value - start) / (stop - start); - } - - /** - * Convenience function to map a variable from one coordinate space - * to another. Equivalent to unlerp() followed by lerp(). - */ - static public final float map(float value, - float istart, float istop, - float ostart, float ostop) { - return ostart + (ostop - ostart) * ((value - istart) / (istop - istart)); - } - - - /* - static public final double map(double value, - double istart, double istop, - double ostart, double ostop) { - return ostart + (ostop - ostart) * ((value - istart) / (istop - istart)); - } - */ - - - - ////////////////////////////////////////////////////////////// - - // RANDOM NUMBERS - - - Random internalRandom; - - /** - * Return a random number in the range [0, howbig). - *

- * The number returned will range from zero up to - * (but not including) 'howbig'. - */ - public final float random(float howbig) { - // for some reason (rounding error?) Math.random() * 3 - // can sometimes return '3' (once in ~30 million tries) - // so a check was added to avoid the inclusion of 'howbig' - - // avoid an infinite loop - if (howbig == 0) return 0; - - // internal random number object - if (internalRandom == null) internalRandom = new Random(); - - float value = 0; - do { - //value = (float)Math.random() * howbig; - value = internalRandom.nextFloat() * howbig; - } while (value == howbig); - return value; - } - - - /** - * Return a random number in the range [howsmall, howbig). - *

- * The number returned will range from 'howsmall' up to - * (but not including 'howbig'. - *

- * If howsmall is >= howbig, howsmall will be returned, - * meaning that random(5, 5) will return 5 (useful) - * and random(7, 4) will return 7 (not useful.. better idea?) - */ - public final float random(float howsmall, float howbig) { - if (howsmall >= howbig) return howsmall; - float diff = howbig - howsmall; - return random(diff) + howsmall; - } - - - public final void randomSeed(long what) { - // internal random number object - if (internalRandom == null) internalRandom = new Random(); - internalRandom.setSeed(what); - } - - - - ////////////////////////////////////////////////////////////// - - // PERLIN NOISE - - // [toxi 040903] - // octaves and amplitude amount per octave are now user controlled - // via the noiseDetail() function. - - // [toxi 030902] - // cleaned up code and now using bagel's cosine table to speed up - - // [toxi 030901] - // implementation by the german demo group farbrausch - // as used in their demo "art": http://www.farb-rausch.de/fr010src.zip - - static final int PERLIN_YWRAPB = 4; - static final int PERLIN_YWRAP = 1<>= 1; - } - - if (x<0) x=-x; - if (y<0) y=-y; - if (z<0) z=-z; - - int xi=(int)x, yi=(int)y, zi=(int)z; - float xf = (float)(x-xi); - float yf = (float)(y-yi); - float zf = (float)(z-zi); - float rxf, ryf; - - float r=0; - float ampl=0.5f; - - float n1,n2,n3; - - for (int i=0; i=1.0f) { xi++; xf--; } - if (yf>=1.0f) { yi++; yf--; } - if (zf>=1.0f) { zi++; zf--; } - } - return r; - } - - // [toxi 031112] - // now adjusts to the size of the cosLUT used via - // the new variables, defined above - private float noise_fsc(float i) { - // using bagel's cosine table instead - return 0.5f*(1.0f-perlin_cosTable[(int)(i*perlin_PI)%perlin_TWOPI]); - } - - // [toxi 040903] - // make perlin noise quality user controlled to allow - // for different levels of detail. lower values will produce - // smoother results as higher octaves are surpressed - - public void noiseDetail(int lod) { - if (lod>0) perlin_octaves=lod; - } - - public void noiseDetail(int lod, float falloff) { - if (lod>0) perlin_octaves=lod; - if (falloff>0) perlin_amp_falloff=falloff; - } - - public void noiseSeed(long what) { - if (perlinRandom == null) perlinRandom = new Random(); - perlinRandom.setSeed(what); - // force table reset after changing the random number seed [0122] - perlin = null; - } - - - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - - protected String[] loadImageFormats; - - - /** - * Load an image from the data folder or a local directory. - * Supports .gif (including transparency), .tga, and .jpg images. - * In Java 1.3 or later, .png images are - * - * also supported. - *

- * Generally, loadImage() should only be used during setup, because - * re-loading images inside draw() is likely to cause a significant - * delay while memory is allocated and the thread blocks while waiting - * for the image to load because loading is not asynchronous. - *

- * To load several images asynchronously, see more information in the - * FAQ about writing your own threaded image loading method. - *

- * As of 0096, returns null if no image of that name is found, - * rather than an error. - *

- * Release 0115 also provides support for reading TIFF and RLE-encoded - * Targa (.tga) files written by Processing via save() and saveFrame(). - * Other TIFF and Targa files will probably not load, use a different - * format (gif, jpg and png are safest bets) when creating images with - * another application to use with Processing. - *

- * Also in release 0115, more image formats (BMP and others) can - * be read when using Java 1.4 and later. Because many people still - * use Java 1.1 and 1.3, these formats are not recommended for - * work that will be posted on the web. To get a list of possible - * image formats for use with Java 1.4 and later, use the following: - * println(javax.imageio.ImageIO.getReaderFormatNames()) - *

- * Images are loaded via a byte array that is passed to - * Toolkit.createImage(). Unfortunately, we cannot use Applet.getImage() - * because it takes a URL argument, which would be a pain in the a-- - * to make work consistently for online and local sketches. - * Sometimes this causes problems, resulting in issues like - * Bug 279 - * and - * Bug 305. - * In release 0115, everything was instead run through javax.imageio, - * but that turned out to be very slow, see - * Bug 392. - * As a result, starting with 0116, the following happens: - *

    - *
  • TGA and TIFF images are loaded using the internal load methods. - *
  • JPG, GIF, and PNG images are loaded via loadBytes(). - *
  • If the image still isn't loaded, it's passed to javax.imageio. - *
- * For releases 0116 and later, if you have problems such as those seen - * in Bugs 279 and 305, use Applet.getImage() instead. You'll be stuck - * with the limitations of getImage() (the headache of dealing with - * online/offline use). Set up your own MediaTracker, and pass the resulting - * java.awt.Image to the PImage constructor that takes an AWT image. - */ - public PImage loadImage(String filename) { - return loadImage(filename, null); - } - - - /** - * Loads an image into a variable of type PImage. Four types of images ( .gif, .jpg, .tga, .png) images may be loaded. To load correctly, images must be located in the data directory of the current sketch. In most cases, load all images in setup() to preload them at the start of the program. Loading images inside draw() will reduce the speed of a program. - *

The filename parameter can also be a URL to a file found online. For security reasons, a Processing sketch found online can only download files from the same server from which it came. Getting around this restriction requires a signed applet. - *

The extension parameter is used to determine the image type in cases where the image filename does not end with a proper extension. Specify the extension as the second parameter to loadImage(), as shown in the third example on this page. - *

If an image is not loaded successfully, the null value is returned and an error message will be printed to the console. The error message does not halt the program, however the null value may cause a NullPointerException if your code does not check whether the value returned from loadImage() is null.

Depending on the type of error, a PImage object may still be returned, but the width and height of the image will be set to -1. This happens if bad image data is returned or cannot be decoded properly. Sometimes this happens with image URLs that produce a 403 error or that redirect to a password prompt, because loadImage() will attempt to interpret the HTML as image data. - * - * =advanced - * Identical to loadImage, but allows you to specify the type of - * image by its extension. Especially useful when downloading from - * CGI scripts. - *

- * Use 'unknown' as the extension to pass off to the default - * image loader that handles gif, jpg, and png. - * - * @webref image:loading_displaying - * @param filename name of file to load, can be .gif, .jpg, .tga, or a handful of other image types depending on your platform. - * @param extension the type of image to load, for example "png", "gif", "jpg" - * - * @see processing.core.PImage - * @see processing.core.PApplet#image(PImage, float, float, float, float) - * @see processing.core.PApplet#imageMode(int) - * @see processing.core.PApplet#background(float, float, float) - */ - public PImage loadImage(String filename, String extension) { - if (extension == null) { - String lower = filename.toLowerCase(); - int dot = filename.lastIndexOf('.'); - if (dot == -1) { - extension = "unknown"; // no extension found - } - extension = lower.substring(dot + 1); - - // check for, and strip any parameters on the url, i.e. - // filename.jpg?blah=blah&something=that - int question = extension.indexOf('?'); - if (question != -1) { - extension = extension.substring(0, question); - } - } - - // just in case. them users will try anything! - extension = extension.toLowerCase(); - - if (extension.equals("tga")) { - try { - return loadImageTGA(filename); - } catch (IOException e) { - e.printStackTrace(); - return null; - } - } - - if (extension.equals("tif") || extension.equals("tiff")) { - byte bytes[] = loadBytes(filename); - return (bytes == null) ? null : PImage.loadTIFF(bytes); - } - - // For jpeg, gif, and png, load them using createImage(), - // because the javax.imageio code was found to be much slower, see - // Bug 392. - try { - if (extension.equals("jpg") || extension.equals("jpeg") || - extension.equals("gif") || extension.equals("png") || - extension.equals("unknown")) { - byte bytes[] = loadBytes(filename); - if (bytes == null) { - return null; - } else { - Image awtImage = Toolkit.getDefaultToolkit().createImage(bytes); - PImage image = loadImageMT(awtImage); - if (image.width == -1) { - System.err.println("The file " + filename + - " contains bad image data, or may not be an image."); - } - // if it's a .gif image, test to see if it has transparency - if (extension.equals("gif") || extension.equals("png")) { - image.checkAlpha(); - } - return image; - } - } - } catch (Exception e) { - // show error, but move on to the stuff below, see if it'll work - e.printStackTrace(); - } - - if (loadImageFormats == null) { - loadImageFormats = ImageIO.getReaderFormatNames(); - } - if (loadImageFormats != null) { - for (int i = 0; i < loadImageFormats.length; i++) { - if (extension.equals(loadImageFormats[i])) { - return loadImageIO(filename); - } - } - } - - // failed, could not load image after all those attempts - System.err.println("Could not find a method to load " + filename); - return null; - } - - public PImage requestImage(String filename) { - return requestImage(filename, null); - } - - - /** - * This function load images on a separate thread so that your sketch does not freeze while images load during setup(). While the image is loading, its width and height will be 0. If an error occurs while loading the image, its width and height will be set to -1. You'll know when the image has loaded properly because its width and height will be greater than 0. Asynchronous image loading (particularly when downloading from a server) can dramatically improve performance.

- * The extension parameter is used to determine the image type in cases where the image filename does not end with a proper extension. Specify the extension as the second parameter to requestImage(). - * - * @webref image:loading_displaying - * @param filename name of file to load, can be .gif, .jpg, .tga, or a handful of other image types depending on your platform - * @param extension the type of image to load, for example "png", "gif", "jpg" - * - * @see processing.core.PApplet#loadImage(String, String) - * @see processing.core.PImage - */ - public PImage requestImage(String filename, String extension) { - PImage vessel = createImage(0, 0, ARGB); - AsyncImageLoader ail = - new AsyncImageLoader(filename, extension, vessel); - ail.start(); - return vessel; - } - - - /** - * By trial and error, four image loading threads seem to work best when - * loading images from online. This is consistent with the number of open - * connections that web browsers will maintain. The variable is made public - * (however no accessor has been added since it's esoteric) if you really - * want to have control over the value used. For instance, when loading local - * files, it might be better to only have a single thread (or two) loading - * images so that you're disk isn't simply jumping around. - */ - public int requestImageMax = 4; - volatile int requestImageCount; - - class AsyncImageLoader extends Thread { - String filename; - String extension; - PImage vessel; - - public AsyncImageLoader(String filename, String extension, PImage vessel) { - this.filename = filename; - this.extension = extension; - this.vessel = vessel; - } - - public void run() { - while (requestImageCount == requestImageMax) { - try { - Thread.sleep(10); - } catch (InterruptedException e) { } - } - requestImageCount++; - - PImage actual = loadImage(filename, extension); - - // An error message should have already printed - if (actual == null) { - vessel.width = -1; - vessel.height = -1; - - } else { - vessel.width = actual.width; - vessel.height = actual.height; - vessel.format = actual.format; - vessel.pixels = actual.pixels; - } - requestImageCount--; - } - } - - - /** - * Load an AWT image synchronously by setting up a MediaTracker for - * a single image, and blocking until it has loaded. - */ - protected PImage loadImageMT(Image awtImage) { - MediaTracker tracker = new MediaTracker(this); - tracker.addImage(awtImage, 0); - try { - tracker.waitForAll(); - } catch (InterruptedException e) { - //e.printStackTrace(); // non-fatal, right? - } - - PImage image = new PImage(awtImage); - image.parent = this; - return image; - } - - - /** - * Use Java 1.4 ImageIO methods to load an image. - */ - protected PImage loadImageIO(String filename) { - InputStream stream = createInput(filename); - if (stream == null) { - System.err.println("The image " + filename + " could not be found."); - return null; - } - - try { - BufferedImage bi = ImageIO.read(stream); - PImage outgoing = new PImage(bi.getWidth(), bi.getHeight()); - outgoing.parent = this; - - bi.getRGB(0, 0, outgoing.width, outgoing.height, - outgoing.pixels, 0, outgoing.width); - - // check the alpha for this image - // was gonna call getType() on the image to see if RGB or ARGB, - // but it's not actually useful, since gif images will come through - // as TYPE_BYTE_INDEXED, which means it'll still have to check for - // the transparency. also, would have to iterate through all the other - // types and guess whether alpha was in there, so.. just gonna stick - // with the old method. - outgoing.checkAlpha(); - - // return the image - return outgoing; - - } catch (Exception e) { - e.printStackTrace(); - return null; - } - } - - - /** - * Targa image loader for RLE-compressed TGA files. - *

- * Rewritten for 0115 to read/write RLE-encoded targa images. - * For 0125, non-RLE encoded images are now supported, along with - * images whose y-order is reversed (which is standard for TGA files). - */ - protected PImage loadImageTGA(String filename) throws IOException { - InputStream is = createInput(filename); - if (is == null) return null; - - byte header[] = new byte[18]; - int offset = 0; - do { - int count = is.read(header, offset, header.length - offset); - if (count == -1) return null; - offset += count; - } while (offset < 18); - - /* - header[2] image type code - 2 (0x02) - Uncompressed, RGB images. - 3 (0x03) - Uncompressed, black and white images. - 10 (0x0A) - Runlength encoded RGB images. - 11 (0x0B) - Compressed, black and white images. (grayscale?) - - header[16] is the bit depth (8, 24, 32) - - header[17] image descriptor (packed bits) - 0x20 is 32 = origin upper-left - 0x28 is 32 + 8 = origin upper-left + 32 bits - - 7 6 5 4 3 2 1 0 - 128 64 32 16 8 4 2 1 - */ - - int format = 0; - - if (((header[2] == 3) || (header[2] == 11)) && // B&W, plus RLE or not - (header[16] == 8) && // 8 bits - ((header[17] == 0x8) || (header[17] == 0x28))) { // origin, 32 bit - format = ALPHA; - - } else if (((header[2] == 2) || (header[2] == 10)) && // RGB, RLE or not - (header[16] == 24) && // 24 bits - ((header[17] == 0x20) || (header[17] == 0))) { // origin - format = RGB; - - } else if (((header[2] == 2) || (header[2] == 10)) && - (header[16] == 32) && - ((header[17] == 0x8) || (header[17] == 0x28))) { // origin, 32 - format = ARGB; - } - - if (format == 0) { - System.err.println("Unknown .tga file format for " + filename); - //" (" + header[2] + " " + - //(header[16] & 0xff) + " " + - //hex(header[17], 2) + ")"); - return null; - } - - int w = ((header[13] & 0xff) << 8) + (header[12] & 0xff); - int h = ((header[15] & 0xff) << 8) + (header[14] & 0xff); - PImage outgoing = createImage(w, h, format); - - // where "reversed" means upper-left corner (normal for most of - // the modernized world, but "reversed" for the tga spec) - boolean reversed = (header[17] & 0x20) != 0; - - if ((header[2] == 2) || (header[2] == 3)) { // not RLE encoded - if (reversed) { - int index = (h-1) * w; - switch (format) { - case ALPHA: - for (int y = h-1; y >= 0; y--) { - for (int x = 0; x < w; x++) { - outgoing.pixels[index + x] = is.read(); - } - index -= w; - } - break; - case RGB: - for (int y = h-1; y >= 0; y--) { - for (int x = 0; x < w; x++) { - outgoing.pixels[index + x] = - is.read() | (is.read() << 8) | (is.read() << 16) | - 0xff000000; - } - index -= w; - } - break; - case ARGB: - for (int y = h-1; y >= 0; y--) { - for (int x = 0; x < w; x++) { - outgoing.pixels[index + x] = - is.read() | (is.read() << 8) | (is.read() << 16) | - (is.read() << 24); - } - index -= w; - } - } - } else { // not reversed - int count = w * h; - switch (format) { - case ALPHA: - for (int i = 0; i < count; i++) { - outgoing.pixels[i] = is.read(); - } - break; - case RGB: - for (int i = 0; i < count; i++) { - outgoing.pixels[i] = - is.read() | (is.read() << 8) | (is.read() << 16) | - 0xff000000; - } - break; - case ARGB: - for (int i = 0; i < count; i++) { - outgoing.pixels[i] = - is.read() | (is.read() << 8) | (is.read() << 16) | - (is.read() << 24); - } - break; - } - } - - } else { // header[2] is 10 or 11 - int index = 0; - int px[] = outgoing.pixels; - - while (index < px.length) { - int num = is.read(); - boolean isRLE = (num & 0x80) != 0; - if (isRLE) { - num -= 127; // (num & 0x7F) + 1 - int pixel = 0; - switch (format) { - case ALPHA: - pixel = is.read(); - break; - case RGB: - pixel = 0xFF000000 | - is.read() | (is.read() << 8) | (is.read() << 16); - //(is.read() << 16) | (is.read() << 8) | is.read(); - break; - case ARGB: - pixel = is.read() | - (is.read() << 8) | (is.read() << 16) | (is.read() << 24); - break; - } - for (int i = 0; i < num; i++) { - px[index++] = pixel; - if (index == px.length) break; - } - } else { // write up to 127 bytes as uncompressed - num += 1; - switch (format) { - case ALPHA: - for (int i = 0; i < num; i++) { - px[index++] = is.read(); - } - break; - case RGB: - for (int i = 0; i < num; i++) { - px[index++] = 0xFF000000 | - is.read() | (is.read() << 8) | (is.read() << 16); - //(is.read() << 16) | (is.read() << 8) | is.read(); - } - break; - case ARGB: - for (int i = 0; i < num; i++) { - px[index++] = is.read() | //(is.read() << 24) | - (is.read() << 8) | (is.read() << 16) | (is.read() << 24); - //(is.read() << 16) | (is.read() << 8) | is.read(); - } - break; - } - } - } - - if (!reversed) { - int[] temp = new int[w]; - for (int y = 0; y < h/2; y++) { - int z = (h-1) - y; - System.arraycopy(px, y*w, temp, 0, w); - System.arraycopy(px, z*w, px, y*w, w); - System.arraycopy(temp, 0, px, z*w, w); - } - } - } - - return outgoing; - } - - - - ////////////////////////////////////////////////////////////// - - // SHAPE I/O - - - /** - * Loads vector shapes into a variable of type PShape. Currently, only SVG files may be loaded. - * To load correctly, the file must be located in the data directory of the current sketch. - * In most cases, loadShape() should be used inside setup() because loading shapes inside draw() will reduce the speed of a sketch. - *

- * The filename parameter can also be a URL to a file found online. - * For security reasons, a Processing sketch found online can only download files from the same server from which it came. - * Getting around this restriction requires a signed applet. - *

- * If a shape is not loaded successfully, the null value is returned and an error message will be printed to the console. - * The error message does not halt the program, however the null value may cause a NullPointerException if your code does not check whether the value returned from loadShape() is null. - * - * @webref shape:loading_displaying - * @see PShape - * @see PApplet#shape(PShape) - * @see PApplet#shapeMode(int) - */ - public PShape loadShape(String filename) { - if (filename.toLowerCase().endsWith(".svg")) { - return new PShapeSVG(this, filename); - } - return null; - } - - - - ////////////////////////////////////////////////////////////// - - // FONT I/O - - - public PFont loadFont(String filename) { - try { - InputStream input = createInput(filename); - return new PFont(input); - - } catch (Exception e) { - die("Could not load font " + filename + ". " + - "Make sure that the font has been copied " + - "to the data folder of your sketch.", e); - } - return null; - } - - - public PFont createFont(String name, float size) { - return createFont(name, size, true, PFont.DEFAULT_CHARSET); - } - - - public PFont createFont(String name, float size, boolean smooth) { - return createFont(name, size, smooth, PFont.DEFAULT_CHARSET); - } - - - /** - * Create a .vlw font on the fly from either a font name that's - * installed on the system, or from a .ttf or .otf that's inside - * the data folder of this sketch. - *

- * Only works with Java 1.3 or later. Many .otf fonts don't seem - * to be supported by Java, perhaps because they're CFF based? - *

- * Font names are inconsistent across platforms and Java versions. - * On Mac OS X, Java 1.3 uses the font menu name of the font, - * whereas Java 1.4 uses the PostScript name of the font. Java 1.4 - * on OS X will also accept the font menu name as well. On Windows, - * it appears that only the menu names are used, no matter what - * Java version is in use. Naming system unknown/untested for 1.5. - *

- * Use 'null' for the charset if you want to use any of the 65,536 - * unicode characters that exist in the font. Note that this can - * produce an enormous file or may cause an OutOfMemoryError. - */ - public PFont createFont(String name, float size, - boolean smooth, char charset[]) { - String lowerName = name.toLowerCase(); - Font baseFont = null; - - try { - if (lowerName.endsWith(".otf") || lowerName.endsWith(".ttf")) { - InputStream stream = createInput(name); - if (stream == null) { - System.err.println("The font \"" + name + "\" " + - "is missing or inaccessible, make sure " + - "the URL is valid or that the file has been " + - "added to your sketch and is readable."); - return null; - } - baseFont = Font.createFont(Font.TRUETYPE_FONT, createInput(name)); - - } else { - //baseFont = new Font(name, Font.PLAIN, 1); - baseFont = PFont.findFont(name); - } - } catch (Exception e) { - System.err.println("Problem using createFont() with " + name); - e.printStackTrace(); - } - return new PFont(baseFont.deriveFont(size), smooth, charset); - } - - - - ////////////////////////////////////////////////////////////// - - // FILE/FOLDER SELECTION - - - public File selectedFile; - protected Frame parentFrame; - - - protected void checkParentFrame() { - if (parentFrame == null) { - Component comp = getParent(); - while (comp != null) { - if (comp instanceof Frame) { - parentFrame = (Frame) comp; - break; - } - comp = comp.getParent(); - } - // Who you callin' a hack? - if (parentFrame == null) { - parentFrame = new Frame(); - } - } - } - - - /** - * Open a platform-specific file chooser dialog to select a file for input. - * @return full path to the selected file, or null if no selection. - */ - public String selectInput() { - return selectInput("Select a file..."); - } - - - /** - * Opens a platform-specific file chooser dialog to select a file for input. This function returns the full path to the selected file as a String, or null if no selection. - * - * @webref input:files - * @param prompt message you want the user to see in the file chooser - * @return full path to the selected file, or null if canceled. - * - * @see processing.core.PApplet#selectOutput(String) - * @see processing.core.PApplet#selectFolder(String) - */ - public String selectInput(String prompt) { - return selectFileImpl(prompt, FileDialog.LOAD); - } - - - /** - * Open a platform-specific file save dialog to select a file for output. - * @return full path to the file entered, or null if canceled. - */ - public String selectOutput() { - return selectOutput("Save as..."); - } - - - /** - * Open a platform-specific file save dialog to create of select a file for output. - * This function returns the full path to the selected file as a String, or null if no selection. - * If you select an existing file, that file will be replaced. - * Alternatively, you can navigate to a folder and create a new file to write to. - * - * @param prompt message you want the user to see in the file chooser - * @return full path to the file entered, or null if canceled. - * - * @webref input:files - * @see processing.core.PApplet#selectInput(String) - * @see processing.core.PApplet#selectFolder(String) - */ - public String selectOutput(String prompt) { - return selectFileImpl(prompt, FileDialog.SAVE); - } - - - protected String selectFileImpl(final String prompt, final int mode) { - checkParentFrame(); - - try { - SwingUtilities.invokeAndWait(new Runnable() { - public void run() { - FileDialog fileDialog = - new FileDialog(parentFrame, prompt, mode); - fileDialog.setVisible(true); - String directory = fileDialog.getDirectory(); - String filename = fileDialog.getFile(); - selectedFile = - (filename == null) ? null : new File(directory, filename); - } - }); - return (selectedFile == null) ? null : selectedFile.getAbsolutePath(); - - } catch (Exception e) { - e.printStackTrace(); - return null; - } - } - - - public String selectFolder() { - return selectFolder("Select a folder..."); - } - - - /** - * Opens a platform-specific file chooser dialog to select a folder for input. - * This function returns the full path to the selected folder as a String, or null if no selection. - * - * @webref input:files - * @param prompt message you want the user to see in the file chooser - * @return full path to the selected folder, or null if no selection. - * - * @see processing.core.PApplet#selectOutput(String) - * @see processing.core.PApplet#selectInput(String) - */ - public String selectFolder(final String prompt) { - checkParentFrame(); - - try { - SwingUtilities.invokeAndWait(new Runnable() { - public void run() { - if (platform == MACOSX) { - FileDialog fileDialog = - new FileDialog(parentFrame, prompt, FileDialog.LOAD); - System.setProperty("apple.awt.fileDialogForDirectories", "true"); - fileDialog.setVisible(true); - System.setProperty("apple.awt.fileDialogForDirectories", "false"); - String filename = fileDialog.getFile(); - selectedFile = (filename == null) ? null : - new File(fileDialog.getDirectory(), fileDialog.getFile()); - } else { - JFileChooser fileChooser = new JFileChooser(); - fileChooser.setDialogTitle(prompt); - fileChooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY); - - int returned = fileChooser.showOpenDialog(parentFrame); - System.out.println(returned); - if (returned == JFileChooser.CANCEL_OPTION) { - selectedFile = null; - } else { - selectedFile = fileChooser.getSelectedFile(); - } - } - } - }); - return (selectedFile == null) ? null : selectedFile.getAbsolutePath(); - - } catch (Exception e) { - e.printStackTrace(); - return null; - } - } - - - - ////////////////////////////////////////////////////////////// - - // READERS AND WRITERS - - - /** - * I want to read lines from a file. I have RSI from typing these - * eight lines of code so many times. - */ - public BufferedReader createReader(String filename) { - try { - InputStream is = createInput(filename); - if (is == null) { - System.err.println(filename + " does not exist or could not be read"); - return null; - } - return createReader(is); - - } catch (Exception e) { - if (filename == null) { - System.err.println("Filename passed to reader() was null"); - } else { - System.err.println("Couldn't create a reader for " + filename); - } - } - return null; - } - - - /** - * I want to read lines from a file. And I'm still annoyed. - */ - static public BufferedReader createReader(File file) { - try { - InputStream is = new FileInputStream(file); - if (file.getName().toLowerCase().endsWith(".gz")) { - is = new GZIPInputStream(is); - } - return createReader(is); - - } catch (Exception e) { - if (file == null) { - throw new RuntimeException("File passed to createReader() was null"); - } else { - e.printStackTrace(); - throw new RuntimeException("Couldn't create a reader for " + - file.getAbsolutePath()); - } - } - //return null; - } - - - /** - * I want to read lines from a stream. If I have to type the - * following lines any more I'm gonna send Sun my medical bills. - */ - static public BufferedReader createReader(InputStream input) { - InputStreamReader isr = null; - try { - isr = new InputStreamReader(input, "UTF-8"); - } catch (UnsupportedEncodingException e) { } // not gonna happen - return new BufferedReader(isr); - } - - - /** - * I want to print lines to a file. Why can't I? - */ - public PrintWriter createWriter(String filename) { - return createWriter(saveFile(filename)); - } - - - /** - * I want to print lines to a file. I have RSI from typing these - * eight lines of code so many times. - */ - static public PrintWriter createWriter(File file) { - try { - createPath(file); // make sure in-between folders exist - OutputStream output = new FileOutputStream(file); - if (file.getName().toLowerCase().endsWith(".gz")) { - output = new GZIPOutputStream(output); - } - return createWriter(output); - - } catch (Exception e) { - if (file == null) { - throw new RuntimeException("File passed to createWriter() was null"); - } else { - e.printStackTrace(); - throw new RuntimeException("Couldn't create a writer for " + - file.getAbsolutePath()); - } - } - //return null; - } - - - /** - * I want to print lines to a file. Why am I always explaining myself? - * It's the JavaSoft API engineers who need to explain themselves. - */ - static public PrintWriter createWriter(OutputStream output) { - try { - OutputStreamWriter osw = new OutputStreamWriter(output, "UTF-8"); - return new PrintWriter(osw); - } catch (UnsupportedEncodingException e) { } // not gonna happen - return null; - } - - - ////////////////////////////////////////////////////////////// - - // FILE INPUT - - - /** - * @deprecated As of release 0136, use createInput() instead. - */ - public InputStream openStream(String filename) { - return createInput(filename); - } - - - /** - * This is a method for advanced programmers to open a Java InputStream. The method is useful if you want to use the facilities provided by PApplet to easily open files from the data folder or from a URL, but want an InputStream object so that you can use other Java methods to take more control of how the stream is read. - *

If the requested item doesn't exist, null is returned. - *

In earlier releases, this method was called openStream(). - *

If not online, this will also check to see if the user is asking for a file whose name isn't properly capitalized. If capitalization is different an error will be printed to the console. This helps prevent issues that appear when a sketch is exported to the web, where case sensitivity matters, as opposed to running from inside the Processing Development Environment on Windows or Mac OS, where case sensitivity is preserved but ignored. - *

The filename passed in can be:
- * - A URL, for instance openStream("http://processing.org/");
- * - A file in the sketch's data folder
- * - The full path to a file to be opened locally (when running as an application) - *

- * If the file ends with .gz, the stream will automatically be gzip decompressed. If you don't want the automatic decompression, use the related function createInputRaw(). - * - * =advanced - * Simplified method to open a Java InputStream. - *

- * This method is useful if you want to use the facilities provided - * by PApplet to easily open things from the data folder or from a URL, - * but want an InputStream object so that you can use other Java - * methods to take more control of how the stream is read. - *

- * If the requested item doesn't exist, null is returned. - * (Prior to 0096, die() would be called, killing the applet) - *

- * For 0096+, the "data" folder is exported intact with subfolders, - * and openStream() properly handles subdirectories from the data folder - *

- * If not online, this will also check to see if the user is asking - * for a file whose name isn't properly capitalized. This helps prevent - * issues when a sketch is exported to the web, where case sensitivity - * matters, as opposed to Windows and the Mac OS default where - * case sensitivity is preserved but ignored. - *

- * It is strongly recommended that libraries use this method to open - * data files, so that the loading sequence is handled in the same way - * as functions like loadBytes(), loadImage(), etc. - *

- * The filename passed in can be: - *

    - *
  • A URL, for instance openStream("http://processing.org/"); - *
  • A file in the sketch's data folder - *
  • Another file to be opened locally (when running as an application) - *
- * - * @webref input:files - * @see processing.core.PApplet#createOutput(String) - * @see processing.core.PApplet#selectOutput(String) - * @see processing.core.PApplet#selectInput(String) - * - * @param filename the name of the file to use as input - * - */ - public InputStream createInput(String filename) { - InputStream input = createInputRaw(filename); - if ((input != null) && filename.toLowerCase().endsWith(".gz")) { - try { - return new GZIPInputStream(input); - } catch (IOException e) { - e.printStackTrace(); - return null; - } - } - return input; - } - - - /** - * Call openStream() without automatic gzip decompression. - */ - public InputStream createInputRaw(String filename) { - InputStream stream = null; - - if (filename == null) return null; - - if (filename.length() == 0) { - // an error will be called by the parent function - //System.err.println("The filename passed to openStream() was empty."); - return null; - } - - // safe to check for this as a url first. this will prevent online - // access logs from being spammed with GET /sketchfolder/http://blahblah - if (filename.indexOf(":") != -1) { // at least smells like URL - try { - URL url = new URL(filename); - stream = url.openStream(); - return stream; - - } catch (MalformedURLException mfue) { - // not a url, that's fine - - } catch (FileNotFoundException fnfe) { - // Java 1.5 likes to throw this when URL not available. (fix for 0119) - // http://dev.processing.org/bugs/show_bug.cgi?id=403 - - } catch (IOException e) { - // changed for 0117, shouldn't be throwing exception - e.printStackTrace(); - //System.err.println("Error downloading from URL " + filename); - return null; - //throw new RuntimeException("Error downloading from URL " + filename); - } - } - - // Moved this earlier than the getResourceAsStream() checks, because - // calling getResourceAsStream() on a directory lists its contents. - // http://dev.processing.org/bugs/show_bug.cgi?id=716 - try { - // First see if it's in a data folder. This may fail by throwing - // a SecurityException. If so, this whole block will be skipped. - File file = new File(dataPath(filename)); - if (!file.exists()) { - // next see if it's just in the sketch folder - file = new File(sketchPath, filename); - } - if (file.isDirectory()) { - return null; - } - if (file.exists()) { - try { - // handle case sensitivity check - String filePath = file.getCanonicalPath(); - String filenameActual = new File(filePath).getName(); - // make sure there isn't a subfolder prepended to the name - String filenameShort = new File(filename).getName(); - // if the actual filename is the same, but capitalized - // differently, warn the user. - //if (filenameActual.equalsIgnoreCase(filenameShort) && - //!filenameActual.equals(filenameShort)) { - if (!filenameActual.equals(filenameShort)) { - throw new RuntimeException("This file is named " + - filenameActual + " not " + - filename + ". Rename the file " + - "or change your code."); - } - } catch (IOException e) { } - } - - // if this file is ok, may as well just load it - stream = new FileInputStream(file); - if (stream != null) return stream; - - // have to break these out because a general Exception might - // catch the RuntimeException being thrown above - } catch (IOException ioe) { - } catch (SecurityException se) { } - - // Using getClassLoader() prevents java from converting dots - // to slashes or requiring a slash at the beginning. - // (a slash as a prefix means that it'll load from the root of - // the jar, rather than trying to dig into the package location) - ClassLoader cl = getClass().getClassLoader(); - - // by default, data files are exported to the root path of the jar. - // (not the data folder) so check there first. - stream = cl.getResourceAsStream("data/" + filename); - if (stream != null) { - String cn = stream.getClass().getName(); - // this is an irritation of sun's java plug-in, which will return - // a non-null stream for an object that doesn't exist. like all good - // things, this is probably introduced in java 1.5. awesome! - // http://dev.processing.org/bugs/show_bug.cgi?id=359 - if (!cn.equals("sun.plugin.cache.EmptyInputStream")) { - return stream; - } - } - - // When used with an online script, also need to check without the - // data folder, in case it's not in a subfolder called 'data'. - // http://dev.processing.org/bugs/show_bug.cgi?id=389 - stream = cl.getResourceAsStream(filename); - if (stream != null) { - String cn = stream.getClass().getName(); - if (!cn.equals("sun.plugin.cache.EmptyInputStream")) { - return stream; - } - } - - try { - // attempt to load from a local file, used when running as - // an application, or as a signed applet - try { // first try to catch any security exceptions - try { - stream = new FileInputStream(dataPath(filename)); - if (stream != null) return stream; - } catch (IOException e2) { } - - try { - stream = new FileInputStream(sketchPath(filename)); - if (stream != null) return stream; - } catch (Exception e) { } // ignored - - try { - stream = new FileInputStream(filename); - if (stream != null) return stream; - } catch (IOException e1) { } - - } catch (SecurityException se) { } // online, whups - - } catch (Exception e) { - //die(e.getMessage(), e); - e.printStackTrace(); - } - return null; - } - - - static public InputStream createInput(File file) { - if (file == null) { - throw new IllegalArgumentException("File passed to createInput() was null"); - } - try { - InputStream input = new FileInputStream(file); - if (file.getName().toLowerCase().endsWith(".gz")) { - return new GZIPInputStream(input); - } - return input; - - } catch (IOException e) { - System.err.println("Could not createInput() for " + file); - e.printStackTrace(); - return null; - } - } - - - /** - * Reads the contents of a file or url and places it in a byte array. If a file is specified, it must be located in the sketch's "data" directory/folder. - *

The filename parameter can also be a URL to a file found online. For security reasons, a Processing sketch found online can only download files from the same server from which it came. Getting around this restriction requires a signed applet. - * - * @webref input:files - * @param filename name of a file in the data folder or a URL. - * - * @see processing.core.PApplet#loadStrings(String) - * @see processing.core.PApplet#saveStrings(String, String[]) - * @see processing.core.PApplet#saveBytes(String, byte[]) - * - */ - public byte[] loadBytes(String filename) { - InputStream is = createInput(filename); - if (is != null) return loadBytes(is); - - System.err.println("The file \"" + filename + "\" " + - "is missing or inaccessible, make sure " + - "the URL is valid or that the file has been " + - "added to your sketch and is readable."); - return null; - } - - - static public byte[] loadBytes(InputStream input) { - try { - BufferedInputStream bis = new BufferedInputStream(input); - ByteArrayOutputStream out = new ByteArrayOutputStream(); - - int c = bis.read(); - while (c != -1) { - out.write(c); - c = bis.read(); - } - return out.toByteArray(); - - } catch (IOException e) { - e.printStackTrace(); - //throw new RuntimeException("Couldn't load bytes from stream"); - } - return null; - } - - - static public byte[] loadBytes(File file) { - InputStream is = createInput(file); - return loadBytes(is); - } - - - static public String[] loadStrings(File file) { - InputStream is = createInput(file); - if (is != null) return loadStrings(is); - return null; - } - - - /** - * Reads the contents of a file or url and creates a String array of its individual lines. If a file is specified, it must be located in the sketch's "data" directory/folder. - *

The filename parameter can also be a URL to a file found online. For security reasons, a Processing sketch found online can only download files from the same server from which it came. Getting around this restriction requires a signed applet. - *

If the file is not available or an error occurs, null will be returned and an error message will be printed to the console. The error message does not halt the program, however the null value may cause a NullPointerException if your code does not check whether the value returned is null. - *

Starting with Processing release 0134, all files loaded and saved by the Processing API use UTF-8 encoding. In previous releases, the default encoding for your platform was used, which causes problems when files are moved to other platforms. - * - * =advanced - * Load data from a file and shove it into a String array. - *

- * Exceptions are handled internally, when an error, occurs, an - * exception is printed to the console and 'null' is returned, - * but the program continues running. This is a tradeoff between - * 1) showing the user that there was a problem but 2) not requiring - * that all i/o code is contained in try/catch blocks, for the sake - * of new users (or people who are just trying to get things done - * in a "scripting" fashion. If you want to handle exceptions, - * use Java methods for I/O. - * - * @webref input:files - * @param filename name of the file or url to load - * - * @see processing.core.PApplet#loadBytes(String) - * @see processing.core.PApplet#saveStrings(String, String[]) - * @see processing.core.PApplet#saveBytes(String, byte[]) - */ - public String[] loadStrings(String filename) { - InputStream is = createInput(filename); - if (is != null) return loadStrings(is); - - System.err.println("The file \"" + filename + "\" " + - "is missing or inaccessible, make sure " + - "the URL is valid or that the file has been " + - "added to your sketch and is readable."); - return null; - } - - - static public String[] loadStrings(InputStream input) { - try { - BufferedReader reader = - new BufferedReader(new InputStreamReader(input, "UTF-8")); - - String lines[] = new String[100]; - int lineCount = 0; - String line = null; - while ((line = reader.readLine()) != null) { - if (lineCount == lines.length) { - String temp[] = new String[lineCount << 1]; - System.arraycopy(lines, 0, temp, 0, lineCount); - lines = temp; - } - lines[lineCount++] = line; - } - reader.close(); - - if (lineCount == lines.length) { - return lines; - } - - // resize array to appropriate amount for these lines - String output[] = new String[lineCount]; - System.arraycopy(lines, 0, output, 0, lineCount); - return output; - - } catch (IOException e) { - e.printStackTrace(); - //throw new RuntimeException("Error inside loadStrings()"); - } - return null; - } - - - - ////////////////////////////////////////////////////////////// - - // FILE OUTPUT - - - /** - * Similar to createInput() (formerly openStream), this creates a Java - * OutputStream for a given filename or path. The file will be created in - * the sketch folder, or in the same folder as an exported application. - *

- * If the path does not exist, intermediate folders will be created. If an - * exception occurs, it will be printed to the console, and null will be - * returned. - *

- * Future releases may also add support for handling HTTP POST via this - * method (for better symmetry with createInput), however that's maybe a - * little too clever (and then we'd have to add the same features to the - * other file functions like createWriter). Who you callin' bloated? - */ - public OutputStream createOutput(String filename) { - return createOutput(saveFile(filename)); - } - - - static public OutputStream createOutput(File file) { - try { - createPath(file); // make sure the path exists - FileOutputStream fos = new FileOutputStream(file); - if (file.getName().toLowerCase().endsWith(".gz")) { - return new GZIPOutputStream(fos); - } - return fos; - - } catch (IOException e) { - e.printStackTrace(); - } - return null; - } - - - /** - * Save the contents of a stream to a file in the sketch folder. - * This is basically saveBytes(blah, loadBytes()), but done - * more efficiently (and with less confusing syntax). - */ - public void saveStream(String targetFilename, String sourceLocation) { - saveStream(saveFile(targetFilename), sourceLocation); - } - - - /** - * Identical to the other saveStream(), but writes to a File - * object, for greater control over the file location. - * Note that unlike other api methods, this will not automatically - * compress or uncompress gzip files. - */ - public void saveStream(File targetFile, String sourceLocation) { - saveStream(targetFile, createInputRaw(sourceLocation)); - } - - - static public void saveStream(File targetFile, InputStream sourceStream) { - File tempFile = null; - try { - File parentDir = targetFile.getParentFile(); - tempFile = File.createTempFile(targetFile.getName(), null, parentDir); - - BufferedInputStream bis = new BufferedInputStream(sourceStream, 16384); - FileOutputStream fos = new FileOutputStream(tempFile); - BufferedOutputStream bos = new BufferedOutputStream(fos); - - byte[] buffer = new byte[8192]; - int bytesRead; - while ((bytesRead = bis.read(buffer)) != -1) { - bos.write(buffer, 0, bytesRead); - } - - bos.flush(); - bos.close(); - bos = null; - - if (!tempFile.renameTo(targetFile)) { - System.err.println("Could not rename temporary file " + - tempFile.getAbsolutePath()); - } - } catch (IOException e) { - if (tempFile != null) { - tempFile.delete(); - } - e.printStackTrace(); - } - } - - - /** - * Saves bytes to a file to inside the sketch folder. - * The filename can be a relative path, i.e. "poo/bytefun.txt" - * would save to a file named "bytefun.txt" to a subfolder - * called 'poo' inside the sketch folder. If the in-between - * subfolders don't exist, they'll be created. - */ - public void saveBytes(String filename, byte buffer[]) { - saveBytes(saveFile(filename), buffer); - } - - - /** - * Saves bytes to a specific File location specified by the user. - */ - static public void saveBytes(File file, byte buffer[]) { - File tempFile = null; - try { - File parentDir = file.getParentFile(); - tempFile = File.createTempFile(file.getName(), null, parentDir); - - /* - String filename = file.getAbsolutePath(); - createPath(filename); - OutputStream output = new FileOutputStream(file); - if (file.getName().toLowerCase().endsWith(".gz")) { - output = new GZIPOutputStream(output); - } - */ - OutputStream output = createOutput(tempFile); - saveBytes(output, buffer); - output.close(); - output = null; - - if (!tempFile.renameTo(file)) { - System.err.println("Could not rename temporary file " + - tempFile.getAbsolutePath()); - } - - } catch (IOException e) { - System.err.println("error saving bytes to " + file); - if (tempFile != null) { - tempFile.delete(); - } - e.printStackTrace(); - } - } - - - /** - * Spews a buffer of bytes to an OutputStream. - */ - static public void saveBytes(OutputStream output, byte buffer[]) { - try { - output.write(buffer); - output.flush(); - - } catch (IOException e) { - e.printStackTrace(); - } - } - - // - - public void saveStrings(String filename, String strings[]) { - saveStrings(saveFile(filename), strings); - } - - - static public void saveStrings(File file, String strings[]) { - saveStrings(createOutput(file), strings); - /* - try { - String location = file.getAbsolutePath(); - createPath(location); - OutputStream output = new FileOutputStream(location); - if (file.getName().toLowerCase().endsWith(".gz")) { - output = new GZIPOutputStream(output); - } - saveStrings(output, strings); - output.close(); - - } catch (IOException e) { - e.printStackTrace(); - } - */ - } - - - static public void saveStrings(OutputStream output, String strings[]) { - PrintWriter writer = createWriter(output); - for (int i = 0; i < strings.length; i++) { - writer.println(strings[i]); - } - writer.flush(); - writer.close(); - } - - - ////////////////////////////////////////////////////////////// - - - /** - * Prepend the sketch folder path to the filename (or path) that is - * passed in. External libraries should use this function to save to - * the sketch folder. - *

- * Note that when running as an applet inside a web browser, - * the sketchPath will be set to null, because security restrictions - * prevent applets from accessing that information. - *

- * This will also cause an error if the sketch is not inited properly, - * meaning that init() was never called on the PApplet when hosted - * my some other main() or by other code. For proper use of init(), - * see the examples in the main description text for PApplet. - */ - public String sketchPath(String where) { - if (sketchPath == null) { - return where; -// throw new RuntimeException("The applet was not inited properly, " + -// "or security restrictions prevented " + -// "it from determining its path."); - } - // isAbsolute() could throw an access exception, but so will writing - // to the local disk using the sketch path, so this is safe here. - // for 0120, added a try/catch anyways. - try { - if (new File(where).isAbsolute()) return where; - } catch (Exception e) { } - - return sketchPath + File.separator + where; - } - - - public File sketchFile(String where) { - return new File(sketchPath(where)); - } - - - /** - * Returns a path inside the applet folder to save to. Like sketchPath(), - * but creates any in-between folders so that things save properly. - *

- * All saveXxxx() functions use the path to the sketch folder, rather than - * its data folder. Once exported, the data folder will be found inside the - * jar file of the exported application or applet. In this case, it's not - * possible to save data into the jar file, because it will often be running - * from a server, or marked in-use if running from a local file system. - * With this in mind, saving to the data path doesn't make sense anyway. - * If you know you're running locally, and want to save to the data folder, - * use saveXxxx("data/blah.dat"). - */ - public String savePath(String where) { - if (where == null) return null; - String filename = sketchPath(where); - createPath(filename); - return filename; - } - - - /** - * Identical to savePath(), but returns a File object. - */ - public File saveFile(String where) { - return new File(savePath(where)); - } - - - /** - * Return a full path to an item in the data folder. - *

- * In this method, the data path is defined not as the applet's actual - * data path, but a folder titled "data" in the sketch's working - * directory. When running inside the PDE, this will be the sketch's - * "data" folder. However, when exported (as application or applet), - * sketch's data folder is exported as part of the applications jar file, - * and it's not possible to read/write from the jar file in a generic way. - * If you need to read data from the jar file, you should use other methods - * such as createInput(), createReader(), or loadStrings(). - */ - public String dataPath(String where) { - // isAbsolute() could throw an access exception, but so will writing - // to the local disk using the sketch path, so this is safe here. - if (new File(where).isAbsolute()) return where; - - return sketchPath + File.separator + "data" + File.separator + where; - } - - - /** - * Return a full path to an item in the data folder as a File object. - * See the dataPath() method for more information. - */ - public File dataFile(String where) { - return new File(dataPath(where)); - } - - - /** - * Takes a path and creates any in-between folders if they don't - * already exist. Useful when trying to save to a subfolder that - * may not actually exist. - */ - static public void createPath(String path) { - createPath(new File(path)); - } - - - static public void createPath(File file) { - try { - String parent = file.getParent(); - if (parent != null) { - File unit = new File(parent); - if (!unit.exists()) unit.mkdirs(); - } - } catch (SecurityException se) { - System.err.println("You don't have permissions to create " + - file.getAbsolutePath()); - } - } - - - - ////////////////////////////////////////////////////////////// - - // SORT - - - static public byte[] sort(byte what[]) { - return sort(what, what.length); - } - - - static public byte[] sort(byte[] what, int count) { - byte[] outgoing = new byte[what.length]; - System.arraycopy(what, 0, outgoing, 0, what.length); - Arrays.sort(outgoing, 0, count); - return outgoing; - } - - - static public char[] sort(char what[]) { - return sort(what, what.length); - } - - - static public char[] sort(char[] what, int count) { - char[] outgoing = new char[what.length]; - System.arraycopy(what, 0, outgoing, 0, what.length); - Arrays.sort(outgoing, 0, count); - return outgoing; - } - - - static public int[] sort(int what[]) { - return sort(what, what.length); - } - - - static public int[] sort(int[] what, int count) { - int[] outgoing = new int[what.length]; - System.arraycopy(what, 0, outgoing, 0, what.length); - Arrays.sort(outgoing, 0, count); - return outgoing; - } - - - static public float[] sort(float what[]) { - return sort(what, what.length); - } - - - static public float[] sort(float[] what, int count) { - float[] outgoing = new float[what.length]; - System.arraycopy(what, 0, outgoing, 0, what.length); - Arrays.sort(outgoing, 0, count); - return outgoing; - } - - - static public String[] sort(String what[]) { - return sort(what, what.length); - } - - - static public String[] sort(String[] what, int count) { - String[] outgoing = new String[what.length]; - System.arraycopy(what, 0, outgoing, 0, what.length); - Arrays.sort(outgoing, 0, count); - return outgoing; - } - - - - ////////////////////////////////////////////////////////////// - - // ARRAY UTILITIES - - - /** - * Calls System.arraycopy(), included here so that we can - * avoid people needing to learn about the System object - * before they can just copy an array. - */ - static public void arrayCopy(Object src, int srcPosition, - Object dst, int dstPosition, - int length) { - System.arraycopy(src, srcPosition, dst, dstPosition, length); - } - - - /** - * Convenience method for arraycopy(). - * Identical to arraycopy(src, 0, dst, 0, length); - */ - static public void arrayCopy(Object src, Object dst, int length) { - System.arraycopy(src, 0, dst, 0, length); - } - - - /** - * Shortcut to copy the entire contents of - * the source into the destination array. - * Identical to arraycopy(src, 0, dst, 0, src.length); - */ - static public void arrayCopy(Object src, Object dst) { - System.arraycopy(src, 0, dst, 0, Array.getLength(src)); - } - - // - - /** - * @deprecated Use arrayCopy() instead. - */ - static public void arraycopy(Object src, int srcPosition, - Object dst, int dstPosition, - int length) { - System.arraycopy(src, srcPosition, dst, dstPosition, length); - } - - /** - * @deprecated Use arrayCopy() instead. - */ - static public void arraycopy(Object src, Object dst, int length) { - System.arraycopy(src, 0, dst, 0, length); - } - - /** - * @deprecated Use arrayCopy() instead. - */ - static public void arraycopy(Object src, Object dst) { - System.arraycopy(src, 0, dst, 0, Array.getLength(src)); - } - - // - - static public boolean[] expand(boolean list[]) { - return expand(list, list.length << 1); - } - - static public boolean[] expand(boolean list[], int newSize) { - boolean temp[] = new boolean[newSize]; - System.arraycopy(list, 0, temp, 0, Math.min(newSize, list.length)); - return temp; - } - - - static public byte[] expand(byte list[]) { - return expand(list, list.length << 1); - } - - static public byte[] expand(byte list[], int newSize) { - byte temp[] = new byte[newSize]; - System.arraycopy(list, 0, temp, 0, Math.min(newSize, list.length)); - return temp; - } - - - static public char[] expand(char list[]) { - return expand(list, list.length << 1); - } - - static public char[] expand(char list[], int newSize) { - char temp[] = new char[newSize]; - System.arraycopy(list, 0, temp, 0, Math.min(newSize, list.length)); - return temp; - } - - - static public int[] expand(int list[]) { - return expand(list, list.length << 1); - } - - static public int[] expand(int list[], int newSize) { - int temp[] = new int[newSize]; - System.arraycopy(list, 0, temp, 0, Math.min(newSize, list.length)); - return temp; - } - - - static public float[] expand(float list[]) { - return expand(list, list.length << 1); - } - - static public float[] expand(float list[], int newSize) { - float temp[] = new float[newSize]; - System.arraycopy(list, 0, temp, 0, Math.min(newSize, list.length)); - return temp; - } - - - static public String[] expand(String list[]) { - return expand(list, list.length << 1); - } - - static public String[] expand(String list[], int newSize) { - String temp[] = new String[newSize]; - // in case the new size is smaller than list.length - System.arraycopy(list, 0, temp, 0, Math.min(newSize, list.length)); - return temp; - } - - - static public Object expand(Object array) { - return expand(array, Array.getLength(array) << 1); - } - - static public Object expand(Object list, int newSize) { - Class type = list.getClass().getComponentType(); - Object temp = Array.newInstance(type, newSize); - System.arraycopy(list, 0, temp, 0, - Math.min(Array.getLength(list), newSize)); - return temp; - } - - // - - // contract() has been removed in revision 0124, use subset() instead. - // (expand() is also functionally equivalent) - - // - - static public byte[] append(byte b[], byte value) { - b = expand(b, b.length + 1); - b[b.length-1] = value; - return b; - } - - static public char[] append(char b[], char value) { - b = expand(b, b.length + 1); - b[b.length-1] = value; - return b; - } - - static public int[] append(int b[], int value) { - b = expand(b, b.length + 1); - b[b.length-1] = value; - return b; - } - - static public float[] append(float b[], float value) { - b = expand(b, b.length + 1); - b[b.length-1] = value; - return b; - } - - static public String[] append(String b[], String value) { - b = expand(b, b.length + 1); - b[b.length-1] = value; - return b; - } - - static public Object append(Object b, Object value) { - int length = Array.getLength(b); - b = expand(b, length + 1); - Array.set(b, length, value); - return b; - } - - // - - static public boolean[] shorten(boolean list[]) { - return subset(list, 0, list.length-1); - } - - static public byte[] shorten(byte list[]) { - return subset(list, 0, list.length-1); - } - - static public char[] shorten(char list[]) { - return subset(list, 0, list.length-1); - } - - static public int[] shorten(int list[]) { - return subset(list, 0, list.length-1); - } - - static public float[] shorten(float list[]) { - return subset(list, 0, list.length-1); - } - - static public String[] shorten(String list[]) { - return subset(list, 0, list.length-1); - } - - static public Object shorten(Object list) { - int length = Array.getLength(list); - return subset(list, 0, length - 1); - } - - // - - static final public boolean[] splice(boolean list[], - boolean v, int index) { - boolean outgoing[] = new boolean[list.length + 1]; - System.arraycopy(list, 0, outgoing, 0, index); - outgoing[index] = v; - System.arraycopy(list, index, outgoing, index + 1, - list.length - index); - return outgoing; - } - - static final public boolean[] splice(boolean list[], - boolean v[], int index) { - boolean outgoing[] = new boolean[list.length + v.length]; - System.arraycopy(list, 0, outgoing, 0, index); - System.arraycopy(v, 0, outgoing, index, v.length); - System.arraycopy(list, index, outgoing, index + v.length, - list.length - index); - return outgoing; - } - - - static final public byte[] splice(byte list[], - byte v, int index) { - byte outgoing[] = new byte[list.length + 1]; - System.arraycopy(list, 0, outgoing, 0, index); - outgoing[index] = v; - System.arraycopy(list, index, outgoing, index + 1, - list.length - index); - return outgoing; - } - - static final public byte[] splice(byte list[], - byte v[], int index) { - byte outgoing[] = new byte[list.length + v.length]; - System.arraycopy(list, 0, outgoing, 0, index); - System.arraycopy(v, 0, outgoing, index, v.length); - System.arraycopy(list, index, outgoing, index + v.length, - list.length - index); - return outgoing; - } - - - static final public char[] splice(char list[], - char v, int index) { - char outgoing[] = new char[list.length + 1]; - System.arraycopy(list, 0, outgoing, 0, index); - outgoing[index] = v; - System.arraycopy(list, index, outgoing, index + 1, - list.length - index); - return outgoing; - } - - static final public char[] splice(char list[], - char v[], int index) { - char outgoing[] = new char[list.length + v.length]; - System.arraycopy(list, 0, outgoing, 0, index); - System.arraycopy(v, 0, outgoing, index, v.length); - System.arraycopy(list, index, outgoing, index + v.length, - list.length - index); - return outgoing; - } - - - static final public int[] splice(int list[], - int v, int index) { - int outgoing[] = new int[list.length + 1]; - System.arraycopy(list, 0, outgoing, 0, index); - outgoing[index] = v; - System.arraycopy(list, index, outgoing, index + 1, - list.length - index); - return outgoing; - } - - static final public int[] splice(int list[], - int v[], int index) { - int outgoing[] = new int[list.length + v.length]; - System.arraycopy(list, 0, outgoing, 0, index); - System.arraycopy(v, 0, outgoing, index, v.length); - System.arraycopy(list, index, outgoing, index + v.length, - list.length - index); - return outgoing; - } - - - static final public float[] splice(float list[], - float v, int index) { - float outgoing[] = new float[list.length + 1]; - System.arraycopy(list, 0, outgoing, 0, index); - outgoing[index] = v; - System.arraycopy(list, index, outgoing, index + 1, - list.length - index); - return outgoing; - } - - static final public float[] splice(float list[], - float v[], int index) { - float outgoing[] = new float[list.length + v.length]; - System.arraycopy(list, 0, outgoing, 0, index); - System.arraycopy(v, 0, outgoing, index, v.length); - System.arraycopy(list, index, outgoing, index + v.length, - list.length - index); - return outgoing; - } - - - static final public String[] splice(String list[], - String v, int index) { - String outgoing[] = new String[list.length + 1]; - System.arraycopy(list, 0, outgoing, 0, index); - outgoing[index] = v; - System.arraycopy(list, index, outgoing, index + 1, - list.length - index); - return outgoing; - } - - static final public String[] splice(String list[], - String v[], int index) { - String outgoing[] = new String[list.length + v.length]; - System.arraycopy(list, 0, outgoing, 0, index); - System.arraycopy(v, 0, outgoing, index, v.length); - System.arraycopy(list, index, outgoing, index + v.length, - list.length - index); - return outgoing; - } - - - static final public Object splice(Object list, Object v, int index) { - Object[] outgoing = null; - int length = Array.getLength(list); - - // check whether item being spliced in is an array - if (v.getClass().getName().charAt(0) == '[') { - int vlength = Array.getLength(v); - outgoing = new Object[length + vlength]; - System.arraycopy(list, 0, outgoing, 0, index); - System.arraycopy(v, 0, outgoing, index, vlength); - System.arraycopy(list, index, outgoing, index + vlength, length - index); - - } else { - outgoing = new Object[length + 1]; - System.arraycopy(list, 0, outgoing, 0, index); - Array.set(outgoing, index, v); - System.arraycopy(list, index, outgoing, index + 1, length - index); - } - return outgoing; - } - - // - - static public boolean[] subset(boolean list[], int start) { - return subset(list, start, list.length - start); - } - - static public boolean[] subset(boolean list[], int start, int count) { - boolean output[] = new boolean[count]; - System.arraycopy(list, start, output, 0, count); - return output; - } - - - static public byte[] subset(byte list[], int start) { - return subset(list, start, list.length - start); - } - - static public byte[] subset(byte list[], int start, int count) { - byte output[] = new byte[count]; - System.arraycopy(list, start, output, 0, count); - return output; - } - - - static public char[] subset(char list[], int start) { - return subset(list, start, list.length - start); - } - - static public char[] subset(char list[], int start, int count) { - char output[] = new char[count]; - System.arraycopy(list, start, output, 0, count); - return output; - } - - - static public int[] subset(int list[], int start) { - return subset(list, start, list.length - start); - } - - static public int[] subset(int list[], int start, int count) { - int output[] = new int[count]; - System.arraycopy(list, start, output, 0, count); - return output; - } - - - static public float[] subset(float list[], int start) { - return subset(list, start, list.length - start); - } - - static public float[] subset(float list[], int start, int count) { - float output[] = new float[count]; - System.arraycopy(list, start, output, 0, count); - return output; - } - - - static public String[] subset(String list[], int start) { - return subset(list, start, list.length - start); - } - - static public String[] subset(String list[], int start, int count) { - String output[] = new String[count]; - System.arraycopy(list, start, output, 0, count); - return output; - } - - - static public Object subset(Object list, int start) { - int length = Array.getLength(list); - return subset(list, start, length - start); - } - - static public Object subset(Object list, int start, int count) { - Class type = list.getClass().getComponentType(); - Object outgoing = Array.newInstance(type, count); - System.arraycopy(list, start, outgoing, 0, count); - return outgoing; - } - - // - - static public boolean[] concat(boolean a[], boolean b[]) { - boolean c[] = new boolean[a.length + b.length]; - System.arraycopy(a, 0, c, 0, a.length); - System.arraycopy(b, 0, c, a.length, b.length); - return c; - } - - static public byte[] concat(byte a[], byte b[]) { - byte c[] = new byte[a.length + b.length]; - System.arraycopy(a, 0, c, 0, a.length); - System.arraycopy(b, 0, c, a.length, b.length); - return c; - } - - static public char[] concat(char a[], char b[]) { - char c[] = new char[a.length + b.length]; - System.arraycopy(a, 0, c, 0, a.length); - System.arraycopy(b, 0, c, a.length, b.length); - return c; - } - - static public int[] concat(int a[], int b[]) { - int c[] = new int[a.length + b.length]; - System.arraycopy(a, 0, c, 0, a.length); - System.arraycopy(b, 0, c, a.length, b.length); - return c; - } - - static public float[] concat(float a[], float b[]) { - float c[] = new float[a.length + b.length]; - System.arraycopy(a, 0, c, 0, a.length); - System.arraycopy(b, 0, c, a.length, b.length); - return c; - } - - static public String[] concat(String a[], String b[]) { - String c[] = new String[a.length + b.length]; - System.arraycopy(a, 0, c, 0, a.length); - System.arraycopy(b, 0, c, a.length, b.length); - return c; - } - - static public Object concat(Object a, Object b) { - Class type = a.getClass().getComponentType(); - int alength = Array.getLength(a); - int blength = Array.getLength(b); - Object outgoing = Array.newInstance(type, alength + blength); - System.arraycopy(a, 0, outgoing, 0, alength); - System.arraycopy(b, 0, outgoing, alength, blength); - return outgoing; - } - - // - - static public boolean[] reverse(boolean list[]) { - boolean outgoing[] = new boolean[list.length]; - int length1 = list.length - 1; - for (int i = 0; i < list.length; i++) { - outgoing[i] = list[length1 - i]; - } - return outgoing; - } - - static public byte[] reverse(byte list[]) { - byte outgoing[] = new byte[list.length]; - int length1 = list.length - 1; - for (int i = 0; i < list.length; i++) { - outgoing[i] = list[length1 - i]; - } - return outgoing; - } - - static public char[] reverse(char list[]) { - char outgoing[] = new char[list.length]; - int length1 = list.length - 1; - for (int i = 0; i < list.length; i++) { - outgoing[i] = list[length1 - i]; - } - return outgoing; - } - - static public int[] reverse(int list[]) { - int outgoing[] = new int[list.length]; - int length1 = list.length - 1; - for (int i = 0; i < list.length; i++) { - outgoing[i] = list[length1 - i]; - } - return outgoing; - } - - static public float[] reverse(float list[]) { - float outgoing[] = new float[list.length]; - int length1 = list.length - 1; - for (int i = 0; i < list.length; i++) { - outgoing[i] = list[length1 - i]; - } - return outgoing; - } - - static public String[] reverse(String list[]) { - String outgoing[] = new String[list.length]; - int length1 = list.length - 1; - for (int i = 0; i < list.length; i++) { - outgoing[i] = list[length1 - i]; - } - return outgoing; - } - - static public Object reverse(Object list) { - Class type = list.getClass().getComponentType(); - int length = Array.getLength(list); - Object outgoing = Array.newInstance(type, length); - for (int i = 0; i < length; i++) { - Array.set(outgoing, i, Array.get(list, (length - 1) - i)); - } - return outgoing; - } - - - - ////////////////////////////////////////////////////////////// - - // STRINGS - - - /** - * Remove whitespace characters from the beginning and ending - * of a String. Works like String.trim() but includes the - * unicode nbsp character as well. - */ - static public String trim(String str) { - return str.replace('\u00A0', ' ').trim(); - } - - - /** - * Trim the whitespace from a String array. This returns a new - * array and does not affect the passed-in array. - */ - static public String[] trim(String[] array) { - String[] outgoing = new String[array.length]; - for (int i = 0; i < array.length; i++) { - outgoing[i] = array[i].replace('\u00A0', ' ').trim(); - } - return outgoing; - } - - - /** - * Join an array of Strings together as a single String, - * separated by the whatever's passed in for the separator. - */ - static public String join(String str[], char separator) { - return join(str, String.valueOf(separator)); - } - - - /** - * Join an array of Strings together as a single String, - * separated by the whatever's passed in for the separator. - *

- * To use this on numbers, first pass the array to nf() or nfs() - * to get a list of String objects, then use join on that. - *

-   * e.g. String stuff[] = { "apple", "bear", "cat" };
-   *      String list = join(stuff, ", ");
-   *      // list is now "apple, bear, cat"
- */ - static public String join(String str[], String separator) { - StringBuffer buffer = new StringBuffer(); - for (int i = 0; i < str.length; i++) { - if (i != 0) buffer.append(separator); - buffer.append(str[i]); - } - return buffer.toString(); - } - - - /** - * Split the provided String at wherever whitespace occurs. - * Multiple whitespace (extra spaces or tabs or whatever) - * between items will count as a single break. - *

- * The whitespace characters are "\t\n\r\f", which are the defaults - * for java.util.StringTokenizer, plus the unicode non-breaking space - * character, which is found commonly on files created by or used - * in conjunction with Mac OS X (character 160, or 0x00A0 in hex). - *

-   * i.e. splitTokens("a b") -> { "a", "b" }
-   *      splitTokens("a    b") -> { "a", "b" }
-   *      splitTokens("a\tb") -> { "a", "b" }
-   *      splitTokens("a \t  b  ") -> { "a", "b" }
- */ - static public String[] splitTokens(String what) { - return splitTokens(what, WHITESPACE); - } - - - /** - * Splits a string into pieces, using any of the chars in the - * String 'delim' as separator characters. For instance, - * in addition to white space, you might want to treat commas - * as a separator. The delimeter characters won't appear in - * the returned String array. - *
-   * i.e. splitTokens("a, b", " ,") -> { "a", "b" }
-   * 
- * To include all the whitespace possibilities, use the variable - * WHITESPACE, found in PConstants: - *
-   * i.e. splitTokens("a   | b", WHITESPACE + "|");  ->  { "a", "b" }
- */ - static public String[] splitTokens(String what, String delim) { - StringTokenizer toker = new StringTokenizer(what, delim); - String pieces[] = new String[toker.countTokens()]; - - int index = 0; - while (toker.hasMoreTokens()) { - pieces[index++] = toker.nextToken(); - } - return pieces; - } - - - /** - * Split a string into pieces along a specific character. - * Most commonly used to break up a String along a space or a tab - * character. - *

- * This operates differently than the others, where the - * single delimeter is the only breaking point, and consecutive - * delimeters will produce an empty string (""). This way, - * one can split on tab characters, but maintain the column - * alignments (of say an excel file) where there are empty columns. - */ - static public String[] split(String what, char delim) { - // do this so that the exception occurs inside the user's - // program, rather than appearing to be a bug inside split() - if (what == null) return null; - //return split(what, String.valueOf(delim)); // huh - - char chars[] = what.toCharArray(); - int splitCount = 0; //1; - for (int i = 0; i < chars.length; i++) { - if (chars[i] == delim) splitCount++; - } - // make sure that there is something in the input string - //if (chars.length > 0) { - // if the last char is a delimeter, get rid of it.. - //if (chars[chars.length-1] == delim) splitCount--; - // on second thought, i don't agree with this, will disable - //} - if (splitCount == 0) { - String splits[] = new String[1]; - splits[0] = new String(what); - return splits; - } - //int pieceCount = splitCount + 1; - String splits[] = new String[splitCount + 1]; - int splitIndex = 0; - int startIndex = 0; - for (int i = 0; i < chars.length; i++) { - if (chars[i] == delim) { - splits[splitIndex++] = - new String(chars, startIndex, i-startIndex); - startIndex = i + 1; - } - } - //if (startIndex != chars.length) { - splits[splitIndex] = - new String(chars, startIndex, chars.length-startIndex); - //} - return splits; - } - - - /** - * Split a String on a specific delimiter. Unlike Java's String.split() - * method, this does not parse the delimiter as a regexp because it's more - * confusing than necessary, and String.split() is always available for - * those who want regexp. - */ - static public String[] split(String what, String delim) { - ArrayList items = new ArrayList(); - int index; - int offset = 0; - while ((index = what.indexOf(delim, offset)) != -1) { - items.add(what.substring(offset, index)); - offset = index + delim.length(); - } - items.add(what.substring(offset)); - String[] outgoing = new String[items.size()]; - items.toArray(outgoing); - return outgoing; - } - - - /** - * Match a string with a regular expression, and returns the match as an - * array. The first index is the matching expression, and array elements - * [1] and higher represent each of the groups (sequences found in parens). - * - * This uses multiline matching (Pattern.MULTILINE) and dotall mode - * (Pattern.DOTALL) by default, so that ^ and $ match the beginning and - * end of any lines found in the source, and the . operator will also - * pick up newline characters. - */ - static public String[] match(String what, String regexp) { - Pattern p = Pattern.compile(regexp, Pattern.MULTILINE | Pattern.DOTALL); - Matcher m = p.matcher(what); - if (m.find()) { - int count = m.groupCount() + 1; - String[] groups = new String[count]; - for (int i = 0; i < count; i++) { - groups[i] = m.group(i); - } - return groups; - } - return null; - } - - - /** - * Identical to match(), except that it returns an array of all matches in - * the specified String, rather than just the first. - */ - static public String[][] matchAll(String what, String regexp) { - Pattern p = Pattern.compile(regexp, Pattern.MULTILINE | Pattern.DOTALL); - Matcher m = p.matcher(what); - ArrayList results = new ArrayList(); - int count = m.groupCount() + 1; - while (m.find()) { - String[] groups = new String[count]; - for (int i = 0; i < count; i++) { - groups[i] = m.group(i); - } - results.add(groups); - } - if (results.isEmpty()) { - return null; - } - String[][] matches = new String[results.size()][count]; - for (int i = 0; i < matches.length; i++) { - matches[i] = (String[]) results.get(i); - } - return matches; - } - - - - ////////////////////////////////////////////////////////////// - - // CASTING FUNCTIONS, INSERTED BY PREPROC - - - /** - * Convert a char to a boolean. 'T', 't', and '1' will become the - * boolean value true, while 'F', 'f', or '0' will become false. - */ - /* - static final public boolean parseBoolean(char what) { - return ((what == 't') || (what == 'T') || (what == '1')); - } - */ - - /** - *

Convert an integer to a boolean. Because of how Java handles upgrading - * numbers, this will also cover byte and char (as they will upgrade to - * an int without any sort of explicit cast).

- *

The preprocessor will convert boolean(what) to parseBoolean(what).

- * @return false if 0, true if any other number - */ - static final public boolean parseBoolean(int what) { - return (what != 0); - } - - /* - // removed because this makes no useful sense - static final public boolean parseBoolean(float what) { - return (what != 0); - } - */ - - /** - * Convert the string "true" or "false" to a boolean. - * @return true if 'what' is "true" or "TRUE", false otherwise - */ - static final public boolean parseBoolean(String what) { - return new Boolean(what).booleanValue(); - } - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - /* - // removed, no need to introduce strange syntax from other languages - static final public boolean[] parseBoolean(char what[]) { - boolean outgoing[] = new boolean[what.length]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = - ((what[i] == 't') || (what[i] == 'T') || (what[i] == '1')); - } - return outgoing; - } - */ - - /** - * Convert a byte array to a boolean array. Each element will be - * evaluated identical to the integer case, where a byte equal - * to zero will return false, and any other value will return true. - * @return array of boolean elements - */ - static final public boolean[] parseBoolean(byte what[]) { - boolean outgoing[] = new boolean[what.length]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = (what[i] != 0); - } - return outgoing; - } - - /** - * Convert an int array to a boolean array. An int equal - * to zero will return false, and any other value will return true. - * @return array of boolean elements - */ - static final public boolean[] parseBoolean(int what[]) { - boolean outgoing[] = new boolean[what.length]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = (what[i] != 0); - } - return outgoing; - } - - /* - // removed, not necessary... if necessary, convert to int array first - static final public boolean[] parseBoolean(float what[]) { - boolean outgoing[] = new boolean[what.length]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = (what[i] != 0); - } - return outgoing; - } - */ - - static final public boolean[] parseBoolean(String what[]) { - boolean outgoing[] = new boolean[what.length]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = new Boolean(what[i]).booleanValue(); - } - return outgoing; - } - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - static final public byte parseByte(boolean what) { - return what ? (byte)1 : 0; - } - - static final public byte parseByte(char what) { - return (byte) what; - } - - static final public byte parseByte(int what) { - return (byte) what; - } - - static final public byte parseByte(float what) { - return (byte) what; - } - - /* - // nixed, no precedent - static final public byte[] parseByte(String what) { // note: array[] - return what.getBytes(); - } - */ - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - static final public byte[] parseByte(boolean what[]) { - byte outgoing[] = new byte[what.length]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = what[i] ? (byte)1 : 0; - } - return outgoing; - } - - static final public byte[] parseByte(char what[]) { - byte outgoing[] = new byte[what.length]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = (byte) what[i]; - } - return outgoing; - } - - static final public byte[] parseByte(int what[]) { - byte outgoing[] = new byte[what.length]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = (byte) what[i]; - } - return outgoing; - } - - static final public byte[] parseByte(float what[]) { - byte outgoing[] = new byte[what.length]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = (byte) what[i]; - } - return outgoing; - } - - /* - static final public byte[][] parseByte(String what[]) { // note: array[][] - byte outgoing[][] = new byte[what.length][]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = what[i].getBytes(); - } - return outgoing; - } - */ - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - /* - static final public char parseChar(boolean what) { // 0/1 or T/F ? - return what ? 't' : 'f'; - } - */ - - static final public char parseChar(byte what) { - return (char) (what & 0xff); - } - - static final public char parseChar(int what) { - return (char) what; - } - - /* - static final public char parseChar(float what) { // nonsensical - return (char) what; - } - - static final public char[] parseChar(String what) { // note: array[] - return what.toCharArray(); - } - */ - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - /* - static final public char[] parseChar(boolean what[]) { // 0/1 or T/F ? - char outgoing[] = new char[what.length]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = what[i] ? 't' : 'f'; - } - return outgoing; - } - */ - - static final public char[] parseChar(byte what[]) { - char outgoing[] = new char[what.length]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = (char) (what[i] & 0xff); - } - return outgoing; - } - - static final public char[] parseChar(int what[]) { - char outgoing[] = new char[what.length]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = (char) what[i]; - } - return outgoing; - } - - /* - static final public char[] parseChar(float what[]) { // nonsensical - char outgoing[] = new char[what.length]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = (char) what[i]; - } - return outgoing; - } - - static final public char[][] parseChar(String what[]) { // note: array[][] - char outgoing[][] = new char[what.length][]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = what[i].toCharArray(); - } - return outgoing; - } - */ - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - static final public int parseInt(boolean what) { - return what ? 1 : 0; - } - - /** - * Note that parseInt() will un-sign a signed byte value. - */ - static final public int parseInt(byte what) { - return what & 0xff; - } - - /** - * Note that parseInt('5') is unlike String in the sense that it - * won't return 5, but the ascii value. This is because ((int) someChar) - * returns the ascii value, and parseInt() is just longhand for the cast. - */ - static final public int parseInt(char what) { - return what; - } - - /** - * Same as floor(), or an (int) cast. - */ - static final public int parseInt(float what) { - return (int) what; - } - - /** - * Parse a String into an int value. Returns 0 if the value is bad. - */ - static final public int parseInt(String what) { - return parseInt(what, 0); - } - - /** - * Parse a String to an int, and provide an alternate value that - * should be used when the number is invalid. - */ - static final public int parseInt(String what, int otherwise) { - try { - int offset = what.indexOf('.'); - if (offset == -1) { - return Integer.parseInt(what); - } else { - return Integer.parseInt(what.substring(0, offset)); - } - } catch (NumberFormatException e) { } - return otherwise; - } - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - static final public int[] parseInt(boolean what[]) { - int list[] = new int[what.length]; - for (int i = 0; i < what.length; i++) { - list[i] = what[i] ? 1 : 0; - } - return list; - } - - static final public int[] parseInt(byte what[]) { // note this unsigns - int list[] = new int[what.length]; - for (int i = 0; i < what.length; i++) { - list[i] = (what[i] & 0xff); - } - return list; - } - - static final public int[] parseInt(char what[]) { - int list[] = new int[what.length]; - for (int i = 0; i < what.length; i++) { - list[i] = what[i]; - } - return list; - } - - static public int[] parseInt(float what[]) { - int inties[] = new int[what.length]; - for (int i = 0; i < what.length; i++) { - inties[i] = (int)what[i]; - } - return inties; - } - - /** - * Make an array of int elements from an array of String objects. - * If the String can't be parsed as a number, it will be set to zero. - * - * String s[] = { "1", "300", "44" }; - * int numbers[] = parseInt(s); - * - * numbers will contain { 1, 300, 44 } - */ - static public int[] parseInt(String what[]) { - return parseInt(what, 0); - } - - /** - * Make an array of int elements from an array of String objects. - * If the String can't be parsed as a number, its entry in the - * array will be set to the value of the "missing" parameter. - * - * String s[] = { "1", "300", "apple", "44" }; - * int numbers[] = parseInt(s, 9999); - * - * numbers will contain { 1, 300, 9999, 44 } - */ - static public int[] parseInt(String what[], int missing) { - int output[] = new int[what.length]; - for (int i = 0; i < what.length; i++) { - try { - output[i] = Integer.parseInt(what[i]); - } catch (NumberFormatException e) { - output[i] = missing; - } - } - return output; - } - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - /* - static final public float parseFloat(boolean what) { - return what ? 1 : 0; - } - */ - - /** - * Convert an int to a float value. Also handles bytes because of - * Java's rules for upgrading values. - */ - static final public float parseFloat(int what) { // also handles byte - return (float)what; - } - - static final public float parseFloat(String what) { - return parseFloat(what, Float.NaN); - } - - static final public float parseFloat(String what, float otherwise) { - try { - return new Float(what).floatValue(); - } catch (NumberFormatException e) { } - - return otherwise; - } - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - /* - static final public float[] parseFloat(boolean what[]) { - float floaties[] = new float[what.length]; - for (int i = 0; i < what.length; i++) { - floaties[i] = what[i] ? 1 : 0; - } - return floaties; - } - - static final public float[] parseFloat(char what[]) { - float floaties[] = new float[what.length]; - for (int i = 0; i < what.length; i++) { - floaties[i] = (char) what[i]; - } - return floaties; - } - */ - - static final public float[] parseByte(byte what[]) { - float floaties[] = new float[what.length]; - for (int i = 0; i < what.length; i++) { - floaties[i] = what[i]; - } - return floaties; - } - - static final public float[] parseFloat(int what[]) { - float floaties[] = new float[what.length]; - for (int i = 0; i < what.length; i++) { - floaties[i] = what[i]; - } - return floaties; - } - - static final public float[] parseFloat(String what[]) { - return parseFloat(what, Float.NaN); - } - - static final public float[] parseFloat(String what[], float missing) { - float output[] = new float[what.length]; - for (int i = 0; i < what.length; i++) { - try { - output[i] = new Float(what[i]).floatValue(); - } catch (NumberFormatException e) { - output[i] = missing; - } - } - return output; - } - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - static final public String str(boolean x) { - return String.valueOf(x); - } - - static final public String str(byte x) { - return String.valueOf(x); - } - - static final public String str(char x) { - return String.valueOf(x); - } - - static final public String str(int x) { - return String.valueOf(x); - } - - static final public String str(float x) { - return String.valueOf(x); - } - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - static final public String[] str(boolean x[]) { - String s[] = new String[x.length]; - for (int i = 0; i < x.length; i++) s[i] = String.valueOf(x[i]); - return s; - } - - static final public String[] str(byte x[]) { - String s[] = new String[x.length]; - for (int i = 0; i < x.length; i++) s[i] = String.valueOf(x[i]); - return s; - } - - static final public String[] str(char x[]) { - String s[] = new String[x.length]; - for (int i = 0; i < x.length; i++) s[i] = String.valueOf(x[i]); - return s; - } - - static final public String[] str(int x[]) { - String s[] = new String[x.length]; - for (int i = 0; i < x.length; i++) s[i] = String.valueOf(x[i]); - return s; - } - - static final public String[] str(float x[]) { - String s[] = new String[x.length]; - for (int i = 0; i < x.length; i++) s[i] = String.valueOf(x[i]); - return s; - } - - - ////////////////////////////////////////////////////////////// - - // INT NUMBER FORMATTING - - - /** - * Integer number formatter. - */ - static private NumberFormat int_nf; - static private int int_nf_digits; - static private boolean int_nf_commas; - - - static public String[] nf(int num[], int digits) { - String formatted[] = new String[num.length]; - for (int i = 0; i < formatted.length; i++) { - formatted[i] = nf(num[i], digits); - } - return formatted; - } - - - static public String nf(int num, int digits) { - if ((int_nf != null) && - (int_nf_digits == digits) && - !int_nf_commas) { - return int_nf.format(num); - } - - int_nf = NumberFormat.getInstance(); - int_nf.setGroupingUsed(false); // no commas - int_nf_commas = false; - int_nf.setMinimumIntegerDigits(digits); - int_nf_digits = digits; - return int_nf.format(num); - } - - - static public String[] nfc(int num[]) { - String formatted[] = new String[num.length]; - for (int i = 0; i < formatted.length; i++) { - formatted[i] = nfc(num[i]); - } - return formatted; - } - - - static public String nfc(int num) { - if ((int_nf != null) && - (int_nf_digits == 0) && - int_nf_commas) { - return int_nf.format(num); - } - - int_nf = NumberFormat.getInstance(); - int_nf.setGroupingUsed(true); - int_nf_commas = true; - int_nf.setMinimumIntegerDigits(0); - int_nf_digits = 0; - return int_nf.format(num); - } - - - /** - * number format signed (or space) - * Formats a number but leaves a blank space in the front - * when it's positive so that it can be properly aligned with - * numbers that have a negative sign in front of them. - */ - static public String nfs(int num, int digits) { - return (num < 0) ? nf(num, digits) : (' ' + nf(num, digits)); - } - - static public String[] nfs(int num[], int digits) { - String formatted[] = new String[num.length]; - for (int i = 0; i < formatted.length; i++) { - formatted[i] = nfs(num[i], digits); - } - return formatted; - } - - // - - /** - * number format positive (or plus) - * Formats a number, always placing a - or + sign - * in the front when it's negative or positive. - */ - static public String nfp(int num, int digits) { - return (num < 0) ? nf(num, digits) : ('+' + nf(num, digits)); - } - - static public String[] nfp(int num[], int digits) { - String formatted[] = new String[num.length]; - for (int i = 0; i < formatted.length; i++) { - formatted[i] = nfp(num[i], digits); - } - return formatted; - } - - - - ////////////////////////////////////////////////////////////// - - // FLOAT NUMBER FORMATTING - - - static private NumberFormat float_nf; - static private int float_nf_left, float_nf_right; - static private boolean float_nf_commas; - - - static public String[] nf(float num[], int left, int right) { - String formatted[] = new String[num.length]; - for (int i = 0; i < formatted.length; i++) { - formatted[i] = nf(num[i], left, right); - } - return formatted; - } - - - static public String nf(float num, int left, int right) { - if ((float_nf != null) && - (float_nf_left == left) && - (float_nf_right == right) && - !float_nf_commas) { - return float_nf.format(num); - } - - float_nf = NumberFormat.getInstance(); - float_nf.setGroupingUsed(false); - float_nf_commas = false; - - if (left != 0) float_nf.setMinimumIntegerDigits(left); - if (right != 0) { - float_nf.setMinimumFractionDigits(right); - float_nf.setMaximumFractionDigits(right); - } - float_nf_left = left; - float_nf_right = right; - return float_nf.format(num); - } - - - static public String[] nfc(float num[], int right) { - String formatted[] = new String[num.length]; - for (int i = 0; i < formatted.length; i++) { - formatted[i] = nfc(num[i], right); - } - return formatted; - } - - - static public String nfc(float num, int right) { - if ((float_nf != null) && - (float_nf_left == 0) && - (float_nf_right == right) && - float_nf_commas) { - return float_nf.format(num); - } - - float_nf = NumberFormat.getInstance(); - float_nf.setGroupingUsed(true); - float_nf_commas = true; - - if (right != 0) { - float_nf.setMinimumFractionDigits(right); - float_nf.setMaximumFractionDigits(right); - } - float_nf_left = 0; - float_nf_right = right; - return float_nf.format(num); - } - - - /** - * Number formatter that takes into account whether the number - * has a sign (positive, negative, etc) in front of it. - */ - static public String[] nfs(float num[], int left, int right) { - String formatted[] = new String[num.length]; - for (int i = 0; i < formatted.length; i++) { - formatted[i] = nfs(num[i], left, right); - } - return formatted; - } - - static public String nfs(float num, int left, int right) { - return (num < 0) ? nf(num, left, right) : (' ' + nf(num, left, right)); - } - - - static public String[] nfp(float num[], int left, int right) { - String formatted[] = new String[num.length]; - for (int i = 0; i < formatted.length; i++) { - formatted[i] = nfp(num[i], left, right); - } - return formatted; - } - - static public String nfp(float num, int left, int right) { - return (num < 0) ? nf(num, left, right) : ('+' + nf(num, left, right)); - } - - - - ////////////////////////////////////////////////////////////// - - // HEX/BINARY CONVERSION - - - static final public String hex(byte what) { - return hex(what, 2); - } - - static final public String hex(char what) { - return hex(what, 4); - } - - static final public String hex(int what) { - return hex(what, 8); - } - - static final public String hex(int what, int digits) { - String stuff = Integer.toHexString(what).toUpperCase(); - - int length = stuff.length(); - if (length > digits) { - return stuff.substring(length - digits); - - } else if (length < digits) { - return "00000000".substring(8 - (digits-length)) + stuff; - } - return stuff; - } - - static final public int unhex(String what) { - // has to parse as a Long so that it'll work for numbers bigger than 2^31 - return (int) (Long.parseLong(what, 16)); - } - - // - - /** - * Returns a String that contains the binary value of a byte. - * The returned value will always have 8 digits. - */ - static final public String binary(byte what) { - return binary(what, 8); - } - - /** - * Returns a String that contains the binary value of a char. - * The returned value will always have 16 digits because chars - * are two bytes long. - */ - static final public String binary(char what) { - return binary(what, 16); - } - - /** - * Returns a String that contains the binary value of an int. - * The length depends on the size of the number itself. - * An int can be up to 32 binary digits, but that seems like - * overkill for almost any situation, so this function just - * auto-size. If you want a specific number of digits (like all 32) - * use binary(int what, int digits) to specify how many digits. - */ - static final public String binary(int what) { - return Integer.toBinaryString(what); - //return binary(what, 32); - } - - /** - * Returns a String that contains the binary value of an int. - * The digits parameter determines how many digits will be used. - */ - static final public String binary(int what, int digits) { - String stuff = Integer.toBinaryString(what); - - int length = stuff.length(); - if (length > digits) { - return stuff.substring(length - digits); - - } else if (length < digits) { - int offset = 32 - (digits-length); - return "00000000000000000000000000000000".substring(offset) + stuff; - } - return stuff; - } - - - /** - * Unpack a binary String into an int. - * i.e. unbinary("00001000") would return 8. - */ - static final public int unbinary(String what) { - return Integer.parseInt(what, 2); - } - - - - ////////////////////////////////////////////////////////////// - - // COLOR FUNCTIONS - - // moved here so that they can work without - // the graphics actually being instantiated (outside setup) - - - public final int color(int gray) { - if (g == null) { - if (gray > 255) gray = 255; else if (gray < 0) gray = 0; - return 0xff000000 | (gray << 16) | (gray << 8) | gray; - } - return g.color(gray); - } - - - public final int color(float fgray) { - if (g == null) { - int gray = (int) fgray; - if (gray > 255) gray = 255; else if (gray < 0) gray = 0; - return 0xff000000 | (gray << 16) | (gray << 8) | gray; - } - return g.color(fgray); - } - - - /** - * As of 0116 this also takes color(#FF8800, alpha) - * - * @param gray number specifying value between white and black - */ - public final int color(int gray, int alpha) { - if (g == null) { - if (alpha > 255) alpha = 255; else if (alpha < 0) alpha = 0; - if (gray > 255) { - // then assume this is actually a #FF8800 - return (alpha << 24) | (gray & 0xFFFFFF); - } else { - //if (gray > 255) gray = 255; else if (gray < 0) gray = 0; - return (alpha << 24) | (gray << 16) | (gray << 8) | gray; - } - } - return g.color(gray, alpha); - } - - - public final int color(float fgray, float falpha) { - if (g == null) { - int gray = (int) fgray; - int alpha = (int) falpha; - if (gray > 255) gray = 255; else if (gray < 0) gray = 0; - if (alpha > 255) alpha = 255; else if (alpha < 0) alpha = 0; - return 0xff000000 | (gray << 16) | (gray << 8) | gray; - } - return g.color(fgray, falpha); - } - - - public final int color(int x, int y, int z) { - if (g == null) { - if (x > 255) x = 255; else if (x < 0) x = 0; - if (y > 255) y = 255; else if (y < 0) y = 0; - if (z > 255) z = 255; else if (z < 0) z = 0; - - return 0xff000000 | (x << 16) | (y << 8) | z; - } - return g.color(x, y, z); - } - - - public final int color(float x, float y, float z) { - if (g == null) { - if (x > 255) x = 255; else if (x < 0) x = 0; - if (y > 255) y = 255; else if (y < 0) y = 0; - if (z > 255) z = 255; else if (z < 0) z = 0; - - return 0xff000000 | ((int)x << 16) | ((int)y << 8) | (int)z; - } - return g.color(x, y, z); - } - - - public final int color(int x, int y, int z, int a) { - if (g == null) { - if (a > 255) a = 255; else if (a < 0) a = 0; - if (x > 255) x = 255; else if (x < 0) x = 0; - if (y > 255) y = 255; else if (y < 0) y = 0; - if (z > 255) z = 255; else if (z < 0) z = 0; - - return (a << 24) | (x << 16) | (y << 8) | z; - } - return g.color(x, y, z, a); - } - - /** - * Creates colors for storing in variables of the color datatype. The parameters are interpreted as RGB or HSB values depending on the current colorMode(). The default mode is RGB values from 0 to 255 and therefore, the function call color(255, 204, 0) will return a bright yellow color. More about how colors are stored can be found in the reference for the color datatype. - * - * @webref color:creating_reading - * @param x red or hue values relative to the current color range - * @param y green or saturation values relative to the current color range - * @param z blue or brightness values relative to the current color range - * @param a alpha relative to current color range - * - * @see processing.core.PApplet#colorMode(int) - * @ref color_datatype - */ - public final int color(float x, float y, float z, float a) { - if (g == null) { - if (a > 255) a = 255; else if (a < 0) a = 0; - if (x > 255) x = 255; else if (x < 0) x = 0; - if (y > 255) y = 255; else if (y < 0) y = 0; - if (z > 255) z = 255; else if (z < 0) z = 0; - - return ((int)a << 24) | ((int)x << 16) | ((int)y << 8) | (int)z; - } - return g.color(x, y, z, a); - } - - - - ////////////////////////////////////////////////////////////// - - // MAIN - - - /** - * Set this sketch to communicate its state back to the PDE. - *

- * This uses the stderr stream to write positions of the window - * (so that it will be saved by the PDE for the next run) and - * notify on quit. See more notes in the Worker class. - */ - public void setupExternalMessages() { - - frame.addComponentListener(new ComponentAdapter() { - public void componentMoved(ComponentEvent e) { - Point where = ((Frame) e.getSource()).getLocation(); - System.err.println(PApplet.EXTERNAL_MOVE + " " + - where.x + " " + where.y); - System.err.flush(); // doesn't seem to help or hurt - } - }); - - frame.addWindowListener(new WindowAdapter() { - public void windowClosing(WindowEvent e) { -// System.err.println(PApplet.EXTERNAL_QUIT); -// System.err.flush(); // important -// System.exit(0); - exit(); // don't quit, need to just shut everything down (0133) - } - }); - } - - - /** - * Set up a listener that will fire proper component resize events - * in cases where frame.setResizable(true) is called. - */ - public void setupFrameResizeListener() { - frame.addComponentListener(new ComponentAdapter() { - - public void componentResized(ComponentEvent e) { - // Ignore bad resize events fired during setup to fix - // http://dev.processing.org/bugs/show_bug.cgi?id=341 - // This should also fix the blank screen on Linux bug - // http://dev.processing.org/bugs/show_bug.cgi?id=282 - if (frame.isResizable()) { - // might be multiple resize calls before visible (i.e. first - // when pack() is called, then when it's resized for use). - // ignore them because it's not the user resizing things. - Frame farm = (Frame) e.getComponent(); - if (farm.isVisible()) { - Insets insets = farm.getInsets(); - Dimension windowSize = farm.getSize(); - int usableW = windowSize.width - insets.left - insets.right; - int usableH = windowSize.height - insets.top - insets.bottom; - - // the ComponentListener in PApplet will handle calling size() - setBounds(insets.left, insets.top, usableW, usableH); - } - } - } - }); - } - - - /** - * GIF image of the Processing logo. - */ - static public final byte[] ICON_IMAGE = { - 71, 73, 70, 56, 57, 97, 16, 0, 16, 0, -77, 0, 0, 0, 0, 0, -1, -1, -1, 12, - 12, 13, -15, -15, -14, 45, 57, 74, 54, 80, 111, 47, 71, 97, 62, 88, 117, - 1, 14, 27, 7, 41, 73, 15, 52, 85, 2, 31, 55, 4, 54, 94, 18, 69, 109, 37, - 87, 126, -1, -1, -1, 33, -7, 4, 1, 0, 0, 15, 0, 44, 0, 0, 0, 0, 16, 0, 16, - 0, 0, 4, 122, -16, -107, 114, -86, -67, 83, 30, -42, 26, -17, -100, -45, - 56, -57, -108, 48, 40, 122, -90, 104, 67, -91, -51, 32, -53, 77, -78, -100, - 47, -86, 12, 76, -110, -20, -74, -101, 97, -93, 27, 40, 20, -65, 65, 48, - -111, 99, -20, -112, -117, -123, -47, -105, 24, 114, -112, 74, 69, 84, 25, - 93, 88, -75, 9, 46, 2, 49, 88, -116, -67, 7, -19, -83, 60, 38, 3, -34, 2, - 66, -95, 27, -98, 13, 4, -17, 55, 33, 109, 11, 11, -2, -128, 121, 123, 62, - 91, 120, -128, 127, 122, 115, 102, 2, 119, 0, -116, -113, -119, 6, 102, - 121, -108, -126, 5, 18, 6, 4, -102, -101, -100, 114, 15, 17, 0, 59 - }; - - - /** - * main() method for running this class from the command line. - *

- * The options shown here are not yet finalized and will be - * changing over the next several releases. - *

- * The simplest way to turn and applet into an application is to - * add the following code to your program: - *

static public void main(String args[]) {
-   *   PApplet.main(new String[] { "YourSketchName" });
-   * }
- * This will properly launch your applet from a double-clickable - * .jar or from the command line. - *
-   * Parameters useful for launching or also used by the PDE:
-   *
-   * --location=x,y        upper-lefthand corner of where the applet
-   *                       should appear on screen. if not used,
-   *                       the default is to center on the main screen.
-   *
-   * --present             put the applet into full screen presentation
-   *                       mode. requires java 1.4 or later.
-   *
-   * --exclusive           use full screen exclusive mode when presenting.
-   *                       disables new windows or interaction with other
-   *                       monitors, this is like a "game" mode.
-   *
-   * --hide-stop           use to hide the stop button in situations where
-   *                       you don't want to allow users to exit. also
-   *                       see the FAQ on information for capturing the ESC
-   *                       key when running in presentation mode.
-   *
-   * --stop-color=#xxxxxx  color of the 'stop' text used to quit an
-   *                       sketch when it's in present mode.
-   *
-   * --bgcolor=#xxxxxx     background color of the window.
-   *
-   * --sketch-path         location of where to save files from functions
-   *                       like saveStrings() or saveFrame(). defaults to
-   *                       the folder that the java application was
-   *                       launched from, which means if this isn't set by
-   *                       the pde, everything goes into the same folder
-   *                       as processing.exe.
-   *
-   * --display=n           set what display should be used by this applet.
-   *                       displays are numbered starting from 1.
-   *
-   * Parameters used by Processing when running via the PDE
-   *
-   * --external            set when the applet is being used by the PDE
-   *
-   * --editor-location=x,y position of the upper-lefthand corner of the
-   *                       editor window, for placement of applet window
-   * 
- */ - static public void main(String args[]) { - // Disable abyssmally slow Sun renderer on OS X 10.5. - if (platform == MACOSX) { - // Only run this on OS X otherwise it can cause a permissions error. - // http://dev.processing.org/bugs/show_bug.cgi?id=976 - System.setProperty("apple.awt.graphics.UseQuartz", "true"); - } - - // This doesn't do anything. -// if (platform == WINDOWS) { -// // For now, disable the D3D renderer on Java 6u10 because -// // it causes problems with Present mode. -// // http://dev.processing.org/bugs/show_bug.cgi?id=1009 -// System.setProperty("sun.java2d.d3d", "false"); -// } - - if (args.length < 1) { - System.err.println("Usage: PApplet "); - System.err.println("For additional options, " + - "see the Javadoc for PApplet"); - System.exit(1); - } - - boolean external = false; - int[] location = null; - int[] editorLocation = null; - - String name = null; - boolean present = false; - boolean exclusive = false; - Color backgroundColor = Color.BLACK; - Color stopColor = Color.GRAY; - GraphicsDevice displayDevice = null; - boolean hideStop = false; - - String param = null, value = null; - - // try to get the user folder. if running under java web start, - // this may cause a security exception if the code is not signed. - // http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Integrate;action=display;num=1159386274 - String folder = null; - try { - folder = System.getProperty("user.dir"); - } catch (Exception e) { } - - int argIndex = 0; - while (argIndex < args.length) { - int equals = args[argIndex].indexOf('='); - if (equals != -1) { - param = args[argIndex].substring(0, equals); - value = args[argIndex].substring(equals + 1); - - if (param.equals(ARGS_EDITOR_LOCATION)) { - external = true; - editorLocation = parseInt(split(value, ',')); - - } else if (param.equals(ARGS_DISPLAY)) { - int deviceIndex = Integer.parseInt(value) - 1; - - //DisplayMode dm = device.getDisplayMode(); - //if ((dm.getWidth() == 1024) && (dm.getHeight() == 768)) { - - GraphicsEnvironment environment = - GraphicsEnvironment.getLocalGraphicsEnvironment(); - GraphicsDevice devices[] = environment.getScreenDevices(); - if ((deviceIndex >= 0) && (deviceIndex < devices.length)) { - displayDevice = devices[deviceIndex]; - } else { - System.err.println("Display " + value + " does not exist, " + - "using the default display instead."); - } - - } else if (param.equals(ARGS_BGCOLOR)) { - if (value.charAt(0) == '#') value = value.substring(1); - backgroundColor = new Color(Integer.parseInt(value, 16)); - - } else if (param.equals(ARGS_STOP_COLOR)) { - if (value.charAt(0) == '#') value = value.substring(1); - stopColor = new Color(Integer.parseInt(value, 16)); - - } else if (param.equals(ARGS_SKETCH_FOLDER)) { - folder = value; - - } else if (param.equals(ARGS_LOCATION)) { - location = parseInt(split(value, ',')); - } - - } else { - if (args[argIndex].equals(ARGS_PRESENT)) { - present = true; - - } else if (args[argIndex].equals(ARGS_EXCLUSIVE)) { - exclusive = true; - - } else if (args[argIndex].equals(ARGS_HIDE_STOP)) { - hideStop = true; - - } else if (args[argIndex].equals(ARGS_EXTERNAL)) { - external = true; - - } else { - name = args[argIndex]; - break; - } - } - argIndex++; - } - - // Set this property before getting into any GUI init code - //System.setProperty("com.apple.mrj.application.apple.menu.about.name", name); - // This )*)(*@#$ Apple crap don't work no matter where you put it - // (static method of the class, at the top of main, wherever) - - if (displayDevice == null) { - GraphicsEnvironment environment = - GraphicsEnvironment.getLocalGraphicsEnvironment(); - displayDevice = environment.getDefaultScreenDevice(); - } - - Frame frame = new Frame(displayDevice.getDefaultConfiguration()); - /* - Frame frame = null; - if (displayDevice != null) { - frame = new Frame(displayDevice.getDefaultConfiguration()); - } else { - frame = new Frame(); - } - */ - //Dimension screen = Toolkit.getDefaultToolkit().getScreenSize(); - - // remove the grow box by default - // users who want it back can call frame.setResizable(true) - frame.setResizable(false); - - // Set the trimmings around the image - Image image = Toolkit.getDefaultToolkit().createImage(ICON_IMAGE); - frame.setIconImage(image); - frame.setTitle(name); - - final PApplet applet; - try { - Class c = Thread.currentThread().getContextClassLoader().loadClass(name); - applet = (PApplet) c.newInstance(); - } catch (Exception e) { - throw new RuntimeException(e); - } - - // these are needed before init/start - applet.frame = frame; - applet.sketchPath = folder; - applet.args = PApplet.subset(args, 1); - applet.external = external; - - // Need to save the window bounds at full screen, - // because pack() will cause the bounds to go to zero. - // http://dev.processing.org/bugs/show_bug.cgi?id=923 - Rectangle fullScreenRect = null; - - // For 0149, moving this code (up to the pack() method) before init(). - // For OpenGL (and perhaps other renderers in the future), a peer is - // needed before a GLDrawable can be created. So pack() needs to be - // called on the Frame before applet.init(), which itself calls size(), - // and launches the Thread that will kick off setup(). - // http://dev.processing.org/bugs/show_bug.cgi?id=891 - // http://dev.processing.org/bugs/show_bug.cgi?id=908 - if (present) { - frame.setUndecorated(true); - frame.setBackground(backgroundColor); - if (exclusive) { - displayDevice.setFullScreenWindow(frame); - frame.setExtendedState(java.awt.Frame.MAXIMIZED_BOTH); - fullScreenRect = frame.getBounds(); - } else { - DisplayMode mode = displayDevice.getDisplayMode(); - fullScreenRect = new Rectangle(0, 0, mode.getWidth(), mode.getHeight()); - frame.setBounds(fullScreenRect); - frame.setVisible(true); - } - } - frame.setLayout(null); - frame.add(applet); - if (present) { - frame.invalidate(); - } else { - frame.pack(); - } - // insufficient, places the 100x100 sketches offset strangely - //frame.validate(); - - applet.init(); - - // Wait until the applet has figured out its width. - // In a static mode app, this will be after setup() has completed, - // and the empty draw() has set "finished" to true. - // TODO make sure this won't hang if the applet has an exception. - while (applet.defaultSize && !applet.finished) { - //System.out.println("default size"); - try { - Thread.sleep(5); - - } catch (InterruptedException e) { - //System.out.println("interrupt"); - } - } - //println("not default size " + applet.width + " " + applet.height); - //println(" (g width/height is " + applet.g.width + "x" + applet.g.height + ")"); - - if (present) { - // After the pack(), the screen bounds are gonna be 0s - frame.setBounds(fullScreenRect); - applet.setBounds((fullScreenRect.width - applet.width) / 2, - (fullScreenRect.height - applet.height) / 2, - applet.width, applet.height); - - if (!hideStop) { - Label label = new Label("stop"); - label.setForeground(stopColor); - label.addMouseListener(new MouseAdapter() { - public void mousePressed(MouseEvent e) { - System.exit(0); - } - }); - frame.add(label); - - Dimension labelSize = label.getPreferredSize(); - // sometimes shows up truncated on mac - //System.out.println("label width is " + labelSize.width); - labelSize = new Dimension(100, labelSize.height); - label.setSize(labelSize); - label.setLocation(20, fullScreenRect.height - labelSize.height - 20); - } - - // not always running externally when in present mode - if (external) { - applet.setupExternalMessages(); - } - - } else { // if not presenting - // can't do pack earlier cuz present mode don't like it - // (can't go full screen with a frame after calling pack) - // frame.pack(); // get insets. get more. - Insets insets = frame.getInsets(); - - int windowW = Math.max(applet.width, MIN_WINDOW_WIDTH) + - insets.left + insets.right; - int windowH = Math.max(applet.height, MIN_WINDOW_HEIGHT) + - insets.top + insets.bottom; - - frame.setSize(windowW, windowH); - - if (location != null) { - // a specific location was received from PdeRuntime - // (applet has been run more than once, user placed window) - frame.setLocation(location[0], location[1]); - - } else if (external) { - int locationX = editorLocation[0] - 20; - int locationY = editorLocation[1]; - - if (locationX - windowW > 10) { - // if it fits to the left of the window - frame.setLocation(locationX - windowW, locationY); - - } else { // doesn't fit - // if it fits inside the editor window, - // offset slightly from upper lefthand corner - // so that it's plunked inside the text area - locationX = editorLocation[0] + 66; - locationY = editorLocation[1] + 66; - - if ((locationX + windowW > applet.screen.width - 33) || - (locationY + windowH > applet.screen.height - 33)) { - // otherwise center on screen - locationX = (applet.screen.width - windowW) / 2; - locationY = (applet.screen.height - windowH) / 2; - } - frame.setLocation(locationX, locationY); - } - } else { // just center on screen - frame.setLocation((applet.screen.width - applet.width) / 2, - (applet.screen.height - applet.height) / 2); - } - - if (backgroundColor == Color.black) { //BLACK) { - // this means no bg color unless specified - backgroundColor = SystemColor.control; - } - frame.setBackground(backgroundColor); - - int usableWindowH = windowH - insets.top - insets.bottom; - applet.setBounds((windowW - applet.width)/2, - insets.top + (usableWindowH - applet.height)/2, - applet.width, applet.height); - - if (external) { - applet.setupExternalMessages(); - - } else { // !external - frame.addWindowListener(new WindowAdapter() { - public void windowClosing(WindowEvent e) { - System.exit(0); - } - }); - } - - // handle frame resizing events - applet.setupFrameResizeListener(); - - // all set for rockin - if (applet.displayable()) { - frame.setVisible(true); - } - } - - applet.requestFocus(); // ask for keydowns - //System.out.println("exiting main()"); - } - - - ////////////////////////////////////////////////////////////// - - - /** - * Begin recording to a new renderer of the specified type, using the width - * and height of the main drawing surface. - */ - public PGraphics beginRecord(String renderer, String filename) { - filename = insertFrame(filename); - PGraphics rec = createGraphics(width, height, renderer, filename); - beginRecord(rec); - return rec; - } - - - /** - * Begin recording (echoing) commands to the specified PGraphics object. - */ - public void beginRecord(PGraphics recorder) { - this.recorder = recorder; - recorder.beginDraw(); - } - - - public void endRecord() { - if (recorder != null) { - recorder.endDraw(); - recorder.dispose(); - recorder = null; - } - } - - - /** - * Begin recording raw shape data to a renderer of the specified type, - * using the width and height of the main drawing surface. - * - * If hashmarks (###) are found in the filename, they'll be replaced - * by the current frame number (frameCount). - */ - public PGraphics beginRaw(String renderer, String filename) { - filename = insertFrame(filename); - PGraphics rec = createGraphics(width, height, renderer, filename); - g.beginRaw(rec); - return rec; - } - - - /** - * Begin recording raw shape data to the specified renderer. - * - * This simply echoes to g.beginRaw(), but since is placed here (rather than - * generated by preproc.pl) for clarity and so that it doesn't echo the - * command should beginRecord() be in use. - */ - public void beginRaw(PGraphics rawGraphics) { - g.beginRaw(rawGraphics); - } - - - /** - * Stop recording raw shape data to the specified renderer. - * - * This simply echoes to g.beginRaw(), but since is placed here (rather than - * generated by preproc.pl) for clarity and so that it doesn't echo the - * command should beginRecord() be in use. - */ - public void endRaw() { - g.endRaw(); - } - - - ////////////////////////////////////////////////////////////// - - - /** - * Loads the pixel data for the display window into the pixels[] array. This function must always be called before reading from or writing to pixels[]. - *

Certain renderers may or may not seem to require loadPixels() or updatePixels(). However, the rule is that any time you want to manipulate the pixels[] array, you must first call loadPixels(), and after changes have been made, call updatePixels(). Even if the renderer may not seem to use this function in the current Processing release, this will always be subject to change. - * =advanced - * Override the g.pixels[] function to set the pixels[] array - * that's part of the PApplet object. Allows the use of - * pixels[] in the code, rather than g.pixels[]. - * - * @webref image:pixels - * @see processing.core.PApplet#pixels - * @see processing.core.PApplet#updatePixels() - */ - public void loadPixels() { - g.loadPixels(); - pixels = g.pixels; - } - - /** - * Updates the display window with the data in the pixels[] array. Use in conjunction with loadPixels(). If you're only reading pixels from the array, there's no need to call updatePixels() unless there are changes. - *

Certain renderers may or may not seem to require loadPixels() or updatePixels(). However, the rule is that any time you want to manipulate the pixels[] array, you must first call loadPixels(), and after changes have been made, call updatePixels(). Even if the renderer may not seem to use this function in the current Processing release, this will always be subject to change. - *

Currently, none of the renderers use the additional parameters to updatePixels(), however this may be implemented in the future. - * - * @webref image:pixels - * - * @see processing.core.PApplet#loadPixels() - * @see processing.core.PApplet#updatePixels() - * - */ - public void updatePixels() { - g.updatePixels(); - } - - - public void updatePixels(int x1, int y1, int x2, int y2) { - g.updatePixels(x1, y1, x2, y2); - } - - - ////////////////////////////////////////////////////////////// - - // EVERYTHING BELOW THIS LINE IS AUTOMATICALLY GENERATED. NO TOUCH! - // This includes all of the comments, which are automatically pulled - // from their respective functions in PGraphics or PImage. - - // public functions for processing.core - - - public void flush() { - if (recorder != null) recorder.flush(); - g.flush(); - } - - - /** - * Enable a hint option. - *

- * For the most part, hints are temporary api quirks, - * for which a proper api hasn't been properly worked out. - * for instance SMOOTH_IMAGES existed because smooth() - * wasn't yet implemented, but it will soon go away. - *

- * They also exist for obscure features in the graphics - * engine, like enabling/disabling single pixel lines - * that ignore the zbuffer, the way they do in alphabot. - *

- * Current hint options: - *

    - *
  • DISABLE_DEPTH_TEST - - * turns off the z-buffer in the P3D or OPENGL renderers. - *
- */ - public void hint(int which) { - if (recorder != null) recorder.hint(which); - g.hint(which); - } - - - /** - * Start a new shape of type POLYGON - */ - public void beginShape() { - if (recorder != null) recorder.beginShape(); - g.beginShape(); - } - - - /** - * Start a new shape. - *

- * Differences between beginShape() and line() and point() methods. - *

- * beginShape() is intended to be more flexible at the expense of being - * a little more complicated to use. it handles more complicated shapes - * that can consist of many connected lines (so you get joins) or lines - * mixed with curves. - *

- * The line() and point() command are for the far more common cases - * (particularly for our audience) that simply need to draw a line - * or a point on the screen. - *

- * From the code side of things, line() may or may not call beginShape() - * to do the drawing. In the beta code, they do, but in the alpha code, - * they did not. they might be implemented one way or the other depending - * on tradeoffs of runtime efficiency vs. implementation efficiency &mdash - * meaning the speed that things run at vs. the speed it takes me to write - * the code and maintain it. for beta, the latter is most important so - * that's how things are implemented. - */ - public void beginShape(int kind) { - if (recorder != null) recorder.beginShape(kind); - g.beginShape(kind); - } - - - /** - * Sets whether the upcoming vertex is part of an edge. - * Equivalent to glEdgeFlag(), for people familiar with OpenGL. - */ - public void edge(boolean edge) { - if (recorder != null) recorder.edge(edge); - g.edge(edge); - } - - - /** - * Sets the current normal vector. Only applies with 3D rendering - * and inside a beginShape/endShape block. - *

- * This is for drawing three dimensional shapes and surfaces, - * allowing you to specify a vector perpendicular to the surface - * of the shape, which determines how lighting affects it. - *

- * For the most part, PGraphics3D will attempt to automatically - * assign normals to shapes, but since that's imperfect, - * this is a better option when you want more control. - *

- * For people familiar with OpenGL, this function is basically - * identical to glNormal3f(). - */ - public void normal(float nx, float ny, float nz) { - if (recorder != null) recorder.normal(nx, ny, nz); - g.normal(nx, ny, nz); - } - - - /** - * Set texture mode to either to use coordinates based on the IMAGE - * (more intuitive for new users) or NORMALIZED (better for advanced chaps) - */ - public void textureMode(int mode) { - if (recorder != null) recorder.textureMode(mode); - g.textureMode(mode); - } - - - /** - * Set texture image for current shape. - * Needs to be called between @see beginShape and @see endShape - * - * @param image reference to a PImage object - */ - public void texture(PImage image) { - if (recorder != null) recorder.texture(image); - g.texture(image); - } - - - public void vertex(float x, float y) { - if (recorder != null) recorder.vertex(x, y); - g.vertex(x, y); - } - - - public void vertex(float x, float y, float z) { - if (recorder != null) recorder.vertex(x, y, z); - g.vertex(x, y, z); - } - - - /** - * Used by renderer subclasses or PShape to efficiently pass in already - * formatted vertex information. - * @param v vertex parameters, as a float array of length VERTEX_FIELD_COUNT - */ - public void vertex(float[] v) { - if (recorder != null) recorder.vertex(v); - g.vertex(v); - } - - - public void vertex(float x, float y, float u, float v) { - if (recorder != null) recorder.vertex(x, y, u, v); - g.vertex(x, y, u, v); - } - - - public void vertex(float x, float y, float z, float u, float v) { - if (recorder != null) recorder.vertex(x, y, z, u, v); - g.vertex(x, y, z, u, v); - } - - - /** This feature is in testing, do not use or rely upon its implementation */ - public void breakShape() { - if (recorder != null) recorder.breakShape(); - g.breakShape(); - } - - - public void endShape() { - if (recorder != null) recorder.endShape(); - g.endShape(); - } - - - public void endShape(int mode) { - if (recorder != null) recorder.endShape(mode); - g.endShape(mode); - } - - - public void bezierVertex(float x2, float y2, - float x3, float y3, - float x4, float y4) { - if (recorder != null) recorder.bezierVertex(x2, y2, x3, y3, x4, y4); - g.bezierVertex(x2, y2, x3, y3, x4, y4); - } - - - public void bezierVertex(float x2, float y2, float z2, - float x3, float y3, float z3, - float x4, float y4, float z4) { - if (recorder != null) recorder.bezierVertex(x2, y2, z2, x3, y3, z3, x4, y4, z4); - g.bezierVertex(x2, y2, z2, x3, y3, z3, x4, y4, z4); - } - - - public void curveVertex(float x, float y) { - if (recorder != null) recorder.curveVertex(x, y); - g.curveVertex(x, y); - } - - - public void curveVertex(float x, float y, float z) { - if (recorder != null) recorder.curveVertex(x, y, z); - g.curveVertex(x, y, z); - } - - - public void point(float x, float y) { - if (recorder != null) recorder.point(x, y); - g.point(x, y); - } - - - public void point(float x, float y, float z) { - if (recorder != null) recorder.point(x, y, z); - g.point(x, y, z); - } - - - public void line(float x1, float y1, float x2, float y2) { - if (recorder != null) recorder.line(x1, y1, x2, y2); - g.line(x1, y1, x2, y2); - } - - - public void line(float x1, float y1, float z1, - float x2, float y2, float z2) { - if (recorder != null) recorder.line(x1, y1, z1, x2, y2, z2); - g.line(x1, y1, z1, x2, y2, z2); - } - - - public void triangle(float x1, float y1, float x2, float y2, - float x3, float y3) { - if (recorder != null) recorder.triangle(x1, y1, x2, y2, x3, y3); - g.triangle(x1, y1, x2, y2, x3, y3); - } - - - public void quad(float x1, float y1, float x2, float y2, - float x3, float y3, float x4, float y4) { - if (recorder != null) recorder.quad(x1, y1, x2, y2, x3, y3, x4, y4); - g.quad(x1, y1, x2, y2, x3, y3, x4, y4); - } - - - public void rectMode(int mode) { - if (recorder != null) recorder.rectMode(mode); - g.rectMode(mode); - } - - - public void rect(float a, float b, float c, float d) { - if (recorder != null) recorder.rect(a, b, c, d); - g.rect(a, b, c, d); - } - - - public void ellipseMode(int mode) { - if (recorder != null) recorder.ellipseMode(mode); - g.ellipseMode(mode); - } - - - public void ellipse(float a, float b, float c, float d) { - if (recorder != null) recorder.ellipse(a, b, c, d); - g.ellipse(a, b, c, d); - } - - - /** - * Identical parameters and placement to ellipse, - * but draws only an arc of that ellipse. - *

- * start and stop are always radians because angleMode() was goofy. - * ellipseMode() sets the placement. - *

- * also tries to be smart about start < stop. - */ - public void arc(float a, float b, float c, float d, - float start, float stop) { - if (recorder != null) recorder.arc(a, b, c, d, start, stop); - g.arc(a, b, c, d, start, stop); - } - - - public void box(float size) { - if (recorder != null) recorder.box(size); - g.box(size); - } - - - public void box(float w, float h, float d) { - if (recorder != null) recorder.box(w, h, d); - g.box(w, h, d); - } - - - public void sphereDetail(int res) { - if (recorder != null) recorder.sphereDetail(res); - g.sphereDetail(res); - } - - - /** - * Set the detail level for approximating a sphere. The ures and vres params - * control the horizontal and vertical resolution. - * - * Code for sphereDetail() submitted by toxi [031031]. - * Code for enhanced u/v version from davbol [080801]. - */ - public void sphereDetail(int ures, int vres) { - if (recorder != null) recorder.sphereDetail(ures, vres); - g.sphereDetail(ures, vres); - } - - - /** - * Draw a sphere with radius r centered at coordinate 0, 0, 0. - *

- * Implementation notes: - *

- * cache all the points of the sphere in a static array - * top and bottom are just a bunch of triangles that land - * in the center point - *

- * sphere is a series of concentric circles who radii vary - * along the shape, based on, er.. cos or something - *

-   * [toxi 031031] new sphere code. removed all multiplies with
-   * radius, as scale() will take care of that anyway
-   *
-   * [toxi 031223] updated sphere code (removed modulos)
-   * and introduced sphereAt(x,y,z,r)
-   * to avoid additional translate()'s on the user/sketch side
-   *
-   * [davbol 080801] now using separate sphereDetailU/V
-   * 
- */ - public void sphere(float r) { - if (recorder != null) recorder.sphere(r); - g.sphere(r); - } - - - /** - * Evalutes quadratic bezier at point t for points a, b, c, d. - * t varies between 0 and 1, and a and d are the on curve points, - * b and c are the control points. this can be done once with the - * x coordinates and a second time with the y coordinates to get - * the location of a bezier curve at t. - *

- * For instance, to convert the following example:

-   * stroke(255, 102, 0);
-   * line(85, 20, 10, 10);
-   * line(90, 90, 15, 80);
-   * stroke(0, 0, 0);
-   * bezier(85, 20, 10, 10, 90, 90, 15, 80);
-   *
-   * // draw it in gray, using 10 steps instead of the default 20
-   * // this is a slower way to do it, but useful if you need
-   * // to do things with the coordinates at each step
-   * stroke(128);
-   * beginShape(LINE_STRIP);
-   * for (int i = 0; i <= 10; i++) {
-   *   float t = i / 10.0f;
-   *   float x = bezierPoint(85, 10, 90, 15, t);
-   *   float y = bezierPoint(20, 10, 90, 80, t);
-   *   vertex(x, y);
-   * }
-   * endShape();
- */ - public float bezierPoint(float a, float b, float c, float d, float t) { - return g.bezierPoint(a, b, c, d, t); - } - - - /** - * Provide the tangent at the given point on the bezier curve. - * Fix from davbol for 0136. - */ - public float bezierTangent(float a, float b, float c, float d, float t) { - return g.bezierTangent(a, b, c, d, t); - } - - - public void bezierDetail(int detail) { - if (recorder != null) recorder.bezierDetail(detail); - g.bezierDetail(detail); - } - - - /** - * Draw a cubic bezier curve. The first and last points are - * the on-curve points. The middle two are the 'control' points, - * or 'handles' in an application like Illustrator. - *

- * Identical to typing: - *

beginShape();
-   * vertex(x1, y1);
-   * bezierVertex(x2, y2, x3, y3, x4, y4);
-   * endShape();
-   * 
- * In Postscript-speak, this would be: - *
moveto(x1, y1);
-   * curveto(x2, y2, x3, y3, x4, y4);
- * If you were to try and continue that curve like so: - *
curveto(x5, y5, x6, y6, x7, y7);
- * This would be done in processing by adding these statements: - *
bezierVertex(x5, y5, x6, y6, x7, y7)
-   * 
- * To draw a quadratic (instead of cubic) curve, - * use the control point twice by doubling it: - *
bezier(x1, y1, cx, cy, cx, cy, x2, y2);
- */ - public void bezier(float x1, float y1, - float x2, float y2, - float x3, float y3, - float x4, float y4) { - if (recorder != null) recorder.bezier(x1, y1, x2, y2, x3, y3, x4, y4); - g.bezier(x1, y1, x2, y2, x3, y3, x4, y4); - } - - - public void bezier(float x1, float y1, float z1, - float x2, float y2, float z2, - float x3, float y3, float z3, - float x4, float y4, float z4) { - if (recorder != null) recorder.bezier(x1, y1, z1, x2, y2, z2, x3, y3, z3, x4, y4, z4); - g.bezier(x1, y1, z1, x2, y2, z2, x3, y3, z3, x4, y4, z4); - } - - - /** - * Get a location along a catmull-rom curve segment. - * - * @param t Value between zero and one for how far along the segment - */ - public float curvePoint(float a, float b, float c, float d, float t) { - return g.curvePoint(a, b, c, d, t); - } - - - /** - * Calculate the tangent at a t value (0..1) on a Catmull-Rom curve. - * Code thanks to Dave Bollinger (Bug #715) - */ - public float curveTangent(float a, float b, float c, float d, float t) { - return g.curveTangent(a, b, c, d, t); - } - - - public void curveDetail(int detail) { - if (recorder != null) recorder.curveDetail(detail); - g.curveDetail(detail); - } - - - public void curveTightness(float tightness) { - if (recorder != null) recorder.curveTightness(tightness); - g.curveTightness(tightness); - } - - - /** - * Draws a segment of Catmull-Rom curve. - *

- * As of 0070, this function no longer doubles the first and - * last points. The curves are a bit more boring, but it's more - * mathematically correct, and properly mirrored in curvePoint(). - *

- * Identical to typing out:

-   * beginShape();
-   * curveVertex(x1, y1);
-   * curveVertex(x2, y2);
-   * curveVertex(x3, y3);
-   * curveVertex(x4, y4);
-   * endShape();
-   * 
- */ - public void curve(float x1, float y1, - float x2, float y2, - float x3, float y3, - float x4, float y4) { - if (recorder != null) recorder.curve(x1, y1, x2, y2, x3, y3, x4, y4); - g.curve(x1, y1, x2, y2, x3, y3, x4, y4); - } - - - public void curve(float x1, float y1, float z1, - float x2, float y2, float z2, - float x3, float y3, float z3, - float x4, float y4, float z4) { - if (recorder != null) recorder.curve(x1, y1, z1, x2, y2, z2, x3, y3, z3, x4, y4, z4); - g.curve(x1, y1, z1, x2, y2, z2, x3, y3, z3, x4, y4, z4); - } - - - /** - * If true in PImage, use bilinear interpolation for copy() - * operations. When inherited by PGraphics, also controls shapes. - */ - public void smooth() { - if (recorder != null) recorder.smooth(); - g.smooth(); - } - - - /** - * Disable smoothing. See smooth(). - */ - public void noSmooth() { - if (recorder != null) recorder.noSmooth(); - g.noSmooth(); - } - - - /** - * The mode can only be set to CORNERS, CORNER, and CENTER. - *

- * Support for CENTER was added in release 0146. - */ - public void imageMode(int mode) { - if (recorder != null) recorder.imageMode(mode); - g.imageMode(mode); - } - - - public void image(PImage image, float x, float y) { - if (recorder != null) recorder.image(image, x, y); - g.image(image, x, y); - } - - - public void image(PImage image, float x, float y, float c, float d) { - if (recorder != null) recorder.image(image, x, y, c, d); - g.image(image, x, y, c, d); - } - - - /** - * Draw an image(), also specifying u/v coordinates. - * In this method, the u, v coordinates are always based on image space - * location, regardless of the current textureMode(). - */ - public void image(PImage image, - float a, float b, float c, float d, - int u1, int v1, int u2, int v2) { - if (recorder != null) recorder.image(image, a, b, c, d, u1, v1, u2, v2); - g.image(image, a, b, c, d, u1, v1, u2, v2); - } - - - /** - * Set the orientation for the shape() command (like imageMode() or rectMode()). - * @param mode Either CORNER, CORNERS, or CENTER. - */ - public void shapeMode(int mode) { - if (recorder != null) recorder.shapeMode(mode); - g.shapeMode(mode); - } - - - public void shape(PShape shape) { - if (recorder != null) recorder.shape(shape); - g.shape(shape); - } - - - /** - * Convenience method to draw at a particular location. - */ - public void shape(PShape shape, float x, float y) { - if (recorder != null) recorder.shape(shape, x, y); - g.shape(shape, x, y); - } - - - public void shape(PShape shape, float x, float y, float c, float d) { - if (recorder != null) recorder.shape(shape, x, y, c, d); - g.shape(shape, x, y, c, d); - } - - - /** - * Sets the alignment of the text to one of LEFT, CENTER, or RIGHT. - * This will also reset the vertical text alignment to BASELINE. - */ - public void textAlign(int align) { - if (recorder != null) recorder.textAlign(align); - g.textAlign(align); - } - - - /** - * Sets the horizontal and vertical alignment of the text. The horizontal - * alignment can be one of LEFT, CENTER, or RIGHT. The vertical alignment - * can be TOP, BOTTOM, CENTER, or the BASELINE (the default). - */ - public void textAlign(int alignX, int alignY) { - if (recorder != null) recorder.textAlign(alignX, alignY); - g.textAlign(alignX, alignY); - } - - - /** - * Returns the ascent of the current font at the current size. - * This is a method, rather than a variable inside the PGraphics object - * because it requires calculation. - */ - public float textAscent() { - return g.textAscent(); - } - - - /** - * Returns the descent of the current font at the current size. - * This is a method, rather than a variable inside the PGraphics object - * because it requires calculation. - */ - public float textDescent() { - return g.textDescent(); - } - - - /** - * Sets the current font. The font's size will be the "natural" - * size of this font (the size that was set when using "Create Font"). - * The leading will also be reset. - */ - public void textFont(PFont which) { - if (recorder != null) recorder.textFont(which); - g.textFont(which); - } - - - /** - * Useful function to set the font and size at the same time. - */ - public void textFont(PFont which, float size) { - if (recorder != null) recorder.textFont(which, size); - g.textFont(which, size); - } - - - /** - * Set the text leading to a specific value. If using a custom - * value for the text leading, you'll have to call textLeading() - * again after any calls to textSize(). - */ - public void textLeading(float leading) { - if (recorder != null) recorder.textLeading(leading); - g.textLeading(leading); - } - - - /** - * Sets the text rendering/placement to be either SCREEN (direct - * to the screen, exact coordinates, only use the font's original size) - * or MODEL (the default, where text is manipulated by translate() and - * can have a textSize). The text size cannot be set when using - * textMode(SCREEN), because it uses the pixels directly from the font. - */ - public void textMode(int mode) { - if (recorder != null) recorder.textMode(mode); - g.textMode(mode); - } - - - /** - * Sets the text size, also resets the value for the leading. - */ - public void textSize(float size) { - if (recorder != null) recorder.textSize(size); - g.textSize(size); - } - - - public float textWidth(char c) { - return g.textWidth(c); - } - - - /** - * Return the width of a line of text. If the text has multiple - * lines, this returns the length of the longest line. - */ - public float textWidth(String str) { - return g.textWidth(str); - } - - - /** - * TODO not sure if this stays... - */ - public float textWidth(char[] chars, int start, int length) { - return g.textWidth(chars, start, length); - } - - - /** - * Write text where we just left off. - */ - public void text(char c) { - if (recorder != null) recorder.text(c); - g.text(c); - } - - - /** - * Draw a single character on screen. - * Extremely slow when used with textMode(SCREEN) and Java 2D, - * because loadPixels has to be called first and updatePixels last. - */ - public void text(char c, float x, float y) { - if (recorder != null) recorder.text(c, x, y); - g.text(c, x, y); - } - - - /** - * Draw a single character on screen (with a z coordinate) - */ - public void text(char c, float x, float y, float z) { - if (recorder != null) recorder.text(c, x, y, z); - g.text(c, x, y, z); - } - - - /** - * Write text where we just left off. - */ - public void text(String str) { - if (recorder != null) recorder.text(str); - g.text(str); - } - - - /** - * Draw a chunk of text. - * Newlines that are \n (Unix newline or linefeed char, ascii 10) - * are honored, but \r (carriage return, Windows and Mac OS) are - * ignored. - */ - public void text(String str, float x, float y) { - if (recorder != null) recorder.text(str, x, y); - g.text(str, x, y); - } - - - /** - * Method to draw text from an array of chars. This method will usually be - * more efficient than drawing from a String object, because the String will - * not be converted to a char array before drawing. - */ - public void text(char[] chars, int start, int stop, float x, float y) { - if (recorder != null) recorder.text(chars, start, stop, x, y); - g.text(chars, start, stop, x, y); - } - - - /** - * Same as above but with a z coordinate. - */ - public void text(String str, float x, float y, float z) { - if (recorder != null) recorder.text(str, x, y, z); - g.text(str, x, y, z); - } - - - public void text(char[] chars, int start, int stop, - float x, float y, float z) { - if (recorder != null) recorder.text(chars, start, stop, x, y, z); - g.text(chars, start, stop, x, y, z); - } - - - /** - * Draw text in a box that is constrained to a particular size. - * The current rectMode() determines what the coordinates mean - * (whether x1/y1/x2/y2 or x/y/w/h). - *

- * Note that the x,y coords of the start of the box - * will align with the *ascent* of the text, not the baseline, - * as is the case for the other text() functions. - *

- * Newlines that are \n (Unix newline or linefeed char, ascii 10) - * are honored, and \r (carriage return, Windows and Mac OS) are - * ignored. - */ - public void text(String str, float x1, float y1, float x2, float y2) { - if (recorder != null) recorder.text(str, x1, y1, x2, y2); - g.text(str, x1, y1, x2, y2); - } - - - public void text(String s, float x1, float y1, float x2, float y2, float z) { - if (recorder != null) recorder.text(s, x1, y1, x2, y2, z); - g.text(s, x1, y1, x2, y2, z); - } - - - public void text(int num, float x, float y) { - if (recorder != null) recorder.text(num, x, y); - g.text(num, x, y); - } - - - public void text(int num, float x, float y, float z) { - if (recorder != null) recorder.text(num, x, y, z); - g.text(num, x, y, z); - } - - - /** - * This does a basic number formatting, to avoid the - * generally ugly appearance of printing floats. - * Users who want more control should use their own nf() cmmand, - * or if they want the long, ugly version of float, - * use String.valueOf() to convert the float to a String first. - */ - public void text(float num, float x, float y) { - if (recorder != null) recorder.text(num, x, y); - g.text(num, x, y); - } - - - public void text(float num, float x, float y, float z) { - if (recorder != null) recorder.text(num, x, y, z); - g.text(num, x, y, z); - } - - - /** - * Push a copy of the current transformation matrix onto the stack. - */ - public void pushMatrix() { - if (recorder != null) recorder.pushMatrix(); - g.pushMatrix(); - } - - - /** - * Replace the current transformation matrix with the top of the stack. - */ - public void popMatrix() { - if (recorder != null) recorder.popMatrix(); - g.popMatrix(); - } - - - /** - * Translate in X and Y. - */ - public void translate(float tx, float ty) { - if (recorder != null) recorder.translate(tx, ty); - g.translate(tx, ty); - } - - - /** - * Translate in X, Y, and Z. - */ - public void translate(float tx, float ty, float tz) { - if (recorder != null) recorder.translate(tx, ty, tz); - g.translate(tx, ty, tz); - } - - - /** - * Two dimensional rotation. - * - * Same as rotateZ (this is identical to a 3D rotation along the z-axis) - * but included for clarity. It'd be weird for people drawing 2D graphics - * to be using rotateZ. And they might kick our a-- for the confusion. - * - * Additional background. - */ - public void rotate(float angle) { - if (recorder != null) recorder.rotate(angle); - g.rotate(angle); - } - - - /** - * Rotate around the X axis. - */ - public void rotateX(float angle) { - if (recorder != null) recorder.rotateX(angle); - g.rotateX(angle); - } - - - /** - * Rotate around the Y axis. - */ - public void rotateY(float angle) { - if (recorder != null) recorder.rotateY(angle); - g.rotateY(angle); - } - - - /** - * Rotate around the Z axis. - * - * The functions rotate() and rotateZ() are identical, it's just that it make - * sense to have rotate() and then rotateX() and rotateY() when using 3D; - * nor does it make sense to use a function called rotateZ() if you're only - * doing things in 2D. so we just decided to have them both be the same. - */ - public void rotateZ(float angle) { - if (recorder != null) recorder.rotateZ(angle); - g.rotateZ(angle); - } - - - /** - * Rotate about a vector in space. Same as the glRotatef() function. - */ - public void rotate(float angle, float vx, float vy, float vz) { - if (recorder != null) recorder.rotate(angle, vx, vy, vz); - g.rotate(angle, vx, vy, vz); - } - - - /** - * Scale in all dimensions. - */ - public void scale(float s) { - if (recorder != null) recorder.scale(s); - g.scale(s); - } - - - /** - * Scale in X and Y. Equivalent to scale(sx, sy, 1). - * - * Not recommended for use in 3D, because the z-dimension is just - * scaled by 1, since there's no way to know what else to scale it by. - */ - public void scale(float sx, float sy) { - if (recorder != null) recorder.scale(sx, sy); - g.scale(sx, sy); - } - - - /** - * Scale in X, Y, and Z. - */ - public void scale(float x, float y, float z) { - if (recorder != null) recorder.scale(x, y, z); - g.scale(x, y, z); - } - - - /** - * Set the current transformation matrix to identity. - */ - public void resetMatrix() { - if (recorder != null) recorder.resetMatrix(); - g.resetMatrix(); - } - - - public void applyMatrix(PMatrix source) { - if (recorder != null) recorder.applyMatrix(source); - g.applyMatrix(source); - } - - - public void applyMatrix(PMatrix2D source) { - if (recorder != null) recorder.applyMatrix(source); - g.applyMatrix(source); - } - - - /** - * Apply a 3x2 affine transformation matrix. - */ - public void applyMatrix(float n00, float n01, float n02, - float n10, float n11, float n12) { - if (recorder != null) recorder.applyMatrix(n00, n01, n02, n10, n11, n12); - g.applyMatrix(n00, n01, n02, n10, n11, n12); - } - - - public void applyMatrix(PMatrix3D source) { - if (recorder != null) recorder.applyMatrix(source); - g.applyMatrix(source); - } - - - /** - * Apply a 4x4 transformation matrix. - */ - public void applyMatrix(float n00, float n01, float n02, float n03, - float n10, float n11, float n12, float n13, - float n20, float n21, float n22, float n23, - float n30, float n31, float n32, float n33) { - if (recorder != null) recorder.applyMatrix(n00, n01, n02, n03, n10, n11, n12, n13, n20, n21, n22, n23, n30, n31, n32, n33); - g.applyMatrix(n00, n01, n02, n03, n10, n11, n12, n13, n20, n21, n22, n23, n30, n31, n32, n33); - } - - - public PMatrix getMatrix() { - return g.getMatrix(); - } - - - /** - * Copy the current transformation matrix into the specified target. - * Pass in null to create a new matrix. - */ - public PMatrix2D getMatrix(PMatrix2D target) { - return g.getMatrix(target); - } - - - /** - * Copy the current transformation matrix into the specified target. - * Pass in null to create a new matrix. - */ - public PMatrix3D getMatrix(PMatrix3D target) { - return g.getMatrix(target); - } - - - /** - * Set the current transformation matrix to the contents of another. - */ - public void setMatrix(PMatrix source) { - if (recorder != null) recorder.setMatrix(source); - g.setMatrix(source); - } - - - /** - * Set the current transformation to the contents of the specified source. - */ - public void setMatrix(PMatrix2D source) { - if (recorder != null) recorder.setMatrix(source); - g.setMatrix(source); - } - - - /** - * Set the current transformation to the contents of the specified source. - */ - public void setMatrix(PMatrix3D source) { - if (recorder != null) recorder.setMatrix(source); - g.setMatrix(source); - } - - - /** - * Print the current model (or "transformation") matrix. - */ - public void printMatrix() { - if (recorder != null) recorder.printMatrix(); - g.printMatrix(); - } - - - public void beginCamera() { - if (recorder != null) recorder.beginCamera(); - g.beginCamera(); - } - - - public void endCamera() { - if (recorder != null) recorder.endCamera(); - g.endCamera(); - } - - - public void camera() { - if (recorder != null) recorder.camera(); - g.camera(); - } - - - public void camera(float eyeX, float eyeY, float eyeZ, - float centerX, float centerY, float centerZ, - float upX, float upY, float upZ) { - if (recorder != null) recorder.camera(eyeX, eyeY, eyeZ, centerX, centerY, centerZ, upX, upY, upZ); - g.camera(eyeX, eyeY, eyeZ, centerX, centerY, centerZ, upX, upY, upZ); - } - - - public void printCamera() { - if (recorder != null) recorder.printCamera(); - g.printCamera(); - } - - - public void ortho() { - if (recorder != null) recorder.ortho(); - g.ortho(); - } - - - public void ortho(float left, float right, - float bottom, float top, - float near, float far) { - if (recorder != null) recorder.ortho(left, right, bottom, top, near, far); - g.ortho(left, right, bottom, top, near, far); - } - - - public void perspective() { - if (recorder != null) recorder.perspective(); - g.perspective(); - } - - - public void perspective(float fovy, float aspect, float zNear, float zFar) { - if (recorder != null) recorder.perspective(fovy, aspect, zNear, zFar); - g.perspective(fovy, aspect, zNear, zFar); - } - - - public void frustum(float left, float right, - float bottom, float top, - float near, float far) { - if (recorder != null) recorder.frustum(left, right, bottom, top, near, far); - g.frustum(left, right, bottom, top, near, far); - } - - - public void printProjection() { - if (recorder != null) recorder.printProjection(); - g.printProjection(); - } - - - /** - * Given an x and y coordinate, returns the x position of where - * that point would be placed on screen, once affected by translate(), - * scale(), or any other transformations. - */ - public float screenX(float x, float y) { - return g.screenX(x, y); - } - - - /** - * Given an x and y coordinate, returns the y position of where - * that point would be placed on screen, once affected by translate(), - * scale(), or any other transformations. - */ - public float screenY(float x, float y) { - return g.screenY(x, y); - } - - - /** - * Maps a three dimensional point to its placement on-screen. - *

- * Given an (x, y, z) coordinate, returns the x position of where - * that point would be placed on screen, once affected by translate(), - * scale(), or any other transformations. - */ - public float screenX(float x, float y, float z) { - return g.screenX(x, y, z); - } - - - /** - * Maps a three dimensional point to its placement on-screen. - *

- * Given an (x, y, z) coordinate, returns the y position of where - * that point would be placed on screen, once affected by translate(), - * scale(), or any other transformations. - */ - public float screenY(float x, float y, float z) { - return g.screenY(x, y, z); - } - - - /** - * Maps a three dimensional point to its placement on-screen. - *

- * Given an (x, y, z) coordinate, returns its z value. - * This value can be used to determine if an (x, y, z) coordinate - * is in front or in back of another (x, y, z) coordinate. - * The units are based on how the zbuffer is set up, and don't - * relate to anything "real". They're only useful for in - * comparison to another value obtained from screenZ(), - * or directly out of the zbuffer[]. - */ - public float screenZ(float x, float y, float z) { - return g.screenZ(x, y, z); - } - - - /** - * Returns the model space x value for an x, y, z coordinate. - *

- * This will give you a coordinate after it has been transformed - * by translate(), rotate(), and camera(), but not yet transformed - * by the projection matrix. For instance, his can be useful for - * figuring out how points in 3D space relate to the edge - * coordinates of a shape. - */ - public float modelX(float x, float y, float z) { - return g.modelX(x, y, z); - } - - - /** - * Returns the model space y value for an x, y, z coordinate. - */ - public float modelY(float x, float y, float z) { - return g.modelY(x, y, z); - } - - - /** - * Returns the model space z value for an x, y, z coordinate. - */ - public float modelZ(float x, float y, float z) { - return g.modelZ(x, y, z); - } - - - public void pushStyle() { - if (recorder != null) recorder.pushStyle(); - g.pushStyle(); - } - - - public void popStyle() { - if (recorder != null) recorder.popStyle(); - g.popStyle(); - } - - - public void style(PStyle s) { - if (recorder != null) recorder.style(s); - g.style(s); - } - - - public void strokeWeight(float weight) { - if (recorder != null) recorder.strokeWeight(weight); - g.strokeWeight(weight); - } - - - public void strokeJoin(int join) { - if (recorder != null) recorder.strokeJoin(join); - g.strokeJoin(join); - } - - - public void strokeCap(int cap) { - if (recorder != null) recorder.strokeCap(cap); - g.strokeCap(cap); - } - - - public void noStroke() { - if (recorder != null) recorder.noStroke(); - g.noStroke(); - } - - - /** - * Set the tint to either a grayscale or ARGB value. - * See notes attached to the fill() function. - */ - public void stroke(int rgb) { - if (recorder != null) recorder.stroke(rgb); - g.stroke(rgb); - } - - - public void stroke(int rgb, float alpha) { - if (recorder != null) recorder.stroke(rgb, alpha); - g.stroke(rgb, alpha); - } - - - public void stroke(float gray) { - if (recorder != null) recorder.stroke(gray); - g.stroke(gray); - } - - - public void stroke(float gray, float alpha) { - if (recorder != null) recorder.stroke(gray, alpha); - g.stroke(gray, alpha); - } - - - public void stroke(float x, float y, float z) { - if (recorder != null) recorder.stroke(x, y, z); - g.stroke(x, y, z); - } - - - public void stroke(float x, float y, float z, float a) { - if (recorder != null) recorder.stroke(x, y, z, a); - g.stroke(x, y, z, a); - } - - - public void noTint() { - if (recorder != null) recorder.noTint(); - g.noTint(); - } - - - /** - * Set the tint to either a grayscale or ARGB value. - */ - public void tint(int rgb) { - if (recorder != null) recorder.tint(rgb); - g.tint(rgb); - } - - - public void tint(int rgb, float alpha) { - if (recorder != null) recorder.tint(rgb, alpha); - g.tint(rgb, alpha); - } - - - public void tint(float gray) { - if (recorder != null) recorder.tint(gray); - g.tint(gray); - } - - - public void tint(float gray, float alpha) { - if (recorder != null) recorder.tint(gray, alpha); - g.tint(gray, alpha); - } - - - public void tint(float x, float y, float z) { - if (recorder != null) recorder.tint(x, y, z); - g.tint(x, y, z); - } - - - public void tint(float x, float y, float z, float a) { - if (recorder != null) recorder.tint(x, y, z, a); - g.tint(x, y, z, a); - } - - - public void noFill() { - if (recorder != null) recorder.noFill(); - g.noFill(); - } - - - /** - * Set the fill to either a grayscale value or an ARGB int. - */ - public void fill(int rgb) { - if (recorder != null) recorder.fill(rgb); - g.fill(rgb); - } - - - public void fill(int rgb, float alpha) { - if (recorder != null) recorder.fill(rgb, alpha); - g.fill(rgb, alpha); - } - - - public void fill(float gray) { - if (recorder != null) recorder.fill(gray); - g.fill(gray); - } - - - public void fill(float gray, float alpha) { - if (recorder != null) recorder.fill(gray, alpha); - g.fill(gray, alpha); - } - - - public void fill(float x, float y, float z) { - if (recorder != null) recorder.fill(x, y, z); - g.fill(x, y, z); - } - - - public void fill(float x, float y, float z, float a) { - if (recorder != null) recorder.fill(x, y, z, a); - g.fill(x, y, z, a); - } - - - public void ambient(int rgb) { - if (recorder != null) recorder.ambient(rgb); - g.ambient(rgb); - } - - - public void ambient(float gray) { - if (recorder != null) recorder.ambient(gray); - g.ambient(gray); - } - - - public void ambient(float x, float y, float z) { - if (recorder != null) recorder.ambient(x, y, z); - g.ambient(x, y, z); - } - - - public void specular(int rgb) { - if (recorder != null) recorder.specular(rgb); - g.specular(rgb); - } - - - public void specular(float gray) { - if (recorder != null) recorder.specular(gray); - g.specular(gray); - } - - - public void specular(float x, float y, float z) { - if (recorder != null) recorder.specular(x, y, z); - g.specular(x, y, z); - } - - - public void shininess(float shine) { - if (recorder != null) recorder.shininess(shine); - g.shininess(shine); - } - - - public void emissive(int rgb) { - if (recorder != null) recorder.emissive(rgb); - g.emissive(rgb); - } - - - public void emissive(float gray) { - if (recorder != null) recorder.emissive(gray); - g.emissive(gray); - } - - - public void emissive(float x, float y, float z) { - if (recorder != null) recorder.emissive(x, y, z); - g.emissive(x, y, z); - } - - - public void lights() { - if (recorder != null) recorder.lights(); - g.lights(); - } - - - public void noLights() { - if (recorder != null) recorder.noLights(); - g.noLights(); - } - - - public void ambientLight(float red, float green, float blue) { - if (recorder != null) recorder.ambientLight(red, green, blue); - g.ambientLight(red, green, blue); - } - - - public void ambientLight(float red, float green, float blue, - float x, float y, float z) { - if (recorder != null) recorder.ambientLight(red, green, blue, x, y, z); - g.ambientLight(red, green, blue, x, y, z); - } - - - public void directionalLight(float red, float green, float blue, - float nx, float ny, float nz) { - if (recorder != null) recorder.directionalLight(red, green, blue, nx, ny, nz); - g.directionalLight(red, green, blue, nx, ny, nz); - } - - - public void pointLight(float red, float green, float blue, - float x, float y, float z) { - if (recorder != null) recorder.pointLight(red, green, blue, x, y, z); - g.pointLight(red, green, blue, x, y, z); - } - - - public void spotLight(float red, float green, float blue, - float x, float y, float z, - float nx, float ny, float nz, - float angle, float concentration) { - if (recorder != null) recorder.spotLight(red, green, blue, x, y, z, nx, ny, nz, angle, concentration); - g.spotLight(red, green, blue, x, y, z, nx, ny, nz, angle, concentration); - } - - - public void lightFalloff(float constant, float linear, float quadratic) { - if (recorder != null) recorder.lightFalloff(constant, linear, quadratic); - g.lightFalloff(constant, linear, quadratic); - } - - - public void lightSpecular(float x, float y, float z) { - if (recorder != null) recorder.lightSpecular(x, y, z); - g.lightSpecular(x, y, z); - } - - - /** - * Set the background to a gray or ARGB color. - *

- * For the main drawing surface, the alpha value will be ignored. However, - * alpha can be used on PGraphics objects from createGraphics(). This is - * the only way to set all the pixels partially transparent, for instance. - *

- * Note that background() should be called before any transformations occur, - * because some implementations may require the current transformation matrix - * to be identity before drawing. - */ - public void background(int rgb) { - if (recorder != null) recorder.background(rgb); - g.background(rgb); - } - - - /** - * See notes about alpha in background(x, y, z, a). - */ - public void background(int rgb, float alpha) { - if (recorder != null) recorder.background(rgb, alpha); - g.background(rgb, alpha); - } - - - /** - * Set the background to a grayscale value, based on the - * current colorMode. - */ - public void background(float gray) { - if (recorder != null) recorder.background(gray); - g.background(gray); - } - - - /** - * See notes about alpha in background(x, y, z, a). - */ - public void background(float gray, float alpha) { - if (recorder != null) recorder.background(gray, alpha); - g.background(gray, alpha); - } - - - /** - * Set the background to an r, g, b or h, s, b value, - * based on the current colorMode. - */ - public void background(float x, float y, float z) { - if (recorder != null) recorder.background(x, y, z); - g.background(x, y, z); - } - - - /** - * Clear the background with a color that includes an alpha value. This can - * only be used with objects created by createGraphics(), because the main - * drawing surface cannot be set transparent. - *

- * It might be tempting to use this function to partially clear the screen - * on each frame, however that's not how this function works. When calling - * background(), the pixels will be replaced with pixels that have that level - * of transparency. To do a semi-transparent overlay, use fill() with alpha - * and draw a rectangle. - */ - public void background(float x, float y, float z, float a) { - if (recorder != null) recorder.background(x, y, z, a); - g.background(x, y, z, a); - } - - - /** - * Takes an RGB or ARGB image and sets it as the background. - * The width and height of the image must be the same size as the sketch. - * Use image.resize(width, height) to make short work of such a task. - *

- * Note that even if the image is set as RGB, the high 8 bits of each pixel - * should be set opaque (0xFF000000), because the image data will be copied - * directly to the screen, and non-opaque background images may have strange - * behavior. Using image.filter(OPAQUE) will handle this easily. - *

- * When using 3D, this will also clear the zbuffer (if it exists). - */ - public void background(PImage image) { - if (recorder != null) recorder.background(image); - g.background(image); - } - - - public void colorMode(int mode) { - if (recorder != null) recorder.colorMode(mode); - g.colorMode(mode); - } - - - public void colorMode(int mode, float max) { - if (recorder != null) recorder.colorMode(mode, max); - g.colorMode(mode, max); - } - - - /** - * Set the colorMode and the maximum values for (r, g, b) - * or (h, s, b). - *

- * Note that this doesn't set the maximum for the alpha value, - * which might be confusing if for instance you switched to - *

colorMode(HSB, 360, 100, 100);
- * because the alpha values were still between 0 and 255. - */ - public void colorMode(int mode, float maxX, float maxY, float maxZ) { - if (recorder != null) recorder.colorMode(mode, maxX, maxY, maxZ); - g.colorMode(mode, maxX, maxY, maxZ); - } - - - public void colorMode(int mode, - float maxX, float maxY, float maxZ, float maxA) { - if (recorder != null) recorder.colorMode(mode, maxX, maxY, maxZ, maxA); - g.colorMode(mode, maxX, maxY, maxZ, maxA); - } - - - public final float alpha(int what) { - return g.alpha(what); - } - - - public final float red(int what) { - return g.red(what); - } - - - public final float green(int what) { - return g.green(what); - } - - - public final float blue(int what) { - return g.blue(what); - } - - - public final float hue(int what) { - return g.hue(what); - } - - - public final float saturation(int what) { - return g.saturation(what); - } - - - public final float brightness(int what) { - return g.brightness(what); - } - - - /** - * Interpolate between two colors, using the current color mode. - */ - public int lerpColor(int c1, int c2, float amt) { - return g.lerpColor(c1, c2, amt); - } - - - /** - * Interpolate between two colors. Like lerp(), but for the - * individual color components of a color supplied as an int value. - */ - static public int lerpColor(int c1, int c2, float amt, int mode) { - return PGraphics.lerpColor(c1, c2, amt, mode); - } - - - /** - * Return true if this renderer should be drawn to the screen. Defaults to - * returning true, since nearly all renderers are on-screen beasts. But can - * be overridden for subclasses like PDF so that a window doesn't open up. - *

- * A better name? showFrame, displayable, isVisible, visible, shouldDisplay, - * what to call this? - */ - public boolean displayable() { - return g.displayable(); - } - - - /** - * Store data of some kind for a renderer that requires extra metadata of - * some kind. Usually this is a renderer-specific representation of the - * image data, for instance a BufferedImage with tint() settings applied for - * PGraphicsJava2D, or resized image data and OpenGL texture indices for - * PGraphicsOpenGL. - */ - public void setCache(Object parent, Object storage) { - if (recorder != null) recorder.setCache(parent, storage); - g.setCache(parent, storage); - } - - - /** - * Get cache storage data for the specified renderer. Because each renderer - * will cache data in different formats, it's necessary to store cache data - * keyed by the renderer object. Otherwise, attempting to draw the same - * image to both a PGraphicsJava2D and a PGraphicsOpenGL will cause errors. - * @param parent The PGraphics object (or any object, really) associated - * @return data stored for the specified parent - */ - public Object getCache(Object parent) { - return g.getCache(parent); - } - - - /** - * Remove information associated with this renderer from the cache, if any. - * @param parent The PGraphics object whose cache data should be removed - */ - public void removeCache(Object parent) { - if (recorder != null) recorder.removeCache(parent); - g.removeCache(parent); - } - - - /** - * Returns an ARGB "color" type (a packed 32 bit int with the color. - * If the coordinate is outside the image, zero is returned - * (black, but completely transparent). - *

- * If the image is in RGB format (i.e. on a PVideo object), - * the value will get its high bits set, just to avoid cases where - * they haven't been set already. - *

- * If the image is in ALPHA format, this returns a white with its - * alpha value set. - *

- * This function is included primarily for beginners. It is quite - * slow because it has to check to see if the x, y that was provided - * is inside the bounds, and then has to check to see what image - * type it is. If you want things to be more efficient, access the - * pixels[] array directly. - */ - public int get(int x, int y) { - return g.get(x, y); - } - - - /** - * Reads the color of any pixel or grabs a group of pixels. If no parameters are specified, the entire image is returned. Get the value of one pixel by specifying an x,y coordinate. Get a section of the display window by specifing an additional width and height parameter. If the pixel requested is outside of the image window, black is returned. The numbers returned are scaled according to the current color ranges, but only RGB values are returned by this function. Even though you may have drawn a shape with colorMode(HSB), the numbers returned will be in RGB. - *

Getting the color of a single pixel with get(x, y) is easy, but not as fast as grabbing the data directly from pixels[]. The equivalent statement to "get(x, y)" using pixels[] is "pixels[y*width+x]". Processing requires calling loadPixels() to load the display window data into the pixels[] array before getting the values. - *

As of release 0149, this function ignores imageMode(). - * - * @webref - * @brief Reads the color of any pixel or grabs a rectangle of pixels - * @param x x-coordinate of the pixel - * @param y y-coordinate of the pixel - * @param w width of pixel rectangle to get - * @param h height of pixel rectangle to get - * - * @see processing.core.PImage#set(int, int, int) - * @see processing.core.PImage#pixels - * @see processing.core.PImage#copy(PImage, int, int, int, int, int, int, int, int) - */ - public PImage get(int x, int y, int w, int h) { - return g.get(x, y, w, h); - } - - - /** - * Returns a copy of this PImage. Equivalent to get(0, 0, width, height). - */ - public PImage get() { - return g.get(); - } - - - /** - * Changes the color of any pixel or writes an image directly into the image. The x and y parameter specify the pixel or the upper-left corner of the image. The color parameter specifies the color value.

Setting the color of a single pixel with set(x, y) is easy, but not as fast as putting the data directly into pixels[]. The equivalent statement to "set(x, y, #000000)" using pixels[] is "pixels[y*width+x] = #000000". Processing requires calling loadPixels() to load the display window data into the pixels[] array before getting the values and calling updatePixels() to update the window. - *

As of release 0149, this function ignores imageMode(). - * - * @webref - * @brief Writes a color to any pixel or writes an image into another - * @param x x-coordinate of the pixel or upper-left corner of the image - * @param y y-coordinate of the pixel or upper-left corner of the image - * @param c any value of the color datatype - * - * @see processing.core.PImage#get(int, int, int, int) - * @see processing.core.PImage#pixels - * @see processing.core.PImage#copy(PImage, int, int, int, int, int, int, int, int) - */ - public void set(int x, int y, int c) { - if (recorder != null) recorder.set(x, y, c); - g.set(x, y, c); - } - - - /** - * Efficient method of drawing an image's pixels directly to this surface. - * No variations are employed, meaning that any scale, tint, or imageMode - * settings will be ignored. - */ - public void set(int x, int y, PImage src) { - if (recorder != null) recorder.set(x, y, src); - g.set(x, y, src); - } - - - /** - * Set alpha channel for an image. Black colors in the source - * image will make the destination image completely transparent, - * and white will make things fully opaque. Gray values will - * be in-between steps. - *

- * Strictly speaking the "blue" value from the source image is - * used as the alpha color. For a fully grayscale image, this - * is correct, but for a color image it's not 100% accurate. - * For a more accurate conversion, first use filter(GRAY) - * which will make the image into a "correct" grayscale by - * performing a proper luminance-based conversion. - * - * @param maskArray any array of Integer numbers used as the alpha channel, needs to be same length as the image's pixel array - */ - public void mask(int maskArray[]) { - if (recorder != null) recorder.mask(maskArray); - g.mask(maskArray); - } - - - /** - * Masks part of an image from displaying by loading another image and using it as an alpha channel. - * This mask image should only contain grayscale data, but only the blue color channel is used. - * The mask image needs to be the same size as the image to which it is applied. - * In addition to using a mask image, an integer array containing the alpha channel data can be specified directly. - * This method is useful for creating dynamically generated alpha masks. - * This array must be of the same length as the target image's pixels array and should contain only grayscale data of values between 0-255. - * @webref - * @brief Masks part of the image from displaying - * @param maskImg any PImage object used as the alpha channel for "img", needs to be same size as "img" - */ - public void mask(PImage maskImg) { - if (recorder != null) recorder.mask(maskImg); - g.mask(maskImg); - } - - - public void filter(int kind) { - if (recorder != null) recorder.filter(kind); - g.filter(kind); - } - - - /** - * Filters an image as defined by one of the following modes:

THRESHOLD - converts the image to black and white pixels depending if they are above or below the threshold defined by the level parameter. The level must be between 0.0 (black) and 1.0(white). If no level is specified, 0.5 is used.

GRAY - converts any colors in the image to grayscale equivalents

INVERT - sets each pixel to its inverse value

POSTERIZE - limits each channel of the image to the number of colors specified as the level parameter

BLUR - executes a Guassian blur with the level parameter specifying the extent of the blurring. If no level parameter is used, the blur is equivalent to Guassian blur of radius 1.

OPAQUE - sets the alpha channel to entirely opaque.

ERODE - reduces the light areas with the amount defined by the level parameter.

DILATE - increases the light areas with the amount defined by the level parameter - * =advanced - * Method to apply a variety of basic filters to this image. - *

- *

    - *
  • filter(BLUR) provides a basic blur. - *
  • filter(GRAY) converts the image to grayscale based on luminance. - *
  • filter(INVERT) will invert the color components in the image. - *
  • filter(OPAQUE) set all the high bits in the image to opaque - *
  • filter(THRESHOLD) converts the image to black and white. - *
  • filter(DILATE) grow white/light areas - *
  • filter(ERODE) shrink white/light areas - *
- * Luminance conversion code contributed by - * toxi - *

- * Gaussian blur code contributed by - * Mario Klingemann - * - * @webref - * @brief Converts the image to grayscale or black and white - * @param kind Either THRESHOLD, GRAY, INVERT, POSTERIZE, BLUR, OPAQUE, ERODE, or DILATE - * @param param in the range from 0 to 1 - */ - public void filter(int kind, float param) { - if (recorder != null) recorder.filter(kind, param); - g.filter(kind, param); - } - - - /** - * Copy things from one area of this image - * to another area in the same image. - */ - public void copy(int sx, int sy, int sw, int sh, - int dx, int dy, int dw, int dh) { - if (recorder != null) recorder.copy(sx, sy, sw, sh, dx, dy, dw, dh); - g.copy(sx, sy, sw, sh, dx, dy, dw, dh); - } - - - /** - * Copies a region of pixels from one image into another. If the source and destination regions aren't the same size, it will automatically resize source pixels to fit the specified target region. No alpha information is used in the process, however if the source image has an alpha channel set, it will be copied as well. - *

As of release 0149, this function ignores imageMode(). - * - * @webref - * @brief Copies the entire image - * @param sx X coordinate of the source's upper left corner - * @param sy Y coordinate of the source's upper left corner - * @param sw source image width - * @param sh source image height - * @param dx X coordinate of the destination's upper left corner - * @param dy Y coordinate of the destination's upper left corner - * @param dw destination image width - * @param dh destination image height - * @param src an image variable referring to the source image. - * - * @see processing.core.PApplet#alpha(int) - * @see processing.core.PApplet#blend(PImage, int, int, int, int, int, int, int, int, int) - */ - public void copy(PImage src, - int sx, int sy, int sw, int sh, - int dx, int dy, int dw, int dh) { - if (recorder != null) recorder.copy(src, sx, sy, sw, sh, dx, dy, dw, dh); - g.copy(src, sx, sy, sw, sh, dx, dy, dw, dh); - } - - - /** - * Blend two colors based on a particular mode. - *

    - *
  • REPLACE - destination colour equals colour of source pixel: C = A. - * Sometimes called "Normal" or "Copy" in other software. - * - *
  • BLEND - linear interpolation of colours: - * C = A*factor + B - * - *
  • ADD - additive blending with white clip: - * C = min(A*factor + B, 255). - * Clipped to 0..255, Photoshop calls this "Linear Burn", - * and Director calls it "Add Pin". - * - *
  • SUBTRACT - substractive blend with black clip: - * C = max(B - A*factor, 0). - * Clipped to 0..255, Photoshop calls this "Linear Dodge", - * and Director calls it "Subtract Pin". - * - *
  • DARKEST - only the darkest colour succeeds: - * C = min(A*factor, B). - * Illustrator calls this "Darken". - * - *
  • LIGHTEST - only the lightest colour succeeds: - * C = max(A*factor, B). - * Illustrator calls this "Lighten". - * - *
  • DIFFERENCE - subtract colors from underlying image. - * - *
  • EXCLUSION - similar to DIFFERENCE, but less extreme. - * - *
  • MULTIPLY - Multiply the colors, result will always be darker. - * - *
  • SCREEN - Opposite multiply, uses inverse values of the colors. - * - *
  • OVERLAY - A mix of MULTIPLY and SCREEN. Multiplies dark values, - * and screens light values. - * - *
  • HARD_LIGHT - SCREEN when greater than 50% gray, MULTIPLY when lower. - * - *
  • SOFT_LIGHT - Mix of DARKEST and LIGHTEST. - * Works like OVERLAY, but not as harsh. - * - *
  • DODGE - Lightens light tones and increases contrast, ignores darks. - * Called "Color Dodge" in Illustrator and Photoshop. - * - *
  • BURN - Darker areas are applied, increasing contrast, ignores lights. - * Called "Color Burn" in Illustrator and Photoshop. - *
- *

A useful reference for blending modes and their algorithms can be - * found in the SVG - * specification.

- *

It is important to note that Processing uses "fast" code, not - * necessarily "correct" code. No biggie, most software does. A nitpicker - * can find numerous "off by 1 division" problems in the blend code where - * >>8 or >>7 is used when strictly speaking - * /255.0 or /127.0 should have been used.

- *

For instance, exclusion (not intended for real-time use) reads - * r1 + r2 - ((2 * r1 * r2) / 255) because 255 == 1.0 - * not 256 == 1.0. In other words, (255*255)>>8 is not - * the same as (255*255)/255. But for real-time use the shifts - * are preferrable, and the difference is insignificant for applications - * built with Processing.

- */ - static public int blendColor(int c1, int c2, int mode) { - return PGraphics.blendColor(c1, c2, mode); - } - - - /** - * Blends one area of this image to another area. - * - * - * @see processing.core.PImage#blendColor(int,int,int) - */ - public void blend(int sx, int sy, int sw, int sh, - int dx, int dy, int dw, int dh, int mode) { - if (recorder != null) recorder.blend(sx, sy, sw, sh, dx, dy, dw, dh, mode); - g.blend(sx, sy, sw, sh, dx, dy, dw, dh, mode); - } - - - /** - * Blends a region of pixels into the image specified by the img parameter. These copies utilize full alpha channel support and a choice of the following modes to blend the colors of source pixels (A) with the ones of pixels in the destination image (B):

- * BLEND - linear interpolation of colours: C = A*factor + B

- * ADD - additive blending with white clip: C = min(A*factor + B, 255)

- * SUBTRACT - subtractive blending with black clip: C = max(B - A*factor, 0)

- * DARKEST - only the darkest colour succeeds: C = min(A*factor, B)

- * LIGHTEST - only the lightest colour succeeds: C = max(A*factor, B)

- * DIFFERENCE - subtract colors from underlying image.

- * EXCLUSION - similar to DIFFERENCE, but less extreme.

- * MULTIPLY - Multiply the colors, result will always be darker.

- * SCREEN - Opposite multiply, uses inverse values of the colors.

- * OVERLAY - A mix of MULTIPLY and SCREEN. Multiplies dark values, and screens light values.

- * HARD_LIGHT - SCREEN when greater than 50% gray, MULTIPLY when lower.

- * SOFT_LIGHT - Mix of DARKEST and LIGHTEST. Works like OVERLAY, but not as harsh.

- * DODGE - Lightens light tones and increases contrast, ignores darks. Called "Color Dodge" in Illustrator and Photoshop.

- * BURN - Darker areas are applied, increasing contrast, ignores lights. Called "Color Burn" in Illustrator and Photoshop.

- * All modes use the alpha information (highest byte) of source image pixels as the blending factor. If the source and destination regions are different sizes, the image will be automatically resized to match the destination size. If the srcImg parameter is not used, the display window is used as the source image.

- * As of release 0149, this function ignores imageMode(). - * - * @webref - * @brief Copies a pixel or rectangle of pixels using different blending modes - * @param src an image variable referring to the source image - * @param sx X coordinate of the source's upper left corner - * @param sy Y coordinate of the source's upper left corner - * @param sw source image width - * @param sh source image height - * @param dx X coordinate of the destinations's upper left corner - * @param dy Y coordinate of the destinations's upper left corner - * @param dw destination image width - * @param dh destination image height - * @param mode Either BLEND, ADD, SUBTRACT, LIGHTEST, DARKEST, DIFFERENCE, EXCLUSION, MULTIPLY, SCREEN, OVERLAY, HARD_LIGHT, SOFT_LIGHT, DODGE, BURN - * - * @see processing.core.PApplet#alpha(int) - * @see processing.core.PApplet#copy(PImage, int, int, int, int, int, int, int, int) - * @see processing.core.PImage#blendColor(int,int,int) - */ - public void blend(PImage src, - int sx, int sy, int sw, int sh, - int dx, int dy, int dw, int dh, int mode) { - if (recorder != null) recorder.blend(src, sx, sy, sw, sh, dx, dy, dw, dh, mode); - g.blend(src, sx, sy, sw, sh, dx, dy, dw, dh, mode); - } -} diff --git a/core/methods/demo/PGraphics.java b/core/methods/demo/PGraphics.java deleted file mode 100644 index 95834f24b..000000000 --- a/core/methods/demo/PGraphics.java +++ /dev/null @@ -1,5075 +0,0 @@ -/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */ - -/* - Part of the Processing project - http://processing.org - - Copyright (c) 2004-09 Ben Fry and Casey Reas - Copyright (c) 2001-04 Massachusetts Institute of Technology - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General - Public License along with this library; if not, write to the - Free Software Foundation, Inc., 59 Temple Place, Suite 330, - Boston, MA 02111-1307 USA -*/ - -package processing.core; - -import java.awt.*; -import java.util.HashMap; - - -/** - * Main graphics and rendering context, as well as the base API implementation for processing "core". - * Use this class if you need to draw into an off-screen graphics buffer. - * A PGraphics object can be constructed with the createGraphics() function. - * The beginDraw() and endDraw() methods (see above example) are necessary to set up the buffer and to finalize it. - * The fields and methods for this class are extensive; - * for a complete list visit the developer's reference: http://dev.processing.org/reference/core/ - * =advanced - * Main graphics and rendering context, as well as the base API implementation. - * - *

Subclassing and initializing PGraphics objects

- * Starting in release 0149, subclasses of PGraphics are handled differently. - * The constructor for subclasses takes no parameters, instead a series of - * functions are called by the hosting PApplet to specify its attributes. - *
    - *
  • setParent(PApplet) - is called to specify the parent PApplet. - *
  • setPrimary(boolean) - called with true if this PGraphics will be the - * primary drawing surface used by the sketch, or false if not. - *
  • setPath(String) - called when the renderer needs a filename or output - * path, such as with the PDF or DXF renderers. - *
  • setSize(int, int) - this is called last, at which point it's safe for - * the renderer to complete its initialization routine. - *
- * The functions were broken out because of the growing number of parameters - * such as these that might be used by a renderer, yet with the exception of - * setSize(), it's not clear which will be necessary. So while the size could - * be passed in to the constructor instead of a setSize() function, a function - * would still be needed that would notify the renderer that it was time to - * finish its initialization. Thus, setSize() simply does both. - * - *

Know your rights: public vs. private methods

- * Methods that are protected are often subclassed by other renderers, however - * they are not set 'public' because they shouldn't be part of the user-facing - * public API accessible from PApplet. That is, we don't want sketches calling - * textModeCheck() or vertexTexture() directly. - * - *

Handling warnings and exceptions

- * Methods that are unavailable generally show a warning, unless their lack of - * availability will soon cause another exception. For instance, if a method - * like getMatrix() returns null because it is unavailable, an exception will - * be thrown stating that the method is unavailable, rather than waiting for - * the NullPointerException that will occur when the sketch tries to use that - * method. As of release 0149, warnings will only be shown once, and exceptions - * have been changed to warnings where possible. - * - *

Using xxxxImpl() for subclassing smoothness

- * The xxxImpl() methods are generally renderer-specific handling for some - * subset if tasks for a particular function (vague enough for you?) For - * instance, imageImpl() handles drawing an image whose x/y/w/h and u/v coords - * have been specified, and screen placement (independent of imageMode) has - * been determined. There's no point in all renderers implementing the - * if (imageMode == BLAH) placement/sizing logic, so that's handled - * by PGraphics, which then calls imageImpl() once all that is figured out. - * - *

His brother PImage

- * PGraphics subclasses PImage so that it can be drawn and manipulated in a - * similar fashion. As such, many methods are inherited from PGraphics, - * though many are unavailable: for instance, resize() is not likely to be - * implemented; the same goes for mask(), depending on the situation. - * - *

What's in PGraphics, what ain't

- * For the benefit of subclasses, as much as possible has been placed inside - * PGraphics. For instance, bezier interpolation code and implementations of - * the strokeCap() method (that simply sets the strokeCap variable) are - * handled here. Features that will vary widely between renderers are located - * inside the subclasses themselves. For instance, all matrix handling code - * is per-renderer: Java 2D uses its own AffineTransform, P2D uses a PMatrix2D, - * and PGraphics3D needs to keep continually update forward and reverse - * transformations. A proper (future) OpenGL implementation will have all its - * matrix madness handled by the card. Lighting also falls under this - * category, however the base material property settings (emissive, specular, - * et al.) are handled in PGraphics because they use the standard colorMode() - * logic. Subclasses should override methods like emissiveFromCalc(), which - * is a point where a valid color has been defined internally, and can be - * applied in some manner based on the calcXxxx values. - * - *

What's in the PGraphics documentation, what ain't

- * Some things are noted here, some things are not. For public API, always - * refer to the reference - * on Processing.org for proper explanations. No attempt has been made to - * keep the javadoc up to date or complete. It's an enormous task for - * which we simply do not have the time. That is, it's not something that - * to be done once—it's a matter of keeping the multiple references - * synchronized (to say nothing of the translation issues), while targeting - * them for their separate audiences. Ouch. - * - * We're working right now on synchronizing the two references, so the website reference - * is generated from the javadoc comments. Yay. - * - * @webref rendering - * @instanceName graphics any object of the type PGraphics - * @usage Web & Application - * @see processing.core.PApplet#createGraphics(int, int, String) - */ -public class PGraphics extends PImage implements PConstants { - - // ........................................................ - - // width and height are already inherited from PImage - - - /// width minus one (useful for many calculations) - protected int width1; - - /// height minus one (useful for many calculations) - protected int height1; - - /// width * height (useful for many calculations) - public int pixelCount; - - /// true if smoothing is enabled (read-only) - public boolean smooth = false; - - // ........................................................ - - /// true if defaults() has been called a first time - protected boolean settingsInited; - - /// set to a PGraphics object being used inside a beginRaw/endRaw() block - protected PGraphics raw; - - // ........................................................ - - /** path to the file being saved for this renderer (if any) */ - protected String path; - - /** - * true if this is the main drawing surface for a particular sketch. - * This would be set to false for an offscreen buffer or if it were - * created any other way than size(). When this is set, the listeners - * are also added to the sketch. - */ - protected boolean primarySurface; - - // ........................................................ - - /** - * Array of hint[] items. These are hacks to get around various - * temporary workarounds inside the environment. - *

- * Note that this array cannot be static, as a hint() may result in a - * runtime change specific to a renderer. For instance, calling - * hint(DISABLE_DEPTH_TEST) has to call glDisable() right away on an - * instance of PGraphicsOpenGL. - *

- * The hints[] array is allocated early on because it might - * be used inside beginDraw(), allocate(), etc. - */ - protected boolean[] hints = new boolean[HINT_COUNT]; - - - //////////////////////////////////////////////////////////// - - // STYLE PROPERTIES - - // Also inherits imageMode() and smooth() (among others) from PImage. - - /** The current colorMode */ - public int colorMode; // = RGB; - - /** Max value for red (or hue) set by colorMode */ - public float colorModeX; // = 255; - - /** Max value for green (or saturation) set by colorMode */ - public float colorModeY; // = 255; - - /** Max value for blue (or value) set by colorMode */ - public float colorModeZ; // = 255; - - /** Max value for alpha set by colorMode */ - public float colorModeA; // = 255; - - /** True if colors are not in the range 0..1 */ - boolean colorModeScale; // = true; - - /** True if colorMode(RGB, 255) */ - boolean colorModeDefault; // = true; - - // ........................................................ - - // Tint color for images - - /** - * True if tint() is enabled (read-only). - * - * Using tint/tintColor seems a better option for naming than - * tintEnabled/tint because the latter seems ugly, even though - * g.tint as the actual color seems a little more intuitive, - * it's just that g.tintEnabled is even more unintuitive. - * Same goes for fill and stroke, et al. - */ - public boolean tint; - - /** tint that was last set (read-only) */ - public int tintColor; - - protected boolean tintAlpha; - protected float tintR, tintG, tintB, tintA; - protected int tintRi, tintGi, tintBi, tintAi; - - // ........................................................ - - // Fill color - - /** true if fill() is enabled, (read-only) */ - public boolean fill; - - /** fill that was last set (read-only) */ - public int fillColor = 0xffFFFFFF; - - protected boolean fillAlpha; - protected float fillR, fillG, fillB, fillA; - protected int fillRi, fillGi, fillBi, fillAi; - - // ........................................................ - - // Stroke color - - /** true if stroke() is enabled, (read-only) */ - public boolean stroke; - - /** stroke that was last set (read-only) */ - public int strokeColor = 0xff000000; - - protected boolean strokeAlpha; - protected float strokeR, strokeG, strokeB, strokeA; - protected int strokeRi, strokeGi, strokeBi, strokeAi; - - // ........................................................ - - // Additional stroke properties - - static protected final float DEFAULT_STROKE_WEIGHT = 1; - static protected final int DEFAULT_STROKE_JOIN = MITER; - static protected final int DEFAULT_STROKE_CAP = ROUND; - - /** - * Last value set by strokeWeight() (read-only). This has a default - * setting, rather than fighting with renderers about whether that - * renderer supports thick lines. - */ - public float strokeWeight = DEFAULT_STROKE_WEIGHT; - - /** - * Set by strokeJoin() (read-only). This has a default setting - * so that strokeJoin() need not be called by defaults, - * because subclasses may not implement it (i.e. PGraphicsGL) - */ - public int strokeJoin = DEFAULT_STROKE_JOIN; - - /** - * Set by strokeCap() (read-only). This has a default setting - * so that strokeCap() need not be called by defaults, - * because subclasses may not implement it (i.e. PGraphicsGL) - */ - public int strokeCap = DEFAULT_STROKE_CAP; - - // ........................................................ - - // Shape placement properties - - // imageMode() is inherited from PImage - - /** The current rect mode (read-only) */ - public int rectMode; - - /** The current ellipse mode (read-only) */ - public int ellipseMode; - - /** The current shape alignment mode (read-only) */ - public int shapeMode; - - /** The current image alignment (read-only) */ - public int imageMode = CORNER; - - // ........................................................ - - // Text and font properties - - /** The current text font (read-only) */ - public PFont textFont; - - /** The current text align (read-only) */ - public int textAlign = LEFT; - - /** The current vertical text alignment (read-only) */ - public int textAlignY = BASELINE; - - /** The current text mode (read-only) */ - public int textMode = MODEL; - - /** The current text size (read-only) */ - public float textSize; - - /** The current text leading (read-only) */ - public float textLeading; - - // ........................................................ - - // Material properties - -// PMaterial material; -// PMaterial[] materialStack; -// int materialStackPointer; - - public float ambientR, ambientG, ambientB; - public float specularR, specularG, specularB; - public float emissiveR, emissiveG, emissiveB; - public float shininess; - - - // Style stack - - static final int STYLE_STACK_DEPTH = 64; - PStyle[] styleStack = new PStyle[STYLE_STACK_DEPTH]; - int styleStackDepth; - - - //////////////////////////////////////////////////////////// - - - /** Last background color that was set, zero if an image */ - public int backgroundColor = 0xffCCCCCC; - - protected boolean backgroundAlpha; - protected float backgroundR, backgroundG, backgroundB, backgroundA; - protected int backgroundRi, backgroundGi, backgroundBi, backgroundAi; - - // ........................................................ - - /** - * Current model-view matrix transformation of the form m[row][column], - * which is a "column vector" (as opposed to "row vector") matrix. - */ -// PMatrix matrix; -// public float m00, m01, m02, m03; -// public float m10, m11, m12, m13; -// public float m20, m21, m22, m23; -// public float m30, m31, m32, m33; - -// static final int MATRIX_STACK_DEPTH = 32; -// float[][] matrixStack = new float[MATRIX_STACK_DEPTH][16]; -// float[][] matrixInvStack = new float[MATRIX_STACK_DEPTH][16]; -// int matrixStackDepth; - - static final int MATRIX_STACK_DEPTH = 32; - - // ........................................................ - - /** - * Java AWT Image object associated with this renderer. For P2D and P3D, - * this will be associated with their MemoryImageSource. For PGraphicsJava2D, - * it will be the offscreen drawing buffer. - */ - public Image image; - - // ........................................................ - - // internal color for setting/calculating - protected float calcR, calcG, calcB, calcA; - protected int calcRi, calcGi, calcBi, calcAi; - protected int calcColor; - protected boolean calcAlpha; - - /** The last RGB value converted to HSB */ - int cacheHsbKey; - /** Result of the last conversion to HSB */ - float[] cacheHsbValue = new float[3]; - - // ........................................................ - - /** - * Type of shape passed to beginShape(), - * zero if no shape is currently being drawn. - */ - protected int shape; - - // vertices - static final int DEFAULT_VERTICES = 512; - protected float vertices[][] = - new float[DEFAULT_VERTICES][VERTEX_FIELD_COUNT]; - protected int vertexCount; // total number of vertices - - // ........................................................ - - protected boolean bezierInited = false; - public int bezierDetail = 20; - - // used by both curve and bezier, so just init here - protected PMatrix3D bezierBasisMatrix = - new PMatrix3D(-1, 3, -3, 1, - 3, -6, 3, 0, - -3, 3, 0, 0, - 1, 0, 0, 0); - - //protected PMatrix3D bezierForwardMatrix; - protected PMatrix3D bezierDrawMatrix; - - // ........................................................ - - protected boolean curveInited = false; - protected int curveDetail = 20; - public float curveTightness = 0; - // catmull-rom basis matrix, perhaps with optional s parameter - protected PMatrix3D curveBasisMatrix; - protected PMatrix3D curveDrawMatrix; - - protected PMatrix3D bezierBasisInverse; - protected PMatrix3D curveToBezierMatrix; - - // ........................................................ - - // spline vertices - - protected float curveVertices[][]; - protected int curveVertexCount; - - // ........................................................ - - // precalculate sin/cos lookup tables [toxi] - // circle resolution is determined from the actual used radii - // passed to ellipse() method. this will automatically take any - // scale transformations into account too - - // [toxi 031031] - // changed table's precision to 0.5 degree steps - // introduced new vars for more flexible code - static final protected float sinLUT[]; - static final protected float cosLUT[]; - static final protected float SINCOS_PRECISION = 0.5f; - static final protected int SINCOS_LENGTH = (int) (360f / SINCOS_PRECISION); - static { - sinLUT = new float[SINCOS_LENGTH]; - cosLUT = new float[SINCOS_LENGTH]; - for (int i = 0; i < SINCOS_LENGTH; i++) { - sinLUT[i] = (float) Math.sin(i * DEG_TO_RAD * SINCOS_PRECISION); - cosLUT[i] = (float) Math.cos(i * DEG_TO_RAD * SINCOS_PRECISION); - } - } - - // ........................................................ - - /** The current font if a Java version of it is installed */ - //protected Font textFontNative; - - /** Metrics for the current native Java font */ - //protected FontMetrics textFontNativeMetrics; - - /** Last text position, because text often mixed on lines together */ - protected float textX, textY, textZ; - - /** - * Internal buffer used by the text() functions - * because the String object is slow - */ - protected char[] textBuffer = new char[8 * 1024]; - protected char[] textWidthBuffer = new char[8 * 1024]; - - protected int textBreakCount; - protected int[] textBreakStart; - protected int[] textBreakStop; - - // ........................................................ - - public boolean edge = true; - - // ........................................................ - - /// normal calculated per triangle - static protected final int NORMAL_MODE_AUTO = 0; - /// one normal manually specified per shape - static protected final int NORMAL_MODE_SHAPE = 1; - /// normals specified for each shape vertex - static protected final int NORMAL_MODE_VERTEX = 2; - - /// Current mode for normals, one of AUTO, SHAPE, or VERTEX - protected int normalMode; - - /// Keep track of how many calls to normal, to determine the mode. - //protected int normalCount; - - /** Current normal vector. */ - public float normalX, normalY, normalZ; - - // ........................................................ - - /** - * Sets whether texture coordinates passed to - * vertex() calls will be based on coordinates that are - * based on the IMAGE or NORMALIZED. - */ - public int textureMode; - - /** - * Current horizontal coordinate for texture, will always - * be between 0 and 1, even if using textureMode(IMAGE). - */ - public float textureU; - - /** Current vertical coordinate for texture, see above. */ - public float textureV; - - /** Current image being used as a texture */ - public PImage textureImage; - - // ........................................................ - - // [toxi031031] new & faster sphere code w/ support flexibile resolutions - // will be set by sphereDetail() or 1st call to sphere() - float sphereX[], sphereY[], sphereZ[]; - - /// Number of U steps (aka "theta") around longitudinally spanning 2*pi - public int sphereDetailU = 0; - /// Number of V steps (aka "phi") along latitudinally top-to-bottom spanning pi - public int sphereDetailV = 0; - - - ////////////////////////////////////////////////////////////// - - // INTERNAL - - - /** - * Constructor for the PGraphics object. Use this to ensure that - * the defaults get set properly. In a subclass, use this(w, h) - * as the first line of a subclass' constructor to properly set - * the internal fields and defaults. - * - */ - public PGraphics() { - } - - - public void setParent(PApplet parent) { // ignore - this.parent = parent; - } - - - /** - * Set (or unset) this as the main drawing surface. Meaning that it can - * safely be set to opaque (and given a default gray background), or anything - * else that goes along with that. - */ - public void setPrimary(boolean primary) { // ignore - this.primarySurface = primary; - - // base images must be opaque (for performance and general - // headache reasons.. argh, a semi-transparent opengl surface?) - // use createGraphics() if you want a transparent surface. - if (primarySurface) { - format = RGB; - } - } - - - public void setPath(String path) { // ignore - this.path = path; - } - - - /** - * The final step in setting up a renderer, set its size of this renderer. - * This was formerly handled by the constructor, but instead it's been broken - * out so that setParent/setPrimary/setPath can be handled differently. - * - * Important that this is ignored by preproc.pl because otherwise it will - * override setSize() in PApplet/Applet/Component, which will 1) not call - * super.setSize(), and 2) will cause the renderer to be resized from the - * event thread (EDT), causing a nasty crash as it collides with the - * animation thread. - */ - public void setSize(int w, int h) { // ignore - width = w; - height = h; - width1 = width - 1; - height1 = height - 1; - - allocate(); - reapplySettings(); - } - - - /** - * Allocate memory for this renderer. Generally will need to be implemented - * for all renderers. - */ - protected void allocate() { } - - - /** - * Handle any takedown for this graphics context. - *

- * This is called when a sketch is shut down and this renderer was - * specified using the size() command, or inside endRecord() and - * endRaw(), in order to shut things off. - */ - public void dispose() { // ignore - } - - - - ////////////////////////////////////////////////////////////// - - // FRAME - - - /** - * Some renderers have requirements re: when they are ready to draw. - */ - public boolean canDraw() { // ignore - return true; - } - - - /** - * Sets the default properties for a PGraphics object. It should be called before anything is drawn into the object. - * =advanced - *

- * When creating your own PGraphics, you should call this before - * drawing anything. - * - * @webref - * @brief Sets up the rendering context - */ - public void beginDraw() { // ignore - } - - - /** - * Finalizes the rendering of a PGraphics object so that it can be shown on screen. - * =advanced - *

- * When creating your own PGraphics, you should call this when - * you're finished drawing. - * - * @webref - * @brief Finalizes the renderering context - */ - public void endDraw() { // ignore - } - - - public void flush() { - // no-op, mostly for P3D to write sorted stuff - } - - - protected void checkSettings() { - if (!settingsInited) defaultSettings(); - } - - - /** - * Set engine's default values. This has to be called by PApplet, - * somewhere inside setup() or draw() because it talks to the - * graphics buffer, meaning that for subclasses like OpenGL, there - * needs to be a valid graphics context to mess with otherwise - * you'll get some good crashing action. - * - * This is currently called by checkSettings(), during beginDraw(). - */ - protected void defaultSettings() { // ignore -// System.out.println("PGraphics.defaultSettings() " + width + " " + height); - - noSmooth(); // 0149 - - colorMode(RGB, 255); - fill(255); - stroke(0); - // other stroke attributes are set in the initializers - // inside the class (see above, strokeWeight = 1 et al) - - // init shape stuff - shape = 0; - - // init matrices (must do before lights) - //matrixStackDepth = 0; - - rectMode(CORNER); - ellipseMode(DIAMETER); - - // no current font - textFont = null; - textSize = 12; - textLeading = 14; - textAlign = LEFT; - textMode = MODEL; - - // if this fella is associated with an applet, then clear its background. - // if it's been created by someone else through createGraphics, - // they have to call background() themselves, otherwise everything gets - // a gray background (when just a transparent surface or an empty pdf - // is what's desired). - // this background() call is for the Java 2D and OpenGL renderers. - if (primarySurface) { - //System.out.println("main drawing surface bg " + getClass().getName()); - background(backgroundColor); - } - - settingsInited = true; - // defaultSettings() overlaps reapplySettings(), don't do both - //reapplySettings = false; - } - - - /** - * Re-apply current settings. Some methods, such as textFont(), require that - * their methods be called (rather than simply setting the textFont variable) - * because they affect the graphics context, or they require parameters from - * the context (e.g. getting native fonts for text). - * - * This will only be called from an allocate(), which is only called from - * size(), which is safely called from inside beginDraw(). And it cannot be - * called before defaultSettings(), so we should be safe. - */ - protected void reapplySettings() { -// System.out.println("attempting reapplySettings()"); - if (!settingsInited) return; // if this is the initial setup, no need to reapply - -// System.out.println(" doing reapplySettings"); -// new Exception().printStackTrace(System.out); - - colorMode(colorMode, colorModeX, colorModeY, colorModeZ); - if (fill) { -// PApplet.println(" fill " + PApplet.hex(fillColor)); - fill(fillColor); - } else { - noFill(); - } - if (stroke) { - stroke(strokeColor); - - // The if() statements should be handled inside the functions, - // otherwise an actual reset/revert won't work properly. - //if (strokeWeight != DEFAULT_STROKE_WEIGHT) { - strokeWeight(strokeWeight); - //} -// if (strokeCap != DEFAULT_STROKE_CAP) { - strokeCap(strokeCap); -// } -// if (strokeJoin != DEFAULT_STROKE_JOIN) { - strokeJoin(strokeJoin); -// } - } else { - noStroke(); - } - if (tint) { - tint(tintColor); - } else { - noTint(); - } - if (smooth) { - smooth(); - } else { - // Don't bother setting this, cuz it'll anger P3D. - noSmooth(); - } - if (textFont != null) { -// System.out.println(" textFont in reapply is " + textFont); - // textFont() resets the leading, so save it in case it's changed - float saveLeading = textLeading; - textFont(textFont, textSize); - textLeading(saveLeading); - } - textMode(textMode); - textAlign(textAlign, textAlignY); - background(backgroundColor); - - //reapplySettings = false; - } - - - ////////////////////////////////////////////////////////////// - - // HINTS - - /** - * Enable a hint option. - *

- * For the most part, hints are temporary api quirks, - * for which a proper api hasn't been properly worked out. - * for instance SMOOTH_IMAGES existed because smooth() - * wasn't yet implemented, but it will soon go away. - *

- * They also exist for obscure features in the graphics - * engine, like enabling/disabling single pixel lines - * that ignore the zbuffer, the way they do in alphabot. - *

- * Current hint options: - *

    - *
  • DISABLE_DEPTH_TEST - - * turns off the z-buffer in the P3D or OPENGL renderers. - *
- */ - public void hint(int which) { - if (which > 0) { - hints[which] = true; - } else { - hints[-which] = false; - } - } - - - - ////////////////////////////////////////////////////////////// - - // VERTEX SHAPES - - /** - * Start a new shape of type POLYGON - */ - public void beginShape() { - beginShape(POLYGON); - } - - - /** - * Start a new shape. - *

- * Differences between beginShape() and line() and point() methods. - *

- * beginShape() is intended to be more flexible at the expense of being - * a little more complicated to use. it handles more complicated shapes - * that can consist of many connected lines (so you get joins) or lines - * mixed with curves. - *

- * The line() and point() command are for the far more common cases - * (particularly for our audience) that simply need to draw a line - * or a point on the screen. - *

- * From the code side of things, line() may or may not call beginShape() - * to do the drawing. In the beta code, they do, but in the alpha code, - * they did not. they might be implemented one way or the other depending - * on tradeoffs of runtime efficiency vs. implementation efficiency &mdash - * meaning the speed that things run at vs. the speed it takes me to write - * the code and maintain it. for beta, the latter is most important so - * that's how things are implemented. - */ - public void beginShape(int kind) { - shape = kind; - } - - - /** - * Sets whether the upcoming vertex is part of an edge. - * Equivalent to glEdgeFlag(), for people familiar with OpenGL. - */ - public void edge(boolean edge) { - this.edge = edge; - } - - - /** - * Sets the current normal vector. Only applies with 3D rendering - * and inside a beginShape/endShape block. - *

- * This is for drawing three dimensional shapes and surfaces, - * allowing you to specify a vector perpendicular to the surface - * of the shape, which determines how lighting affects it. - *

- * For the most part, PGraphics3D will attempt to automatically - * assign normals to shapes, but since that's imperfect, - * this is a better option when you want more control. - *

- * For people familiar with OpenGL, this function is basically - * identical to glNormal3f(). - */ - public void normal(float nx, float ny, float nz) { - normalX = nx; - normalY = ny; - normalZ = nz; - - // if drawing a shape and the normal hasn't been set yet, - // then we need to set the normals for each vertex so far - if (shape != 0) { - if (normalMode == NORMAL_MODE_AUTO) { - // either they set the normals, or they don't [0149] -// for (int i = vertex_start; i < vertexCount; i++) { -// vertices[i][NX] = normalX; -// vertices[i][NY] = normalY; -// vertices[i][NZ] = normalZ; -// } - // One normal per begin/end shape - normalMode = NORMAL_MODE_SHAPE; - - } else if (normalMode == NORMAL_MODE_SHAPE) { - // a separate normal for each vertex - normalMode = NORMAL_MODE_VERTEX; - } - } - } - - - /** - * Set texture mode to either to use coordinates based on the IMAGE - * (more intuitive for new users) or NORMALIZED (better for advanced chaps) - */ - public void textureMode(int mode) { - this.textureMode = mode; - } - - - /** - * Set texture image for current shape. - * Needs to be called between @see beginShape and @see endShape - * - * @param image reference to a PImage object - */ - public void texture(PImage image) { - textureImage = image; - } - - - protected void vertexCheck() { - if (vertexCount == vertices.length) { - float temp[][] = new float[vertexCount << 1][VERTEX_FIELD_COUNT]; - System.arraycopy(vertices, 0, temp, 0, vertexCount); - vertices = temp; - } - } - - - public void vertex(float x, float y) { - vertexCheck(); - float[] vertex = vertices[vertexCount]; - - curveVertexCount = 0; - - vertex[X] = x; - vertex[Y] = y; - - vertex[EDGE] = edge ? 1 : 0; - -// if (fill) { -// vertex[R] = fillR; -// vertex[G] = fillG; -// vertex[B] = fillB; -// vertex[A] = fillA; -// } - if (fill || textureImage != null) { - if (textureImage == null) { - vertex[R] = fillR; - vertex[G] = fillG; - vertex[B] = fillB; - vertex[A] = fillA; - } else { - if (tint) { - vertex[R] = tintR; - vertex[G] = tintG; - vertex[B] = tintB; - vertex[A] = tintA; - } else { - vertex[R] = 1; - vertex[G] = 1; - vertex[B] = 1; - vertex[A] = 1; - } - } - } - - if (stroke) { - vertex[SR] = strokeR; - vertex[SG] = strokeG; - vertex[SB] = strokeB; - vertex[SA] = strokeA; - vertex[SW] = strokeWeight; - } - - if (textureImage != null) { - vertex[U] = textureU; - vertex[V] = textureV; - } - - vertexCount++; - } - - - public void vertex(float x, float y, float z) { - vertexCheck(); - float[] vertex = vertices[vertexCount]; - - // only do this if we're using an irregular (POLYGON) shape that - // will go through the triangulator. otherwise it'll do thinks like - // disappear in mathematically odd ways - // http://dev.processing.org/bugs/show_bug.cgi?id=444 - if (shape == POLYGON) { - if (vertexCount > 0) { - float pvertex[] = vertices[vertexCount-1]; - if ((Math.abs(pvertex[X] - x) < EPSILON) && - (Math.abs(pvertex[Y] - y) < EPSILON) && - (Math.abs(pvertex[Z] - z) < EPSILON)) { - // this vertex is identical, don't add it, - // because it will anger the triangulator - return; - } - } - } - - // User called vertex(), so that invalidates anything queued up for curve - // vertices. If this is internally called by curveVertexSegment, - // then curveVertexCount will be saved and restored. - curveVertexCount = 0; - - vertex[X] = x; - vertex[Y] = y; - vertex[Z] = z; - - vertex[EDGE] = edge ? 1 : 0; - - if (fill || textureImage != null) { - if (textureImage == null) { - vertex[R] = fillR; - vertex[G] = fillG; - vertex[B] = fillB; - vertex[A] = fillA; - } else { - if (tint) { - vertex[R] = tintR; - vertex[G] = tintG; - vertex[B] = tintB; - vertex[A] = tintA; - } else { - vertex[R] = 1; - vertex[G] = 1; - vertex[B] = 1; - vertex[A] = 1; - } - } - - vertex[AR] = ambientR; - vertex[AG] = ambientG; - vertex[AB] = ambientB; - - vertex[SPR] = specularR; - vertex[SPG] = specularG; - vertex[SPB] = specularB; - //vertex[SPA] = specularA; - - vertex[SHINE] = shininess; - - vertex[ER] = emissiveR; - vertex[EG] = emissiveG; - vertex[EB] = emissiveB; - } - - if (stroke) { - vertex[SR] = strokeR; - vertex[SG] = strokeG; - vertex[SB] = strokeB; - vertex[SA] = strokeA; - vertex[SW] = strokeWeight; - } - - if (textureImage != null) { - vertex[U] = textureU; - vertex[V] = textureV; - } - - vertex[NX] = normalX; - vertex[NY] = normalY; - vertex[NZ] = normalZ; - - vertex[BEEN_LIT] = 0; - - vertexCount++; - } - - - /** - * Used by renderer subclasses or PShape to efficiently pass in already - * formatted vertex information. - * @param v vertex parameters, as a float array of length VERTEX_FIELD_COUNT - */ - public void vertex(float[] v) { - vertexCheck(); - curveVertexCount = 0; - float[] vertex = vertices[vertexCount]; - System.arraycopy(v, 0, vertex, 0, VERTEX_FIELD_COUNT); - vertexCount++; - } - - - public void vertex(float x, float y, float u, float v) { - vertexTexture(u, v); - vertex(x, y); - } - - - public void vertex(float x, float y, float z, float u, float v) { - vertexTexture(u, v); - vertex(x, y, z); - } - - - /** - * Internal method to copy all style information for the given vertex. - * Can be overridden by subclasses to handle only properties pertinent to - * that renderer. (e.g. no need to copy the emissive color in P2D) - */ -// protected void vertexStyle() { -// } - - - /** - * Set (U, V) coords for the next vertex in the current shape. - * This is ugly as its own function, and will (almost?) always be - * coincident with a call to vertex. As of beta, this was moved to - * the protected method you see here, and called from an optional - * param of and overloaded vertex(). - *

- * The parameters depend on the current textureMode. When using - * textureMode(IMAGE), the coordinates will be relative to the size - * of the image texture, when used with textureMode(NORMAL), - * they'll be in the range 0..1. - *

- * Used by both PGraphics2D (for images) and PGraphics3D. - */ - protected void vertexTexture(float u, float v) { - if (textureImage == null) { - throw new RuntimeException("You must first call texture() before " + - "using u and v coordinates with vertex()"); - } - if (textureMode == IMAGE) { - u /= (float) textureImage.width; - v /= (float) textureImage.height; - } - - textureU = u; - textureV = v; - - if (textureU < 0) textureU = 0; - else if (textureU > 1) textureU = 1; - - if (textureV < 0) textureV = 0; - else if (textureV > 1) textureV = 1; - } - - - /** This feature is in testing, do not use or rely upon its implementation */ - public void breakShape() { - showWarning("This renderer cannot currently handle concave shapes, " + - "or shapes with holes."); - } - - - public void endShape() { - endShape(OPEN); - } - - - public void endShape(int mode) { - } - - - - ////////////////////////////////////////////////////////////// - - // CURVE/BEZIER VERTEX HANDLING - - - protected void bezierVertexCheck() { - if (shape == 0 || shape != POLYGON) { - throw new RuntimeException("beginShape() or beginShape(POLYGON) " + - "must be used before bezierVertex()"); - } - if (vertexCount == 0) { - throw new RuntimeException("vertex() must be used at least once" + - "before bezierVertex()"); - } - } - - - public void bezierVertex(float x2, float y2, - float x3, float y3, - float x4, float y4) { - bezierInitCheck(); - bezierVertexCheck(); - PMatrix3D draw = bezierDrawMatrix; - - float[] prev = vertices[vertexCount-1]; - float x1 = prev[X]; - float y1 = prev[Y]; - - float xplot1 = draw.m10*x1 + draw.m11*x2 + draw.m12*x3 + draw.m13*x4; - float xplot2 = draw.m20*x1 + draw.m21*x2 + draw.m22*x3 + draw.m23*x4; - float xplot3 = draw.m30*x1 + draw.m31*x2 + draw.m32*x3 + draw.m33*x4; - - float yplot1 = draw.m10*y1 + draw.m11*y2 + draw.m12*y3 + draw.m13*y4; - float yplot2 = draw.m20*y1 + draw.m21*y2 + draw.m22*y3 + draw.m23*y4; - float yplot3 = draw.m30*y1 + draw.m31*y2 + draw.m32*y3 + draw.m33*y4; - - for (int j = 0; j < bezierDetail; j++) { - x1 += xplot1; xplot1 += xplot2; xplot2 += xplot3; - y1 += yplot1; yplot1 += yplot2; yplot2 += yplot3; - vertex(x1, y1); - } - } - - - public void bezierVertex(float x2, float y2, float z2, - float x3, float y3, float z3, - float x4, float y4, float z4) { - bezierInitCheck(); - bezierVertexCheck(); - PMatrix3D draw = bezierDrawMatrix; - - float[] prev = vertices[vertexCount-1]; - float x1 = prev[X]; - float y1 = prev[Y]; - float z1 = prev[Z]; - - float xplot1 = draw.m10*x1 + draw.m11*x2 + draw.m12*x3 + draw.m13*x4; - float xplot2 = draw.m20*x1 + draw.m21*x2 + draw.m22*x3 + draw.m23*x4; - float xplot3 = draw.m30*x1 + draw.m31*x2 + draw.m32*x3 + draw.m33*x4; - - float yplot1 = draw.m10*y1 + draw.m11*y2 + draw.m12*y3 + draw.m13*y4; - float yplot2 = draw.m20*y1 + draw.m21*y2 + draw.m22*y3 + draw.m23*y4; - float yplot3 = draw.m30*y1 + draw.m31*y2 + draw.m32*y3 + draw.m33*y4; - - float zplot1 = draw.m10*z1 + draw.m11*z2 + draw.m12*z3 + draw.m13*z4; - float zplot2 = draw.m20*z1 + draw.m21*z2 + draw.m22*z3 + draw.m23*z4; - float zplot3 = draw.m30*z1 + draw.m31*z2 + draw.m32*z3 + draw.m33*z4; - - for (int j = 0; j < bezierDetail; j++) { - x1 += xplot1; xplot1 += xplot2; xplot2 += xplot3; - y1 += yplot1; yplot1 += yplot2; yplot2 += yplot3; - z1 += zplot1; zplot1 += zplot2; zplot2 += zplot3; - vertex(x1, y1, z1); - } - } - - - /** - * Perform initialization specific to curveVertex(), and handle standard - * error modes. Can be overridden by subclasses that need the flexibility. - */ - protected void curveVertexCheck() { - if (shape != POLYGON) { - throw new RuntimeException("You must use beginShape() or " + - "beginShape(POLYGON) before curveVertex()"); - } - // to improve code init time, allocate on first use. - if (curveVertices == null) { - curveVertices = new float[128][3]; - } - - if (curveVertexCount == curveVertices.length) { - // Can't use PApplet.expand() cuz it doesn't do the copy properly - float[][] temp = new float[curveVertexCount << 1][3]; - System.arraycopy(curveVertices, 0, temp, 0, curveVertexCount); - curveVertices = temp; - } - curveInitCheck(); - } - - - public void curveVertex(float x, float y) { - curveVertexCheck(); - float[] vertex = curveVertices[curveVertexCount]; - vertex[X] = x; - vertex[Y] = y; - curveVertexCount++; - - // draw a segment if there are enough points - if (curveVertexCount > 3) { - curveVertexSegment(curveVertices[curveVertexCount-4][X], - curveVertices[curveVertexCount-4][Y], - curveVertices[curveVertexCount-3][X], - curveVertices[curveVertexCount-3][Y], - curveVertices[curveVertexCount-2][X], - curveVertices[curveVertexCount-2][Y], - curveVertices[curveVertexCount-1][X], - curveVertices[curveVertexCount-1][Y]); - } - } - - - public void curveVertex(float x, float y, float z) { - curveVertexCheck(); - float[] vertex = curveVertices[curveVertexCount]; - vertex[X] = x; - vertex[Y] = y; - vertex[Z] = z; - curveVertexCount++; - - // draw a segment if there are enough points - if (curveVertexCount > 3) { - curveVertexSegment(curveVertices[curveVertexCount-4][X], - curveVertices[curveVertexCount-4][Y], - curveVertices[curveVertexCount-4][Z], - curveVertices[curveVertexCount-3][X], - curveVertices[curveVertexCount-3][Y], - curveVertices[curveVertexCount-3][Z], - curveVertices[curveVertexCount-2][X], - curveVertices[curveVertexCount-2][Y], - curveVertices[curveVertexCount-2][Z], - curveVertices[curveVertexCount-1][X], - curveVertices[curveVertexCount-1][Y], - curveVertices[curveVertexCount-1][Z]); - } - } - - - /** - * Handle emitting a specific segment of Catmull-Rom curve. This can be - * overridden by subclasses that need more efficient rendering options. - */ - protected void curveVertexSegment(float x1, float y1, - float x2, float y2, - float x3, float y3, - float x4, float y4) { - float x0 = x2; - float y0 = y2; - - PMatrix3D draw = curveDrawMatrix; - - float xplot1 = draw.m10*x1 + draw.m11*x2 + draw.m12*x3 + draw.m13*x4; - float xplot2 = draw.m20*x1 + draw.m21*x2 + draw.m22*x3 + draw.m23*x4; - float xplot3 = draw.m30*x1 + draw.m31*x2 + draw.m32*x3 + draw.m33*x4; - - float yplot1 = draw.m10*y1 + draw.m11*y2 + draw.m12*y3 + draw.m13*y4; - float yplot2 = draw.m20*y1 + draw.m21*y2 + draw.m22*y3 + draw.m23*y4; - float yplot3 = draw.m30*y1 + draw.m31*y2 + draw.m32*y3 + draw.m33*y4; - - // vertex() will reset splineVertexCount, so save it - int savedCount = curveVertexCount; - - vertex(x0, y0); - for (int j = 0; j < curveDetail; j++) { - x0 += xplot1; xplot1 += xplot2; xplot2 += xplot3; - y0 += yplot1; yplot1 += yplot2; yplot2 += yplot3; - vertex(x0, y0); - } - curveVertexCount = savedCount; - } - - - /** - * Handle emitting a specific segment of Catmull-Rom curve. This can be - * overridden by subclasses that need more efficient rendering options. - */ - protected void curveVertexSegment(float x1, float y1, float z1, - float x2, float y2, float z2, - float x3, float y3, float z3, - float x4, float y4, float z4) { - float x0 = x2; - float y0 = y2; - float z0 = z2; - - PMatrix3D draw = curveDrawMatrix; - - float xplot1 = draw.m10*x1 + draw.m11*x2 + draw.m12*x3 + draw.m13*x4; - float xplot2 = draw.m20*x1 + draw.m21*x2 + draw.m22*x3 + draw.m23*x4; - float xplot3 = draw.m30*x1 + draw.m31*x2 + draw.m32*x3 + draw.m33*x4; - - float yplot1 = draw.m10*y1 + draw.m11*y2 + draw.m12*y3 + draw.m13*y4; - float yplot2 = draw.m20*y1 + draw.m21*y2 + draw.m22*y3 + draw.m23*y4; - float yplot3 = draw.m30*y1 + draw.m31*y2 + draw.m32*y3 + draw.m33*y4; - - // vertex() will reset splineVertexCount, so save it - int savedCount = curveVertexCount; - - float zplot1 = draw.m10*z1 + draw.m11*z2 + draw.m12*z3 + draw.m13*z4; - float zplot2 = draw.m20*z1 + draw.m21*z2 + draw.m22*z3 + draw.m23*z4; - float zplot3 = draw.m30*z1 + draw.m31*z2 + draw.m32*z3 + draw.m33*z4; - - vertex(x0, y0, z0); - for (int j = 0; j < curveDetail; j++) { - x0 += xplot1; xplot1 += xplot2; xplot2 += xplot3; - y0 += yplot1; yplot1 += yplot2; yplot2 += yplot3; - z0 += zplot1; zplot1 += zplot2; zplot2 += zplot3; - vertex(x0, y0, z0); - } - curveVertexCount = savedCount; - } - - - - ////////////////////////////////////////////////////////////// - - // SIMPLE SHAPES WITH ANALOGUES IN beginShape() - - - public void point(float x, float y) { - beginShape(POINTS); - vertex(x, y); - endShape(); - } - - - public void point(float x, float y, float z) { - beginShape(POINTS); - vertex(x, y, z); - endShape(); - } - - - public void line(float x1, float y1, float x2, float y2) { - beginShape(LINES); - vertex(x1, y1); - vertex(x2, y2); - endShape(); - } - - - public void line(float x1, float y1, float z1, - float x2, float y2, float z2) { - beginShape(LINES); - vertex(x1, y1, z1); - vertex(x2, y2, z2); - endShape(); - } - - - public void triangle(float x1, float y1, float x2, float y2, - float x3, float y3) { - beginShape(TRIANGLES); - vertex(x1, y1); - vertex(x2, y2); - vertex(x3, y3); - endShape(); - } - - - public void quad(float x1, float y1, float x2, float y2, - float x3, float y3, float x4, float y4) { - beginShape(QUADS); - vertex(x1, y1); - vertex(x2, y2); - vertex(x3, y3); - vertex(x4, y4); - endShape(); - } - - - - ////////////////////////////////////////////////////////////// - - // RECT - - - public void rectMode(int mode) { - rectMode = mode; - } - - - public void rect(float a, float b, float c, float d) { - float hradius, vradius; - switch (rectMode) { - case CORNERS: - break; - case CORNER: - c += a; d += b; - break; - case RADIUS: - hradius = c; - vradius = d; - c = a + hradius; - d = b + vradius; - a -= hradius; - b -= vradius; - break; - case CENTER: - hradius = c / 2.0f; - vradius = d / 2.0f; - c = a + hradius; - d = b + vradius; - a -= hradius; - b -= vradius; - } - - if (a > c) { - float temp = a; a = c; c = temp; - } - - if (b > d) { - float temp = b; b = d; d = temp; - } - - rectImpl(a, b, c, d); - } - - - protected void rectImpl(float x1, float y1, float x2, float y2) { - quad(x1, y1, x2, y1, x2, y2, x1, y2); - } - - - - ////////////////////////////////////////////////////////////// - - // ELLIPSE AND ARC - - - public void ellipseMode(int mode) { - ellipseMode = mode; - } - - - public void ellipse(float a, float b, float c, float d) { - float x = a; - float y = b; - float w = c; - float h = d; - - if (ellipseMode == CORNERS) { - w = c - a; - h = d - b; - - } else if (ellipseMode == RADIUS) { - x = a - c; - y = b - d; - w = c * 2; - h = d * 2; - - } else if (ellipseMode == DIAMETER) { - x = a - c/2f; - y = b - d/2f; - } - - if (w < 0) { // undo negative width - x += w; - w = -w; - } - - if (h < 0) { // undo negative height - y += h; - h = -h; - } - - ellipseImpl(x, y, w, h); - } - - - protected void ellipseImpl(float x, float y, float w, float h) { - } - - - /** - * Identical parameters and placement to ellipse, - * but draws only an arc of that ellipse. - *

- * start and stop are always radians because angleMode() was goofy. - * ellipseMode() sets the placement. - *

- * also tries to be smart about start < stop. - */ - public void arc(float a, float b, float c, float d, - float start, float stop) { - float x = a; - float y = b; - float w = c; - float h = d; - - if (ellipseMode == CORNERS) { - w = c - a; - h = d - b; - - } else if (ellipseMode == RADIUS) { - x = a - c; - y = b - d; - w = c * 2; - h = d * 2; - - } else if (ellipseMode == CENTER) { - x = a - c/2f; - y = b - d/2f; - } - - // make sure this loop will exit before starting while - if (Float.isInfinite(start) || Float.isInfinite(stop)) return; -// while (stop < start) stop += TWO_PI; - if (stop < start) return; // why bother - - // make sure that we're starting at a useful point - while (start < 0) { - start += TWO_PI; - stop += TWO_PI; - } - - if (stop - start > TWO_PI) { - start = 0; - stop = TWO_PI; - } - - arcImpl(x, y, w, h, start, stop); - } - - - /** - * Start and stop are in radians, converted by the parent function. - * Note that the radians can be greater (or less) than TWO_PI. - * This is so that an arc can be drawn that crosses zero mark, - * and the user will still collect $200. - */ - protected void arcImpl(float x, float y, float w, float h, - float start, float stop) { - } - - - - ////////////////////////////////////////////////////////////// - - // BOX - - - public void box(float size) { - box(size, size, size); - } - - - // TODO not the least bit efficient, it even redraws lines - // along the vertices. ugly ugly ugly! - public void box(float w, float h, float d) { - float x1 = -w/2f; float x2 = w/2f; - float y1 = -h/2f; float y2 = h/2f; - float z1 = -d/2f; float z2 = d/2f; - - beginShape(QUADS); - - // front - normal(0, 0, 1); - vertex(x1, y1, z1); - vertex(x2, y1, z1); - vertex(x2, y2, z1); - vertex(x1, y2, z1); - - // right - normal(1, 0, 0); - vertex(x2, y1, z1); - vertex(x2, y1, z2); - vertex(x2, y2, z2); - vertex(x2, y2, z1); - - // back - normal(0, 0, -1); - vertex(x2, y1, z2); - vertex(x1, y1, z2); - vertex(x1, y2, z2); - vertex(x2, y2, z2); - - // left - normal(-1, 0, 0); - vertex(x1, y1, z2); - vertex(x1, y1, z1); - vertex(x1, y2, z1); - vertex(x1, y2, z2); - - // top - normal(0, 1, 0); - vertex(x1, y1, z2); - vertex(x2, y1, z2); - vertex(x2, y1, z1); - vertex(x1, y1, z1); - - // bottom - normal(0, -1, 0); - vertex(x1, y2, z1); - vertex(x2, y2, z1); - vertex(x2, y2, z2); - vertex(x1, y2, z2); - - endShape(); - } - - - - ////////////////////////////////////////////////////////////// - - // SPHERE - - - public void sphereDetail(int res) { - sphereDetail(res, res); - } - - - /** - * Set the detail level for approximating a sphere. The ures and vres params - * control the horizontal and vertical resolution. - * - * Code for sphereDetail() submitted by toxi [031031]. - * Code for enhanced u/v version from davbol [080801]. - */ - public void sphereDetail(int ures, int vres) { - if (ures < 3) ures = 3; // force a minimum res - if (vres < 2) vres = 2; // force a minimum res - if ((ures == sphereDetailU) && (vres == sphereDetailV)) return; - - float delta = (float)SINCOS_LENGTH/ures; - float[] cx = new float[ures]; - float[] cz = new float[ures]; - // calc unit circle in XZ plane - for (int i = 0; i < ures; i++) { - cx[i] = cosLUT[(int) (i*delta) % SINCOS_LENGTH]; - cz[i] = sinLUT[(int) (i*delta) % SINCOS_LENGTH]; - } - // computing vertexlist - // vertexlist starts at south pole - int vertCount = ures * (vres-1) + 2; - int currVert = 0; - - // re-init arrays to store vertices - sphereX = new float[vertCount]; - sphereY = new float[vertCount]; - sphereZ = new float[vertCount]; - - float angle_step = (SINCOS_LENGTH*0.5f)/vres; - float angle = angle_step; - - // step along Y axis - for (int i = 1; i < vres; i++) { - float curradius = sinLUT[(int) angle % SINCOS_LENGTH]; - float currY = -cosLUT[(int) angle % SINCOS_LENGTH]; - for (int j = 0; j < ures; j++) { - sphereX[currVert] = cx[j] * curradius; - sphereY[currVert] = currY; - sphereZ[currVert++] = cz[j] * curradius; - } - angle += angle_step; - } - sphereDetailU = ures; - sphereDetailV = vres; - } - - - /** - * Draw a sphere with radius r centered at coordinate 0, 0, 0. - *

- * Implementation notes: - *

- * cache all the points of the sphere in a static array - * top and bottom are just a bunch of triangles that land - * in the center point - *

- * sphere is a series of concentric circles who radii vary - * along the shape, based on, er.. cos or something - *

-   * [toxi 031031] new sphere code. removed all multiplies with
-   * radius, as scale() will take care of that anyway
-   *
-   * [toxi 031223] updated sphere code (removed modulos)
-   * and introduced sphereAt(x,y,z,r)
-   * to avoid additional translate()'s on the user/sketch side
-   *
-   * [davbol 080801] now using separate sphereDetailU/V
-   * 
- */ - public void sphere(float r) { - if ((sphereDetailU < 3) || (sphereDetailV < 2)) { - sphereDetail(30); - } - - pushMatrix(); - scale(r); - edge(false); - - // 1st ring from south pole - beginShape(TRIANGLE_STRIP); - for (int i = 0; i < sphereDetailU; i++) { - normal(0, -1, 0); - vertex(0, -1, 0); - normal(sphereX[i], sphereY[i], sphereZ[i]); - vertex(sphereX[i], sphereY[i], sphereZ[i]); - } - //normal(0, -1, 0); - vertex(0, -1, 0); - normal(sphereX[0], sphereY[0], sphereZ[0]); - vertex(sphereX[0], sphereY[0], sphereZ[0]); - endShape(); - - int v1,v11,v2; - - // middle rings - int voff = 0; - for (int i = 2; i < sphereDetailV; i++) { - v1 = v11 = voff; - voff += sphereDetailU; - v2 = voff; - beginShape(TRIANGLE_STRIP); - for (int j = 0; j < sphereDetailU; j++) { - normal(sphereX[v1], sphereY[v1], sphereZ[v1]); - vertex(sphereX[v1], sphereY[v1], sphereZ[v1++]); - normal(sphereX[v2], sphereY[v2], sphereZ[v2]); - vertex(sphereX[v2], sphereY[v2], sphereZ[v2++]); - } - // close each ring - v1 = v11; - v2 = voff; - normal(sphereX[v1], sphereY[v1], sphereZ[v1]); - vertex(sphereX[v1], sphereY[v1], sphereZ[v1]); - normal(sphereX[v2], sphereY[v2], sphereZ[v2]); - vertex(sphereX[v2], sphereY[v2], sphereZ[v2]); - endShape(); - } - - // add the northern cap - beginShape(TRIANGLE_STRIP); - for (int i = 0; i < sphereDetailU; i++) { - v2 = voff + i; - normal(sphereX[v2], sphereY[v2], sphereZ[v2]); - vertex(sphereX[v2], sphereY[v2], sphereZ[v2]); - normal(0, 1, 0); - vertex(0, 1, 0); - } - normal(sphereX[voff], sphereY[voff], sphereZ[voff]); - vertex(sphereX[voff], sphereY[voff], sphereZ[voff]); - normal(0, 1, 0); - vertex(0, 1, 0); - endShape(); - - edge(true); - popMatrix(); - } - - - - ////////////////////////////////////////////////////////////// - - // BEZIER - - - /** - * Evalutes quadratic bezier at point t for points a, b, c, d. - * t varies between 0 and 1, and a and d are the on curve points, - * b and c are the control points. this can be done once with the - * x coordinates and a second time with the y coordinates to get - * the location of a bezier curve at t. - *

- * For instance, to convert the following example:

-   * stroke(255, 102, 0);
-   * line(85, 20, 10, 10);
-   * line(90, 90, 15, 80);
-   * stroke(0, 0, 0);
-   * bezier(85, 20, 10, 10, 90, 90, 15, 80);
-   *
-   * // draw it in gray, using 10 steps instead of the default 20
-   * // this is a slower way to do it, but useful if you need
-   * // to do things with the coordinates at each step
-   * stroke(128);
-   * beginShape(LINE_STRIP);
-   * for (int i = 0; i <= 10; i++) {
-   *   float t = i / 10.0f;
-   *   float x = bezierPoint(85, 10, 90, 15, t);
-   *   float y = bezierPoint(20, 10, 90, 80, t);
-   *   vertex(x, y);
-   * }
-   * endShape();
- */ - public float bezierPoint(float a, float b, float c, float d, float t) { - float t1 = 1.0f - t; - return a*t1*t1*t1 + 3*b*t*t1*t1 + 3*c*t*t*t1 + d*t*t*t; - } - - - /** - * Provide the tangent at the given point on the bezier curve. - * Fix from davbol for 0136. - */ - public float bezierTangent(float a, float b, float c, float d, float t) { - return (3*t*t * (-a+3*b-3*c+d) + - 6*t * (a-2*b+c) + - 3 * (-a+b)); - } - - - protected void bezierInitCheck() { - if (!bezierInited) { - bezierInit(); - } - } - - - protected void bezierInit() { - // overkill to be broken out, but better parity with the curve stuff below - bezierDetail(bezierDetail); - bezierInited = true; - } - - - public void bezierDetail(int detail) { - bezierDetail = detail; - - if (bezierDrawMatrix == null) { - bezierDrawMatrix = new PMatrix3D(); - } - - // setup matrix for forward differencing to speed up drawing - splineForward(detail, bezierDrawMatrix); - - // multiply the basis and forward diff matrices together - // saves much time since this needn't be done for each curve - //mult_spline_matrix(bezierForwardMatrix, bezier_basis, bezierDrawMatrix, 4); - //bezierDrawMatrix.set(bezierForwardMatrix); - bezierDrawMatrix.apply(bezierBasisMatrix); - } - - - /** - * Draw a cubic bezier curve. The first and last points are - * the on-curve points. The middle two are the 'control' points, - * or 'handles' in an application like Illustrator. - *

- * Identical to typing: - *

beginShape();
-   * vertex(x1, y1);
-   * bezierVertex(x2, y2, x3, y3, x4, y4);
-   * endShape();
-   * 
- * In Postscript-speak, this would be: - *
moveto(x1, y1);
-   * curveto(x2, y2, x3, y3, x4, y4);
- * If you were to try and continue that curve like so: - *
curveto(x5, y5, x6, y6, x7, y7);
- * This would be done in processing by adding these statements: - *
bezierVertex(x5, y5, x6, y6, x7, y7)
-   * 
- * To draw a quadratic (instead of cubic) curve, - * use the control point twice by doubling it: - *
bezier(x1, y1, cx, cy, cx, cy, x2, y2);
- */ - public void bezier(float x1, float y1, - float x2, float y2, - float x3, float y3, - float x4, float y4) { - beginShape(); - vertex(x1, y1); - bezierVertex(x2, y2, x3, y3, x4, y4); - endShape(); - } - - - public void bezier(float x1, float y1, float z1, - float x2, float y2, float z2, - float x3, float y3, float z3, - float x4, float y4, float z4) { - beginShape(); - vertex(x1, y1, z1); - bezierVertex(x2, y2, z2, - x3, y3, z3, - x4, y4, z4); - endShape(); - } - - - - ////////////////////////////////////////////////////////////// - - // CATMULL-ROM CURVE - - - /** - * Get a location along a catmull-rom curve segment. - * - * @param t Value between zero and one for how far along the segment - */ - public float curvePoint(float a, float b, float c, float d, float t) { - curveInitCheck(); - - float tt = t * t; - float ttt = t * tt; - PMatrix3D cb = curveBasisMatrix; - - // not optimized (and probably need not be) - return (a * (ttt*cb.m00 + tt*cb.m10 + t*cb.m20 + cb.m30) + - b * (ttt*cb.m01 + tt*cb.m11 + t*cb.m21 + cb.m31) + - c * (ttt*cb.m02 + tt*cb.m12 + t*cb.m22 + cb.m32) + - d * (ttt*cb.m03 + tt*cb.m13 + t*cb.m23 + cb.m33)); - } - - - /** - * Calculate the tangent at a t value (0..1) on a Catmull-Rom curve. - * Code thanks to Dave Bollinger (Bug #715) - */ - public float curveTangent(float a, float b, float c, float d, float t) { - curveInitCheck(); - - float tt3 = t * t * 3; - float t2 = t * 2; - PMatrix3D cb = curveBasisMatrix; - - // not optimized (and probably need not be) - return (a * (tt3*cb.m00 + t2*cb.m10 + cb.m20) + - b * (tt3*cb.m01 + t2*cb.m11 + cb.m21) + - c * (tt3*cb.m02 + t2*cb.m12 + cb.m22) + - d * (tt3*cb.m03 + t2*cb.m13 + cb.m23) ); - } - - - public void curveDetail(int detail) { - curveDetail = detail; - curveInit(); - } - - - public void curveTightness(float tightness) { - curveTightness = tightness; - curveInit(); - } - - - protected void curveInitCheck() { - if (!curveInited) { - curveInit(); - } - } - - - /** - * Set the number of segments to use when drawing a Catmull-Rom - * curve, and setting the s parameter, which defines how tightly - * the curve fits to each vertex. Catmull-Rom curves are actually - * a subset of this curve type where the s is set to zero. - *

- * (This function is not optimized, since it's not expected to - * be called all that often. there are many juicy and obvious - * opimizations in here, but it's probably better to keep the - * code more readable) - */ - protected void curveInit() { - // allocate only if/when used to save startup time - if (curveDrawMatrix == null) { - curveBasisMatrix = new PMatrix3D(); - curveDrawMatrix = new PMatrix3D(); - curveInited = true; - } - - float s = curveTightness; - curveBasisMatrix.set((s-1)/2f, (s+3)/2f, (-3-s)/2f, (1-s)/2f, - (1-s), (-5-s)/2f, (s+2), (s-1)/2f, - (s-1)/2f, 0, (1-s)/2f, 0, - 0, 1, 0, 0); - - //setup_spline_forward(segments, curveForwardMatrix); - splineForward(curveDetail, curveDrawMatrix); - - if (bezierBasisInverse == null) { - bezierBasisInverse = bezierBasisMatrix.get(); - bezierBasisInverse.invert(); - curveToBezierMatrix = new PMatrix3D(); - } - - // TODO only needed for PGraphicsJava2D? if so, move it there - // actually, it's generally useful for other renderers, so keep it - // or hide the implementation elsewhere. - curveToBezierMatrix.set(curveBasisMatrix); - curveToBezierMatrix.preApply(bezierBasisInverse); - - // multiply the basis and forward diff matrices together - // saves much time since this needn't be done for each curve - curveDrawMatrix.apply(curveBasisMatrix); - } - - - /** - * Draws a segment of Catmull-Rom curve. - *

- * As of 0070, this function no longer doubles the first and - * last points. The curves are a bit more boring, but it's more - * mathematically correct, and properly mirrored in curvePoint(). - *

- * Identical to typing out:

-   * beginShape();
-   * curveVertex(x1, y1);
-   * curveVertex(x2, y2);
-   * curveVertex(x3, y3);
-   * curveVertex(x4, y4);
-   * endShape();
-   * 
- */ - public void curve(float x1, float y1, - float x2, float y2, - float x3, float y3, - float x4, float y4) { - beginShape(); - curveVertex(x1, y1); - curveVertex(x2, y2); - curveVertex(x3, y3); - curveVertex(x4, y4); - endShape(); - } - - - public void curve(float x1, float y1, float z1, - float x2, float y2, float z2, - float x3, float y3, float z3, - float x4, float y4, float z4) { - beginShape(); - curveVertex(x1, y1, z1); - curveVertex(x2, y2, z2); - curveVertex(x3, y3, z3); - curveVertex(x4, y4, z4); - endShape(); - } - - - - ////////////////////////////////////////////////////////////// - - // SPLINE UTILITY FUNCTIONS (used by both Bezier and Catmull-Rom) - - - /** - * Setup forward-differencing matrix to be used for speedy - * curve rendering. It's based on using a specific number - * of curve segments and just doing incremental adds for each - * vertex of the segment, rather than running the mathematically - * expensive cubic equation. - * @param segments number of curve segments to use when drawing - * @param matrix target object for the new matrix - */ - protected void splineForward(int segments, PMatrix3D matrix) { - float f = 1.0f / segments; - float ff = f * f; - float fff = ff * f; - - matrix.set(0, 0, 0, 1, - fff, ff, f, 0, - 6*fff, 2*ff, 0, 0, - 6*fff, 0, 0, 0); - } - - - - ////////////////////////////////////////////////////////////// - - // SMOOTHING - - - /** - * If true in PImage, use bilinear interpolation for copy() - * operations. When inherited by PGraphics, also controls shapes. - */ - public void smooth() { - smooth = true; - } - - - /** - * Disable smoothing. See smooth(). - */ - public void noSmooth() { - smooth = false; - } - - - - ////////////////////////////////////////////////////////////// - - // IMAGE - - - /** - * The mode can only be set to CORNERS, CORNER, and CENTER. - *

- * Support for CENTER was added in release 0146. - */ - public void imageMode(int mode) { - if ((mode == CORNER) || (mode == CORNERS) || (mode == CENTER)) { - imageMode = mode; - } else { - String msg = - "imageMode() only works with CORNER, CORNERS, or CENTER"; - throw new RuntimeException(msg); - } - } - - - public void image(PImage image, float x, float y) { - // Starting in release 0144, image errors are simply ignored. - // loadImageAsync() sets width and height to -1 when loading fails. - if (image.width == -1 || image.height == -1) return; - - if (imageMode == CORNER || imageMode == CORNERS) { - imageImpl(image, - x, y, x+image.width, y+image.height, - 0, 0, image.width, image.height); - - } else if (imageMode == CENTER) { - float x1 = x - image.width/2; - float y1 = y - image.height/2; - imageImpl(image, - x1, y1, x1+image.width, y1+image.height, - 0, 0, image.width, image.height); - } - } - - - public void image(PImage image, float x, float y, float c, float d) { - image(image, x, y, c, d, 0, 0, image.width, image.height); - } - - - /** - * Draw an image(), also specifying u/v coordinates. - * In this method, the u, v coordinates are always based on image space - * location, regardless of the current textureMode(). - */ - public void image(PImage image, - float a, float b, float c, float d, - int u1, int v1, int u2, int v2) { - // Starting in release 0144, image errors are simply ignored. - // loadImageAsync() sets width and height to -1 when loading fails. - if (image.width == -1 || image.height == -1) return; - - if (imageMode == CORNER) { - if (c < 0) { // reset a negative width - a += c; c = -c; - } - if (d < 0) { // reset a negative height - b += d; d = -d; - } - - imageImpl(image, - a, b, a + c, b + d, - u1, v1, u2, v2); - - } else if (imageMode == CORNERS) { - if (c < a) { // reverse because x2 < x1 - float temp = a; a = c; c = temp; - } - if (d < b) { // reverse because y2 < y1 - float temp = b; b = d; d = temp; - } - - imageImpl(image, - a, b, c, d, - u1, v1, u2, v2); - - } else if (imageMode == CENTER) { - // c and d are width/height - if (c < 0) c = -c; - if (d < 0) d = -d; - float x1 = a - c/2; - float y1 = b - d/2; - - imageImpl(image, - x1, y1, x1 + c, y1 + d, - u1, v1, u2, v2); - } - } - - - /** - * Expects x1, y1, x2, y2 coordinates where (x2 >= x1) and (y2 >= y1). - * If tint() has been called, the image will be colored. - *

- * The default implementation draws an image as a textured quad. - * The (u, v) coordinates are in image space (they're ints, after all..) - */ - protected void imageImpl(PImage image, - float x1, float y1, float x2, float y2, - int u1, int v1, int u2, int v2) { - boolean savedStroke = stroke; -// boolean savedFill = fill; - int savedTextureMode = textureMode; - - stroke = false; -// fill = true; - textureMode = IMAGE; - -// float savedFillR = fillR; -// float savedFillG = fillG; -// float savedFillB = fillB; -// float savedFillA = fillA; -// -// if (tint) { -// fillR = tintR; -// fillG = tintG; -// fillB = tintB; -// fillA = tintA; -// -// } else { -// fillR = 1; -// fillG = 1; -// fillB = 1; -// fillA = 1; -// } - - beginShape(QUADS); - texture(image); - vertex(x1, y1, u1, v1); - vertex(x1, y2, u1, v2); - vertex(x2, y2, u2, v2); - vertex(x2, y1, u2, v1); - endShape(); - - stroke = savedStroke; -// fill = savedFill; - textureMode = savedTextureMode; - -// fillR = savedFillR; -// fillG = savedFillG; -// fillB = savedFillB; -// fillA = savedFillA; - } - - - - ////////////////////////////////////////////////////////////// - - // SHAPE - - - /** - * Set the orientation for the shape() command (like imageMode() or rectMode()). - * @param mode Either CORNER, CORNERS, or CENTER. - */ - public void shapeMode(int mode) { - this.shapeMode = mode; - } - - - public void shape(PShape shape) { - if (shape.isVisible()) { // don't do expensive matrix ops if invisible - if (shapeMode == CENTER) { - pushMatrix(); - translate(-shape.getWidth()/2, -shape.getHeight()/2); - } - - shape.draw(this); // needs to handle recorder too - - if (shapeMode == CENTER) { - popMatrix(); - } - } - } - - - /** - * Convenience method to draw at a particular location. - */ - public void shape(PShape shape, float x, float y) { - if (shape.isVisible()) { // don't do expensive matrix ops if invisible - pushMatrix(); - - if (shapeMode == CENTER) { - translate(x - shape.getWidth()/2, y - shape.getHeight()/2); - - } else if ((shapeMode == CORNER) || (shapeMode == CORNERS)) { - translate(x, y); - } - shape.draw(this); - - popMatrix(); - } - } - - - public void shape(PShape shape, float x, float y, float c, float d) { - if (shape.isVisible()) { // don't do expensive matrix ops if invisible - pushMatrix(); - - if (shapeMode == CENTER) { - // x and y are center, c and d refer to a diameter - translate(x - c/2f, y - d/2f); - scale(c / shape.getWidth(), d / shape.getHeight()); - - } else if (shapeMode == CORNER) { - translate(x, y); - scale(c / shape.getWidth(), d / shape.getHeight()); - - } else if (shapeMode == CORNERS) { - // c and d are x2/y2, make them into width/height - c -= x; - d -= y; - // then same as above - translate(x, y); - scale(c / shape.getWidth(), d / shape.getHeight()); - } - shape.draw(this); - - popMatrix(); - } - } - - - - ////////////////////////////////////////////////////////////// - - // TEXT/FONTS - - - /** - * Sets the alignment of the text to one of LEFT, CENTER, or RIGHT. - * This will also reset the vertical text alignment to BASELINE. - */ - public void textAlign(int align) { - textAlign(align, BASELINE); - } - - - /** - * Sets the horizontal and vertical alignment of the text. The horizontal - * alignment can be one of LEFT, CENTER, or RIGHT. The vertical alignment - * can be TOP, BOTTOM, CENTER, or the BASELINE (the default). - */ - public void textAlign(int alignX, int alignY) { - textAlign = alignX; - textAlignY = alignY; - } - - - /** - * Returns the ascent of the current font at the current size. - * This is a method, rather than a variable inside the PGraphics object - * because it requires calculation. - */ - public float textAscent() { - if (textFont == null) { - showTextFontException("textAscent"); - } - return textFont.ascent() * ((textMode == SCREEN) ? textFont.size : textSize); - } - - - /** - * Returns the descent of the current font at the current size. - * This is a method, rather than a variable inside the PGraphics object - * because it requires calculation. - */ - public float textDescent() { - if (textFont == null) { - showTextFontException("textDescent"); - } - return textFont.descent() * ((textMode == SCREEN) ? textFont.size : textSize); - } - - - /** - * Sets the current font. The font's size will be the "natural" - * size of this font (the size that was set when using "Create Font"). - * The leading will also be reset. - */ - public void textFont(PFont which) { - if (which != null) { - textFont = which; - if (hints[ENABLE_NATIVE_FONTS]) { - //if (which.font == null) { - which.findFont(); - //} - } - /* - textFontNative = which.font; - - //textFontNativeMetrics = null; - // changed for rev 0104 for textMode(SHAPE) in opengl - if (textFontNative != null) { - // TODO need a better way to handle this. could use reflection to get - // rid of the warning, but that'd be a little silly. supporting this is - // an artifact of supporting java 1.1, otherwise we'd use getLineMetrics, - // as recommended by the @deprecated flag. - textFontNativeMetrics = - Toolkit.getDefaultToolkit().getFontMetrics(textFontNative); - // The following is what needs to be done, however we need to be able - // to get the actual graphics context where the drawing is happening. - // For instance, parent.getGraphics() doesn't work for OpenGL since - // an OpenGL drawing surface is an embedded component. -// if (parent != null) { -// textFontNativeMetrics = parent.getGraphics().getFontMetrics(textFontNative); -// } - - // float w = font.getStringBounds(text, g2.getFontRenderContext()).getWidth(); - } - */ - textSize(which.size); - - } else { - throw new RuntimeException(ERROR_TEXTFONT_NULL_PFONT); - } - } - - - /** - * Useful function to set the font and size at the same time. - */ - public void textFont(PFont which, float size) { - textFont(which); - textSize(size); - } - - - /** - * Set the text leading to a specific value. If using a custom - * value for the text leading, you'll have to call textLeading() - * again after any calls to textSize(). - */ - public void textLeading(float leading) { - textLeading = leading; - } - - - /** - * Sets the text rendering/placement to be either SCREEN (direct - * to the screen, exact coordinates, only use the font's original size) - * or MODEL (the default, where text is manipulated by translate() and - * can have a textSize). The text size cannot be set when using - * textMode(SCREEN), because it uses the pixels directly from the font. - */ - public void textMode(int mode) { - // CENTER and MODEL overlap (they're both 3) - if ((mode == LEFT) || (mode == RIGHT)) { - showWarning("Since Processing beta, textMode() is now textAlign()."); - return; - } -// if ((mode != SCREEN) && (mode != MODEL)) { -// showError("Only textMode(SCREEN) and textMode(MODEL) " + -// "are available with this renderer."); -// } - - if (textModeCheck(mode)) { - textMode = mode; - } else { - String modeStr = String.valueOf(mode); - switch (mode) { - case SCREEN: modeStr = "SCREEN"; break; - case MODEL: modeStr = "MODEL"; break; - case SHAPE: modeStr = "SHAPE"; break; - } - showWarning("textMode(" + modeStr + ") is not supported by this renderer."); - } - - // reset the font to its natural size - // (helps with width calculations and all that) - //if (textMode == SCREEN) { - //textSize(textFont.size); - //} - - //} else { - //throw new RuntimeException("use textFont() before textMode()"); - //} - } - - - protected boolean textModeCheck(int mode) { - return true; - } - - - /** - * Sets the text size, also resets the value for the leading. - */ - public void textSize(float size) { - if (textFont != null) { -// if ((textMode == SCREEN) && (size != textFont.size)) { -// throw new RuntimeException("textSize() is ignored with " + -// "textMode(SCREEN)"); -// } - textSize = size; - textLeading = (textAscent() + textDescent()) * 1.275f; - - } else { - showTextFontException("textSize"); - } - } - - - // ........................................................ - - - public float textWidth(char c) { - textWidthBuffer[0] = c; - return textWidthImpl(textWidthBuffer, 0, 1); - } - - - /** - * Return the width of a line of text. If the text has multiple - * lines, this returns the length of the longest line. - */ - public float textWidth(String str) { - if (textFont == null) { - showTextFontException("textWidth"); - } - - int length = str.length(); - if (length > textWidthBuffer.length) { - textWidthBuffer = new char[length + 10]; - } - str.getChars(0, length, textWidthBuffer, 0); - - float wide = 0; - int index = 0; - int start = 0; - - while (index < length) { - if (textWidthBuffer[index] == '\n') { - wide = Math.max(wide, textWidthImpl(textWidthBuffer, start, index)); - start = index+1; - } - index++; - } - if (start < length) { - wide = Math.max(wide, textWidthImpl(textWidthBuffer, start, index)); - } - return wide; - } - - - /** - * TODO not sure if this stays... - */ - public float textWidth(char[] chars, int start, int length) { - return textWidthImpl(chars, start, start + length); - } - - - /** - * Implementation of returning the text width of - * the chars [start, stop) in the buffer. - * Unlike the previous version that was inside PFont, this will - * return the size not of a 1 pixel font, but the actual current size. - */ - protected float textWidthImpl(char buffer[], int start, int stop) { - float wide = 0; - for (int i = start; i < stop; i++) { - // could add kerning here, but it just ain't implemented - wide += textFont.width(buffer[i]) * textSize; - } - return wide; - } - - - // ........................................................ - - - /** - * Write text where we just left off. - */ - public void text(char c) { - text(c, textX, textY, textZ); - } - - - /** - * Draw a single character on screen. - * Extremely slow when used with textMode(SCREEN) and Java 2D, - * because loadPixels has to be called first and updatePixels last. - */ - public void text(char c, float x, float y) { - if (textFont == null) { - showTextFontException("text"); - } - - if (textMode == SCREEN) loadPixels(); - - if (textAlignY == CENTER) { - y += textAscent() / 2; - } else if (textAlignY == TOP) { - y += textAscent(); - } else if (textAlignY == BOTTOM) { - y -= textDescent(); - //} else if (textAlignY == BASELINE) { - // do nothing - } - - textBuffer[0] = c; - textLineAlignImpl(textBuffer, 0, 1, x, y); - - if (textMode == SCREEN) updatePixels(); - } - - - /** - * Draw a single character on screen (with a z coordinate) - */ - public void text(char c, float x, float y, float z) { -// if ((z != 0) && (textMode == SCREEN)) { -// String msg = "textMode(SCREEN) cannot have a z coordinate"; -// throw new RuntimeException(msg); -// } - - if (z != 0) translate(0, 0, z); // slowness, badness - - text(c, x, y); - textZ = z; - - if (z != 0) translate(0, 0, -z); - } - - - /** - * Write text where we just left off. - */ - public void text(String str) { - text(str, textX, textY, textZ); - } - - - /** - * Draw a chunk of text. - * Newlines that are \n (Unix newline or linefeed char, ascii 10) - * are honored, but \r (carriage return, Windows and Mac OS) are - * ignored. - */ - public void text(String str, float x, float y) { - if (textFont == null) { - showTextFontException("text"); - } - - if (textMode == SCREEN) loadPixels(); - - int length = str.length(); - if (length > textBuffer.length) { - textBuffer = new char[length + 10]; - } - str.getChars(0, length, textBuffer, 0); - text(textBuffer, 0, length, x, y); - } - - - /** - * Method to draw text from an array of chars. This method will usually be - * more efficient than drawing from a String object, because the String will - * not be converted to a char array before drawing. - */ - public void text(char[] chars, int start, int stop, float x, float y) { - // If multiple lines, sum the height of the additional lines - float high = 0; //-textAscent(); - for (int i = start; i < stop; i++) { - if (chars[i] == '\n') { - high += textLeading; - } - } - if (textAlignY == CENTER) { - // for a single line, this adds half the textAscent to y - // for multiple lines, subtract half the additional height - //y += (textAscent() - textDescent() - high)/2; - y += (textAscent() - high)/2; - } else if (textAlignY == TOP) { - // for a single line, need to add textAscent to y - // for multiple lines, no different - y += textAscent(); - } else if (textAlignY == BOTTOM) { - // for a single line, this is just offset by the descent - // for multiple lines, subtract leading for each line - y -= textDescent() + high; - //} else if (textAlignY == BASELINE) { - // do nothing - } - -// int start = 0; - int index = 0; - while (index < stop) { //length) { - if (chars[index] == '\n') { - textLineAlignImpl(chars, start, index, x, y); - start = index + 1; - y += textLeading; - } - index++; - } - if (start < stop) { //length) { - textLineAlignImpl(chars, start, index, x, y); - } - if (textMode == SCREEN) updatePixels(); - } - - - /** - * Same as above but with a z coordinate. - */ - public void text(String str, float x, float y, float z) { - if (z != 0) translate(0, 0, z); // slow! - - text(str, x, y); - textZ = z; - - if (z != 0) translate(0, 0, -z); // inaccurate! - } - - - public void text(char[] chars, int start, int stop, - float x, float y, float z) { - if (z != 0) translate(0, 0, z); // slow! - - text(chars, start, stop, x, y); - textZ = z; - - if (z != 0) translate(0, 0, -z); // inaccurate! - } - - - /** - * Draw text in a box that is constrained to a particular size. - * The current rectMode() determines what the coordinates mean - * (whether x1/y1/x2/y2 or x/y/w/h). - *

- * Note that the x,y coords of the start of the box - * will align with the *ascent* of the text, not the baseline, - * as is the case for the other text() functions. - *

- * Newlines that are \n (Unix newline or linefeed char, ascii 10) - * are honored, and \r (carriage return, Windows and Mac OS) are - * ignored. - */ - public void text(String str, float x1, float y1, float x2, float y2) { - if (textFont == null) { - showTextFontException("text"); - } - - if (textMode == SCREEN) loadPixels(); - - float hradius, vradius; - switch (rectMode) { - case CORNER: - x2 += x1; y2 += y1; - break; - case RADIUS: - hradius = x2; - vradius = y2; - x2 = x1 + hradius; - y2 = y1 + vradius; - x1 -= hradius; - y1 -= vradius; - break; - case CENTER: - hradius = x2 / 2.0f; - vradius = y2 / 2.0f; - x2 = x1 + hradius; - y2 = y1 + vradius; - x1 -= hradius; - y1 -= vradius; - } - if (x2 < x1) { - float temp = x1; x1 = x2; x2 = temp; - } - if (y2 < y1) { - float temp = y1; y1 = y2; y2 = temp; - } - -// float currentY = y1; - float boxWidth = x2 - x1; - -// // ala illustrator, the text itself must fit inside the box -// currentY += textAscent(); //ascent() * textSize; -// // if the box is already too small, tell em to f off -// if (currentY > y2) return; - - float spaceWidth = textWidth(' '); - - if (textBreakStart == null) { - textBreakStart = new int[20]; - textBreakStop = new int[20]; - } - textBreakCount = 0; - - int length = str.length(); - if (length + 1 > textBuffer.length) { - textBuffer = new char[length + 1]; - } - str.getChars(0, length, textBuffer, 0); - // add a fake newline to simplify calculations - textBuffer[length++] = '\n'; - - int sentenceStart = 0; - for (int i = 0; i < length; i++) { - if (textBuffer[i] == '\n') { -// currentY = textSentence(textBuffer, sentenceStart, i, -// lineX, boxWidth, currentY, y2, spaceWidth); - boolean legit = - textSentence(textBuffer, sentenceStart, i, boxWidth, spaceWidth); - if (!legit) break; -// if (Float.isNaN(currentY)) break; // word too big (or error) -// if (currentY > y2) break; // past the box - sentenceStart = i + 1; - } - } - - // lineX is the position where the text starts, which is adjusted - // to left/center/right based on the current textAlign - float lineX = x1; //boxX1; - if (textAlign == CENTER) { - lineX = lineX + boxWidth/2f; - } else if (textAlign == RIGHT) { - lineX = x2; //boxX2; - } - - float boxHeight = y2 - y1; - //int lineFitCount = 1 + PApplet.floor((boxHeight - textAscent()) / textLeading); - // incorporate textAscent() for the top (baseline will be y1 + ascent) - // and textDescent() for the bottom, so that lower parts of letters aren't - // outside the box. [0151] - float topAndBottom = textAscent() + textDescent(); - int lineFitCount = 1 + PApplet.floor((boxHeight - topAndBottom) / textLeading); - int lineCount = Math.min(textBreakCount, lineFitCount); - - if (textAlignY == CENTER) { - float lineHigh = textAscent() + textLeading * (lineCount - 1); - float y = y1 + textAscent() + (boxHeight - lineHigh) / 2; - for (int i = 0; i < lineCount; i++) { - textLineAlignImpl(textBuffer, textBreakStart[i], textBreakStop[i], lineX, y); - y += textLeading; - } - - } else if (textAlignY == BOTTOM) { - float y = y2 - textDescent() - textLeading * (lineCount - 1); - for (int i = 0; i < lineCount; i++) { - textLineAlignImpl(textBuffer, textBreakStart[i], textBreakStop[i], lineX, y); - y += textLeading; - } - - } else { // TOP or BASELINE just go to the default - float y = y1 + textAscent(); - for (int i = 0; i < lineCount; i++) { - textLineAlignImpl(textBuffer, textBreakStart[i], textBreakStop[i], lineX, y); - y += textLeading; - } - } - - if (textMode == SCREEN) updatePixels(); - } - - - /** - * Emit a sentence of text, defined as a chunk of text without any newlines. - * @param stop non-inclusive, the end of the text in question - */ - protected boolean textSentence(char[] buffer, int start, int stop, - float boxWidth, float spaceWidth) { - float runningX = 0; - - // Keep track of this separately from index, since we'll need to back up - // from index when breaking words that are too long to fit. - int lineStart = start; - int wordStart = start; - int index = start; - while (index <= stop) { - // boundary of a word or end of this sentence - if ((buffer[index] == ' ') || (index == stop)) { - float wordWidth = textWidthImpl(buffer, wordStart, index); - - if (runningX + wordWidth > boxWidth) { - if (runningX != 0) { - // Next word is too big, output the current line and advance - index = wordStart; - textSentenceBreak(lineStart, index); - // Eat whitespace because multiple spaces don't count for s* - // when they're at the end of a line. - while ((index < stop) && (buffer[index] == ' ')) { - index++; - } - } else { // (runningX == 0) - // If this is the first word on the line, and its width is greater - // than the width of the text box, then break the word where at the - // max width, and send the rest of the word to the next line. - do { - index--; - if (index == wordStart) { - // Not a single char will fit on this line. screw 'em. - //System.out.println("screw you"); - return false; //Float.NaN; - } - wordWidth = textWidthImpl(buffer, wordStart, index); - } while (wordWidth > boxWidth); - - //textLineImpl(buffer, lineStart, index, x, y); - textSentenceBreak(lineStart, index); - } - lineStart = index; - wordStart = index; - runningX = 0; - - } else if (index == stop) { - // last line in the block, time to unload - //textLineImpl(buffer, lineStart, index, x, y); - textSentenceBreak(lineStart, index); -// y += textLeading; - index++; - - } else { // this word will fit, just add it to the line - runningX += wordWidth + spaceWidth; - wordStart = index + 1; // move on to the next word - index++; - } - } else { // not a space or the last character - index++; // this is just another letter - } - } -// return y; - return true; - } - - - protected void textSentenceBreak(int start, int stop) { - if (textBreakCount == textBreakStart.length) { - textBreakStart = PApplet.expand(textBreakStart); - textBreakStop = PApplet.expand(textBreakStop); - } - textBreakStart[textBreakCount] = start; - textBreakStop[textBreakCount] = stop; - textBreakCount++; - } - - - public void text(String s, float x1, float y1, float x2, float y2, float z) { - if (z != 0) translate(0, 0, z); // slowness, badness - - text(s, x1, y1, x2, y2); - textZ = z; - - if (z != 0) translate(0, 0, -z); // TEMPORARY HACK! SLOW! - } - - - public void text(int num, float x, float y) { - text(String.valueOf(num), x, y); - } - - - public void text(int num, float x, float y, float z) { - text(String.valueOf(num), x, y, z); - } - - - /** - * This does a basic number formatting, to avoid the - * generally ugly appearance of printing floats. - * Users who want more control should use their own nf() cmmand, - * or if they want the long, ugly version of float, - * use String.valueOf() to convert the float to a String first. - */ - public void text(float num, float x, float y) { - text(PApplet.nfs(num, 0, 3), x, y); - } - - - public void text(float num, float x, float y, float z) { - text(PApplet.nfs(num, 0, 3), x, y, z); - } - - - - ////////////////////////////////////////////////////////////// - - // TEXT IMPL - - // These are most likely to be overridden by subclasses, since the other - // (public) functions handle generic features like setting alignment. - - - /** - * Handles placement of a text line, then calls textLineImpl - * to actually render at the specific point. - */ - protected void textLineAlignImpl(char buffer[], int start, int stop, - float x, float y) { - if (textAlign == CENTER) { - x -= textWidthImpl(buffer, start, stop) / 2f; - - } else if (textAlign == RIGHT) { - x -= textWidthImpl(buffer, start, stop); - } - - textLineImpl(buffer, start, stop, x, y); - } - - - /** - * Implementation of actual drawing for a line of text. - */ - protected void textLineImpl(char buffer[], int start, int stop, - float x, float y) { - for (int index = start; index < stop; index++) { - textCharImpl(buffer[index], x, y); - - // this doesn't account for kerning - x += textWidth(buffer[index]); - } - textX = x; - textY = y; - textZ = 0; // this will get set by the caller if non-zero - } - - - protected void textCharImpl(char ch, float x, float y) { //, float z) { - int index = textFont.index(ch); - if (index == -1) return; - - PImage glyph = textFont.images[index]; - - if (textMode == MODEL) { - float high = (float) textFont.height[index] / textFont.fheight; - float bwidth = (float) textFont.width[index] / textFont.fwidth; - float lextent = (float) textFont.leftExtent[index] / textFont.fwidth; - float textent = (float) textFont.topExtent[index] / textFont.fheight; - - float x1 = x + lextent * textSize; - float y1 = y - textent * textSize; - float x2 = x1 + bwidth * textSize; - float y2 = y1 + high * textSize; - - textCharModelImpl(glyph, - x1, y1, x2, y2, - //x1, y1, z, x2, y2, z, - textFont.width[index], textFont.height[index]); - - } else if (textMode == SCREEN) { - int xx = (int) x + textFont.leftExtent[index];; - int yy = (int) y - textFont.topExtent[index]; - - int w0 = textFont.width[index]; - int h0 = textFont.height[index]; - - textCharScreenImpl(glyph, xx, yy, w0, h0); - } - } - - - protected void textCharModelImpl(PImage glyph, - float x1, float y1, //float z1, - float x2, float y2, //float z2, - int u2, int v2) { - boolean savedTint = tint; - int savedTintColor = tintColor; - float savedTintR = tintR; - float savedTintG = tintG; - float savedTintB = tintB; - float savedTintA = tintA; - boolean savedTintAlpha = tintAlpha; - - tint = true; - tintColor = fillColor; - tintR = fillR; - tintG = fillG; - tintB = fillB; - tintA = fillA; - tintAlpha = fillAlpha; - - imageImpl(glyph, x1, y1, x2, y2, 0, 0, u2, v2); - - tint = savedTint; - tintColor = savedTintColor; - tintR = savedTintR; - tintG = savedTintG; - tintB = savedTintB; - tintA = savedTintA; - tintAlpha = savedTintAlpha; - } - - - protected void textCharScreenImpl(PImage glyph, - int xx, int yy, - int w0, int h0) { - int x0 = 0; - int y0 = 0; - - if ((xx >= width) || (yy >= height) || - (xx + w0 < 0) || (yy + h0 < 0)) return; - - if (xx < 0) { - x0 -= xx; - w0 += xx; - xx = 0; - } - if (yy < 0) { - y0 -= yy; - h0 += yy; - yy = 0; - } - if (xx + w0 > width) { - w0 -= ((xx + w0) - width); - } - if (yy + h0 > height) { - h0 -= ((yy + h0) - height); - } - - int fr = fillRi; - int fg = fillGi; - int fb = fillBi; - int fa = fillAi; - - int pixels1[] = glyph.pixels; //images[glyph].pixels; - - // TODO this can be optimized a bit - for (int row = y0; row < y0 + h0; row++) { - for (int col = x0; col < x0 + w0; col++) { - int a1 = (fa * pixels1[row * textFont.twidth + col]) >> 8; - int a2 = a1 ^ 0xff; - //int p1 = pixels1[row * glyph.width + col]; - int p2 = pixels[(yy + row-y0)*width + (xx+col-x0)]; - - pixels[(yy + row-y0)*width + xx+col-x0] = - (0xff000000 | - (((a1 * fr + a2 * ((p2 >> 16) & 0xff)) & 0xff00) << 8) | - (( a1 * fg + a2 * ((p2 >> 8) & 0xff)) & 0xff00) | - (( a1 * fb + a2 * ( p2 & 0xff)) >> 8)); - } - } - } - - - - ////////////////////////////////////////////////////////////// - - // MATRIX STACK - - - /** - * Push a copy of the current transformation matrix onto the stack. - */ - public void pushMatrix() { - showMethodWarning("pushMatrix"); - } - - - /** - * Replace the current transformation matrix with the top of the stack. - */ - public void popMatrix() { - showMethodWarning("popMatrix"); - } - - - - ////////////////////////////////////////////////////////////// - - // MATRIX TRANSFORMATIONS - - - /** - * Translate in X and Y. - */ - public void translate(float tx, float ty) { - showMissingWarning("translate"); - } - - - /** - * Translate in X, Y, and Z. - */ - public void translate(float tx, float ty, float tz) { - showMissingWarning("translate"); - } - - - /** - * Two dimensional rotation. - * - * Same as rotateZ (this is identical to a 3D rotation along the z-axis) - * but included for clarity. It'd be weird for people drawing 2D graphics - * to be using rotateZ. And they might kick our a-- for the confusion. - * - * Additional background. - */ - public void rotate(float angle) { - showMissingWarning("rotate"); - } - - - /** - * Rotate around the X axis. - */ - public void rotateX(float angle) { - showMethodWarning("rotateX"); - } - - - /** - * Rotate around the Y axis. - */ - public void rotateY(float angle) { - showMethodWarning("rotateY"); - } - - - /** - * Rotate around the Z axis. - * - * The functions rotate() and rotateZ() are identical, it's just that it make - * sense to have rotate() and then rotateX() and rotateY() when using 3D; - * nor does it make sense to use a function called rotateZ() if you're only - * doing things in 2D. so we just decided to have them both be the same. - */ - public void rotateZ(float angle) { - showMethodWarning("rotateZ"); - } - - - /** - * Rotate about a vector in space. Same as the glRotatef() function. - */ - public void rotate(float angle, float vx, float vy, float vz) { - showMissingWarning("rotate"); - } - - - /** - * Scale in all dimensions. - */ - public void scale(float s) { - showMissingWarning("scale"); - } - - - /** - * Scale in X and Y. Equivalent to scale(sx, sy, 1). - * - * Not recommended for use in 3D, because the z-dimension is just - * scaled by 1, since there's no way to know what else to scale it by. - */ - public void scale(float sx, float sy) { - showMissingWarning("scale"); - } - - - /** - * Scale in X, Y, and Z. - */ - public void scale(float x, float y, float z) { - showMissingWarning("scale"); - } - - - ////////////////////////////////////////////////////////////// - - // MATRIX FULL MONTY - - - /** - * Set the current transformation matrix to identity. - */ - public void resetMatrix() { - showMethodWarning("resetMatrix"); - } - - - public void applyMatrix(PMatrix source) { - if (source instanceof PMatrix2D) { - applyMatrix((PMatrix2D) source); - } else if (source instanceof PMatrix3D) { - applyMatrix((PMatrix3D) source); - } - } - - - public void applyMatrix(PMatrix2D source) { - applyMatrix(source.m00, source.m01, source.m02, - source.m10, source.m11, source.m12); - } - - - /** - * Apply a 3x2 affine transformation matrix. - */ - public void applyMatrix(float n00, float n01, float n02, - float n10, float n11, float n12) { - showMissingWarning("applyMatrix"); - } - - - public void applyMatrix(PMatrix3D source) { - applyMatrix(source.m00, source.m01, source.m02, source.m03, - source.m10, source.m11, source.m12, source.m13, - source.m20, source.m21, source.m22, source.m23, - source.m30, source.m31, source.m32, source.m33); - } - - - /** - * Apply a 4x4 transformation matrix. - */ - public void applyMatrix(float n00, float n01, float n02, float n03, - float n10, float n11, float n12, float n13, - float n20, float n21, float n22, float n23, - float n30, float n31, float n32, float n33) { - showMissingWarning("applyMatrix"); - } - - - - ////////////////////////////////////////////////////////////// - - // MATRIX GET/SET/PRINT - - - public PMatrix getMatrix() { - showMissingWarning("getMatrix"); - return null; - } - - - /** - * Copy the current transformation matrix into the specified target. - * Pass in null to create a new matrix. - */ - public PMatrix2D getMatrix(PMatrix2D target) { - showMissingWarning("getMatrix"); - return null; - } - - - /** - * Copy the current transformation matrix into the specified target. - * Pass in null to create a new matrix. - */ - public PMatrix3D getMatrix(PMatrix3D target) { - showMissingWarning("getMatrix"); - return null; - } - - - /** - * Set the current transformation matrix to the contents of another. - */ - public void setMatrix(PMatrix source) { - if (source instanceof PMatrix2D) { - setMatrix((PMatrix2D) source); - } else if (source instanceof PMatrix3D) { - setMatrix((PMatrix3D) source); - } - } - - - /** - * Set the current transformation to the contents of the specified source. - */ - public void setMatrix(PMatrix2D source) { - showMissingWarning("setMatrix"); - } - - - /** - * Set the current transformation to the contents of the specified source. - */ - public void setMatrix(PMatrix3D source) { - showMissingWarning("setMatrix"); - } - - - /** - * Print the current model (or "transformation") matrix. - */ - public void printMatrix() { - showMethodWarning("printMatrix"); - } - - - - ////////////////////////////////////////////////////////////// - - // CAMERA - - - public void beginCamera() { - showMethodWarning("beginCamera"); - } - - - public void endCamera() { - showMethodWarning("endCamera"); - } - - - public void camera() { - showMissingWarning("camera"); - } - - - public void camera(float eyeX, float eyeY, float eyeZ, - float centerX, float centerY, float centerZ, - float upX, float upY, float upZ) { - showMissingWarning("camera"); - } - - - public void printCamera() { - showMethodWarning("printCamera"); - } - - - - ////////////////////////////////////////////////////////////// - - // PROJECTION - - - public void ortho() { - showMissingWarning("ortho"); - } - - - public void ortho(float left, float right, - float bottom, float top, - float near, float far) { - showMissingWarning("ortho"); - } - - - public void perspective() { - showMissingWarning("perspective"); - } - - - public void perspective(float fovy, float aspect, float zNear, float zFar) { - showMissingWarning("perspective"); - } - - - public void frustum(float left, float right, - float bottom, float top, - float near, float far) { - showMethodWarning("frustum"); - } - - - public void printProjection() { - showMethodWarning("printCamera"); - } - - - - ////////////////////////////////////////////////////////////// - - // SCREEN TRANSFORMS - - - /** - * Given an x and y coordinate, returns the x position of where - * that point would be placed on screen, once affected by translate(), - * scale(), or any other transformations. - */ - public float screenX(float x, float y) { - showMissingWarning("screenX"); - return 0; - } - - - /** - * Given an x and y coordinate, returns the y position of where - * that point would be placed on screen, once affected by translate(), - * scale(), or any other transformations. - */ - public float screenY(float x, float y) { - showMissingWarning("screenY"); - return 0; - } - - - /** - * Maps a three dimensional point to its placement on-screen. - *

- * Given an (x, y, z) coordinate, returns the x position of where - * that point would be placed on screen, once affected by translate(), - * scale(), or any other transformations. - */ - public float screenX(float x, float y, float z) { - showMissingWarning("screenX"); - return 0; - } - - - /** - * Maps a three dimensional point to its placement on-screen. - *

- * Given an (x, y, z) coordinate, returns the y position of where - * that point would be placed on screen, once affected by translate(), - * scale(), or any other transformations. - */ - public float screenY(float x, float y, float z) { - showMissingWarning("screenY"); - return 0; - } - - - /** - * Maps a three dimensional point to its placement on-screen. - *

- * Given an (x, y, z) coordinate, returns its z value. - * This value can be used to determine if an (x, y, z) coordinate - * is in front or in back of another (x, y, z) coordinate. - * The units are based on how the zbuffer is set up, and don't - * relate to anything "real". They're only useful for in - * comparison to another value obtained from screenZ(), - * or directly out of the zbuffer[]. - */ - public float screenZ(float x, float y, float z) { - showMissingWarning("screenZ"); - return 0; - } - - - /** - * Returns the model space x value for an x, y, z coordinate. - *

- * This will give you a coordinate after it has been transformed - * by translate(), rotate(), and camera(), but not yet transformed - * by the projection matrix. For instance, his can be useful for - * figuring out how points in 3D space relate to the edge - * coordinates of a shape. - */ - public float modelX(float x, float y, float z) { - showMissingWarning("modelX"); - return 0; - } - - - /** - * Returns the model space y value for an x, y, z coordinate. - */ - public float modelY(float x, float y, float z) { - showMissingWarning("modelY"); - return 0; - } - - - /** - * Returns the model space z value for an x, y, z coordinate. - */ - public float modelZ(float x, float y, float z) { - showMissingWarning("modelZ"); - return 0; - } - - - - ////////////////////////////////////////////////////////////// - - // STYLE - - - public void pushStyle() { - if (styleStackDepth == styleStack.length) { - styleStack = (PStyle[]) PApplet.expand(styleStack); - } - if (styleStack[styleStackDepth] == null) { - styleStack[styleStackDepth] = new PStyle(); - } - PStyle s = styleStack[styleStackDepth++]; - getStyle(s); - } - - - public void popStyle() { - if (styleStackDepth == 0) { - throw new RuntimeException("Too many popStyle() without enough pushStyle()"); - } - styleStackDepth--; - style(styleStack[styleStackDepth]); - } - - - public void style(PStyle s) { - // if (s.smooth) { - // smooth(); - // } else { - // noSmooth(); - // } - - imageMode(s.imageMode); - rectMode(s.rectMode); - ellipseMode(s.ellipseMode); - shapeMode(s.shapeMode); - - if (s.tint) { - tint(s.tintColor); - } else { - noTint(); - } - if (s.fill) { - fill(s.fillColor); - } else { - noFill(); - } - if (s.stroke) { - stroke(s.strokeColor); - } else { - noStroke(); - } - strokeWeight(s.strokeWeight); - strokeCap(s.strokeCap); - strokeJoin(s.strokeJoin); - - // Set the colorMode() for the material properties. - // TODO this is really inefficient, need to just have a material() method, - // but this has the least impact to the API. - colorMode(RGB, 1); - ambient(s.ambientR, s.ambientG, s.ambientB); - emissive(s.emissiveR, s.emissiveG, s.emissiveB); - specular(s.specularR, s.specularG, s.specularB); - shininess(s.shininess); - - /* - s.ambientR = ambientR; - s.ambientG = ambientG; - s.ambientB = ambientB; - s.specularR = specularR; - s.specularG = specularG; - s.specularB = specularB; - s.emissiveR = emissiveR; - s.emissiveG = emissiveG; - s.emissiveB = emissiveB; - s.shininess = shininess; - */ - // material(s.ambientR, s.ambientG, s.ambientB, - // s.emissiveR, s.emissiveG, s.emissiveB, - // s.specularR, s.specularG, s.specularB, - // s.shininess); - - // Set this after the material properties. - colorMode(s.colorMode, - s.colorModeX, s.colorModeY, s.colorModeZ, s.colorModeA); - - // This is a bit asymmetric, since there's no way to do "noFont()", - // and a null textFont will produce an error (since usually that means that - // the font couldn't load properly). So in some cases, the font won't be - // 'cleared' to null, even though that's technically correct. - if (s.textFont != null) { - textFont(s.textFont, s.textSize); - textLeading(s.textLeading); - } - // These don't require a font to be set. - textAlign(s.textAlign, s.textAlignY); - textMode(s.textMode); - } - - - public PStyle getStyle() { // ignore - return getStyle(null); - } - - - public PStyle getStyle(PStyle s) { // ignore - if (s == null) { - s = new PStyle(); - } - - s.imageMode = imageMode; - s.rectMode = rectMode; - s.ellipseMode = ellipseMode; - s.shapeMode = shapeMode; - - s.colorMode = colorMode; - s.colorModeX = colorModeX; - s.colorModeY = colorModeY; - s.colorModeZ = colorModeZ; - s.colorModeA = colorModeA; - - s.tint = tint; - s.tintColor = tintColor; - s.fill = fill; - s.fillColor = fillColor; - s.stroke = stroke; - s.strokeColor = strokeColor; - s.strokeWeight = strokeWeight; - s.strokeCap = strokeCap; - s.strokeJoin = strokeJoin; - - s.ambientR = ambientR; - s.ambientG = ambientG; - s.ambientB = ambientB; - s.specularR = specularR; - s.specularG = specularG; - s.specularB = specularB; - s.emissiveR = emissiveR; - s.emissiveG = emissiveG; - s.emissiveB = emissiveB; - s.shininess = shininess; - - s.textFont = textFont; - s.textAlign = textAlign; - s.textAlignY = textAlignY; - s.textMode = textMode; - s.textSize = textSize; - s.textLeading = textLeading; - - return s; - } - - - - ////////////////////////////////////////////////////////////// - - // STROKE CAP/JOIN/WEIGHT - - - public void strokeWeight(float weight) { - strokeWeight = weight; - } - - - public void strokeJoin(int join) { - strokeJoin = join; - } - - - public void strokeCap(int cap) { - strokeCap = cap; - } - - - - ////////////////////////////////////////////////////////////// - - // STROKE COLOR - - - public void noStroke() { - stroke = false; - } - - - /** - * Set the tint to either a grayscale or ARGB value. - * See notes attached to the fill() function. - */ - public void stroke(int rgb) { -// if (((rgb & 0xff000000) == 0) && (rgb <= colorModeX)) { // see above -// stroke((float) rgb); -// -// } else { -// colorCalcARGB(rgb, colorModeA); -// strokeFromCalc(); -// } - colorCalc(rgb); - strokeFromCalc(); - } - - - public void stroke(int rgb, float alpha) { -// if (((rgb & 0xff000000) == 0) && (rgb <= colorModeX)) { -// stroke((float) rgb, alpha); -// -// } else { -// colorCalcARGB(rgb, alpha); -// strokeFromCalc(); -// } - colorCalc(rgb, alpha); - strokeFromCalc(); - } - - - public void stroke(float gray) { - colorCalc(gray); - strokeFromCalc(); - } - - - public void stroke(float gray, float alpha) { - colorCalc(gray, alpha); - strokeFromCalc(); - } - - - public void stroke(float x, float y, float z) { - colorCalc(x, y, z); - strokeFromCalc(); - } - - - public void stroke(float x, float y, float z, float a) { - colorCalc(x, y, z, a); - strokeFromCalc(); - } - - - protected void strokeFromCalc() { - stroke = true; - strokeR = calcR; - strokeG = calcG; - strokeB = calcB; - strokeA = calcA; - strokeRi = calcRi; - strokeGi = calcGi; - strokeBi = calcBi; - strokeAi = calcAi; - strokeColor = calcColor; - strokeAlpha = calcAlpha; - } - - - - ////////////////////////////////////////////////////////////// - - // TINT COLOR - - - public void noTint() { - tint = false; - } - - - /** - * Set the tint to either a grayscale or ARGB value. - */ - public void tint(int rgb) { -// if (((rgb & 0xff000000) == 0) && (rgb <= colorModeX)) { -// tint((float) rgb); -// -// } else { -// colorCalcARGB(rgb, colorModeA); -// tintFromCalc(); -// } - colorCalc(rgb); - tintFromCalc(); - } - - public void tint(int rgb, float alpha) { -// if (((rgb & 0xff000000) == 0) && (rgb <= colorModeX)) { -// tint((float) rgb, alpha); -// -// } else { -// colorCalcARGB(rgb, alpha); -// tintFromCalc(); -// } - colorCalc(rgb, alpha); - tintFromCalc(); - } - - public void tint(float gray) { - colorCalc(gray); - tintFromCalc(); - } - - - public void tint(float gray, float alpha) { - colorCalc(gray, alpha); - tintFromCalc(); - } - - - public void tint(float x, float y, float z) { - colorCalc(x, y, z); - tintFromCalc(); - } - - - public void tint(float x, float y, float z, float a) { - colorCalc(x, y, z, a); - tintFromCalc(); - } - - - protected void tintFromCalc() { - tint = true; - tintR = calcR; - tintG = calcG; - tintB = calcB; - tintA = calcA; - tintRi = calcRi; - tintGi = calcGi; - tintBi = calcBi; - tintAi = calcAi; - tintColor = calcColor; - tintAlpha = calcAlpha; - } - - - - ////////////////////////////////////////////////////////////// - - // FILL COLOR - - - public void noFill() { - fill = false; - } - - - /** - * Set the fill to either a grayscale value or an ARGB int. - */ - public void fill(int rgb) { -// if (((rgb & 0xff000000) == 0) && (rgb <= colorModeX)) { // see above -// fill((float) rgb); -// -// } else { -// colorCalcARGB(rgb, colorModeA); -// fillFromCalc(); -// } - colorCalc(rgb); - fillFromCalc(); - } - - - public void fill(int rgb, float alpha) { -// if (((rgb & 0xff000000) == 0) && (rgb <= colorModeX)) { // see above -// fill((float) rgb, alpha); -// -// } else { -// colorCalcARGB(rgb, alpha); -// fillFromCalc(); -// } - colorCalc(rgb, alpha); - fillFromCalc(); - } - - - public void fill(float gray) { - colorCalc(gray); - fillFromCalc(); - } - - - public void fill(float gray, float alpha) { - colorCalc(gray, alpha); - fillFromCalc(); - } - - - public void fill(float x, float y, float z) { - colorCalc(x, y, z); - fillFromCalc(); - } - - - public void fill(float x, float y, float z, float a) { - colorCalc(x, y, z, a); - fillFromCalc(); - } - - - protected void fillFromCalc() { - fill = true; - fillR = calcR; - fillG = calcG; - fillB = calcB; - fillA = calcA; - fillRi = calcRi; - fillGi = calcGi; - fillBi = calcBi; - fillAi = calcAi; - fillColor = calcColor; - fillAlpha = calcAlpha; - } - - - - ////////////////////////////////////////////////////////////// - - // MATERIAL PROPERTIES - - - public void ambient(int rgb) { -// if (((rgb & 0xff000000) == 0) && (rgb <= colorModeX)) { -// ambient((float) rgb); -// -// } else { -// colorCalcARGB(rgb, colorModeA); -// ambientFromCalc(); -// } - colorCalc(rgb); - ambientFromCalc(); - } - - - public void ambient(float gray) { - colorCalc(gray); - ambientFromCalc(); - } - - - public void ambient(float x, float y, float z) { - colorCalc(x, y, z); - ambientFromCalc(); - } - - - protected void ambientFromCalc() { - ambientR = calcR; - ambientG = calcG; - ambientB = calcB; - } - - - public void specular(int rgb) { -// if (((rgb & 0xff000000) == 0) && (rgb <= colorModeX)) { -// specular((float) rgb); -// -// } else { -// colorCalcARGB(rgb, colorModeA); -// specularFromCalc(); -// } - colorCalc(rgb); - specularFromCalc(); - } - - - public void specular(float gray) { - colorCalc(gray); - specularFromCalc(); - } - - - public void specular(float x, float y, float z) { - colorCalc(x, y, z); - specularFromCalc(); - } - - - protected void specularFromCalc() { - specularR = calcR; - specularG = calcG; - specularB = calcB; - } - - - public void shininess(float shine) { - shininess = shine; - } - - - public void emissive(int rgb) { -// if (((rgb & 0xff000000) == 0) && (rgb <= colorModeX)) { -// emissive((float) rgb); -// -// } else { -// colorCalcARGB(rgb, colorModeA); -// emissiveFromCalc(); -// } - colorCalc(rgb); - emissiveFromCalc(); - } - - - public void emissive(float gray) { - colorCalc(gray); - emissiveFromCalc(); - } - - - public void emissive(float x, float y, float z) { - colorCalc(x, y, z); - emissiveFromCalc(); - } - - - protected void emissiveFromCalc() { - emissiveR = calcR; - emissiveG = calcG; - emissiveB = calcB; - } - - - - ////////////////////////////////////////////////////////////// - - // LIGHTS - - // The details of lighting are very implementation-specific, so this base - // class does not handle any details of settings lights. It does however - // display warning messages that the functions are not available. - - - public void lights() { - showMethodWarning("lights"); - } - - public void noLights() { - showMethodWarning("noLights"); - } - - public void ambientLight(float red, float green, float blue) { - showMethodWarning("ambientLight"); - } - - public void ambientLight(float red, float green, float blue, - float x, float y, float z) { - showMethodWarning("ambientLight"); - } - - public void directionalLight(float red, float green, float blue, - float nx, float ny, float nz) { - showMethodWarning("directionalLight"); - } - - public void pointLight(float red, float green, float blue, - float x, float y, float z) { - showMethodWarning("pointLight"); - } - - public void spotLight(float red, float green, float blue, - float x, float y, float z, - float nx, float ny, float nz, - float angle, float concentration) { - showMethodWarning("spotLight"); - } - - public void lightFalloff(float constant, float linear, float quadratic) { - showMethodWarning("lightFalloff"); - } - - public void lightSpecular(float x, float y, float z) { - showMethodWarning("lightSpecular"); - } - - - - ////////////////////////////////////////////////////////////// - - // BACKGROUND - - /** - * Set the background to a gray or ARGB color. - *

- * For the main drawing surface, the alpha value will be ignored. However, - * alpha can be used on PGraphics objects from createGraphics(). This is - * the only way to set all the pixels partially transparent, for instance. - *

- * Note that background() should be called before any transformations occur, - * because some implementations may require the current transformation matrix - * to be identity before drawing. - */ - public void background(int rgb) { -// if (((rgb & 0xff000000) == 0) && (rgb <= colorModeX)) { -// background((float) rgb); -// -// } else { -// if (format == RGB) { -// rgb |= 0xff000000; // ignore alpha for main drawing surface -// } -// colorCalcARGB(rgb, colorModeA); -// backgroundFromCalc(); -// backgroundImpl(); -// } - colorCalc(rgb); - backgroundFromCalc(); - } - - - /** - * See notes about alpha in background(x, y, z, a). - */ - public void background(int rgb, float alpha) { -// if (format == RGB) { -// background(rgb); // ignore alpha for main drawing surface -// -// } else { -// if (((rgb & 0xff000000) == 0) && (rgb <= colorModeX)) { -// background((float) rgb, alpha); -// -// } else { -// colorCalcARGB(rgb, alpha); -// backgroundFromCalc(); -// backgroundImpl(); -// } -// } - colorCalc(rgb, alpha); - backgroundFromCalc(); - } - - - /** - * Set the background to a grayscale value, based on the - * current colorMode. - */ - public void background(float gray) { - colorCalc(gray); - backgroundFromCalc(); -// backgroundImpl(); - } - - - /** - * See notes about alpha in background(x, y, z, a). - */ - public void background(float gray, float alpha) { - if (format == RGB) { - background(gray); // ignore alpha for main drawing surface - - } else { - colorCalc(gray, alpha); - backgroundFromCalc(); -// backgroundImpl(); - } - } - - - /** - * Set the background to an r, g, b or h, s, b value, - * based on the current colorMode. - */ - public void background(float x, float y, float z) { - colorCalc(x, y, z); - backgroundFromCalc(); -// backgroundImpl(); - } - - - /** - * Clear the background with a color that includes an alpha value. This can - * only be used with objects created by createGraphics(), because the main - * drawing surface cannot be set transparent. - *

- * It might be tempting to use this function to partially clear the screen - * on each frame, however that's not how this function works. When calling - * background(), the pixels will be replaced with pixels that have that level - * of transparency. To do a semi-transparent overlay, use fill() with alpha - * and draw a rectangle. - */ - public void background(float x, float y, float z, float a) { -// if (format == RGB) { -// background(x, y, z); // don't allow people to set alpha -// -// } else { -// colorCalc(x, y, z, a); -// backgroundFromCalc(); -// backgroundImpl(); -// } - colorCalc(x, y, z, a); - backgroundFromCalc(); - } - - - protected void backgroundFromCalc() { - backgroundR = calcR; - backgroundG = calcG; - backgroundB = calcB; - backgroundA = (format == RGB) ? colorModeA : calcA; - backgroundRi = calcRi; - backgroundGi = calcGi; - backgroundBi = calcBi; - backgroundAi = (format == RGB) ? 255 : calcAi; - backgroundAlpha = (format == RGB) ? false : calcAlpha; - backgroundColor = calcColor; - - backgroundImpl(); - } - - - /** - * Takes an RGB or ARGB image and sets it as the background. - * The width and height of the image must be the same size as the sketch. - * Use image.resize(width, height) to make short work of such a task. - *

- * Note that even if the image is set as RGB, the high 8 bits of each pixel - * should be set opaque (0xFF000000), because the image data will be copied - * directly to the screen, and non-opaque background images may have strange - * behavior. Using image.filter(OPAQUE) will handle this easily. - *

- * When using 3D, this will also clear the zbuffer (if it exists). - */ - public void background(PImage image) { - if ((image.width != width) || (image.height != height)) { - throw new RuntimeException(ERROR_BACKGROUND_IMAGE_SIZE); - } - if ((image.format != RGB) && (image.format != ARGB)) { - throw new RuntimeException(ERROR_BACKGROUND_IMAGE_FORMAT); - } - backgroundColor = 0; // just zero it out for images - backgroundImpl(image); - } - - - /** - * Actually set the background image. This is separated from the error - * handling and other semantic goofiness that is shared across renderers. - */ - protected void backgroundImpl(PImage image) { - // blit image to the screen - set(0, 0, image); - } - - - /** - * Actual implementation of clearing the background, now that the - * internal variables for background color have been set. Called by the - * backgroundFromCalc() method, which is what all the other background() - * methods call once the work is done. - */ - protected void backgroundImpl() { - pushStyle(); - pushMatrix(); - resetMatrix(); - fill(backgroundColor); - rect(0, 0, width, height); - popMatrix(); - popStyle(); - } - - - /** - * Callback to handle clearing the background when begin/endRaw is in use. - * Handled as separate function for OpenGL (or other) subclasses that - * override backgroundImpl() but still needs this to work properly. - */ -// protected void backgroundRawImpl() { -// if (raw != null) { -// raw.colorMode(RGB, 1); -// raw.noStroke(); -// raw.fill(backgroundR, backgroundG, backgroundB); -// raw.beginShape(TRIANGLES); -// -// raw.vertex(0, 0); -// raw.vertex(width, 0); -// raw.vertex(0, height); -// -// raw.vertex(width, 0); -// raw.vertex(width, height); -// raw.vertex(0, height); -// -// raw.endShape(); -// } -// } - - - - ////////////////////////////////////////////////////////////// - - // COLOR MODE - - - public void colorMode(int mode) { - colorMode(mode, colorModeX, colorModeY, colorModeZ, colorModeA); - } - - - public void colorMode(int mode, float max) { - colorMode(mode, max, max, max, max); - } - - - /** - * Set the colorMode and the maximum values for (r, g, b) - * or (h, s, b). - *

- * Note that this doesn't set the maximum for the alpha value, - * which might be confusing if for instance you switched to - *

colorMode(HSB, 360, 100, 100);
- * because the alpha values were still between 0 and 255. - */ - public void colorMode(int mode, float maxX, float maxY, float maxZ) { - colorMode(mode, maxX, maxY, maxZ, colorModeA); - } - - - public void colorMode(int mode, - float maxX, float maxY, float maxZ, float maxA) { - colorMode = mode; - - colorModeX = maxX; // still needs to be set for hsb - colorModeY = maxY; - colorModeZ = maxZ; - colorModeA = maxA; - - // if color max values are all 1, then no need to scale - colorModeScale = - ((maxA != 1) || (maxX != maxY) || (maxY != maxZ) || (maxZ != maxA)); - - // if color is rgb/0..255 this will make it easier for the - // red() green() etc functions - colorModeDefault = (colorMode == RGB) && - (colorModeA == 255) && (colorModeX == 255) && - (colorModeY == 255) && (colorModeZ == 255); - } - - - - ////////////////////////////////////////////////////////////// - - // COLOR CALCULATIONS - - // Given input values for coloring, these functions will fill the calcXxxx - // variables with values that have been properly filtered through the - // current colorMode settings. - - // Renderers that need to subclass any drawing properties such as fill or - // stroke will usally want to override methods like fillFromCalc (or the - // same for stroke, ambient, etc.) That way the color calcuations are - // covered by this based PGraphics class, leaving only a single function - // to override/implement in the subclass. - - - /** - * Set the fill to either a grayscale value or an ARGB int. - *

- * The problem with this code is that it has to detect between these two - * situations automatically. This is done by checking to see if the high bits - * (the alpha for 0xAA000000) is set, and if not, whether the color value - * that follows is less than colorModeX (first param passed to colorMode). - *

- * This auto-detect would break in the following situation: - *

size(256, 256);
-   * for (int i = 0; i < 256; i++) {
-   *   color c = color(0, 0, 0, i);
-   *   stroke(c);
-   *   line(i, 0, i, 256);
-   * }
- * ...on the first time through the loop, where (i == 0), since the color - * itself is zero (black) then it would appear indistinguishable from code - * that reads "fill(0)". The solution is to use the four parameter versions - * of stroke or fill to more directly specify the desired result. - */ - protected void colorCalc(int rgb) { - if (((rgb & 0xff000000) == 0) && (rgb <= colorModeX)) { - colorCalc((float) rgb); - - } else { - colorCalcARGB(rgb, colorModeA); - } - } - - - protected void colorCalc(int rgb, float alpha) { - if (((rgb & 0xff000000) == 0) && (rgb <= colorModeX)) { // see above - colorCalc((float) rgb, alpha); - - } else { - colorCalcARGB(rgb, alpha); - } - } - - - protected void colorCalc(float gray) { - colorCalc(gray, colorModeA); - } - - - protected void colorCalc(float gray, float alpha) { - if (gray > colorModeX) gray = colorModeX; - if (alpha > colorModeA) alpha = colorModeA; - - if (gray < 0) gray = 0; - if (alpha < 0) alpha = 0; - - calcR = colorModeScale ? (gray / colorModeX) : gray; - calcG = calcR; - calcB = calcR; - calcA = colorModeScale ? (alpha / colorModeA) : alpha; - - calcRi = (int)(calcR*255); calcGi = (int)(calcG*255); - calcBi = (int)(calcB*255); calcAi = (int)(calcA*255); - calcColor = (calcAi << 24) | (calcRi << 16) | (calcGi << 8) | calcBi; - calcAlpha = (calcAi != 255); - } - - - protected void colorCalc(float x, float y, float z) { - colorCalc(x, y, z, colorModeA); - } - - - protected void colorCalc(float x, float y, float z, float a) { - if (x > colorModeX) x = colorModeX; - if (y > colorModeY) y = colorModeY; - if (z > colorModeZ) z = colorModeZ; - if (a > colorModeA) a = colorModeA; - - if (x < 0) x = 0; - if (y < 0) y = 0; - if (z < 0) z = 0; - if (a < 0) a = 0; - - switch (colorMode) { - case RGB: - if (colorModeScale) { - calcR = x / colorModeX; - calcG = y / colorModeY; - calcB = z / colorModeZ; - calcA = a / colorModeA; - } else { - calcR = x; calcG = y; calcB = z; calcA = a; - } - break; - - case HSB: - x /= colorModeX; // h - y /= colorModeY; // s - z /= colorModeZ; // b - - calcA = colorModeScale ? (a/colorModeA) : a; - - if (y == 0) { // saturation == 0 - calcR = calcG = calcB = z; - - } else { - float which = (x - (int)x) * 6.0f; - float f = which - (int)which; - float p = z * (1.0f - y); - float q = z * (1.0f - y * f); - float t = z * (1.0f - (y * (1.0f - f))); - - switch ((int)which) { - case 0: calcR = z; calcG = t; calcB = p; break; - case 1: calcR = q; calcG = z; calcB = p; break; - case 2: calcR = p; calcG = z; calcB = t; break; - case 3: calcR = p; calcG = q; calcB = z; break; - case 4: calcR = t; calcG = p; calcB = z; break; - case 5: calcR = z; calcG = p; calcB = q; break; - } - } - break; - } - calcRi = (int)(255*calcR); calcGi = (int)(255*calcG); - calcBi = (int)(255*calcB); calcAi = (int)(255*calcA); - calcColor = (calcAi << 24) | (calcRi << 16) | (calcGi << 8) | calcBi; - calcAlpha = (calcAi != 255); - } - - - /** - * Unpacks AARRGGBB color for direct use with colorCalc. - *

- * Handled here with its own function since this is indepenent - * of the color mode. - *

- * Strangely the old version of this code ignored the alpha - * value. not sure if that was a bug or what. - *

- * Note, no need for a bounds check since it's a 32 bit number. - */ - protected void colorCalcARGB(int argb, float alpha) { - if (alpha == colorModeA) { - calcAi = (argb >> 24) & 0xff; - calcColor = argb; - } else { - calcAi = (int) (((argb >> 24) & 0xff) * (alpha / colorModeA)); - calcColor = (calcAi << 24) | (argb & 0xFFFFFF); - } - calcRi = (argb >> 16) & 0xff; - calcGi = (argb >> 8) & 0xff; - calcBi = argb & 0xff; - calcA = (float)calcAi / 255.0f; - calcR = (float)calcRi / 255.0f; - calcG = (float)calcGi / 255.0f; - calcB = (float)calcBi / 255.0f; - calcAlpha = (calcAi != 255); - } - - - - ////////////////////////////////////////////////////////////// - - // COLOR DATATYPE STUFFING - - // The 'color' primitive type in Processing syntax is in fact a 32-bit int. - // These functions handle stuffing color values into a 32-bit cage based - // on the current colorMode settings. - - // These functions are really slow (because they take the current colorMode - // into account), but they're easy to use. Advanced users can write their - // own bit shifting operations to setup 'color' data types. - - - public final int color(int gray) { // ignore - if (((gray & 0xff000000) == 0) && (gray <= colorModeX)) { - if (colorModeDefault) { - // bounds checking to make sure the numbers aren't to high or low - if (gray > 255) gray = 255; else if (gray < 0) gray = 0; - return 0xff000000 | (gray << 16) | (gray << 8) | gray; - } else { - colorCalc(gray); - } - } else { - colorCalcARGB(gray, colorModeA); - } - return calcColor; - } - - - public final int color(float gray) { // ignore - colorCalc(gray); - return calcColor; - } - - - /** - * @param gray can be packed ARGB or a gray in this case - */ - public final int color(int gray, int alpha) { // ignore - if (colorModeDefault) { - // bounds checking to make sure the numbers aren't to high or low - if (gray > 255) gray = 255; else if (gray < 0) gray = 0; - if (alpha > 255) alpha = 255; else if (alpha < 0) alpha = 0; - - return ((alpha & 0xff) << 24) | (gray << 16) | (gray << 8) | gray; - } - colorCalc(gray, alpha); - return calcColor; - } - - - /** - * @param rgb can be packed ARGB or a gray in this case - */ - public final int color(int rgb, float alpha) { // ignore - if (((rgb & 0xff000000) == 0) && (rgb <= colorModeX)) { - colorCalc(rgb, alpha); - } else { - colorCalcARGB(rgb, alpha); - } - return calcColor; - } - - - public final int color(float gray, float alpha) { // ignore - colorCalc(gray, alpha); - return calcColor; - } - - - public final int color(int x, int y, int z) { // ignore - if (colorModeDefault) { - // bounds checking to make sure the numbers aren't to high or low - if (x > 255) x = 255; else if (x < 0) x = 0; - if (y > 255) y = 255; else if (y < 0) y = 0; - if (z > 255) z = 255; else if (z < 0) z = 0; - - return 0xff000000 | (x << 16) | (y << 8) | z; - } - colorCalc(x, y, z); - return calcColor; - } - - - public final int color(float x, float y, float z) { // ignore - colorCalc(x, y, z); - return calcColor; - } - - - public final int color(int x, int y, int z, int a) { // ignore - if (colorModeDefault) { - // bounds checking to make sure the numbers aren't to high or low - if (a > 255) a = 255; else if (a < 0) a = 0; - if (x > 255) x = 255; else if (x < 0) x = 0; - if (y > 255) y = 255; else if (y < 0) y = 0; - if (z > 255) z = 255; else if (z < 0) z = 0; - - return (a << 24) | (x << 16) | (y << 8) | z; - } - colorCalc(x, y, z, a); - return calcColor; - } - - - public final int color(float x, float y, float z, float a) { // ignore - colorCalc(x, y, z, a); - return calcColor; - } - - - - ////////////////////////////////////////////////////////////// - - // COLOR DATATYPE EXTRACTION - - // Vee have veys of making the colors talk. - - - public final float alpha(int what) { - float c = (what >> 24) & 0xff; - if (colorModeA == 255) return c; - return (c / 255.0f) * colorModeA; - } - - - public final float red(int what) { - float c = (what >> 16) & 0xff; - if (colorModeDefault) return c; - return (c / 255.0f) * colorModeX; - } - - - public final float green(int what) { - float c = (what >> 8) & 0xff; - if (colorModeDefault) return c; - return (c / 255.0f) * colorModeY; - } - - - public final float blue(int what) { - float c = (what) & 0xff; - if (colorModeDefault) return c; - return (c / 255.0f) * colorModeZ; - } - - - public final float hue(int what) { - if (what != cacheHsbKey) { - Color.RGBtoHSB((what >> 16) & 0xff, (what >> 8) & 0xff, - what & 0xff, cacheHsbValue); - cacheHsbKey = what; - } - return cacheHsbValue[0] * colorModeX; - } - - - public final float saturation(int what) { - if (what != cacheHsbKey) { - Color.RGBtoHSB((what >> 16) & 0xff, (what >> 8) & 0xff, - what & 0xff, cacheHsbValue); - cacheHsbKey = what; - } - return cacheHsbValue[1] * colorModeY; - } - - - public final float brightness(int what) { - if (what != cacheHsbKey) { - Color.RGBtoHSB((what >> 16) & 0xff, (what >> 8) & 0xff, - what & 0xff, cacheHsbValue); - cacheHsbKey = what; - } - return cacheHsbValue[2] * colorModeZ; - } - - - - ////////////////////////////////////////////////////////////// - - // COLOR DATATYPE INTERPOLATION - - // Against our better judgement. - - - /** - * Interpolate between two colors, using the current color mode. - */ - public int lerpColor(int c1, int c2, float amt) { - return lerpColor(c1, c2, amt, colorMode); - } - - static float[] lerpColorHSB1; - static float[] lerpColorHSB2; - - /** - * Interpolate between two colors. Like lerp(), but for the - * individual color components of a color supplied as an int value. - */ - static public int lerpColor(int c1, int c2, float amt, int mode) { - if (mode == RGB) { - float a1 = ((c1 >> 24) & 0xff); - float r1 = (c1 >> 16) & 0xff; - float g1 = (c1 >> 8) & 0xff; - float b1 = c1 & 0xff; - float a2 = (c2 >> 24) & 0xff; - float r2 = (c2 >> 16) & 0xff; - float g2 = (c2 >> 8) & 0xff; - float b2 = c2 & 0xff; - - return (((int) (a1 + (a2-a1)*amt) << 24) | - ((int) (r1 + (r2-r1)*amt) << 16) | - ((int) (g1 + (g2-g1)*amt) << 8) | - ((int) (b1 + (b2-b1)*amt))); - - } else if (mode == HSB) { - if (lerpColorHSB1 == null) { - lerpColorHSB1 = new float[3]; - lerpColorHSB2 = new float[3]; - } - - float a1 = (c1 >> 24) & 0xff; - float a2 = (c2 >> 24) & 0xff; - int alfa = ((int) (a1 + (a2-a1)*amt)) << 24; - - Color.RGBtoHSB((c1 >> 16) & 0xff, (c1 >> 8) & 0xff, c1 & 0xff, - lerpColorHSB1); - Color.RGBtoHSB((c2 >> 16) & 0xff, (c2 >> 8) & 0xff, c2 & 0xff, - lerpColorHSB2); - - /* If mode is HSB, this will take the shortest path around the - * color wheel to find the new color. For instance, red to blue - * will go red violet blue (backwards in hue space) rather than - * cycling through ROYGBIV. - */ - // Disabling rollover (wasn't working anyway) for 0126. - // Otherwise it makes full spectrum scale impossible for - // those who might want it...in spite of how despicable - // a full spectrum scale might be. - // roll around when 0.9 to 0.1 - // more than 0.5 away means that it should roll in the other direction - /* - float h1 = lerpColorHSB1[0]; - float h2 = lerpColorHSB2[0]; - if (Math.abs(h1 - h2) > 0.5f) { - if (h1 > h2) { - // i.e. h1 is 0.7, h2 is 0.1 - h2 += 1; - } else { - // i.e. h1 is 0.1, h2 is 0.7 - h1 += 1; - } - } - float ho = (PApplet.lerp(lerpColorHSB1[0], lerpColorHSB2[0], amt)) % 1.0f; - */ - float ho = PApplet.lerp(lerpColorHSB1[0], lerpColorHSB2[0], amt); - float so = PApplet.lerp(lerpColorHSB1[1], lerpColorHSB2[1], amt); - float bo = PApplet.lerp(lerpColorHSB1[2], lerpColorHSB2[2], amt); - - return alfa | (Color.HSBtoRGB(ho, so, bo) & 0xFFFFFF); - } - return 0; - } - - - - ////////////////////////////////////////////////////////////// - - // BEGINRAW/ENDRAW - - - /** - * Record individual lines and triangles by echoing them to another renderer. - */ - public void beginRaw(PGraphics rawGraphics) { // ignore - this.raw = rawGraphics; - rawGraphics.beginDraw(); - } - - - public void endRaw() { // ignore - if (raw != null) { - // for 3D, need to flush any geometry that's been stored for sorting - // (particularly if the ENABLE_DEPTH_SORT hint is set) - flush(); - - // just like beginDraw, this will have to be called because - // endDraw() will be happening outside of draw() - raw.endDraw(); - raw.dispose(); - raw = null; - } - } - - - - ////////////////////////////////////////////////////////////// - - // WARNINGS and EXCEPTIONS - - - static protected HashMap warnings; - - - /** - * Show a renderer error, and keep track of it so that it's only shown once. - * @param msg the error message (which will be stored for later comparison) - */ - static public void showWarning(String msg) { // ignore - if (warnings == null) { - warnings = new HashMap(); - } - if (!warnings.containsKey(msg)) { - System.err.println(msg); - warnings.put(msg, new Object()); - } - } - - - /** - * Display a warning that the specified method is only available with 3D. - * @param method The method name (no parentheses) - */ - static protected void showDepthWarning(String method) { - showWarning(method + "() can only be used with a renderer that " + - "supports 3D, such as P3D or OPENGL."); - } - - - /** - * Display a warning that the specified method that takes x, y, z parameters - * can only be used with x and y parameters in this renderer. - * @param method The method name (no parentheses) - */ - static protected void showDepthWarningXYZ(String method) { - showWarning(method + "() with x, y, and z coordinates " + - "can only be used with a renderer that " + - "supports 3D, such as P3D or OPENGL. " + - "Use a version without a z-coordinate instead."); - } - - - /** - * Display a warning that the specified method is simply unavailable. - */ - static protected void showMethodWarning(String method) { - showWarning(method + "() is not available with this renderer."); - } - - - /** - * Error that a particular variation of a method is unavailable (even though - * other variations are). For instance, if vertex(x, y, u, v) is not - * available, but vertex(x, y) is just fine. - */ - static protected void showVariationWarning(String str) { - showWarning(str + " is not available with this renderer."); - } - - - /** - * Display a warning that the specified method is not implemented, meaning - * that it could be either a completely missing function, although other - * variations of it may still work properly. - */ - static protected void showMissingWarning(String method) { - showWarning(method + "(), or this particular variation of it, " + - "is not available with this renderer."); - } - - - /** - * Show an renderer-related exception that halts the program. Currently just - * wraps the message as a RuntimeException and throws it, but might do - * something more specific might be used in the future. - */ - static public void showException(String msg) { // ignore - throw new RuntimeException(msg); - } - - - /** - * Throw an exeption that halts the program because textFont() has not been - * used prior to the specified method. - */ - static protected void showTextFontException(String method) { - throw new RuntimeException("Use textFont() before " + method + "()"); - } - - - - ////////////////////////////////////////////////////////////// - - // RENDERER SUPPORT QUERIES - - - /** - * Return true if this renderer should be drawn to the screen. Defaults to - * returning true, since nearly all renderers are on-screen beasts. But can - * be overridden for subclasses like PDF so that a window doesn't open up. - *

- * A better name? showFrame, displayable, isVisible, visible, shouldDisplay, - * what to call this? - */ - public boolean displayable() { - return true; - } - - - /** - * Return true if this renderer supports 2D drawing. Defaults to true. - */ - public boolean is2D() { - return true; - } - - - /** - * Return true if this renderer supports 2D drawing. Defaults to true. - */ - public boolean is3D() { - return false; - } -} diff --git a/core/methods/demo/PImage.java b/core/methods/demo/PImage.java deleted file mode 100644 index 276617825..000000000 --- a/core/methods/demo/PImage.java +++ /dev/null @@ -1,2862 +0,0 @@ -/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */ - -/* - Part of the Processing project - http://processing.org - - Copyright (c) 2004-08 Ben Fry and Casey Reas - Copyright (c) 2001-04 Massachusetts Institute of Technology - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General - Public License along with this library; if not, write to the - Free Software Foundation, Inc., 59 Temple Place, Suite 330, - Boston, MA 02111-1307 USA -*/ - -package processing.core; - -import java.awt.image.*; -import java.io.*; -import java.util.HashMap; - -import javax.imageio.ImageIO; - - - - -/** - * Datatype for storing images. Processing can display .gif, .jpg, .tga, and .png images. Images may be displayed in 2D and 3D space. - * Before an image is used, it must be loaded with the loadImage() function. - * The PImage object contains fields for the width and height of the image, - * as well as an array called pixels[] which contains the values for every pixel in the image. - * A group of methods, described below, allow easy access to the image's pixels and alpha channel and simplify the process of compositing. - *

Before using the pixels[] array, be sure to use the loadPixels() method on the image to make sure that the pixel data is properly loaded. - *

To create a new image, use the createImage() function (do not use new PImage()). - * =advanced - * - * Storage class for pixel data. This is the base class for most image and - * pixel information, such as PGraphics and the video library classes. - *

- * Code for copying, resizing, scaling, and blending contributed - * by toxi. - *

- * - * @webref image - * @usage Web & Application - * @instanceName img any variable of type PImage - * @see processing.core.PApplet#loadImage(String) - * @see processing.core.PApplet#imageMode(int) - * @see processing.core.PApplet#createImage(int, int) - */ -public class PImage implements PConstants, Cloneable { - - /** - * Format for this image, one of RGB, ARGB or ALPHA. - * note that RGB images still require 0xff in the high byte - * because of how they'll be manipulated by other functions - */ - public int format; - - /** - * Array containing the values for all the pixels in the image. These values are of the color datatype. - * This array is the size of the image, meaning if the image is 100x100 pixels, there will be 10000 values - * and if the window is 200x300 pixels, there will be 60000 values. - * The index value defines the position of a value within the array. - * For example, the statement color b = img.pixels[230] will set the variable b equal to the value at that location in the array. - * Before accessing this array, the data must loaded with the loadPixels() method. - * After the array data has been modified, the updatePixels() method must be run to update the changes. - * Without loadPixels(), running the code may (or will in future releases) result in a NullPointerException. - * @webref - * @brief Array containing the color of every pixel in the image - */ - public int[] pixels; - - /** - * The width of the image in units of pixels. - * @webref - * @brief Image width - */ - public int width; - /** - * The height of the image in units of pixels. - * @webref - * @brief Image height - */ - public int height; - - /** - * Path to parent object that will be used with save(). - * This prevents users from needing savePath() to use PImage.save(). - */ - public PApplet parent; - - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - - /** for subclasses that need to store info about the image */ - protected HashMap cacheMap; - - - /** modified portion of the image */ - protected boolean modified; - protected int mx1, my1, mx2, my2; - - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - - // private fields - private int fracU, ifU, fracV, ifV, u1, u2, v1, v2, sX, sY, iw, iw1, ih1; - private int ul, ll, ur, lr, cUL, cLL, cUR, cLR; - private int srcXOffset, srcYOffset; - private int r, g, b, a; - private int[] srcBuffer; - - // fixed point precision is limited to 15 bits!! - static final int PRECISIONB = 15; - static final int PRECISIONF = 1 << PRECISIONB; - static final int PREC_MAXVAL = PRECISIONF-1; - static final int PREC_ALPHA_SHIFT = 24-PRECISIONB; - static final int PREC_RED_SHIFT = 16-PRECISIONB; - - // internal kernel stuff for the gaussian blur filter - private int blurRadius; - private int blurKernelSize; - private int[] blurKernel; - private int[][] blurMult; - - - ////////////////////////////////////////////////////////////// - - - /** - * Create an empty image object, set its format to RGB. - * The pixel array is not allocated. - */ - public PImage() { - format = ARGB; // default to ARGB images for release 0116 -// cache = null; - } - - - /** - * Create a new RGB (alpha ignored) image of a specific size. - * All pixels are set to zero, meaning black, but since the - * alpha is zero, it will be transparent. - */ - public PImage(int width, int height) { - init(width, height, RGB); - - // toxi: is it maybe better to init the image with max alpha enabled? - //for(int i=0; i(); - cacheMap.put(parent, storage); - } - - - /** - * Get cache storage data for the specified renderer. Because each renderer - * will cache data in different formats, it's necessary to store cache data - * keyed by the renderer object. Otherwise, attempting to draw the same - * image to both a PGraphicsJava2D and a PGraphicsOpenGL will cause errors. - * @param parent The PGraphics object (or any object, really) associated - * @return data stored for the specified parent - */ - public Object getCache(Object parent) { - if (cacheMap == null) return null; - return cacheMap.get(parent); - } - - - /** - * Remove information associated with this renderer from the cache, if any. - * @param parent The PGraphics object whose cache data should be removed - */ - public void removeCache(Object parent) { - if (cacheMap != null) { - cacheMap.remove(parent); - } - } - - - - ////////////////////////////////////////////////////////////// - - // MARKING IMAGE AS MODIFIED / FOR USE w/ GET/SET - - - public boolean isModified() { // ignore - return modified; - } - - - public void setModified() { // ignore - modified = true; - } - - - public void setModified(boolean m) { // ignore - modified = m; - } - - - /** - * Loads the pixel data for the image into its pixels[] array. This function must always be called before reading from or writing to pixels[]. - *

Certain renderers may or may not seem to require loadPixels() or updatePixels(). However, the rule is that any time you want to manipulate the pixels[] array, you must first call loadPixels(), and after changes have been made, call updatePixels(). Even if the renderer may not seem to use this function in the current Processing release, this will always be subject to change. - * =advanced - * Call this when you want to mess with the pixels[] array. - *

- * For subclasses where the pixels[] buffer isn't set by default, - * this should copy all data into the pixels[] array - * - * @webref - * @brief Loads the pixel data for the image into its pixels[] array - */ - public void loadPixels() { // ignore - } - - public void updatePixels() { // ignore - updatePixelsImpl(0, 0, width, height); - } - - /** - * Updates the image with the data in its pixels[] array. Use in conjunction with loadPixels(). If you're only reading pixels from the array, there's no need to call updatePixels(). - *

Certain renderers may or may not seem to require loadPixels() or updatePixels(). However, the rule is that any time you want to manipulate the pixels[] array, you must first call loadPixels(), and after changes have been made, call updatePixels(). Even if the renderer may not seem to use this function in the current Processing release, this will always be subject to change. - *

Currently, none of the renderers use the additional parameters to updatePixels(), however this may be implemented in the future. - * =advanced - * Mark the pixels in this region as needing an update. - * This is not currently used by any of the renderers, however the api - * is structured this way in the hope of being able to use this to - * speed things up in the future. - * @webref - * @brief Updates the image with the data in its pixels[] array - * @param x - * @param y - * @param w - * @param h - */ - public void updatePixels(int x, int y, int w, int h) { // ignore -// if (imageMode == CORNER) { // x2, y2 are w/h -// x2 += x1; -// y2 += y1; -// -// } else if (imageMode == CENTER) { -// x1 -= x2 / 2; -// y1 -= y2 / 2; -// x2 += x1; -// y2 += y1; -// } - updatePixelsImpl(x, y, w, h); - } - - - protected void updatePixelsImpl(int x, int y, int w, int h) { - int x2 = x + w; - int y2 = y + h; - - if (!modified) { - mx1 = x; - mx2 = x2; - my1 = y; - my2 = y2; - modified = true; - - } else { - if (x < mx1) mx1 = x; - if (x > mx2) mx2 = x; - if (y < my1) my1 = y; - if (y > my2) my2 = y; - - if (x2 < mx1) mx1 = x2; - if (x2 > mx2) mx2 = x2; - if (y2 < my1) my1 = y2; - if (y2 > my2) my2 = y2; - } - } - - - - ////////////////////////////////////////////////////////////// - - // COPYING IMAGE DATA - - - /** - * Duplicate an image, returns new PImage object. - * The pixels[] array for the new object will be unique - * and recopied from the source image. This is implemented as an - * override of Object.clone(). We recommend using get() instead, - * because it prevents you from needing to catch the - * CloneNotSupportedException, and from doing a cast from the result. - */ - public Object clone() throws CloneNotSupportedException { // ignore - PImage c = (PImage) super.clone(); - - // super.clone() will only copy the reference to the pixels - // array, so this will do a proper duplication of it instead. - c.pixels = new int[width * height]; - System.arraycopy(pixels, 0, c.pixels, 0, pixels.length); - - // return the goods - return c; - } - - - /** - * Resize the image to a new width and height. To make the image scale proportionally, use 0 as the value for the wide or high parameter. - * - * @webref - * @brief Changes the size of an image to a new width and height - * @param wide the resized image width - * @param high the resized image height - * - * @see processing.core.PImage#get(int, int, int, int) - */ - public void resize(int wide, int high) { // ignore - // Make sure that the pixels[] array is valid - loadPixels(); - - if (wide <= 0 && high <= 0) { - width = 0; // Gimme a break, don't waste my time - height = 0; - pixels = new int[0]; - - } else { - if (wide == 0) { // Use height to determine relative size - float diff = (float) high / (float) height; - wide = (int) (width * diff); - } else if (high == 0) { // Use the width to determine relative size - float diff = (float) wide / (float) width; - high = (int) (height * diff); - } - PImage temp = new PImage(wide, high, this.format); - temp.copy(this, 0, 0, width, height, 0, 0, wide, high); - this.width = wide; - this.height = high; - this.pixels = temp.pixels; - } - // Mark the pixels array as altered - updatePixels(); - } - - - - ////////////////////////////////////////////////////////////// - - // GET/SET PIXELS - - - /** - * Returns an ARGB "color" type (a packed 32 bit int with the color. - * If the coordinate is outside the image, zero is returned - * (black, but completely transparent). - *

- * If the image is in RGB format (i.e. on a PVideo object), - * the value will get its high bits set, just to avoid cases where - * they haven't been set already. - *

- * If the image is in ALPHA format, this returns a white with its - * alpha value set. - *

- * This function is included primarily for beginners. It is quite - * slow because it has to check to see if the x, y that was provided - * is inside the bounds, and then has to check to see what image - * type it is. If you want things to be more efficient, access the - * pixels[] array directly. - */ - public int get(int x, int y) { - if ((x < 0) || (y < 0) || (x >= width) || (y >= height)) return 0; - - switch (format) { - case RGB: - return pixels[y*width + x] | 0xff000000; - - case ARGB: - return pixels[y*width + x]; - - case ALPHA: - return (pixels[y*width + x] << 24) | 0xffffff; - } - return 0; - } - - - /** - * Reads the color of any pixel or grabs a group of pixels. If no parameters are specified, the entire image is returned. Get the value of one pixel by specifying an x,y coordinate. Get a section of the display window by specifing an additional width and height parameter. If the pixel requested is outside of the image window, black is returned. The numbers returned are scaled according to the current color ranges, but only RGB values are returned by this function. Even though you may have drawn a shape with colorMode(HSB), the numbers returned will be in RGB. - *

Getting the color of a single pixel with get(x, y) is easy, but not as fast as grabbing the data directly from pixels[]. The equivalent statement to "get(x, y)" using pixels[] is "pixels[y*width+x]". Processing requires calling loadPixels() to load the display window data into the pixels[] array before getting the values. - *

As of release 0149, this function ignores imageMode(). - * - * @webref - * @brief Reads the color of any pixel or grabs a rectangle of pixels - * @param x x-coordinate of the pixel - * @param y y-coordinate of the pixel - * @param w width of pixel rectangle to get - * @param h height of pixel rectangle to get - * - * @see processing.core.PImage#set(int, int, int) - * @see processing.core.PImage#pixels - * @see processing.core.PImage#copy(PImage, int, int, int, int, int, int, int, int) - */ - public PImage get(int x, int y, int w, int h) { - /* - if (imageMode == CORNERS) { // if CORNER, do nothing - //x2 += x1; y2 += y1; - // w/h are x2/y2 in this case, bring em down to size - w = (w - x); - h = (h - y); - } else if (imageMode == CENTER) { - x -= w/2; - y -= h/2; - } - */ - - if (x < 0) { - w += x; // clip off the left edge - x = 0; - } - if (y < 0) { - h += y; // clip off some of the height - y = 0; - } - - if (x + w > width) w = width - x; - if (y + h > height) h = height - y; - - return getImpl(x, y, w, h); - } - - - /** - * Internal function to actually handle getting a block of pixels that - * has already been properly cropped to a valid region. That is, x/y/w/h - * are guaranteed to be inside the image space, so the implementation can - * use the fastest possible pixel copying method. - */ - protected PImage getImpl(int x, int y, int w, int h) { - PImage newbie = new PImage(w, h, format); - newbie.parent = parent; - - int index = y*width + x; - int index2 = 0; - for (int row = y; row < y+h; row++) { - System.arraycopy(pixels, index, newbie.pixels, index2, w); - index += width; - index2 += w; - } - return newbie; - } - - - /** - * Returns a copy of this PImage. Equivalent to get(0, 0, width, height). - */ - public PImage get() { - try { - PImage clone = (PImage) clone(); - // don't want to pass this down to the others - // http://dev.processing.org/bugs/show_bug.cgi?id=1245 - clone.cacheMap = null; - return clone; - } catch (CloneNotSupportedException e) { - return null; - } - } - - /** - * Changes the color of any pixel or writes an image directly into the image. The x and y parameter specify the pixel or the upper-left corner of the image. The color parameter specifies the color value.

Setting the color of a single pixel with set(x, y) is easy, but not as fast as putting the data directly into pixels[]. The equivalent statement to "set(x, y, #000000)" using pixels[] is "pixels[y*width+x] = #000000". Processing requires calling loadPixels() to load the display window data into the pixels[] array before getting the values and calling updatePixels() to update the window. - *

As of release 0149, this function ignores imageMode(). - * - * @webref - * @brief Writes a color to any pixel or writes an image into another - * @param x x-coordinate of the pixel or upper-left corner of the image - * @param y y-coordinate of the pixel or upper-left corner of the image - * @param c any value of the color datatype - * - * @see processing.core.PImage#get(int, int, int, int) - * @see processing.core.PImage#pixels - * @see processing.core.PImage#copy(PImage, int, int, int, int, int, int, int, int) - */ - public void set(int x, int y, int c) { - if ((x < 0) || (y < 0) || (x >= width) || (y >= height)) return; - pixels[y*width + x] = c; - updatePixelsImpl(x, y, x+1, y+1); // slow? - } - - - /** - * Efficient method of drawing an image's pixels directly to this surface. - * No variations are employed, meaning that any scale, tint, or imageMode - * settings will be ignored. - */ - public void set(int x, int y, PImage src) { - int sx = 0; - int sy = 0; - int sw = src.width; - int sh = src.height; - -// if (imageMode == CENTER) { -// x -= src.width/2; -// y -= src.height/2; -// } - if (x < 0) { // off left edge - sx -= x; - sw += x; - x = 0; - } - if (y < 0) { // off top edge - sy -= y; - sh += y; - y = 0; - } - if (x + sw > width) { // off right edge - sw = width - x; - } - if (y + sh > height) { // off bottom edge - sh = height - y; - } - - // this could be nonexistant - if ((sw <= 0) || (sh <= 0)) return; - - setImpl(x, y, sx, sy, sw, sh, src); - } - - - /** - * Internal function to actually handle setting a block of pixels that - * has already been properly cropped from the image to a valid region. - */ - protected void setImpl(int dx, int dy, int sx, int sy, int sw, int sh, - PImage src) { - int srcOffset = sy * src.width + sx; - int dstOffset = dy * width + dx; - - for (int y = sy; y < sy + sh; y++) { - System.arraycopy(src.pixels, srcOffset, pixels, dstOffset, sw); - srcOffset += src.width; - dstOffset += width; - } - updatePixelsImpl(sx, sy, sx+sw, sy+sh); - } - - - - ////////////////////////////////////////////////////////////// - - // ALPHA CHANNEL - - - /** - * Set alpha channel for an image. Black colors in the source - * image will make the destination image completely transparent, - * and white will make things fully opaque. Gray values will - * be in-between steps. - *

- * Strictly speaking the "blue" value from the source image is - * used as the alpha color. For a fully grayscale image, this - * is correct, but for a color image it's not 100% accurate. - * For a more accurate conversion, first use filter(GRAY) - * which will make the image into a "correct" grayscale by - * performing a proper luminance-based conversion. - * - * @param maskArray any array of Integer numbers used as the alpha channel, needs to be same length as the image's pixel array - */ - public void mask(int maskArray[]) { - loadPixels(); - // don't execute if mask image is different size - if (maskArray.length != pixels.length) { - throw new RuntimeException("The PImage used with mask() must be " + - "the same size as the applet."); - } - for (int i = 0; i < pixels.length; i++) { - pixels[i] = ((maskArray[i] & 0xff) << 24) | (pixels[i] & 0xffffff); - } - format = ARGB; - updatePixels(); - } - - - /** - * Masks part of an image from displaying by loading another image and using it as an alpha channel. - * This mask image should only contain grayscale data, but only the blue color channel is used. - * The mask image needs to be the same size as the image to which it is applied. - * In addition to using a mask image, an integer array containing the alpha channel data can be specified directly. - * This method is useful for creating dynamically generated alpha masks. - * This array must be of the same length as the target image's pixels array and should contain only grayscale data of values between 0-255. - * @webref - * @brief Masks part of the image from displaying - * @param maskImg any PImage object used as the alpha channel for "img", needs to be same size as "img" - */ - public void mask(PImage maskImg) { - mask(maskImg.pixels); - } - - - - ////////////////////////////////////////////////////////////// - - // IMAGE FILTERS - public void filter(int kind) { - loadPixels(); - - switch (kind) { - case BLUR: - // TODO write basic low-pass filter blur here - // what does photoshop do on the edges with this guy? - // better yet.. why bother? just use gaussian with radius 1 - filter(BLUR, 1); - break; - - case GRAY: - if (format == ALPHA) { - // for an alpha image, convert it to an opaque grayscale - for (int i = 0; i < pixels.length; i++) { - int col = 255 - pixels[i]; - pixels[i] = 0xff000000 | (col << 16) | (col << 8) | col; - } - format = RGB; - - } else { - // Converts RGB image data into grayscale using - // weighted RGB components, and keeps alpha channel intact. - // [toxi 040115] - for (int i = 0; i < pixels.length; i++) { - int col = pixels[i]; - // luminance = 0.3*red + 0.59*green + 0.11*blue - // 0.30 * 256 = 77 - // 0.59 * 256 = 151 - // 0.11 * 256 = 28 - int lum = (77*(col>>16&0xff) + 151*(col>>8&0xff) + 28*(col&0xff))>>8; - pixels[i] = (col & ALPHA_MASK) | lum<<16 | lum<<8 | lum; - } - } - break; - - case INVERT: - for (int i = 0; i < pixels.length; i++) { - //pixels[i] = 0xff000000 | - pixels[i] ^= 0xffffff; - } - break; - - case POSTERIZE: - throw new RuntimeException("Use filter(POSTERIZE, int levels) " + - "instead of filter(POSTERIZE)"); - - case OPAQUE: - for (int i = 0; i < pixels.length; i++) { - pixels[i] |= 0xff000000; - } - format = RGB; - break; - - case THRESHOLD: - filter(THRESHOLD, 0.5f); - break; - - // [toxi20050728] added new filters - case ERODE: - dilate(true); - break; - - case DILATE: - dilate(false); - break; - } - updatePixels(); // mark as modified - } - - - /** - * Filters an image as defined by one of the following modes:

THRESHOLD - converts the image to black and white pixels depending if they are above or below the threshold defined by the level parameter. The level must be between 0.0 (black) and 1.0(white). If no level is specified, 0.5 is used.

GRAY - converts any colors in the image to grayscale equivalents

INVERT - sets each pixel to its inverse value

POSTERIZE - limits each channel of the image to the number of colors specified as the level parameter

BLUR - executes a Guassian blur with the level parameter specifying the extent of the blurring. If no level parameter is used, the blur is equivalent to Guassian blur of radius 1.

OPAQUE - sets the alpha channel to entirely opaque.

ERODE - reduces the light areas with the amount defined by the level parameter.

DILATE - increases the light areas with the amount defined by the level parameter - * =advanced - * Method to apply a variety of basic filters to this image. - *

- *

    - *
  • filter(BLUR) provides a basic blur. - *
  • filter(GRAY) converts the image to grayscale based on luminance. - *
  • filter(INVERT) will invert the color components in the image. - *
  • filter(OPAQUE) set all the high bits in the image to opaque - *
  • filter(THRESHOLD) converts the image to black and white. - *
  • filter(DILATE) grow white/light areas - *
  • filter(ERODE) shrink white/light areas - *
- * Luminance conversion code contributed by - * toxi - *

- * Gaussian blur code contributed by - * Mario Klingemann - * - * @webref - * @brief Converts the image to grayscale or black and white - * @param kind Either THRESHOLD, GRAY, INVERT, POSTERIZE, BLUR, OPAQUE, ERODE, or DILATE - * @param param in the range from 0 to 1 - */ - public void filter(int kind, float param) { - loadPixels(); - - switch (kind) { - case BLUR: - if (format == ALPHA) - blurAlpha(param); - else if (format == ARGB) - blurARGB(param); - else - blurRGB(param); - break; - - case GRAY: - throw new RuntimeException("Use filter(GRAY) instead of " + - "filter(GRAY, param)"); - - case INVERT: - throw new RuntimeException("Use filter(INVERT) instead of " + - "filter(INVERT, param)"); - - case OPAQUE: - throw new RuntimeException("Use filter(OPAQUE) instead of " + - "filter(OPAQUE, param)"); - - case POSTERIZE: - int levels = (int)param; - if ((levels < 2) || (levels > 255)) { - throw new RuntimeException("Levels must be between 2 and 255 for " + - "filter(POSTERIZE, levels)"); - } - int levels1 = levels - 1; - for (int i = 0; i < pixels.length; i++) { - int rlevel = (pixels[i] >> 16) & 0xff; - int glevel = (pixels[i] >> 8) & 0xff; - int blevel = pixels[i] & 0xff; - rlevel = (((rlevel * levels) >> 8) * 255) / levels1; - glevel = (((glevel * levels) >> 8) * 255) / levels1; - blevel = (((blevel * levels) >> 8) * 255) / levels1; - pixels[i] = ((0xff000000 & pixels[i]) | - (rlevel << 16) | - (glevel << 8) | - blevel); - } - break; - - case THRESHOLD: // greater than or equal to the threshold - int thresh = (int) (param * 255); - for (int i = 0; i < pixels.length; i++) { - int max = Math.max((pixels[i] & RED_MASK) >> 16, - Math.max((pixels[i] & GREEN_MASK) >> 8, - (pixels[i] & BLUE_MASK))); - pixels[i] = (pixels[i] & ALPHA_MASK) | - ((max < thresh) ? 0x000000 : 0xffffff); - } - break; - - // [toxi20050728] added new filters - case ERODE: - throw new RuntimeException("Use filter(ERODE) instead of " + - "filter(ERODE, param)"); - case DILATE: - throw new RuntimeException("Use filter(DILATE) instead of " + - "filter(DILATE, param)"); - } - updatePixels(); // mark as modified - } - - - /** - * Optimized code for building the blur kernel. - * further optimized blur code (approx. 15% for radius=20) - * bigger speed gains for larger radii (~30%) - * added support for various image types (ALPHA, RGB, ARGB) - * [toxi 050728] - */ - protected void buildBlurKernel(float r) { - int radius = (int) (r * 3.5f); - radius = (radius < 1) ? 1 : ((radius < 248) ? radius : 248); - if (blurRadius != radius) { - blurRadius = radius; - blurKernelSize = 1 + blurRadius<<1; - blurKernel = new int[blurKernelSize]; - blurMult = new int[blurKernelSize][256]; - - int bk,bki; - int[] bm,bmi; - - for (int i = 1, radiusi = radius - 1; i < radius; i++) { - blurKernel[radius+i] = blurKernel[radiusi] = bki = radiusi * radiusi; - bm=blurMult[radius+i]; - bmi=blurMult[radiusi--]; - for (int j = 0; j < 256; j++) - bm[j] = bmi[j] = bki*j; - } - bk = blurKernel[radius] = radius * radius; - bm = blurMult[radius]; - for (int j = 0; j < 256; j++) - bm[j] = bk*j; - } - } - - - protected void blurAlpha(float r) { - int sum, cb; - int read, ri, ym, ymi, bk0; - int b2[] = new int[pixels.length]; - int yi = 0; - - buildBlurKernel(r); - - for (int y = 0; y < height; y++) { - for (int x = 0; x < width; x++) { - //cb = cg = cr = sum = 0; - cb = sum = 0; - read = x - blurRadius; - if (read<0) { - bk0=-read; - read=0; - } else { - if (read >= width) - break; - bk0=0; - } - for (int i = bk0; i < blurKernelSize; i++) { - if (read >= width) - break; - int c = pixels[read + yi]; - int[] bm=blurMult[i]; - cb += bm[c & BLUE_MASK]; - sum += blurKernel[i]; - read++; - } - ri = yi + x; - b2[ri] = cb / sum; - } - yi += width; - } - - yi = 0; - ym=-blurRadius; - ymi=ym*width; - - for (int y = 0; y < height; y++) { - for (int x = 0; x < width; x++) { - //cb = cg = cr = sum = 0; - cb = sum = 0; - if (ym<0) { - bk0 = ri = -ym; - read = x; - } else { - if (ym >= height) - break; - bk0 = 0; - ri = ym; - read = x + ymi; - } - for (int i = bk0; i < blurKernelSize; i++) { - if (ri >= height) - break; - int[] bm=blurMult[i]; - cb += bm[b2[read]]; - sum += blurKernel[i]; - ri++; - read += width; - } - pixels[x+yi] = (cb/sum); - } - yi += width; - ymi += width; - ym++; - } - } - - - protected void blurRGB(float r) { - int sum, cr, cg, cb; //, k; - int /*pixel,*/ read, ri, /*roff,*/ ym, ymi, /*riw,*/ bk0; - int r2[] = new int[pixels.length]; - int g2[] = new int[pixels.length]; - int b2[] = new int[pixels.length]; - int yi = 0; - - buildBlurKernel(r); - - for (int y = 0; y < height; y++) { - for (int x = 0; x < width; x++) { - cb = cg = cr = sum = 0; - read = x - blurRadius; - if (read<0) { - bk0=-read; - read=0; - } else { - if (read >= width) - break; - bk0=0; - } - for (int i = bk0; i < blurKernelSize; i++) { - if (read >= width) - break; - int c = pixels[read + yi]; - int[] bm=blurMult[i]; - cr += bm[(c & RED_MASK) >> 16]; - cg += bm[(c & GREEN_MASK) >> 8]; - cb += bm[c & BLUE_MASK]; - sum += blurKernel[i]; - read++; - } - ri = yi + x; - r2[ri] = cr / sum; - g2[ri] = cg / sum; - b2[ri] = cb / sum; - } - yi += width; - } - - yi = 0; - ym=-blurRadius; - ymi=ym*width; - - for (int y = 0; y < height; y++) { - for (int x = 0; x < width; x++) { - cb = cg = cr = sum = 0; - if (ym<0) { - bk0 = ri = -ym; - read = x; - } else { - if (ym >= height) - break; - bk0 = 0; - ri = ym; - read = x + ymi; - } - for (int i = bk0; i < blurKernelSize; i++) { - if (ri >= height) - break; - int[] bm=blurMult[i]; - cr += bm[r2[read]]; - cg += bm[g2[read]]; - cb += bm[b2[read]]; - sum += blurKernel[i]; - ri++; - read += width; - } - pixels[x+yi] = 0xff000000 | (cr/sum)<<16 | (cg/sum)<<8 | (cb/sum); - } - yi += width; - ymi += width; - ym++; - } - } - - - protected void blurARGB(float r) { - int sum, cr, cg, cb, ca; - int /*pixel,*/ read, ri, /*roff,*/ ym, ymi, /*riw,*/ bk0; - int wh = pixels.length; - int r2[] = new int[wh]; - int g2[] = new int[wh]; - int b2[] = new int[wh]; - int a2[] = new int[wh]; - int yi = 0; - - buildBlurKernel(r); - - for (int y = 0; y < height; y++) { - for (int x = 0; x < width; x++) { - cb = cg = cr = ca = sum = 0; - read = x - blurRadius; - if (read<0) { - bk0=-read; - read=0; - } else { - if (read >= width) - break; - bk0=0; - } - for (int i = bk0; i < blurKernelSize; i++) { - if (read >= width) - break; - int c = pixels[read + yi]; - int[] bm=blurMult[i]; - ca += bm[(c & ALPHA_MASK) >>> 24]; - cr += bm[(c & RED_MASK) >> 16]; - cg += bm[(c & GREEN_MASK) >> 8]; - cb += bm[c & BLUE_MASK]; - sum += blurKernel[i]; - read++; - } - ri = yi + x; - a2[ri] = ca / sum; - r2[ri] = cr / sum; - g2[ri] = cg / sum; - b2[ri] = cb / sum; - } - yi += width; - } - - yi = 0; - ym=-blurRadius; - ymi=ym*width; - - for (int y = 0; y < height; y++) { - for (int x = 0; x < width; x++) { - cb = cg = cr = ca = sum = 0; - if (ym<0) { - bk0 = ri = -ym; - read = x; - } else { - if (ym >= height) - break; - bk0 = 0; - ri = ym; - read = x + ymi; - } - for (int i = bk0; i < blurKernelSize; i++) { - if (ri >= height) - break; - int[] bm=blurMult[i]; - ca += bm[a2[read]]; - cr += bm[r2[read]]; - cg += bm[g2[read]]; - cb += bm[b2[read]]; - sum += blurKernel[i]; - ri++; - read += width; - } - pixels[x+yi] = (ca/sum)<<24 | (cr/sum)<<16 | (cg/sum)<<8 | (cb/sum); - } - yi += width; - ymi += width; - ym++; - } - } - - - /** - * Generic dilate/erode filter using luminance values - * as decision factor. [toxi 050728] - */ - protected void dilate(boolean isInverted) { - int currIdx=0; - int maxIdx=pixels.length; - int[] out=new int[maxIdx]; - - if (!isInverted) { - // erosion (grow light areas) - while (currIdx=maxRowIdx) - idxRight=currIdx; - if (idxUp<0) - idxUp=0; - if (idxDown>=maxIdx) - idxDown=currIdx; - - int colUp=pixels[idxUp]; - int colLeft=pixels[idxLeft]; - int colDown=pixels[idxDown]; - int colRight=pixels[idxRight]; - - // compute luminance - int currLum = - 77*(colOrig>>16&0xff) + 151*(colOrig>>8&0xff) + 28*(colOrig&0xff); - int lumLeft = - 77*(colLeft>>16&0xff) + 151*(colLeft>>8&0xff) + 28*(colLeft&0xff); - int lumRight = - 77*(colRight>>16&0xff) + 151*(colRight>>8&0xff) + 28*(colRight&0xff); - int lumUp = - 77*(colUp>>16&0xff) + 151*(colUp>>8&0xff) + 28*(colUp&0xff); - int lumDown = - 77*(colDown>>16&0xff) + 151*(colDown>>8&0xff) + 28*(colDown&0xff); - - if (lumLeft>currLum) { - colOut=colLeft; - currLum=lumLeft; - } - if (lumRight>currLum) { - colOut=colRight; - currLum=lumRight; - } - if (lumUp>currLum) { - colOut=colUp; - currLum=lumUp; - } - if (lumDown>currLum) { - colOut=colDown; - currLum=lumDown; - } - out[currIdx++]=colOut; - } - } - } else { - // dilate (grow dark areas) - while (currIdx=maxRowIdx) - idxRight=currIdx; - if (idxUp<0) - idxUp=0; - if (idxDown>=maxIdx) - idxDown=currIdx; - - int colUp=pixels[idxUp]; - int colLeft=pixels[idxLeft]; - int colDown=pixels[idxDown]; - int colRight=pixels[idxRight]; - - // compute luminance - int currLum = - 77*(colOrig>>16&0xff) + 151*(colOrig>>8&0xff) + 28*(colOrig&0xff); - int lumLeft = - 77*(colLeft>>16&0xff) + 151*(colLeft>>8&0xff) + 28*(colLeft&0xff); - int lumRight = - 77*(colRight>>16&0xff) + 151*(colRight>>8&0xff) + 28*(colRight&0xff); - int lumUp = - 77*(colUp>>16&0xff) + 151*(colUp>>8&0xff) + 28*(colUp&0xff); - int lumDown = - 77*(colDown>>16&0xff) + 151*(colDown>>8&0xff) + 28*(colDown&0xff); - - if (lumLeft
As of release 0149, this function ignores imageMode(). - * - * @webref - * @brief Copies the entire image - * @param sx X coordinate of the source's upper left corner - * @param sy Y coordinate of the source's upper left corner - * @param sw source image width - * @param sh source image height - * @param dx X coordinate of the destination's upper left corner - * @param dy Y coordinate of the destination's upper left corner - * @param dw destination image width - * @param dh destination image height - * @param src an image variable referring to the source image. - * - * @see processing.core.PApplet#alpha(int) - * @see processing.core.PApplet#blend(PImage, int, int, int, int, int, int, int, int, int) - */ - public void copy(PImage src, - int sx, int sy, int sw, int sh, - int dx, int dy, int dw, int dh) { - blend(src, sx, sy, sw, sh, dx, dy, dw, dh, REPLACE); - } - - - - ////////////////////////////////////////////////////////////// - - // BLEND - - - /** - * Blend two colors based on a particular mode. - *

    - *
  • REPLACE - destination colour equals colour of source pixel: C = A. - * Sometimes called "Normal" or "Copy" in other software. - * - *
  • BLEND - linear interpolation of colours: - * C = A*factor + B - * - *
  • ADD - additive blending with white clip: - * C = min(A*factor + B, 255). - * Clipped to 0..255, Photoshop calls this "Linear Burn", - * and Director calls it "Add Pin". - * - *
  • SUBTRACT - substractive blend with black clip: - * C = max(B - A*factor, 0). - * Clipped to 0..255, Photoshop calls this "Linear Dodge", - * and Director calls it "Subtract Pin". - * - *
  • DARKEST - only the darkest colour succeeds: - * C = min(A*factor, B). - * Illustrator calls this "Darken". - * - *
  • LIGHTEST - only the lightest colour succeeds: - * C = max(A*factor, B). - * Illustrator calls this "Lighten". - * - *
  • DIFFERENCE - subtract colors from underlying image. - * - *
  • EXCLUSION - similar to DIFFERENCE, but less extreme. - * - *
  • MULTIPLY - Multiply the colors, result will always be darker. - * - *
  • SCREEN - Opposite multiply, uses inverse values of the colors. - * - *
  • OVERLAY - A mix of MULTIPLY and SCREEN. Multiplies dark values, - * and screens light values. - * - *
  • HARD_LIGHT - SCREEN when greater than 50% gray, MULTIPLY when lower. - * - *
  • SOFT_LIGHT - Mix of DARKEST and LIGHTEST. - * Works like OVERLAY, but not as harsh. - * - *
  • DODGE - Lightens light tones and increases contrast, ignores darks. - * Called "Color Dodge" in Illustrator and Photoshop. - * - *
  • BURN - Darker areas are applied, increasing contrast, ignores lights. - * Called "Color Burn" in Illustrator and Photoshop. - *
- *

A useful reference for blending modes and their algorithms can be - * found in the SVG - * specification.

- *

It is important to note that Processing uses "fast" code, not - * necessarily "correct" code. No biggie, most software does. A nitpicker - * can find numerous "off by 1 division" problems in the blend code where - * >>8 or >>7 is used when strictly speaking - * /255.0 or /127.0 should have been used.

- *

For instance, exclusion (not intended for real-time use) reads - * r1 + r2 - ((2 * r1 * r2) / 255) because 255 == 1.0 - * not 256 == 1.0. In other words, (255*255)>>8 is not - * the same as (255*255)/255. But for real-time use the shifts - * are preferrable, and the difference is insignificant for applications - * built with Processing.

- */ - static public int blendColor(int c1, int c2, int mode) { - switch (mode) { - case REPLACE: return c2; - case BLEND: return blend_blend(c1, c2); - - case ADD: return blend_add_pin(c1, c2); - case SUBTRACT: return blend_sub_pin(c1, c2); - - case LIGHTEST: return blend_lightest(c1, c2); - case DARKEST: return blend_darkest(c1, c2); - - case DIFFERENCE: return blend_difference(c1, c2); - case EXCLUSION: return blend_exclusion(c1, c2); - - case MULTIPLY: return blend_multiply(c1, c2); - case SCREEN: return blend_screen(c1, c2); - - case HARD_LIGHT: return blend_hard_light(c1, c2); - case SOFT_LIGHT: return blend_soft_light(c1, c2); - case OVERLAY: return blend_overlay(c1, c2); - - case DODGE: return blend_dodge(c1, c2); - case BURN: return blend_burn(c1, c2); - } - return 0; - } - - - /** - * Blends one area of this image to another area. - * - * - * @see processing.core.PImage#blendColor(int,int,int) - */ - public void blend(int sx, int sy, int sw, int sh, - int dx, int dy, int dw, int dh, int mode) { - blend(this, sx, sy, sw, sh, dx, dy, dw, dh, mode); - } - - - /** - * Blends a region of pixels into the image specified by the img parameter. These copies utilize full alpha channel support and a choice of the following modes to blend the colors of source pixels (A) with the ones of pixels in the destination image (B):

- * BLEND - linear interpolation of colours: C = A*factor + B

- * ADD - additive blending with white clip: C = min(A*factor + B, 255)

- * SUBTRACT - subtractive blending with black clip: C = max(B - A*factor, 0)

- * DARKEST - only the darkest colour succeeds: C = min(A*factor, B)

- * LIGHTEST - only the lightest colour succeeds: C = max(A*factor, B)

- * DIFFERENCE - subtract colors from underlying image.

- * EXCLUSION - similar to DIFFERENCE, but less extreme.

- * MULTIPLY - Multiply the colors, result will always be darker.

- * SCREEN - Opposite multiply, uses inverse values of the colors.

- * OVERLAY - A mix of MULTIPLY and SCREEN. Multiplies dark values, and screens light values.

- * HARD_LIGHT - SCREEN when greater than 50% gray, MULTIPLY when lower.

- * SOFT_LIGHT - Mix of DARKEST and LIGHTEST. Works like OVERLAY, but not as harsh.

- * DODGE - Lightens light tones and increases contrast, ignores darks. Called "Color Dodge" in Illustrator and Photoshop.

- * BURN - Darker areas are applied, increasing contrast, ignores lights. Called "Color Burn" in Illustrator and Photoshop.

- * All modes use the alpha information (highest byte) of source image pixels as the blending factor. If the source and destination regions are different sizes, the image will be automatically resized to match the destination size. If the srcImg parameter is not used, the display window is used as the source image.

- * As of release 0149, this function ignores imageMode(). - * - * @webref - * @brief Copies a pixel or rectangle of pixels using different blending modes - * @param src an image variable referring to the source image - * @param sx X coordinate of the source's upper left corner - * @param sy Y coordinate of the source's upper left corner - * @param sw source image width - * @param sh source image height - * @param dx X coordinate of the destinations's upper left corner - * @param dy Y coordinate of the destinations's upper left corner - * @param dw destination image width - * @param dh destination image height - * @param mode Either BLEND, ADD, SUBTRACT, LIGHTEST, DARKEST, DIFFERENCE, EXCLUSION, MULTIPLY, SCREEN, OVERLAY, HARD_LIGHT, SOFT_LIGHT, DODGE, BURN - * - * @see processing.core.PApplet#alpha(int) - * @see processing.core.PApplet#copy(PImage, int, int, int, int, int, int, int, int) - * @see processing.core.PImage#blendColor(int,int,int) - */ - public void blend(PImage src, - int sx, int sy, int sw, int sh, - int dx, int dy, int dw, int dh, int mode) { - /* - if (imageMode == CORNER) { // if CORNERS, do nothing - sx2 += sx1; - sy2 += sy1; - dx2 += dx1; - dy2 += dy1; - - } else if (imageMode == CENTER) { - sx1 -= sx2 / 2f; - sy1 -= sy2 / 2f; - sx2 += sx1; - sy2 += sy1; - dx1 -= dx2 / 2f; - dy1 -= dy2 / 2f; - dx2 += dx1; - dy2 += dy1; - } - */ - int sx2 = sx + sw; - int sy2 = sy + sh; - int dx2 = dx + dw; - int dy2 = dy + dh; - - loadPixels(); - if (src == this) { - if (intersect(sx, sy, sx2, sy2, dx, dy, dx2, dy2)) { - blit_resize(get(sx, sy, sx2 - sx, sy2 - sy), - 0, 0, sx2 - sx - 1, sy2 - sy - 1, - pixels, width, height, dx, dy, dx2, dy2, mode); - } else { - // same as below, except skip the loadPixels() because it'd be redundant - blit_resize(src, sx, sy, sx2, sy2, - pixels, width, height, dx, dy, dx2, dy2, mode); - } - } else { - src.loadPixels(); - blit_resize(src, sx, sy, sx2, sy2, - pixels, width, height, dx, dy, dx2, dy2, mode); - //src.updatePixels(); - } - updatePixels(); - } - - - /** - * Check to see if two rectangles intersect one another - */ - private boolean intersect(int sx1, int sy1, int sx2, int sy2, - int dx1, int dy1, int dx2, int dy2) { - int sw = sx2 - sx1 + 1; - int sh = sy2 - sy1 + 1; - int dw = dx2 - dx1 + 1; - int dh = dy2 - dy1 + 1; - - if (dx1 < sx1) { - dw += dx1 - sx1; - if (dw > sw) { - dw = sw; - } - } else { - int w = sw + sx1 - dx1; - if (dw > w) { - dw = w; - } - } - if (dy1 < sy1) { - dh += dy1 - sy1; - if (dh > sh) { - dh = sh; - } - } else { - int h = sh + sy1 - dy1; - if (dh > h) { - dh = h; - } - } - return !(dw <= 0 || dh <= 0); - } - - - ////////////////////////////////////////////////////////////// - - - /** - * Internal blitter/resizer/copier from toxi. - * Uses bilinear filtering if smooth() has been enabled - * 'mode' determines the blending mode used in the process. - */ - private void blit_resize(PImage img, - int srcX1, int srcY1, int srcX2, int srcY2, - int[] destPixels, int screenW, int screenH, - int destX1, int destY1, int destX2, int destY2, - int mode) { - if (srcX1 < 0) srcX1 = 0; - if (srcY1 < 0) srcY1 = 0; - if (srcX2 >= img.width) srcX2 = img.width - 1; - if (srcY2 >= img.height) srcY2 = img.height - 1; - - int srcW = srcX2 - srcX1; - int srcH = srcY2 - srcY1; - int destW = destX2 - destX1; - int destH = destY2 - destY1; - - boolean smooth = true; // may as well go with the smoothing these days - - if (!smooth) { - srcW++; srcH++; - } - - if (destW <= 0 || destH <= 0 || - srcW <= 0 || srcH <= 0 || - destX1 >= screenW || destY1 >= screenH || - srcX1 >= img.width || srcY1 >= img.height) { - return; - } - - int dx = (int) (srcW / (float) destW * PRECISIONF); - int dy = (int) (srcH / (float) destH * PRECISIONF); - - srcXOffset = (int) (destX1 < 0 ? -destX1 * dx : srcX1 * PRECISIONF); - srcYOffset = (int) (destY1 < 0 ? -destY1 * dy : srcY1 * PRECISIONF); - - if (destX1 < 0) { - destW += destX1; - destX1 = 0; - } - if (destY1 < 0) { - destH += destY1; - destY1 = 0; - } - - destW = low(destW, screenW - destX1); - destH = low(destH, screenH - destY1); - - int destOffset = destY1 * screenW + destX1; - srcBuffer = img.pixels; - - if (smooth) { - // use bilinear filtering - iw = img.width; - iw1 = img.width - 1; - ih1 = img.height - 1; - - switch (mode) { - - case BLEND: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - // davbol - renamed old blend_multiply to blend_blend - destPixels[destOffset + x] = - blend_blend(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case ADD: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_add_pin(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case SUBTRACT: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_sub_pin(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case LIGHTEST: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_lightest(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case DARKEST: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_darkest(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case REPLACE: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = filter_bilinear(); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case DIFFERENCE: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_difference(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case EXCLUSION: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_exclusion(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case MULTIPLY: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_multiply(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case SCREEN: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_screen(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case OVERLAY: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_overlay(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case HARD_LIGHT: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_hard_light(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case SOFT_LIGHT: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_soft_light(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - // davbol - proposed 2007-01-09 - case DODGE: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_dodge(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case BURN: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_burn(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - } - - } else { - // nearest neighbour scaling (++fast!) - switch (mode) { - - case BLEND: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - // davbol - renamed old blend_multiply to blend_blend - destPixels[destOffset + x] = - blend_blend(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case ADD: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_add_pin(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case SUBTRACT: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_sub_pin(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case LIGHTEST: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_lightest(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case DARKEST: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_darkest(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case REPLACE: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = srcBuffer[sY + (sX >> PRECISIONB)]; - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case DIFFERENCE: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_difference(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case EXCLUSION: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_exclusion(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case MULTIPLY: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_multiply(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case SCREEN: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_screen(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case OVERLAY: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_overlay(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case HARD_LIGHT: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_hard_light(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case SOFT_LIGHT: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_soft_light(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - // davbol - proposed 2007-01-09 - case DODGE: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_dodge(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case BURN: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_burn(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - } - } - } - - - private void filter_new_scanline() { - sX = srcXOffset; - fracV = srcYOffset & PREC_MAXVAL; - ifV = PREC_MAXVAL - fracV; - v1 = (srcYOffset >> PRECISIONB) * iw; - v2 = low((srcYOffset >> PRECISIONB) + 1, ih1) * iw; - } - - - private int filter_bilinear() { - fracU = sX & PREC_MAXVAL; - ifU = PREC_MAXVAL - fracU; - ul = (ifU * ifV) >> PRECISIONB; - ll = (ifU * fracV) >> PRECISIONB; - ur = (fracU * ifV) >> PRECISIONB; - lr = (fracU * fracV) >> PRECISIONB; - u1 = (sX >> PRECISIONB); - u2 = low(u1 + 1, iw1); - - // get color values of the 4 neighbouring texels - cUL = srcBuffer[v1 + u1]; - cUR = srcBuffer[v1 + u2]; - cLL = srcBuffer[v2 + u1]; - cLR = srcBuffer[v2 + u2]; - - r = ((ul*((cUL&RED_MASK)>>16) + ll*((cLL&RED_MASK)>>16) + - ur*((cUR&RED_MASK)>>16) + lr*((cLR&RED_MASK)>>16)) - << PREC_RED_SHIFT) & RED_MASK; - - g = ((ul*(cUL&GREEN_MASK) + ll*(cLL&GREEN_MASK) + - ur*(cUR&GREEN_MASK) + lr*(cLR&GREEN_MASK)) - >>> PRECISIONB) & GREEN_MASK; - - b = (ul*(cUL&BLUE_MASK) + ll*(cLL&BLUE_MASK) + - ur*(cUR&BLUE_MASK) + lr*(cLR&BLUE_MASK)) - >>> PRECISIONB; - - a = ((ul*((cUL&ALPHA_MASK)>>>24) + ll*((cLL&ALPHA_MASK)>>>24) + - ur*((cUR&ALPHA_MASK)>>>24) + lr*((cLR&ALPHA_MASK)>>>24)) - << PREC_ALPHA_SHIFT) & ALPHA_MASK; - - return a | r | g | b; - } - - - - ////////////////////////////////////////////////////////////// - - // internal blending methods - - - private static int low(int a, int b) { - return (a < b) ? a : b; - } - - - private static int high(int a, int b) { - return (a > b) ? a : b; - } - - // davbol - added peg helper, equiv to constrain(n,0,255) - private static int peg(int n) { - return (n < 0) ? 0 : ((n > 255) ? 255 : n); - } - - private static int mix(int a, int b, int f) { - return a + (((b - a) * f) >> 8); - } - - - - ///////////////////////////////////////////////////////////// - - // BLEND MODE IMPLEMENTIONS - - - private static int blend_blend(int a, int b) { - int f = (b & ALPHA_MASK) >>> 24; - - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - mix(a & RED_MASK, b & RED_MASK, f) & RED_MASK | - mix(a & GREEN_MASK, b & GREEN_MASK, f) & GREEN_MASK | - mix(a & BLUE_MASK, b & BLUE_MASK, f)); - } - - - /** - * additive blend with clipping - */ - private static int blend_add_pin(int a, int b) { - int f = (b & ALPHA_MASK) >>> 24; - - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - low(((a & RED_MASK) + - ((b & RED_MASK) >> 8) * f), RED_MASK) & RED_MASK | - low(((a & GREEN_MASK) + - ((b & GREEN_MASK) >> 8) * f), GREEN_MASK) & GREEN_MASK | - low((a & BLUE_MASK) + - (((b & BLUE_MASK) * f) >> 8), BLUE_MASK)); - } - - - /** - * subtractive blend with clipping - */ - private static int blend_sub_pin(int a, int b) { - int f = (b & ALPHA_MASK) >>> 24; - - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - high(((a & RED_MASK) - ((b & RED_MASK) >> 8) * f), - GREEN_MASK) & RED_MASK | - high(((a & GREEN_MASK) - ((b & GREEN_MASK) >> 8) * f), - BLUE_MASK) & GREEN_MASK | - high((a & BLUE_MASK) - (((b & BLUE_MASK) * f) >> 8), 0)); - } - - - /** - * only returns the blended lightest colour - */ - private static int blend_lightest(int a, int b) { - int f = (b & ALPHA_MASK) >>> 24; - - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - high(a & RED_MASK, ((b & RED_MASK) >> 8) * f) & RED_MASK | - high(a & GREEN_MASK, ((b & GREEN_MASK) >> 8) * f) & GREEN_MASK | - high(a & BLUE_MASK, ((b & BLUE_MASK) * f) >> 8)); - } - - - /** - * only returns the blended darkest colour - */ - private static int blend_darkest(int a, int b) { - int f = (b & ALPHA_MASK) >>> 24; - - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - mix(a & RED_MASK, - low(a & RED_MASK, - ((b & RED_MASK) >> 8) * f), f) & RED_MASK | - mix(a & GREEN_MASK, - low(a & GREEN_MASK, - ((b & GREEN_MASK) >> 8) * f), f) & GREEN_MASK | - mix(a & BLUE_MASK, - low(a & BLUE_MASK, - ((b & BLUE_MASK) * f) >> 8), f)); - } - - - /** - * returns the absolute value of the difference of the input colors - * C = |A - B| - */ - private static int blend_difference(int a, int b) { - // setup (this portion will always be the same) - int f = (b & ALPHA_MASK) >>> 24; - int ar = (a & RED_MASK) >> 16; - int ag = (a & GREEN_MASK) >> 8; - int ab = (a & BLUE_MASK); - int br = (b & RED_MASK) >> 16; - int bg = (b & GREEN_MASK) >> 8; - int bb = (b & BLUE_MASK); - // formula: - int cr = (ar > br) ? (ar-br) : (br-ar); - int cg = (ag > bg) ? (ag-bg) : (bg-ag); - int cb = (ab > bb) ? (ab-bb) : (bb-ab); - // alpha blend (this portion will always be the same) - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - (peg(ar + (((cr - ar) * f) >> 8)) << 16) | - (peg(ag + (((cg - ag) * f) >> 8)) << 8) | - (peg(ab + (((cb - ab) * f) >> 8)) ) ); - } - - - /** - * Cousin of difference, algorithm used here is based on a Lingo version - * found here: http://www.mediamacros.com/item/item-1006687616/ - * (Not yet verified to be correct). - */ - private static int blend_exclusion(int a, int b) { - // setup (this portion will always be the same) - int f = (b & ALPHA_MASK) >>> 24; - int ar = (a & RED_MASK) >> 16; - int ag = (a & GREEN_MASK) >> 8; - int ab = (a & BLUE_MASK); - int br = (b & RED_MASK) >> 16; - int bg = (b & GREEN_MASK) >> 8; - int bb = (b & BLUE_MASK); - // formula: - int cr = ar + br - ((ar * br) >> 7); - int cg = ag + bg - ((ag * bg) >> 7); - int cb = ab + bb - ((ab * bb) >> 7); - // alpha blend (this portion will always be the same) - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - (peg(ar + (((cr - ar) * f) >> 8)) << 16) | - (peg(ag + (((cg - ag) * f) >> 8)) << 8) | - (peg(ab + (((cb - ab) * f) >> 8)) ) ); - } - - - /** - * returns the product of the input colors - * C = A * B - */ - private static int blend_multiply(int a, int b) { - // setup (this portion will always be the same) - int f = (b & ALPHA_MASK) >>> 24; - int ar = (a & RED_MASK) >> 16; - int ag = (a & GREEN_MASK) >> 8; - int ab = (a & BLUE_MASK); - int br = (b & RED_MASK) >> 16; - int bg = (b & GREEN_MASK) >> 8; - int bb = (b & BLUE_MASK); - // formula: - int cr = (ar * br) >> 8; - int cg = (ag * bg) >> 8; - int cb = (ab * bb) >> 8; - // alpha blend (this portion will always be the same) - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - (peg(ar + (((cr - ar) * f) >> 8)) << 16) | - (peg(ag + (((cg - ag) * f) >> 8)) << 8) | - (peg(ab + (((cb - ab) * f) >> 8)) ) ); - } - - - /** - * returns the inverse of the product of the inverses of the input colors - * (the inverse of multiply). C = 1 - (1-A) * (1-B) - */ - private static int blend_screen(int a, int b) { - // setup (this portion will always be the same) - int f = (b & ALPHA_MASK) >>> 24; - int ar = (a & RED_MASK) >> 16; - int ag = (a & GREEN_MASK) >> 8; - int ab = (a & BLUE_MASK); - int br = (b & RED_MASK) >> 16; - int bg = (b & GREEN_MASK) >> 8; - int bb = (b & BLUE_MASK); - // formula: - int cr = 255 - (((255 - ar) * (255 - br)) >> 8); - int cg = 255 - (((255 - ag) * (255 - bg)) >> 8); - int cb = 255 - (((255 - ab) * (255 - bb)) >> 8); - // alpha blend (this portion will always be the same) - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - (peg(ar + (((cr - ar) * f) >> 8)) << 16) | - (peg(ag + (((cg - ag) * f) >> 8)) << 8) | - (peg(ab + (((cb - ab) * f) >> 8)) ) ); - } - - - /** - * returns either multiply or screen for darker or lighter values of A - * (the inverse of hard light) - * C = - * A < 0.5 : 2 * A * B - * A >=0.5 : 1 - (2 * (255-A) * (255-B)) - */ - private static int blend_overlay(int a, int b) { - // setup (this portion will always be the same) - int f = (b & ALPHA_MASK) >>> 24; - int ar = (a & RED_MASK) >> 16; - int ag = (a & GREEN_MASK) >> 8; - int ab = (a & BLUE_MASK); - int br = (b & RED_MASK) >> 16; - int bg = (b & GREEN_MASK) >> 8; - int bb = (b & BLUE_MASK); - // formula: - int cr = (ar < 128) ? ((ar*br)>>7) : (255-(((255-ar)*(255-br))>>7)); - int cg = (ag < 128) ? ((ag*bg)>>7) : (255-(((255-ag)*(255-bg))>>7)); - int cb = (ab < 128) ? ((ab*bb)>>7) : (255-(((255-ab)*(255-bb))>>7)); - // alpha blend (this portion will always be the same) - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - (peg(ar + (((cr - ar) * f) >> 8)) << 16) | - (peg(ag + (((cg - ag) * f) >> 8)) << 8) | - (peg(ab + (((cb - ab) * f) >> 8)) ) ); - } - - - /** - * returns either multiply or screen for darker or lighter values of B - * (the inverse of overlay) - * C = - * B < 0.5 : 2 * A * B - * B >=0.5 : 1 - (2 * (255-A) * (255-B)) - */ - private static int blend_hard_light(int a, int b) { - // setup (this portion will always be the same) - int f = (b & ALPHA_MASK) >>> 24; - int ar = (a & RED_MASK) >> 16; - int ag = (a & GREEN_MASK) >> 8; - int ab = (a & BLUE_MASK); - int br = (b & RED_MASK) >> 16; - int bg = (b & GREEN_MASK) >> 8; - int bb = (b & BLUE_MASK); - // formula: - int cr = (br < 128) ? ((ar*br)>>7) : (255-(((255-ar)*(255-br))>>7)); - int cg = (bg < 128) ? ((ag*bg)>>7) : (255-(((255-ag)*(255-bg))>>7)); - int cb = (bb < 128) ? ((ab*bb)>>7) : (255-(((255-ab)*(255-bb))>>7)); - // alpha blend (this portion will always be the same) - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - (peg(ar + (((cr - ar) * f) >> 8)) << 16) | - (peg(ag + (((cg - ag) * f) >> 8)) << 8) | - (peg(ab + (((cb - ab) * f) >> 8)) ) ); - } - - - /** - * returns the inverse multiply plus screen, which simplifies to - * C = 2AB + A^2 - 2A^2B - */ - private static int blend_soft_light(int a, int b) { - // setup (this portion will always be the same) - int f = (b & ALPHA_MASK) >>> 24; - int ar = (a & RED_MASK) >> 16; - int ag = (a & GREEN_MASK) >> 8; - int ab = (a & BLUE_MASK); - int br = (b & RED_MASK) >> 16; - int bg = (b & GREEN_MASK) >> 8; - int bb = (b & BLUE_MASK); - // formula: - int cr = ((ar*br)>>7) + ((ar*ar)>>8) - ((ar*ar*br)>>15); - int cg = ((ag*bg)>>7) + ((ag*ag)>>8) - ((ag*ag*bg)>>15); - int cb = ((ab*bb)>>7) + ((ab*ab)>>8) - ((ab*ab*bb)>>15); - // alpha blend (this portion will always be the same) - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - (peg(ar + (((cr - ar) * f) >> 8)) << 16) | - (peg(ag + (((cg - ag) * f) >> 8)) << 8) | - (peg(ab + (((cb - ab) * f) >> 8)) ) ); - } - - - /** - * Returns the first (underlay) color divided by the inverse of - * the second (overlay) color. C = A / (255-B) - */ - private static int blend_dodge(int a, int b) { - // setup (this portion will always be the same) - int f = (b & ALPHA_MASK) >>> 24; - int ar = (a & RED_MASK) >> 16; - int ag = (a & GREEN_MASK) >> 8; - int ab = (a & BLUE_MASK); - int br = (b & RED_MASK) >> 16; - int bg = (b & GREEN_MASK) >> 8; - int bb = (b & BLUE_MASK); - // formula: - int cr = (br==255) ? 255 : peg((ar << 8) / (255 - br)); // division requires pre-peg()-ing - int cg = (bg==255) ? 255 : peg((ag << 8) / (255 - bg)); // " - int cb = (bb==255) ? 255 : peg((ab << 8) / (255 - bb)); // " - // alpha blend (this portion will always be the same) - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - (peg(ar + (((cr - ar) * f) >> 8)) << 16) | - (peg(ag + (((cg - ag) * f) >> 8)) << 8) | - (peg(ab + (((cb - ab) * f) >> 8)) ) ); - } - - - /** - * returns the inverse of the inverse of the first (underlay) color - * divided by the second (overlay) color. C = 255 - (255-A) / B - */ - private static int blend_burn(int a, int b) { - // setup (this portion will always be the same) - int f = (b & ALPHA_MASK) >>> 24; - int ar = (a & RED_MASK) >> 16; - int ag = (a & GREEN_MASK) >> 8; - int ab = (a & BLUE_MASK); - int br = (b & RED_MASK) >> 16; - int bg = (b & GREEN_MASK) >> 8; - int bb = (b & BLUE_MASK); - // formula: - int cr = (br==0) ? 0 : 255 - peg(((255 - ar) << 8) / br); // division requires pre-peg()-ing - int cg = (bg==0) ? 0 : 255 - peg(((255 - ag) << 8) / bg); // " - int cb = (bb==0) ? 0 : 255 - peg(((255 - ab) << 8) / bb); // " - // alpha blend (this portion will always be the same) - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - (peg(ar + (((cr - ar) * f) >> 8)) << 16) | - (peg(ag + (((cg - ag) * f) >> 8)) << 8) | - (peg(ab + (((cb - ab) * f) >> 8)) ) ); - } - - - ////////////////////////////////////////////////////////////// - - // FILE I/O - - - static byte TIFF_HEADER[] = { - 77, 77, 0, 42, 0, 0, 0, 8, 0, 9, 0, -2, 0, 4, 0, 0, 0, 1, 0, 0, - 0, 0, 1, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 3, 0, 0, 0, 1, - 0, 0, 0, 0, 1, 2, 0, 3, 0, 0, 0, 3, 0, 0, 0, 122, 1, 6, 0, 3, 0, - 0, 0, 1, 0, 2, 0, 0, 1, 17, 0, 4, 0, 0, 0, 1, 0, 0, 3, 0, 1, 21, - 0, 3, 0, 0, 0, 1, 0, 3, 0, 0, 1, 22, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, - 1, 23, 0, 4, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 8 - }; - - - static final String TIFF_ERROR = - "Error: Processing can only read its own TIFF files."; - - static protected PImage loadTIFF(byte tiff[]) { - if ((tiff[42] != tiff[102]) || // width/height in both places - (tiff[43] != tiff[103])) { - System.err.println(TIFF_ERROR); - return null; - } - - int width = - ((tiff[30] & 0xff) << 8) | (tiff[31] & 0xff); - int height = - ((tiff[42] & 0xff) << 8) | (tiff[43] & 0xff); - - int count = - ((tiff[114] & 0xff) << 24) | - ((tiff[115] & 0xff) << 16) | - ((tiff[116] & 0xff) << 8) | - (tiff[117] & 0xff); - if (count != width * height * 3) { - System.err.println(TIFF_ERROR + " (" + width + ", " + height +")"); - return null; - } - - // check the rest of the header - for (int i = 0; i < TIFF_HEADER.length; i++) { - if ((i == 30) || (i == 31) || (i == 42) || (i == 43) || - (i == 102) || (i == 103) || - (i == 114) || (i == 115) || (i == 116) || (i == 117)) continue; - - if (tiff[i] != TIFF_HEADER[i]) { - System.err.println(TIFF_ERROR + " (" + i + ")"); - return null; - } - } - - PImage outgoing = new PImage(width, height, RGB); - int index = 768; - count /= 3; - for (int i = 0; i < count; i++) { - outgoing.pixels[i] = - 0xFF000000 | - (tiff[index++] & 0xff) << 16 | - (tiff[index++] & 0xff) << 8 | - (tiff[index++] & 0xff); - } - return outgoing; - } - - - protected boolean saveTIFF(OutputStream output) { - // shutting off the warning, people can figure this out themselves - /* - if (format != RGB) { - System.err.println("Warning: only RGB information is saved with " + - ".tif files. Use .tga or .png for ARGB images and others."); - } - */ - try { - byte tiff[] = new byte[768]; - System.arraycopy(TIFF_HEADER, 0, tiff, 0, TIFF_HEADER.length); - - tiff[30] = (byte) ((width >> 8) & 0xff); - tiff[31] = (byte) ((width) & 0xff); - tiff[42] = tiff[102] = (byte) ((height >> 8) & 0xff); - tiff[43] = tiff[103] = (byte) ((height) & 0xff); - - int count = width*height*3; - tiff[114] = (byte) ((count >> 24) & 0xff); - tiff[115] = (byte) ((count >> 16) & 0xff); - tiff[116] = (byte) ((count >> 8) & 0xff); - tiff[117] = (byte) ((count) & 0xff); - - // spew the header to the disk - output.write(tiff); - - for (int i = 0; i < pixels.length; i++) { - output.write((pixels[i] >> 16) & 0xff); - output.write((pixels[i] >> 8) & 0xff); - output.write(pixels[i] & 0xff); - } - output.flush(); - return true; - - } catch (IOException e) { - e.printStackTrace(); - } - return false; - } - - - /** - * Creates a Targa32 formatted byte sequence of specified - * pixel buffer using RLE compression. - *

- * Also figured out how to avoid parsing the image upside-down - * (there's a header flag to set the image origin to top-left) - *

- * Starting with revision 0092, the format setting is taken into account: - *
    - *
  • ALPHA images written as 8bit grayscale (uses lowest byte) - *
  • RGB → 24 bits - *
  • ARGB → 32 bits - *
- * All versions are RLE compressed. - *

- * Contributed by toxi 8-10 May 2005, based on this RLE - * specification - */ - protected boolean saveTGA(OutputStream output) { - byte header[] = new byte[18]; - - if (format == ALPHA) { // save ALPHA images as 8bit grayscale - header[2] = 0x0B; - header[16] = 0x08; - header[17] = 0x28; - - } else if (format == RGB) { - header[2] = 0x0A; - header[16] = 24; - header[17] = 0x20; - - } else if (format == ARGB) { - header[2] = 0x0A; - header[16] = 32; - header[17] = 0x28; - - } else { - throw new RuntimeException("Image format not recognized inside save()"); - } - // set image dimensions lo-hi byte order - header[12] = (byte) (width & 0xff); - header[13] = (byte) (width >> 8); - header[14] = (byte) (height & 0xff); - header[15] = (byte) (height >> 8); - - try { - output.write(header); - - int maxLen = height * width; - int index = 0; - int col; //, prevCol; - int[] currChunk = new int[128]; - - // 8bit image exporter is in separate loop - // to avoid excessive conditionals... - if (format == ALPHA) { - while (index < maxLen) { - boolean isRLE = false; - int rle = 1; - currChunk[0] = col = pixels[index] & 0xff; - while (index + rle < maxLen) { - if (col != (pixels[index + rle]&0xff) || rle == 128) { - isRLE = (rle > 1); - break; - } - rle++; - } - if (isRLE) { - output.write(0x80 | (rle - 1)); - output.write(col); - - } else { - rle = 1; - while (index + rle < maxLen) { - int cscan = pixels[index + rle] & 0xff; - if ((col != cscan && rle < 128) || rle < 3) { - currChunk[rle] = col = cscan; - } else { - if (col == cscan) rle -= 2; - break; - } - rle++; - } - output.write(rle - 1); - for (int i = 0; i < rle; i++) output.write(currChunk[i]); - } - index += rle; - } - } else { // export 24/32 bit TARGA - while (index < maxLen) { - boolean isRLE = false; - currChunk[0] = col = pixels[index]; - int rle = 1; - // try to find repeating bytes (min. len = 2 pixels) - // maximum chunk size is 128 pixels - while (index + rle < maxLen) { - if (col != pixels[index + rle] || rle == 128) { - isRLE = (rle > 1); // set flag for RLE chunk - break; - } - rle++; - } - if (isRLE) { - output.write(128 | (rle - 1)); - output.write(col & 0xff); - output.write(col >> 8 & 0xff); - output.write(col >> 16 & 0xff); - if (format == ARGB) output.write(col >>> 24 & 0xff); - - } else { // not RLE - rle = 1; - while (index + rle < maxLen) { - if ((col != pixels[index + rle] && rle < 128) || rle < 3) { - currChunk[rle] = col = pixels[index + rle]; - } else { - // check if the exit condition was the start of - // a repeating colour - if (col == pixels[index + rle]) rle -= 2; - break; - } - rle++; - } - // write uncompressed chunk - output.write(rle - 1); - if (format == ARGB) { - for (int i = 0; i < rle; i++) { - col = currChunk[i]; - output.write(col & 0xff); - output.write(col >> 8 & 0xff); - output.write(col >> 16 & 0xff); - output.write(col >>> 24 & 0xff); - } - } else { - for (int i = 0; i < rle; i++) { - col = currChunk[i]; - output.write(col & 0xff); - output.write(col >> 8 & 0xff); - output.write(col >> 16 & 0xff); - } - } - } - index += rle; - } - } - output.flush(); - return true; - - } catch (IOException e) { - e.printStackTrace(); - return false; - } - } - - - /** - * Use ImageIO functions from Java 1.4 and later to handle image save. - * Various formats are supported, typically jpeg, png, bmp, and wbmp. - * To get a list of the supported formats for writing, use:
- * println(javax.imageio.ImageIO.getReaderFormatNames()) - */ - protected void saveImageIO(String path) throws IOException { - try { - BufferedImage bimage = - new BufferedImage(width, height, (format == ARGB) ? - BufferedImage.TYPE_INT_ARGB : - BufferedImage.TYPE_INT_RGB); - /* - Class bufferedImageClass = - Class.forName("java.awt.image.BufferedImage"); - Constructor bufferedImageConstructor = - bufferedImageClass.getConstructor(new Class[] { - Integer.TYPE, - Integer.TYPE, - Integer.TYPE }); - Field typeIntRgbField = bufferedImageClass.getField("TYPE_INT_RGB"); - int typeIntRgb = typeIntRgbField.getInt(typeIntRgbField); - Field typeIntArgbField = bufferedImageClass.getField("TYPE_INT_ARGB"); - int typeIntArgb = typeIntArgbField.getInt(typeIntArgbField); - Object bimage = - bufferedImageConstructor.newInstance(new Object[] { - new Integer(width), - new Integer(height), - new Integer((format == ARGB) ? typeIntArgb : typeIntRgb) - }); - */ - - bimage.setRGB(0, 0, width, height, pixels, 0, width); - /* - Method setRgbMethod = - bufferedImageClass.getMethod("setRGB", new Class[] { - Integer.TYPE, Integer.TYPE, - Integer.TYPE, Integer.TYPE, - pixels.getClass(), - Integer.TYPE, Integer.TYPE - }); - setRgbMethod.invoke(bimage, new Object[] { - new Integer(0), new Integer(0), - new Integer(width), new Integer(height), - pixels, new Integer(0), new Integer(width) - }); - */ - - File file = new File(path); - String extension = path.substring(path.lastIndexOf('.') + 1); - - ImageIO.write(bimage, extension, file); - /* - Class renderedImageClass = - Class.forName("java.awt.image.RenderedImage"); - Class ioClass = Class.forName("javax.imageio.ImageIO"); - Method writeMethod = - ioClass.getMethod("write", new Class[] { - renderedImageClass, String.class, File.class - }); - writeMethod.invoke(null, new Object[] { bimage, extension, file }); - */ - - } catch (Exception e) { - e.printStackTrace(); - throw new IOException("image save failed."); - } - } - - - protected String[] saveImageFormats; - - /** - * Saves the image into a file. Images are saved in TIFF, TARGA, JPEG, and PNG format depending on the extension within the filename parameter. - * For example, "image.tif" will have a TIFF image and "image.png" will save a PNG image. - * If no extension is included in the filename, the image will save in TIFF format and .tif will be added to the name. - * These files are saved to the sketch's folder, which may be opened by selecting "Show sketch folder" from the "Sketch" menu. - * It is not possible to use save() while running the program in a web browser.

- * To save an image created within the code, rather than through loading, it's necessary to make the image with the createImage() - * function so it is aware of the location of the program and can therefore save the file to the right place. - * See the createImage() reference for more information. - * - * =advanced - * Save this image to disk. - *

- * As of revision 0100, this function requires an absolute path, - * in order to avoid confusion. To save inside the sketch folder, - * use the function savePath() from PApplet, or use saveFrame() instead. - * As of revision 0116, savePath() is not needed if this object has been - * created (as recommended) via createImage() or createGraphics() or - * one of its neighbors. - *

- * As of revision 0115, when using Java 1.4 and later, you can write - * to several formats besides tga and tiff. If Java 1.4 is installed - * and the extension used is supported (usually png, jpg, jpeg, bmp, - * and tiff), then those methods will be used to write the image. - * To get a list of the supported formats for writing, use:
- * println(javax.imageio.ImageIO.getReaderFormatNames()) - *

- * To use the original built-in image writers, use .tga or .tif as the - * extension, or don't include an extension. When no extension is used, - * the extension .tif will be added to the file name. - *

- * The ImageIO API claims to support wbmp files, however they probably - * require a black and white image. Basic testing produced a zero-length - * file with no error. - * - * @webref - * @brief Saves the image to a TIFF, TARGA, PNG, or JPEG file - * @param filename a sequence of letters and numbers - */ - public void save(String filename) { // ignore - boolean success = false; - - File file = new File(filename); - if (!file.isAbsolute()) { - if (parent != null) { - //file = new File(parent.savePath(filename)); - filename = parent.savePath(filename); - } else { - String msg = "PImage.save() requires an absolute path. " + - "Use createImage(), or pass savePath() to save()."; - PGraphics.showException(msg); - } - } - - // Make sure the pixel data is ready to go - loadPixels(); - - try { - OutputStream os = null; - - if (saveImageFormats == null) { - saveImageFormats = javax.imageio.ImageIO.getWriterFormatNames(); - } - if (saveImageFormats != null) { - for (int i = 0; i < saveImageFormats.length; i++) { - if (filename.endsWith("." + saveImageFormats[i])) { - saveImageIO(filename); - return; - } - } - } - - if (filename.toLowerCase().endsWith(".tga")) { - os = new BufferedOutputStream(new FileOutputStream(filename), 32768); - success = saveTGA(os); //, pixels, width, height, format); - - } else { - if (!filename.toLowerCase().endsWith(".tif") && - !filename.toLowerCase().endsWith(".tiff")) { - // if no .tif extension, add it.. - filename += ".tif"; - } - os = new BufferedOutputStream(new FileOutputStream(filename), 32768); - success = saveTIFF(os); //, pixels, width, height); - } - os.flush(); - os.close(); - - } catch (IOException e) { - //System.err.println("Error while saving image."); - e.printStackTrace(); - success = false; - } - if (!success) { - throw new RuntimeException("Error while saving image."); - } - } -} - diff --git a/core/methods/methods.jar b/core/methods/methods.jar deleted file mode 100644 index ff4276ba306846472b1e999976c4dbf742ec18d7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3725 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 0) { - break; - } - } - - // read the rest of the file and append it to the - while ((line = applet.readLine()) != null) { - content.append(line); - content.append('\n'); - } - - applet.close(); - process(out, graphicsFile); - process(out, imageFile); - - out.append('}'); - out.append('\n'); - - //} catch (IOException e) { - //e.printStackTrace(); - - } catch (Exception e) { - //ex.printStackTrace(); - throw new BuildException(e); - } - //out.flush(); - - String outString = out.toString(); - if (content.toString().equals(outString)) { - System.out.println("No changes to PApplet API."); - } else { - System.out.println("Updating PApplet with API changes " + - "from PImage or PGraphics."); - try { - PrintStream temp = new PrintStream(appletFile, "UTF-8"); - temp.print(outString); - temp.flush(); - temp.close(); - } catch (IOException e) { - //e.printStackTrace(); - throw new BuildException(e); - } - } - } - - - private void process(StringBuffer out, File input) throws IOException { - BufferedReader in = createReader(input); - int comments = 0; - String line = null; - StringBuffer commentBuffer = new StringBuffer(); - - while ((line = in.readLine()) != null) { - String decl = ""; - - // Keep track of comments - //if (line.matches(Pattern.quote("/*"))) { - if (line.indexOf("/*") != -1) { - comments++; - } - - //if (line.matches(Pattern.quote("*/"))) { - if (line.indexOf("*/") != -1) { - commentBuffer.append(line); - commentBuffer.append('\n'); - //System.out.println("comment is: " + commentBuffer.toString()); - comments--; - // otherwise gotSomething will be false, and nuke the comment - continue; - } - - // Ignore everything inside comments - if (comments > 0) { - commentBuffer.append(line); - commentBuffer.append('\n'); - continue; - } - - boolean gotSomething = false; - boolean gotStatic = false; - - Matcher result; - - if ((result = Pattern.compile("^\\s*public ([\\w\\[\\]]+) [a-zA-z_]+\\(.*$").matcher(line)).matches()) { - gotSomething = true; - - } else if ((result = Pattern.compile("^\\s*abstract public ([\\w\\[\\]]+) [a-zA-z_]+\\(.*$").matcher(line)).matches()) { - gotSomething = true; - - } else if ((result = Pattern.compile("^\\s*public final ([\\w\\[\\]]+) [a-zA-z_]+\\(.*$").matcher(line)).matches()) { - gotSomething = true; - - } else if ((result = Pattern.compile("^\\s*static public ([\\w\\[\\]]+) [a-zA-z_]+\\(.*$").matcher(line)).matches()) { - gotSomething = true; - gotStatic = true; - } - - // if function is marked "// ignore" then, uh, ignore it. - if (gotSomething && line.indexOf("// ignore") >= 0) { - gotSomething = false; - } - - String returns = ""; - if (gotSomething) { - if (result.group(1).equals("void")) { - returns = ""; - } else { - returns = "return "; - } - - // remove the abstract modifier - line = line.replaceFirst(Pattern.quote("abstract"), " "); - - // replace semicolons with a start def - line = line.replaceAll(Pattern.quote(";"), " {\n"); - - //out.println("\n\n" + line); - out.append('\n'); - out.append('\n'); - // end has its own newline - //out.print(commentBuffer.toString()); // TODO disabled for now XXXX - out.append(commentBuffer.toString()); // duplicates all comments - commentBuffer.setLength(0); - out.append(line); - out.append('\n'); - - decl += line; - while(line.indexOf(')') == -1) { - line = in.readLine(); - decl += line; - line = line.replaceAll("\\;\\s*$", " {\n"); - out.append(line); - out.append('\n'); - } - - result = Pattern.compile(".*?\\s(\\S+)\\(.*?").matcher(decl); - // try to match. don't remove this or things will stop working! - result.matches(); - String declName = result.group(1); - String gline = ""; - String rline = ""; - if (gotStatic) { - gline = " " + returns + "PGraphics." + declName + "("; - } else { - rline = " if (recorder != null) recorder." + declName + "("; - gline = " " + returns + "g." + declName + "("; - } - - decl = decl.replaceAll("\\s+", " "); // smush onto a single line - decl = decl.replaceFirst("^.*\\(", ""); - decl = decl.replaceFirst("\\).*$", ""); - - int prev = 0; - String parts[] = decl.split("\\, "); - - for (String part : parts) { - if (!part.trim().equals("")) { - String blargh[] = part.split(" "); - String theArg = blargh[1].replaceAll("[\\[\\]]", ""); - - if (prev != 0) { - gline += ", "; - rline += ", "; - } - - gline += theArg; - rline += theArg; - prev = 1; - } - } - - gline += ");"; - rline += ");"; - - if (!gotStatic && returns.equals("")) { - out.append(rline); - out.append('\n'); - } - out.append(gline); - out.append('\n'); - out.append(" }"); - out.append('\n'); - - } else { - commentBuffer.setLength(0); - } - } - - in.close(); - } - - - static BufferedReader createReader(File file) throws IOException { - FileInputStream fis = new FileInputStream(file); - return new BufferedReader(new InputStreamReader(fis, "UTF-8")); - } -} diff --git a/core/preproc.pl b/core/preproc.pl deleted file mode 100755 index 40ba9bba2..000000000 --- a/core/preproc.pl +++ /dev/null @@ -1,186 +0,0 @@ -#!/usr/bin/perl -w - -$basedir = 'src/processing/core'; - -@contents = (); - -# next slurp methods from PGraphics -open(F, "$basedir/PGraphics.java") || die $!; -foreach $line () { - push @contents, $line; -} -close(F); - -# PGraphics subclasses PImage.. now get those methods -open(F, "$basedir/PImage.java") || die $!; -foreach $line () { - push @contents, $line; -} -close(F); - -#open(DEBUG, ">debug.java") || die $!; -#print DEBUG @contents; -#close(DEBUG); -#exit; - - -open(APPLET, "$basedir/PApplet.java") || die $!; -@applet = ; -close(APPLET); - - -$insert = 'public functions for processing.core'; - -# an improved version of this would only rewrite if changes made -open(OUT, ">$basedir/PApplet.new") || die $!; -foreach $line (@applet) { - print OUT $line; - last if ($line =~ /$insert/); -} - -$comments = 0; - -while ($line = shift(@contents)) { - $decl = ""; - - if ($line =~ /\/\*/) { - $comments++; - #print "+[$comments] $line"; - } - if ($line =~ /\*\//) { - $comments--; - #print "-[$comments] $line"; - } - next if ($comments > 0); - - $got_something = 0; # so it's ugly, back off - $got_static = 0; - $got_interface = 0; - - if ($line =~ /^\s*public ([\w\[\]]+) [a-zA-z_]+\(.*$/) { - $got_something = 1; - $got_interface = 1; - } elsif ($line =~ /^\s*abstract public ([\w\[\]]+) [a-zA-z_]+\(.*$/) { - $got_something = 1; - } elsif ($line =~ /^\s*public final ([\w\[\]]+) [a-zA-z_]+\(.*$/) { - $got_something = 1; - } elsif ($line =~ /^\s*static public ([\w\[\]]+) [a-zA-z_]+\(.*$/) { - $got_something = 1; - $got_static = 1; - } - # if function is marked "// ignore" then, uh, ignore it. - if (($got_something == 1) && ($line =~ /\/\/ ignore/)) { - $got_something = 0; - } - #if ($line =~ /^\s*public (\w+) [a-zA-z_]+\(.*$/) { - if ($got_something == 1) { - if ($1 ne 'void') { - $returns = 'return '; - } else { - $returns = ''; - } - -# if ($line =~ /^(\s+)abstract\s+([^;]+);/) { -# $line = $1 . $2 . " {\n"; -# #print "found $1\n"; -# # hrm -# } - # remove the 'abstract' modifier - $line =~ s/\sabstract\s/ /; - - # replace semicolons with a start def - $line =~ s/\;\s*$/ {\n/; - - print OUT "\n\n$line"; - -# if ($got_interface == 1) { -# $iline = $line; -# $iline =~ s/ \{/\;/; -## print INTF "\n$iline"; -# } - - $decl .= $line; - while (!($line =~ /\)/)) { - $line = shift (@contents); - $decl .= $line; - $line =~ s/\;\s*$/ {\n/; - print OUT $line; - -# if ($got_interface == 1) { -# $iline = $line; -# $iline =~ s/ \{/\;/; -## print INTF $iline; -# } - } - - #$g_line = ''; - #$r_line = ''; - - $decl =~ /\s(\S+)\(/; - $decl_name = $1; - if ($got_static == 1) { - #print OUT " ${returns}PGraphics.${decl_name}("; - $g_line = " ${returns}PGraphics.${decl_name}("; - } else { - #if ($returns eq '') { - #print OUT " if (recorder != null) recorder.${decl_name}("; - $r_line = " if (recorder != null) recorder.${decl_name}("; - #} - #print OUT " ${returns}g.${decl_name}("; - $g_line = " ${returns}g.${decl_name}("; - } - - $decl =~ s/\s+/ /g; # smush onto a single line - $decl =~ s/^.*\(//; - $decl =~ s/\).*$//; - - $prev = 0; - @parts = split(', ', $decl); - foreach $part (@parts) { - #($the_type, $the_arg) = split(' ', $part); - @blargh = split(' ', $part); - $the_arg = $blargh[1]; - $the_arg =~ s/[\[\]]//g; - if ($prev != 0) { - #print OUT ", "; - $g_line .= ", "; - $r_line .= ", "; - } - #print OUT "${the_arg}"; - $g_line .= "${the_arg}"; - $r_line .= "${the_arg}"; - $prev = 1; - } - #print OUT ");\n"; - $g_line .= ");\n"; - $r_line .= ");\n"; - - if (($got_static != 1) && ($returns eq '')) { - print OUT $r_line; - } - print OUT $g_line; - print OUT " }\n"; - } -} -print OUT "}\n"; -#print INTF "}\n"; - -close(OUT); -#close(INTF); - -$oldguy = join(' ', @applet); - -open(NEWGUY, "$basedir/PApplet.new") || die $!; -@newbie = ; -$newguy = join(' ', @newbie); -close(NEWGUY); - -if ($oldguy ne $newguy) { - # replace him - print "updating PApplet with PGraphics api changes\n"; - `mv $basedir/PApplet.new $basedir/PApplet.java`; -} else { - # just kill the new guy - #print "no changes to applet\n"; - `rm -f $basedir/PApplet.new`; -} diff --git a/core/preproc/.classpath b/core/preproc/.classpath deleted file mode 100644 index d9132e9f4..000000000 --- a/core/preproc/.classpath +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/core/preproc/.project b/core/preproc/.project deleted file mode 100644 index 629f1c16a..000000000 --- a/core/preproc/.project +++ /dev/null @@ -1,17 +0,0 @@ - - - preproc - - - - - - org.eclipse.jdt.core.javabuilder - - - - - - org.eclipse.jdt.core.javanature - - diff --git a/core/preproc/build.xml b/core/preproc/build.xml deleted file mode 100644 index b67757097..000000000 --- a/core/preproc/build.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/core/preproc/demo/PApplet.java b/core/preproc/demo/PApplet.java deleted file mode 100644 index 950a89d4c..000000000 --- a/core/preproc/demo/PApplet.java +++ /dev/null @@ -1,8155 +0,0 @@ -/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */ - -/* - Part of the Processing project - http://processing.org - - Copyright (c) 2004-09 Ben Fry and Casey Reas - Copyright (c) 2001-04 Massachusetts Institute of Technology - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General - Public License along with this library; if not, write to the - Free Software Foundation, Inc., 59 Temple Place, Suite 330, - Boston, MA 02111-1307 USA -*/ - -package processing.core; - -import java.applet.*; -import java.awt.*; -import java.awt.event.*; -import java.awt.image.*; -import java.io.*; -import java.lang.reflect.*; -import java.net.*; -import java.text.*; -import java.util.*; -import java.util.regex.*; -import java.util.zip.*; - -import javax.imageio.ImageIO; -import javax.swing.JFileChooser; -import javax.swing.SwingUtilities; - - -/** - * Base class for all sketches that use processing.core. - *

- * Note that you should not use AWT or Swing components inside a Processing - * applet. The surface is made to automatically update itself, and will cause - * problems with redraw of components drawn above it. If you'd like to - * integrate other Java components, see below. - *

- * As of release 0145, Processing uses active mode rendering in all cases. - * All animation tasks happen on the "Processing Animation Thread". The - * setup() and draw() methods are handled by that thread, and events (like - * mouse movement and key presses, which are fired by the event dispatch - * thread or EDT) are queued to be (safely) handled at the end of draw(). - * For code that needs to run on the EDT, use SwingUtilities.invokeLater(). - * When doing so, be careful to synchronize between that code (since - * invokeLater() will make your code run from the EDT) and the Processing - * animation thread. Use of a callback function or the registerXxx() methods - * in PApplet can help ensure that your code doesn't do something naughty. - *

- * As of release 0136 of Processing, we have discontinued support for versions - * of Java prior to 1.5. We don't have enough people to support it, and for a - * project of our size, we should be focusing on the future, rather than - * working around legacy Java code. In addition, Java 1.5 gives us access to - * better timing facilities which will improve the steadiness of animation. - *

- * This class extends Applet instead of JApplet because 1) historically, - * we supported Java 1.1, which does not include Swing (without an - * additional, sizable, download), and 2) Swing is a bloated piece of crap. - * A Processing applet is a heavyweight AWT component, and can be used the - * same as any other AWT component, with or without Swing. - *

- * Similarly, Processing runs in a Frame and not a JFrame. However, there's - * nothing to prevent you from embedding a PApplet into a JFrame, it's just - * that the base version uses a regular AWT frame because there's simply - * no need for swing in that context. If people want to use Swing, they can - * embed themselves as they wish. - *

- * It is possible to use PApplet, along with core.jar in other projects. - * In addition to enabling you to use Java 1.5+ features with your sketch, - * this also allows you to embed a Processing drawing area into another Java - * application. This means you can use standard GUI controls with a Processing - * sketch. Because AWT and Swing GUI components cannot be used on top of a - * PApplet, you can instead embed the PApplet inside another GUI the way you - * would any other Component. - *

- * It is also possible to resize the Processing window by including - * frame.setResizable(true) inside your setup() method. - * Note that the Java method frame.setSize() will not work unless - * you first set the frame to be resizable. - *

- * Because the default animation thread will run at 60 frames per second, - * an embedded PApplet can make the parent sluggish. You can use frameRate() - * to make it update less often, or you can use noLoop() and loop() to disable - * and then re-enable looping. If you want to only update the sketch - * intermittently, use noLoop() inside setup(), and redraw() whenever - * the screen needs to be updated once (or loop() to re-enable the animation - * thread). The following example embeds a sketch and also uses the noLoop() - * and redraw() methods. You need not use noLoop() and redraw() when embedding - * if you want your application to animate continuously. - *

- * public class ExampleFrame extends Frame {
- *
- *     public ExampleFrame() {
- *         super("Embedded PApplet");
- *
- *         setLayout(new BorderLayout());
- *         PApplet embed = new Embedded();
- *         add(embed, BorderLayout.CENTER);
- *
- *         // important to call this whenever embedding a PApplet.
- *         // It ensures that the animation thread is started and
- *         // that other internal variables are properly set.
- *         embed.init();
- *     }
- * }
- *
- * public class Embedded extends PApplet {
- *
- *     public void setup() {
- *         // original setup code here ...
- *         size(400, 400);
- *
- *         // prevent thread from starving everything else
- *         noLoop();
- *     }
- *
- *     public void draw() {
- *         // drawing code goes here
- *     }
- *
- *     public void mousePressed() {
- *         // do something based on mouse movement
- *
- *         // update the screen (run draw once)
- *         redraw();
- *     }
- * }
- * 
- * - *

Processing on multiple displays

- *

I was asked about Processing with multiple displays, and for lack of a - * better place to document it, things will go here.

- *

You can address both screens by making a window the width of both, - * and the height of the maximum of both screens. In this case, do not use - * present mode, because that's exclusive to one screen. Basically it'll - * give you a PApplet that spans both screens. If using one half to control - * and the other half for graphics, you'd just have to put the 'live' stuff - * on one half of the canvas, the control stuff on the other. This works - * better in windows because on the mac we can't get rid of the menu bar - * unless it's running in present mode.

- *

For more control, you need to write straight java code that uses p5. - * You can create two windows, that are shown on two separate screens, - * that have their own PApplet. this is just one of the tradeoffs of one of - * the things that we don't support in p5 from within the environment - * itself (we must draw the line somewhere), because of how messy it would - * get to start talking about multiple screens. It's also not that tough to - * do by hand w/ some Java code.

- */ -public class PApplet extends Applet - implements PConstants, Runnable, - MouseListener, MouseMotionListener, KeyListener, FocusListener -{ - /** - * Full name of the Java version (i.e. 1.5.0_11). - * Prior to 0125, this was only the first three digits. - */ - public static final String javaVersionName = - System.getProperty("java.version"); - - /** - * Version of Java that's in use, whether 1.1 or 1.3 or whatever, - * stored as a float. - *

- * Note that because this is stored as a float, the values may - * not be exactly 1.3 or 1.4. Instead, make sure you're - * comparing against 1.3f or 1.4f, which will have the same amount - * of error (i.e. 1.40000001). This could just be a double, but - * since Processing only uses floats, it's safer for this to be a float - * because there's no good way to specify a double with the preproc. - */ - public static final float javaVersion = - new Float(javaVersionName.substring(0, 3)).floatValue(); - - /** - * Current platform in use. - *

- * Equivalent to System.getProperty("os.name"), just used internally. - */ - - /** - * Current platform in use, one of the - * PConstants WINDOWS, MACOSX, MACOS9, LINUX or OTHER. - */ - static public int platform; - - /** - * Name associated with the current 'platform' (see PConstants.platformNames) - */ - //static public String platformName; - - static { - String osname = System.getProperty("os.name"); - - if (osname.indexOf("Mac") != -1) { - platform = MACOSX; - - } else if (osname.indexOf("Windows") != -1) { - platform = WINDOWS; - - } else if (osname.equals("Linux")) { // true for the ibm vm - platform = LINUX; - - } else { - platform = OTHER; - } - } - - /** - * Modifier flags for the shortcut key used to trigger menus. - * (Cmd on Mac OS X, Ctrl on Linux and Windows) - */ - static public final int MENU_SHORTCUT = - Toolkit.getDefaultToolkit().getMenuShortcutKeyMask(); - - /** The PGraphics renderer associated with this PApplet */ - public PGraphics g; - - //protected Object glock = new Object(); // for sync - - /** The frame containing this applet (if any) */ - public Frame frame; - - /** - * The screen size when the applet was started. - *

- * Access this via screen.width and screen.height. To make an applet - * run at full screen, use size(screen.width, screen.height). - *

- * If you have multiple displays, this will be the size of the main - * display. Running full screen across multiple displays isn't - * particularly supported, and requires more monkeying with the values. - * This probably can't/won't be fixed until/unless I get a dual head - * system. - *

- * Note that this won't update if you change the resolution - * of your screen once the the applet is running. - *

- * This variable is not static, because future releases need to be better - * at handling multiple displays. - */ - public Dimension screen = - Toolkit.getDefaultToolkit().getScreenSize(); - - /** - * A leech graphics object that is echoing all events. - */ - public PGraphics recorder; - - /** - * Command line options passed in from main(). - *

- * This does not include the arguments passed in to PApplet itself. - */ - public String args[]; - - /** Path to sketch folder */ - public String sketchPath; //folder; - - /** When debugging headaches */ - static final boolean THREAD_DEBUG = false; - - /** Default width and height for applet when not specified */ - static public final int DEFAULT_WIDTH = 100; - static public final int DEFAULT_HEIGHT = 100; - - /** - * Minimum dimensions for the window holding an applet. - * This varies between platforms, Mac OS X 10.3 can do any height - * but requires at least 128 pixels width. Windows XP has another - * set of limitations. And for all I know, Linux probably lets you - * make windows with negative sizes. - */ - static public final int MIN_WINDOW_WIDTH = 128; - static public final int MIN_WINDOW_HEIGHT = 128; - - /** - * Exception thrown when size() is called the first time. - *

- * This is used internally so that setup() is forced to run twice - * when the renderer is changed. This is the only way for us to handle - * invoking the new renderer while also in the midst of rendering. - */ - static public class RendererChangeException extends RuntimeException { } - - /** - * true if no size() command has been executed. This is used to wait until - * a size has been set before placing in the window and showing it. - */ - public boolean defaultSize; - - volatile boolean resizeRequest; - volatile int resizeWidth; - volatile int resizeHeight; - - /** - * Pixel buffer from this applet's PGraphics. - *

- * When used with OpenGL or Java2D, this value will - * be null until loadPixels() has been called. - */ - public int pixels[]; - - /** width of this applet's associated PGraphics */ - public int width; - - /** height of this applet's associated PGraphics */ - public int height; - - /** current x position of the mouse */ - public int mouseX; - - /** current y position of the mouse */ - public int mouseY; - - /** - * Previous x/y position of the mouse. This will be a different value - * when inside a mouse handler (like the mouseMoved() method) versus - * when inside draw(). Inside draw(), pmouseX is updated once each - * frame, but inside mousePressed() and friends, it's updated each time - * an event comes through. Be sure to use only one or the other type of - * means for tracking pmouseX and pmouseY within your sketch, otherwise - * you're gonna run into trouble. - */ - public int pmouseX, pmouseY; - - /** - * previous mouseX/Y for the draw loop, separated out because this is - * separate from the pmouseX/Y when inside the mouse event handlers. - */ - protected int dmouseX, dmouseY; - - /** - * pmouseX/Y for the event handlers (mousePressed(), mouseDragged() etc) - * these are different because mouse events are queued to the end of - * draw, so the previous position has to be updated on each event, - * as opposed to the pmouseX/Y that's used inside draw, which is expected - * to be updated once per trip through draw(). - */ - protected int emouseX, emouseY; - - /** - * Used to set pmouseX/Y to mouseX/Y the first time mouseX/Y are used, - * otherwise pmouseX/Y are always zero, causing a nasty jump. - *

- * Just using (frameCount == 0) won't work since mouseXxxxx() - * may not be called until a couple frames into things. - */ - public boolean firstMouse; - - /** - * Last mouse button pressed, one of LEFT, CENTER, or RIGHT. - *

- * If running on Mac OS, a ctrl-click will be interpreted as - * the righthand mouse button (unlike Java, which reports it as - * the left mouse). - */ - public int mouseButton; - - public boolean mousePressed; - public MouseEvent mouseEvent; - - /** - * Last key pressed. - *

- * If it's a coded key, i.e. UP/DOWN/CTRL/SHIFT/ALT, - * this will be set to CODED (0xffff or 65535). - */ - public char key; - - /** - * When "key" is set to CODED, this will contain a Java key code. - *

- * For the arrow keys, keyCode will be one of UP, DOWN, LEFT and RIGHT. - * Also available are ALT, CONTROL and SHIFT. A full set of constants - * can be obtained from java.awt.event.KeyEvent, from the VK_XXXX variables. - */ - public int keyCode; - - /** - * true if the mouse is currently pressed. - */ - public boolean keyPressed; - - /** - * the last KeyEvent object passed into a mouse function. - */ - public KeyEvent keyEvent; - - /** - * Gets set to true/false as the applet gains/loses focus. - */ - public boolean focused = false; - - /** - * true if the applet is online. - *

- * This can be used to test how the applet should behave - * since online situations are different (no file writing, etc). - */ - public boolean online = false; - - /** - * Time in milliseconds when the applet was started. - *

- * Used by the millis() function. - */ - long millisOffset; - - /** - * The current value of frames per second. - *

- * The initial value will be 10 fps, and will be updated with each - * frame thereafter. The value is not instantaneous (since that - * wouldn't be very useful since it would jump around so much), - * but is instead averaged (integrated) over several frames. - * As such, this value won't be valid until after 5-10 frames. - */ - public float frameRate = 10; - /** Last time in nanoseconds that frameRate was checked */ - protected long frameRateLastNanos = 0; - - /** As of release 0116, frameRate(60) is called as a default */ - protected float frameRateTarget = 60; - protected long frameRatePeriod = 1000000000L / 60L; - - protected boolean looping; - - /** flag set to true when a redraw is asked for by the user */ - protected boolean redraw; - - /** - * How many frames have been displayed since the applet started. - *

- * This value is read-only do not attempt to set it, - * otherwise bad things will happen. - *

- * Inside setup(), frameCount is 0. - * For the first iteration of draw(), frameCount will equal 1. - */ - public int frameCount; - - /** - * true if this applet has had it. - */ - public boolean finished; - - /** - * true if exit() has been called so that things shut down - * once the main thread kicks off. - */ - protected boolean exitCalled; - - Thread thread; - - protected RegisteredMethods sizeMethods; - protected RegisteredMethods preMethods, drawMethods, postMethods; - protected RegisteredMethods mouseEventMethods, keyEventMethods; - protected RegisteredMethods disposeMethods; - - // messages to send if attached as an external vm - - /** - * Position of the upper-lefthand corner of the editor window - * that launched this applet. - */ - static public final String ARGS_EDITOR_LOCATION = "--editor-location"; - - /** - * Location for where to position the applet window on screen. - *

- * This is used by the editor to when saving the previous applet - * location, or could be used by other classes to launch at a - * specific position on-screen. - */ - static public final String ARGS_EXTERNAL = "--external"; - - static public final String ARGS_LOCATION = "--location"; - - static public final String ARGS_DISPLAY = "--display"; - - static public final String ARGS_BGCOLOR = "--bgcolor"; - - static public final String ARGS_PRESENT = "--present"; - - static public final String ARGS_EXCLUSIVE = "--exclusive"; - - static public final String ARGS_STOP_COLOR = "--stop-color"; - - static public final String ARGS_HIDE_STOP = "--hide-stop"; - - /** - * Allows the user or PdeEditor to set a specific sketch folder path. - *

- * Used by PdeEditor to pass in the location where saveFrame() - * and all that stuff should write things. - */ - static public final String ARGS_SKETCH_FOLDER = "--sketch-path"; - - /** - * When run externally to a PdeEditor, - * this is sent by the applet when it quits. - */ - //static public final String EXTERNAL_QUIT = "__QUIT__"; - static public final String EXTERNAL_STOP = "__STOP__"; - - /** - * When run externally to a PDE Editor, this is sent by the applet - * whenever the window is moved. - *

- * This is used so that the editor can re-open the sketch window - * in the same position as the user last left it. - */ - static public final String EXTERNAL_MOVE = "__MOVE__"; - - /** true if this sketch is being run by the PDE */ - boolean external = false; - - - static final String ERROR_MIN_MAX = - "Cannot use min() or max() on an empty array."; - - - // during rev 0100 dev cycle, working on new threading model, - // but need to disable and go conservative with changes in order - // to get pdf and audio working properly first. - // for 0116, the CRUSTY_THREADS are being disabled to fix lots of bugs. - //static final boolean CRUSTY_THREADS = false; //true; - - - public void init() { -// println("Calling init()"); - - // send tab keys through to the PApplet - setFocusTraversalKeysEnabled(false); - - millisOffset = System.currentTimeMillis(); - - finished = false; // just for clarity - - // this will be cleared by draw() if it is not overridden - looping = true; - redraw = true; // draw this guy once - firstMouse = true; - - // these need to be inited before setup - sizeMethods = new RegisteredMethods(); - preMethods = new RegisteredMethods(); - drawMethods = new RegisteredMethods(); - postMethods = new RegisteredMethods(); - mouseEventMethods = new RegisteredMethods(); - keyEventMethods = new RegisteredMethods(); - disposeMethods = new RegisteredMethods(); - - try { - getAppletContext(); - online = true; - } catch (NullPointerException e) { - online = false; - } - - try { - if (sketchPath == null) { - sketchPath = System.getProperty("user.dir"); - } - } catch (Exception e) { } // may be a security problem - - Dimension size = getSize(); - if ((size.width != 0) && (size.height != 0)) { - // When this PApplet is embedded inside a Java application with other - // Component objects, its size() may already be set externally (perhaps - // by a LayoutManager). In this case, honor that size as the default. - // Size of the component is set, just create a renderer. - g = makeGraphics(size.width, size.height, getSketchRenderer(), null, true); - // This doesn't call setSize() or setPreferredSize() because the fact - // that a size was already set means that someone is already doing it. - - } else { - // Set the default size, until the user specifies otherwise - this.defaultSize = true; - int w = getSketchWidth(); - int h = getSketchHeight(); - g = makeGraphics(w, h, getSketchRenderer(), null, true); - // Fire component resize event - setSize(w, h); - setPreferredSize(new Dimension(w, h)); - } - width = g.width; - height = g.height; - - addListeners(); - - // this is automatically called in applets - // though it's here for applications anyway - start(); - } - - - public int getSketchWidth() { - return DEFAULT_WIDTH; - } - - - public int getSketchHeight() { - return DEFAULT_HEIGHT; - } - - - public String getSketchRenderer() { - return JAVA2D; - } - - - /** - * Called by the browser or applet viewer to inform this applet that it - * should start its execution. It is called after the init method and - * each time the applet is revisited in a Web page. - *

- * Called explicitly via the first call to PApplet.paint(), because - * PAppletGL needs to have a usable screen before getting things rolling. - */ - public void start() { - // When running inside a browser, start() will be called when someone - // returns to a page containing this applet. - // http://dev.processing.org/bugs/show_bug.cgi?id=581 - finished = false; - - if (thread != null) return; - thread = new Thread(this, "Animation Thread"); - thread.start(); - } - - - /** - * Called by the browser or applet viewer to inform - * this applet that it should stop its execution. - *

- * Unfortunately, there are no guarantees from the Java spec - * when or if stop() will be called (i.e. on browser quit, - * or when moving between web pages), and it's not always called. - */ - public void stop() { - // bringing this back for 0111, hoping it'll help opengl shutdown - finished = true; // why did i comment this out? - - // don't run stop and disposers twice - if (thread == null) return; - thread = null; - - // call to shut down renderer, in case it needs it (pdf does) - if (g != null) g.dispose(); - - // maybe this should be done earlier? might help ensure it gets called - // before the vm just craps out since 1.5 craps out so aggressively. - disposeMethods.handle(); - } - - - /** - * Called by the browser or applet viewer to inform this applet - * that it is being reclaimed and that it should destroy - * any resources that it has allocated. - *

- * This also attempts to call PApplet.stop(), in case there - * was an inadvertent override of the stop() function by a user. - *

- * destroy() supposedly gets called as the applet viewer - * is shutting down the applet. stop() is called - * first, and then destroy() to really get rid of things. - * no guarantees on when they're run (on browser quit, or - * when moving between pages), though. - */ - public void destroy() { - ((PApplet)this).stop(); - } - - - /** - * This returns the last width and height specified by the user - * via the size() command. - */ -// public Dimension getPreferredSize() { -// return new Dimension(width, height); -// } - - -// public void addNotify() { -// super.addNotify(); -// println("addNotify()"); -// } - - - - ////////////////////////////////////////////////////////////// - - - public class RegisteredMethods { - int count; - Object objects[]; - Method methods[]; - - - // convenience version for no args - public void handle() { - handle(new Object[] { }); - } - - public void handle(Object oargs[]) { - for (int i = 0; i < count; i++) { - try { - //System.out.println(objects[i] + " " + args); - methods[i].invoke(objects[i], oargs); - } catch (Exception e) { - e.printStackTrace(); - } - } - } - - public void add(Object object, Method method) { - if (objects == null) { - objects = new Object[5]; - methods = new Method[5]; - } - if (count == objects.length) { - objects = (Object[]) PApplet.expand(objects); - methods = (Method[]) PApplet.expand(methods); -// Object otemp[] = new Object[count << 1]; -// System.arraycopy(objects, 0, otemp, 0, count); -// objects = otemp; -// Method mtemp[] = new Method[count << 1]; -// System.arraycopy(methods, 0, mtemp, 0, count); -// methods = mtemp; - } - objects[count] = object; - methods[count] = method; - count++; - } - - - /** - * Removes first object/method pair matched (and only the first, - * must be called multiple times if object is registered multiple times). - * Does not shrink array afterwards, silently returns if method not found. - */ - public void remove(Object object, Method method) { - int index = findIndex(object, method); - if (index != -1) { - // shift remaining methods by one to preserve ordering - count--; - for (int i = index; i < count; i++) { - objects[i] = objects[i+1]; - methods[i] = methods[i+1]; - } - // clean things out for the gc's sake - objects[count] = null; - methods[count] = null; - } - } - - protected int findIndex(Object object, Method method) { - for (int i = 0; i < count; i++) { - if (objects[i] == object && methods[i].equals(method)) { - //objects[i].equals() might be overridden, so use == for safety - // since here we do care about actual object identity - //methods[i]==method is never true even for same method, so must use - // equals(), this should be safe because of object identity - return i; - } - } - return -1; - } - } - - - public void registerSize(Object o) { - Class methodArgs[] = new Class[] { Integer.TYPE, Integer.TYPE }; - registerWithArgs(sizeMethods, "size", o, methodArgs); - } - - public void registerPre(Object o) { - registerNoArgs(preMethods, "pre", o); - } - - public void registerDraw(Object o) { - registerNoArgs(drawMethods, "draw", o); - } - - public void registerPost(Object o) { - registerNoArgs(postMethods, "post", o); - } - - public void registerMouseEvent(Object o) { - Class methodArgs[] = new Class[] { MouseEvent.class }; - registerWithArgs(mouseEventMethods, "mouseEvent", o, methodArgs); - } - - - public void registerKeyEvent(Object o) { - Class methodArgs[] = new Class[] { KeyEvent.class }; - registerWithArgs(keyEventMethods, "keyEvent", o, methodArgs); - } - - public void registerDispose(Object o) { - registerNoArgs(disposeMethods, "dispose", o); - } - - - protected void registerNoArgs(RegisteredMethods meth, - String name, Object o) { - Class c = o.getClass(); - try { - Method method = c.getMethod(name, new Class[] {}); - meth.add(o, method); - - } catch (NoSuchMethodException nsme) { - die("There is no " + name + "() method in the class " + - o.getClass().getName()); - - } catch (Exception e) { - die("Could not register " + name + " + () for " + o, e); - } - } - - - protected void registerWithArgs(RegisteredMethods meth, - String name, Object o, Class cargs[]) { - Class c = o.getClass(); - try { - Method method = c.getMethod(name, cargs); - meth.add(o, method); - - } catch (NoSuchMethodException nsme) { - die("There is no " + name + "() method in the class " + - o.getClass().getName()); - - } catch (Exception e) { - die("Could not register " + name + " + () for " + o, e); - } - } - - - public void unregisterSize(Object o) { - Class methodArgs[] = new Class[] { Integer.TYPE, Integer.TYPE }; - unregisterWithArgs(sizeMethods, "size", o, methodArgs); - } - - public void unregisterPre(Object o) { - unregisterNoArgs(preMethods, "pre", o); - } - - public void unregisterDraw(Object o) { - unregisterNoArgs(drawMethods, "draw", o); - } - - public void unregisterPost(Object o) { - unregisterNoArgs(postMethods, "post", o); - } - - public void unregisterMouseEvent(Object o) { - Class methodArgs[] = new Class[] { MouseEvent.class }; - unregisterWithArgs(mouseEventMethods, "mouseEvent", o, methodArgs); - } - - public void unregisterKeyEvent(Object o) { - Class methodArgs[] = new Class[] { KeyEvent.class }; - unregisterWithArgs(keyEventMethods, "keyEvent", o, methodArgs); - } - - public void unregisterDispose(Object o) { - unregisterNoArgs(disposeMethods, "dispose", o); - } - - - protected void unregisterNoArgs(RegisteredMethods meth, - String name, Object o) { - Class c = o.getClass(); - try { - Method method = c.getMethod(name, new Class[] {}); - meth.remove(o, method); - } catch (Exception e) { - die("Could not unregister " + name + "() for " + o, e); - } - } - - - protected void unregisterWithArgs(RegisteredMethods meth, - String name, Object o, Class cargs[]) { - Class c = o.getClass(); - try { - Method method = c.getMethod(name, cargs); - meth.remove(o, method); - } catch (Exception e) { - die("Could not unregister " + name + "() for " + o, e); - } - } - - - ////////////////////////////////////////////////////////////// - - - public void setup() { - } - - - public void draw() { - // if no draw method, then shut things down - //System.out.println("no draw method, goodbye"); - finished = true; - } - - - ////////////////////////////////////////////////////////////// - - - protected void resizeRenderer(int iwidth, int iheight) { -// println("resizeRenderer request for " + iwidth + " " + iheight); - if (width != iwidth || height != iheight) { -// println(" former size was " + width + " " + height); - g.setSize(iwidth, iheight); - width = iwidth; - height = iheight; - } - } - - - /** - * Starts up and creates a two-dimensional drawing surface, - * or resizes the current drawing surface. - *

- * This should be the first thing called inside of setup(). - *

- * If using Java 1.3 or later, this will default to using - * PGraphics2, the Java2D-based renderer. If using Java 1.1, - * or if PGraphics2 is not available, then PGraphics will be used. - * To set your own renderer, use the other version of the size() - * method that takes a renderer as its last parameter. - *

- * If called once a renderer has already been set, this will - * use the previous renderer and simply resize it. - */ - public void size(int iwidth, int iheight) { - size(iwidth, iheight, JAVA2D, null); - } - - - public void size(int iwidth, int iheight, String irenderer) { - size(iwidth, iheight, irenderer, null); - } - - - /** - * Creates a new PGraphics object and sets it to the specified size. - * - * Note that you cannot change the renderer once outside of setup(). - * In most cases, you can call size() to give it a new size, - * but you need to always ask for the same renderer, otherwise - * you're gonna run into trouble. - * - * The size() method should *only* be called from inside the setup() or - * draw() methods, so that it is properly run on the main animation thread. - * To change the size of a PApplet externally, use setSize(), which will - * update the component size, and queue a resize of the renderer as well. - */ - public void size(final int iwidth, final int iheight, - String irenderer, String ipath) { - // Run this from the EDT, just cuz it's AWT stuff (or maybe later Swing) - SwingUtilities.invokeLater(new Runnable() { - public void run() { - // Set the preferred size so that the layout managers can handle it - setPreferredSize(new Dimension(iwidth, iheight)); - setSize(iwidth, iheight); - } - }); - - // ensure that this is an absolute path - if (ipath != null) ipath = savePath(ipath); - - String currentRenderer = g.getClass().getName(); - if (currentRenderer.equals(irenderer)) { - // Avoid infinite loop of throwing exception to reset renderer - resizeRenderer(iwidth, iheight); - //redraw(); // will only be called insize draw() - - } else { // renderer is being changed - // otherwise ok to fall through and create renderer below - // the renderer is changing, so need to create a new object - g = makeGraphics(iwidth, iheight, irenderer, ipath, true); - width = iwidth; - height = iheight; - - // fire resize event to make sure the applet is the proper size -// setSize(iwidth, iheight); - // this is the function that will run if the user does their own - // size() command inside setup, so set defaultSize to false. - defaultSize = false; - - // throw an exception so that setup() is called again - // but with a properly sized render - // this is for opengl, which needs a valid, properly sized - // display before calling anything inside setup(). - throw new RendererChangeException(); - } - } - - - /** - * Create an offscreen PGraphics object for drawing. This can be used - * for bitmap or vector images drawing or rendering. - *

    - *
  • Do not use "new PGraphicsXxxx()", use this method. This method - * ensures that internal variables are set up properly that tie the - * new graphics context back to its parent PApplet. - *
  • The basic way to create bitmap images is to use the saveFrame() - * function. - *
  • If you want to create a really large scene and write that, - * first make sure that you've allocated a lot of memory in the Preferences. - *
  • If you want to create images that are larger than the screen, - * you should create your own PGraphics object, draw to that, and use - * save(). - * For now, it's best to use P3D in this scenario. - * P2D is currently disabled, and the JAVA2D default will give mixed - * results. An example of using P3D: - *
    -   *
    -   * PGraphics big;
    -   *
    -   * void setup() {
    -   *   big = createGraphics(3000, 3000, P3D);
    -   *
    -   *   big.beginDraw();
    -   *   big.background(128);
    -   *   big.line(20, 1800, 1800, 900);
    -   *   // etc..
    -   *   big.endDraw();
    -   *
    -   *   // make sure the file is written to the sketch folder
    -   *   big.save("big.tif");
    -   * }
    -   *
    -   * 
    - *
  • It's important to always wrap drawing to createGraphics() with - * beginDraw() and endDraw() (beginFrame() and endFrame() prior to - * revision 0115). The reason is that the renderer needs to know when - * drawing has stopped, so that it can update itself internally. - * This also handles calling the defaults() method, for people familiar - * with that. - *
  • It's not possible to use createGraphics() with the OPENGL renderer, - * because it doesn't allow offscreen use. - *
  • With Processing 0115 and later, it's possible to write images in - * formats other than the default .tga and .tiff. The exact formats and - * background information can be found in the developer's reference for - * PImage.save(). - *
- */ - public PGraphics createGraphics(int iwidth, int iheight, - String irenderer) { - PGraphics pg = makeGraphics(iwidth, iheight, irenderer, null, false); - //pg.parent = this; // make save() work - return pg; - } - - - /** - * Create an offscreen graphics surface for drawing, in this case - * for a renderer that writes to a file (such as PDF or DXF). - * @param ipath can be an absolute or relative path - */ - public PGraphics createGraphics(int iwidth, int iheight, - String irenderer, String ipath) { - if (ipath != null) { - ipath = savePath(ipath); - } - PGraphics pg = makeGraphics(iwidth, iheight, irenderer, ipath, false); - pg.parent = this; // make save() work - return pg; - } - - - /** - * Version of createGraphics() used internally. - * - * @param ipath must be an absolute path, usually set via savePath() - * @oaram applet the parent applet object, this should only be non-null - * in cases where this is the main drawing surface object. - */ - protected PGraphics makeGraphics(int iwidth, int iheight, - String irenderer, String ipath, - boolean iprimary) { - if (irenderer.equals(OPENGL)) { - if (PApplet.platform == WINDOWS) { - String s = System.getProperty("java.version"); - if (s != null) { - if (s.equals("1.5.0_10")) { - System.err.println("OpenGL support is broken with Java 1.5.0_10"); - System.err.println("See http://dev.processing.org" + - "/bugs/show_bug.cgi?id=513 for more info."); - throw new RuntimeException("Please update your Java " + - "installation (see bug #513)"); - } - } - } - } - -// if (irenderer.equals(P2D)) { -// throw new RuntimeException("The P2D renderer is currently disabled, " + -// "please use P3D or JAVA2D."); -// } - - String openglError = - "Before using OpenGL, first select " + - "Import Library > opengl from the Sketch menu."; - - try { - /* - Class rendererClass = Class.forName(irenderer); - - Class constructorParams[] = null; - Object constructorValues[] = null; - - if (ipath == null) { - constructorParams = new Class[] { - Integer.TYPE, Integer.TYPE, PApplet.class - }; - constructorValues = new Object[] { - new Integer(iwidth), new Integer(iheight), this - }; - } else { - constructorParams = new Class[] { - Integer.TYPE, Integer.TYPE, PApplet.class, String.class - }; - constructorValues = new Object[] { - new Integer(iwidth), new Integer(iheight), this, ipath - }; - } - - Constructor constructor = - rendererClass.getConstructor(constructorParams); - PGraphics pg = (PGraphics) constructor.newInstance(constructorValues); - */ - - Class rendererClass = - Thread.currentThread().getContextClassLoader().loadClass(irenderer); - - //Class params[] = null; - //PApplet.println(rendererClass.getConstructors()); - Constructor constructor = rendererClass.getConstructor(new Class[] { }); - PGraphics pg = (PGraphics) constructor.newInstance(); - - pg.setParent(this); - pg.setPrimary(iprimary); - if (ipath != null) pg.setPath(ipath); - pg.setSize(iwidth, iheight); - - // everything worked, return it - return pg; - - } catch (InvocationTargetException ite) { - String msg = ite.getTargetException().getMessage(); - if ((msg != null) && - (msg.indexOf("no jogl in java.library.path") != -1)) { - throw new RuntimeException(openglError + - " (The native library is missing.)"); - - } else { - ite.getTargetException().printStackTrace(); - Throwable target = ite.getTargetException(); - if (platform == MACOSX) target.printStackTrace(System.out); // bug - // neither of these help, or work - //target.printStackTrace(System.err); - //System.err.flush(); - //System.out.println(System.err); // and the object isn't null - throw new RuntimeException(target.getMessage()); - } - - } catch (ClassNotFoundException cnfe) { - if (cnfe.getMessage().indexOf("processing.opengl.PGraphicsGL") != -1) { - throw new RuntimeException(openglError + - " (The library .jar file is missing.)"); - } else { - throw new RuntimeException("You need to use \"Import Library\" " + - "to add " + irenderer + " to your sketch."); - } - - } catch (Exception e) { - //System.out.println("ex3"); - if ((e instanceof IllegalArgumentException) || - (e instanceof NoSuchMethodException) || - (e instanceof IllegalAccessException)) { - e.printStackTrace(); - /* - String msg = "public " + - irenderer.substring(irenderer.lastIndexOf('.') + 1) + - "(int width, int height, PApplet parent" + - ((ipath == null) ? "" : ", String filename") + - ") does not exist."; - */ - String msg = irenderer + " needs to be updated " + - "for the current release of Processing."; - throw new RuntimeException(msg); - - } else { - if (platform == MACOSX) e.printStackTrace(System.out); - throw new RuntimeException(e.getMessage()); - } - } - } - - - /** - * Preferred method of creating new PImage objects, ensures that a - * reference to the parent PApplet is included, which makes save() work - * without needing an absolute path. - */ - public PImage createImage(int wide, int high, int format) { - PImage image = new PImage(wide, high, format); - image.parent = this; // make save() work - return image; - } - - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - - public void update(Graphics screen) { - paint(screen); - } - - - //synchronized public void paint(Graphics screen) { // shutting off for 0146 - public void paint(Graphics screen) { - // ignore the very first call to paint, since it's coming - // from the o.s., and the applet will soon update itself anyway. - if (frameCount == 0) { -// println("Skipping frame"); - // paint() may be called more than once before things - // are finally painted to the screen and the thread gets going - return; - } - - // without ignoring the first call, the first several frames - // are confused because paint() gets called in the midst of - // the initial nextFrame() call, so there are multiple - // updates fighting with one another. - - // g.image is synchronized so that draw/loop and paint don't - // try to fight over it. this was causing a randomized slowdown - // that would cut the frameRate into a third on macosx, - // and is probably related to the windows sluggishness bug too - - // make sure the screen is visible and usable - // (also prevents over-drawing when using PGraphicsOpenGL) - if ((g != null) && (g.image != null)) { -// println("inside paint(), screen.drawImage()"); - screen.drawImage(g.image, 0, 0, null); - } - } - - - // active paint method - protected void paint() { - try { - Graphics screen = this.getGraphics(); - if (screen != null) { - if ((g != null) && (g.image != null)) { - screen.drawImage(g.image, 0, 0, null); - } - Toolkit.getDefaultToolkit().sync(); - } - } catch (Exception e) { - // Seen on applet destroy, maybe can ignore? - e.printStackTrace(); - -// } finally { -// if (g != null) { -// g.dispose(); -// } - } - } - - - ////////////////////////////////////////////////////////////// - - - /** - * Main method for the primary animation thread. - * - * Painting in AWT and Swing - */ - public void run() { // not good to make this synchronized, locks things up - long beforeTime = System.nanoTime(); - long overSleepTime = 0L; - - int noDelays = 0; - // Number of frames with a delay of 0 ms before the - // animation thread yields to other running threads. - final int NO_DELAYS_PER_YIELD = 15; - - /* - // this has to be called after the exception is thrown, - // otherwise the supporting libs won't have a valid context to draw to - Object methodArgs[] = - new Object[] { new Integer(width), new Integer(height) }; - sizeMethods.handle(methodArgs); - */ - - while ((Thread.currentThread() == thread) && !finished) { - // Don't resize the renderer from the EDT (i.e. from a ComponentEvent), - // otherwise it may attempt a resize mid-render. - if (resizeRequest) { - resizeRenderer(resizeWidth, resizeHeight); - resizeRequest = false; - } - - // render a single frame - handleDraw(); - - if (frameCount == 1) { - // Call the request focus event once the image is sure to be on - // screen and the component is valid. The OpenGL renderer will - // request focus for its canvas inside beginDraw(). - // http://java.sun.com/j2se/1.4.2/docs/api/java/awt/doc-files/FocusSpec.html - //println("requesting focus"); - requestFocus(); - } - - // wait for update & paint to happen before drawing next frame - // this is necessary since the drawing is sometimes in a - // separate thread, meaning that the next frame will start - // before the update/paint is completed - - long afterTime = System.nanoTime(); - long timeDiff = afterTime - beforeTime; - //System.out.println("time diff is " + timeDiff); - long sleepTime = (frameRatePeriod - timeDiff) - overSleepTime; - - if (sleepTime > 0) { // some time left in this cycle - try { -// Thread.sleep(sleepTime / 1000000L); // nanoseconds -> milliseconds - Thread.sleep(sleepTime / 1000000L, (int) (sleepTime % 1000000L)); - noDelays = 0; // Got some sleep, not delaying anymore - } catch (InterruptedException ex) { } - - overSleepTime = (System.nanoTime() - afterTime) - sleepTime; - //System.out.println(" oversleep is " + overSleepTime); - - } else { // sleepTime <= 0; the frame took longer than the period -// excess -= sleepTime; // store excess time value - overSleepTime = 0L; - - if (noDelays > NO_DELAYS_PER_YIELD) { - Thread.yield(); // give another thread a chance to run - noDelays = 0; - } - } - - beforeTime = System.nanoTime(); - } - - stop(); // call to shutdown libs? - - // If the user called the exit() function, the window should close, - // rather than the sketch just halting. - if (exitCalled) { - exit2(); - } - } - - - //synchronized public void handleDisplay() { - public void handleDraw() { - if (g != null && (looping || redraw)) { - if (!g.canDraw()) { - // Don't draw if the renderer is not yet ready. - // (e.g. OpenGL has to wait for a peer to be on screen) - return; - } - - //System.out.println("handleDraw() " + frameCount); - - g.beginDraw(); - if (recorder != null) { - recorder.beginDraw(); - } - - long now = System.nanoTime(); - - if (frameCount == 0) { - try { - //println("Calling setup()"); - setup(); - //println("Done with setup()"); - - } catch (RendererChangeException e) { - // Give up, instead set the new renderer and re-attempt setup() - return; - } - this.defaultSize = false; - - } else { // frameCount > 0, meaning an actual draw() - // update the current frameRate - double rate = 1000000.0 / ((now - frameRateLastNanos) / 1000000.0); - float instantaneousRate = (float) rate / 1000.0f; - frameRate = (frameRate * 0.9f) + (instantaneousRate * 0.1f); - - preMethods.handle(); - - // use dmouseX/Y as previous mouse pos, since this is the - // last position the mouse was in during the previous draw. - pmouseX = dmouseX; - pmouseY = dmouseY; - - //println("Calling draw()"); - draw(); - //println("Done calling draw()"); - - // dmouseX/Y is updated only once per frame (unlike emouseX/Y) - dmouseX = mouseX; - dmouseY = mouseY; - - // these are called *after* loop so that valid - // drawing commands can be run inside them. it can't - // be before, since a call to background() would wipe - // out anything that had been drawn so far. - dequeueMouseEvents(); - dequeueKeyEvents(); - - drawMethods.handle(); - - redraw = false; // unset 'redraw' flag in case it was set - // (only do this once draw() has run, not just setup()) - - } - - g.endDraw(); - if (recorder != null) { - recorder.endDraw(); - } - - frameRateLastNanos = now; - frameCount++; - - // Actively render the screen - paint(); - -// repaint(); -// getToolkit().sync(); // force repaint now (proper method) - - postMethods.handle(); - } - } - - - ////////////////////////////////////////////////////////////// - - - - synchronized public void redraw() { - if (!looping) { - redraw = true; -// if (thread != null) { -// // wake from sleep (necessary otherwise it'll be -// // up to 10 seconds before update) -// if (CRUSTY_THREADS) { -// thread.interrupt(); -// } else { -// synchronized (blocker) { -// blocker.notifyAll(); -// } -// } -// } - } - } - - - synchronized public void loop() { - if (!looping) { - looping = true; - } - } - - - synchronized public void noLoop() { - if (looping) { - looping = false; - } - } - - - ////////////////////////////////////////////////////////////// - - - public void addListeners() { - addMouseListener(this); - addMouseMotionListener(this); - addKeyListener(this); - addFocusListener(this); - - addComponentListener(new ComponentAdapter() { - public void componentResized(ComponentEvent e) { - Component c = e.getComponent(); - //System.out.println("componentResized() " + c); - Rectangle bounds = c.getBounds(); - resizeRequest = true; - resizeWidth = bounds.width; - resizeHeight = bounds.height; - } - }); - } - - - ////////////////////////////////////////////////////////////// - - - MouseEvent mouseEventQueue[] = new MouseEvent[10]; - int mouseEventCount; - - protected void enqueueMouseEvent(MouseEvent e) { - synchronized (mouseEventQueue) { - if (mouseEventCount == mouseEventQueue.length) { - MouseEvent temp[] = new MouseEvent[mouseEventCount << 1]; - System.arraycopy(mouseEventQueue, 0, temp, 0, mouseEventCount); - mouseEventQueue = temp; - } - mouseEventQueue[mouseEventCount++] = e; - } - } - - protected void dequeueMouseEvents() { - synchronized (mouseEventQueue) { - for (int i = 0; i < mouseEventCount; i++) { - mouseEvent = mouseEventQueue[i]; - handleMouseEvent(mouseEvent); - } - mouseEventCount = 0; - } - } - - - /** - * Actually take action based on a mouse event. - * Internally updates mouseX, mouseY, mousePressed, and mouseEvent. - * Then it calls the event type with no params, - * i.e. mousePressed() or mouseReleased() that the user may have - * overloaded to do something more useful. - */ - protected void handleMouseEvent(MouseEvent event) { - int id = event.getID(); - - // http://dev.processing.org/bugs/show_bug.cgi?id=170 - // also prevents mouseExited() on the mac from hosing the mouse - // position, because x/y are bizarre values on the exit event. - // see also the id check below.. both of these go together - if ((id == MouseEvent.MOUSE_DRAGGED) || - (id == MouseEvent.MOUSE_MOVED)) { - pmouseX = emouseX; - pmouseY = emouseY; - mouseX = event.getX(); - mouseY = event.getY(); - } - - mouseEvent = event; - - int modifiers = event.getModifiers(); - if ((modifiers & InputEvent.BUTTON1_MASK) != 0) { - mouseButton = LEFT; - } else if ((modifiers & InputEvent.BUTTON2_MASK) != 0) { - mouseButton = CENTER; - } else if ((modifiers & InputEvent.BUTTON3_MASK) != 0) { - mouseButton = RIGHT; - } - // if running on macos, allow ctrl-click as right mouse - if (platform == MACOSX) { - if (mouseEvent.isPopupTrigger()) { - mouseButton = RIGHT; - } - } - - mouseEventMethods.handle(new Object[] { event }); - - // this used to only be called on mouseMoved and mouseDragged - // change it back if people run into trouble - if (firstMouse) { - pmouseX = mouseX; - pmouseY = mouseY; - dmouseX = mouseX; - dmouseY = mouseY; - firstMouse = false; - } - - //println(event); - - switch (id) { - case MouseEvent.MOUSE_PRESSED: - mousePressed = true; - mousePressed(); - break; - case MouseEvent.MOUSE_RELEASED: - mousePressed = false; - mouseReleased(); - break; - case MouseEvent.MOUSE_CLICKED: - mouseClicked(); - break; - case MouseEvent.MOUSE_DRAGGED: - mouseDragged(); - break; - case MouseEvent.MOUSE_MOVED: - mouseMoved(); - break; - } - - if ((id == MouseEvent.MOUSE_DRAGGED) || - (id == MouseEvent.MOUSE_MOVED)) { - emouseX = mouseX; - emouseY = mouseY; - } - } - - - /** - * Figure out how to process a mouse event. When loop() has been - * called, the events will be queued up until drawing is complete. - * If noLoop() has been called, then events will happen immediately. - */ - protected void checkMouseEvent(MouseEvent event) { - if (looping) { - enqueueMouseEvent(event); - } else { - handleMouseEvent(event); - } - } - - - /** - * If you override this or any function that takes a "MouseEvent e" - * without calling its super.mouseXxxx() then mouseX, mouseY, - * mousePressed, and mouseEvent will no longer be set. - */ - public void mousePressed(MouseEvent e) { - checkMouseEvent(e); - } - - public void mouseReleased(MouseEvent e) { - checkMouseEvent(e); - } - - public void mouseClicked(MouseEvent e) { - checkMouseEvent(e); - } - - public void mouseEntered(MouseEvent e) { - checkMouseEvent(e); - } - - public void mouseExited(MouseEvent e) { - checkMouseEvent(e); - } - - public void mouseDragged(MouseEvent e) { - checkMouseEvent(e); - } - - public void mouseMoved(MouseEvent e) { - checkMouseEvent(e); - } - - - /** - * Mouse has been pressed, and should be considered "down" - * until mouseReleased() is called. If you must, use - * int button = mouseEvent.getButton(); - * to figure out which button was clicked. It will be one of: - * MouseEvent.BUTTON1, MouseEvent.BUTTON2, MouseEvent.BUTTON3 - * Note, however, that this is completely inconsistent across - * platforms. - */ - public void mousePressed() { } - - /** - * Mouse button has been released. - */ - public void mouseReleased() { } - - /** - * When the mouse is clicked, mousePressed() will be called, - * then mouseReleased(), then mouseClicked(). Note that - * mousePressed is already false inside of mouseClicked(). - */ - public void mouseClicked() { } - - /** - * Mouse button is pressed and the mouse has been dragged. - */ - public void mouseDragged() { } - - /** - * Mouse button is not pressed but the mouse has changed locations. - */ - public void mouseMoved() { } - - - ////////////////////////////////////////////////////////////// - - - KeyEvent keyEventQueue[] = new KeyEvent[10]; - int keyEventCount; - - protected void enqueueKeyEvent(KeyEvent e) { - synchronized (keyEventQueue) { - if (keyEventCount == keyEventQueue.length) { - KeyEvent temp[] = new KeyEvent[keyEventCount << 1]; - System.arraycopy(keyEventQueue, 0, temp, 0, keyEventCount); - keyEventQueue = temp; - } - keyEventQueue[keyEventCount++] = e; - } - } - - protected void dequeueKeyEvents() { - synchronized (keyEventQueue) { - for (int i = 0; i < keyEventCount; i++) { - keyEvent = keyEventQueue[i]; - handleKeyEvent(keyEvent); - } - keyEventCount = 0; - } - } - - - protected void handleKeyEvent(KeyEvent event) { - keyEvent = event; - key = event.getKeyChar(); - keyCode = event.getKeyCode(); - - keyEventMethods.handle(new Object[] { event }); - - switch (event.getID()) { - case KeyEvent.KEY_PRESSED: - keyPressed = true; - keyPressed(); - break; - case KeyEvent.KEY_RELEASED: - keyPressed = false; - keyReleased(); - break; - case KeyEvent.KEY_TYPED: - keyTyped(); - break; - } - - // if someone else wants to intercept the key, they should - // set key to zero (or something besides the ESC). - if (event.getID() == KeyEvent.KEY_PRESSED) { - if (key == KeyEvent.VK_ESCAPE) { - exit(); - } - // When running tethered to the Processing application, respond to - // Ctrl-W (or Cmd-W) events by closing the sketch. Disable this behavior - // when running independently, because this sketch may be one component - // embedded inside an application that has its own close behavior. - if (external && - event.getModifiers() == MENU_SHORTCUT && - event.getKeyCode() == 'W') { - exit(); - } - } - } - - - protected void checkKeyEvent(KeyEvent event) { - if (looping) { - enqueueKeyEvent(event); - } else { - handleKeyEvent(event); - } - } - - - /** - * Overriding keyXxxxx(KeyEvent e) functions will cause the 'key', - * 'keyCode', and 'keyEvent' variables to no longer work; - * key events will no longer be queued until the end of draw(); - * and the keyPressed(), keyReleased() and keyTyped() methods - * will no longer be called. - */ - public void keyPressed(KeyEvent e) { checkKeyEvent(e); } - public void keyReleased(KeyEvent e) { checkKeyEvent(e); } - public void keyTyped(KeyEvent e) { checkKeyEvent(e); } - - - /** - * Called each time a single key on the keyboard is pressed. - * Because of how operating systems handle key repeats, holding - * down a key will cause multiple calls to keyPressed(), because - * the OS repeat takes over. - *

- * Examples for key handling: - * (Tested on Windows XP, please notify if different on other - * platforms, I have a feeling Mac OS and Linux may do otherwise) - *

-   * 1. Pressing 'a' on the keyboard:
-   *    keyPressed  with key == 'a' and keyCode == 'A'
-   *    keyTyped    with key == 'a' and keyCode ==  0
-   *    keyReleased with key == 'a' and keyCode == 'A'
-   *
-   * 2. Pressing 'A' on the keyboard:
-   *    keyPressed  with key == 'A' and keyCode == 'A'
-   *    keyTyped    with key == 'A' and keyCode ==  0
-   *    keyReleased with key == 'A' and keyCode == 'A'
-   *
-   * 3. Pressing 'shift', then 'a' on the keyboard (caps lock is off):
-   *    keyPressed  with key == CODED and keyCode == SHIFT
-   *    keyPressed  with key == 'A'   and keyCode == 'A'
-   *    keyTyped    with key == 'A'   and keyCode == 0
-   *    keyReleased with key == 'A'   and keyCode == 'A'
-   *    keyReleased with key == CODED and keyCode == SHIFT
-   *
-   * 4. Holding down the 'a' key.
-   *    The following will happen several times,
-   *    depending on your machine's "key repeat rate" settings:
-   *    keyPressed  with key == 'a' and keyCode == 'A'
-   *    keyTyped    with key == 'a' and keyCode ==  0
-   *    When you finally let go, you'll get:
-   *    keyReleased with key == 'a' and keyCode == 'A'
-   *
-   * 5. Pressing and releasing the 'shift' key
-   *    keyPressed  with key == CODED and keyCode == SHIFT
-   *    keyReleased with key == CODED and keyCode == SHIFT
-   *    (note there is no keyTyped)
-   *
-   * 6. Pressing the tab key in an applet with Java 1.4 will
-   *    normally do nothing, but PApplet dynamically shuts
-   *    this behavior off if Java 1.4 is in use (tested 1.4.2_05 Windows).
-   *    Java 1.1 (Microsoft VM) passes the TAB key through normally.
-   *    Not tested on other platforms or for 1.3.
-   * 
- */ - public void keyPressed() { } - - - /** - * See keyPressed(). - */ - public void keyReleased() { } - - - /** - * Only called for "regular" keys like letters, - * see keyPressed() for full documentation. - */ - public void keyTyped() { } - - - ////////////////////////////////////////////////////////////// - - // i am focused man, and i'm not afraid of death. - // and i'm going all out. i circle the vultures in a van - // and i run the block. - - - public void focusGained() { } - - public void focusGained(FocusEvent e) { - focused = true; - focusGained(); - } - - - public void focusLost() { } - - public void focusLost(FocusEvent e) { - focused = false; - focusLost(); - } - - - ////////////////////////////////////////////////////////////// - - // getting the time - - - /** - * Get the number of milliseconds since the applet started. - *

- * This is a function, rather than a variable, because it may - * change multiple times per frame. - */ - public int millis() { - return (int) (System.currentTimeMillis() - millisOffset); - } - - /** Seconds position of the current time. */ - static public int second() { - return Calendar.getInstance().get(Calendar.SECOND); - } - - /** Minutes position of the current time. */ - static public int minute() { - return Calendar.getInstance().get(Calendar.MINUTE); - } - - /** - * Hour position of the current time in international format (0-23). - *

- * To convert this value to American time:
- *

int yankeeHour = (hour() % 12);
-   * if (yankeeHour == 0) yankeeHour = 12;
- */ - static public int hour() { - return Calendar.getInstance().get(Calendar.HOUR_OF_DAY); - } - - /** - * Get the current day of the month (1 through 31). - *

- * If you're looking for the day of the week (M-F or whatever) - * or day of the year (1..365) then use java's Calendar.get() - */ - static public int day() { - return Calendar.getInstance().get(Calendar.DAY_OF_MONTH); - } - - /** - * Get the current month in range 1 through 12. - */ - static public int month() { - // months are number 0..11 so change to colloquial 1..12 - return Calendar.getInstance().get(Calendar.MONTH) + 1; - } - - /** - * Get the current year. - */ - static public int year() { - return Calendar.getInstance().get(Calendar.YEAR); - } - - - ////////////////////////////////////////////////////////////// - - // controlling time (playing god) - - - /** - * The delay() function causes the program to halt for a specified time. - * Delay times are specified in thousandths of a second. For example, - * running delay(3000) will stop the program for three seconds and - * delay(500) will stop the program for a half-second. Remember: the - * display window is updated only at the end of draw(), so putting more - * than one delay() inside draw() will simply add them together and the new - * frame will be drawn when the total delay is over. - *

- * I'm not sure if this is even helpful anymore, as the screen isn't - * updated before or after the delay, meaning which means it just - * makes the app lock up temporarily. - */ - public void delay(int napTime) { - if (frameCount != 0) { - if (napTime > 0) { - try { - Thread.sleep(napTime); - } catch (InterruptedException e) { } - } - } - } - - - /** - * Set a target frameRate. This will cause delay() to be called - * after each frame so that the sketch synchronizes to a particular speed. - * Note that this only sets the maximum frame rate, it cannot be used to - * make a slow sketch go faster. Sketches have no default frame rate - * setting, and will attempt to use maximum processor power to achieve - * maximum speed. - */ - public void frameRate(float newRateTarget) { - frameRateTarget = newRateTarget; - frameRatePeriod = (long) (1000000000.0 / frameRateTarget); - } - - - ////////////////////////////////////////////////////////////// - - - /** - * Get a param from the web page, or (eventually) - * from a properties file. - */ - public String param(String what) { - if (online) { - return getParameter(what); - - } else { - System.err.println("param() only works inside a web browser"); - } - return null; - } - - - /** - * Show status in the status bar of a web browser, or in the - * System.out console. Eventually this might show status in the - * p5 environment itself, rather than relying on the console. - */ - public void status(String what) { - if (online) { - showStatus(what); - - } else { - System.out.println(what); // something more interesting? - } - } - - - public void link(String here) { - link(here, null); - } - - - /** - * Link to an external page without all the muss. - *

- * When run with an applet, uses the browser to open the url, - * for applications, attempts to launch a browser with the url. - *

- * Works on Mac OS X and Windows. For Linux, use: - *

open(new String[] { "firefox", url });
- * or whatever you want as your browser, since Linux doesn't - * yet have a standard method for launching URLs. - */ - public void link(String url, String frameTitle) { - if (online) { - try { - if (frameTitle == null) { - getAppletContext().showDocument(new URL(url)); - } else { - getAppletContext().showDocument(new URL(url), frameTitle); - } - } catch (Exception e) { - e.printStackTrace(); - throw new RuntimeException("Could not open " + url); - } - } else { - try { - if (platform == WINDOWS) { - // the following uses a shell execute to launch the .html file - // note that under cygwin, the .html files have to be chmodded +x - // after they're unpacked from the zip file. i don't know why, - // and don't understand what this does in terms of windows - // permissions. without the chmod, the command prompt says - // "Access is denied" in both cygwin and the "dos" prompt. - //Runtime.getRuntime().exec("cmd /c " + currentDir + "\\reference\\" + - // referenceFile + ".html"); - - // replace ampersands with control sequence for DOS. - // solution contributed by toxi on the bugs board. - url = url.replaceAll("&","^&"); - - // open dos prompt, give it 'start' command, which will - // open the url properly. start by itself won't work since - // it appears to need cmd - Runtime.getRuntime().exec("cmd /c start " + url); - - } else if (platform == MACOSX) { - //com.apple.mrj.MRJFileUtils.openURL(url); - try { - Class mrjFileUtils = Class.forName("com.apple.mrj.MRJFileUtils"); - Method openMethod = - mrjFileUtils.getMethod("openURL", new Class[] { String.class }); - openMethod.invoke(null, new Object[] { url }); - } catch (Exception e) { - e.printStackTrace(); - } - } else { - //throw new RuntimeException("Can't open URLs for this platform"); - // Just pass it off to open() and hope for the best - open(url); - } - } catch (IOException e) { - e.printStackTrace(); - throw new RuntimeException("Could not open " + url); - } - } - } - - - /** - * Attempt to open a file using the platform's shell. - */ - static public void open(String filename) { - open(new String[] { filename }); - } - - - static String openLauncher; - - /** - * Launch a process using a platforms shell. This version uses an array - * to make it easier to deal with spaces in the individual elements. - * (This avoids the situation of trying to put single or double quotes - * around different bits). - */ - static public Process open(String argv[]) { - String[] params = null; - - if (platform == WINDOWS) { - // just launching the .html file via the shell works - // but make sure to chmod +x the .html files first - // also place quotes around it in case there's a space - // in the user.dir part of the url - params = new String[] { "cmd", "/c" }; - - } else if (platform == MACOSX) { - params = new String[] { "open" }; - - } else if (platform == LINUX) { - if (openLauncher == null) { - // Attempt to use gnome-open - try { - Process p = Runtime.getRuntime().exec(new String[] { "gnome-open" }); - /*int result =*/ p.waitFor(); - // Not installed will throw an IOException (JDK 1.4.2, Ubuntu 7.04) - openLauncher = "gnome-open"; - } catch (Exception e) { } - } - if (openLauncher == null) { - // Attempt with kde-open - try { - Process p = Runtime.getRuntime().exec(new String[] { "kde-open" }); - /*int result =*/ p.waitFor(); - openLauncher = "kde-open"; - } catch (Exception e) { } - } - if (openLauncher == null) { - System.err.println("Could not find gnome-open or kde-open, " + - "the open() command may not work."); - } - if (openLauncher != null) { - params = new String[] { openLauncher }; - } - //} else { // give up and just pass it to Runtime.exec() - //open(new String[] { filename }); - //params = new String[] { filename }; - } - if (params != null) { - // If the 'open', 'gnome-open' or 'cmd' are already included - if (params[0].equals(argv[0])) { - // then don't prepend those params again - return exec(argv); - } else { - params = concat(params, argv); - return exec(params); - } - } else { - return exec(argv); - } - } - - - static public Process exec(String[] argv) { - try { - return Runtime.getRuntime().exec(argv); - } catch (Exception e) { - e.printStackTrace(); - throw new RuntimeException("Could not open " + join(argv, ' ')); - } - } - - - ////////////////////////////////////////////////////////////// - - - /** - * Function for an applet/application to kill itself and - * display an error. Mostly this is here to be improved later. - */ - public void die(String what) { - stop(); - throw new RuntimeException(what); - } - - - /** - * Same as above but with an exception. Also needs work. - */ - public void die(String what, Exception e) { - if (e != null) e.printStackTrace(); - die(what); - } - - - /** - * Call to safely exit the sketch when finished. For instance, - * to render a single frame, save it, and quit. - */ - public void exit() { - if (thread == null) { - // exit immediately, stop() has already been called, - // meaning that the main thread has long since exited - exit2(); - - } else if (looping) { - // stop() will be called as the thread exits - finished = true; - // tell the code to call exit2() to do a System.exit() - // once the next draw() has completed - exitCalled = true; - - } else if (!looping) { - // if not looping, need to call stop explicitly, - // because the main thread will be sleeping - stop(); - - // now get out - exit2(); - } - } - - - void exit2() { - try { - System.exit(0); - } catch (SecurityException e) { - // don't care about applet security exceptions - } - } - - - - ////////////////////////////////////////////////////////////// - - - public void method(String name) { -// final Object o = this; -// final Class c = getClass(); - try { - Method method = getClass().getMethod(name, new Class[] {}); - method.invoke(this, new Object[] { }); - - } catch (IllegalArgumentException e) { - e.printStackTrace(); - } catch (IllegalAccessException e) { - e.printStackTrace(); - } catch (InvocationTargetException e) { - e.getTargetException().printStackTrace(); - } catch (NoSuchMethodException nsme) { - System.err.println("There is no " + name + "() method " + - "in the class " + getClass().getName()); - } catch (Exception e) { - e.printStackTrace(); - } - } - - - public void thread(final String name) { - Thread later = new Thread() { - public void run() { - method(name); - } - }; - later.start(); - } - - - /* - public void thread(String name) { - final Object o = this; - final Class c = getClass(); - try { - final Method method = c.getMethod(name, new Class[] {}); - Thread later = new Thread() { - public void run() { - try { - method.invoke(o, new Object[] { }); - - } catch (IllegalArgumentException e) { - e.printStackTrace(); - } catch (IllegalAccessException e) { - e.printStackTrace(); - } catch (InvocationTargetException e) { - e.getTargetException().printStackTrace(); - } - } - }; - later.start(); - - } catch (NoSuchMethodException nsme) { - System.err.println("There is no " + name + "() method " + - "in the class " + getClass().getName()); - - } catch (Exception e) { - e.printStackTrace(); - } - } - */ - - - - ////////////////////////////////////////////////////////////// - - // SCREEN GRABASS - - - /** - * Intercepts any relative paths to make them absolute (relative - * to the sketch folder) before passing to save() in PImage. - * (Changed in 0100) - */ - public void save(String filename) { - g.save(savePath(filename)); - } - - - /** - * Grab an image of what's currently in the drawing area and save it - * as a .tif or .tga file. - *

- * Best used just before endDraw() at the end of your draw(). - * This can only create .tif or .tga images, so if neither extension - * is specified it defaults to writing a tiff and adds a .tif suffix. - */ - public void saveFrame() { - try { - g.save(savePath("screen-" + nf(frameCount, 4) + ".tif")); - } catch (SecurityException se) { - System.err.println("Can't use saveFrame() when running in a browser, " + - "unless using a signed applet."); - } - } - - - /** - * Save the current frame as a .tif or .tga image. - *

- * The String passed in can contain a series of # signs - * that will be replaced with the screengrab number. - *

-   * i.e. saveFrame("blah-####.tif");
-   *      // saves a numbered tiff image, replacing the
-   *      // #### signs with zeros and the frame number 
- */ - public void saveFrame(String what) { - try { - g.save(savePath(insertFrame(what))); - } catch (SecurityException se) { - System.err.println("Can't use saveFrame() when running in a browser, " + - "unless using a signed applet."); - } - } - - - /** - * Check a string for #### signs to see if the frame number should be - * inserted. Used for functions like saveFrame() and beginRecord() to - * replace the # marks with the frame number. If only one # is used, - * it will be ignored, under the assumption that it's probably not - * intended to be the frame number. - */ - protected String insertFrame(String what) { - int first = what.indexOf('#'); - int last = what.lastIndexOf('#'); - - if ((first != -1) && (last - first > 0)) { - String prefix = what.substring(0, first); - int count = last - first + 1; - String suffix = what.substring(last + 1); - return prefix + nf(frameCount, count) + suffix; - } - return what; // no change - } - - - - ////////////////////////////////////////////////////////////// - - // CURSOR - - // - - - int cursorType = ARROW; // cursor type - boolean cursorVisible = true; // cursor visibility flag - PImage invisibleCursor; - - - /** - * Set the cursor type - */ - public void cursor(int cursorType) { - setCursor(Cursor.getPredefinedCursor(cursorType)); - cursorVisible = true; - this.cursorType = cursorType; - } - - - /** - * Replace the cursor with the specified PImage. The x- and y- - * coordinate of the center will be the center of the image. - */ - public void cursor(PImage image) { - cursor(image, image.width/2, image.height/2); - } - - - /** - * Set a custom cursor to an image with a specific hotspot. - * Only works with JDK 1.2 and later. - * Currently seems to be broken on Java 1.4 for Mac OS X - *

- * Based on code contributed by Amit Pitaru, plus additional - * code to handle Java versions via reflection by Jonathan Feinberg. - * Reflection removed for release 0128 and later. - */ - public void cursor(PImage image, int hotspotX, int hotspotY) { - // don't set this as cursor type, instead use cursor_type - // to save the last cursor used in case cursor() is called - //cursor_type = Cursor.CUSTOM_CURSOR; - Image jimage = - createImage(new MemoryImageSource(image.width, image.height, - image.pixels, 0, image.width)); - Point hotspot = new Point(hotspotX, hotspotY); - Toolkit tk = Toolkit.getDefaultToolkit(); - Cursor cursor = tk.createCustomCursor(jimage, hotspot, "Custom Cursor"); - setCursor(cursor); - cursorVisible = true; - } - - - /** - * Show the cursor after noCursor() was called. - * Notice that the program remembers the last set cursor type - */ - public void cursor() { - // maybe should always set here? seems dangerous, since - // it's likely that java will set the cursor to something - // else on its own, and the applet will be stuck b/c bagel - // thinks that the cursor is set to one particular thing - if (!cursorVisible) { - cursorVisible = true; - setCursor(Cursor.getPredefinedCursor(cursorType)); - } - } - - - /** - * Hide the cursor by creating a transparent image - * and using it as a custom cursor. - */ - public void noCursor() { - if (!cursorVisible) return; // don't hide if already hidden. - - if (invisibleCursor == null) { - invisibleCursor = new PImage(16, 16, ARGB); - } - // was formerly 16x16, but the 0x0 was added by jdf as a fix - // for macosx, which wasn't honoring the invisible cursor - cursor(invisibleCursor, 8, 8); - cursorVisible = false; - } - - - ////////////////////////////////////////////////////////////// - - - static public void print(byte what) { - System.out.print(what); - System.out.flush(); - } - - static public void print(boolean what) { - System.out.print(what); - System.out.flush(); - } - - static public void print(char what) { - System.out.print(what); - System.out.flush(); - } - - static public void print(int what) { - System.out.print(what); - System.out.flush(); - } - - static public void print(float what) { - System.out.print(what); - System.out.flush(); - } - - static public void print(String what) { - System.out.print(what); - System.out.flush(); - } - - static public void print(Object what) { - if (what == null) { - // special case since this does fuggly things on > 1.1 - System.out.print("null"); - } else { - System.out.println(what.toString()); - } - } - - // - - static public void println() { - System.out.println(); - } - - // - - static public void println(byte what) { - print(what); System.out.println(); - } - - static public void println(boolean what) { - print(what); System.out.println(); - } - - static public void println(char what) { - print(what); System.out.println(); - } - - static public void println(int what) { - print(what); System.out.println(); - } - - static public void println(float what) { - print(what); System.out.println(); - } - - static public void println(String what) { - print(what); System.out.println(); - } - - static public void println(Object what) { - if (what == null) { - // special case since this does fuggly things on > 1.1 - System.out.println("null"); - - } else { - String name = what.getClass().getName(); - if (name.charAt(0) == '[') { - switch (name.charAt(1)) { - case '[': - // don't even mess with multi-dimensional arrays (case '[') - // or anything else that's not int, float, boolean, char - System.out.println(what); - break; - - case 'L': - // print a 1D array of objects as individual elements - Object poo[] = (Object[]) what; - for (int i = 0; i < poo.length; i++) { - if (poo[i] instanceof String) { - System.out.println("[" + i + "] \"" + poo[i] + "\""); - } else { - System.out.println("[" + i + "] " + poo[i]); - } - } - break; - - case 'Z': // boolean - boolean zz[] = (boolean[]) what; - for (int i = 0; i < zz.length; i++) { - System.out.println("[" + i + "] " + zz[i]); - } - break; - - case 'B': // byte - byte bb[] = (byte[]) what; - for (int i = 0; i < bb.length; i++) { - System.out.println("[" + i + "] " + bb[i]); - } - break; - - case 'C': // char - char cc[] = (char[]) what; - for (int i = 0; i < cc.length; i++) { - System.out.println("[" + i + "] '" + cc[i] + "'"); - } - break; - - case 'I': // int - int ii[] = (int[]) what; - for (int i = 0; i < ii.length; i++) { - System.out.println("[" + i + "] " + ii[i]); - } - break; - - case 'F': // float - float ff[] = (float[]) what; - for (int i = 0; i < ff.length; i++) { - System.out.println("[" + i + "] " + ff[i]); - } - break; - - /* - case 'D': // double - double dd[] = (double[]) what; - for (int i = 0; i < dd.length; i++) { - System.out.println("[" + i + "] " + dd[i]); - } - break; - */ - - default: - System.out.println(what); - } - } else { // not an array - System.out.println(what); - } - } - } - - // - - /* - // not very useful, because it only works for public (and protected?) - // fields of a class, not local variables to methods - public void printvar(String name) { - try { - Field field = getClass().getDeclaredField(name); - println(name + " = " + field.get(this)); - } catch (Exception e) { - e.printStackTrace(); - } - } - */ - - - ////////////////////////////////////////////////////////////// - - // MATH - - // lots of convenience methods for math with floats. - // doubles are overkill for processing applets, and casting - // things all the time is annoying, thus the functions below. - - - static public final float abs(float n) { - return (n < 0) ? -n : n; - } - - static public final int abs(int n) { - return (n < 0) ? -n : n; - } - - static public final float sq(float a) { - return a*a; - } - - static public final float sqrt(float a) { - return (float)Math.sqrt(a); - } - - static public final float log(float a) { - return (float)Math.log(a); - } - - static public final float exp(float a) { - return (float)Math.exp(a); - } - - static public final float pow(float a, float b) { - return (float)Math.pow(a, b); - } - - - static public final int max(int a, int b) { - return (a > b) ? a : b; - } - - static public final float max(float a, float b) { - return (a > b) ? a : b; - } - - - static public final int max(int a, int b, int c) { - return (a > b) ? ((a > c) ? a : c) : ((b > c) ? b : c); - } - - static public final float max(float a, float b, float c) { - return (a > b) ? ((a > c) ? a : c) : ((b > c) ? b : c); - } - - - /** - * Find the maximum value in an array. - * Throws an ArrayIndexOutOfBoundsException if the array is length 0. - * @param list the source array - * @return The maximum value - */ - static public final int max(int[] list) { - if (list.length == 0) { - throw new ArrayIndexOutOfBoundsException(ERROR_MIN_MAX); - } - int max = list[0]; - for (int i = 1; i < list.length; i++) { - if (list[i] > max) max = list[i]; - } - return max; - } - - /** - * Find the maximum value in an array. - * Throws an ArrayIndexOutOfBoundsException if the array is length 0. - * @param list the source array - * @return The maximum value - */ - static public final float max(float[] list) { - if (list.length == 0) { - throw new ArrayIndexOutOfBoundsException(ERROR_MIN_MAX); - } - float max = list[0]; - for (int i = 1; i < list.length; i++) { - if (list[i] > max) max = list[i]; - } - return max; - } - - - static public final int min(int a, int b) { - return (a < b) ? a : b; - } - - static public final float min(float a, float b) { - return (a < b) ? a : b; - } - - - static public final int min(int a, int b, int c) { - return (a < b) ? ((a < c) ? a : c) : ((b < c) ? b : c); - } - - static public final float min(float a, float b, float c) { - return (a < b) ? ((a < c) ? a : c) : ((b < c) ? b : c); - } - - - /** - * Find the minimum value in an array. - * Throws an ArrayIndexOutOfBoundsException if the array is length 0. - * @param list the source array - * @return The minimum value - */ - static public final int min(int[] list) { - if (list.length == 0) { - throw new ArrayIndexOutOfBoundsException(ERROR_MIN_MAX); - } - int min = list[0]; - for (int i = 1; i < list.length; i++) { - if (list[i] < min) min = list[i]; - } - return min; - } - /** - * Find the minimum value in an array. - * Throws an ArrayIndexOutOfBoundsException if the array is length 0. - * @param list the source array - * @return The minimum value - */ - static public final float min(float[] list) { - if (list.length == 0) { - throw new ArrayIndexOutOfBoundsException(ERROR_MIN_MAX); - } - float min = list[0]; - for (int i = 1; i < list.length; i++) { - if (list[i] < min) min = list[i]; - } - return min; - } - - - static public final int constrain(int amt, int low, int high) { - return (amt < low) ? low : ((amt > high) ? high : amt); - } - - static public final float constrain(float amt, float low, float high) { - return (amt < low) ? low : ((amt > high) ? high : amt); - } - - - static public final float sin(float angle) { - return (float)Math.sin(angle); - } - - static public final float cos(float angle) { - return (float)Math.cos(angle); - } - - static public final float tan(float angle) { - return (float)Math.tan(angle); - } - - - static public final float asin(float value) { - return (float)Math.asin(value); - } - - static public final float acos(float value) { - return (float)Math.acos(value); - } - - static public final float atan(float value) { - return (float)Math.atan(value); - } - - static public final float atan2(float a, float b) { - return (float)Math.atan2(a, b); - } - - - static public final float degrees(float radians) { - return radians * RAD_TO_DEG; - } - - static public final float radians(float degrees) { - return degrees * DEG_TO_RAD; - } - - - static public final int ceil(float what) { - return (int) Math.ceil(what); - } - - static public final int floor(float what) { - return (int) Math.floor(what); - } - - static public final int round(float what) { - return (int) Math.round(what); - } - - - static public final float mag(float a, float b) { - return (float)Math.sqrt(a*a + b*b); - } - - static public final float mag(float a, float b, float c) { - return (float)Math.sqrt(a*a + b*b + c*c); - } - - - static public final float dist(float x1, float y1, float x2, float y2) { - return sqrt(sq(x2-x1) + sq(y2-y1)); - } - - static public final float dist(float x1, float y1, float z1, - float x2, float y2, float z2) { - return sqrt(sq(x2-x1) + sq(y2-y1) + sq(z2-z1)); - } - - - static public final float lerp(float start, float stop, float amt) { - return start + (stop-start) * amt; - } - - /** - * Normalize a value to exist between 0 and 1 (inclusive). - * Mathematically the opposite of lerp(), figures out what proportion - * a particular value is relative to start and stop coordinates. - */ - static public final float norm(float value, float start, float stop) { - return (value - start) / (stop - start); - } - - /** - * Convenience function to map a variable from one coordinate space - * to another. Equivalent to unlerp() followed by lerp(). - */ - static public final float map(float value, - float istart, float istop, - float ostart, float ostop) { - return ostart + (ostop - ostart) * ((value - istart) / (istop - istart)); - } - - - static public final double map(double value, - double istart, double istop, - double ostart, double ostop) { - return ostart + (ostop - ostart) * ((value - istart) / (istop - istart)); - } - - - - ////////////////////////////////////////////////////////////// - - // RANDOM NUMBERS - - - Random internalRandom; - - /** - * Return a random number in the range [0, howbig). - *

- * The number returned will range from zero up to - * (but not including) 'howbig'. - */ - public final float random(float howbig) { - // for some reason (rounding error?) Math.random() * 3 - // can sometimes return '3' (once in ~30 million tries) - // so a check was added to avoid the inclusion of 'howbig' - - // avoid an infinite loop - if (howbig == 0) return 0; - - // internal random number object - if (internalRandom == null) internalRandom = new Random(); - - float value = 0; - do { - //value = (float)Math.random() * howbig; - value = internalRandom.nextFloat() * howbig; - } while (value == howbig); - return value; - } - - - /** - * Return a random number in the range [howsmall, howbig). - *

- * The number returned will range from 'howsmall' up to - * (but not including 'howbig'. - *

- * If howsmall is >= howbig, howsmall will be returned, - * meaning that random(5, 5) will return 5 (useful) - * and random(7, 4) will return 7 (not useful.. better idea?) - */ - public final float random(float howsmall, float howbig) { - if (howsmall >= howbig) return howsmall; - float diff = howbig - howsmall; - return random(diff) + howsmall; - } - - - public final void randomSeed(long what) { - // internal random number object - if (internalRandom == null) internalRandom = new Random(); - internalRandom.setSeed(what); - } - - - - ////////////////////////////////////////////////////////////// - - // PERLIN NOISE - - // [toxi 040903] - // octaves and amplitude amount per octave are now user controlled - // via the noiseDetail() function. - - // [toxi 030902] - // cleaned up code and now using bagel's cosine table to speed up - - // [toxi 030901] - // implementation by the german demo group farbrausch - // as used in their demo "art": http://www.farb-rausch.de/fr010src.zip - - static final int PERLIN_YWRAPB = 4; - static final int PERLIN_YWRAP = 1<>= 1; - } - - if (x<0) x=-x; - if (y<0) y=-y; - if (z<0) z=-z; - - int xi=(int)x, yi=(int)y, zi=(int)z; - float xf = (float)(x-xi); - float yf = (float)(y-yi); - float zf = (float)(z-zi); - float rxf, ryf; - - float r=0; - float ampl=0.5f; - - float n1,n2,n3; - - for (int i=0; i=1.0f) { xi++; xf--; } - if (yf>=1.0f) { yi++; yf--; } - if (zf>=1.0f) { zi++; zf--; } - } - return r; - } - - // [toxi 031112] - // now adjusts to the size of the cosLUT used via - // the new variables, defined above - private float noise_fsc(float i) { - // using bagel's cosine table instead - return 0.5f*(1.0f-perlin_cosTable[(int)(i*perlin_PI)%perlin_TWOPI]); - } - - // [toxi 040903] - // make perlin noise quality user controlled to allow - // for different levels of detail. lower values will produce - // smoother results as higher octaves are surpressed - - public void noiseDetail(int lod) { - if (lod>0) perlin_octaves=lod; - } - - public void noiseDetail(int lod, float falloff) { - if (lod>0) perlin_octaves=lod; - if (falloff>0) perlin_amp_falloff=falloff; - } - - public void noiseSeed(long what) { - if (perlinRandom == null) perlinRandom = new Random(); - perlinRandom.setSeed(what); - // force table reset after changing the random number seed [0122] - perlin = null; - } - - - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - - protected String[] loadImageFormats; - - - /** - * Load an image from the data folder or a local directory. - * Supports .gif (including transparency), .tga, and .jpg images. - * In Java 1.3 or later, .png images are - * - * also supported. - *

- * Generally, loadImage() should only be used during setup, because - * re-loading images inside draw() is likely to cause a significant - * delay while memory is allocated and the thread blocks while waiting - * for the image to load because loading is not asynchronous. - *

- * To load several images asynchronously, see more information in the - * FAQ about writing your own threaded image loading method. - *

- * As of 0096, returns null if no image of that name is found, - * rather than an error. - *

- * Release 0115 also provides support for reading TIFF and RLE-encoded - * Targa (.tga) files written by Processing via save() and saveFrame(). - * Other TIFF and Targa files will probably not load, use a different - * format (gif, jpg and png are safest bets) when creating images with - * another application to use with Processing. - *

- * Also in release 0115, more image formats (BMP and others) can - * be read when using Java 1.4 and later. Because many people still - * use Java 1.1 and 1.3, these formats are not recommended for - * work that will be posted on the web. To get a list of possible - * image formats for use with Java 1.4 and later, use the following: - * println(javax.imageio.ImageIO.getReaderFormatNames()) - *

- * Images are loaded via a byte array that is passed to - * Toolkit.createImage(). Unfortunately, we cannot use Applet.getImage() - * because it takes a URL argument, which would be a pain in the a-- - * to make work consistently for online and local sketches. - * Sometimes this causes problems, resulting in issues like - * Bug 279 - * and - * Bug 305. - * In release 0115, everything was instead run through javax.imageio, - * but that turned out to be very slow, see - * Bug 392. - * As a result, starting with 0116, the following happens: - *

    - *
  • TGA and TIFF images are loaded using the internal load methods. - *
  • JPG, GIF, and PNG images are loaded via loadBytes(). - *
  • If the image still isn't loaded, it's passed to javax.imageio. - *
- * For releases 0116 and later, if you have problems such as those seen - * in Bugs 279 and 305, use Applet.getImage() instead. You'll be stuck - * with the limitations of getImage() (the headache of dealing with - * online/offline use). Set up your own MediaTracker, and pass the resulting - * java.awt.Image to the PImage constructor that takes an AWT image. - */ - public PImage loadImage(String filename) { - return loadImage(filename, null); - } - - - /** - * Identical to loadImage, but allows you to specify the type of - * image by its extension. Especially useful when downloading from - * CGI scripts. - *

- * Use 'unknown' as the extension to pass off to the default - * image loader that handles gif, jpg, and png. - */ - public PImage loadImage(String filename, String extension) { - if (extension == null) { - String lower = filename.toLowerCase(); - int dot = filename.lastIndexOf('.'); - if (dot == -1) { - extension = "unknown"; // no extension found - } - extension = lower.substring(dot + 1); - - // check for, and strip any parameters on the url, i.e. - // filename.jpg?blah=blah&something=that - int question = extension.indexOf('?'); - if (question != -1) { - extension = extension.substring(0, question); - } - } - - // just in case. them users will try anything! - extension = extension.toLowerCase(); - - if (extension.equals("tga")) { - try { - return loadImageTGA(filename); - } catch (IOException e) { - e.printStackTrace(); - return null; - } - } - - if (extension.equals("tif") || extension.equals("tiff")) { - byte bytes[] = loadBytes(filename); - return (bytes == null) ? null : PImage.loadTIFF(bytes); - } - - // For jpeg, gif, and png, load them using createImage(), - // because the javax.imageio code was found to be much slower, see - // Bug 392. - try { - if (extension.equals("jpg") || extension.equals("jpeg") || - extension.equals("gif") || extension.equals("png") || - extension.equals("unknown")) { - byte bytes[] = loadBytes(filename); - if (bytes == null) { - return null; - } else { - Image awtImage = Toolkit.getDefaultToolkit().createImage(bytes); - PImage image = loadImageMT(awtImage); - if (image.width == -1) { - System.err.println("The file " + filename + - " contains bad image data, or may not be an image."); - } - // if it's a .gif image, test to see if it has transparency - if (extension.equals("gif") || extension.equals("png")) { - image.checkAlpha(); - } - return image; - } - } - } catch (Exception e) { - // show error, but move on to the stuff below, see if it'll work - e.printStackTrace(); - } - - if (loadImageFormats == null) { - loadImageFormats = ImageIO.getReaderFormatNames(); - } - if (loadImageFormats != null) { - for (int i = 0; i < loadImageFormats.length; i++) { - if (extension.equals(loadImageFormats[i])) { - return loadImageIO(filename); - } - } - } - - // failed, could not load image after all those attempts - System.err.println("Could not find a method to load " + filename); - return null; - } - - - public PImage requestImage(String filename) { - return requestImage(filename, null); - } - - - public PImage requestImage(String filename, String extension) { - PImage vessel = createImage(0, 0, ARGB); - AsyncImageLoader ail = - new AsyncImageLoader(filename, extension, vessel); - ail.start(); - return vessel; - } - - - /** - * By trial and error, four image loading threads seem to work best when - * loading images from online. This is consistent with the number of open - * connections that web browsers will maintain. The variable is made public - * (however no accessor has been added since it's esoteric) if you really - * want to have control over the value used. For instance, when loading local - * files, it might be better to only have a single thread (or two) loading - * images so that you're disk isn't simply jumping around. - */ - public int requestImageMax = 4; - volatile int requestImageCount; - - class AsyncImageLoader extends Thread { - String filename; - String extension; - PImage vessel; - - public AsyncImageLoader(String filename, String extension, PImage vessel) { - this.filename = filename; - this.extension = extension; - this.vessel = vessel; - } - - public void run() { - while (requestImageCount == requestImageMax) { - try { - Thread.sleep(10); - } catch (InterruptedException e) { } - } - requestImageCount++; - - PImage actual = loadImage(filename, extension); - - // An error message should have already printed - if (actual == null) { - vessel.width = -1; - vessel.height = -1; - - } else { - vessel.width = actual.width; - vessel.height = actual.height; - vessel.format = actual.format; - vessel.pixels = actual.pixels; - } - requestImageCount--; - } - } - - - /** - * Load an AWT image synchronously by setting up a MediaTracker for - * a single image, and blocking until it has loaded. - */ - protected PImage loadImageMT(Image awtImage) { - MediaTracker tracker = new MediaTracker(this); - tracker.addImage(awtImage, 0); - try { - tracker.waitForAll(); - } catch (InterruptedException e) { - //e.printStackTrace(); // non-fatal, right? - } - - PImage image = new PImage(awtImage); - image.parent = this; - return image; - } - - - /** - * Use Java 1.4 ImageIO methods to load an image. - */ - protected PImage loadImageIO(String filename) { - InputStream stream = createInput(filename); - if (stream == null) { - System.err.println("The image " + filename + " could not be found."); - return null; - } - - try { - BufferedImage bi = ImageIO.read(stream); - PImage outgoing = new PImage(bi.getWidth(), bi.getHeight()); - outgoing.parent = this; - - bi.getRGB(0, 0, outgoing.width, outgoing.height, - outgoing.pixels, 0, outgoing.width); - - // check the alpha for this image - // was gonna call getType() on the image to see if RGB or ARGB, - // but it's not actually useful, since gif images will come through - // as TYPE_BYTE_INDEXED, which means it'll still have to check for - // the transparency. also, would have to iterate through all the other - // types and guess whether alpha was in there, so.. just gonna stick - // with the old method. - outgoing.checkAlpha(); - - // return the image - return outgoing; - - } catch (Exception e) { - e.printStackTrace(); - return null; - } - } - - - /** - * Targa image loader for RLE-compressed TGA files. - *

- * Rewritten for 0115 to read/write RLE-encoded targa images. - * For 0125, non-RLE encoded images are now supported, along with - * images whose y-order is reversed (which is standard for TGA files). - */ - protected PImage loadImageTGA(String filename) throws IOException { - InputStream is = createInput(filename); - if (is == null) return null; - - byte header[] = new byte[18]; - int offset = 0; - do { - int count = is.read(header, offset, header.length - offset); - if (count == -1) return null; - offset += count; - } while (offset < 18); - - /* - header[2] image type code - 2 (0x02) - Uncompressed, RGB images. - 3 (0x03) - Uncompressed, black and white images. - 10 (0x0A) - Runlength encoded RGB images. - 11 (0x0B) - Compressed, black and white images. (grayscale?) - - header[16] is the bit depth (8, 24, 32) - - header[17] image descriptor (packed bits) - 0x20 is 32 = origin upper-left - 0x28 is 32 + 8 = origin upper-left + 32 bits - - 7 6 5 4 3 2 1 0 - 128 64 32 16 8 4 2 1 - */ - - int format = 0; - - if (((header[2] == 3) || (header[2] == 11)) && // B&W, plus RLE or not - (header[16] == 8) && // 8 bits - ((header[17] == 0x8) || (header[17] == 0x28))) { // origin, 32 bit - format = ALPHA; - - } else if (((header[2] == 2) || (header[2] == 10)) && // RGB, RLE or not - (header[16] == 24) && // 24 bits - ((header[17] == 0x20) || (header[17] == 0))) { // origin - format = RGB; - - } else if (((header[2] == 2) || (header[2] == 10)) && - (header[16] == 32) && - ((header[17] == 0x8) || (header[17] == 0x28))) { // origin, 32 - format = ARGB; - } - - if (format == 0) { - System.err.println("Unknown .tga file format for " + filename); - //" (" + header[2] + " " + - //(header[16] & 0xff) + " " + - //hex(header[17], 2) + ")"); - return null; - } - - int w = ((header[13] & 0xff) << 8) + (header[12] & 0xff); - int h = ((header[15] & 0xff) << 8) + (header[14] & 0xff); - PImage outgoing = createImage(w, h, format); - - // where "reversed" means upper-left corner (normal for most of - // the modernized world, but "reversed" for the tga spec) - boolean reversed = (header[17] & 0x20) != 0; - - if ((header[2] == 2) || (header[2] == 3)) { // not RLE encoded - if (reversed) { - int index = (h-1) * w; - switch (format) { - case ALPHA: - for (int y = h-1; y >= 0; y--) { - for (int x = 0; x < w; x++) { - outgoing.pixels[index + x] = is.read(); - } - index -= w; - } - break; - case RGB: - for (int y = h-1; y >= 0; y--) { - for (int x = 0; x < w; x++) { - outgoing.pixels[index + x] = - is.read() | (is.read() << 8) | (is.read() << 16) | - 0xff000000; - } - index -= w; - } - break; - case ARGB: - for (int y = h-1; y >= 0; y--) { - for (int x = 0; x < w; x++) { - outgoing.pixels[index + x] = - is.read() | (is.read() << 8) | (is.read() << 16) | - (is.read() << 24); - } - index -= w; - } - } - } else { // not reversed - int count = w * h; - switch (format) { - case ALPHA: - for (int i = 0; i < count; i++) { - outgoing.pixels[i] = is.read(); - } - break; - case RGB: - for (int i = 0; i < count; i++) { - outgoing.pixels[i] = - is.read() | (is.read() << 8) | (is.read() << 16) | - 0xff000000; - } - break; - case ARGB: - for (int i = 0; i < count; i++) { - outgoing.pixels[i] = - is.read() | (is.read() << 8) | (is.read() << 16) | - (is.read() << 24); - } - break; - } - } - - } else { // header[2] is 10 or 11 - int index = 0; - int px[] = outgoing.pixels; - - while (index < px.length) { - int num = is.read(); - boolean isRLE = (num & 0x80) != 0; - if (isRLE) { - num -= 127; // (num & 0x7F) + 1 - int pixel = 0; - switch (format) { - case ALPHA: - pixel = is.read(); - break; - case RGB: - pixel = 0xFF000000 | - is.read() | (is.read() << 8) | (is.read() << 16); - //(is.read() << 16) | (is.read() << 8) | is.read(); - break; - case ARGB: - pixel = is.read() | - (is.read() << 8) | (is.read() << 16) | (is.read() << 24); - break; - } - for (int i = 0; i < num; i++) { - px[index++] = pixel; - if (index == px.length) break; - } - } else { // write up to 127 bytes as uncompressed - num += 1; - switch (format) { - case ALPHA: - for (int i = 0; i < num; i++) { - px[index++] = is.read(); - } - break; - case RGB: - for (int i = 0; i < num; i++) { - px[index++] = 0xFF000000 | - is.read() | (is.read() << 8) | (is.read() << 16); - //(is.read() << 16) | (is.read() << 8) | is.read(); - } - break; - case ARGB: - for (int i = 0; i < num; i++) { - px[index++] = is.read() | //(is.read() << 24) | - (is.read() << 8) | (is.read() << 16) | (is.read() << 24); - //(is.read() << 16) | (is.read() << 8) | is.read(); - } - break; - } - } - } - - if (!reversed) { - int[] temp = new int[w]; - for (int y = 0; y < h/2; y++) { - int z = (h-1) - y; - System.arraycopy(px, y*w, temp, 0, w); - System.arraycopy(px, z*w, px, y*w, w); - System.arraycopy(temp, 0, px, z*w, w); - } - } - } - - return outgoing; - } - - - - ////////////////////////////////////////////////////////////// - - // SHAPE I/O - - - /** - * Load a geometry from a file as a PShape. Currently only supports SVG data. - */ - public PShape loadShape(String filename) { - if (filename.toLowerCase().endsWith(".svg")) { - return new PShapeSVG(this, filename); - } - return null; - } - - - - ////////////////////////////////////////////////////////////// - - // FONT I/O - - - public PFont loadFont(String filename) { - try { - InputStream input = createInput(filename); - return new PFont(input); - - } catch (Exception e) { - die("Could not load font " + filename + ". " + - "Make sure that the font has been copied " + - "to the data folder of your sketch.", e); - } - return null; - } - - - public PFont createFont(String name, float size) { - return createFont(name, size, true, PFont.DEFAULT_CHARSET); - } - - - public PFont createFont(String name, float size, boolean smooth) { - return createFont(name, size, smooth, PFont.DEFAULT_CHARSET); - } - - - /** - * Create a .vlw font on the fly from either a font name that's - * installed on the system, or from a .ttf or .otf that's inside - * the data folder of this sketch. - *

- * Only works with Java 1.3 or later. Many .otf fonts don't seem - * to be supported by Java, perhaps because they're CFF based? - *

- * Font names are inconsistent across platforms and Java versions. - * On Mac OS X, Java 1.3 uses the font menu name of the font, - * whereas Java 1.4 uses the PostScript name of the font. Java 1.4 - * on OS X will also accept the font menu name as well. On Windows, - * it appears that only the menu names are used, no matter what - * Java version is in use. Naming system unknown/untested for 1.5. - *

- * Use 'null' for the charset if you want to use any of the 65,536 - * unicode characters that exist in the font. Note that this can - * produce an enormous file or may cause an OutOfMemoryError. - */ - public PFont createFont(String name, float size, - boolean smooth, char charset[]) { - String lowerName = name.toLowerCase(); - Font baseFont = null; - - try { - if (lowerName.endsWith(".otf") || lowerName.endsWith(".ttf")) { - InputStream stream = createInput(name); - if (stream == null) { - System.err.println("The font \"" + name + "\" " + - "is missing or inaccessible, make sure " + - "the URL is valid or that the file has been " + - "added to your sketch and is readable."); - return null; - } - baseFont = Font.createFont(Font.TRUETYPE_FONT, createInput(name)); - - } else { - //baseFont = new Font(name, Font.PLAIN, 1); - baseFont = PFont.findFont(name); - } - } catch (Exception e) { - System.err.println("Problem using createFont() with " + name); - e.printStackTrace(); - } - return new PFont(baseFont.deriveFont(size), smooth, charset); - } - - - - ////////////////////////////////////////////////////////////// - - // FILE/FOLDER SELECTION - - - public File selectedFile; - protected Frame parentFrame; - - - protected void checkParentFrame() { - if (parentFrame == null) { - Component comp = getParent(); - while (comp != null) { - if (comp instanceof Frame) { - parentFrame = (Frame) comp; - break; - } - comp = comp.getParent(); - } - // Who you callin' a hack? - if (parentFrame == null) { - parentFrame = new Frame(); - } - } - } - - - /** - * Open a platform-specific file chooser dialog to select a file for input. - * @return full path to the selected file, or null if no selection. - */ - public String selectInput() { - return selectInput("Select a file..."); - } - - - /** - * Open a platform-specific file chooser dialog to select a file for input. - * @param prompt Mesage to show the user when prompting for a file. - * @return full path to the selected file, or null if canceled. - */ - public String selectInput(String prompt) { - return selectFileImpl(prompt, FileDialog.LOAD); - } - - - /** - * Open a platform-specific file save dialog to select a file for output. - * @return full path to the file entered, or null if canceled. - */ - public String selectOutput() { - return selectOutput("Save as..."); - } - - - /** - * Open a platform-specific file save dialog to select a file for output. - * @param prompt Mesage to show the user when prompting for a file. - * @return full path to the file entered, or null if canceled. - */ - public String selectOutput(String prompt) { - return selectFileImpl(prompt, FileDialog.SAVE); - } - - - protected String selectFileImpl(final String prompt, final int mode) { - checkParentFrame(); - - try { - SwingUtilities.invokeAndWait(new Runnable() { - public void run() { - FileDialog fileDialog = - new FileDialog(parentFrame, prompt, mode); - fileDialog.setVisible(true); - String directory = fileDialog.getDirectory(); - String filename = fileDialog.getFile(); - selectedFile = - (filename == null) ? null : new File(directory, filename); - } - }); - return (selectedFile == null) ? null : selectedFile.getAbsolutePath(); - - } catch (Exception e) { - e.printStackTrace(); - return null; - } - } - - - /** - * Open a platform-specific folder chooser dialog. - * @return full path to the selected folder, or null if no selection. - */ - public String selectFolder() { - return selectFolder("Select a folder..."); - } - - - /** - * Open a platform-specific folder chooser dialog. - * @param prompt Mesage to show the user when prompting for a file. - * @return full path to the selected folder, or null if no selection. - */ - public String selectFolder(final String prompt) { - checkParentFrame(); - - try { - SwingUtilities.invokeAndWait(new Runnable() { - public void run() { - if (platform == MACOSX) { - FileDialog fileDialog = - new FileDialog(parentFrame, prompt, FileDialog.LOAD); - System.setProperty("apple.awt.fileDialogForDirectories", "true"); - fileDialog.setVisible(true); - System.setProperty("apple.awt.fileDialogForDirectories", "false"); - String filename = fileDialog.getFile(); - selectedFile = (filename == null) ? null : - new File(fileDialog.getDirectory(), fileDialog.getFile()); - } else { - JFileChooser fileChooser = new JFileChooser(); - fileChooser.setDialogTitle(prompt); - fileChooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY); - - int returned = fileChooser.showOpenDialog(parentFrame); - System.out.println(returned); - if (returned == JFileChooser.CANCEL_OPTION) { - selectedFile = null; - } else { - selectedFile = fileChooser.getSelectedFile(); - } - } - } - }); - return (selectedFile == null) ? null : selectedFile.getAbsolutePath(); - - } catch (Exception e) { - e.printStackTrace(); - return null; - } - } - - - - ////////////////////////////////////////////////////////////// - - // READERS AND WRITERS - - - /** - * I want to read lines from a file. I have RSI from typing these - * eight lines of code so many times. - */ - public BufferedReader createReader(String filename) { - try { - InputStream is = createInput(filename); - if (is == null) { - System.err.println(filename + " does not exist or could not be read"); - return null; - } - return createReader(is); - - } catch (Exception e) { - if (filename == null) { - System.err.println("Filename passed to reader() was null"); - } else { - System.err.println("Couldn't create a reader for " + filename); - } - } - return null; - } - - - /** - * I want to read lines from a file. And I'm still annoyed. - */ - static public BufferedReader createReader(File file) { - try { - InputStream is = new FileInputStream(file); - if (file.getName().toLowerCase().endsWith(".gz")) { - is = new GZIPInputStream(is); - } - return createReader(is); - - } catch (Exception e) { - if (file == null) { - throw new RuntimeException("File passed to createReader() was null"); - } else { - e.printStackTrace(); - throw new RuntimeException("Couldn't create a reader for " + - file.getAbsolutePath()); - } - } - //return null; - } - - - /** - * I want to read lines from a stream. If I have to type the - * following lines any more I'm gonna send Sun my medical bills. - */ - static public BufferedReader createReader(InputStream input) { - InputStreamReader isr = null; - try { - isr = new InputStreamReader(input, "UTF-8"); - } catch (UnsupportedEncodingException e) { } // not gonna happen - return new BufferedReader(isr); - } - - - /** - * I want to print lines to a file. Why can't I? - */ - public PrintWriter createWriter(String filename) { - return createWriter(saveFile(filename)); - } - - - /** - * I want to print lines to a file. I have RSI from typing these - * eight lines of code so many times. - */ - static public PrintWriter createWriter(File file) { - try { - createPath(file); // make sure in-between folders exist - OutputStream output = new FileOutputStream(file); - if (file.getName().toLowerCase().endsWith(".gz")) { - output = new GZIPOutputStream(output); - } - return createWriter(output); - - } catch (Exception e) { - if (file == null) { - throw new RuntimeException("File passed to createWriter() was null"); - } else { - e.printStackTrace(); - throw new RuntimeException("Couldn't create a writer for " + - file.getAbsolutePath()); - } - } - //return null; - } - - - /** - * I want to print lines to a file. Why am I always explaining myself? - * It's the JavaSoft API engineers who need to explain themselves. - */ - static public PrintWriter createWriter(OutputStream output) { - try { - OutputStreamWriter osw = new OutputStreamWriter(output, "UTF-8"); - return new PrintWriter(osw); - } catch (UnsupportedEncodingException e) { } // not gonna happen - return null; - } - - - ////////////////////////////////////////////////////////////// - - // FILE INPUT - - - /** - * @deprecated As of release 0136, use createInput() instead. - */ - public InputStream openStream(String filename) { - return createInput(filename); - } - - - /** - * Simplified method to open a Java InputStream. - *

- * This method is useful if you want to use the facilities provided - * by PApplet to easily open things from the data folder or from a URL, - * but want an InputStream object so that you can use other Java - * methods to take more control of how the stream is read. - *

- * If the requested item doesn't exist, null is returned. - * (Prior to 0096, die() would be called, killing the applet) - *

- * For 0096+, the "data" folder is exported intact with subfolders, - * and openStream() properly handles subdirectories from the data folder - *

- * If not online, this will also check to see if the user is asking - * for a file whose name isn't properly capitalized. This helps prevent - * issues when a sketch is exported to the web, where case sensitivity - * matters, as opposed to Windows and the Mac OS default where - * case sensitivity is preserved but ignored. - *

- * It is strongly recommended that libraries use this method to open - * data files, so that the loading sequence is handled in the same way - * as functions like loadBytes(), loadImage(), etc. - *

- * The filename passed in can be: - *

    - *
  • A URL, for instance openStream("http://processing.org/"); - *
  • A file in the sketch's data folder - *
  • Another file to be opened locally (when running as an application) - *
- */ - public InputStream createInput(String filename) { - InputStream input = createInputRaw(filename); - if ((input != null) && filename.toLowerCase().endsWith(".gz")) { - try { - return new GZIPInputStream(input); - } catch (IOException e) { - e.printStackTrace(); - return null; - } - } - return input; - } - - - /** - * Call openStream() without automatic gzip decompression. - */ - public InputStream createInputRaw(String filename) { - InputStream stream = null; - - if (filename == null) return null; - - if (filename.length() == 0) { - // an error will be called by the parent function - //System.err.println("The filename passed to openStream() was empty."); - return null; - } - - // safe to check for this as a url first. this will prevent online - // access logs from being spammed with GET /sketchfolder/http://blahblah - try { - URL url = new URL(filename); - stream = url.openStream(); - return stream; - - } catch (MalformedURLException mfue) { - // not a url, that's fine - - } catch (FileNotFoundException fnfe) { - // Java 1.5 likes to throw this when URL not available. (fix for 0119) - // http://dev.processing.org/bugs/show_bug.cgi?id=403 - - } catch (IOException e) { - // changed for 0117, shouldn't be throwing exception - e.printStackTrace(); - //System.err.println("Error downloading from URL " + filename); - return null; - //throw new RuntimeException("Error downloading from URL " + filename); - } - - // Moved this earlier than the getResourceAsStream() checks, because - // calling getResourceAsStream() on a directory lists its contents. - // http://dev.processing.org/bugs/show_bug.cgi?id=716 - try { - // First see if it's in a data folder. This may fail by throwing - // a SecurityException. If so, this whole block will be skipped. - File file = new File(dataPath(filename)); - if (!file.exists()) { - // next see if it's just in the sketch folder - file = new File(sketchPath, filename); - } - if (file.isDirectory()) { - return null; - } - if (file.exists()) { - try { - // handle case sensitivity check - String filePath = file.getCanonicalPath(); - String filenameActual = new File(filePath).getName(); - // make sure there isn't a subfolder prepended to the name - String filenameShort = new File(filename).getName(); - // if the actual filename is the same, but capitalized - // differently, warn the user. - //if (filenameActual.equalsIgnoreCase(filenameShort) && - //!filenameActual.equals(filenameShort)) { - if (!filenameActual.equals(filenameShort)) { - throw new RuntimeException("This file is named " + - filenameActual + " not " + - filename + ". Rename the file " + - "or change your code."); - } - } catch (IOException e) { } - } - - // if this file is ok, may as well just load it - stream = new FileInputStream(file); - if (stream != null) return stream; - - // have to break these out because a general Exception might - // catch the RuntimeException being thrown above - } catch (IOException ioe) { - } catch (SecurityException se) { } - - // Using getClassLoader() prevents java from converting dots - // to slashes or requiring a slash at the beginning. - // (a slash as a prefix means that it'll load from the root of - // the jar, rather than trying to dig into the package location) - ClassLoader cl = getClass().getClassLoader(); - - // by default, data files are exported to the root path of the jar. - // (not the data folder) so check there first. - stream = cl.getResourceAsStream("data/" + filename); - if (stream != null) { - String cn = stream.getClass().getName(); - // this is an irritation of sun's java plug-in, which will return - // a non-null stream for an object that doesn't exist. like all good - // things, this is probably introduced in java 1.5. awesome! - // http://dev.processing.org/bugs/show_bug.cgi?id=359 - if (!cn.equals("sun.plugin.cache.EmptyInputStream")) { - return stream; - } - } - - // When used with an online script, also need to check without the - // data folder, in case it's not in a subfolder called 'data'. - // http://dev.processing.org/bugs/show_bug.cgi?id=389 - stream = cl.getResourceAsStream(filename); - if (stream != null) { - String cn = stream.getClass().getName(); - if (!cn.equals("sun.plugin.cache.EmptyInputStream")) { - return stream; - } - } - - try { - // attempt to load from a local file, used when running as - // an application, or as a signed applet - try { // first try to catch any security exceptions - try { - stream = new FileInputStream(dataPath(filename)); - if (stream != null) return stream; - } catch (IOException e2) { } - - try { - stream = new FileInputStream(sketchPath(filename)); - if (stream != null) return stream; - } catch (Exception e) { } // ignored - - try { - stream = new FileInputStream(filename); - if (stream != null) return stream; - } catch (IOException e1) { } - - } catch (SecurityException se) { } // online, whups - - } catch (Exception e) { - //die(e.getMessage(), e); - e.printStackTrace(); - } - return null; - } - - - static public InputStream createInput(File file) { - try { - InputStream input = new FileInputStream(file); - if (file.getName().toLowerCase().endsWith(".gz")) { - return new GZIPInputStream(input); - } - return input; - - } catch (IOException e) { - if (file == null) { - throw new RuntimeException("File passed to openStream() was null"); - - } else { - e.printStackTrace(); - throw new RuntimeException("Couldn't openStream() for " + - file.getAbsolutePath()); - } - } - } - - - public byte[] loadBytes(String filename) { - InputStream is = createInput(filename); - if (is != null) return loadBytes(is); - - System.err.println("The file \"" + filename + "\" " + - "is missing or inaccessible, make sure " + - "the URL is valid or that the file has been " + - "added to your sketch and is readable."); - return null; - } - - - static public byte[] loadBytes(InputStream input) { - try { - BufferedInputStream bis = new BufferedInputStream(input); - ByteArrayOutputStream out = new ByteArrayOutputStream(); - - int c = bis.read(); - while (c != -1) { - out.write(c); - c = bis.read(); - } - return out.toByteArray(); - - } catch (IOException e) { - e.printStackTrace(); - //throw new RuntimeException("Couldn't load bytes from stream"); - } - return null; - } - - - static public byte[] loadBytes(File file) { - InputStream is = createInput(file); - return loadBytes(is); - } - - - static public String[] loadStrings(File file) { - InputStream is = createInput(file); - if (is != null) return loadStrings(is); - return null; - } - - - /** - * Load data from a file and shove it into a String array. - *

- * Exceptions are handled internally, when an error, occurs, an - * exception is printed to the console and 'null' is returned, - * but the program continues running. This is a tradeoff between - * 1) showing the user that there was a problem but 2) not requiring - * that all i/o code is contained in try/catch blocks, for the sake - * of new users (or people who are just trying to get things done - * in a "scripting" fashion. If you want to handle exceptions, - * use Java methods for I/O. - */ - public String[] loadStrings(String filename) { - InputStream is = createInput(filename); - if (is != null) return loadStrings(is); - - System.err.println("The file \"" + filename + "\" " + - "is missing or inaccessible, make sure " + - "the URL is valid or that the file has been " + - "added to your sketch and is readable."); - return null; - } - - - static public String[] loadStrings(InputStream input) { - try { - BufferedReader reader = - new BufferedReader(new InputStreamReader(input, "UTF-8")); - - String lines[] = new String[100]; - int lineCount = 0; - String line = null; - while ((line = reader.readLine()) != null) { - if (lineCount == lines.length) { - String temp[] = new String[lineCount << 1]; - System.arraycopy(lines, 0, temp, 0, lineCount); - lines = temp; - } - lines[lineCount++] = line; - } - reader.close(); - - if (lineCount == lines.length) { - return lines; - } - - // resize array to appropriate amount for these lines - String output[] = new String[lineCount]; - System.arraycopy(lines, 0, output, 0, lineCount); - return output; - - } catch (IOException e) { - e.printStackTrace(); - //throw new RuntimeException("Error inside loadStrings()"); - } - return null; - } - - - - ////////////////////////////////////////////////////////////// - - // FILE OUTPUT - - - /** - * Similar to createInput() (formerly openStream), this creates a Java - * OutputStream for a given filename or path. The file will be created in - * the sketch folder, or in the same folder as an exported application. - *

- * If the path does not exist, intermediate folders will be created. If an - * exception occurs, it will be printed to the console, and null will be - * returned. - *

- * Future releases may also add support for handling HTTP POST via this - * method (for better symmetry with createInput), however that's maybe a - * little too clever (and then we'd have to add the same features to the - * other file functions like createWriter). Who you callin' bloated? - */ - public OutputStream createOutput(String filename) { - return createOutput(saveFile(filename)); - } - - - static public OutputStream createOutput(File file) { - try { - createPath(file); // make sure the path exists - FileOutputStream fos = new FileOutputStream(file); - if (file.getName().toLowerCase().endsWith(".gz")) { - return new GZIPOutputStream(fos); - } - return fos; - - } catch (IOException e) { - e.printStackTrace(); - } - return null; - } - - - /** - * Save the contents of a stream to a file in the sketch folder. - * This is basically saveBytes(blah, loadBytes()), but done - * more efficiently (and with less confusing syntax). - */ - public void saveStream(String targetFilename, String sourceLocation) { - saveStream(saveFile(targetFilename), sourceLocation); - } - - - /** - * Identical to the other saveStream(), but writes to a File - * object, for greater control over the file location. - * Note that unlike other api methods, this will not automatically - * compress or uncompress gzip files. - */ - public void saveStream(File targetFile, String sourceLocation) { - saveStream(targetFile, createInputRaw(sourceLocation)); - } - - - static public void saveStream(File targetFile, InputStream sourceStream) { - File tempFile = null; - try { - File parentDir = targetFile.getParentFile(); - tempFile = File.createTempFile(targetFile.getName(), null, parentDir); - - BufferedInputStream bis = new BufferedInputStream(sourceStream, 16384); - FileOutputStream fos = new FileOutputStream(tempFile); - BufferedOutputStream bos = new BufferedOutputStream(fos); - - byte[] buffer = new byte[8192]; - int bytesRead; - while ((bytesRead = bis.read(buffer)) != -1) { - bos.write(buffer, 0, bytesRead); - } - - bos.flush(); - bos.close(); - bos = null; - - if (!tempFile.renameTo(targetFile)) { - System.err.println("Could not rename temporary file " + - tempFile.getAbsolutePath()); - } - } catch (IOException e) { - if (tempFile != null) { - tempFile.delete(); - } - e.printStackTrace(); - } - } - - - /** - * Saves bytes to a file to inside the sketch folder. - * The filename can be a relative path, i.e. "poo/bytefun.txt" - * would save to a file named "bytefun.txt" to a subfolder - * called 'poo' inside the sketch folder. If the in-between - * subfolders don't exist, they'll be created. - */ - public void saveBytes(String filename, byte buffer[]) { - saveBytes(saveFile(filename), buffer); - } - - - /** - * Saves bytes to a specific File location specified by the user. - */ - static public void saveBytes(File file, byte buffer[]) { - try { - String filename = file.getAbsolutePath(); - createPath(filename); - OutputStream output = new FileOutputStream(file); - if (file.getName().toLowerCase().endsWith(".gz")) { - output = new GZIPOutputStream(output); - } - saveBytes(output, buffer); - output.close(); - - } catch (IOException e) { - System.err.println("error saving bytes to " + file); - e.printStackTrace(); - } - } - - - /** - * Spews a buffer of bytes to an OutputStream. - */ - static public void saveBytes(OutputStream output, byte buffer[]) { - try { - output.write(buffer); - output.flush(); - - } catch (IOException e) { - e.printStackTrace(); - } - } - - // - - public void saveStrings(String filename, String strings[]) { - saveStrings(saveFile(filename), strings); - } - - - static public void saveStrings(File file, String strings[]) { - try { - String location = file.getAbsolutePath(); - createPath(location); - OutputStream output = new FileOutputStream(location); - if (file.getName().toLowerCase().endsWith(".gz")) { - output = new GZIPOutputStream(output); - } - saveStrings(output, strings); - output.close(); - - } catch (IOException e) { - e.printStackTrace(); - } - } - - - static public void saveStrings(OutputStream output, String strings[]) { - try { - OutputStreamWriter osw = new OutputStreamWriter(output, "UTF-8"); - PrintWriter writer = new PrintWriter(osw); - for (int i = 0; i < strings.length; i++) { - writer.println(strings[i]); - } - writer.flush(); - } catch (UnsupportedEncodingException e) { } // will not happen - } - - - ////////////////////////////////////////////////////////////// - - - /** - * Prepend the sketch folder path to the filename (or path) that is - * passed in. External libraries should use this function to save to - * the sketch folder. - *

- * Note that when running as an applet inside a web browser, - * the sketchPath will be set to null, because security restrictions - * prevent applets from accessing that information. - *

- * This will also cause an error if the sketch is not inited properly, - * meaning that init() was never called on the PApplet when hosted - * my some other main() or by other code. For proper use of init(), - * see the examples in the main description text for PApplet. - */ - public String sketchPath(String where) { - if (sketchPath == null) { - return where; -// throw new RuntimeException("The applet was not inited properly, " + -// "or security restrictions prevented " + -// "it from determining its path."); - } - // isAbsolute() could throw an access exception, but so will writing - // to the local disk using the sketch path, so this is safe here. - // for 0120, added a try/catch anyways. - try { - if (new File(where).isAbsolute()) return where; - } catch (Exception e) { } - - return sketchPath + File.separator + where; - } - - - public File sketchFile(String where) { - return new File(sketchPath(where)); - } - - - /** - * Returns a path inside the applet folder to save to. Like sketchPath(), - * but creates any in-between folders so that things save properly. - *

- * All saveXxxx() functions use the path to the sketch folder, rather than - * its data folder. Once exported, the data folder will be found inside the - * jar file of the exported application or applet. In this case, it's not - * possible to save data into the jar file, because it will often be running - * from a server, or marked in-use if running from a local file system. - * With this in mind, saving to the data path doesn't make sense anyway. - * If you know you're running locally, and want to save to the data folder, - * use saveXxxx("data/blah.dat"). - */ - public String savePath(String where) { - if (where == null) return null; - String filename = sketchPath(where); - createPath(filename); - return filename; - } - - - /** - * Identical to savePath(), but returns a File object. - */ - public File saveFile(String where) { - return new File(savePath(where)); - } - - - /** - * Return a full path to an item in the data folder. - *

- * In this method, the data path is defined not as the applet's actual - * data path, but a folder titled "data" in the sketch's working - * directory. When running inside the PDE, this will be the sketch's - * "data" folder. However, when exported (as application or applet), - * sketch's data folder is exported as part of the applications jar file, - * and it's not possible to read/write from the jar file in a generic way. - * If you need to read data from the jar file, you should use other methods - * such as createInput(), createReader(), or loadStrings(). - */ - public String dataPath(String where) { - // isAbsolute() could throw an access exception, but so will writing - // to the local disk using the sketch path, so this is safe here. - if (new File(where).isAbsolute()) return where; - - return sketchPath + File.separator + "data" + File.separator + where; - } - - - /** - * Return a full path to an item in the data folder as a File object. - * See the dataPath() method for more information. - */ - public File dataFile(String where) { - return new File(dataPath(where)); - } - - - /** - * Takes a path and creates any in-between folders if they don't - * already exist. Useful when trying to save to a subfolder that - * may not actually exist. - */ - static public void createPath(String path) { - createPath(new File(path)); - } - - - static public void createPath(File file) { - try { - String parent = file.getParent(); - if (parent != null) { - File unit = new File(parent); - if (!unit.exists()) unit.mkdirs(); - } - } catch (SecurityException se) { - System.err.println("You don't have permissions to create " + - file.getAbsolutePath()); - } - } - - - - ////////////////////////////////////////////////////////////// - - // SORT - - - static public byte[] sort(byte what[]) { - return sort(what, what.length); - } - - - static public byte[] sort(byte[] what, int count) { - byte[] outgoing = new byte[what.length]; - System.arraycopy(what, 0, outgoing, 0, what.length); - Arrays.sort(outgoing, 0, count); - return outgoing; - } - - - static public char[] sort(char what[]) { - return sort(what, what.length); - } - - - static public char[] sort(char[] what, int count) { - char[] outgoing = new char[what.length]; - System.arraycopy(what, 0, outgoing, 0, what.length); - Arrays.sort(outgoing, 0, count); - return outgoing; - } - - - static public int[] sort(int what[]) { - return sort(what, what.length); - } - - - static public int[] sort(int[] what, int count) { - int[] outgoing = new int[what.length]; - System.arraycopy(what, 0, outgoing, 0, what.length); - Arrays.sort(outgoing, 0, count); - return outgoing; - } - - - static public float[] sort(float what[]) { - return sort(what, what.length); - } - - - static public float[] sort(float[] what, int count) { - float[] outgoing = new float[what.length]; - System.arraycopy(what, 0, outgoing, 0, what.length); - Arrays.sort(outgoing, 0, count); - return outgoing; - } - - - static public String[] sort(String what[]) { - return sort(what, what.length); - } - - - static public String[] sort(String[] what, int count) { - String[] outgoing = new String[what.length]; - System.arraycopy(what, 0, outgoing, 0, what.length); - Arrays.sort(outgoing, 0, count); - return outgoing; - } - - - - ////////////////////////////////////////////////////////////// - - // ARRAY UTILITIES - - - /** - * Calls System.arraycopy(), included here so that we can - * avoid people needing to learn about the System object - * before they can just copy an array. - */ - static public void arrayCopy(Object src, int srcPosition, - Object dst, int dstPosition, - int length) { - System.arraycopy(src, srcPosition, dst, dstPosition, length); - } - - - /** - * Convenience method for arraycopy(). - * Identical to arraycopy(src, 0, dst, 0, length); - */ - static public void arrayCopy(Object src, Object dst, int length) { - System.arraycopy(src, 0, dst, 0, length); - } - - - /** - * Shortcut to copy the entire contents of - * the source into the destination array. - * Identical to arraycopy(src, 0, dst, 0, src.length); - */ - static public void arrayCopy(Object src, Object dst) { - System.arraycopy(src, 0, dst, 0, Array.getLength(src)); - } - - // - - /** - * @deprecated Use arrayCopy() instead. - */ - static public void arraycopy(Object src, int srcPosition, - Object dst, int dstPosition, - int length) { - System.arraycopy(src, srcPosition, dst, dstPosition, length); - } - - /** - * @deprecated Use arrayCopy() instead. - */ - static public void arraycopy(Object src, Object dst, int length) { - System.arraycopy(src, 0, dst, 0, length); - } - - /** - * @deprecated Use arrayCopy() instead. - */ - static public void arraycopy(Object src, Object dst) { - System.arraycopy(src, 0, dst, 0, Array.getLength(src)); - } - - // - - static public boolean[] expand(boolean list[]) { - return expand(list, list.length << 1); - } - - static public boolean[] expand(boolean list[], int newSize) { - boolean temp[] = new boolean[newSize]; - System.arraycopy(list, 0, temp, 0, Math.min(newSize, list.length)); - return temp; - } - - - static public byte[] expand(byte list[]) { - return expand(list, list.length << 1); - } - - static public byte[] expand(byte list[], int newSize) { - byte temp[] = new byte[newSize]; - System.arraycopy(list, 0, temp, 0, Math.min(newSize, list.length)); - return temp; - } - - - static public char[] expand(char list[]) { - return expand(list, list.length << 1); - } - - static public char[] expand(char list[], int newSize) { - char temp[] = new char[newSize]; - System.arraycopy(list, 0, temp, 0, Math.min(newSize, list.length)); - return temp; - } - - - static public int[] expand(int list[]) { - return expand(list, list.length << 1); - } - - static public int[] expand(int list[], int newSize) { - int temp[] = new int[newSize]; - System.arraycopy(list, 0, temp, 0, Math.min(newSize, list.length)); - return temp; - } - - - static public float[] expand(float list[]) { - return expand(list, list.length << 1); - } - - static public float[] expand(float list[], int newSize) { - float temp[] = new float[newSize]; - System.arraycopy(list, 0, temp, 0, Math.min(newSize, list.length)); - return temp; - } - - - static public String[] expand(String list[]) { - return expand(list, list.length << 1); - } - - static public String[] expand(String list[], int newSize) { - String temp[] = new String[newSize]; - // in case the new size is smaller than list.length - System.arraycopy(list, 0, temp, 0, Math.min(newSize, list.length)); - return temp; - } - - - static public Object expand(Object array) { - return expand(array, Array.getLength(array) << 1); - } - - static public Object expand(Object list, int newSize) { - Class type = list.getClass().getComponentType(); - Object temp = Array.newInstance(type, newSize); - System.arraycopy(list, 0, temp, 0, - Math.min(Array.getLength(list), newSize)); - return temp; - } - - // - - // contract() has been removed in revision 0124, use subset() instead. - // (expand() is also functionally equivalent) - - // - - static public byte[] append(byte b[], byte value) { - b = expand(b, b.length + 1); - b[b.length-1] = value; - return b; - } - - static public char[] append(char b[], char value) { - b = expand(b, b.length + 1); - b[b.length-1] = value; - return b; - } - - static public int[] append(int b[], int value) { - b = expand(b, b.length + 1); - b[b.length-1] = value; - return b; - } - - static public float[] append(float b[], float value) { - b = expand(b, b.length + 1); - b[b.length-1] = value; - return b; - } - - static public String[] append(String b[], String value) { - b = expand(b, b.length + 1); - b[b.length-1] = value; - return b; - } - - static public Object append(Object b, Object value) { - int length = Array.getLength(b); - b = expand(b, length + 1); - Array.set(b, length, value); - return b; - } - - // - - static public boolean[] shorten(boolean list[]) { - return subset(list, 0, list.length-1); - } - - static public byte[] shorten(byte list[]) { - return subset(list, 0, list.length-1); - } - - static public char[] shorten(char list[]) { - return subset(list, 0, list.length-1); - } - - static public int[] shorten(int list[]) { - return subset(list, 0, list.length-1); - } - - static public float[] shorten(float list[]) { - return subset(list, 0, list.length-1); - } - - static public String[] shorten(String list[]) { - return subset(list, 0, list.length-1); - } - - static public Object shorten(Object list) { - int length = Array.getLength(list); - return subset(list, 0, length - 1); - } - - // - - static final public boolean[] splice(boolean list[], - boolean v, int index) { - boolean outgoing[] = new boolean[list.length + 1]; - System.arraycopy(list, 0, outgoing, 0, index); - outgoing[index] = v; - System.arraycopy(list, index, outgoing, index + 1, - list.length - index); - return outgoing; - } - - static final public boolean[] splice(boolean list[], - boolean v[], int index) { - boolean outgoing[] = new boolean[list.length + v.length]; - System.arraycopy(list, 0, outgoing, 0, index); - System.arraycopy(v, 0, outgoing, index, v.length); - System.arraycopy(list, index, outgoing, index + v.length, - list.length - index); - return outgoing; - } - - - static final public byte[] splice(byte list[], - byte v, int index) { - byte outgoing[] = new byte[list.length + 1]; - System.arraycopy(list, 0, outgoing, 0, index); - outgoing[index] = v; - System.arraycopy(list, index, outgoing, index + 1, - list.length - index); - return outgoing; - } - - static final public byte[] splice(byte list[], - byte v[], int index) { - byte outgoing[] = new byte[list.length + v.length]; - System.arraycopy(list, 0, outgoing, 0, index); - System.arraycopy(v, 0, outgoing, index, v.length); - System.arraycopy(list, index, outgoing, index + v.length, - list.length - index); - return outgoing; - } - - - static final public char[] splice(char list[], - char v, int index) { - char outgoing[] = new char[list.length + 1]; - System.arraycopy(list, 0, outgoing, 0, index); - outgoing[index] = v; - System.arraycopy(list, index, outgoing, index + 1, - list.length - index); - return outgoing; - } - - static final public char[] splice(char list[], - char v[], int index) { - char outgoing[] = new char[list.length + v.length]; - System.arraycopy(list, 0, outgoing, 0, index); - System.arraycopy(v, 0, outgoing, index, v.length); - System.arraycopy(list, index, outgoing, index + v.length, - list.length - index); - return outgoing; - } - - - static final public int[] splice(int list[], - int v, int index) { - int outgoing[] = new int[list.length + 1]; - System.arraycopy(list, 0, outgoing, 0, index); - outgoing[index] = v; - System.arraycopy(list, index, outgoing, index + 1, - list.length - index); - return outgoing; - } - - static final public int[] splice(int list[], - int v[], int index) { - int outgoing[] = new int[list.length + v.length]; - System.arraycopy(list, 0, outgoing, 0, index); - System.arraycopy(v, 0, outgoing, index, v.length); - System.arraycopy(list, index, outgoing, index + v.length, - list.length - index); - return outgoing; - } - - - static final public float[] splice(float list[], - float v, int index) { - float outgoing[] = new float[list.length + 1]; - System.arraycopy(list, 0, outgoing, 0, index); - outgoing[index] = v; - System.arraycopy(list, index, outgoing, index + 1, - list.length - index); - return outgoing; - } - - static final public float[] splice(float list[], - float v[], int index) { - float outgoing[] = new float[list.length + v.length]; - System.arraycopy(list, 0, outgoing, 0, index); - System.arraycopy(v, 0, outgoing, index, v.length); - System.arraycopy(list, index, outgoing, index + v.length, - list.length - index); - return outgoing; - } - - - static final public String[] splice(String list[], - String v, int index) { - String outgoing[] = new String[list.length + 1]; - System.arraycopy(list, 0, outgoing, 0, index); - outgoing[index] = v; - System.arraycopy(list, index, outgoing, index + 1, - list.length - index); - return outgoing; - } - - static final public String[] splice(String list[], - String v[], int index) { - String outgoing[] = new String[list.length + v.length]; - System.arraycopy(list, 0, outgoing, 0, index); - System.arraycopy(v, 0, outgoing, index, v.length); - System.arraycopy(list, index, outgoing, index + v.length, - list.length - index); - return outgoing; - } - - - static final public Object splice(Object list, Object v, int index) { - Object[] outgoing = null; - int length = Array.getLength(list); - - // check whether item being spliced in is an array - if (v.getClass().getName().charAt(0) == '[') { - int vlength = Array.getLength(v); - outgoing = new Object[length + vlength]; - System.arraycopy(list, 0, outgoing, 0, index); - System.arraycopy(v, 0, outgoing, index, vlength); - System.arraycopy(list, index, outgoing, index + vlength, length - index); - - } else { - outgoing = new Object[length + 1]; - System.arraycopy(list, 0, outgoing, 0, index); - Array.set(outgoing, index, v); - System.arraycopy(list, index, outgoing, index + 1, length - index); - } - return outgoing; - } - - // - - static public boolean[] subset(boolean list[], int start) { - return subset(list, start, list.length - start); - } - - static public boolean[] subset(boolean list[], int start, int count) { - boolean output[] = new boolean[count]; - System.arraycopy(list, start, output, 0, count); - return output; - } - - - static public byte[] subset(byte list[], int start) { - return subset(list, start, list.length - start); - } - - static public byte[] subset(byte list[], int start, int count) { - byte output[] = new byte[count]; - System.arraycopy(list, start, output, 0, count); - return output; - } - - - static public char[] subset(char list[], int start) { - return subset(list, start, list.length - start); - } - - static public char[] subset(char list[], int start, int count) { - char output[] = new char[count]; - System.arraycopy(list, start, output, 0, count); - return output; - } - - - static public int[] subset(int list[], int start) { - return subset(list, start, list.length - start); - } - - static public int[] subset(int list[], int start, int count) { - int output[] = new int[count]; - System.arraycopy(list, start, output, 0, count); - return output; - } - - - static public float[] subset(float list[], int start) { - return subset(list, start, list.length - start); - } - - static public float[] subset(float list[], int start, int count) { - float output[] = new float[count]; - System.arraycopy(list, start, output, 0, count); - return output; - } - - - static public String[] subset(String list[], int start) { - return subset(list, start, list.length - start); - } - - static public String[] subset(String list[], int start, int count) { - String output[] = new String[count]; - System.arraycopy(list, start, output, 0, count); - return output; - } - - - static public Object subset(Object list, int start) { - int length = Array.getLength(list); - return subset(list, start, length - start); - } - - static public Object subset(Object list, int start, int count) { - Class type = list.getClass().getComponentType(); - Object outgoing = Array.newInstance(type, count); - System.arraycopy(list, start, outgoing, 0, count); - return outgoing; - } - - // - - static public boolean[] concat(boolean a[], boolean b[]) { - boolean c[] = new boolean[a.length + b.length]; - System.arraycopy(a, 0, c, 0, a.length); - System.arraycopy(b, 0, c, a.length, b.length); - return c; - } - - static public byte[] concat(byte a[], byte b[]) { - byte c[] = new byte[a.length + b.length]; - System.arraycopy(a, 0, c, 0, a.length); - System.arraycopy(b, 0, c, a.length, b.length); - return c; - } - - static public char[] concat(char a[], char b[]) { - char c[] = new char[a.length + b.length]; - System.arraycopy(a, 0, c, 0, a.length); - System.arraycopy(b, 0, c, a.length, b.length); - return c; - } - - static public int[] concat(int a[], int b[]) { - int c[] = new int[a.length + b.length]; - System.arraycopy(a, 0, c, 0, a.length); - System.arraycopy(b, 0, c, a.length, b.length); - return c; - } - - static public float[] concat(float a[], float b[]) { - float c[] = new float[a.length + b.length]; - System.arraycopy(a, 0, c, 0, a.length); - System.arraycopy(b, 0, c, a.length, b.length); - return c; - } - - static public String[] concat(String a[], String b[]) { - String c[] = new String[a.length + b.length]; - System.arraycopy(a, 0, c, 0, a.length); - System.arraycopy(b, 0, c, a.length, b.length); - return c; - } - - static public Object concat(Object a, Object b) { - Class type = a.getClass().getComponentType(); - int alength = Array.getLength(a); - int blength = Array.getLength(b); - Object outgoing = Array.newInstance(type, alength + blength); - System.arraycopy(a, 0, outgoing, 0, alength); - System.arraycopy(b, 0, outgoing, alength, blength); - return outgoing; - } - - // - - static public boolean[] reverse(boolean list[]) { - boolean outgoing[] = new boolean[list.length]; - int length1 = list.length - 1; - for (int i = 0; i < list.length; i++) { - outgoing[i] = list[length1 - i]; - } - return outgoing; - } - - static public byte[] reverse(byte list[]) { - byte outgoing[] = new byte[list.length]; - int length1 = list.length - 1; - for (int i = 0; i < list.length; i++) { - outgoing[i] = list[length1 - i]; - } - return outgoing; - } - - static public char[] reverse(char list[]) { - char outgoing[] = new char[list.length]; - int length1 = list.length - 1; - for (int i = 0; i < list.length; i++) { - outgoing[i] = list[length1 - i]; - } - return outgoing; - } - - static public int[] reverse(int list[]) { - int outgoing[] = new int[list.length]; - int length1 = list.length - 1; - for (int i = 0; i < list.length; i++) { - outgoing[i] = list[length1 - i]; - } - return outgoing; - } - - static public float[] reverse(float list[]) { - float outgoing[] = new float[list.length]; - int length1 = list.length - 1; - for (int i = 0; i < list.length; i++) { - outgoing[i] = list[length1 - i]; - } - return outgoing; - } - - static public String[] reverse(String list[]) { - String outgoing[] = new String[list.length]; - int length1 = list.length - 1; - for (int i = 0; i < list.length; i++) { - outgoing[i] = list[length1 - i]; - } - return outgoing; - } - - static public Object reverse(Object list) { - Class type = list.getClass().getComponentType(); - int length = Array.getLength(list); - Object outgoing = Array.newInstance(type, length); - for (int i = 0; i < length; i++) { - Array.set(outgoing, i, Array.get(list, (length - 1) - i)); - } - return outgoing; - } - - - - ////////////////////////////////////////////////////////////// - - // STRINGS - - - /** - * Remove whitespace characters from the beginning and ending - * of a String. Works like String.trim() but includes the - * unicode nbsp character as well. - */ - static public String trim(String str) { - return str.replace('\u00A0', ' ').trim(); - } - - - /** - * Trim the whitespace from a String array. This returns a new - * array and does not affect the passed-in array. - */ - static public String[] trim(String[] array) { - String[] outgoing = new String[array.length]; - for (int i = 0; i < array.length; i++) { - outgoing[i] = array[i].replace('\u00A0', ' ').trim(); - } - return outgoing; - } - - - /** - * Join an array of Strings together as a single String, - * separated by the whatever's passed in for the separator. - */ - static public String join(String str[], char separator) { - return join(str, String.valueOf(separator)); - } - - - /** - * Join an array of Strings together as a single String, - * separated by the whatever's passed in for the separator. - *

- * To use this on numbers, first pass the array to nf() or nfs() - * to get a list of String objects, then use join on that. - *

-   * e.g. String stuff[] = { "apple", "bear", "cat" };
-   *      String list = join(stuff, ", ");
-   *      // list is now "apple, bear, cat"
- */ - static public String join(String str[], String separator) { - StringBuffer buffer = new StringBuffer(); - for (int i = 0; i < str.length; i++) { - if (i != 0) buffer.append(separator); - buffer.append(str[i]); - } - return buffer.toString(); - } - - - /** - * Split the provided String at wherever whitespace occurs. - * Multiple whitespace (extra spaces or tabs or whatever) - * between items will count as a single break. - *

- * The whitespace characters are "\t\n\r\f", which are the defaults - * for java.util.StringTokenizer, plus the unicode non-breaking space - * character, which is found commonly on files created by or used - * in conjunction with Mac OS X (character 160, or 0x00A0 in hex). - *

-   * i.e. splitTokens("a b") -> { "a", "b" }
-   *      splitTokens("a    b") -> { "a", "b" }
-   *      splitTokens("a\tb") -> { "a", "b" }
-   *      splitTokens("a \t  b  ") -> { "a", "b" }
- */ - static public String[] splitTokens(String what) { - return splitTokens(what, WHITESPACE); - } - - - /** - * Splits a string into pieces, using any of the chars in the - * String 'delim' as separator characters. For instance, - * in addition to white space, you might want to treat commas - * as a separator. The delimeter characters won't appear in - * the returned String array. - *
-   * i.e. splitTokens("a, b", " ,") -> { "a", "b" }
-   * 
- * To include all the whitespace possibilities, use the variable - * WHITESPACE, found in PConstants: - *
-   * i.e. splitTokens("a   | b", WHITESPACE + "|");  ->  { "a", "b" }
- */ - static public String[] splitTokens(String what, String delim) { - StringTokenizer toker = new StringTokenizer(what, delim); - String pieces[] = new String[toker.countTokens()]; - - int index = 0; - while (toker.hasMoreTokens()) { - pieces[index++] = toker.nextToken(); - } - return pieces; - } - - - /** - * Split a string into pieces along a specific character. - * Most commonly used to break up a String along a space or a tab - * character. - *

- * This operates differently than the others, where the - * single delimeter is the only breaking point, and consecutive - * delimeters will produce an empty string (""). This way, - * one can split on tab characters, but maintain the column - * alignments (of say an excel file) where there are empty columns. - */ - static public String[] split(String what, char delim) { - // do this so that the exception occurs inside the user's - // program, rather than appearing to be a bug inside split() - if (what == null) return null; - //return split(what, String.valueOf(delim)); // huh - - char chars[] = what.toCharArray(); - int splitCount = 0; //1; - for (int i = 0; i < chars.length; i++) { - if (chars[i] == delim) splitCount++; - } - // make sure that there is something in the input string - //if (chars.length > 0) { - // if the last char is a delimeter, get rid of it.. - //if (chars[chars.length-1] == delim) splitCount--; - // on second thought, i don't agree with this, will disable - //} - if (splitCount == 0) { - String splits[] = new String[1]; - splits[0] = new String(what); - return splits; - } - //int pieceCount = splitCount + 1; - String splits[] = new String[splitCount + 1]; - int splitIndex = 0; - int startIndex = 0; - for (int i = 0; i < chars.length; i++) { - if (chars[i] == delim) { - splits[splitIndex++] = - new String(chars, startIndex, i-startIndex); - startIndex = i + 1; - } - } - //if (startIndex != chars.length) { - splits[splitIndex] = - new String(chars, startIndex, chars.length-startIndex); - //} - return splits; - } - - - /** - * Split a String on a specific delimiter. Unlike Java's String.split() - * method, this does not parse the delimiter as a regexp because it's more - * confusing than necessary, and String.split() is always available for - * those who want regexp. - */ - static public String[] split(String what, String delim) { - ArrayList items = new ArrayList(); - int index; - int offset = 0; - while ((index = what.indexOf(delim, offset)) != -1) { - items.add(what.substring(offset, index)); - offset = index + delim.length(); - } - items.add(what.substring(offset)); - String[] outgoing = new String[items.size()]; - items.toArray(outgoing); - return outgoing; - } - - - /** - * Match a string with a regular expression, and returns the match as an - * array. The first index is the matching expression, and array elements - * [1] and higher represent each of the groups (sequences found in parens). - * - * This uses multiline matching (Pattern.MULTILINE) and dotall mode - * (Pattern.DOTALL) by default, so that ^ and $ match the beginning and - * end of any lines found in the source, and the . operator will also - * pick up newline characters. - */ - static public String[] match(String what, String regexp) { - Pattern p = Pattern.compile(regexp, Pattern.MULTILINE | Pattern.DOTALL); - Matcher m = p.matcher(what); - if (m.find()) { - int count = m.groupCount() + 1; - String[] groups = new String[count]; - for (int i = 0; i < count; i++) { - groups[i] = m.group(i); - } - return groups; - } - return null; - } - - - /** - * Identical to match(), except that it returns an array of all matches in - * the specified String, rather than just the first. - */ - static public String[][] matchAll(String what, String regexp) { - Pattern p = Pattern.compile(regexp, Pattern.MULTILINE | Pattern.DOTALL); - Matcher m = p.matcher(what); - ArrayList results = new ArrayList(); - int count = m.groupCount() + 1; - while (m.find()) { - String[] groups = new String[count]; - for (int i = 0; i < count; i++) { - groups[i] = m.group(i); - } - results.add(groups); - } - if (results.isEmpty()) { - return null; - } - String[][] matches = new String[results.size()][count]; - for (int i = 0; i < matches.length; i++) { - matches[i] = (String[]) results.get(i); - } - return matches; - } - - - - ////////////////////////////////////////////////////////////// - - // CASTING FUNCTIONS, INSERTED BY PREPROC - - - /** - * Convert a char to a boolean. 'T', 't', and '1' will become the - * boolean value true, while 'F', 'f', or '0' will become false. - */ - /* - static final public boolean parseBoolean(char what) { - return ((what == 't') || (what == 'T') || (what == '1')); - } - */ - - /** - *

Convert an integer to a boolean. Because of how Java handles upgrading - * numbers, this will also cover byte and char (as they will upgrade to - * an int without any sort of explicit cast).

- *

The preprocessor will convert boolean(what) to parseBoolean(what).

- * @return false if 0, true if any other number - */ - static final public boolean parseBoolean(int what) { - return (what != 0); - } - - /* - // removed because this makes no useful sense - static final public boolean parseBoolean(float what) { - return (what != 0); - } - */ - - /** - * Convert the string "true" or "false" to a boolean. - * @return true if 'what' is "true" or "TRUE", false otherwise - */ - static final public boolean parseBoolean(String what) { - return new Boolean(what).booleanValue(); - } - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - /* - // removed, no need to introduce strange syntax from other languages - static final public boolean[] parseBoolean(char what[]) { - boolean outgoing[] = new boolean[what.length]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = - ((what[i] == 't') || (what[i] == 'T') || (what[i] == '1')); - } - return outgoing; - } - */ - - /** - * Convert a byte array to a boolean array. Each element will be - * evaluated identical to the integer case, where a byte equal - * to zero will return false, and any other value will return true. - * @return array of boolean elements - */ - static final public boolean[] parseBoolean(byte what[]) { - boolean outgoing[] = new boolean[what.length]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = (what[i] != 0); - } - return outgoing; - } - - /** - * Convert an int array to a boolean array. An int equal - * to zero will return false, and any other value will return true. - * @return array of boolean elements - */ - static final public boolean[] parseBoolean(int what[]) { - boolean outgoing[] = new boolean[what.length]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = (what[i] != 0); - } - return outgoing; - } - - /* - // removed, not necessary... if necessary, convert to int array first - static final public boolean[] parseBoolean(float what[]) { - boolean outgoing[] = new boolean[what.length]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = (what[i] != 0); - } - return outgoing; - } - */ - - static final public boolean[] parseBoolean(String what[]) { - boolean outgoing[] = new boolean[what.length]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = new Boolean(what[i]).booleanValue(); - } - return outgoing; - } - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - static final public byte parseByte(boolean what) { - return what ? (byte)1 : 0; - } - - static final public byte parseByte(char what) { - return (byte) what; - } - - static final public byte parseByte(int what) { - return (byte) what; - } - - static final public byte parseByte(float what) { - return (byte) what; - } - - /* - // nixed, no precedent - static final public byte[] parseByte(String what) { // note: array[] - return what.getBytes(); - } - */ - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - static final public byte[] parseByte(boolean what[]) { - byte outgoing[] = new byte[what.length]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = what[i] ? (byte)1 : 0; - } - return outgoing; - } - - static final public byte[] parseByte(char what[]) { - byte outgoing[] = new byte[what.length]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = (byte) what[i]; - } - return outgoing; - } - - static final public byte[] parseByte(int what[]) { - byte outgoing[] = new byte[what.length]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = (byte) what[i]; - } - return outgoing; - } - - static final public byte[] parseByte(float what[]) { - byte outgoing[] = new byte[what.length]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = (byte) what[i]; - } - return outgoing; - } - - /* - static final public byte[][] parseByte(String what[]) { // note: array[][] - byte outgoing[][] = new byte[what.length][]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = what[i].getBytes(); - } - return outgoing; - } - */ - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - /* - static final public char parseChar(boolean what) { // 0/1 or T/F ? - return what ? 't' : 'f'; - } - */ - - static final public char parseChar(byte what) { - return (char) (what & 0xff); - } - - static final public char parseChar(int what) { - return (char) what; - } - - /* - static final public char parseChar(float what) { // nonsensical - return (char) what; - } - - static final public char[] parseChar(String what) { // note: array[] - return what.toCharArray(); - } - */ - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - /* - static final public char[] parseChar(boolean what[]) { // 0/1 or T/F ? - char outgoing[] = new char[what.length]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = what[i] ? 't' : 'f'; - } - return outgoing; - } - */ - - static final public char[] parseChar(byte what[]) { - char outgoing[] = new char[what.length]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = (char) (what[i] & 0xff); - } - return outgoing; - } - - static final public char[] parseChar(int what[]) { - char outgoing[] = new char[what.length]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = (char) what[i]; - } - return outgoing; - } - - /* - static final public char[] parseChar(float what[]) { // nonsensical - char outgoing[] = new char[what.length]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = (char) what[i]; - } - return outgoing; - } - - static final public char[][] parseChar(String what[]) { // note: array[][] - char outgoing[][] = new char[what.length][]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = what[i].toCharArray(); - } - return outgoing; - } - */ - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - static final public int parseInt(boolean what) { - return what ? 1 : 0; - } - - /** - * Note that parseInt() will un-sign a signed byte value. - */ - static final public int parseInt(byte what) { - return what & 0xff; - } - - /** - * Note that parseInt('5') is unlike String in the sense that it - * won't return 5, but the ascii value. This is because ((int) someChar) - * returns the ascii value, and parseInt() is just longhand for the cast. - */ - static final public int parseInt(char what) { - return what; - } - - /** - * Same as floor(), or an (int) cast. - */ - static final public int parseInt(float what) { - return (int) what; - } - - /** - * Parse a String into an int value. Returns 0 if the value is bad. - */ - static final public int parseInt(String what) { - return parseInt(what, 0); - } - - /** - * Parse a String to an int, and provide an alternate value that - * should be used when the number is invalid. - */ - static final public int parseInt(String what, int otherwise) { - try { - int offset = what.indexOf('.'); - if (offset == -1) { - return Integer.parseInt(what); - } else { - return Integer.parseInt(what.substring(0, offset)); - } - } catch (NumberFormatException e) { } - return otherwise; - } - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - static final public int[] parseInt(boolean what[]) { - int list[] = new int[what.length]; - for (int i = 0; i < what.length; i++) { - list[i] = what[i] ? 1 : 0; - } - return list; - } - - static final public int[] parseInt(byte what[]) { // note this unsigns - int list[] = new int[what.length]; - for (int i = 0; i < what.length; i++) { - list[i] = (what[i] & 0xff); - } - return list; - } - - static final public int[] parseInt(char what[]) { - int list[] = new int[what.length]; - for (int i = 0; i < what.length; i++) { - list[i] = what[i]; - } - return list; - } - - static public int[] parseInt(float what[]) { - int inties[] = new int[what.length]; - for (int i = 0; i < what.length; i++) { - inties[i] = (int)what[i]; - } - return inties; - } - - /** - * Make an array of int elements from an array of String objects. - * If the String can't be parsed as a number, it will be set to zero. - * - * String s[] = { "1", "300", "44" }; - * int numbers[] = parseInt(s); - * - * numbers will contain { 1, 300, 44 } - */ - static public int[] parseInt(String what[]) { - return parseInt(what, 0); - } - - /** - * Make an array of int elements from an array of String objects. - * If the String can't be parsed as a number, its entry in the - * array will be set to the value of the "missing" parameter. - * - * String s[] = { "1", "300", "apple", "44" }; - * int numbers[] = parseInt(s, 9999); - * - * numbers will contain { 1, 300, 9999, 44 } - */ - static public int[] parseInt(String what[], int missing) { - int output[] = new int[what.length]; - for (int i = 0; i < what.length; i++) { - try { - output[i] = Integer.parseInt(what[i]); - } catch (NumberFormatException e) { - output[i] = missing; - } - } - return output; - } - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - /* - static final public float parseFloat(boolean what) { - return what ? 1 : 0; - } - */ - - /** - * Convert an int to a float value. Also handles bytes because of - * Java's rules for upgrading values. - */ - static final public float parseFloat(int what) { // also handles byte - return (float)what; - } - - static final public float parseFloat(String what) { - return parseFloat(what, Float.NaN); - } - - static final public float parseFloat(String what, float otherwise) { - try { - return new Float(what).floatValue(); - } catch (NumberFormatException e) { } - - return otherwise; - } - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - /* - static final public float[] parseFloat(boolean what[]) { - float floaties[] = new float[what.length]; - for (int i = 0; i < what.length; i++) { - floaties[i] = what[i] ? 1 : 0; - } - return floaties; - } - - static final public float[] parseFloat(char what[]) { - float floaties[] = new float[what.length]; - for (int i = 0; i < what.length; i++) { - floaties[i] = (char) what[i]; - } - return floaties; - } - */ - - static final public float[] parseByte(byte what[]) { - float floaties[] = new float[what.length]; - for (int i = 0; i < what.length; i++) { - floaties[i] = what[i]; - } - return floaties; - } - - static final public float[] parseFloat(int what[]) { - float floaties[] = new float[what.length]; - for (int i = 0; i < what.length; i++) { - floaties[i] = what[i]; - } - return floaties; - } - - static final public float[] parseFloat(String what[]) { - return parseFloat(what, Float.NaN); - } - - static final public float[] parseFloat(String what[], float missing) { - float output[] = new float[what.length]; - for (int i = 0; i < what.length; i++) { - try { - output[i] = new Float(what[i]).floatValue(); - } catch (NumberFormatException e) { - output[i] = missing; - } - } - return output; - } - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - static final public String str(boolean x) { - return String.valueOf(x); - } - - static final public String str(byte x) { - return String.valueOf(x); - } - - static final public String str(char x) { - return String.valueOf(x); - } - - static final public String str(int x) { - return String.valueOf(x); - } - - static final public String str(float x) { - return String.valueOf(x); - } - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - static final public String[] str(boolean x[]) { - String s[] = new String[x.length]; - for (int i = 0; i < x.length; i++) s[i] = String.valueOf(x[i]); - return s; - } - - static final public String[] str(byte x[]) { - String s[] = new String[x.length]; - for (int i = 0; i < x.length; i++) s[i] = String.valueOf(x[i]); - return s; - } - - static final public String[] str(char x[]) { - String s[] = new String[x.length]; - for (int i = 0; i < x.length; i++) s[i] = String.valueOf(x[i]); - return s; - } - - static final public String[] str(int x[]) { - String s[] = new String[x.length]; - for (int i = 0; i < x.length; i++) s[i] = String.valueOf(x[i]); - return s; - } - - static final public String[] str(float x[]) { - String s[] = new String[x.length]; - for (int i = 0; i < x.length; i++) s[i] = String.valueOf(x[i]); - return s; - } - - - ////////////////////////////////////////////////////////////// - - // INT NUMBER FORMATTING - - - /** - * Integer number formatter. - */ - static private NumberFormat int_nf; - static private int int_nf_digits; - static private boolean int_nf_commas; - - - static public String[] nf(int num[], int digits) { - String formatted[] = new String[num.length]; - for (int i = 0; i < formatted.length; i++) { - formatted[i] = nf(num[i], digits); - } - return formatted; - } - - - static public String nf(int num, int digits) { - if ((int_nf != null) && - (int_nf_digits == digits) && - !int_nf_commas) { - return int_nf.format(num); - } - - int_nf = NumberFormat.getInstance(); - int_nf.setGroupingUsed(false); // no commas - int_nf_commas = false; - int_nf.setMinimumIntegerDigits(digits); - int_nf_digits = digits; - return int_nf.format(num); - } - - - static public String[] nfc(int num[]) { - String formatted[] = new String[num.length]; - for (int i = 0; i < formatted.length; i++) { - formatted[i] = nfc(num[i]); - } - return formatted; - } - - - static public String nfc(int num) { - if ((int_nf != null) && - (int_nf_digits == 0) && - int_nf_commas) { - return int_nf.format(num); - } - - int_nf = NumberFormat.getInstance(); - int_nf.setGroupingUsed(true); - int_nf_commas = true; - int_nf.setMinimumIntegerDigits(0); - int_nf_digits = 0; - return int_nf.format(num); - } - - - /** - * number format signed (or space) - * Formats a number but leaves a blank space in the front - * when it's positive so that it can be properly aligned with - * numbers that have a negative sign in front of them. - */ - static public String nfs(int num, int digits) { - return (num < 0) ? nf(num, digits) : (' ' + nf(num, digits)); - } - - static public String[] nfs(int num[], int digits) { - String formatted[] = new String[num.length]; - for (int i = 0; i < formatted.length; i++) { - formatted[i] = nfs(num[i], digits); - } - return formatted; - } - - // - - /** - * number format positive (or plus) - * Formats a number, always placing a - or + sign - * in the front when it's negative or positive. - */ - static public String nfp(int num, int digits) { - return (num < 0) ? nf(num, digits) : ('+' + nf(num, digits)); - } - - static public String[] nfp(int num[], int digits) { - String formatted[] = new String[num.length]; - for (int i = 0; i < formatted.length; i++) { - formatted[i] = nfp(num[i], digits); - } - return formatted; - } - - - - ////////////////////////////////////////////////////////////// - - // FLOAT NUMBER FORMATTING - - - static private NumberFormat float_nf; - static private int float_nf_left, float_nf_right; - static private boolean float_nf_commas; - - - static public String[] nf(float num[], int left, int right) { - String formatted[] = new String[num.length]; - for (int i = 0; i < formatted.length; i++) { - formatted[i] = nf(num[i], left, right); - } - return formatted; - } - - - static public String nf(float num, int left, int right) { - if ((float_nf != null) && - (float_nf_left == left) && - (float_nf_right == right) && - !float_nf_commas) { - return float_nf.format(num); - } - - float_nf = NumberFormat.getInstance(); - float_nf.setGroupingUsed(false); - float_nf_commas = false; - - if (left != 0) float_nf.setMinimumIntegerDigits(left); - if (right != 0) { - float_nf.setMinimumFractionDigits(right); - float_nf.setMaximumFractionDigits(right); - } - float_nf_left = left; - float_nf_right = right; - return float_nf.format(num); - } - - - static public String[] nfc(float num[], int right) { - String formatted[] = new String[num.length]; - for (int i = 0; i < formatted.length; i++) { - formatted[i] = nfc(num[i], right); - } - return formatted; - } - - - static public String nfc(float num, int right) { - if ((float_nf != null) && - (float_nf_left == 0) && - (float_nf_right == right) && - float_nf_commas) { - return float_nf.format(num); - } - - float_nf = NumberFormat.getInstance(); - float_nf.setGroupingUsed(true); - float_nf_commas = true; - - if (right != 0) { - float_nf.setMinimumFractionDigits(right); - float_nf.setMaximumFractionDigits(right); - } - float_nf_left = 0; - float_nf_right = right; - return float_nf.format(num); - } - - - /** - * Number formatter that takes into account whether the number - * has a sign (positive, negative, etc) in front of it. - */ - static public String[] nfs(float num[], int left, int right) { - String formatted[] = new String[num.length]; - for (int i = 0; i < formatted.length; i++) { - formatted[i] = nfs(num[i], left, right); - } - return formatted; - } - - static public String nfs(float num, int left, int right) { - return (num < 0) ? nf(num, left, right) : (' ' + nf(num, left, right)); - } - - - static public String[] nfp(float num[], int left, int right) { - String formatted[] = new String[num.length]; - for (int i = 0; i < formatted.length; i++) { - formatted[i] = nfp(num[i], left, right); - } - return formatted; - } - - static public String nfp(float num, int left, int right) { - return (num < 0) ? nf(num, left, right) : ('+' + nf(num, left, right)); - } - - - - ////////////////////////////////////////////////////////////// - - // HEX/BINARY CONVERSION - - - static final public String hex(byte what) { - return hex(what, 2); - } - - static final public String hex(char what) { - return hex(what, 4); - } - - static final public String hex(int what) { - return hex(what, 8); - } - - static final public String hex(int what, int digits) { - String stuff = Integer.toHexString(what).toUpperCase(); - - int length = stuff.length(); - if (length > digits) { - return stuff.substring(length - digits); - - } else if (length < digits) { - return "00000000".substring(8 - (digits-length)) + stuff; - } - return stuff; - } - - static final public int unhex(String what) { - // has to parse as a Long so that it'll work for numbers bigger than 2^31 - return (int) (Long.parseLong(what, 16)); - } - - // - - /** - * Returns a String that contains the binary value of a byte. - * The returned value will always have 8 digits. - */ - static final public String binary(byte what) { - return binary(what, 8); - } - - /** - * Returns a String that contains the binary value of a char. - * The returned value will always have 16 digits because chars - * are two bytes long. - */ - static final public String binary(char what) { - return binary(what, 16); - } - - /** - * Returns a String that contains the binary value of an int. - * The length depends on the size of the number itself. - * An int can be up to 32 binary digits, but that seems like - * overkill for almost any situation, so this function just - * auto-size. If you want a specific number of digits (like all 32) - * use binary(int what, int digits) to specify how many digits. - */ - static final public String binary(int what) { - return Integer.toBinaryString(what); - //return binary(what, 32); - } - - /** - * Returns a String that contains the binary value of an int. - * The digits parameter determines how many digits will be used. - */ - static final public String binary(int what, int digits) { - String stuff = Integer.toBinaryString(what); - - int length = stuff.length(); - if (length > digits) { - return stuff.substring(length - digits); - - } else if (length < digits) { - int offset = 32 - (digits-length); - return "00000000000000000000000000000000".substring(offset) + stuff; - } - return stuff; - } - - - /** - * Unpack a binary String into an int. - * i.e. unbinary("00001000") would return 8. - */ - static final public int unbinary(String what) { - return Integer.parseInt(what, 2); - } - - - - ////////////////////////////////////////////////////////////// - - // COLOR FUNCTIONS - - // moved here so that they can work without - // the graphics actually being instantiated (outside setup) - - - public final int color(int gray) { - if (g == null) { - if (gray > 255) gray = 255; else if (gray < 0) gray = 0; - return 0xff000000 | (gray << 16) | (gray << 8) | gray; - } - return g.color(gray); - } - - - public final int color(float fgray) { - if (g == null) { - int gray = (int) fgray; - if (gray > 255) gray = 255; else if (gray < 0) gray = 0; - return 0xff000000 | (gray << 16) | (gray << 8) | gray; - } - return g.color(fgray); - } - - - /** - * As of 0116 this also takes color(#FF8800, alpha) - */ - public final int color(int gray, int alpha) { - if (g == null) { - if (alpha > 255) alpha = 255; else if (alpha < 0) alpha = 0; - if (gray > 255) { - // then assume this is actually a #FF8800 - return (alpha << 24) | (gray & 0xFFFFFF); - } else { - //if (gray > 255) gray = 255; else if (gray < 0) gray = 0; - return (alpha << 24) | (gray << 16) | (gray << 8) | gray; - } - } - return g.color(gray, alpha); - } - - - public final int color(float fgray, float falpha) { - if (g == null) { - int gray = (int) fgray; - int alpha = (int) falpha; - if (gray > 255) gray = 255; else if (gray < 0) gray = 0; - if (alpha > 255) alpha = 255; else if (alpha < 0) alpha = 0; - return 0xff000000 | (gray << 16) | (gray << 8) | gray; - } - return g.color(fgray, falpha); - } - - - public final int color(int x, int y, int z) { - if (g == null) { - if (x > 255) x = 255; else if (x < 0) x = 0; - if (y > 255) y = 255; else if (y < 0) y = 0; - if (z > 255) z = 255; else if (z < 0) z = 0; - - return 0xff000000 | (x << 16) | (y << 8) | z; - } - return g.color(x, y, z); - } - - - public final int color(float x, float y, float z) { - if (g == null) { - if (x > 255) x = 255; else if (x < 0) x = 0; - if (y > 255) y = 255; else if (y < 0) y = 0; - if (z > 255) z = 255; else if (z < 0) z = 0; - - return 0xff000000 | ((int)x << 16) | ((int)y << 8) | (int)z; - } - return g.color(x, y, z); - } - - - public final int color(int x, int y, int z, int a) { - if (g == null) { - if (a > 255) a = 255; else if (a < 0) a = 0; - if (x > 255) x = 255; else if (x < 0) x = 0; - if (y > 255) y = 255; else if (y < 0) y = 0; - if (z > 255) z = 255; else if (z < 0) z = 0; - - return (a << 24) | (x << 16) | (y << 8) | z; - } - return g.color(x, y, z, a); - } - - - public final int color(float x, float y, float z, float a) { - if (g == null) { - if (a > 255) a = 255; else if (a < 0) a = 0; - if (x > 255) x = 255; else if (x < 0) x = 0; - if (y > 255) y = 255; else if (y < 0) y = 0; - if (z > 255) z = 255; else if (z < 0) z = 0; - - return ((int)a << 24) | ((int)x << 16) | ((int)y << 8) | (int)z; - } - return g.color(x, y, z, a); - } - - - - ////////////////////////////////////////////////////////////// - - // MAIN - - - /** - * Set this sketch to communicate its state back to the PDE. - *

- * This uses the stderr stream to write positions of the window - * (so that it will be saved by the PDE for the next run) and - * notify on quit. See more notes in the Worker class. - */ - public void setupExternalMessages() { - - frame.addComponentListener(new ComponentAdapter() { - public void componentMoved(ComponentEvent e) { - Point where = ((Frame) e.getSource()).getLocation(); - System.err.println(PApplet.EXTERNAL_MOVE + " " + - where.x + " " + where.y); - System.err.flush(); // doesn't seem to help or hurt - } - }); - - frame.addWindowListener(new WindowAdapter() { - public void windowClosing(WindowEvent e) { -// System.err.println(PApplet.EXTERNAL_QUIT); -// System.err.flush(); // important -// System.exit(0); - exit(); // don't quit, need to just shut everything down (0133) - } - }); - } - - - /** - * Set up a listener that will fire proper component resize events - * in cases where frame.setResizable(true) is called. - */ - public void setupFrameResizeListener() { - frame.addComponentListener(new ComponentAdapter() { - - public void componentResized(ComponentEvent e) { - // Ignore bad resize events fired during setup to fix - // http://dev.processing.org/bugs/show_bug.cgi?id=341 - // This should also fix the blank screen on Linux bug - // http://dev.processing.org/bugs/show_bug.cgi?id=282 - if (frame.isResizable()) { - // might be multiple resize calls before visible (i.e. first - // when pack() is called, then when it's resized for use). - // ignore them because it's not the user resizing things. - Frame farm = (Frame) e.getComponent(); - if (farm.isVisible()) { - Insets insets = farm.getInsets(); - Dimension windowSize = farm.getSize(); - int usableW = windowSize.width - insets.left - insets.right; - int usableH = windowSize.height - insets.top - insets.bottom; - - // the ComponentListener in PApplet will handle calling size() - setBounds(insets.left, insets.top, usableW, usableH); - } - } - } - }); - } - - - /** - * GIF image of the Processing logo. - */ - static public final byte[] ICON_IMAGE = { - 71, 73, 70, 56, 57, 97, 16, 0, 16, 0, -77, 0, 0, 0, 0, 0, -1, -1, -1, 12, - 12, 13, -15, -15, -14, 45, 57, 74, 54, 80, 111, 47, 71, 97, 62, 88, 117, - 1, 14, 27, 7, 41, 73, 15, 52, 85, 2, 31, 55, 4, 54, 94, 18, 69, 109, 37, - 87, 126, -1, -1, -1, 33, -7, 4, 1, 0, 0, 15, 0, 44, 0, 0, 0, 0, 16, 0, 16, - 0, 0, 4, 122, -16, -107, 114, -86, -67, 83, 30, -42, 26, -17, -100, -45, - 56, -57, -108, 48, 40, 122, -90, 104, 67, -91, -51, 32, -53, 77, -78, -100, - 47, -86, 12, 76, -110, -20, -74, -101, 97, -93, 27, 40, 20, -65, 65, 48, - -111, 99, -20, -112, -117, -123, -47, -105, 24, 114, -112, 74, 69, 84, 25, - 93, 88, -75, 9, 46, 2, 49, 88, -116, -67, 7, -19, -83, 60, 38, 3, -34, 2, - 66, -95, 27, -98, 13, 4, -17, 55, 33, 109, 11, 11, -2, -128, 121, 123, 62, - 91, 120, -128, 127, 122, 115, 102, 2, 119, 0, -116, -113, -119, 6, 102, - 121, -108, -126, 5, 18, 6, 4, -102, -101, -100, 114, 15, 17, 0, 59 - }; - - - /** - * main() method for running this class from the command line. - *

- * The options shown here are not yet finalized and will be - * changing over the next several releases. - *

- * The simplest way to turn and applet into an application is to - * add the following code to your program: - *

static public void main(String args[]) {
-   *   PApplet.main(new String[] { "YourSketchName" });
-   * }
- * This will properly launch your applet from a double-clickable - * .jar or from the command line. - *
-   * Parameters useful for launching or also used by the PDE:
-   *
-   * --location=x,y        upper-lefthand corner of where the applet
-   *                       should appear on screen. if not used,
-   *                       the default is to center on the main screen.
-   *
-   * --present             put the applet into full screen presentation
-   *                       mode. requires java 1.4 or later.
-   *
-   * --exclusive           use full screen exclusive mode when presenting.
-   *                       disables new windows or interaction with other
-   *                       monitors, this is like a "game" mode.
-   *
-   * --hide-stop           use to hide the stop button in situations where
-   *                       you don't want to allow users to exit. also
-   *                       see the FAQ on information for capturing the ESC
-   *                       key when running in presentation mode.
-   *
-   * --stop-color=#xxxxxx  color of the 'stop' text used to quit an
-   *                       sketch when it's in present mode.
-   *
-   * --bgcolor=#xxxxxx     background color of the window.
-   *
-   * --sketch-path         location of where to save files from functions
-   *                       like saveStrings() or saveFrame(). defaults to
-   *                       the folder that the java application was
-   *                       launched from, which means if this isn't set by
-   *                       the pde, everything goes into the same folder
-   *                       as processing.exe.
-   *
-   * --display=n           set what display should be used by this applet.
-   *                       displays are numbered starting from 1.
-   *
-   * Parameters used by Processing when running via the PDE
-   *
-   * --external            set when the applet is being used by the PDE
-   *
-   * --editor-location=x,y position of the upper-lefthand corner of the
-   *                       editor window, for placement of applet window
-   * 
- */ - static public void main(String args[]) { - // Disable abyssmally slow Sun renderer on OS X 10.5. - if (platform == MACOSX) { - // Only run this on OS X otherwise it can cause a permissions error. - // http://dev.processing.org/bugs/show_bug.cgi?id=976 - System.setProperty("apple.awt.graphics.UseQuartz", "true"); - } - - // This doesn't do anything. -// if (platform == WINDOWS) { -// // For now, disable the D3D renderer on Java 6u10 because -// // it causes problems with Present mode. -// // http://dev.processing.org/bugs/show_bug.cgi?id=1009 -// System.setProperty("sun.java2d.d3d", "false"); -// } - - if (args.length < 1) { - System.err.println("Usage: PApplet "); - System.err.println("For additional options, " + - "see the Javadoc for PApplet"); - System.exit(1); - } - - boolean external = false; - int[] location = null; - int[] editorLocation = null; - - String name = null; - boolean present = false; - boolean exclusive = false; - Color backgroundColor = Color.BLACK; - Color stopColor = Color.GRAY; - GraphicsDevice displayDevice = null; - boolean hideStop = false; - - String param = null, value = null; - - // try to get the user folder. if running under java web start, - // this may cause a security exception if the code is not signed. - // http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Integrate;action=display;num=1159386274 - String folder = null; - try { - folder = System.getProperty("user.dir"); - } catch (Exception e) { } - - int argIndex = 0; - while (argIndex < args.length) { - int equals = args[argIndex].indexOf('='); - if (equals != -1) { - param = args[argIndex].substring(0, equals); - value = args[argIndex].substring(equals + 1); - - if (param.equals(ARGS_EDITOR_LOCATION)) { - external = true; - editorLocation = parseInt(split(value, ',')); - - } else if (param.equals(ARGS_DISPLAY)) { - int deviceIndex = Integer.parseInt(value) - 1; - - //DisplayMode dm = device.getDisplayMode(); - //if ((dm.getWidth() == 1024) && (dm.getHeight() == 768)) { - - GraphicsEnvironment environment = - GraphicsEnvironment.getLocalGraphicsEnvironment(); - GraphicsDevice devices[] = environment.getScreenDevices(); - if ((deviceIndex >= 0) && (deviceIndex < devices.length)) { - displayDevice = devices[deviceIndex]; - } else { - System.err.println("Display " + value + " does not exist, " + - "using the default display instead."); - } - - } else if (param.equals(ARGS_BGCOLOR)) { - if (value.charAt(0) == '#') value = value.substring(1); - backgroundColor = new Color(Integer.parseInt(value, 16)); - - } else if (param.equals(ARGS_STOP_COLOR)) { - if (value.charAt(0) == '#') value = value.substring(1); - stopColor = new Color(Integer.parseInt(value, 16)); - - } else if (param.equals(ARGS_SKETCH_FOLDER)) { - folder = value; - - } else if (param.equals(ARGS_LOCATION)) { - location = parseInt(split(value, ',')); - } - - } else { - if (args[argIndex].equals(ARGS_PRESENT)) { - present = true; - - } else if (args[argIndex].equals(ARGS_EXCLUSIVE)) { - exclusive = true; - - } else if (args[argIndex].equals(ARGS_HIDE_STOP)) { - hideStop = true; - - } else if (args[argIndex].equals(ARGS_EXTERNAL)) { - external = true; - - } else { - name = args[argIndex]; - break; - } - } - argIndex++; - } - - // Set this property before getting into any GUI init code - //System.setProperty("com.apple.mrj.application.apple.menu.about.name", name); - // This )*)(*@#$ Apple crap don't work no matter where you put it - // (static method of the class, at the top of main, wherever) - - if (displayDevice == null) { - GraphicsEnvironment environment = - GraphicsEnvironment.getLocalGraphicsEnvironment(); - displayDevice = environment.getDefaultScreenDevice(); - } - - Frame frame = new Frame(displayDevice.getDefaultConfiguration()); - /* - Frame frame = null; - if (displayDevice != null) { - frame = new Frame(displayDevice.getDefaultConfiguration()); - } else { - frame = new Frame(); - } - */ - //Dimension screen = Toolkit.getDefaultToolkit().getScreenSize(); - - // remove the grow box by default - // users who want it back can call frame.setResizable(true) - frame.setResizable(false); - - // Set the trimmings around the image - Image image = Toolkit.getDefaultToolkit().createImage(ICON_IMAGE); - frame.setIconImage(image); - frame.setTitle(name); - - final PApplet applet; - try { - Class c = Thread.currentThread().getContextClassLoader().loadClass(name); - applet = (PApplet) c.newInstance(); - } catch (Exception e) { - throw new RuntimeException(e); - } - - // these are needed before init/start - applet.frame = frame; - applet.sketchPath = folder; - applet.args = PApplet.subset(args, 1); - applet.external = external; - - // Need to save the window bounds at full screen, - // because pack() will cause the bounds to go to zero. - // http://dev.processing.org/bugs/show_bug.cgi?id=923 - Rectangle fullScreenRect = null; - - // For 0149, moving this code (up to the pack() method) before init(). - // For OpenGL (and perhaps other renderers in the future), a peer is - // needed before a GLDrawable can be created. So pack() needs to be - // called on the Frame before applet.init(), which itself calls size(), - // and launches the Thread that will kick off setup(). - // http://dev.processing.org/bugs/show_bug.cgi?id=891 - // http://dev.processing.org/bugs/show_bug.cgi?id=908 - if (present) { - frame.setUndecorated(true); - frame.setBackground(backgroundColor); - if (exclusive) { - displayDevice.setFullScreenWindow(frame); - fullScreenRect = frame.getBounds(); - } else { - DisplayMode mode = displayDevice.getDisplayMode(); - fullScreenRect = new Rectangle(0, 0, mode.getWidth(), mode.getHeight()); - frame.setBounds(fullScreenRect); - frame.setVisible(true); - } - } - frame.setLayout(null); - frame.add(applet); - if (present) { - frame.invalidate(); - } else { - frame.pack(); - } - // insufficient, places the 100x100 sketches offset strangely - //frame.validate(); - - applet.init(); - - // Wait until the applet has figured out its width. - // In a static mode app, this will be after setup() has completed, - // and the empty draw() has set "finished" to true. - // TODO make sure this won't hang if the applet has an exception. - while (applet.defaultSize && !applet.finished) { - //System.out.println("default size"); - try { - Thread.sleep(5); - - } catch (InterruptedException e) { - //System.out.println("interrupt"); - } - } - //println("not default size " + applet.width + " " + applet.height); - //println(" (g width/height is " + applet.g.width + "x" + applet.g.height + ")"); - - if (present) { - // After the pack(), the screen bounds are gonna be 0s - frame.setBounds(fullScreenRect); - applet.setBounds((fullScreenRect.width - applet.width) / 2, - (fullScreenRect.height - applet.height) / 2, - applet.width, applet.height); - - if (!hideStop) { - Label label = new Label("stop"); - label.setForeground(stopColor); - label.addMouseListener(new MouseAdapter() { - public void mousePressed(MouseEvent e) { - System.exit(0); - } - }); - frame.add(label); - - Dimension labelSize = label.getPreferredSize(); - // sometimes shows up truncated on mac - //System.out.println("label width is " + labelSize.width); - labelSize = new Dimension(100, labelSize.height); - label.setSize(labelSize); - label.setLocation(20, fullScreenRect.height - labelSize.height - 20); - } - - // not always running externally when in present mode - if (external) { - applet.setupExternalMessages(); - } - - } else { // if not presenting - // can't do pack earlier cuz present mode don't like it - // (can't go full screen with a frame after calling pack) - // frame.pack(); // get insets. get more. - Insets insets = frame.getInsets(); - - int windowW = Math.max(applet.width, MIN_WINDOW_WIDTH) + - insets.left + insets.right; - int windowH = Math.max(applet.height, MIN_WINDOW_HEIGHT) + - insets.top + insets.bottom; - - frame.setSize(windowW, windowH); - - if (location != null) { - // a specific location was received from PdeRuntime - // (applet has been run more than once, user placed window) - frame.setLocation(location[0], location[1]); - - } else if (external) { - int locationX = editorLocation[0] - 20; - int locationY = editorLocation[1]; - - if (locationX - windowW > 10) { - // if it fits to the left of the window - frame.setLocation(locationX - windowW, locationY); - - } else { // doesn't fit - // if it fits inside the editor window, - // offset slightly from upper lefthand corner - // so that it's plunked inside the text area - locationX = editorLocation[0] + 66; - locationY = editorLocation[1] + 66; - - if ((locationX + windowW > applet.screen.width - 33) || - (locationY + windowH > applet.screen.height - 33)) { - // otherwise center on screen - locationX = (applet.screen.width - windowW) / 2; - locationY = (applet.screen.height - windowH) / 2; - } - frame.setLocation(locationX, locationY); - } - } else { // just center on screen - frame.setLocation((applet.screen.width - applet.width) / 2, - (applet.screen.height - applet.height) / 2); - } - - if (backgroundColor == Color.black) { //BLACK) { - // this means no bg color unless specified - backgroundColor = SystemColor.control; - } - frame.setBackground(backgroundColor); - - int usableWindowH = windowH - insets.top - insets.bottom; - applet.setBounds((windowW - applet.width)/2, - insets.top + (usableWindowH - applet.height)/2, - applet.width, applet.height); - - if (external) { - applet.setupExternalMessages(); - - } else { // !external - frame.addWindowListener(new WindowAdapter() { - public void windowClosing(WindowEvent e) { - System.exit(0); - } - }); - } - - // handle frame resizing events - applet.setupFrameResizeListener(); - - // all set for rockin - if (applet.displayable()) { - frame.setVisible(true); - } - } - - applet.requestFocus(); // ask for keydowns - //System.out.println("exiting main()"); - } - - - ////////////////////////////////////////////////////////////// - - - /** - * Begin recording to a new renderer of the specified type, using the width - * and height of the main drawing surface. - */ - public PGraphics beginRecord(String renderer, String filename) { - filename = insertFrame(filename); - PGraphics rec = createGraphics(width, height, renderer, filename); - beginRecord(rec); - return rec; - } - - - /** - * Begin recording (echoing) commands to the specified PGraphics object. - */ - public void beginRecord(PGraphics recorder) { - this.recorder = recorder; - recorder.beginDraw(); - } - - - public void endRecord() { - if (recorder != null) { - recorder.endDraw(); - recorder.dispose(); - recorder = null; - } - } - - - /** - * Begin recording raw shape data to a renderer of the specified type, - * using the width and height of the main drawing surface. - * - * If hashmarks (###) are found in the filename, they'll be replaced - * by the current frame number (frameCount). - */ - public PGraphics beginRaw(String renderer, String filename) { - filename = insertFrame(filename); - PGraphics rec = createGraphics(width, height, renderer, filename); - g.beginRaw(rec); - return rec; - } - - - /** - * Begin recording raw shape data to the specified renderer. - * - * This simply echoes to g.beginRaw(), but since is placed here (rather than - * generated by preproc.pl) for clarity and so that it doesn't echo the - * command should beginRecord() be in use. - */ - public void beginRaw(PGraphics rawGraphics) { - g.beginRaw(rawGraphics); - } - - - /** - * Stop recording raw shape data to the specified renderer. - * - * This simply echoes to g.beginRaw(), but since is placed here (rather than - * generated by preproc.pl) for clarity and so that it doesn't echo the - * command should beginRecord() be in use. - */ - public void endRaw() { - g.endRaw(); - } - - - ////////////////////////////////////////////////////////////// - - - /** - * Override the g.pixels[] function to set the pixels[] array - * that's part of the PApplet object. Allows the use of - * pixels[] in the code, rather than g.pixels[]. - */ - public void loadPixels() { - g.loadPixels(); - pixels = g.pixels; - } - - - public void updatePixels() { - g.updatePixels(); - } - - - public void updatePixels(int x1, int y1, int x2, int y2) { - g.updatePixels(x1, y1, x2, y2); - } - - - ////////////////////////////////////////////////////////////// - - // everything below this line is automatically generated. no touch. - // public functions for processing.core - - - public void flush() { - if (recorder != null) recorder.flush(); - g.flush(); - } - - - public void hint(int which) { - if (recorder != null) recorder.hint(which); - g.hint(which); - } - - - public void beginShape() { - if (recorder != null) recorder.beginShape(); - g.beginShape(); - } - - - public void beginShape(int kind) { - if (recorder != null) recorder.beginShape(kind); - g.beginShape(kind); - } - - - public void edge(boolean edge) { - if (recorder != null) recorder.edge(edge); - g.edge(edge); - } - - - public void normal(float nx, float ny, float nz) { - if (recorder != null) recorder.normal(nx, ny, nz); - g.normal(nx, ny, nz); - } - - - public void textureMode(int mode) { - if (recorder != null) recorder.textureMode(mode); - g.textureMode(mode); - } - - - public void texture(PImage image) { - if (recorder != null) recorder.texture(image); - g.texture(image); - } - - - public void vertex(float x, float y) { - if (recorder != null) recorder.vertex(x, y); - g.vertex(x, y); - } - - - public void vertex(float x, float y, float z) { - if (recorder != null) recorder.vertex(x, y, z); - g.vertex(x, y, z); - } - - - public void vertex(float[] v) { - if (recorder != null) recorder.vertex(v); - g.vertex(v); - } - - - public void vertex(float x, float y, float u, float v) { - if (recorder != null) recorder.vertex(x, y, u, v); - g.vertex(x, y, u, v); - } - - - public void vertex(float x, float y, float z, float u, float v) { - if (recorder != null) recorder.vertex(x, y, z, u, v); - g.vertex(x, y, z, u, v); - } - - - public void breakShape() { - if (recorder != null) recorder.breakShape(); - g.breakShape(); - } - - - public void endShape() { - if (recorder != null) recorder.endShape(); - g.endShape(); - } - - - public void endShape(int mode) { - if (recorder != null) recorder.endShape(mode); - g.endShape(mode); - } - - - public void bezierVertex(float x2, float y2, - float x3, float y3, - float x4, float y4) { - if (recorder != null) recorder.bezierVertex(x2, y2, x3, y3, x4, y4); - g.bezierVertex(x2, y2, x3, y3, x4, y4); - } - - - public void bezierVertex(float x2, float y2, float z2, - float x3, float y3, float z3, - float x4, float y4, float z4) { - if (recorder != null) recorder.bezierVertex(x2, y2, z2, x3, y3, z3, x4, y4, z4); - g.bezierVertex(x2, y2, z2, x3, y3, z3, x4, y4, z4); - } - - - public void curveVertex(float x, float y) { - if (recorder != null) recorder.curveVertex(x, y); - g.curveVertex(x, y); - } - - - public void curveVertex(float x, float y, float z) { - if (recorder != null) recorder.curveVertex(x, y, z); - g.curveVertex(x, y, z); - } - - - public void point(float x, float y) { - if (recorder != null) recorder.point(x, y); - g.point(x, y); - } - - - public void point(float x, float y, float z) { - if (recorder != null) recorder.point(x, y, z); - g.point(x, y, z); - } - - - public void line(float x1, float y1, float x2, float y2) { - if (recorder != null) recorder.line(x1, y1, x2, y2); - g.line(x1, y1, x2, y2); - } - - - public void line(float x1, float y1, float z1, - float x2, float y2, float z2) { - if (recorder != null) recorder.line(x1, y1, z1, x2, y2, z2); - g.line(x1, y1, z1, x2, y2, z2); - } - - - public void triangle(float x1, float y1, float x2, float y2, - float x3, float y3) { - if (recorder != null) recorder.triangle(x1, y1, x2, y2, x3, y3); - g.triangle(x1, y1, x2, y2, x3, y3); - } - - - public void quad(float x1, float y1, float x2, float y2, - float x3, float y3, float x4, float y4) { - if (recorder != null) recorder.quad(x1, y1, x2, y2, x3, y3, x4, y4); - g.quad(x1, y1, x2, y2, x3, y3, x4, y4); - } - - - public void rectMode(int mode) { - if (recorder != null) recorder.rectMode(mode); - g.rectMode(mode); - } - - - public void rect(float a, float b, float c, float d) { - if (recorder != null) recorder.rect(a, b, c, d); - g.rect(a, b, c, d); - } - - - public void ellipseMode(int mode) { - if (recorder != null) recorder.ellipseMode(mode); - g.ellipseMode(mode); - } - - - public void ellipse(float a, float b, float c, float d) { - if (recorder != null) recorder.ellipse(a, b, c, d); - g.ellipse(a, b, c, d); - } - - - public void arc(float a, float b, float c, float d, - float start, float stop) { - if (recorder != null) recorder.arc(a, b, c, d, start, stop); - g.arc(a, b, c, d, start, stop); - } - - - public void box(float size) { - if (recorder != null) recorder.box(size); - g.box(size); - } - - - public void box(float w, float h, float d) { - if (recorder != null) recorder.box(w, h, d); - g.box(w, h, d); - } - - - public void sphereDetail(int res) { - if (recorder != null) recorder.sphereDetail(res); - g.sphereDetail(res); - } - - - public void sphereDetail(int ures, int vres) { - if (recorder != null) recorder.sphereDetail(ures, vres); - g.sphereDetail(ures, vres); - } - - - public void sphere(float r) { - if (recorder != null) recorder.sphere(r); - g.sphere(r); - } - - - public float bezierPoint(float a, float b, float c, float d, float t) { - return g.bezierPoint(a, b, c, d, t); - } - - - public float bezierTangent(float a, float b, float c, float d, float t) { - return g.bezierTangent(a, b, c, d, t); - } - - - public void bezierDetail(int detail) { - if (recorder != null) recorder.bezierDetail(detail); - g.bezierDetail(detail); - } - - - public void bezier(float x1, float y1, - float x2, float y2, - float x3, float y3, - float x4, float y4) { - if (recorder != null) recorder.bezier(x1, y1, x2, y2, x3, y3, x4, y4); - g.bezier(x1, y1, x2, y2, x3, y3, x4, y4); - } - - - public void bezier(float x1, float y1, float z1, - float x2, float y2, float z2, - float x3, float y3, float z3, - float x4, float y4, float z4) { - if (recorder != null) recorder.bezier(x1, y1, z1, x2, y2, z2, x3, y3, z3, x4, y4, z4); - g.bezier(x1, y1, z1, x2, y2, z2, x3, y3, z3, x4, y4, z4); - } - - - public float curvePoint(float a, float b, float c, float d, float t) { - return g.curvePoint(a, b, c, d, t); - } - - - public float curveTangent(float a, float b, float c, float d, float t) { - return g.curveTangent(a, b, c, d, t); - } - - - public void curveDetail(int detail) { - if (recorder != null) recorder.curveDetail(detail); - g.curveDetail(detail); - } - - - public void curveTightness(float tightness) { - if (recorder != null) recorder.curveTightness(tightness); - g.curveTightness(tightness); - } - - - public void curve(float x1, float y1, - float x2, float y2, - float x3, float y3, - float x4, float y4) { - if (recorder != null) recorder.curve(x1, y1, x2, y2, x3, y3, x4, y4); - g.curve(x1, y1, x2, y2, x3, y3, x4, y4); - } - - - public void curve(float x1, float y1, float z1, - float x2, float y2, float z2, - float x3, float y3, float z3, - float x4, float y4, float z4) { - if (recorder != null) recorder.curve(x1, y1, z1, x2, y2, z2, x3, y3, z3, x4, y4, z4); - g.curve(x1, y1, z1, x2, y2, z2, x3, y3, z3, x4, y4, z4); - } - - - public void smooth() { - if (recorder != null) recorder.smooth(); - g.smooth(); - } - - - public void noSmooth() { - if (recorder != null) recorder.noSmooth(); - g.noSmooth(); - } - - - public void imageMode(int mode) { - if (recorder != null) recorder.imageMode(mode); - g.imageMode(mode); - } - - - public void image(PImage image, float x, float y) { - if (recorder != null) recorder.image(image, x, y); - g.image(image, x, y); - } - - - public void image(PImage image, float x, float y, float c, float d) { - if (recorder != null) recorder.image(image, x, y, c, d); - g.image(image, x, y, c, d); - } - - - public void image(PImage image, - float a, float b, float c, float d, - int u1, int v1, int u2, int v2) { - if (recorder != null) recorder.image(image, a, b, c, d, u1, v1, u2, v2); - g.image(image, a, b, c, d, u1, v1, u2, v2); - } - - - public void shapeMode(int mode) { - if (recorder != null) recorder.shapeMode(mode); - g.shapeMode(mode); - } - - - public void shape(PShape shape) { - if (recorder != null) recorder.shape(shape); - g.shape(shape); - } - - - public void shape(PShape shape, float x, float y) { - if (recorder != null) recorder.shape(shape, x, y); - g.shape(shape, x, y); - } - - - public void shape(PShape shape, float x, float y, float c, float d) { - if (recorder != null) recorder.shape(shape, x, y, c, d); - g.shape(shape, x, y, c, d); - } - - - public void textAlign(int align) { - if (recorder != null) recorder.textAlign(align); - g.textAlign(align); - } - - - public void textAlign(int alignX, int alignY) { - if (recorder != null) recorder.textAlign(alignX, alignY); - g.textAlign(alignX, alignY); - } - - - public float textAscent() { - return g.textAscent(); - } - - - public float textDescent() { - return g.textDescent(); - } - - - public void textFont(PFont which) { - if (recorder != null) recorder.textFont(which); - g.textFont(which); - } - - - public void textFont(PFont which, float size) { - if (recorder != null) recorder.textFont(which, size); - g.textFont(which, size); - } - - - public void textLeading(float leading) { - if (recorder != null) recorder.textLeading(leading); - g.textLeading(leading); - } - - - public void textMode(int mode) { - if (recorder != null) recorder.textMode(mode); - g.textMode(mode); - } - - - public void textSize(float size) { - if (recorder != null) recorder.textSize(size); - g.textSize(size); - } - - - public float textWidth(char c) { - return g.textWidth(c); - } - - - public float textWidth(String str) { - return g.textWidth(str); - } - - - public void text(char c) { - if (recorder != null) recorder.text(c); - g.text(c); - } - - - public void text(char c, float x, float y) { - if (recorder != null) recorder.text(c, x, y); - g.text(c, x, y); - } - - - public void text(char c, float x, float y, float z) { - if (recorder != null) recorder.text(c, x, y, z); - g.text(c, x, y, z); - } - - - public void text(String str) { - if (recorder != null) recorder.text(str); - g.text(str); - } - - - public void text(String str, float x, float y) { - if (recorder != null) recorder.text(str, x, y); - g.text(str, x, y); - } - - - public void text(char[] chars, int start, int stop, float x, float y) { - if (recorder != null) recorder.text(chars, start, stop, x, y); - g.text(chars, start, stop, x, y); - } - - - public void text(String str, float x, float y, float z) { - if (recorder != null) recorder.text(str, x, y, z); - g.text(str, x, y, z); - } - - - public void text(char[] chars, int start, int stop, - float x, float y, float z) { - if (recorder != null) recorder.text(chars, start, stop, x, y, z); - g.text(chars, start, stop, x, y, z); - } - - - public void text(String str, float x1, float y1, float x2, float y2) { - if (recorder != null) recorder.text(str, x1, y1, x2, y2); - g.text(str, x1, y1, x2, y2); - } - - - public void text(String s, float x1, float y1, float x2, float y2, float z) { - if (recorder != null) recorder.text(s, x1, y1, x2, y2, z); - g.text(s, x1, y1, x2, y2, z); - } - - - public void text(int num, float x, float y) { - if (recorder != null) recorder.text(num, x, y); - g.text(num, x, y); - } - - - public void text(int num, float x, float y, float z) { - if (recorder != null) recorder.text(num, x, y, z); - g.text(num, x, y, z); - } - - - public void text(float num, float x, float y) { - if (recorder != null) recorder.text(num, x, y); - g.text(num, x, y); - } - - - public void text(float num, float x, float y, float z) { - if (recorder != null) recorder.text(num, x, y, z); - g.text(num, x, y, z); - } - - - public void pushMatrix() { - if (recorder != null) recorder.pushMatrix(); - g.pushMatrix(); - } - - - public void popMatrix() { - if (recorder != null) recorder.popMatrix(); - g.popMatrix(); - } - - - public void translate(float tx, float ty) { - if (recorder != null) recorder.translate(tx, ty); - g.translate(tx, ty); - } - - - public void translate(float tx, float ty, float tz) { - if (recorder != null) recorder.translate(tx, ty, tz); - g.translate(tx, ty, tz); - } - - - public void rotate(float angle) { - if (recorder != null) recorder.rotate(angle); - g.rotate(angle); - } - - - public void rotateX(float angle) { - if (recorder != null) recorder.rotateX(angle); - g.rotateX(angle); - } - - - public void rotateY(float angle) { - if (recorder != null) recorder.rotateY(angle); - g.rotateY(angle); - } - - - public void rotateZ(float angle) { - if (recorder != null) recorder.rotateZ(angle); - g.rotateZ(angle); - } - - - public void rotate(float angle, float vx, float vy, float vz) { - if (recorder != null) recorder.rotate(angle, vx, vy, vz); - g.rotate(angle, vx, vy, vz); - } - - - public void scale(float s) { - if (recorder != null) recorder.scale(s); - g.scale(s); - } - - - public void scale(float sx, float sy) { - if (recorder != null) recorder.scale(sx, sy); - g.scale(sx, sy); - } - - - public void scale(float x, float y, float z) { - if (recorder != null) recorder.scale(x, y, z); - g.scale(x, y, z); - } - - - public void resetMatrix() { - if (recorder != null) recorder.resetMatrix(); - g.resetMatrix(); - } - - - public void applyMatrix(PMatrix source) { - if (recorder != null) recorder.applyMatrix(source); - g.applyMatrix(source); - } - - - public void applyMatrix(PMatrix2D source) { - if (recorder != null) recorder.applyMatrix(source); - g.applyMatrix(source); - } - - - public void applyMatrix(float n00, float n01, float n02, - float n10, float n11, float n12) { - if (recorder != null) recorder.applyMatrix(n00, n01, n02, n10, n11, n12); - g.applyMatrix(n00, n01, n02, n10, n11, n12); - } - - - public void applyMatrix(PMatrix3D source) { - if (recorder != null) recorder.applyMatrix(source); - g.applyMatrix(source); - } - - - public void applyMatrix(float n00, float n01, float n02, float n03, - float n10, float n11, float n12, float n13, - float n20, float n21, float n22, float n23, - float n30, float n31, float n32, float n33) { - if (recorder != null) recorder.applyMatrix(n00, n01, n02, n03, n10, n11, n12, n13, n20, n21, n22, n23, n30, n31, n32, n33); - g.applyMatrix(n00, n01, n02, n03, n10, n11, n12, n13, n20, n21, n22, n23, n30, n31, n32, n33); - } - - - public PMatrix getMatrix() { - return g.getMatrix(); - } - - - public PMatrix2D getMatrix(PMatrix2D target) { - return g.getMatrix(target); - } - - - public PMatrix3D getMatrix(PMatrix3D target) { - return g.getMatrix(target); - } - - - public void setMatrix(PMatrix source) { - if (recorder != null) recorder.setMatrix(source); - g.setMatrix(source); - } - - - public void setMatrix(PMatrix2D source) { - if (recorder != null) recorder.setMatrix(source); - g.setMatrix(source); - } - - - public void setMatrix(PMatrix3D source) { - if (recorder != null) recorder.setMatrix(source); - g.setMatrix(source); - } - - - public void printMatrix() { - if (recorder != null) recorder.printMatrix(); - g.printMatrix(); - } - - - public void beginCamera() { - if (recorder != null) recorder.beginCamera(); - g.beginCamera(); - } - - - public void endCamera() { - if (recorder != null) recorder.endCamera(); - g.endCamera(); - } - - - public void camera() { - if (recorder != null) recorder.camera(); - g.camera(); - } - - - public void camera(float eyeX, float eyeY, float eyeZ, - float centerX, float centerY, float centerZ, - float upX, float upY, float upZ) { - if (recorder != null) recorder.camera(eyeX, eyeY, eyeZ, centerX, centerY, centerZ, upX, upY, upZ); - g.camera(eyeX, eyeY, eyeZ, centerX, centerY, centerZ, upX, upY, upZ); - } - - - public void printCamera() { - if (recorder != null) recorder.printCamera(); - g.printCamera(); - } - - - public void ortho() { - if (recorder != null) recorder.ortho(); - g.ortho(); - } - - - public void ortho(float left, float right, - float bottom, float top, - float near, float far) { - if (recorder != null) recorder.ortho(left, right, bottom, top, near, far); - g.ortho(left, right, bottom, top, near, far); - } - - - public void perspective() { - if (recorder != null) recorder.perspective(); - g.perspective(); - } - - - public void perspective(float fovy, float aspect, float zNear, float zFar) { - if (recorder != null) recorder.perspective(fovy, aspect, zNear, zFar); - g.perspective(fovy, aspect, zNear, zFar); - } - - - public void frustum(float left, float right, - float bottom, float top, - float near, float far) { - if (recorder != null) recorder.frustum(left, right, bottom, top, near, far); - g.frustum(left, right, bottom, top, near, far); - } - - - public void printProjection() { - if (recorder != null) recorder.printProjection(); - g.printProjection(); - } - - - public float screenX(float x, float y) { - return g.screenX(x, y); - } - - - public float screenY(float x, float y) { - return g.screenY(x, y); - } - - - public float screenX(float x, float y, float z) { - return g.screenX(x, y, z); - } - - - public float screenY(float x, float y, float z) { - return g.screenY(x, y, z); - } - - - public float screenZ(float x, float y, float z) { - return g.screenZ(x, y, z); - } - - - public float modelX(float x, float y, float z) { - return g.modelX(x, y, z); - } - - - public float modelY(float x, float y, float z) { - return g.modelY(x, y, z); - } - - - public float modelZ(float x, float y, float z) { - return g.modelZ(x, y, z); - } - - - public void pushStyle() { - if (recorder != null) recorder.pushStyle(); - g.pushStyle(); - } - - - public void popStyle() { - if (recorder != null) recorder.popStyle(); - g.popStyle(); - } - - - public void style(PStyle s) { - if (recorder != null) recorder.style(s); - g.style(s); - } - - - public void strokeWeight(float weight) { - if (recorder != null) recorder.strokeWeight(weight); - g.strokeWeight(weight); - } - - - public void strokeJoin(int join) { - if (recorder != null) recorder.strokeJoin(join); - g.strokeJoin(join); - } - - - public void strokeCap(int cap) { - if (recorder != null) recorder.strokeCap(cap); - g.strokeCap(cap); - } - - - public void noStroke() { - if (recorder != null) recorder.noStroke(); - g.noStroke(); - } - - - public void stroke(int rgb) { - if (recorder != null) recorder.stroke(rgb); - g.stroke(rgb); - } - - - public void stroke(int rgb, float alpha) { - if (recorder != null) recorder.stroke(rgb, alpha); - g.stroke(rgb, alpha); - } - - - public void stroke(float gray) { - if (recorder != null) recorder.stroke(gray); - g.stroke(gray); - } - - - public void stroke(float gray, float alpha) { - if (recorder != null) recorder.stroke(gray, alpha); - g.stroke(gray, alpha); - } - - - public void stroke(float x, float y, float z) { - if (recorder != null) recorder.stroke(x, y, z); - g.stroke(x, y, z); - } - - - public void stroke(float x, float y, float z, float a) { - if (recorder != null) recorder.stroke(x, y, z, a); - g.stroke(x, y, z, a); - } - - - public void noTint() { - if (recorder != null) recorder.noTint(); - g.noTint(); - } - - - public void tint(int rgb) { - if (recorder != null) recorder.tint(rgb); - g.tint(rgb); - } - - - public void tint(int rgb, float alpha) { - if (recorder != null) recorder.tint(rgb, alpha); - g.tint(rgb, alpha); - } - - - public void tint(float gray) { - if (recorder != null) recorder.tint(gray); - g.tint(gray); - } - - - public void tint(float gray, float alpha) { - if (recorder != null) recorder.tint(gray, alpha); - g.tint(gray, alpha); - } - - - public void tint(float x, float y, float z) { - if (recorder != null) recorder.tint(x, y, z); - g.tint(x, y, z); - } - - - public void tint(float x, float y, float z, float a) { - if (recorder != null) recorder.tint(x, y, z, a); - g.tint(x, y, z, a); - } - - - public void noFill() { - if (recorder != null) recorder.noFill(); - g.noFill(); - } - - - public void fill(int rgb) { - if (recorder != null) recorder.fill(rgb); - g.fill(rgb); - } - - - public void fill(int rgb, float alpha) { - if (recorder != null) recorder.fill(rgb, alpha); - g.fill(rgb, alpha); - } - - - public void fill(float gray) { - if (recorder != null) recorder.fill(gray); - g.fill(gray); - } - - - public void fill(float gray, float alpha) { - if (recorder != null) recorder.fill(gray, alpha); - g.fill(gray, alpha); - } - - - public void fill(float x, float y, float z) { - if (recorder != null) recorder.fill(x, y, z); - g.fill(x, y, z); - } - - - public void fill(float x, float y, float z, float a) { - if (recorder != null) recorder.fill(x, y, z, a); - g.fill(x, y, z, a); - } - - - public void ambient(int rgb) { - if (recorder != null) recorder.ambient(rgb); - g.ambient(rgb); - } - - - public void ambient(float gray) { - if (recorder != null) recorder.ambient(gray); - g.ambient(gray); - } - - - public void ambient(float x, float y, float z) { - if (recorder != null) recorder.ambient(x, y, z); - g.ambient(x, y, z); - } - - - public void specular(int rgb) { - if (recorder != null) recorder.specular(rgb); - g.specular(rgb); - } - - - public void specular(float gray) { - if (recorder != null) recorder.specular(gray); - g.specular(gray); - } - - - public void specular(float x, float y, float z) { - if (recorder != null) recorder.specular(x, y, z); - g.specular(x, y, z); - } - - - public void shininess(float shine) { - if (recorder != null) recorder.shininess(shine); - g.shininess(shine); - } - - - public void emissive(int rgb) { - if (recorder != null) recorder.emissive(rgb); - g.emissive(rgb); - } - - - public void emissive(float gray) { - if (recorder != null) recorder.emissive(gray); - g.emissive(gray); - } - - - public void emissive(float x, float y, float z) { - if (recorder != null) recorder.emissive(x, y, z); - g.emissive(x, y, z); - } - - - public void lights() { - if (recorder != null) recorder.lights(); - g.lights(); - } - - - public void noLights() { - if (recorder != null) recorder.noLights(); - g.noLights(); - } - - - public void ambientLight(float red, float green, float blue) { - if (recorder != null) recorder.ambientLight(red, green, blue); - g.ambientLight(red, green, blue); - } - - - public void ambientLight(float red, float green, float blue, - float x, float y, float z) { - if (recorder != null) recorder.ambientLight(red, green, blue, x, y, z); - g.ambientLight(red, green, blue, x, y, z); - } - - - public void directionalLight(float red, float green, float blue, - float nx, float ny, float nz) { - if (recorder != null) recorder.directionalLight(red, green, blue, nx, ny, nz); - g.directionalLight(red, green, blue, nx, ny, nz); - } - - - public void pointLight(float red, float green, float blue, - float x, float y, float z) { - if (recorder != null) recorder.pointLight(red, green, blue, x, y, z); - g.pointLight(red, green, blue, x, y, z); - } - - - public void spotLight(float red, float green, float blue, - float x, float y, float z, - float nx, float ny, float nz, - float angle, float concentration) { - if (recorder != null) recorder.spotLight(red, green, blue, x, y, z, nx, ny, nz, angle, concentration); - g.spotLight(red, green, blue, x, y, z, nx, ny, nz, angle, concentration); - } - - - public void lightFalloff(float constant, float linear, float quadratic) { - if (recorder != null) recorder.lightFalloff(constant, linear, quadratic); - g.lightFalloff(constant, linear, quadratic); - } - - - public void lightSpecular(float x, float y, float z) { - if (recorder != null) recorder.lightSpecular(x, y, z); - g.lightSpecular(x, y, z); - } - - - public void background(int rgb) { - if (recorder != null) recorder.background(rgb); - g.background(rgb); - } - - - public void background(int rgb, float alpha) { - if (recorder != null) recorder.background(rgb, alpha); - g.background(rgb, alpha); - } - - - public void background(float gray) { - if (recorder != null) recorder.background(gray); - g.background(gray); - } - - - public void background(float gray, float alpha) { - if (recorder != null) recorder.background(gray, alpha); - g.background(gray, alpha); - } - - - public void background(float x, float y, float z) { - if (recorder != null) recorder.background(x, y, z); - g.background(x, y, z); - } - - - public void background(float x, float y, float z, float a) { - if (recorder != null) recorder.background(x, y, z, a); - g.background(x, y, z, a); - } - - - public void background(PImage image) { - if (recorder != null) recorder.background(image); - g.background(image); - } - - - public void colorMode(int mode) { - if (recorder != null) recorder.colorMode(mode); - g.colorMode(mode); - } - - - public void colorMode(int mode, float max) { - if (recorder != null) recorder.colorMode(mode, max); - g.colorMode(mode, max); - } - - - public void colorMode(int mode, float maxX, float maxY, float maxZ) { - if (recorder != null) recorder.colorMode(mode, maxX, maxY, maxZ); - g.colorMode(mode, maxX, maxY, maxZ); - } - - - public void colorMode(int mode, - float maxX, float maxY, float maxZ, float maxA) { - if (recorder != null) recorder.colorMode(mode, maxX, maxY, maxZ, maxA); - g.colorMode(mode, maxX, maxY, maxZ, maxA); - } - - - public final float alpha(int what) { - return g.alpha(what); - } - - - public final float red(int what) { - return g.red(what); - } - - - public final float green(int what) { - return g.green(what); - } - - - public final float blue(int what) { - return g.blue(what); - } - - - public final float hue(int what) { - return g.hue(what); - } - - - public final float saturation(int what) { - return g.saturation(what); - } - - - public final float brightness(int what) { - return g.brightness(what); - } - - - public int lerpColor(int c1, int c2, float amt) { - return g.lerpColor(c1, c2, amt); - } - - - static public int lerpColor(int c1, int c2, float amt, int mode) { - return PGraphics.lerpColor(c1, c2, amt, mode); - } - - - public boolean displayable() { - return g.displayable(); - } - - - public void setCache(Object parent, Object storage) { - if (recorder != null) recorder.setCache(parent, storage); - g.setCache(parent, storage); - } - - - public Object getCache(Object parent) { - return g.getCache(parent); - } - - - public void removeCache(Object parent) { - if (recorder != null) recorder.removeCache(parent); - g.removeCache(parent); - } - - - public int get(int x, int y) { - return g.get(x, y); - } - - - public PImage get(int x, int y, int w, int h) { - return g.get(x, y, w, h); - } - - - public PImage get() { - return g.get(); - } - - - public void set(int x, int y, int c) { - if (recorder != null) recorder.set(x, y, c); - g.set(x, y, c); - } - - - public void set(int x, int y, PImage src) { - if (recorder != null) recorder.set(x, y, src); - g.set(x, y, src); - } - - - public void mask(int alpha[]) { - if (recorder != null) recorder.mask(alpha); - g.mask(alpha); - } - - - public void mask(PImage alpha) { - if (recorder != null) recorder.mask(alpha); - g.mask(alpha); - } - - - public void filter(int kind) { - if (recorder != null) recorder.filter(kind); - g.filter(kind); - } - - - public void filter(int kind, float param) { - if (recorder != null) recorder.filter(kind, param); - g.filter(kind, param); - } - - - public void copy(int sx, int sy, int sw, int sh, - int dx, int dy, int dw, int dh) { - if (recorder != null) recorder.copy(sx, sy, sw, sh, dx, dy, dw, dh); - g.copy(sx, sy, sw, sh, dx, dy, dw, dh); - } - - - public void copy(PImage src, - int sx, int sy, int sw, int sh, - int dx, int dy, int dw, int dh) { - if (recorder != null) recorder.copy(src, sx, sy, sw, sh, dx, dy, dw, dh); - g.copy(src, sx, sy, sw, sh, dx, dy, dw, dh); - } - - - static public int blendColor(int c1, int c2, int mode) { - return PGraphics.blendColor(c1, c2, mode); - } - - - public void blend(int sx, int sy, int sw, int sh, - int dx, int dy, int dw, int dh, int mode) { - if (recorder != null) recorder.blend(sx, sy, sw, sh, dx, dy, dw, dh, mode); - g.blend(sx, sy, sw, sh, dx, dy, dw, dh, mode); - } - - - public void blend(PImage src, - int sx, int sy, int sw, int sh, - int dx, int dy, int dw, int dh, int mode) { - if (recorder != null) recorder.blend(src, sx, sy, sw, sh, dx, dy, dw, dh, mode); - g.blend(src, sx, sy, sw, sh, dx, dy, dw, dh, mode); - } -} diff --git a/core/preproc/demo/PGraphics.java b/core/preproc/demo/PGraphics.java deleted file mode 100644 index c3ff52828..000000000 --- a/core/preproc/demo/PGraphics.java +++ /dev/null @@ -1,5043 +0,0 @@ -/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */ - -/* - Part of the Processing project - http://processing.org - - Copyright (c) 2004-08 Ben Fry and Casey Reas - Copyright (c) 2001-04 Massachusetts Institute of Technology - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General - Public License along with this library; if not, write to the - Free Software Foundation, Inc., 59 Temple Place, Suite 330, - Boston, MA 02111-1307 USA -*/ - -package processing.core; - -import java.awt.*; -import java.util.HashMap; - - -/** - * Main graphics and rendering context, as well as the base API implementation. - * - *

Subclassing and initializing PGraphics objects

- * Starting in release 0149, subclasses of PGraphics are handled differently. - * The constructor for subclasses takes no parameters, instead a series of - * functions are called by the hosting PApplet to specify its attributes. - *
    - *
  • setParent(PApplet) - is called to specify the parent PApplet. - *
  • setPrimary(boolean) - called with true if this PGraphics will be the - * primary drawing surface used by the sketch, or false if not. - *
  • setPath(String) - called when the renderer needs a filename or output - * path, such as with the PDF or DXF renderers. - *
  • setSize(int, int) - this is called last, at which point it's safe for - * the renderer to complete its initialization routine. - *
- * The functions were broken out because of the growing number of parameters - * such as these that might be used by a renderer, yet with the exception of - * setSize(), it's not clear which will be necessary. So while the size could - * be passed in to the constructor instead of a setSize() function, a function - * would still be needed that would notify the renderer that it was time to - * finish its initialization. Thus, setSize() simply does both. - * - *

Know your rights: public vs. private methods

- * Methods that are protected are often subclassed by other renderers, however - * they are not set 'public' because they shouldn't be part of the user-facing - * public API accessible from PApplet. That is, we don't want sketches calling - * textModeCheck() or vertexTexture() directly. - * - *

Handling warnings and exceptions

- * Methods that are unavailable generally show a warning, unless their lack of - * availability will soon cause another exception. For instance, if a method - * like getMatrix() returns null because it is unavailable, an exception will - * be thrown stating that the method is unavailable, rather than waiting for - * the NullPointerException that will occur when the sketch tries to use that - * method. As of release 0149, warnings will only be shown once, and exceptions - * have been changed to warnings where possible. - * - *

Using xxxxImpl() for subclassing smoothness

- * The xxxImpl() methods are generally renderer-specific handling for some - * subset if tasks for a particular function (vague enough for you?) For - * instance, imageImpl() handles drawing an image whose x/y/w/h and u/v coords - * have been specified, and screen placement (independent of imageMode) has - * been determined. There's no point in all renderers implementing the - * if (imageMode == BLAH) placement/sizing logic, so that's handled - * by PGraphics, which then calls imageImpl() once all that is figured out. - * - *

His brother PImage

- * PGraphics subclasses PImage so that it can be drawn and manipulated in a - * similar fashion. As such, many methods are inherited from PGraphics, - * though many are unavailable: for instance, resize() is not likely to be - * implemented; the same goes for mask(), depending on the situation. - * - *

What's in PGraphics, what ain't

- * For the benefit of subclasses, as much as possible has been placed inside - * PGraphics. For instance, bezier interpolation code and implementations of - * the strokeCap() method (that simply sets the strokeCap variable) are - * handled here. Features that will vary widely between renderers are located - * inside the subclasses themselves. For instance, all matrix handling code - * is per-renderer: Java 2D uses its own AffineTransform, P2D uses a PMatrix2D, - * and PGraphics3D needs to keep continually update forward and reverse - * transformations. A proper (future) OpenGL implementation will have all its - * matrix madness handled by the card. Lighting also falls under this - * category, however the base material property settings (emissive, specular, - * et al.) are handled in PGraphics because they use the standard colorMode() - * logic. Subclasses should override methods like emissiveFromCalc(), which - * is a point where a valid color has been defined internally, and can be - * applied in some manner based on the calcXxxx values. - * - *

What's in the PGraphics documentation, what ain't

- * Some things are noted here, some things are not. For public API, always - * refer to the reference - * on Processing.org for proper explanations. No attempt has been made to - * keep the javadoc up to date or complete. It's an enormous task for - * which we simply do not have the time. That is, it's not something that - * to be done once—it's a matter of keeping the multiple references - * synchronized (to say nothing of the translation issues), while targeting - * them for their separate audiences. Ouch. - */ -public class PGraphics extends PImage implements PConstants { - - // ........................................................ - - // width and height are already inherited from PImage - - - /// width minus one (useful for many calculations) - protected int width1; - - /// height minus one (useful for many calculations) - protected int height1; - - /// width * height (useful for many calculations) - public int pixelCount; - - /// true if smoothing is enabled (read-only) - public boolean smooth = false; - - // ........................................................ - - /// true if defaults() has been called a first time - protected boolean settingsInited; - - /// set to a PGraphics object being used inside a beginRaw/endRaw() block - protected PGraphics raw; - - // ........................................................ - - /** path to the file being saved for this renderer (if any) */ - protected String path; - - /** - * true if this is the main drawing surface for a particular sketch. - * This would be set to false for an offscreen buffer or if it were - * created any other way than size(). When this is set, the listeners - * are also added to the sketch. - */ - protected boolean primarySurface; - - // ........................................................ - - /** - * Array of hint[] items. These are hacks to get around various - * temporary workarounds inside the environment. - *

- * Note that this array cannot be static, as a hint() may result in a - * runtime change specific to a renderer. For instance, calling - * hint(DISABLE_DEPTH_TEST) has to call glDisable() right away on an - * instance of PGraphicsOpenGL. - *

- * The hints[] array is allocated early on because it might - * be used inside beginDraw(), allocate(), etc. - */ - protected boolean[] hints = new boolean[HINT_COUNT]; - - - //////////////////////////////////////////////////////////// - - // STYLE PROPERTIES - - // Also inherits imageMode() and smooth() (among others) from PImage. - - /** The current colorMode */ - public int colorMode; // = RGB; - - /** Max value for red (or hue) set by colorMode */ - public float colorModeX; // = 255; - - /** Max value for green (or saturation) set by colorMode */ - public float colorModeY; // = 255; - - /** Max value for blue (or value) set by colorMode */ - public float colorModeZ; // = 255; - - /** Max value for alpha set by colorMode */ - public float colorModeA; // = 255; - - /** True if colors are not in the range 0..1 */ - boolean colorModeScale; // = true; - - /** True if colorMode(RGB, 255) */ - boolean colorModeDefault; // = true; - - // ........................................................ - - // Tint color for images - - /** - * True if tint() is enabled (read-only). - * - * Using tint/tintColor seems a better option for naming than - * tintEnabled/tint because the latter seems ugly, even though - * g.tint as the actual color seems a little more intuitive, - * it's just that g.tintEnabled is even more unintuitive. - * Same goes for fill and stroke, et al. - */ - public boolean tint; - - /** tint that was last set (read-only) */ - public int tintColor; - - protected boolean tintAlpha; - protected float tintR, tintG, tintB, tintA; - protected int tintRi, tintGi, tintBi, tintAi; - - // ........................................................ - - // Fill color - - /** true if fill() is enabled, (read-only) */ - public boolean fill; - - /** fill that was last set (read-only) */ - public int fillColor = 0xffFFFFFF; - - protected boolean fillAlpha; - protected float fillR, fillG, fillB, fillA; - protected int fillRi, fillGi, fillBi, fillAi; - - // ........................................................ - - // Stroke color - - /** true if stroke() is enabled, (read-only) */ - public boolean stroke; - - /** stroke that was last set (read-only) */ - public int strokeColor = 0xff000000; - - protected boolean strokeAlpha; - protected float strokeR, strokeG, strokeB, strokeA; - protected int strokeRi, strokeGi, strokeBi, strokeAi; - - // ........................................................ - - // Additional stroke properties - - static protected final float DEFAULT_STROKE_WEIGHT = 1; - static protected final int DEFAULT_STROKE_JOIN = MITER; - static protected final int DEFAULT_STROKE_CAP = ROUND; - - /** - * Last value set by strokeWeight() (read-only). This has a default - * setting, rather than fighting with renderers about whether that - * renderer supports thick lines. - */ - public float strokeWeight = DEFAULT_STROKE_WEIGHT; - - /** - * Set by strokeJoin() (read-only). This has a default setting - * so that strokeJoin() need not be called by defaults, - * because subclasses may not implement it (i.e. PGraphicsGL) - */ - public int strokeJoin = DEFAULT_STROKE_JOIN; - - /** - * Set by strokeCap() (read-only). This has a default setting - * so that strokeCap() need not be called by defaults, - * because subclasses may not implement it (i.e. PGraphicsGL) - */ - public int strokeCap = DEFAULT_STROKE_CAP; - - // ........................................................ - - // Shape placement properties - - // imageMode() is inherited from PImage - - /** The current rect mode (read-only) */ - public int rectMode; - - /** The current ellipse mode (read-only) */ - public int ellipseMode; - - /** The current shape alignment mode (read-only) */ - public int shapeMode; - - /** The current image alignment (read-only) */ - public int imageMode = CORNER; - - // ........................................................ - - // Text and font properties - - /** The current text font (read-only) */ - public PFont textFont; - - /** The current text align (read-only) */ - public int textAlign = LEFT; - - /** The current vertical text alignment (read-only) */ - public int textAlignY = BASELINE; - - /** The current text mode (read-only) */ - public int textMode = MODEL; - - /** The current text size (read-only) */ - public float textSize; - - /** The current text leading (read-only) */ - public float textLeading; - - // ........................................................ - - // Material properties - -// PMaterial material; -// PMaterial[] materialStack; -// int materialStackPointer; - - public float ambientR, ambientG, ambientB; - public float specularR, specularG, specularB; - public float emissiveR, emissiveG, emissiveB; - public float shininess; - - - // Style stack - - static final int STYLE_STACK_DEPTH = 64; - PStyle[] styleStack = new PStyle[STYLE_STACK_DEPTH]; - int styleStackDepth; - - - //////////////////////////////////////////////////////////// - - - /** Last background color that was set, zero if an image */ - public int backgroundColor = 0xffCCCCCC; - - protected boolean backgroundAlpha; - protected float backgroundR, backgroundG, backgroundB, backgroundA; - protected int backgroundRi, backgroundGi, backgroundBi, backgroundAi; - - // ........................................................ - - /** - * Current model-view matrix transformation of the form m[row][column], - * which is a "column vector" (as opposed to "row vector") matrix. - */ -// PMatrix matrix; -// public float m00, m01, m02, m03; -// public float m10, m11, m12, m13; -// public float m20, m21, m22, m23; -// public float m30, m31, m32, m33; - -// static final int MATRIX_STACK_DEPTH = 32; -// float[][] matrixStack = new float[MATRIX_STACK_DEPTH][16]; -// float[][] matrixInvStack = new float[MATRIX_STACK_DEPTH][16]; -// int matrixStackDepth; - - static final int MATRIX_STACK_DEPTH = 32; - - // ........................................................ - - /** - * Java AWT Image object associated with this renderer. For P2D and P3D, - * this will be associated with their MemoryImageSource. For PGraphicsJava2D, - * it will be the offscreen drawing buffer. - */ - public Image image; - - // ........................................................ - - // internal color for setting/calculating - protected float calcR, calcG, calcB, calcA; - protected int calcRi, calcGi, calcBi, calcAi; - protected int calcColor; - protected boolean calcAlpha; - - /** The last RGB value converted to HSB */ - int cacheHsbKey; - /** Result of the last conversion to HSB */ - float[] cacheHsbValue = new float[3]; - - // ........................................................ - - /** - * Type of shape passed to beginShape(), - * zero if no shape is currently being drawn. - */ - protected int shape; - - // vertices - static final int DEFAULT_VERTICES = 512; - protected float vertices[][] = - new float[DEFAULT_VERTICES][VERTEX_FIELD_COUNT]; - protected int vertexCount; // total number of vertices - - // ........................................................ - - protected boolean bezierInited = false; - public int bezierDetail = 20; - - // used by both curve and bezier, so just init here - protected PMatrix3D bezierBasisMatrix = - new PMatrix3D(-1, 3, -3, 1, - 3, -6, 3, 0, - -3, 3, 0, 0, - 1, 0, 0, 0); - - //protected PMatrix3D bezierForwardMatrix; - protected PMatrix3D bezierDrawMatrix; - - // ........................................................ - - protected boolean curveInited = false; - protected int curveDetail = 20; - public float curveTightness = 0; - // catmull-rom basis matrix, perhaps with optional s parameter - protected PMatrix3D curveBasisMatrix; - protected PMatrix3D curveDrawMatrix; - - protected PMatrix3D bezierBasisInverse; - protected PMatrix3D curveToBezierMatrix; - - // ........................................................ - - // spline vertices - - protected float curveVertices[][]; - protected int curveVertexCount; - - // ........................................................ - - // precalculate sin/cos lookup tables [toxi] - // circle resolution is determined from the actual used radii - // passed to ellipse() method. this will automatically take any - // scale transformations into account too - - // [toxi 031031] - // changed table's precision to 0.5 degree steps - // introduced new vars for more flexible code - static final protected float sinLUT[]; - static final protected float cosLUT[]; - static final protected float SINCOS_PRECISION = 0.5f; - static final protected int SINCOS_LENGTH = (int) (360f / SINCOS_PRECISION); - static { - sinLUT = new float[SINCOS_LENGTH]; - cosLUT = new float[SINCOS_LENGTH]; - for (int i = 0; i < SINCOS_LENGTH; i++) { - sinLUT[i] = (float) Math.sin(i * DEG_TO_RAD * SINCOS_PRECISION); - cosLUT[i] = (float) Math.cos(i * DEG_TO_RAD * SINCOS_PRECISION); - } - } - - // ........................................................ - - /** The current font if a Java version of it is installed */ - //protected Font textFontNative; - - /** Metrics for the current native Java font */ - //protected FontMetrics textFontNativeMetrics; - - /** Last text position, because text often mixed on lines together */ - protected float textX, textY, textZ; - - /** - * Internal buffer used by the text() functions - * because the String object is slow - */ - protected char[] textBuffer = new char[8 * 1024]; - protected char[] textWidthBuffer = new char[8 * 1024]; - - protected int textBreakCount; - protected int[] textBreakStart; - protected int[] textBreakStop; - - // ........................................................ - - public boolean edge = true; - - // ........................................................ - - /// normal calculated per triangle - static protected final int NORMAL_MODE_AUTO = 0; - /// one normal manually specified per shape - static protected final int NORMAL_MODE_SHAPE = 1; - /// normals specified for each shape vertex - static protected final int NORMAL_MODE_VERTEX = 2; - - /// Current mode for normals, one of AUTO, SHAPE, or VERTEX - protected int normalMode; - - /// Keep track of how many calls to normal, to determine the mode. - //protected int normalCount; - - /** Current normal vector. */ - public float normalX, normalY, normalZ; - - // ........................................................ - - /** - * Sets whether texture coordinates passed to - * vertex() calls will be based on coordinates that are - * based on the IMAGE or NORMALIZED. - */ - public int textureMode; - - /** - * Current horizontal coordinate for texture, will always - * be between 0 and 1, even if using textureMode(IMAGE). - */ - public float textureU; - - /** Current vertical coordinate for texture, see above. */ - public float textureV; - - /** Current image being used as a texture */ - public PImage textureImage; - - // ........................................................ - - // [toxi031031] new & faster sphere code w/ support flexibile resolutions - // will be set by sphereDetail() or 1st call to sphere() - float sphereX[], sphereY[], sphereZ[]; - - /// Number of U steps (aka "theta") around longitudinally spanning 2*pi - public int sphereDetailU = 0; - /// Number of V steps (aka "phi") along latitudinally top-to-bottom spanning pi - public int sphereDetailV = 0; - - - ////////////////////////////////////////////////////////////// - - // INTERNAL - - - /** - * Constructor for the PGraphics object. Use this to ensure that - * the defaults get set properly. In a subclass, use this(w, h) - * as the first line of a subclass' constructor to properly set - * the internal fields and defaults. - */ - public PGraphics() { - } - - - public void setParent(PApplet parent) { // ignore - this.parent = parent; - } - - - /** - * Set (or unset) this as the main drawing surface. Meaning that it can - * safely be set to opaque (and given a default gray background), or anything - * else that goes along with that. - */ - public void setPrimary(boolean primary) { // ignore - this.primarySurface = primary; - - // base images must be opaque (for performance and general - // headache reasons.. argh, a semi-transparent opengl surface?) - // use createGraphics() if you want a transparent surface. - if (primarySurface) { - format = RGB; - } - } - - - public void setPath(String path) { // ignore - this.path = path; - } - - - /** - * The final step in setting up a renderer, set its size of this renderer. - * This was formerly handled by the constructor, but instead it's been broken - * out so that setParent/setPrimary/setPath can be handled differently. - * - * Important that this is ignored by preproc.pl because otherwise it will - * override setSize() in PApplet/Applet/Component, which will 1) not call - * super.setSize(), and 2) will cause the renderer to be resized from the - * event thread (EDT), causing a nasty crash as it collides with the - * animation thread. - */ - public void setSize(int w, int h) { // ignore - width = w; - height = h; - width1 = width - 1; - height1 = height - 1; - - allocate(); - reapplySettings(); - } - - - /** - * Allocate memory for this renderer. Generally will need to be implemented - * for all renderers. - */ - protected void allocate() { } - - - /** - * Handle any takedown for this graphics context. - *

- * This is called when a sketch is shut down and this renderer was - * specified using the size() command, or inside endRecord() and - * endRaw(), in order to shut things off. - */ - public void dispose() { // ignore - } - - - - ////////////////////////////////////////////////////////////// - - // FRAME - - - /** - * Some renderers have requirements re: when they are ready to draw. - */ - public boolean canDraw() { // ignore - return true; - } - - - /** - * Prepares the PGraphics for drawing. - *

- * When creating your own PGraphics, you should call this before - * drawing anything. - */ - public void beginDraw() { // ignore - } - - - /** - * This will finalize rendering so that it can be shown on-screen. - *

- * When creating your own PGraphics, you should call this when - * you're finished drawing. - */ - public void endDraw() { // ignore - } - - - public void flush() { - // no-op, mostly for P3D to write sorted stuff - } - - - protected void checkSettings() { - if (!settingsInited) defaultSettings(); - } - - - /** - * Set engine's default values. This has to be called by PApplet, - * somewhere inside setup() or draw() because it talks to the - * graphics buffer, meaning that for subclasses like OpenGL, there - * needs to be a valid graphics context to mess with otherwise - * you'll get some good crashing action. - * - * This is currently called by checkSettings(), during beginDraw(). - */ - protected void defaultSettings() { // ignore -// System.out.println("PGraphics.defaultSettings() " + width + " " + height); - - noSmooth(); // 0149 - - colorMode(RGB, 255); - fill(255); - stroke(0); - // other stroke attributes are set in the initializers - // inside the class (see above, strokeWeight = 1 et al) - - // init shape stuff - shape = 0; - - // init matrices (must do before lights) - //matrixStackDepth = 0; - - rectMode(CORNER); - ellipseMode(DIAMETER); - - // no current font - textFont = null; - textSize = 12; - textLeading = 14; - textAlign = LEFT; - textMode = MODEL; - - // if this fella is associated with an applet, then clear its background. - // if it's been created by someone else through createGraphics, - // they have to call background() themselves, otherwise everything gets - // a gray background (when just a transparent surface or an empty pdf - // is what's desired). - // this background() call is for the Java 2D and OpenGL renderers. - if (primarySurface) { - //System.out.println("main drawing surface bg " + getClass().getName()); - background(backgroundColor); - } - - settingsInited = true; - // defaultSettings() overlaps reapplySettings(), don't do both - //reapplySettings = false; - } - - - /** - * Re-apply current settings. Some methods, such as textFont(), require that - * their methods be called (rather than simply setting the textFont variable) - * because they affect the graphics context, or they require parameters from - * the context (e.g. getting native fonts for text). - * - * This will only be called from an allocate(), which is only called from - * size(), which is safely called from inside beginDraw(). And it cannot be - * called before defaultSettings(), so we should be safe. - */ - protected void reapplySettings() { -// System.out.println("attempting reapplySettings()"); - if (!settingsInited) return; // if this is the initial setup, no need to reapply - -// System.out.println(" doing reapplySettings"); -// new Exception().printStackTrace(System.out); - - colorMode(colorMode, colorModeX, colorModeY, colorModeZ); - if (fill) { -// PApplet.println(" fill " + PApplet.hex(fillColor)); - fill(fillColor); - } else { - noFill(); - } - if (stroke) { - stroke(strokeColor); - - // The if() statements should be handled inside the functions, - // otherwise an actual reset/revert won't work properly. - //if (strokeWeight != DEFAULT_STROKE_WEIGHT) { - strokeWeight(strokeWeight); - //} -// if (strokeCap != DEFAULT_STROKE_CAP) { - strokeCap(strokeCap); -// } -// if (strokeJoin != DEFAULT_STROKE_JOIN) { - strokeJoin(strokeJoin); -// } - } else { - noStroke(); - } - if (tint) { - tint(tintColor); - } else { - noTint(); - } - if (smooth) { - smooth(); - } else { - // Don't bother setting this, cuz it'll anger P3D. - noSmooth(); - } - if (textFont != null) { -// System.out.println(" textFont in reapply is " + textFont); - // textFont() resets the leading, so save it in case it's changed - float saveLeading = textLeading; - textFont(textFont, textSize); - textLeading(saveLeading); - } - textMode(textMode); - textAlign(textAlign, textAlignY); - background(backgroundColor); - - //reapplySettings = false; - } - - - ////////////////////////////////////////////////////////////// - - // HINTS - - /** - * Enable a hint option. - *

- * For the most part, hints are temporary api quirks, - * for which a proper api hasn't been properly worked out. - * for instance SMOOTH_IMAGES existed because smooth() - * wasn't yet implemented, but it will soon go away. - *

- * They also exist for obscure features in the graphics - * engine, like enabling/disabling single pixel lines - * that ignore the zbuffer, the way they do in alphabot. - *

- * Current hint options: - *

    - *
  • DISABLE_DEPTH_TEST - - * turns off the z-buffer in the P3D or OPENGL renderers. - *
- */ - public void hint(int which) { - if (which > 0) { - hints[which] = true; - } else { - hints[-which] = false; - } - } - - - - ////////////////////////////////////////////////////////////// - - // VERTEX SHAPES - - /** - * Start a new shape of type POLYGON - */ - public void beginShape() { - beginShape(POLYGON); - } - - - /** - * Start a new shape. - *

- * Differences between beginShape() and line() and point() methods. - *

- * beginShape() is intended to be more flexible at the expense of being - * a little more complicated to use. it handles more complicated shapes - * that can consist of many connected lines (so you get joins) or lines - * mixed with curves. - *

- * The line() and point() command are for the far more common cases - * (particularly for our audience) that simply need to draw a line - * or a point on the screen. - *

- * From the code side of things, line() may or may not call beginShape() - * to do the drawing. In the beta code, they do, but in the alpha code, - * they did not. they might be implemented one way or the other depending - * on tradeoffs of runtime efficiency vs. implementation efficiency &mdash - * meaning the speed that things run at vs. the speed it takes me to write - * the code and maintain it. for beta, the latter is most important so - * that's how things are implemented. - */ - public void beginShape(int kind) { - shape = kind; - } - - - /** - * Sets whether the upcoming vertex is part of an edge. - * Equivalent to glEdgeFlag(), for people familiar with OpenGL. - */ - public void edge(boolean edge) { - this.edge = edge; - } - - - /** - * Sets the current normal vector. Only applies with 3D rendering - * and inside a beginShape/endShape block. - *

- * This is for drawing three dimensional shapes and surfaces, - * allowing you to specify a vector perpendicular to the surface - * of the shape, which determines how lighting affects it. - *

- * For the most part, PGraphics3D will attempt to automatically - * assign normals to shapes, but since that's imperfect, - * this is a better option when you want more control. - *

- * For people familiar with OpenGL, this function is basically - * identical to glNormal3f(). - */ - public void normal(float nx, float ny, float nz) { - normalX = nx; - normalY = ny; - normalZ = nz; - - // if drawing a shape and the normal hasn't been set yet, - // then we need to set the normals for each vertex so far - if (shape != 0) { - if (normalMode == NORMAL_MODE_AUTO) { - // either they set the normals, or they don't [0149] -// for (int i = vertex_start; i < vertexCount; i++) { -// vertices[i][NX] = normalX; -// vertices[i][NY] = normalY; -// vertices[i][NZ] = normalZ; -// } - // One normal per begin/end shape - normalMode = NORMAL_MODE_SHAPE; - - } else if (normalMode == NORMAL_MODE_SHAPE) { - // a separate normal for each vertex - normalMode = NORMAL_MODE_VERTEX; - } - } - } - - - /** - * Set texture mode to either to use coordinates based on the IMAGE - * (more intuitive for new users) or NORMALIZED (better for advanced chaps) - */ - public void textureMode(int mode) { - this.textureMode = mode; - } - - - /** - * Set texture image for current shape. - * Needs to be called between @see beginShape and @see endShape - * - * @param image reference to a PImage object - */ - public void texture(PImage image) { - textureImage = image; - } - - - protected void vertexCheck() { - if (vertexCount == vertices.length) { - float temp[][] = new float[vertexCount << 1][VERTEX_FIELD_COUNT]; - System.arraycopy(vertices, 0, temp, 0, vertexCount); - vertices = temp; - } - } - - - public void vertex(float x, float y) { - vertexCheck(); - float[] vertex = vertices[vertexCount]; - - curveVertexCount = 0; - - vertex[X] = x; - vertex[Y] = y; - - vertex[EDGE] = edge ? 1 : 0; - -// if (fill) { -// vertex[R] = fillR; -// vertex[G] = fillG; -// vertex[B] = fillB; -// vertex[A] = fillA; -// } - if (fill || textureImage != null) { - if (textureImage == null) { - vertex[R] = fillR; - vertex[G] = fillG; - vertex[B] = fillB; - vertex[A] = fillA; - } else { - if (tint) { - vertex[R] = tintR; - vertex[G] = tintG; - vertex[B] = tintB; - vertex[A] = tintA; - } else { - vertex[R] = 1; - vertex[G] = 1; - vertex[B] = 1; - vertex[A] = 1; - } - } - } - - if (stroke) { - vertex[SR] = strokeR; - vertex[SG] = strokeG; - vertex[SB] = strokeB; - vertex[SA] = strokeA; - vertex[SW] = strokeWeight; - } - - if (textureImage != null) { - vertex[U] = textureU; - vertex[V] = textureV; - } - - vertexCount++; - } - - - public void vertex(float x, float y, float z) { - vertexCheck(); - float[] vertex = vertices[vertexCount]; - - // only do this if we're using an irregular (POLYGON) shape that - // will go through the triangulator. otherwise it'll do thinks like - // disappear in mathematically odd ways - // http://dev.processing.org/bugs/show_bug.cgi?id=444 - if (shape == POLYGON) { - if (vertexCount > 0) { - float pvertex[] = vertices[vertexCount-1]; - if ((Math.abs(pvertex[X] - x) < EPSILON) && - (Math.abs(pvertex[Y] - y) < EPSILON) && - (Math.abs(pvertex[Z] - z) < EPSILON)) { - // this vertex is identical, don't add it, - // because it will anger the triangulator - return; - } - } - } - - // User called vertex(), so that invalidates anything queued up for curve - // vertices. If this is internally called by curveVertexSegment, - // then curveVertexCount will be saved and restored. - curveVertexCount = 0; - - vertex[X] = x; - vertex[Y] = y; - vertex[Z] = z; - - vertex[EDGE] = edge ? 1 : 0; - - if (fill || textureImage != null) { - if (textureImage == null) { - vertex[R] = fillR; - vertex[G] = fillG; - vertex[B] = fillB; - vertex[A] = fillA; - } else { - if (tint) { - vertex[R] = tintR; - vertex[G] = tintG; - vertex[B] = tintB; - vertex[A] = tintA; - } else { - vertex[R] = 1; - vertex[G] = 1; - vertex[B] = 1; - vertex[A] = 1; - } - } - - vertex[AR] = ambientR; - vertex[AG] = ambientG; - vertex[AB] = ambientB; - - vertex[SPR] = specularR; - vertex[SPG] = specularG; - vertex[SPB] = specularB; - //vertex[SPA] = specularA; - - vertex[SHINE] = shininess; - - vertex[ER] = emissiveR; - vertex[EG] = emissiveG; - vertex[EB] = emissiveB; - } - - if (stroke) { - vertex[SR] = strokeR; - vertex[SG] = strokeG; - vertex[SB] = strokeB; - vertex[SA] = strokeA; - vertex[SW] = strokeWeight; - } - - if (textureImage != null) { - vertex[U] = textureU; - vertex[V] = textureV; - } - - vertex[NX] = normalX; - vertex[NY] = normalY; - vertex[NZ] = normalZ; - - vertex[BEEN_LIT] = 0; - - vertexCount++; - } - - - /** - * Used by renderer subclasses or PShape to efficiently pass in already - * formatted vertex information. - * @param v vertex parameters, as a float array of length VERTEX_FIELD_COUNT - */ - public void vertex(float[] v) { - vertexCheck(); - curveVertexCount = 0; - float[] vertex = vertices[vertexCount]; - System.arraycopy(v, 0, vertex, 0, VERTEX_FIELD_COUNT); - vertexCount++; - } - - - public void vertex(float x, float y, float u, float v) { - vertexTexture(u, v); - vertex(x, y); - } - - - public void vertex(float x, float y, float z, float u, float v) { - vertexTexture(u, v); - vertex(x, y, z); - } - - - /** - * Internal method to copy all style information for the given vertex. - * Can be overridden by subclasses to handle only properties pertinent to - * that renderer. (e.g. no need to copy the emissive color in P2D) - */ -// protected void vertexStyle() { -// } - - - /** - * Set (U, V) coords for the next vertex in the current shape. - * This is ugly as its own function, and will (almost?) always be - * coincident with a call to vertex. As of beta, this was moved to - * the protected method you see here, and called from an optional - * param of and overloaded vertex(). - *

- * The parameters depend on the current textureMode. When using - * textureMode(IMAGE), the coordinates will be relative to the size - * of the image texture, when used with textureMode(NORMAL), - * they'll be in the range 0..1. - *

- * Used by both PGraphics2D (for images) and PGraphics3D. - */ - protected void vertexTexture(float u, float v) { - if (textureImage == null) { - throw new RuntimeException("You must first call texture() before " + - "using u and v coordinates with vertex()"); - } - if (textureMode == IMAGE) { - u /= (float) textureImage.width; - v /= (float) textureImage.height; - } - - textureU = u; - textureV = v; - - if (textureU < 0) textureU = 0; - else if (textureU > 1) textureU = 1; - - if (textureV < 0) textureV = 0; - else if (textureV > 1) textureV = 1; - } - - - /** This feature is in testing, do not use or rely upon its implementation */ - public void breakShape() { - showWarning("This renderer cannot currently handle concave shapes, " + - "or shapes with holes."); - } - - - public void endShape() { - endShape(OPEN); - } - - - public void endShape(int mode) { - } - - - - ////////////////////////////////////////////////////////////// - - // CURVE/BEZIER VERTEX HANDLING - - - protected void bezierVertexCheck() { - if (shape == 0 || shape != POLYGON) { - throw new RuntimeException("beginShape() or beginShape(POLYGON) " + - "must be used before bezierVertex()"); - } - if (vertexCount == 0) { - throw new RuntimeException("vertex() must be used at least once" + - "before bezierVertex()"); - } - } - - - public void bezierVertex(float x2, float y2, - float x3, float y3, - float x4, float y4) { - bezierInitCheck(); - bezierVertexCheck(); - PMatrix3D draw = bezierDrawMatrix; - - float[] prev = vertices[vertexCount-1]; - float x1 = prev[X]; - float y1 = prev[Y]; - - float xplot1 = draw.m10*x1 + draw.m11*x2 + draw.m12*x3 + draw.m13*x4; - float xplot2 = draw.m20*x1 + draw.m21*x2 + draw.m22*x3 + draw.m23*x4; - float xplot3 = draw.m30*x1 + draw.m31*x2 + draw.m32*x3 + draw.m33*x4; - - float yplot1 = draw.m10*y1 + draw.m11*y2 + draw.m12*y3 + draw.m13*y4; - float yplot2 = draw.m20*y1 + draw.m21*y2 + draw.m22*y3 + draw.m23*y4; - float yplot3 = draw.m30*y1 + draw.m31*y2 + draw.m32*y3 + draw.m33*y4; - - for (int j = 0; j < bezierDetail; j++) { - x1 += xplot1; xplot1 += xplot2; xplot2 += xplot3; - y1 += yplot1; yplot1 += yplot2; yplot2 += yplot3; - vertex(x1, y1); - } - } - - - public void bezierVertex(float x2, float y2, float z2, - float x3, float y3, float z3, - float x4, float y4, float z4) { - bezierInitCheck(); - bezierVertexCheck(); - PMatrix3D draw = bezierDrawMatrix; - - float[] prev = vertices[vertexCount-1]; - float x1 = prev[X]; - float y1 = prev[Y]; - float z1 = prev[Z]; - - float xplot1 = draw.m10*x1 + draw.m11*x2 + draw.m12*x3 + draw.m13*x4; - float xplot2 = draw.m20*x1 + draw.m21*x2 + draw.m22*x3 + draw.m23*x4; - float xplot3 = draw.m30*x1 + draw.m31*x2 + draw.m32*x3 + draw.m33*x4; - - float yplot1 = draw.m10*y1 + draw.m11*y2 + draw.m12*y3 + draw.m13*y4; - float yplot2 = draw.m20*y1 + draw.m21*y2 + draw.m22*y3 + draw.m23*y4; - float yplot3 = draw.m30*y1 + draw.m31*y2 + draw.m32*y3 + draw.m33*y4; - - float zplot1 = draw.m10*z1 + draw.m11*z2 + draw.m12*z3 + draw.m13*z4; - float zplot2 = draw.m20*z1 + draw.m21*z2 + draw.m22*z3 + draw.m23*z4; - float zplot3 = draw.m30*z1 + draw.m31*z2 + draw.m32*z3 + draw.m33*z4; - - for (int j = 0; j < bezierDetail; j++) { - x1 += xplot1; xplot1 += xplot2; xplot2 += xplot3; - y1 += yplot1; yplot1 += yplot2; yplot2 += yplot3; - z1 += zplot1; zplot1 += zplot2; zplot2 += zplot3; - vertex(x1, y1, z1); - } - } - - - /** - * Perform initialization specific to curveVertex(), and handle standard - * error modes. Can be overridden by subclasses that need the flexibility. - */ - protected void curveVertexCheck() { - if (shape != POLYGON) { - throw new RuntimeException("You must use beginShape() or " + - "beginShape(POLYGON) before curveVertex()"); - } - // to improve code init time, allocate on first use. - if (curveVertices == null) { - curveVertices = new float[128][3]; - } - - if (curveVertexCount == curveVertices.length) { - // Can't use PApplet.expand() cuz it doesn't do the copy properly - float[][] temp = new float[curveVertexCount << 1][3]; - System.arraycopy(curveVertices, 0, temp, 0, curveVertexCount); - curveVertices = temp; - } - curveInitCheck(); - } - - - public void curveVertex(float x, float y) { - curveVertexCheck(); - float[] vertex = curveVertices[curveVertexCount]; - vertex[X] = x; - vertex[Y] = y; - curveVertexCount++; - - // draw a segment if there are enough points - if (curveVertexCount > 3) { - curveVertexSegment(curveVertices[curveVertexCount-4][X], - curveVertices[curveVertexCount-4][Y], - curveVertices[curveVertexCount-3][X], - curveVertices[curveVertexCount-3][Y], - curveVertices[curveVertexCount-2][X], - curveVertices[curveVertexCount-2][Y], - curveVertices[curveVertexCount-1][X], - curveVertices[curveVertexCount-1][Y]); - } - } - - - public void curveVertex(float x, float y, float z) { - curveVertexCheck(); - float[] vertex = curveVertices[curveVertexCount]; - vertex[X] = x; - vertex[Y] = y; - vertex[Z] = z; - curveVertexCount++; - - // draw a segment if there are enough points - if (curveVertexCount > 3) { - curveVertexSegment(curveVertices[curveVertexCount-4][X], - curveVertices[curveVertexCount-4][Y], - curveVertices[curveVertexCount-4][Z], - curveVertices[curveVertexCount-3][X], - curveVertices[curveVertexCount-3][Y], - curveVertices[curveVertexCount-3][Z], - curveVertices[curveVertexCount-2][X], - curveVertices[curveVertexCount-2][Y], - curveVertices[curveVertexCount-2][Z], - curveVertices[curveVertexCount-1][X], - curveVertices[curveVertexCount-1][Y], - curveVertices[curveVertexCount-1][Z]); - } - } - - - /** - * Handle emitting a specific segment of Catmull-Rom curve. This can be - * overridden by subclasses that need more efficient rendering options. - */ - protected void curveVertexSegment(float x1, float y1, - float x2, float y2, - float x3, float y3, - float x4, float y4) { - float x0 = x2; - float y0 = y2; - - PMatrix3D draw = curveDrawMatrix; - - float xplot1 = draw.m10*x1 + draw.m11*x2 + draw.m12*x3 + draw.m13*x4; - float xplot2 = draw.m20*x1 + draw.m21*x2 + draw.m22*x3 + draw.m23*x4; - float xplot3 = draw.m30*x1 + draw.m31*x2 + draw.m32*x3 + draw.m33*x4; - - float yplot1 = draw.m10*y1 + draw.m11*y2 + draw.m12*y3 + draw.m13*y4; - float yplot2 = draw.m20*y1 + draw.m21*y2 + draw.m22*y3 + draw.m23*y4; - float yplot3 = draw.m30*y1 + draw.m31*y2 + draw.m32*y3 + draw.m33*y4; - - // vertex() will reset splineVertexCount, so save it - int savedCount = curveVertexCount; - - vertex(x0, y0); - for (int j = 0; j < curveDetail; j++) { - x0 += xplot1; xplot1 += xplot2; xplot2 += xplot3; - y0 += yplot1; yplot1 += yplot2; yplot2 += yplot3; - vertex(x0, y0); - } - curveVertexCount = savedCount; - } - - - /** - * Handle emitting a specific segment of Catmull-Rom curve. This can be - * overridden by subclasses that need more efficient rendering options. - */ - protected void curveVertexSegment(float x1, float y1, float z1, - float x2, float y2, float z2, - float x3, float y3, float z3, - float x4, float y4, float z4) { - float x0 = x2; - float y0 = y2; - float z0 = z2; - - PMatrix3D draw = curveDrawMatrix; - - float xplot1 = draw.m10*x1 + draw.m11*x2 + draw.m12*x3 + draw.m13*x4; - float xplot2 = draw.m20*x1 + draw.m21*x2 + draw.m22*x3 + draw.m23*x4; - float xplot3 = draw.m30*x1 + draw.m31*x2 + draw.m32*x3 + draw.m33*x4; - - float yplot1 = draw.m10*y1 + draw.m11*y2 + draw.m12*y3 + draw.m13*y4; - float yplot2 = draw.m20*y1 + draw.m21*y2 + draw.m22*y3 + draw.m23*y4; - float yplot3 = draw.m30*y1 + draw.m31*y2 + draw.m32*y3 + draw.m33*y4; - - // vertex() will reset splineVertexCount, so save it - int savedCount = curveVertexCount; - - float zplot1 = draw.m10*z1 + draw.m11*z2 + draw.m12*z3 + draw.m13*z4; - float zplot2 = draw.m20*z1 + draw.m21*z2 + draw.m22*z3 + draw.m23*z4; - float zplot3 = draw.m30*z1 + draw.m31*z2 + draw.m32*z3 + draw.m33*z4; - - vertex(x0, y0, z0); - for (int j = 0; j < curveDetail; j++) { - x0 += xplot1; xplot1 += xplot2; xplot2 += xplot3; - y0 += yplot1; yplot1 += yplot2; yplot2 += yplot3; - z0 += zplot1; zplot1 += zplot2; zplot2 += zplot3; - vertex(x0, y0, z0); - } - curveVertexCount = savedCount; - } - - - - ////////////////////////////////////////////////////////////// - - // SIMPLE SHAPES WITH ANALOGUES IN beginShape() - - - public void point(float x, float y) { - beginShape(POINTS); - vertex(x, y); - endShape(); - } - - - public void point(float x, float y, float z) { - beginShape(POINTS); - vertex(x, y, z); - endShape(); - } - - - public void line(float x1, float y1, float x2, float y2) { - beginShape(LINES); - vertex(x1, y1); - vertex(x2, y2); - endShape(); - } - - - public void line(float x1, float y1, float z1, - float x2, float y2, float z2) { - beginShape(LINES); - vertex(x1, y1, z1); - vertex(x2, y2, z2); - endShape(); - } - - - public void triangle(float x1, float y1, float x2, float y2, - float x3, float y3) { - beginShape(TRIANGLES); - vertex(x1, y1); - vertex(x2, y2); - vertex(x3, y3); - endShape(); - } - - - public void quad(float x1, float y1, float x2, float y2, - float x3, float y3, float x4, float y4) { - beginShape(QUADS); - vertex(x1, y1); - vertex(x2, y2); - vertex(x3, y3); - vertex(x4, y4); - endShape(); - } - - - - ////////////////////////////////////////////////////////////// - - // RECT - - - public void rectMode(int mode) { - rectMode = mode; - } - - - public void rect(float a, float b, float c, float d) { - float hradius, vradius; - switch (rectMode) { - case CORNERS: - break; - case CORNER: - c += a; d += b; - break; - case RADIUS: - hradius = c; - vradius = d; - c = a + hradius; - d = b + vradius; - a -= hradius; - b -= vradius; - break; - case CENTER: - hradius = c / 2.0f; - vradius = d / 2.0f; - c = a + hradius; - d = b + vradius; - a -= hradius; - b -= vradius; - } - - if (a > c) { - float temp = a; a = c; c = temp; - } - - if (b > d) { - float temp = b; b = d; d = temp; - } - - rectImpl(a, b, c, d); - } - - - protected void rectImpl(float x1, float y1, float x2, float y2) { - quad(x1, y1, x2, y1, x2, y2, x1, y2); - } - - - - ////////////////////////////////////////////////////////////// - - // ELLIPSE AND ARC - - - public void ellipseMode(int mode) { - ellipseMode = mode; - } - - - public void ellipse(float a, float b, float c, float d) { - float x = a; - float y = b; - float w = c; - float h = d; - - if (ellipseMode == CORNERS) { - w = c - a; - h = d - b; - - } else if (ellipseMode == RADIUS) { - x = a - c; - y = b - d; - w = c * 2; - h = d * 2; - - } else if (ellipseMode == DIAMETER) { - x = a - c/2f; - y = b - d/2f; - } - - if (w < 0) { // undo negative width - x += w; - w = -w; - } - - if (h < 0) { // undo negative height - y += h; - h = -h; - } - - ellipseImpl(x, y, w, h); - } - - - protected void ellipseImpl(float x, float y, float w, float h) { - } - - - /** - * Identical parameters and placement to ellipse, - * but draws only an arc of that ellipse. - *

- * start and stop are always radians because angleMode() was goofy. - * ellipseMode() sets the placement. - *

- * also tries to be smart about start < stop. - */ - public void arc(float a, float b, float c, float d, - float start, float stop) { - float x = a; - float y = b; - float w = c; - float h = d; - - if (ellipseMode == CORNERS) { - w = c - a; - h = d - b; - - } else if (ellipseMode == RADIUS) { - x = a - c; - y = b - d; - w = c * 2; - h = d * 2; - - } else if (ellipseMode == CENTER) { - x = a - c/2f; - y = b - d/2f; - } - - // make sure this loop will exit before starting while - if (Float.isInfinite(start) || Float.isInfinite(stop)) return; -// while (stop < start) stop += TWO_PI; - if (stop < start) return; // why bother - - // make sure that we're starting at a useful point - while (start < 0) { - start += TWO_PI; - stop += TWO_PI; - } - - if (stop - start > TWO_PI) { - start = 0; - stop = TWO_PI; - } - - arcImpl(x, y, w, h, start, stop); - } - - - /** - * Start and stop are in radians, converted by the parent function. - * Note that the radians can be greater (or less) than TWO_PI. - * This is so that an arc can be drawn that crosses zero mark, - * and the user will still collect $200. - */ - protected void arcImpl(float x, float y, float w, float h, - float start, float stop) { - } - - - - ////////////////////////////////////////////////////////////// - - // BOX - - - public void box(float size) { - box(size, size, size); - } - - - // TODO not the least bit efficient, it even redraws lines - // along the vertices. ugly ugly ugly! - public void box(float w, float h, float d) { - float x1 = -w/2f; float x2 = w/2f; - float y1 = -h/2f; float y2 = h/2f; - float z1 = -d/2f; float z2 = d/2f; - - beginShape(QUADS); - - // front - normal(0, 0, 1); - vertex(x1, y1, z1); - vertex(x2, y1, z1); - vertex(x2, y2, z1); - vertex(x1, y2, z1); - - // right - normal(1, 0, 0); - vertex(x2, y1, z1); - vertex(x2, y1, z2); - vertex(x2, y2, z2); - vertex(x2, y2, z1); - - // back - normal(0, 0, -1); - vertex(x2, y1, z2); - vertex(x1, y1, z2); - vertex(x1, y2, z2); - vertex(x2, y2, z2); - - // left - normal(-1, 0, 0); - vertex(x1, y1, z2); - vertex(x1, y1, z1); - vertex(x1, y2, z1); - vertex(x1, y2, z2); - - // top - normal(0, 1, 0); - vertex(x1, y1, z2); - vertex(x2, y1, z2); - vertex(x2, y1, z1); - vertex(x1, y1, z1); - - // bottom - normal(0, -1, 0); - vertex(x1, y2, z1); - vertex(x2, y2, z1); - vertex(x2, y2, z2); - vertex(x1, y2, z2); - - endShape(); - } - - - - ////////////////////////////////////////////////////////////// - - // SPHERE - - - public void sphereDetail(int res) { - sphereDetail(res, res); - } - - - /** - * Set the detail level for approximating a sphere. The ures and vres params - * control the horizontal and vertical resolution. - * - * Code for sphereDetail() submitted by toxi [031031]. - * Code for enhanced u/v version from davbol [080801]. - */ - public void sphereDetail(int ures, int vres) { - if (ures < 3) ures = 3; // force a minimum res - if (vres < 2) vres = 2; // force a minimum res - if ((ures == sphereDetailU) && (vres == sphereDetailV)) return; - - float delta = (float)SINCOS_LENGTH/ures; - float[] cx = new float[ures]; - float[] cz = new float[ures]; - // calc unit circle in XZ plane - for (int i = 0; i < ures; i++) { - cx[i] = cosLUT[(int) (i*delta) % SINCOS_LENGTH]; - cz[i] = sinLUT[(int) (i*delta) % SINCOS_LENGTH]; - } - // computing vertexlist - // vertexlist starts at south pole - int vertCount = ures * (vres-1) + 2; - int currVert = 0; - - // re-init arrays to store vertices - sphereX = new float[vertCount]; - sphereY = new float[vertCount]; - sphereZ = new float[vertCount]; - - float angle_step = (SINCOS_LENGTH*0.5f)/vres; - float angle = angle_step; - - // step along Y axis - for (int i = 1; i < vres; i++) { - float curradius = sinLUT[(int) angle % SINCOS_LENGTH]; - float currY = -cosLUT[(int) angle % SINCOS_LENGTH]; - for (int j = 0; j < ures; j++) { - sphereX[currVert] = cx[j] * curradius; - sphereY[currVert] = currY; - sphereZ[currVert++] = cz[j] * curradius; - } - angle += angle_step; - } - sphereDetailU = ures; - sphereDetailV = vres; - } - - - /** - * Draw a sphere with radius r centered at coordinate 0, 0, 0. - *

- * Implementation notes: - *

- * cache all the points of the sphere in a static array - * top and bottom are just a bunch of triangles that land - * in the center point - *

- * sphere is a series of concentric circles who radii vary - * along the shape, based on, er.. cos or something - *

-   * [toxi 031031] new sphere code. removed all multiplies with
-   * radius, as scale() will take care of that anyway
-   *
-   * [toxi 031223] updated sphere code (removed modulos)
-   * and introduced sphereAt(x,y,z,r)
-   * to avoid additional translate()'s on the user/sketch side
-   *
-   * [davbol 080801] now using separate sphereDetailU/V
-   * 
- */ - public void sphere(float r) { - if ((sphereDetailU < 3) || (sphereDetailV < 2)) { - sphereDetail(30); - } - - pushMatrix(); - scale(r); - edge(false); - - // 1st ring from south pole - beginShape(TRIANGLE_STRIP); - for (int i = 0; i < sphereDetailU; i++) { - normal(0, -1, 0); - vertex(0, -1, 0); - normal(sphereX[i], sphereY[i], sphereZ[i]); - vertex(sphereX[i], sphereY[i], sphereZ[i]); - } - //normal(0, -1, 0); - vertex(0, -1, 0); - normal(sphereX[0], sphereY[0], sphereZ[0]); - vertex(sphereX[0], sphereY[0], sphereZ[0]); - endShape(); - - int v1,v11,v2; - - // middle rings - int voff = 0; - for (int i = 2; i < sphereDetailV; i++) { - v1 = v11 = voff; - voff += sphereDetailU; - v2 = voff; - beginShape(TRIANGLE_STRIP); - for (int j = 0; j < sphereDetailU; j++) { - normal(sphereX[v1], sphereY[v1], sphereZ[v1]); - vertex(sphereX[v1], sphereY[v1], sphereZ[v1++]); - normal(sphereX[v2], sphereY[v2], sphereZ[v2]); - vertex(sphereX[v2], sphereY[v2], sphereZ[v2++]); - } - // close each ring - v1 = v11; - v2 = voff; - normal(sphereX[v1], sphereY[v1], sphereZ[v1]); - vertex(sphereX[v1], sphereY[v1], sphereZ[v1]); - normal(sphereX[v2], sphereY[v2], sphereZ[v2]); - vertex(sphereX[v2], sphereY[v2], sphereZ[v2]); - endShape(); - } - - // add the northern cap - beginShape(TRIANGLE_STRIP); - for (int i = 0; i < sphereDetailU; i++) { - v2 = voff + i; - normal(sphereX[v2], sphereY[v2], sphereZ[v2]); - vertex(sphereX[v2], sphereY[v2], sphereZ[v2]); - normal(0, 1, 0); - vertex(0, 1, 0); - } - normal(sphereX[voff], sphereY[voff], sphereZ[voff]); - vertex(sphereX[voff], sphereY[voff], sphereZ[voff]); - normal(0, 1, 0); - vertex(0, 1, 0); - endShape(); - - edge(true); - popMatrix(); - } - - - - ////////////////////////////////////////////////////////////// - - // BEZIER - - - /** - * Evalutes quadratic bezier at point t for points a, b, c, d. - * t varies between 0 and 1, and a and d are the on curve points, - * b and c are the control points. this can be done once with the - * x coordinates and a second time with the y coordinates to get - * the location of a bezier curve at t. - *

- * For instance, to convert the following example:

-   * stroke(255, 102, 0);
-   * line(85, 20, 10, 10);
-   * line(90, 90, 15, 80);
-   * stroke(0, 0, 0);
-   * bezier(85, 20, 10, 10, 90, 90, 15, 80);
-   *
-   * // draw it in gray, using 10 steps instead of the default 20
-   * // this is a slower way to do it, but useful if you need
-   * // to do things with the coordinates at each step
-   * stroke(128);
-   * beginShape(LINE_STRIP);
-   * for (int i = 0; i <= 10; i++) {
-   *   float t = i / 10.0f;
-   *   float x = bezierPoint(85, 10, 90, 15, t);
-   *   float y = bezierPoint(20, 10, 90, 80, t);
-   *   vertex(x, y);
-   * }
-   * endShape();
- */ - public float bezierPoint(float a, float b, float c, float d, float t) { - float t1 = 1.0f - t; - return a*t1*t1*t1 + 3*b*t*t1*t1 + 3*c*t*t*t1 + d*t*t*t; - } - - - /** - * Provide the tangent at the given point on the bezier curve. - * Fix from davbol for 0136. - */ - public float bezierTangent(float a, float b, float c, float d, float t) { - return (3*t*t * (-a+3*b-3*c+d) + - 6*t * (a-2*b+c) + - 3 * (-a+b)); - } - - - protected void bezierInitCheck() { - if (!bezierInited) { - bezierInit(); - } - } - - - protected void bezierInit() { - // overkill to be broken out, but better parity with the curve stuff below - bezierDetail(bezierDetail); - bezierInited = true; - } - - - public void bezierDetail(int detail) { - bezierDetail = detail; - - if (bezierDrawMatrix == null) { - bezierDrawMatrix = new PMatrix3D(); - } - - // setup matrix for forward differencing to speed up drawing - splineForward(detail, bezierDrawMatrix); - - // multiply the basis and forward diff matrices together - // saves much time since this needn't be done for each curve - //mult_spline_matrix(bezierForwardMatrix, bezier_basis, bezierDrawMatrix, 4); - //bezierDrawMatrix.set(bezierForwardMatrix); - bezierDrawMatrix.apply(bezierBasisMatrix); - } - - - /** - * Draw a cubic bezier curve. The first and last points are - * the on-curve points. The middle two are the 'control' points, - * or 'handles' in an application like Illustrator. - *

- * Identical to typing: - *

beginShape();
-   * vertex(x1, y1);
-   * bezierVertex(x2, y2, x3, y3, x4, y4);
-   * endShape();
-   * 
- * In Postscript-speak, this would be: - *
moveto(x1, y1);
-   * curveto(x2, y2, x3, y3, x4, y4);
- * If you were to try and continue that curve like so: - *
curveto(x5, y5, x6, y6, x7, y7);
- * This would be done in processing by adding these statements: - *
bezierVertex(x5, y5, x6, y6, x7, y7)
-   * 
- * To draw a quadratic (instead of cubic) curve, - * use the control point twice by doubling it: - *
bezier(x1, y1, cx, cy, cx, cy, x2, y2);
- */ - public void bezier(float x1, float y1, - float x2, float y2, - float x3, float y3, - float x4, float y4) { - beginShape(); - vertex(x1, y1); - bezierVertex(x2, y2, x3, y3, x4, y4); - endShape(); - } - - - public void bezier(float x1, float y1, float z1, - float x2, float y2, float z2, - float x3, float y3, float z3, - float x4, float y4, float z4) { - beginShape(); - vertex(x1, y1, z1); - bezierVertex(x2, y2, z2, - x3, y3, z3, - x4, y4, z4); - endShape(); - } - - - - ////////////////////////////////////////////////////////////// - - // CATMULL-ROM CURVE - - - /** - * Get a location along a catmull-rom curve segment. - * - * @param t Value between zero and one for how far along the segment - */ - public float curvePoint(float a, float b, float c, float d, float t) { - curveInitCheck(); - - float tt = t * t; - float ttt = t * tt; - PMatrix3D cb = curveBasisMatrix; - - // not optimized (and probably need not be) - return (a * (ttt*cb.m00 + tt*cb.m10 + t*cb.m20 + cb.m30) + - b * (ttt*cb.m01 + tt*cb.m11 + t*cb.m21 + cb.m31) + - c * (ttt*cb.m02 + tt*cb.m12 + t*cb.m22 + cb.m32) + - d * (ttt*cb.m03 + tt*cb.m13 + t*cb.m23 + cb.m33)); - } - - - /** - * Calculate the tangent at a t value (0..1) on a Catmull-Rom curve. - * Code thanks to Dave Bollinger (Bug #715) - */ - public float curveTangent(float a, float b, float c, float d, float t) { - curveInitCheck(); - - float tt3 = t * t * 3; - float t2 = t * 2; - PMatrix3D cb = curveBasisMatrix; - - // not optimized (and probably need not be) - return (a * (tt3*cb.m00 + t2*cb.m10 + cb.m20) + - b * (tt3*cb.m01 + t2*cb.m11 + cb.m21) + - c * (tt3*cb.m02 + t2*cb.m12 + cb.m22) + - d * (tt3*cb.m03 + t2*cb.m13 + cb.m23) ); - } - - - public void curveDetail(int detail) { - curveDetail = detail; - curveInit(); - } - - - public void curveTightness(float tightness) { - curveTightness = tightness; - curveInit(); - } - - - protected void curveInitCheck() { - if (!curveInited) { - curveInit(); - } - } - - - /** - * Set the number of segments to use when drawing a Catmull-Rom - * curve, and setting the s parameter, which defines how tightly - * the curve fits to each vertex. Catmull-Rom curves are actually - * a subset of this curve type where the s is set to zero. - *

- * (This function is not optimized, since it's not expected to - * be called all that often. there are many juicy and obvious - * opimizations in here, but it's probably better to keep the - * code more readable) - */ - protected void curveInit() { - // allocate only if/when used to save startup time - if (curveDrawMatrix == null) { - curveBasisMatrix = new PMatrix3D(); - curveDrawMatrix = new PMatrix3D(); - curveInited = true; - } - - float s = curveTightness; - curveBasisMatrix.set((s-1)/2f, (s+3)/2f, (-3-s)/2f, (1-s)/2f, - (1-s), (-5-s)/2f, (s+2), (s-1)/2f, - (s-1)/2f, 0, (1-s)/2f, 0, - 0, 1, 0, 0); - - //setup_spline_forward(segments, curveForwardMatrix); - splineForward(curveDetail, curveDrawMatrix); - - if (bezierBasisInverse == null) { - bezierBasisInverse = bezierBasisMatrix.get(); - bezierBasisInverse.invert(); - curveToBezierMatrix = new PMatrix3D(); - } - - // TODO only needed for PGraphicsJava2D? if so, move it there - // actually, it's generally useful for other renderers, so keep it - // or hide the implementation elsewhere. - curveToBezierMatrix.set(curveBasisMatrix); - curveToBezierMatrix.preApply(bezierBasisInverse); - - // multiply the basis and forward diff matrices together - // saves much time since this needn't be done for each curve - curveDrawMatrix.apply(curveBasisMatrix); - } - - - /** - * Draws a segment of Catmull-Rom curve. - *

- * As of 0070, this function no longer doubles the first and - * last points. The curves are a bit more boring, but it's more - * mathematically correct, and properly mirrored in curvePoint(). - *

- * Identical to typing out:

-   * beginShape();
-   * curveVertex(x1, y1);
-   * curveVertex(x2, y2);
-   * curveVertex(x3, y3);
-   * curveVertex(x4, y4);
-   * endShape();
-   * 
- */ - public void curve(float x1, float y1, - float x2, float y2, - float x3, float y3, - float x4, float y4) { - beginShape(); - curveVertex(x1, y1); - curveVertex(x2, y2); - curveVertex(x3, y3); - curveVertex(x4, y4); - endShape(); - } - - - public void curve(float x1, float y1, float z1, - float x2, float y2, float z2, - float x3, float y3, float z3, - float x4, float y4, float z4) { - beginShape(); - curveVertex(x1, y1, z1); - curveVertex(x2, y2, z2); - curveVertex(x3, y3, z3); - curveVertex(x4, y4, z4); - endShape(); - } - - - - ////////////////////////////////////////////////////////////// - - // SPLINE UTILITY FUNCTIONS (used by both Bezier and Catmull-Rom) - - - /** - * Setup forward-differencing matrix to be used for speedy - * curve rendering. It's based on using a specific number - * of curve segments and just doing incremental adds for each - * vertex of the segment, rather than running the mathematically - * expensive cubic equation. - * @param segments number of curve segments to use when drawing - * @param matrix target object for the new matrix - */ - protected void splineForward(int segments, PMatrix3D matrix) { - float f = 1.0f / segments; - float ff = f * f; - float fff = ff * f; - - matrix.set(0, 0, 0, 1, - fff, ff, f, 0, - 6*fff, 2*ff, 0, 0, - 6*fff, 0, 0, 0); - } - - - - ////////////////////////////////////////////////////////////// - - // SMOOTHING - - - /** - * If true in PImage, use bilinear interpolation for copy() - * operations. When inherited by PGraphics, also controls shapes. - */ - public void smooth() { - smooth = true; - } - - - /** - * Disable smoothing. See smooth(). - */ - public void noSmooth() { - smooth = false; - } - - - - ////////////////////////////////////////////////////////////// - - // IMAGE - - - /** - * The mode can only be set to CORNERS, CORNER, and CENTER. - *

- * Support for CENTER was added in release 0146. - */ - public void imageMode(int mode) { - if ((mode == CORNER) || (mode == CORNERS) || (mode == CENTER)) { - imageMode = mode; - } else { - String msg = - "imageMode() only works with CORNER, CORNERS, or CENTER"; - throw new RuntimeException(msg); - } - } - - - public void image(PImage image, float x, float y) { - // Starting in release 0144, image errors are simply ignored. - // loadImageAsync() sets width and height to -1 when loading fails. - if (image.width == -1 || image.height == -1) return; - - if (imageMode == CORNER || imageMode == CORNERS) { - imageImpl(image, - x, y, x+image.width, y+image.height, - 0, 0, image.width, image.height); - - } else if (imageMode == CENTER) { - float x1 = x - image.width/2; - float y1 = y - image.height/2; - imageImpl(image, - x1, y1, x1+image.width, y1+image.height, - 0, 0, image.width, image.height); - } - } - - - public void image(PImage image, float x, float y, float c, float d) { - image(image, x, y, c, d, 0, 0, image.width, image.height); - } - - - /** - * Draw an image(), also specifying u/v coordinates. - * In this method, the u, v coordinates are always based on image space - * location, regardless of the current textureMode(). - */ - public void image(PImage image, - float a, float b, float c, float d, - int u1, int v1, int u2, int v2) { - // Starting in release 0144, image errors are simply ignored. - // loadImageAsync() sets width and height to -1 when loading fails. - if (image.width == -1 || image.height == -1) return; - - if (imageMode == CORNER) { - if (c < 0) { // reset a negative width - a += c; c = -c; - } - if (d < 0) { // reset a negative height - b += d; d = -d; - } - - imageImpl(image, - a, b, a + c, b + d, - u1, v1, u2, v2); - - } else if (imageMode == CORNERS) { - if (c < a) { // reverse because x2 < x1 - float temp = a; a = c; c = temp; - } - if (d < b) { // reverse because y2 < y1 - float temp = b; b = d; d = temp; - } - - imageImpl(image, - a, b, c, d, - u1, v1, u2, v2); - - } else if (imageMode == CENTER) { - // c and d are width/height - if (c < 0) c = -c; - if (d < 0) d = -d; - float x1 = a - c/2; - float y1 = b - d/2; - - imageImpl(image, - x1, y1, x1 + c, y1 + d, - u1, v1, u2, v2); - } - } - - - /** - * Expects x1, y1, x2, y2 coordinates where (x2 >= x1) and (y2 >= y1). - * If tint() has been called, the image will be colored. - *

- * The default implementation draws an image as a textured quad. - * The (u, v) coordinates are in image space (they're ints, after all..) - */ - protected void imageImpl(PImage image, - float x1, float y1, float x2, float y2, - int u1, int v1, int u2, int v2) { - boolean savedStroke = stroke; -// boolean savedFill = fill; - int savedTextureMode = textureMode; - - stroke = false; -// fill = true; - textureMode = IMAGE; - -// float savedFillR = fillR; -// float savedFillG = fillG; -// float savedFillB = fillB; -// float savedFillA = fillA; -// -// if (tint) { -// fillR = tintR; -// fillG = tintG; -// fillB = tintB; -// fillA = tintA; -// -// } else { -// fillR = 1; -// fillG = 1; -// fillB = 1; -// fillA = 1; -// } - - beginShape(QUADS); - texture(image); - vertex(x1, y1, u1, v1); - vertex(x1, y2, u1, v2); - vertex(x2, y2, u2, v2); - vertex(x2, y1, u2, v1); - endShape(); - - stroke = savedStroke; -// fill = savedFill; - textureMode = savedTextureMode; - -// fillR = savedFillR; -// fillG = savedFillG; -// fillB = savedFillB; -// fillA = savedFillA; - } - - - - ////////////////////////////////////////////////////////////// - - // SHAPE - - - /** - * Set the orientation for the shape() command (like imageMode() or rectMode()). - * @param mode Either CORNER, CORNERS, or CENTER. - */ - public void shapeMode(int mode) { - this.shapeMode = mode; - } - - - public void shape(PShape shape) { - if (shape.isVisible()) { // don't do expensive matrix ops if invisible - if (shapeMode == CENTER) { - pushMatrix(); - translate(-shape.getWidth()/2, -shape.getHeight()/2); - } - - shape.draw(this); // needs to handle recorder too - - if (shapeMode == CENTER) { - popMatrix(); - } - } - } - - - /** - * Convenience method to draw at a particular location. - */ - public void shape(PShape shape, float x, float y) { - if (shape.isVisible()) { // don't do expensive matrix ops if invisible - pushMatrix(); - - if (shapeMode == CENTER) { - translate(x - shape.getWidth()/2, y - shape.getHeight()/2); - - } else if ((shapeMode == CORNER) || (shapeMode == CORNERS)) { - translate(x, y); - } - shape.draw(this); - - popMatrix(); - } - } - - - public void shape(PShape shape, float x, float y, float c, float d) { - if (shape.isVisible()) { // don't do expensive matrix ops if invisible - pushMatrix(); - - if (shapeMode == CENTER) { - // x and y are center, c and d refer to a diameter - translate(x - c/2f, y - d/2f); - scale(c / shape.getWidth(), d / shape.getHeight()); - - } else if (shapeMode == CORNER) { - translate(x, y); - scale(c / shape.getWidth(), d / shape.getHeight()); - - } else if (shapeMode == CORNERS) { - // c and d are x2/y2, make them into width/height - c -= x; - d -= y; - // then same as above - translate(x, y); - scale(c / shape.getWidth(), d / shape.getHeight()); - } - shape.draw(this); - - popMatrix(); - } - } - - - - ////////////////////////////////////////////////////////////// - - // TEXT/FONTS - - - /** - * Sets the alignment of the text to one of LEFT, CENTER, or RIGHT. - * This will also reset the vertical text alignment to BASELINE. - */ - public void textAlign(int align) { - textAlign(align, BASELINE); - } - - - /** - * Sets the horizontal and vertical alignment of the text. The horizontal - * alignment can be one of LEFT, CENTER, or RIGHT. The vertical alignment - * can be TOP, BOTTOM, CENTER, or the BASELINE (the default). - */ - public void textAlign(int alignX, int alignY) { - textAlign = alignX; - textAlignY = alignY; - } - - - /** - * Returns the ascent of the current font at the current size. - * This is a method, rather than a variable inside the PGraphics object - * because it requires calculation. - */ - public float textAscent() { - if (textFont == null) { - showTextFontException("textAscent"); - } - return textFont.ascent() * ((textMode == SCREEN) ? textFont.size : textSize); - } - - - /** - * Returns the descent of the current font at the current size. - * This is a method, rather than a variable inside the PGraphics object - * because it requires calculation. - */ - public float textDescent() { - if (textFont == null) { - showTextFontException("textDescent"); - } - return textFont.descent() * ((textMode == SCREEN) ? textFont.size : textSize); - } - - - /** - * Sets the current font. The font's size will be the "natural" - * size of this font (the size that was set when using "Create Font"). - * The leading will also be reset. - */ - public void textFont(PFont which) { - if (which != null) { - textFont = which; - if (hints[ENABLE_NATIVE_FONTS]) { - //if (which.font == null) { - which.findFont(); - //} - } - /* - textFontNative = which.font; - - //textFontNativeMetrics = null; - // changed for rev 0104 for textMode(SHAPE) in opengl - if (textFontNative != null) { - // TODO need a better way to handle this. could use reflection to get - // rid of the warning, but that'd be a little silly. supporting this is - // an artifact of supporting java 1.1, otherwise we'd use getLineMetrics, - // as recommended by the @deprecated flag. - textFontNativeMetrics = - Toolkit.getDefaultToolkit().getFontMetrics(textFontNative); - // The following is what needs to be done, however we need to be able - // to get the actual graphics context where the drawing is happening. - // For instance, parent.getGraphics() doesn't work for OpenGL since - // an OpenGL drawing surface is an embedded component. -// if (parent != null) { -// textFontNativeMetrics = parent.getGraphics().getFontMetrics(textFontNative); -// } - - // float w = font.getStringBounds(text, g2.getFontRenderContext()).getWidth(); - } - */ - textSize(which.size); - - } else { - throw new RuntimeException(ERROR_TEXTFONT_NULL_PFONT); - } - } - - - /** - * Useful function to set the font and size at the same time. - */ - public void textFont(PFont which, float size) { - textFont(which); - textSize(size); - } - - - /** - * Set the text leading to a specific value. If using a custom - * value for the text leading, you'll have to call textLeading() - * again after any calls to textSize(). - */ - public void textLeading(float leading) { - textLeading = leading; - } - - - /** - * Sets the text rendering/placement to be either SCREEN (direct - * to the screen, exact coordinates, only use the font's original size) - * or MODEL (the default, where text is manipulated by translate() and - * can have a textSize). The text size cannot be set when using - * textMode(SCREEN), because it uses the pixels directly from the font. - */ - public void textMode(int mode) { - // CENTER and MODEL overlap (they're both 3) - if ((mode == LEFT) || (mode == RIGHT)) { - showWarning("Since Processing beta, textMode() is now textAlign()."); - return; - } -// if ((mode != SCREEN) && (mode != MODEL)) { -// showError("Only textMode(SCREEN) and textMode(MODEL) " + -// "are available with this renderer."); -// } - - if (textModeCheck(mode)) { - textMode = mode; - } else { - String modeStr = String.valueOf(mode); - switch (mode) { - case SCREEN: modeStr = "SCREEN"; break; - case MODEL: modeStr = "MODEL"; break; - case SHAPE: modeStr = "SHAPE"; break; - } - showWarning("textMode(" + modeStr + ") is not supported by this renderer."); - } - - // reset the font to its natural size - // (helps with width calculations and all that) - //if (textMode == SCREEN) { - //textSize(textFont.size); - //} - - //} else { - //throw new RuntimeException("use textFont() before textMode()"); - //} - } - - - protected boolean textModeCheck(int mode) { - return true; - } - - - /** - * Sets the text size, also resets the value for the leading. - */ - public void textSize(float size) { - if (textFont != null) { -// if ((textMode == SCREEN) && (size != textFont.size)) { -// throw new RuntimeException("textSize() is ignored with " + -// "textMode(SCREEN)"); -// } - textSize = size; - textLeading = (textAscent() + textDescent()) * 1.275f; - - } else { - showTextFontException("textSize"); - } - } - - - // ........................................................ - - - public float textWidth(char c) { - textWidthBuffer[0] = c; - return textWidthImpl(textWidthBuffer, 0, 1); - } - - - /** - * Return the width of a line of text. If the text has multiple - * lines, this returns the length of the longest line. - */ - public float textWidth(String str) { - if (textFont == null) { - showTextFontException("textWidth"); - } - - int length = str.length(); - if (length > textWidthBuffer.length) { - textWidthBuffer = new char[length + 10]; - } - str.getChars(0, length, textWidthBuffer, 0); - - float wide = 0; - int index = 0; - int start = 0; - - while (index < length) { - if (textWidthBuffer[index] == '\n') { - wide = Math.max(wide, textWidthImpl(textWidthBuffer, start, index)); - start = index+1; - } - index++; - } - if (start < length) { - wide = Math.max(wide, textWidthImpl(textWidthBuffer, start, index)); - } - return wide; - } - - - /** - * Implementation of returning the text width of - * the chars [start, stop) in the buffer. - * Unlike the previous version that was inside PFont, this will - * return the size not of a 1 pixel font, but the actual current size. - */ - protected float textWidthImpl(char buffer[], int start, int stop) { - float wide = 0; - for (int i = start; i < stop; i++) { - // could add kerning here, but it just ain't implemented - wide += textFont.width(buffer[i]) * textSize; - } - return wide; - } - - - // ........................................................ - - - /** - * Write text where we just left off. - */ - public void text(char c) { - text(c, textX, textY, textZ); - } - - - /** - * Draw a single character on screen. - * Extremely slow when used with textMode(SCREEN) and Java 2D, - * because loadPixels has to be called first and updatePixels last. - */ - public void text(char c, float x, float y) { - if (textFont == null) { - showTextFontException("text"); - } - - if (textMode == SCREEN) loadPixels(); - - if (textAlignY == CENTER) { - y += textAscent() / 2; - } else if (textAlignY == TOP) { - y += textAscent(); - } else if (textAlignY == BOTTOM) { - y -= textDescent(); - //} else if (textAlignY == BASELINE) { - // do nothing - } - - textBuffer[0] = c; - textLineAlignImpl(textBuffer, 0, 1, x, y); - - if (textMode == SCREEN) updatePixels(); - } - - - /** - * Draw a single character on screen (with a z coordinate) - */ - public void text(char c, float x, float y, float z) { -// if ((z != 0) && (textMode == SCREEN)) { -// String msg = "textMode(SCREEN) cannot have a z coordinate"; -// throw new RuntimeException(msg); -// } - - if (z != 0) translate(0, 0, z); // slowness, badness - - text(c, x, y); - textZ = z; - - if (z != 0) translate(0, 0, -z); - } - - - /** - * Write text where we just left off. - */ - public void text(String str) { - text(str, textX, textY, textZ); - } - - - /** - * Draw a chunk of text. - * Newlines that are \n (Unix newline or linefeed char, ascii 10) - * are honored, but \r (carriage return, Windows and Mac OS) are - * ignored. - */ - public void text(String str, float x, float y) { - if (textFont == null) { - showTextFontException("text"); - } - - if (textMode == SCREEN) loadPixels(); - - int length = str.length(); - if (length > textBuffer.length) { - textBuffer = new char[length + 10]; - } - str.getChars(0, length, textBuffer, 0); - text(textBuffer, 0, length, x, y); - } - - - /** - * Method to draw text from an array of chars. This method will usually be - * more efficient than drawing from a String object, because the String will - * not be converted to a char array before drawing. - */ - public void text(char[] chars, int start, int stop, float x, float y) { - // If multiple lines, sum the height of the additional lines - float high = 0; //-textAscent(); - for (int i = start; i < stop; i++) { - if (chars[i] == '\n') { - high += textLeading; - } - } - if (textAlignY == CENTER) { - // for a single line, this adds half the textAscent to y - // for multiple lines, subtract half the additional height - //y += (textAscent() - textDescent() - high)/2; - y += (textAscent() - high)/2; - } else if (textAlignY == TOP) { - // for a single line, need to add textAscent to y - // for multiple lines, no different - y += textAscent(); - } else if (textAlignY == BOTTOM) { - // for a single line, this is just offset by the descent - // for multiple lines, subtract leading for each line - y -= textDescent() + high; - //} else if (textAlignY == BASELINE) { - // do nothing - } - -// int start = 0; - int index = 0; - while (index < stop) { //length) { - if (chars[index] == '\n') { - textLineAlignImpl(chars, start, index, x, y); - start = index + 1; - y += textLeading; - } - index++; - } - if (start < stop) { //length) { - textLineAlignImpl(chars, start, index, x, y); - } - if (textMode == SCREEN) updatePixels(); - } - - - /** - * Same as above but with a z coordinate. - */ - public void text(String str, float x, float y, float z) { - if (z != 0) translate(0, 0, z); // slow! - - text(str, x, y); - textZ = z; - - if (z != 0) translate(0, 0, -z); // inaccurate! - } - - - public void text(char[] chars, int start, int stop, - float x, float y, float z) { - if (z != 0) translate(0, 0, z); // slow! - - text(chars, start, stop, x, y); - textZ = z; - - if (z != 0) translate(0, 0, -z); // inaccurate! - } - - - /** - * Draw text in a box that is constrained to a particular size. - * The current rectMode() determines what the coordinates mean - * (whether x1/y1/x2/y2 or x/y/w/h). - *

- * Note that the x,y coords of the start of the box - * will align with the *ascent* of the text, not the baseline, - * as is the case for the other text() functions. - *

- * Newlines that are \n (Unix newline or linefeed char, ascii 10) - * are honored, and \r (carriage return, Windows and Mac OS) are - * ignored. - */ - public void text(String str, float x1, float y1, float x2, float y2) { - if (textFont == null) { - showTextFontException("text"); - } - - if (textMode == SCREEN) loadPixels(); - - float hradius, vradius; - switch (rectMode) { - case CORNER: - x2 += x1; y2 += y1; - break; - case RADIUS: - hradius = x2; - vradius = y2; - x2 = x1 + hradius; - y2 = y1 + vradius; - x1 -= hradius; - y1 -= vradius; - break; - case CENTER: - hradius = x2 / 2.0f; - vradius = y2 / 2.0f; - x2 = x1 + hradius; - y2 = y1 + vradius; - x1 -= hradius; - y1 -= vradius; - } - if (x2 < x1) { - float temp = x1; x1 = x2; x2 = temp; - } - if (y2 < y1) { - float temp = y1; y1 = y2; y2 = temp; - } - -// float currentY = y1; - float boxWidth = x2 - x1; - -// // ala illustrator, the text itself must fit inside the box -// currentY += textAscent(); //ascent() * textSize; -// // if the box is already too small, tell em to f off -// if (currentY > y2) return; - - float spaceWidth = textWidth(' '); - - if (textBreakStart == null) { - textBreakStart = new int[20]; - textBreakStop = new int[20]; - } - textBreakCount = 0; - - int length = str.length(); - if (length + 1 > textBuffer.length) { - textBuffer = new char[length + 1]; - } - str.getChars(0, length, textBuffer, 0); - // add a fake newline to simplify calculations - textBuffer[length++] = '\n'; - - int sentenceStart = 0; - for (int i = 0; i < length; i++) { - if (textBuffer[i] == '\n') { -// currentY = textSentence(textBuffer, sentenceStart, i, -// lineX, boxWidth, currentY, y2, spaceWidth); - boolean legit = - textSentence(textBuffer, sentenceStart, i, boxWidth, spaceWidth); - if (!legit) break; -// if (Float.isNaN(currentY)) break; // word too big (or error) -// if (currentY > y2) break; // past the box - sentenceStart = i + 1; - } - } - - // lineX is the position where the text starts, which is adjusted - // to left/center/right based on the current textAlign - float lineX = x1; //boxX1; - if (textAlign == CENTER) { - lineX = lineX + boxWidth/2f; - } else if (textAlign == RIGHT) { - lineX = x2; //boxX2; - } - - float boxHeight = y2 - y1; - //int lineFitCount = 1 + PApplet.floor((boxHeight - textAscent()) / textLeading); - // incorporate textAscent() for the top (baseline will be y1 + ascent) - // and textDescent() for the bottom, so that lower parts of letters aren't - // outside the box. [0151] - float topAndBottom = textAscent() + textDescent(); - int lineFitCount = 1 + PApplet.floor((boxHeight - topAndBottom) / textLeading); - int lineCount = Math.min(textBreakCount, lineFitCount); - - if (textAlignY == CENTER) { - float lineHigh = textAscent() + textLeading * (lineCount - 1); - float y = y1 + textAscent() + (boxHeight - lineHigh) / 2; - for (int i = 0; i < lineCount; i++) { - textLineAlignImpl(textBuffer, textBreakStart[i], textBreakStop[i], lineX, y); - y += textLeading; - } - - } else if (textAlignY == BOTTOM) { - float y = y2 - textDescent() - textLeading * (lineCount - 1); - for (int i = 0; i < lineCount; i++) { - textLineAlignImpl(textBuffer, textBreakStart[i], textBreakStop[i], lineX, y); - y += textLeading; - } - - } else { // TOP or BASELINE just go to the default - float y = y1 + textAscent(); - for (int i = 0; i < lineCount; i++) { - textLineAlignImpl(textBuffer, textBreakStart[i], textBreakStop[i], lineX, y); - y += textLeading; - } - } - - if (textMode == SCREEN) updatePixels(); - } - - - /** - * Emit a sentence of text, defined as a chunk of text without any newlines. - * @param stop non-inclusive, the end of the text in question - */ - protected boolean textSentence(char[] buffer, int start, int stop, - float boxWidth, float spaceWidth) { - float runningX = 0; - - // Keep track of this separately from index, since we'll need to back up - // from index when breaking words that are too long to fit. - int lineStart = start; - int wordStart = start; - int index = start; - while (index <= stop) { - // boundary of a word or end of this sentence - if ((buffer[index] == ' ') || (index == stop)) { - float wordWidth = textWidthImpl(buffer, wordStart, index); - - if (runningX + wordWidth > boxWidth) { - if (runningX != 0) { - // Next word is too big, output the current line and advance - index = wordStart; - textSentenceBreak(lineStart, index); - // Eat whitespace because multiple spaces don't count for s* - // when they're at the end of a line. - while ((index < stop) && (buffer[index] == ' ')) { - index++; - } - } else { // (runningX == 0) - // If this is the first word on the line, and its width is greater - // than the width of the text box, then break the word where at the - // max width, and send the rest of the word to the next line. - do { - index--; - if (index == wordStart) { - // Not a single char will fit on this line. screw 'em. - //System.out.println("screw you"); - return false; //Float.NaN; - } - wordWidth = textWidthImpl(buffer, wordStart, index); - } while (wordWidth > boxWidth); - - //textLineImpl(buffer, lineStart, index, x, y); - textSentenceBreak(lineStart, index); - } - lineStart = index; - wordStart = index; - runningX = 0; - - } else if (index == stop) { - // last line in the block, time to unload - //textLineImpl(buffer, lineStart, index, x, y); - textSentenceBreak(lineStart, index); -// y += textLeading; - index++; - - } else { // this word will fit, just add it to the line - runningX += wordWidth + spaceWidth; - wordStart = index + 1; // move on to the next word - index++; - } - } else { // not a space or the last character - index++; // this is just another letter - } - } -// return y; - return true; - } - - - protected void textSentenceBreak(int start, int stop) { - if (textBreakCount == textBreakStart.length) { - textBreakStart = PApplet.expand(textBreakStart); - textBreakStop = PApplet.expand(textBreakStop); - } - textBreakStart[textBreakCount] = start; - textBreakStop[textBreakCount] = stop; - textBreakCount++; - } - - - public void text(String s, float x1, float y1, float x2, float y2, float z) { - if (z != 0) translate(0, 0, z); // slowness, badness - - text(s, x1, y1, x2, y2); - textZ = z; - - if (z != 0) translate(0, 0, -z); // TEMPORARY HACK! SLOW! - } - - - public void text(int num, float x, float y) { - text(String.valueOf(num), x, y); - } - - - public void text(int num, float x, float y, float z) { - text(String.valueOf(num), x, y, z); - } - - - /** - * This does a basic number formatting, to avoid the - * generally ugly appearance of printing floats. - * Users who want more control should use their own nf() cmmand, - * or if they want the long, ugly version of float, - * use String.valueOf() to convert the float to a String first. - */ - public void text(float num, float x, float y) { - text(PApplet.nfs(num, 0, 3), x, y); - } - - - public void text(float num, float x, float y, float z) { - text(PApplet.nfs(num, 0, 3), x, y, z); - } - - - - ////////////////////////////////////////////////////////////// - - // TEXT IMPL - - // These are most likely to be overridden by subclasses, since the other - // (public) functions handle generic features like setting alignment. - - - /** - * Handles placement of a text line, then calls textLineImpl - * to actually render at the specific point. - */ - protected void textLineAlignImpl(char buffer[], int start, int stop, - float x, float y) { - if (textAlign == CENTER) { - x -= textWidthImpl(buffer, start, stop) / 2f; - - } else if (textAlign == RIGHT) { - x -= textWidthImpl(buffer, start, stop); - } - - textLineImpl(buffer, start, stop, x, y); - } - - - /** - * Implementation of actual drawing for a line of text. - */ - protected void textLineImpl(char buffer[], int start, int stop, - float x, float y) { - for (int index = start; index < stop; index++) { - textCharImpl(buffer[index], x, y); - - // this doesn't account for kerning - x += textWidth(buffer[index]); - } - textX = x; - textY = y; - textZ = 0; // this will get set by the caller if non-zero - } - - - protected void textCharImpl(char ch, float x, float y) { //, float z) { - int index = textFont.index(ch); - if (index == -1) return; - - PImage glyph = textFont.images[index]; - - if (textMode == MODEL) { - float high = (float) textFont.height[index] / textFont.fheight; - float bwidth = (float) textFont.width[index] / textFont.fwidth; - float lextent = (float) textFont.leftExtent[index] / textFont.fwidth; - float textent = (float) textFont.topExtent[index] / textFont.fheight; - - float x1 = x + lextent * textSize; - float y1 = y - textent * textSize; - float x2 = x1 + bwidth * textSize; - float y2 = y1 + high * textSize; - - textCharModelImpl(glyph, - x1, y1, x2, y2, - //x1, y1, z, x2, y2, z, - textFont.width[index], textFont.height[index]); - - } else if (textMode == SCREEN) { - int xx = (int) x + textFont.leftExtent[index];; - int yy = (int) y - textFont.topExtent[index]; - - int w0 = textFont.width[index]; - int h0 = textFont.height[index]; - - textCharScreenImpl(glyph, xx, yy, w0, h0); - } - } - - - protected void textCharModelImpl(PImage glyph, - float x1, float y1, //float z1, - float x2, float y2, //float z2, - int u2, int v2) { - boolean savedTint = tint; - int savedTintColor = tintColor; - float savedTintR = tintR; - float savedTintG = tintG; - float savedTintB = tintB; - float savedTintA = tintA; - boolean savedTintAlpha = tintAlpha; - - tint = true; - tintColor = fillColor; - tintR = fillR; - tintG = fillG; - tintB = fillB; - tintA = fillA; - tintAlpha = fillAlpha; - - imageImpl(glyph, x1, y1, x2, y2, 0, 0, u2, v2); - - tint = savedTint; - tintColor = savedTintColor; - tintR = savedTintR; - tintG = savedTintG; - tintB = savedTintB; - tintA = savedTintA; - tintAlpha = savedTintAlpha; - } - - - protected void textCharScreenImpl(PImage glyph, - int xx, int yy, - int w0, int h0) { - int x0 = 0; - int y0 = 0; - - if ((xx >= width) || (yy >= height) || - (xx + w0 < 0) || (yy + h0 < 0)) return; - - if (xx < 0) { - x0 -= xx; - w0 += xx; - xx = 0; - } - if (yy < 0) { - y0 -= yy; - h0 += yy; - yy = 0; - } - if (xx + w0 > width) { - w0 -= ((xx + w0) - width); - } - if (yy + h0 > height) { - h0 -= ((yy + h0) - height); - } - - int fr = fillRi; - int fg = fillGi; - int fb = fillBi; - int fa = fillAi; - - int pixels1[] = glyph.pixels; //images[glyph].pixels; - - // TODO this can be optimized a bit - for (int row = y0; row < y0 + h0; row++) { - for (int col = x0; col < x0 + w0; col++) { - int a1 = (fa * pixels1[row * textFont.twidth + col]) >> 8; - int a2 = a1 ^ 0xff; - //int p1 = pixels1[row * glyph.width + col]; - int p2 = pixels[(yy + row-y0)*width + (xx+col-x0)]; - - pixels[(yy + row-y0)*width + xx+col-x0] = - (0xff000000 | - (((a1 * fr + a2 * ((p2 >> 16) & 0xff)) & 0xff00) << 8) | - (( a1 * fg + a2 * ((p2 >> 8) & 0xff)) & 0xff00) | - (( a1 * fb + a2 * ( p2 & 0xff)) >> 8)); - } - } - } - - - - ////////////////////////////////////////////////////////////// - - // MATRIX STACK - - - /** - * Push a copy of the current transformation matrix onto the stack. - */ - public void pushMatrix() { - showMethodWarning("pushMatrix"); - } - - - /** - * Replace the current transformation matrix with the top of the stack. - */ - public void popMatrix() { - showMethodWarning("popMatrix"); - } - - - - ////////////////////////////////////////////////////////////// - - // MATRIX TRANSFORMATIONS - - - /** - * Translate in X and Y. - */ - public void translate(float tx, float ty) { - showMissingWarning("translate"); - } - - - /** - * Translate in X, Y, and Z. - */ - public void translate(float tx, float ty, float tz) { - showMissingWarning("translate"); - } - - - /** - * Two dimensional rotation. - * - * Same as rotateZ (this is identical to a 3D rotation along the z-axis) - * but included for clarity. It'd be weird for people drawing 2D graphics - * to be using rotateZ. And they might kick our a-- for the confusion. - * - * Additional background. - */ - public void rotate(float angle) { - showMissingWarning("rotate"); - } - - - /** - * Rotate around the X axis. - */ - public void rotateX(float angle) { - showMethodWarning("rotateX"); - } - - - /** - * Rotate around the Y axis. - */ - public void rotateY(float angle) { - showMethodWarning("rotateY"); - } - - - /** - * Rotate around the Z axis. - * - * The functions rotate() and rotateZ() are identical, it's just that it make - * sense to have rotate() and then rotateX() and rotateY() when using 3D; - * nor does it make sense to use a function called rotateZ() if you're only - * doing things in 2D. so we just decided to have them both be the same. - */ - public void rotateZ(float angle) { - showMethodWarning("rotateZ"); - } - - - /** - * Rotate about a vector in space. Same as the glRotatef() function. - */ - public void rotate(float angle, float vx, float vy, float vz) { - showMissingWarning("rotate"); - } - - - /** - * Scale in all dimensions. - */ - public void scale(float s) { - showMissingWarning("scale"); - } - - - /** - * Scale in X and Y. Equivalent to scale(sx, sy, 1). - * - * Not recommended for use in 3D, because the z-dimension is just - * scaled by 1, since there's no way to know what else to scale it by. - */ - public void scale(float sx, float sy) { - showMissingWarning("scale"); - } - - - /** - * Scale in X, Y, and Z. - */ - public void scale(float x, float y, float z) { - showMissingWarning("scale"); - } - - - ////////////////////////////////////////////////////////////// - - // MATRIX FULL MONTY - - - /** - * Set the current transformation matrix to identity. - */ - public void resetMatrix() { - showMethodWarning("resetMatrix"); - } - - - public void applyMatrix(PMatrix source) { - if (source instanceof PMatrix2D) { - applyMatrix((PMatrix2D) source); - } else if (source instanceof PMatrix3D) { - applyMatrix((PMatrix3D) source); - } - } - - - public void applyMatrix(PMatrix2D source) { - applyMatrix(source.m00, source.m01, source.m02, - source.m10, source.m11, source.m12); - } - - - /** - * Apply a 3x2 affine transformation matrix. - */ - public void applyMatrix(float n00, float n01, float n02, - float n10, float n11, float n12) { - showMissingWarning("applyMatrix"); - } - - - public void applyMatrix(PMatrix3D source) { - applyMatrix(source.m00, source.m01, source.m02, source.m03, - source.m10, source.m11, source.m12, source.m13, - source.m20, source.m21, source.m22, source.m23, - source.m30, source.m31, source.m32, source.m33); - } - - - /** - * Apply a 4x4 transformation matrix. - */ - public void applyMatrix(float n00, float n01, float n02, float n03, - float n10, float n11, float n12, float n13, - float n20, float n21, float n22, float n23, - float n30, float n31, float n32, float n33) { - showMissingWarning("applyMatrix"); - } - - - - ////////////////////////////////////////////////////////////// - - // MATRIX GET/SET/PRINT - - - public PMatrix getMatrix() { - showMissingWarning("getMatrix"); - return null; - } - - - /** - * Copy the current transformation matrix into the specified target. - * Pass in null to create a new matrix. - */ - public PMatrix2D getMatrix(PMatrix2D target) { - showMissingWarning("getMatrix"); - return null; - } - - - /** - * Copy the current transformation matrix into the specified target. - * Pass in null to create a new matrix. - */ - public PMatrix3D getMatrix(PMatrix3D target) { - showMissingWarning("getMatrix"); - return null; - } - - - /** - * Set the current transformation matrix to the contents of another. - */ - public void setMatrix(PMatrix source) { - if (source instanceof PMatrix2D) { - setMatrix((PMatrix2D) source); - } else if (source instanceof PMatrix3D) { - setMatrix((PMatrix3D) source); - } - } - - - /** - * Set the current transformation to the contents of the specified source. - */ - public void setMatrix(PMatrix2D source) { - showMissingWarning("setMatrix"); - } - - - /** - * Set the current transformation to the contents of the specified source. - */ - public void setMatrix(PMatrix3D source) { - showMissingWarning("setMatrix"); - } - - - /** - * Print the current model (or "transformation") matrix. - */ - public void printMatrix() { - showMethodWarning("printMatrix"); - } - - - - ////////////////////////////////////////////////////////////// - - // CAMERA - - - public void beginCamera() { - showMethodWarning("beginCamera"); - } - - - public void endCamera() { - showMethodWarning("endCamera"); - } - - - public void camera() { - showMissingWarning("camera"); - } - - - public void camera(float eyeX, float eyeY, float eyeZ, - float centerX, float centerY, float centerZ, - float upX, float upY, float upZ) { - showMissingWarning("camera"); - } - - - public void printCamera() { - showMethodWarning("printCamera"); - } - - - - ////////////////////////////////////////////////////////////// - - // PROJECTION - - - public void ortho() { - showMissingWarning("ortho"); - } - - - public void ortho(float left, float right, - float bottom, float top, - float near, float far) { - showMissingWarning("ortho"); - } - - - public void perspective() { - showMissingWarning("perspective"); - } - - - public void perspective(float fovy, float aspect, float zNear, float zFar) { - showMissingWarning("perspective"); - } - - - public void frustum(float left, float right, - float bottom, float top, - float near, float far) { - showMethodWarning("frustum"); - } - - - public void printProjection() { - showMethodWarning("printCamera"); - } - - - - ////////////////////////////////////////////////////////////// - - // SCREEN TRANSFORMS - - - /** - * Given an x and y coordinate, returns the x position of where - * that point would be placed on screen, once affected by translate(), - * scale(), or any other transformations. - */ - public float screenX(float x, float y) { - showMissingWarning("screenX"); - return 0; - } - - - /** - * Given an x and y coordinate, returns the y position of where - * that point would be placed on screen, once affected by translate(), - * scale(), or any other transformations. - */ - public float screenY(float x, float y) { - showMissingWarning("screenY"); - return 0; - } - - - /** - * Maps a three dimensional point to its placement on-screen. - *

- * Given an (x, y, z) coordinate, returns the x position of where - * that point would be placed on screen, once affected by translate(), - * scale(), or any other transformations. - */ - public float screenX(float x, float y, float z) { - showMissingWarning("screenX"); - return 0; - } - - - /** - * Maps a three dimensional point to its placement on-screen. - *

- * Given an (x, y, z) coordinate, returns the y position of where - * that point would be placed on screen, once affected by translate(), - * scale(), or any other transformations. - */ - public float screenY(float x, float y, float z) { - showMissingWarning("screenY"); - return 0; - } - - - /** - * Maps a three dimensional point to its placement on-screen. - *

- * Given an (x, y, z) coordinate, returns its z value. - * This value can be used to determine if an (x, y, z) coordinate - * is in front or in back of another (x, y, z) coordinate. - * The units are based on how the zbuffer is set up, and don't - * relate to anything "real". They're only useful for in - * comparison to another value obtained from screenZ(), - * or directly out of the zbuffer[]. - */ - public float screenZ(float x, float y, float z) { - showMissingWarning("screenZ"); - return 0; - } - - - /** - * Returns the model space x value for an x, y, z coordinate. - *

- * This will give you a coordinate after it has been transformed - * by translate(), rotate(), and camera(), but not yet transformed - * by the projection matrix. For instance, his can be useful for - * figuring out how points in 3D space relate to the edge - * coordinates of a shape. - */ - public float modelX(float x, float y, float z) { - showMissingWarning("modelX"); - return 0; - } - - - /** - * Returns the model space y value for an x, y, z coordinate. - */ - public float modelY(float x, float y, float z) { - showMissingWarning("modelY"); - return 0; - } - - - /** - * Returns the model space z value for an x, y, z coordinate. - */ - public float modelZ(float x, float y, float z) { - showMissingWarning("modelZ"); - return 0; - } - - - - ////////////////////////////////////////////////////////////// - - // STYLE - - - public void pushStyle() { - if (styleStackDepth == styleStack.length) { - styleStack = (PStyle[]) PApplet.expand(styleStack); - } - if (styleStack[styleStackDepth] == null) { - styleStack[styleStackDepth] = new PStyle(); - } - PStyle s = styleStack[styleStackDepth++]; - getStyle(s); - } - - - public void popStyle() { - if (styleStackDepth == 0) { - throw new RuntimeException("Too many popStyle() without enough pushStyle()"); - } - styleStackDepth--; - style(styleStack[styleStackDepth]); - } - - - public void style(PStyle s) { - // if (s.smooth) { - // smooth(); - // } else { - // noSmooth(); - // } - - imageMode(s.imageMode); - rectMode(s.rectMode); - ellipseMode(s.ellipseMode); - shapeMode(s.shapeMode); - - if (s.tint) { - tint(s.tintColor); - } else { - noTint(); - } - if (s.fill) { - fill(s.fillColor); - } else { - noFill(); - } - if (s.stroke) { - stroke(s.strokeColor); - } else { - noStroke(); - } - strokeWeight(s.strokeWeight); - strokeCap(s.strokeCap); - strokeJoin(s.strokeJoin); - - // Set the colorMode() for the material properties. - // TODO this is really inefficient, need to just have a material() method, - // but this has the least impact to the API. - colorMode(RGB, 1); - ambient(s.ambientR, s.ambientG, s.ambientB); - emissive(s.emissiveR, s.emissiveG, s.emissiveB); - specular(s.specularR, s.specularG, s.specularB); - shininess(s.shininess); - - /* - s.ambientR = ambientR; - s.ambientG = ambientG; - s.ambientB = ambientB; - s.specularR = specularR; - s.specularG = specularG; - s.specularB = specularB; - s.emissiveR = emissiveR; - s.emissiveG = emissiveG; - s.emissiveB = emissiveB; - s.shininess = shininess; - */ - // material(s.ambientR, s.ambientG, s.ambientB, - // s.emissiveR, s.emissiveG, s.emissiveB, - // s.specularR, s.specularG, s.specularB, - // s.shininess); - - // Set this after the material properties. - colorMode(s.colorMode, - s.colorModeX, s.colorModeY, s.colorModeZ, s.colorModeA); - - // This is a bit asymmetric, since there's no way to do "noFont()", - // and a null textFont will produce an error (since usually that means that - // the font couldn't load properly). So in some cases, the font won't be - // 'cleared' to null, even though that's technically correct. - if (s.textFont != null) { - textFont(s.textFont, s.textSize); - textLeading(s.textLeading); - } - // These don't require a font to be set. - textAlign(s.textAlign, s.textAlignY); - textMode(s.textMode); - } - - - public PStyle getStyle() { // ignore - return getStyle(null); - } - - - public PStyle getStyle(PStyle s) { // ignore - if (s == null) { - s = new PStyle(); - } - - s.imageMode = imageMode; - s.rectMode = rectMode; - s.ellipseMode = ellipseMode; - s.shapeMode = shapeMode; - - s.colorMode = colorMode; - s.colorModeX = colorModeX; - s.colorModeY = colorModeY; - s.colorModeZ = colorModeZ; - s.colorModeA = colorModeA; - - s.tint = tint; - s.tintColor = tintColor; - s.fill = fill; - s.fillColor = fillColor; - s.stroke = stroke; - s.strokeColor = strokeColor; - s.strokeWeight = strokeWeight; - s.strokeCap = strokeCap; - s.strokeJoin = strokeJoin; - - s.ambientR = ambientR; - s.ambientG = ambientG; - s.ambientB = ambientB; - s.specularR = specularR; - s.specularG = specularG; - s.specularB = specularB; - s.emissiveR = emissiveR; - s.emissiveG = emissiveG; - s.emissiveB = emissiveB; - s.shininess = shininess; - - s.textFont = textFont; - s.textAlign = textAlign; - s.textAlignY = textAlignY; - s.textMode = textMode; - s.textSize = textSize; - s.textLeading = textLeading; - - return s; - } - - - - ////////////////////////////////////////////////////////////// - - // STROKE CAP/JOIN/WEIGHT - - - public void strokeWeight(float weight) { - strokeWeight = weight; - } - - - public void strokeJoin(int join) { - strokeJoin = join; - } - - - public void strokeCap(int cap) { - strokeCap = cap; - } - - - - ////////////////////////////////////////////////////////////// - - // STROKE COLOR - - - public void noStroke() { - stroke = false; - } - - - /** - * Set the tint to either a grayscale or ARGB value. - * See notes attached to the fill() function. - */ - public void stroke(int rgb) { -// if (((rgb & 0xff000000) == 0) && (rgb <= colorModeX)) { // see above -// stroke((float) rgb); -// -// } else { -// colorCalcARGB(rgb, colorModeA); -// strokeFromCalc(); -// } - colorCalc(rgb); - strokeFromCalc(); - } - - - public void stroke(int rgb, float alpha) { -// if (((rgb & 0xff000000) == 0) && (rgb <= colorModeX)) { -// stroke((float) rgb, alpha); -// -// } else { -// colorCalcARGB(rgb, alpha); -// strokeFromCalc(); -// } - colorCalc(rgb, alpha); - strokeFromCalc(); - } - - - public void stroke(float gray) { - colorCalc(gray); - strokeFromCalc(); - } - - - public void stroke(float gray, float alpha) { - colorCalc(gray, alpha); - strokeFromCalc(); - } - - - public void stroke(float x, float y, float z) { - colorCalc(x, y, z); - strokeFromCalc(); - } - - - public void stroke(float x, float y, float z, float a) { - colorCalc(x, y, z, a); - strokeFromCalc(); - } - - - protected void strokeFromCalc() { - stroke = true; - strokeR = calcR; - strokeG = calcG; - strokeB = calcB; - strokeA = calcA; - strokeRi = calcRi; - strokeGi = calcGi; - strokeBi = calcBi; - strokeAi = calcAi; - strokeColor = calcColor; - strokeAlpha = calcAlpha; - } - - - - ////////////////////////////////////////////////////////////// - - // TINT COLOR - - - public void noTint() { - tint = false; - } - - - /** - * Set the tint to either a grayscale or ARGB value. - */ - public void tint(int rgb) { -// if (((rgb & 0xff000000) == 0) && (rgb <= colorModeX)) { -// tint((float) rgb); -// -// } else { -// colorCalcARGB(rgb, colorModeA); -// tintFromCalc(); -// } - colorCalc(rgb); - tintFromCalc(); - } - - public void tint(int rgb, float alpha) { -// if (((rgb & 0xff000000) == 0) && (rgb <= colorModeX)) { -// tint((float) rgb, alpha); -// -// } else { -// colorCalcARGB(rgb, alpha); -// tintFromCalc(); -// } - colorCalc(rgb, alpha); - tintFromCalc(); - } - - public void tint(float gray) { - colorCalc(gray); - tintFromCalc(); - } - - - public void tint(float gray, float alpha) { - colorCalc(gray, alpha); - tintFromCalc(); - } - - - public void tint(float x, float y, float z) { - colorCalc(x, y, z); - tintFromCalc(); - } - - - public void tint(float x, float y, float z, float a) { - colorCalc(x, y, z, a); - tintFromCalc(); - } - - - protected void tintFromCalc() { - tint = true; - tintR = calcR; - tintG = calcG; - tintB = calcB; - tintA = calcA; - tintRi = calcRi; - tintGi = calcGi; - tintBi = calcBi; - tintAi = calcAi; - tintColor = calcColor; - tintAlpha = calcAlpha; - } - - - - ////////////////////////////////////////////////////////////// - - // FILL COLOR - - - public void noFill() { - fill = false; - } - - - /** - * Set the fill to either a grayscale value or an ARGB int. - */ - public void fill(int rgb) { -// if (((rgb & 0xff000000) == 0) && (rgb <= colorModeX)) { // see above -// fill((float) rgb); -// -// } else { -// colorCalcARGB(rgb, colorModeA); -// fillFromCalc(); -// } - colorCalc(rgb); - fillFromCalc(); - } - - - public void fill(int rgb, float alpha) { -// if (((rgb & 0xff000000) == 0) && (rgb <= colorModeX)) { // see above -// fill((float) rgb, alpha); -// -// } else { -// colorCalcARGB(rgb, alpha); -// fillFromCalc(); -// } - colorCalc(rgb, alpha); - fillFromCalc(); - } - - - public void fill(float gray) { - colorCalc(gray); - fillFromCalc(); - } - - - public void fill(float gray, float alpha) { - colorCalc(gray, alpha); - fillFromCalc(); - } - - - public void fill(float x, float y, float z) { - colorCalc(x, y, z); - fillFromCalc(); - } - - - public void fill(float x, float y, float z, float a) { - colorCalc(x, y, z, a); - fillFromCalc(); - } - - - protected void fillFromCalc() { - fill = true; - fillR = calcR; - fillG = calcG; - fillB = calcB; - fillA = calcA; - fillRi = calcRi; - fillGi = calcGi; - fillBi = calcBi; - fillAi = calcAi; - fillColor = calcColor; - fillAlpha = calcAlpha; - } - - - - ////////////////////////////////////////////////////////////// - - // MATERIAL PROPERTIES - - - public void ambient(int rgb) { -// if (((rgb & 0xff000000) == 0) && (rgb <= colorModeX)) { -// ambient((float) rgb); -// -// } else { -// colorCalcARGB(rgb, colorModeA); -// ambientFromCalc(); -// } - colorCalc(rgb); - ambientFromCalc(); - } - - - public void ambient(float gray) { - colorCalc(gray); - ambientFromCalc(); - } - - - public void ambient(float x, float y, float z) { - colorCalc(x, y, z); - ambientFromCalc(); - } - - - protected void ambientFromCalc() { - ambientR = calcR; - ambientG = calcG; - ambientB = calcB; - } - - - public void specular(int rgb) { -// if (((rgb & 0xff000000) == 0) && (rgb <= colorModeX)) { -// specular((float) rgb); -// -// } else { -// colorCalcARGB(rgb, colorModeA); -// specularFromCalc(); -// } - colorCalc(rgb); - specularFromCalc(); - } - - - public void specular(float gray) { - colorCalc(gray); - specularFromCalc(); - } - - - public void specular(float x, float y, float z) { - colorCalc(x, y, z); - specularFromCalc(); - } - - - protected void specularFromCalc() { - specularR = calcR; - specularG = calcG; - specularB = calcB; - } - - - public void shininess(float shine) { - shininess = shine; - } - - - public void emissive(int rgb) { -// if (((rgb & 0xff000000) == 0) && (rgb <= colorModeX)) { -// emissive((float) rgb); -// -// } else { -// colorCalcARGB(rgb, colorModeA); -// emissiveFromCalc(); -// } - colorCalc(rgb); - emissiveFromCalc(); - } - - - public void emissive(float gray) { - colorCalc(gray); - emissiveFromCalc(); - } - - - public void emissive(float x, float y, float z) { - colorCalc(x, y, z); - emissiveFromCalc(); - } - - - protected void emissiveFromCalc() { - emissiveR = calcR; - emissiveG = calcG; - emissiveB = calcB; - } - - - - ////////////////////////////////////////////////////////////// - - // LIGHTS - - // The details of lighting are very implementation-specific, so this base - // class does not handle any details of settings lights. It does however - // display warning messages that the functions are not available. - - - public void lights() { - showMethodWarning("lights"); - } - - public void noLights() { - showMethodWarning("noLights"); - } - - public void ambientLight(float red, float green, float blue) { - showMethodWarning("ambientLight"); - } - - public void ambientLight(float red, float green, float blue, - float x, float y, float z) { - showMethodWarning("ambientLight"); - } - - public void directionalLight(float red, float green, float blue, - float nx, float ny, float nz) { - showMethodWarning("directionalLight"); - } - - public void pointLight(float red, float green, float blue, - float x, float y, float z) { - showMethodWarning("pointLight"); - } - - public void spotLight(float red, float green, float blue, - float x, float y, float z, - float nx, float ny, float nz, - float angle, float concentration) { - showMethodWarning("spotLight"); - } - - public void lightFalloff(float constant, float linear, float quadratic) { - showMethodWarning("lightFalloff"); - } - - public void lightSpecular(float x, float y, float z) { - showMethodWarning("lightSpecular"); - } - - - - ////////////////////////////////////////////////////////////// - - // BACKGROUND - - /** - * Set the background to a gray or ARGB color. - *

- * For the main drawing surface, the alpha value will be ignored. However, - * alpha can be used on PGraphics objects from createGraphics(). This is - * the only way to set all the pixels partially transparent, for instance. - *

- * Note that background() should be called before any transformations occur, - * because some implementations may require the current transformation matrix - * to be identity before drawing. - */ - public void background(int rgb) { -// if (((rgb & 0xff000000) == 0) && (rgb <= colorModeX)) { -// background((float) rgb); -// -// } else { -// if (format == RGB) { -// rgb |= 0xff000000; // ignore alpha for main drawing surface -// } -// colorCalcARGB(rgb, colorModeA); -// backgroundFromCalc(); -// backgroundImpl(); -// } - colorCalc(rgb); - backgroundFromCalc(); - } - - - /** - * See notes about alpha in background(x, y, z, a). - */ - public void background(int rgb, float alpha) { -// if (format == RGB) { -// background(rgb); // ignore alpha for main drawing surface -// -// } else { -// if (((rgb & 0xff000000) == 0) && (rgb <= colorModeX)) { -// background((float) rgb, alpha); -// -// } else { -// colorCalcARGB(rgb, alpha); -// backgroundFromCalc(); -// backgroundImpl(); -// } -// } - colorCalc(rgb, alpha); - backgroundFromCalc(); - } - - - /** - * Set the background to a grayscale value, based on the - * current colorMode. - */ - public void background(float gray) { - colorCalc(gray); - backgroundFromCalc(); -// backgroundImpl(); - } - - - /** - * See notes about alpha in background(x, y, z, a). - */ - public void background(float gray, float alpha) { - if (format == RGB) { - background(gray); // ignore alpha for main drawing surface - - } else { - colorCalc(gray, alpha); - backgroundFromCalc(); -// backgroundImpl(); - } - } - - - /** - * Set the background to an r, g, b or h, s, b value, - * based on the current colorMode. - */ - public void background(float x, float y, float z) { - colorCalc(x, y, z); - backgroundFromCalc(); -// backgroundImpl(); - } - - - /** - * Clear the background with a color that includes an alpha value. This can - * only be used with objects created by createGraphics(), because the main - * drawing surface cannot be set transparent. - *

- * It might be tempting to use this function to partially clear the screen - * on each frame, however that's not how this function works. When calling - * background(), the pixels will be replaced with pixels that have that level - * of transparency. To do a semi-transparent overlay, use fill() with alpha - * and draw a rectangle. - */ - public void background(float x, float y, float z, float a) { -// if (format == RGB) { -// background(x, y, z); // don't allow people to set alpha -// -// } else { -// colorCalc(x, y, z, a); -// backgroundFromCalc(); -// backgroundImpl(); -// } - colorCalc(x, y, z, a); - backgroundFromCalc(); - } - - - protected void backgroundFromCalc() { - backgroundR = calcR; - backgroundG = calcG; - backgroundB = calcB; - backgroundA = (format == RGB) ? colorModeA : calcA; - backgroundRi = calcRi; - backgroundGi = calcGi; - backgroundBi = calcBi; - backgroundAi = (format == RGB) ? 255 : calcAi; - backgroundAlpha = (format == RGB) ? false : calcAlpha; - backgroundColor = calcColor; - - backgroundImpl(); - } - - - /** - * Takes an RGB or ARGB image and sets it as the background. - * The width and height of the image must be the same size as the sketch. - * Use image.resize(width, height) to make short work of such a task. - *

- * Note that even if the image is set as RGB, the high 8 bits of each pixel - * should be set opaque (0xFF000000), because the image data will be copied - * directly to the screen, and non-opaque background images may have strange - * behavior. Using image.filter(OPAQUE) will handle this easily. - *

- * When using 3D, this will also clear the zbuffer (if it exists). - */ - public void background(PImage image) { - if ((image.width != width) || (image.height != height)) { - throw new RuntimeException(ERROR_BACKGROUND_IMAGE_SIZE); - } - if ((image.format != RGB) && (image.format != ARGB)) { - throw new RuntimeException(ERROR_BACKGROUND_IMAGE_FORMAT); - } - backgroundColor = 0; // just zero it out for images - backgroundImpl(image); - } - - - /** - * Actually set the background image. This is separated from the error - * handling and other semantic goofiness that is shared across renderers. - */ - protected void backgroundImpl(PImage image) { - // blit image to the screen - set(0, 0, image); - } - - - /** - * Actual implementation of clearing the background, now that the - * internal variables for background color have been set. Called by the - * backgroundFromCalc() method, which is what all the other background() - * methods call once the work is done. - */ - protected void backgroundImpl() { - pushStyle(); - pushMatrix(); - resetMatrix(); - fill(backgroundColor); - rect(0, 0, width, height); - popMatrix(); - popStyle(); - } - - - /** - * Callback to handle clearing the background when begin/endRaw is in use. - * Handled as separate function for OpenGL (or other) subclasses that - * override backgroundImpl() but still needs this to work properly. - */ -// protected void backgroundRawImpl() { -// if (raw != null) { -// raw.colorMode(RGB, 1); -// raw.noStroke(); -// raw.fill(backgroundR, backgroundG, backgroundB); -// raw.beginShape(TRIANGLES); -// -// raw.vertex(0, 0); -// raw.vertex(width, 0); -// raw.vertex(0, height); -// -// raw.vertex(width, 0); -// raw.vertex(width, height); -// raw.vertex(0, height); -// -// raw.endShape(); -// } -// } - - - - ////////////////////////////////////////////////////////////// - - // COLOR MODE - - - public void colorMode(int mode) { - colorMode(mode, colorModeX, colorModeY, colorModeZ, colorModeA); - } - - - public void colorMode(int mode, float max) { - colorMode(mode, max, max, max, max); - } - - - /** - * Set the colorMode and the maximum values for (r, g, b) - * or (h, s, b). - *

- * Note that this doesn't set the maximum for the alpha value, - * which might be confusing if for instance you switched to - *

colorMode(HSB, 360, 100, 100);
- * because the alpha values were still between 0 and 255. - */ - public void colorMode(int mode, float maxX, float maxY, float maxZ) { - colorMode(mode, maxX, maxY, maxZ, colorModeA); - } - - - public void colorMode(int mode, - float maxX, float maxY, float maxZ, float maxA) { - colorMode = mode; - - colorModeX = maxX; // still needs to be set for hsb - colorModeY = maxY; - colorModeZ = maxZ; - colorModeA = maxA; - - // if color max values are all 1, then no need to scale - colorModeScale = - ((maxA != 1) || (maxX != maxY) || (maxY != maxZ) || (maxZ != maxA)); - - // if color is rgb/0..255 this will make it easier for the - // red() green() etc functions - colorModeDefault = (colorMode == RGB) && - (colorModeA == 255) && (colorModeX == 255) && - (colorModeY == 255) && (colorModeZ == 255); - } - - - - ////////////////////////////////////////////////////////////// - - // COLOR CALCULATIONS - - // Given input values for coloring, these functions will fill the calcXxxx - // variables with values that have been properly filtered through the - // current colorMode settings. - - // Renderers that need to subclass any drawing properties such as fill or - // stroke will usally want to override methods like fillFromCalc (or the - // same for stroke, ambient, etc.) That way the color calcuations are - // covered by this based PGraphics class, leaving only a single function - // to override/implement in the subclass. - - - /** - * Set the fill to either a grayscale value or an ARGB int. - *

- * The problem with this code is that it has to detect between these two - * situations automatically. This is done by checking to see if the high bits - * (the alpha for 0xAA000000) is set, and if not, whether the color value - * that follows is less than colorModeX (first param passed to colorMode). - *

- * This auto-detect would break in the following situation: - *

size(256, 256);
-   * for (int i = 0; i < 256; i++) {
-   *   color c = color(0, 0, 0, i);
-   *   stroke(c);
-   *   line(i, 0, i, 256);
-   * }
- * ...on the first time through the loop, where (i == 0), since the color - * itself is zero (black) then it would appear indistinguishable from code - * that reads "fill(0)". The solution is to use the four parameter versions - * of stroke or fill to more directly specify the desired result. - */ - protected void colorCalc(int rgb) { - if (((rgb & 0xff000000) == 0) && (rgb <= colorModeX)) { - colorCalc((float) rgb); - - } else { - colorCalcARGB(rgb, colorModeA); - } - } - - - protected void colorCalc(int rgb, float alpha) { - if (((rgb & 0xff000000) == 0) && (rgb <= colorModeX)) { // see above - colorCalc((float) rgb, alpha); - - } else { - colorCalcARGB(rgb, alpha); - } - } - - - protected void colorCalc(float gray) { - colorCalc(gray, colorModeA); - } - - - protected void colorCalc(float gray, float alpha) { - if (gray > colorModeX) gray = colorModeX; - if (alpha > colorModeA) alpha = colorModeA; - - if (gray < 0) gray = 0; - if (alpha < 0) alpha = 0; - - calcR = colorModeScale ? (gray / colorModeX) : gray; - calcG = calcR; - calcB = calcR; - calcA = colorModeScale ? (alpha / colorModeA) : alpha; - - calcRi = (int)(calcR*255); calcGi = (int)(calcG*255); - calcBi = (int)(calcB*255); calcAi = (int)(calcA*255); - calcColor = (calcAi << 24) | (calcRi << 16) | (calcGi << 8) | calcBi; - calcAlpha = (calcAi != 255); - } - - - protected void colorCalc(float x, float y, float z) { - colorCalc(x, y, z, colorModeA); - } - - - protected void colorCalc(float x, float y, float z, float a) { - if (x > colorModeX) x = colorModeX; - if (y > colorModeY) y = colorModeY; - if (z > colorModeZ) z = colorModeZ; - if (a > colorModeA) a = colorModeA; - - if (x < 0) x = 0; - if (y < 0) y = 0; - if (z < 0) z = 0; - if (a < 0) a = 0; - - switch (colorMode) { - case RGB: - if (colorModeScale) { - calcR = x / colorModeX; - calcG = y / colorModeY; - calcB = z / colorModeZ; - calcA = a / colorModeA; - } else { - calcR = x; calcG = y; calcB = z; calcA = a; - } - break; - - case HSB: - x /= colorModeX; // h - y /= colorModeY; // s - z /= colorModeZ; // b - - calcA = colorModeScale ? (a/colorModeA) : a; - - if (y == 0) { // saturation == 0 - calcR = calcG = calcB = z; - - } else { - float which = (x - (int)x) * 6.0f; - float f = which - (int)which; - float p = z * (1.0f - y); - float q = z * (1.0f - y * f); - float t = z * (1.0f - (y * (1.0f - f))); - - switch ((int)which) { - case 0: calcR = z; calcG = t; calcB = p; break; - case 1: calcR = q; calcG = z; calcB = p; break; - case 2: calcR = p; calcG = z; calcB = t; break; - case 3: calcR = p; calcG = q; calcB = z; break; - case 4: calcR = t; calcG = p; calcB = z; break; - case 5: calcR = z; calcG = p; calcB = q; break; - } - } - break; - } - calcRi = (int)(255*calcR); calcGi = (int)(255*calcG); - calcBi = (int)(255*calcB); calcAi = (int)(255*calcA); - calcColor = (calcAi << 24) | (calcRi << 16) | (calcGi << 8) | calcBi; - calcAlpha = (calcAi != 255); - } - - - /** - * Unpacks AARRGGBB color for direct use with colorCalc. - *

- * Handled here with its own function since this is indepenent - * of the color mode. - *

- * Strangely the old version of this code ignored the alpha - * value. not sure if that was a bug or what. - *

- * Note, no need for a bounds check since it's a 32 bit number. - */ - protected void colorCalcARGB(int argb, float alpha) { - if (alpha == colorModeA) { - calcAi = (argb >> 24) & 0xff; - calcColor = argb; - } else { - calcAi = (int) (((argb >> 24) & 0xff) * (alpha / colorModeA)); - calcColor = (calcAi << 24) | (argb & 0xFFFFFF); - } - calcRi = (argb >> 16) & 0xff; - calcGi = (argb >> 8) & 0xff; - calcBi = argb & 0xff; - calcA = (float)calcAi / 255.0f; - calcR = (float)calcRi / 255.0f; - calcG = (float)calcGi / 255.0f; - calcB = (float)calcBi / 255.0f; - calcAlpha = (calcAi != 255); - } - - - - ////////////////////////////////////////////////////////////// - - // COLOR DATATYPE STUFFING - - // The 'color' primitive type in Processing syntax is in fact a 32-bit int. - // These functions handle stuffing color values into a 32-bit cage based - // on the current colorMode settings. - - // These functions are really slow (because they take the current colorMode - // into account), but they're easy to use. Advanced users can write their - // own bit shifting operations to setup 'color' data types. - - - public final int color(int gray) { // ignore - if (((gray & 0xff000000) == 0) && (gray <= colorModeX)) { - if (colorModeDefault) { - // bounds checking to make sure the numbers aren't to high or low - if (gray > 255) gray = 255; else if (gray < 0) gray = 0; - return 0xff000000 | (gray << 16) | (gray << 8) | gray; - } else { - colorCalc(gray); - } - } else { - colorCalcARGB(gray, colorModeA); - } - return calcColor; - } - - - public final int color(float gray) { // ignore - colorCalc(gray); - return calcColor; - } - - - /** - * @param gray can be packed ARGB or a gray in this case - */ - public final int color(int gray, int alpha) { // ignore - if (colorModeDefault) { - // bounds checking to make sure the numbers aren't to high or low - if (gray > 255) gray = 255; else if (gray < 0) gray = 0; - if (alpha > 255) alpha = 255; else if (alpha < 0) alpha = 0; - - return ((alpha & 0xff) << 24) | (gray << 16) | (gray << 8) | gray; - } - colorCalc(gray, alpha); - return calcColor; - } - - - /** - * @param rgb can be packed ARGB or a gray in this case - */ - public final int color(int rgb, float alpha) { // ignore - if (((rgb & 0xff000000) == 0) && (rgb <= colorModeX)) { - colorCalc(rgb, alpha); - } else { - colorCalcARGB(rgb, alpha); - } - return calcColor; - } - - - public final int color(float gray, float alpha) { // ignore - colorCalc(gray, alpha); - return calcColor; - } - - - public final int color(int x, int y, int z) { // ignore - if (colorModeDefault) { - // bounds checking to make sure the numbers aren't to high or low - if (x > 255) x = 255; else if (x < 0) x = 0; - if (y > 255) y = 255; else if (y < 0) y = 0; - if (z > 255) z = 255; else if (z < 0) z = 0; - - return 0xff000000 | (x << 16) | (y << 8) | z; - } - colorCalc(x, y, z); - return calcColor; - } - - - public final int color(float x, float y, float z) { // ignore - colorCalc(x, y, z); - return calcColor; - } - - - public final int color(int x, int y, int z, int a) { // ignore - if (colorModeDefault) { - // bounds checking to make sure the numbers aren't to high or low - if (a > 255) a = 255; else if (a < 0) a = 0; - if (x > 255) x = 255; else if (x < 0) x = 0; - if (y > 255) y = 255; else if (y < 0) y = 0; - if (z > 255) z = 255; else if (z < 0) z = 0; - - return (a << 24) | (x << 16) | (y << 8) | z; - } - colorCalc(x, y, z, a); - return calcColor; - } - - - public final int color(float x, float y, float z, float a) { // ignore - colorCalc(x, y, z, a); - return calcColor; - } - - - - ////////////////////////////////////////////////////////////// - - // COLOR DATATYPE EXTRACTION - - // Vee have veys of making the colors talk. - - - public final float alpha(int what) { - float c = (what >> 24) & 0xff; - if (colorModeA == 255) return c; - return (c / 255.0f) * colorModeA; - } - - - public final float red(int what) { - float c = (what >> 16) & 0xff; - if (colorModeDefault) return c; - return (c / 255.0f) * colorModeX; - } - - - public final float green(int what) { - float c = (what >> 8) & 0xff; - if (colorModeDefault) return c; - return (c / 255.0f) * colorModeY; - } - - - public final float blue(int what) { - float c = (what) & 0xff; - if (colorModeDefault) return c; - return (c / 255.0f) * colorModeZ; - } - - - public final float hue(int what) { - if (what != cacheHsbKey) { - Color.RGBtoHSB((what >> 16) & 0xff, (what >> 8) & 0xff, - what & 0xff, cacheHsbValue); - cacheHsbKey = what; - } - return cacheHsbValue[0] * colorModeX; - } - - - public final float saturation(int what) { - if (what != cacheHsbKey) { - Color.RGBtoHSB((what >> 16) & 0xff, (what >> 8) & 0xff, - what & 0xff, cacheHsbValue); - cacheHsbKey = what; - } - return cacheHsbValue[1] * colorModeY; - } - - - public final float brightness(int what) { - if (what != cacheHsbKey) { - Color.RGBtoHSB((what >> 16) & 0xff, (what >> 8) & 0xff, - what & 0xff, cacheHsbValue); - cacheHsbKey = what; - } - return cacheHsbValue[2] * colorModeZ; - } - - - - ////////////////////////////////////////////////////////////// - - // COLOR DATATYPE INTERPOLATION - - // Against our better judgement. - - - /** - * Interpolate between two colors, using the current color mode. - */ - public int lerpColor(int c1, int c2, float amt) { - return lerpColor(c1, c2, amt, colorMode); - } - - static float[] lerpColorHSB1; - static float[] lerpColorHSB2; - - /** - * Interpolate between two colors. Like lerp(), but for the - * individual color components of a color supplied as an int value. - */ - static public int lerpColor(int c1, int c2, float amt, int mode) { - if (mode == RGB) { - float a1 = ((c1 >> 24) & 0xff); - float r1 = (c1 >> 16) & 0xff; - float g1 = (c1 >> 8) & 0xff; - float b1 = c1 & 0xff; - float a2 = (c2 >> 24) & 0xff; - float r2 = (c2 >> 16) & 0xff; - float g2 = (c2 >> 8) & 0xff; - float b2 = c2 & 0xff; - - return (((int) (a1 + (a2-a1)*amt) << 24) | - ((int) (r1 + (r2-r1)*amt) << 16) | - ((int) (g1 + (g2-g1)*amt) << 8) | - ((int) (b1 + (b2-b1)*amt))); - - } else if (mode == HSB) { - if (lerpColorHSB1 == null) { - lerpColorHSB1 = new float[3]; - lerpColorHSB2 = new float[3]; - } - - float a1 = (c1 >> 24) & 0xff; - float a2 = (c2 >> 24) & 0xff; - int alfa = ((int) (a1 + (a2-a1)*amt)) << 24; - - Color.RGBtoHSB((c1 >> 16) & 0xff, (c1 >> 8) & 0xff, c1 & 0xff, - lerpColorHSB1); - Color.RGBtoHSB((c2 >> 16) & 0xff, (c2 >> 8) & 0xff, c2 & 0xff, - lerpColorHSB2); - - /* If mode is HSB, this will take the shortest path around the - * color wheel to find the new color. For instance, red to blue - * will go red violet blue (backwards in hue space) rather than - * cycling through ROYGBIV. - */ - // Disabling rollover (wasn't working anyway) for 0126. - // Otherwise it makes full spectrum scale impossible for - // those who might want it...in spite of how despicable - // a full spectrum scale might be. - // roll around when 0.9 to 0.1 - // more than 0.5 away means that it should roll in the other direction - /* - float h1 = lerpColorHSB1[0]; - float h2 = lerpColorHSB2[0]; - if (Math.abs(h1 - h2) > 0.5f) { - if (h1 > h2) { - // i.e. h1 is 0.7, h2 is 0.1 - h2 += 1; - } else { - // i.e. h1 is 0.1, h2 is 0.7 - h1 += 1; - } - } - float ho = (PApplet.lerp(lerpColorHSB1[0], lerpColorHSB2[0], amt)) % 1.0f; - */ - float ho = PApplet.lerp(lerpColorHSB1[0], lerpColorHSB2[0], amt); - float so = PApplet.lerp(lerpColorHSB1[1], lerpColorHSB2[1], amt); - float bo = PApplet.lerp(lerpColorHSB1[2], lerpColorHSB2[2], amt); - - return alfa | (Color.HSBtoRGB(ho, so, bo) & 0xFFFFFF); - } - return 0; - } - - - - ////////////////////////////////////////////////////////////// - - // BEGINRAW/ENDRAW - - - /** - * Record individual lines and triangles by echoing them to another renderer. - */ - public void beginRaw(PGraphics rawGraphics) { // ignore - this.raw = rawGraphics; - rawGraphics.beginDraw(); - } - - - public void endRaw() { // ignore - if (raw != null) { - // for 3D, need to flush any geometry that's been stored for sorting - // (particularly if the ENABLE_DEPTH_SORT hint is set) - flush(); - - // just like beginDraw, this will have to be called because - // endDraw() will be happening outside of draw() - raw.endDraw(); - raw.dispose(); - raw = null; - } - } - - - - ////////////////////////////////////////////////////////////// - - // WARNINGS and EXCEPTIONS - - - static protected HashMap warnings; - - - /** - * Show a renderer error, and keep track of it so that it's only shown once. - * @param msg the error message (which will be stored for later comparison) - */ - static public void showWarning(String msg) { // ignore - if (warnings == null) { - warnings = new HashMap(); - } - if (!warnings.containsKey(msg)) { - System.err.println(msg); - warnings.put(msg, new Object()); - } - } - - - /** - * Display a warning that the specified method is only available with 3D. - * @param method The method name (no parentheses) - */ - static protected void showDepthWarning(String method) { - showWarning(method + "() can only be used with a renderer that " + - "supports 3D, such as P3D or OPENGL."); - } - - - /** - * Display a warning that the specified method that takes x, y, z parameters - * can only be used with x and y parameters in this renderer. - * @param method The method name (no parentheses) - */ - static protected void showDepthWarningXYZ(String method) { - showWarning(method + "() with x, y, and z coordinates " + - "can only be used with a renderer that " + - "supports 3D, such as P3D or OPENGL. " + - "Use a version without a z-coordinate instead."); - } - - - /** - * Display a warning that the specified method is simply unavailable. - */ - static protected void showMethodWarning(String method) { - showWarning(method + "() is not available with this renderer."); - } - - - /** - * Error that a particular variation of a method is unavailable (even though - * other variations are). For instance, if vertex(x, y, u, v) is not - * available, but vertex(x, y) is just fine. - */ - static protected void showVariationWarning(String str) { - showWarning(str + " is not available with this renderer."); - } - - - /** - * Display a warning that the specified method is not implemented, meaning - * that it could be either a completely missing function, although other - * variations of it may still work properly. - */ - static protected void showMissingWarning(String method) { - showWarning(method + "(), or this particular variation of it, " + - "is not available with this renderer."); - } - - - /** - * Show an renderer-related exception that halts the program. Currently just - * wraps the message as a RuntimeException and throws it, but might do - * something more specific might be used in the future. - */ - static public void showException(String msg) { // ignore - throw new RuntimeException(msg); - } - - - /** - * Throw an exeption that halts the program because textFont() has not been - * used prior to the specified method. - */ - static protected void showTextFontException(String method) { - throw new RuntimeException("Use textFont() before " + method + "()"); - } - - - - ////////////////////////////////////////////////////////////// - - // RENDERER SUPPORT QUERIES - - - /** - * Return true if this renderer should be drawn to the screen. Defaults to - * returning true, since nearly all renderers are on-screen beasts. But can - * be overridden for subclasses like PDF so that a window doesn't open up. - *

- * A better name? showFrame, displayable, isVisible, visible, shouldDisplay, - * what to call this? - */ - public boolean displayable() { - return true; - } - - - /** - * Return true if this renderer supports 2D drawing. Defaults to true. - */ - public boolean is2D() { - return true; - } - - - /** - * Return true if this renderer supports 2D drawing. Defaults to true. - */ - public boolean is3D() { - return false; - } -} diff --git a/core/preproc/demo/PImage.java b/core/preproc/demo/PImage.java deleted file mode 100644 index 9dd126e4b..000000000 --- a/core/preproc/demo/PImage.java +++ /dev/null @@ -1,2713 +0,0 @@ -/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */ - -/* - Part of the Processing project - http://processing.org - - Copyright (c) 2004-08 Ben Fry and Casey Reas - Copyright (c) 2001-04 Massachusetts Institute of Technology - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General - Public License along with this library; if not, write to the - Free Software Foundation, Inc., 59 Temple Place, Suite 330, - Boston, MA 02111-1307 USA -*/ - -package processing.core; - -import java.awt.image.*; -import java.io.*; -import java.util.HashMap; - -import javax.imageio.ImageIO; - - -/** - * Storage class for pixel data. This is the base class for most image and - * pixel information, such as PGraphics and the video library classes. - *

- * Code for copying, resizing, scaling, and blending contributed - * by toxi. - *

- */ -public class PImage implements PConstants, Cloneable { - - /** - * Format for this image, one of RGB, ARGB or ALPHA. - * note that RGB images still require 0xff in the high byte - * because of how they'll be manipulated by other functions - */ - public int format; - - public int[] pixels; - public int width, height; - - /** - * Path to parent object that will be used with save(). - * This prevents users from needing savePath() to use PImage.save(). - */ - public PApplet parent; - - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - - /** for subclasses that need to store info about the image */ - protected HashMap cacheMap; - - - /** modified portion of the image */ - protected boolean modified; - protected int mx1, my1, mx2, my2; - - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - - // private fields - private int fracU, ifU, fracV, ifV, u1, u2, v1, v2, sX, sY, iw, iw1, ih1; - private int ul, ll, ur, lr, cUL, cLL, cUR, cLR; - private int srcXOffset, srcYOffset; - private int r, g, b, a; - private int[] srcBuffer; - - // fixed point precision is limited to 15 bits!! - static final int PRECISIONB = 15; - static final int PRECISIONF = 1 << PRECISIONB; - static final int PREC_MAXVAL = PRECISIONF-1; - static final int PREC_ALPHA_SHIFT = 24-PRECISIONB; - static final int PREC_RED_SHIFT = 16-PRECISIONB; - - // internal kernel stuff for the gaussian blur filter - private int blurRadius; - private int blurKernelSize; - private int[] blurKernel; - private int[][] blurMult; - - - ////////////////////////////////////////////////////////////// - - - /** - * Create an empty image object, set its format to RGB. - * The pixel array is not allocated. - */ - public PImage() { - format = ARGB; // default to ARGB images for release 0116 -// cache = null; - } - - - /** - * Create a new RGB (alpha ignored) image of a specific size. - * All pixels are set to zero, meaning black, but since the - * alpha is zero, it will be transparent. - */ - public PImage(int width, int height) { - init(width, height, RGB); - - // toxi: is it maybe better to init the image with max alpha enabled? - //for(int i=0; i(); - cacheMap.put(parent, storage); - } - - - /** - * Get cache storage data for the specified renderer. Because each renderer - * will cache data in different formats, it's necessary to store cache data - * keyed by the renderer object. Otherwise, attempting to draw the same - * image to both a PGraphicsJava2D and a PGraphicsOpenGL will cause errors. - * @param parent The PGraphics object (or any object, really) associated - * @return data stored for the specified parent - */ - public Object getCache(Object parent) { - if (cacheMap == null) return null; - return cacheMap.get(parent); - } - - - /** - * Remove information associated with this renderer from the cache, if any. - * @param parent The PGraphics object whose cache data should be removed - */ - public void removeCache(Object parent) { - if (cacheMap != null) { - cacheMap.remove(parent); - } - } - - - - ////////////////////////////////////////////////////////////// - - // MARKING IMAGE AS MODIFIED / FOR USE w/ GET/SET - - - public boolean isModified() { // ignore - return modified; - } - - - public void setModified() { // ignore - modified = true; - } - - - public void setModified(boolean m) { // ignore - modified = m; - } - - - /** - * Call this when you want to mess with the pixels[] array. - *

- * For subclasses where the pixels[] buffer isn't set by default, - * this should copy all data into the pixels[] array - */ - public void loadPixels() { // ignore - } - - - /** - * Call this when finished messing with the pixels[] array. - *

- * Mark all pixels as needing update. - */ - public void updatePixels() { // ignore - updatePixelsImpl(0, 0, width, height); - } - - - /** - * Mark the pixels in this region as needing an update. - *

- * This is not currently used by any of the renderers, however the api - * is structured this way in the hope of being able to use this to - * speed things up in the future. - */ - public void updatePixels(int x, int y, int w, int h) { // ignore -// if (imageMode == CORNER) { // x2, y2 are w/h -// x2 += x1; -// y2 += y1; -// -// } else if (imageMode == CENTER) { -// x1 -= x2 / 2; -// y1 -= y2 / 2; -// x2 += x1; -// y2 += y1; -// } - updatePixelsImpl(x, y, w, h); - } - - - protected void updatePixelsImpl(int x, int y, int w, int h) { - int x2 = x + w; - int y2 = y + h; - - if (!modified) { - mx1 = x; - mx2 = x2; - my1 = y; - my2 = y2; - modified = true; - - } else { - if (x < mx1) mx1 = x; - if (x > mx2) mx2 = x; - if (y < my1) my1 = y; - if (y > my2) my2 = y; - - if (x2 < mx1) mx1 = x2; - if (x2 > mx2) mx2 = x2; - if (y2 < my1) my1 = y2; - if (y2 > my2) my2 = y2; - } - } - - - - ////////////////////////////////////////////////////////////// - - // COPYING IMAGE DATA - - - /** - * Duplicate an image, returns new PImage object. - * The pixels[] array for the new object will be unique - * and recopied from the source image. This is implemented as an - * override of Object.clone(). We recommend using get() instead, - * because it prevents you from needing to catch the - * CloneNotSupportedException, and from doing a cast from the result. - */ - public Object clone() throws CloneNotSupportedException { // ignore - PImage c = (PImage) super.clone(); - - // super.clone() will only copy the reference to the pixels - // array, so this will do a proper duplication of it instead. - c.pixels = new int[width * height]; - System.arraycopy(pixels, 0, c.pixels, 0, pixels.length); - - // return the goods - return c; - } - - - /** - * Resize this image to a new width and height. - * Use 0 for wide or high to make that dimension scale proportionally. - */ - public void resize(int wide, int high) { // ignore - // Make sure that the pixels[] array is valid - loadPixels(); - - if (wide <= 0 && high <= 0) { - width = 0; // Gimme a break, don't waste my time - height = 0; - pixels = new int[0]; - - } else { - if (wide == 0) { // Use height to determine relative size - float diff = (float) high / (float) height; - wide = (int) (width * diff); - } else if (high == 0) { // Use the width to determine relative size - float diff = (float) wide / (float) width; - high = (int) (height * diff); - } - PImage temp = new PImage(wide, high, this.format); - temp.copy(this, 0, 0, width, height, 0, 0, wide, high); - this.width = wide; - this.height = high; - this.pixels = temp.pixels; - } - // Mark the pixels array as altered - updatePixels(); - } - - - - ////////////////////////////////////////////////////////////// - - // GET/SET PIXELS - - - /** - * Returns an ARGB "color" type (a packed 32 bit int with the color. - * If the coordinate is outside the image, zero is returned - * (black, but completely transparent). - *

- * If the image is in RGB format (i.e. on a PVideo object), - * the value will get its high bits set, just to avoid cases where - * they haven't been set already. - *

- * If the image is in ALPHA format, this returns a white with its - * alpha value set. - *

- * This function is included primarily for beginners. It is quite - * slow because it has to check to see if the x, y that was provided - * is inside the bounds, and then has to check to see what image - * type it is. If you want things to be more efficient, access the - * pixels[] array directly. - */ - public int get(int x, int y) { - if ((x < 0) || (y < 0) || (x >= width) || (y >= height)) return 0; - - switch (format) { - case RGB: - return pixels[y*width + x] | 0xff000000; - - case ARGB: - return pixels[y*width + x]; - - case ALPHA: - return (pixels[y*width + x] << 24) | 0xffffff; - } - return 0; - } - - - /** - * Grab a subsection of a PImage, and copy it into a fresh PImage. - * As of release 0149, no longer honors imageMode() for the coordinates. - */ - public PImage get(int x, int y, int w, int h) { - /* - if (imageMode == CORNERS) { // if CORNER, do nothing - //x2 += x1; y2 += y1; - // w/h are x2/y2 in this case, bring em down to size - w = (w - x); - h = (h - y); - } else if (imageMode == CENTER) { - x -= w/2; - y -= h/2; - } - */ - - if (x < 0) { - w += x; // clip off the left edge - x = 0; - } - if (y < 0) { - h += y; // clip off some of the height - y = 0; - } - - if (x + w > width) w = width - x; - if (y + h > height) h = height - y; - - return getImpl(x, y, w, h); - } - - - /** - * Internal function to actually handle getting a block of pixels that - * has already been properly cropped to a valid region. That is, x/y/w/h - * are guaranteed to be inside the image space, so the implementation can - * use the fastest possible pixel copying method. - */ - protected PImage getImpl(int x, int y, int w, int h) { - PImage newbie = new PImage(w, h, format); - newbie.parent = parent; - - int index = y*width + x; - int index2 = 0; - for (int row = y; row < y+h; row++) { - System.arraycopy(pixels, index, newbie.pixels, index2, w); - index += width; - index2 += w; - } - return newbie; - } - - - /** - * Returns a copy of this PImage. Equivalent to get(0, 0, width, height). - */ - public PImage get() { - try { - PImage clone = (PImage) clone(); - // don't want to pass this down to the others - // http://dev.processing.org/bugs/show_bug.cgi?id=1245 - clone.cacheMap = null; - return clone; - } catch (CloneNotSupportedException e) { - return null; - } - } - - - /** - * Set a single pixel to the specified color. - */ - public void set(int x, int y, int c) { - if ((x < 0) || (y < 0) || (x >= width) || (y >= height)) return; - pixels[y*width + x] = c; - updatePixelsImpl(x, y, x+1, y+1); // slow? - } - - - /** - * Efficient method of drawing an image's pixels directly to this surface. - * No variations are employed, meaning that any scale, tint, or imageMode - * settings will be ignored. - */ - public void set(int x, int y, PImage src) { - int sx = 0; - int sy = 0; - int sw = src.width; - int sh = src.height; - -// if (imageMode == CENTER) { -// x -= src.width/2; -// y -= src.height/2; -// } - if (x < 0) { // off left edge - sx -= x; - sw += x; - x = 0; - } - if (y < 0) { // off top edge - sy -= y; - sh += y; - y = 0; - } - if (x + sw > width) { // off right edge - sw = width - x; - } - if (y + sh > height) { // off bottom edge - sh = height - y; - } - - // this could be nonexistant - if ((sw <= 0) || (sh <= 0)) return; - - setImpl(x, y, sx, sy, sw, sh, src); - } - - - /** - * Internal function to actually handle setting a block of pixels that - * has already been properly cropped from the image to a valid region. - */ - protected void setImpl(int dx, int dy, int sx, int sy, int sw, int sh, - PImage src) { - int srcOffset = sy * src.width + sx; - int dstOffset = dy * width + dx; - - for (int y = sy; y < sy + sh; y++) { - System.arraycopy(src.pixels, srcOffset, pixels, dstOffset, sw); - srcOffset += src.width; - dstOffset += width; - } - updatePixelsImpl(sx, sy, sx+sw, sy+sh); - } - - - - ////////////////////////////////////////////////////////////// - - // ALPHA CHANNEL - - - /** - * Set alpha channel for an image. Black colors in the source - * image will make the destination image completely transparent, - * and white will make things fully opaque. Gray values will - * be in-between steps. - *

- * Strictly speaking the "blue" value from the source image is - * used as the alpha color. For a fully grayscale image, this - * is correct, but for a color image it's not 100% accurate. - * For a more accurate conversion, first use filter(GRAY) - * which will make the image into a "correct" grayscake by - * performing a proper luminance-based conversion. - */ - public void mask(int alpha[]) { - loadPixels(); - // don't execute if mask image is different size - if (alpha.length != pixels.length) { - throw new RuntimeException("The PImage used with mask() must be " + - "the same size as the applet."); - } - for (int i = 0; i < pixels.length; i++) { - pixels[i] = ((alpha[i] & 0xff) << 24) | (pixels[i] & 0xffffff); - } - format = ARGB; - updatePixels(); - } - - - /** - * Set alpha channel for an image using another image as the source. - */ - public void mask(PImage alpha) { - mask(alpha.pixels); - } - - - - ////////////////////////////////////////////////////////////// - - // IMAGE FILTERS - - - /** - * Method to apply a variety of basic filters to this image. - *

- *

    - *
  • filter(BLUR) provides a basic blur. - *
  • filter(GRAY) converts the image to grayscale based on luminance. - *
  • filter(INVERT) will invert the color components in the image. - *
  • filter(OPAQUE) set all the high bits in the image to opaque - *
  • filter(THRESHOLD) converts the image to black and white. - *
  • filter(DILATE) grow white/light areas - *
  • filter(ERODE) shrink white/light areas - *
- * Luminance conversion code contributed by - * toxi - *

- * Gaussian blur code contributed by - * Mario Klingemann - */ - public void filter(int kind) { - loadPixels(); - - switch (kind) { - case BLUR: - // TODO write basic low-pass filter blur here - // what does photoshop do on the edges with this guy? - // better yet.. why bother? just use gaussian with radius 1 - filter(BLUR, 1); - break; - - case GRAY: - if (format == ALPHA) { - // for an alpha image, convert it to an opaque grayscale - for (int i = 0; i < pixels.length; i++) { - int col = 255 - pixels[i]; - pixels[i] = 0xff000000 | (col << 16) | (col << 8) | col; - } - format = RGB; - - } else { - // Converts RGB image data into grayscale using - // weighted RGB components, and keeps alpha channel intact. - // [toxi 040115] - for (int i = 0; i < pixels.length; i++) { - int col = pixels[i]; - // luminance = 0.3*red + 0.59*green + 0.11*blue - // 0.30 * 256 = 77 - // 0.59 * 256 = 151 - // 0.11 * 256 = 28 - int lum = (77*(col>>16&0xff) + 151*(col>>8&0xff) + 28*(col&0xff))>>8; - pixels[i] = (col & ALPHA_MASK) | lum<<16 | lum<<8 | lum; - } - } - break; - - case INVERT: - for (int i = 0; i < pixels.length; i++) { - //pixels[i] = 0xff000000 | - pixels[i] ^= 0xffffff; - } - break; - - case POSTERIZE: - throw new RuntimeException("Use filter(POSTERIZE, int levels) " + - "instead of filter(POSTERIZE)"); - - case RGB: - for (int i = 0; i < pixels.length; i++) { - pixels[i] |= 0xff000000; - } - format = RGB; - break; - - case THRESHOLD: - filter(THRESHOLD, 0.5f); - break; - - // [toxi20050728] added new filters - case ERODE: - dilate(true); - break; - - case DILATE: - dilate(false); - break; - } - updatePixels(); // mark as modified - } - - - /** - * Method to apply a variety of basic filters to this image. - * These filters all take a parameter. - *

- *

    - *
  • filter(BLUR, int radius) performs a gaussian blur of the - * specified radius. - *
  • filter(POSTERIZE, int levels) will posterize the image to - * between 2 and 255 levels. - *
  • filter(THRESHOLD, float center) allows you to set the - * center point for the threshold. It takes a value from 0 to 1.0. - *
- * Gaussian blur code contributed by - * Mario Klingemann - * and later updated by toxi for better speed. - */ - public void filter(int kind, float param) { - loadPixels(); - - switch (kind) { - case BLUR: - if (format == ALPHA) - blurAlpha(param); - else if (format == ARGB) - blurARGB(param); - else - blurRGB(param); - break; - - case GRAY: - throw new RuntimeException("Use filter(GRAY) instead of " + - "filter(GRAY, param)"); - - case INVERT: - throw new RuntimeException("Use filter(INVERT) instead of " + - "filter(INVERT, param)"); - - case OPAQUE: - throw new RuntimeException("Use filter(OPAQUE) instead of " + - "filter(OPAQUE, param)"); - - case POSTERIZE: - int levels = (int)param; - if ((levels < 2) || (levels > 255)) { - throw new RuntimeException("Levels must be between 2 and 255 for " + - "filter(POSTERIZE, levels)"); - } - int levels1 = levels - 1; - for (int i = 0; i < pixels.length; i++) { - int rlevel = (pixels[i] >> 16) & 0xff; - int glevel = (pixels[i] >> 8) & 0xff; - int blevel = pixels[i] & 0xff; - rlevel = (((rlevel * levels) >> 8) * 255) / levels1; - glevel = (((glevel * levels) >> 8) * 255) / levels1; - blevel = (((blevel * levels) >> 8) * 255) / levels1; - pixels[i] = ((0xff000000 & pixels[i]) | - (rlevel << 16) | - (glevel << 8) | - blevel); - } - break; - - case THRESHOLD: // greater than or equal to the threshold - int thresh = (int) (param * 255); - for (int i = 0; i < pixels.length; i++) { - int max = Math.max((pixels[i] & RED_MASK) >> 16, - Math.max((pixels[i] & GREEN_MASK) >> 8, - (pixels[i] & BLUE_MASK))); - pixels[i] = (pixels[i] & ALPHA_MASK) | - ((max < thresh) ? 0x000000 : 0xffffff); - } - break; - - // [toxi20050728] added new filters - case ERODE: - throw new RuntimeException("Use filter(ERODE) instead of " + - "filter(ERODE, param)"); - case DILATE: - throw new RuntimeException("Use filter(DILATE) instead of " + - "filter(DILATE, param)"); - } - updatePixels(); // mark as modified - } - - - /** - * Optimized code for building the blur kernel. - * further optimized blur code (approx. 15% for radius=20) - * bigger speed gains for larger radii (~30%) - * added support for various image types (ALPHA, RGB, ARGB) - * [toxi 050728] - */ - protected void buildBlurKernel(float r) { - int radius = (int) (r * 3.5f); - radius = (radius < 1) ? 1 : ((radius < 248) ? radius : 248); - if (blurRadius != radius) { - blurRadius = radius; - blurKernelSize = 1 + blurRadius<<1; - blurKernel = new int[blurKernelSize]; - blurMult = new int[blurKernelSize][256]; - - int bk,bki; - int[] bm,bmi; - - for (int i = 1, radiusi = radius - 1; i < radius; i++) { - blurKernel[radius+i] = blurKernel[radiusi] = bki = radiusi * radiusi; - bm=blurMult[radius+i]; - bmi=blurMult[radiusi--]; - for (int j = 0; j < 256; j++) - bm[j] = bmi[j] = bki*j; - } - bk = blurKernel[radius] = radius * radius; - bm = blurMult[radius]; - for (int j = 0; j < 256; j++) - bm[j] = bk*j; - } - } - - - protected void blurAlpha(float r) { - int sum, cb; - int read, ri, ym, ymi, bk0; - int b2[] = new int[pixels.length]; - int yi = 0; - - buildBlurKernel(r); - - for (int y = 0; y < height; y++) { - for (int x = 0; x < width; x++) { - //cb = cg = cr = sum = 0; - cb = sum = 0; - read = x - blurRadius; - if (read<0) { - bk0=-read; - read=0; - } else { - if (read >= width) - break; - bk0=0; - } - for (int i = bk0; i < blurKernelSize; i++) { - if (read >= width) - break; - int c = pixels[read + yi]; - int[] bm=blurMult[i]; - cb += bm[c & BLUE_MASK]; - sum += blurKernel[i]; - read++; - } - ri = yi + x; - b2[ri] = cb / sum; - } - yi += width; - } - - yi = 0; - ym=-blurRadius; - ymi=ym*width; - - for (int y = 0; y < height; y++) { - for (int x = 0; x < width; x++) { - //cb = cg = cr = sum = 0; - cb = sum = 0; - if (ym<0) { - bk0 = ri = -ym; - read = x; - } else { - if (ym >= height) - break; - bk0 = 0; - ri = ym; - read = x + ymi; - } - for (int i = bk0; i < blurKernelSize; i++) { - if (ri >= height) - break; - int[] bm=blurMult[i]; - cb += bm[b2[read]]; - sum += blurKernel[i]; - ri++; - read += width; - } - pixels[x+yi] = (cb/sum); - } - yi += width; - ymi += width; - ym++; - } - } - - - protected void blurRGB(float r) { - int sum, cr, cg, cb; //, k; - int /*pixel,*/ read, ri, /*roff,*/ ym, ymi, /*riw,*/ bk0; - int r2[] = new int[pixels.length]; - int g2[] = new int[pixels.length]; - int b2[] = new int[pixels.length]; - int yi = 0; - - buildBlurKernel(r); - - for (int y = 0; y < height; y++) { - for (int x = 0; x < width; x++) { - cb = cg = cr = sum = 0; - read = x - blurRadius; - if (read<0) { - bk0=-read; - read=0; - } else { - if (read >= width) - break; - bk0=0; - } - for (int i = bk0; i < blurKernelSize; i++) { - if (read >= width) - break; - int c = pixels[read + yi]; - int[] bm=blurMult[i]; - cr += bm[(c & RED_MASK) >> 16]; - cg += bm[(c & GREEN_MASK) >> 8]; - cb += bm[c & BLUE_MASK]; - sum += blurKernel[i]; - read++; - } - ri = yi + x; - r2[ri] = cr / sum; - g2[ri] = cg / sum; - b2[ri] = cb / sum; - } - yi += width; - } - - yi = 0; - ym=-blurRadius; - ymi=ym*width; - - for (int y = 0; y < height; y++) { - for (int x = 0; x < width; x++) { - cb = cg = cr = sum = 0; - if (ym<0) { - bk0 = ri = -ym; - read = x; - } else { - if (ym >= height) - break; - bk0 = 0; - ri = ym; - read = x + ymi; - } - for (int i = bk0; i < blurKernelSize; i++) { - if (ri >= height) - break; - int[] bm=blurMult[i]; - cr += bm[r2[read]]; - cg += bm[g2[read]]; - cb += bm[b2[read]]; - sum += blurKernel[i]; - ri++; - read += width; - } - pixels[x+yi] = 0xff000000 | (cr/sum)<<16 | (cg/sum)<<8 | (cb/sum); - } - yi += width; - ymi += width; - ym++; - } - } - - - protected void blurARGB(float r) { - int sum, cr, cg, cb, ca; - int /*pixel,*/ read, ri, /*roff,*/ ym, ymi, /*riw,*/ bk0; - int wh = pixels.length; - int r2[] = new int[wh]; - int g2[] = new int[wh]; - int b2[] = new int[wh]; - int a2[] = new int[wh]; - int yi = 0; - - buildBlurKernel(r); - - for (int y = 0; y < height; y++) { - for (int x = 0; x < width; x++) { - cb = cg = cr = ca = sum = 0; - read = x - blurRadius; - if (read<0) { - bk0=-read; - read=0; - } else { - if (read >= width) - break; - bk0=0; - } - for (int i = bk0; i < blurKernelSize; i++) { - if (read >= width) - break; - int c = pixels[read + yi]; - int[] bm=blurMult[i]; - ca += bm[(c & ALPHA_MASK) >>> 24]; - cr += bm[(c & RED_MASK) >> 16]; - cg += bm[(c & GREEN_MASK) >> 8]; - cb += bm[c & BLUE_MASK]; - sum += blurKernel[i]; - read++; - } - ri = yi + x; - a2[ri] = ca / sum; - r2[ri] = cr / sum; - g2[ri] = cg / sum; - b2[ri] = cb / sum; - } - yi += width; - } - - yi = 0; - ym=-blurRadius; - ymi=ym*width; - - for (int y = 0; y < height; y++) { - for (int x = 0; x < width; x++) { - cb = cg = cr = ca = sum = 0; - if (ym<0) { - bk0 = ri = -ym; - read = x; - } else { - if (ym >= height) - break; - bk0 = 0; - ri = ym; - read = x + ymi; - } - for (int i = bk0; i < blurKernelSize; i++) { - if (ri >= height) - break; - int[] bm=blurMult[i]; - ca += bm[a2[read]]; - cr += bm[r2[read]]; - cg += bm[g2[read]]; - cb += bm[b2[read]]; - sum += blurKernel[i]; - ri++; - read += width; - } - pixels[x+yi] = (ca/sum)<<24 | (cr/sum)<<16 | (cg/sum)<<8 | (cb/sum); - } - yi += width; - ymi += width; - ym++; - } - } - - - /** - * Generic dilate/erode filter using luminance values - * as decision factor. [toxi 050728] - */ - protected void dilate(boolean isInverted) { - int currIdx=0; - int maxIdx=pixels.length; - int[] out=new int[maxIdx]; - - if (!isInverted) { - // erosion (grow light areas) - while (currIdx=maxRowIdx) - idxRight=currIdx; - if (idxUp<0) - idxUp=0; - if (idxDown>=maxIdx) - idxDown=currIdx; - - int colUp=pixels[idxUp]; - int colLeft=pixels[idxLeft]; - int colDown=pixels[idxDown]; - int colRight=pixels[idxRight]; - - // compute luminance - int currLum = - 77*(colOrig>>16&0xff) + 151*(colOrig>>8&0xff) + 28*(colOrig&0xff); - int lumLeft = - 77*(colLeft>>16&0xff) + 151*(colLeft>>8&0xff) + 28*(colLeft&0xff); - int lumRight = - 77*(colRight>>16&0xff) + 151*(colRight>>8&0xff) + 28*(colRight&0xff); - int lumUp = - 77*(colUp>>16&0xff) + 151*(colUp>>8&0xff) + 28*(colUp&0xff); - int lumDown = - 77*(colDown>>16&0xff) + 151*(colDown>>8&0xff) + 28*(colDown&0xff); - - if (lumLeft>currLum) { - colOut=colLeft; - currLum=lumLeft; - } - if (lumRight>currLum) { - colOut=colRight; - currLum=lumRight; - } - if (lumUp>currLum) { - colOut=colUp; - currLum=lumUp; - } - if (lumDown>currLum) { - colOut=colDown; - currLum=lumDown; - } - out[currIdx++]=colOut; - } - } - } else { - // dilate (grow dark areas) - while (currIdx=maxRowIdx) - idxRight=currIdx; - if (idxUp<0) - idxUp=0; - if (idxDown>=maxIdx) - idxDown=currIdx; - - int colUp=pixels[idxUp]; - int colLeft=pixels[idxLeft]; - int colDown=pixels[idxDown]; - int colRight=pixels[idxRight]; - - // compute luminance - int currLum = - 77*(colOrig>>16&0xff) + 151*(colOrig>>8&0xff) + 28*(colOrig&0xff); - int lumLeft = - 77*(colLeft>>16&0xff) + 151*(colLeft>>8&0xff) + 28*(colLeft&0xff); - int lumRight = - 77*(colRight>>16&0xff) + 151*(colRight>>8&0xff) + 28*(colRight&0xff); - int lumUp = - 77*(colUp>>16&0xff) + 151*(colUp>>8&0xff) + 28*(colUp&0xff); - int lumDown = - 77*(colDown>>16&0xff) + 151*(colDown>>8&0xff) + 28*(colDown&0xff); - - if (lumLeft - *
  • REPLACE - destination colour equals colour of source pixel: C = A. - * Sometimes called "Normal" or "Copy" in other software. - * - *
  • BLEND - linear interpolation of colours: - * C = A*factor + B - * - *
  • ADD - additive blending with white clip: - * C = min(A*factor + B, 255). - * Clipped to 0..255, Photoshop calls this "Linear Burn", - * and Director calls it "Add Pin". - * - *
  • SUBTRACT - substractive blend with black clip: - * C = max(B - A*factor, 0). - * Clipped to 0..255, Photoshop calls this "Linear Dodge", - * and Director calls it "Subtract Pin". - * - *
  • DARKEST - only the darkest colour succeeds: - * C = min(A*factor, B). - * Illustrator calls this "Darken". - * - *
  • LIGHTEST - only the lightest colour succeeds: - * C = max(A*factor, B). - * Illustrator calls this "Lighten". - * - *
  • DIFFERENCE - subtract colors from underlying image. - * - *
  • EXCLUSION - similar to DIFFERENCE, but less extreme. - * - *
  • MULTIPLY - Multiply the colors, result will always be darker. - * - *
  • SCREEN - Opposite multiply, uses inverse values of the colors. - * - *
  • OVERLAY - A mix of MULTIPLY and SCREEN. Multiplies dark values, - * and screens light values. - * - *
  • HARD_LIGHT - SCREEN when greater than 50% gray, MULTIPLY when lower. - * - *
  • SOFT_LIGHT - Mix of DARKEST and LIGHTEST. - * Works like OVERLAY, but not as harsh. - * - *
  • DODGE - Lightens light tones and increases contrast, ignores darks. - * Called "Color Dodge" in Illustrator and Photoshop. - * - *
  • BURN - Darker areas are applied, increasing contrast, ignores lights. - * Called "Color Burn" in Illustrator and Photoshop. - * - *

    A useful reference for blending modes and their algorithms can be - * found in the SVG - * specification.

    - *

    It is important to note that Processing uses "fast" code, not - * necessarily "correct" code. No biggie, most software does. A nitpicker - * can find numerous "off by 1 division" problems in the blend code where - * >>8 or >>7 is used when strictly speaking - * /255.0 or /127.0 should have been used.

    - *

    For instance, exclusion (not intended for real-time use) reads - * r1 + r2 - ((2 * r1 * r2) / 255) because 255 == 1.0 - * not 256 == 1.0. In other words, (255*255)>>8 is not - * the same as (255*255)/255. But for real-time use the shifts - * are preferrable, and the difference is insignificant for applications - * built with Processing.

    - */ - static public int blendColor(int c1, int c2, int mode) { - switch (mode) { - case REPLACE: return c2; - case BLEND: return blend_blend(c1, c2); - - case ADD: return blend_add_pin(c1, c2); - case SUBTRACT: return blend_sub_pin(c1, c2); - - case LIGHTEST: return blend_lightest(c1, c2); - case DARKEST: return blend_darkest(c1, c2); - - case DIFFERENCE: return blend_difference(c1, c2); - case EXCLUSION: return blend_exclusion(c1, c2); - - case MULTIPLY: return blend_multiply(c1, c2); - case SCREEN: return blend_screen(c1, c2); - - case HARD_LIGHT: return blend_hard_light(c1, c2); - case SOFT_LIGHT: return blend_soft_light(c1, c2); - case OVERLAY: return blend_overlay(c1, c2); - - case DODGE: return blend_dodge(c1, c2); - case BURN: return blend_burn(c1, c2); - } - return 0; - } - - - /** - * Blends one area of this image to another area. - * @see processing.core.PImage#blendColor(int,int,int) - */ - public void blend(int sx, int sy, int sw, int sh, - int dx, int dy, int dw, int dh, int mode) { - blend(this, sx, sy, sw, sh, dx, dy, dw, dh, mode); - } - - - /** - * Copies area of one image into another PImage object. - * @see processing.core.PImage#blendColor(int,int,int) - */ - public void blend(PImage src, - int sx, int sy, int sw, int sh, - int dx, int dy, int dw, int dh, int mode) { - /* - if (imageMode == CORNER) { // if CORNERS, do nothing - sx2 += sx1; - sy2 += sy1; - dx2 += dx1; - dy2 += dy1; - - } else if (imageMode == CENTER) { - sx1 -= sx2 / 2f; - sy1 -= sy2 / 2f; - sx2 += sx1; - sy2 += sy1; - dx1 -= dx2 / 2f; - dy1 -= dy2 / 2f; - dx2 += dx1; - dy2 += dy1; - } - */ - int sx2 = sx + sw; - int sy2 = sy + sh; - int dx2 = dx + dw; - int dy2 = dy + dh; - - loadPixels(); - if (src == this) { - if (intersect(sx, sy, sx2, sy2, dx, dy, dx2, dy2)) { - blit_resize(get(sx, sy, sx2 - sx, sy2 - sy), - 0, 0, sx2 - sx - 1, sy2 - sy - 1, - pixels, width, height, dx, dy, dx2, dy2, mode); - } else { - // same as below, except skip the loadPixels() because it'd be redundant - blit_resize(src, sx, sy, sx2, sy2, - pixels, width, height, dx, dy, dx2, dy2, mode); - } - } else { - src.loadPixels(); - blit_resize(src, sx, sy, sx2, sy2, - pixels, width, height, dx, dy, dx2, dy2, mode); - //src.updatePixels(); - } - updatePixels(); - } - - - /** - * Check to see if two rectangles intersect one another - */ - private boolean intersect(int sx1, int sy1, int sx2, int sy2, - int dx1, int dy1, int dx2, int dy2) { - int sw = sx2 - sx1 + 1; - int sh = sy2 - sy1 + 1; - int dw = dx2 - dx1 + 1; - int dh = dy2 - dy1 + 1; - - if (dx1 < sx1) { - dw += dx1 - sx1; - if (dw > sw) { - dw = sw; - } - } else { - int w = sw + sx1 - dx1; - if (dw > w) { - dw = w; - } - } - if (dy1 < sy1) { - dh += dy1 - sy1; - if (dh > sh) { - dh = sh; - } - } else { - int h = sh + sy1 - dy1; - if (dh > h) { - dh = h; - } - } - return !(dw <= 0 || dh <= 0); - } - - - ////////////////////////////////////////////////////////////// - - - /** - * Internal blitter/resizer/copier from toxi. - * Uses bilinear filtering if smooth() has been enabled - * 'mode' determines the blending mode used in the process. - */ - private void blit_resize(PImage img, - int srcX1, int srcY1, int srcX2, int srcY2, - int[] destPixels, int screenW, int screenH, - int destX1, int destY1, int destX2, int destY2, - int mode) { - if (srcX1 < 0) srcX1 = 0; - if (srcY1 < 0) srcY1 = 0; - if (srcX2 >= img.width) srcX2 = img.width - 1; - if (srcY2 >= img.height) srcY2 = img.height - 1; - - int srcW = srcX2 - srcX1; - int srcH = srcY2 - srcY1; - int destW = destX2 - destX1; - int destH = destY2 - destY1; - - boolean smooth = true; // may as well go with the smoothing these days - - if (!smooth) { - srcW++; srcH++; - } - - if (destW <= 0 || destH <= 0 || - srcW <= 0 || srcH <= 0 || - destX1 >= screenW || destY1 >= screenH || - srcX1 >= img.width || srcY1 >= img.height) { - return; - } - - int dx = (int) (srcW / (float) destW * PRECISIONF); - int dy = (int) (srcH / (float) destH * PRECISIONF); - - srcXOffset = (int) (destX1 < 0 ? -destX1 * dx : srcX1 * PRECISIONF); - srcYOffset = (int) (destY1 < 0 ? -destY1 * dy : srcY1 * PRECISIONF); - - if (destX1 < 0) { - destW += destX1; - destX1 = 0; - } - if (destY1 < 0) { - destH += destY1; - destY1 = 0; - } - - destW = low(destW, screenW - destX1); - destH = low(destH, screenH - destY1); - - int destOffset = destY1 * screenW + destX1; - srcBuffer = img.pixels; - - if (smooth) { - // use bilinear filtering - iw = img.width; - iw1 = img.width - 1; - ih1 = img.height - 1; - - switch (mode) { - - case BLEND: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - // davbol - renamed old blend_multiply to blend_blend - destPixels[destOffset + x] = - blend_blend(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case ADD: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_add_pin(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case SUBTRACT: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_sub_pin(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case LIGHTEST: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_lightest(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case DARKEST: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_darkest(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case REPLACE: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = filter_bilinear(); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case DIFFERENCE: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_difference(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case EXCLUSION: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_exclusion(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case MULTIPLY: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_multiply(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case SCREEN: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_screen(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case OVERLAY: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_overlay(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case HARD_LIGHT: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_hard_light(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case SOFT_LIGHT: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_soft_light(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - // davbol - proposed 2007-01-09 - case DODGE: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_dodge(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case BURN: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_burn(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - } - - } else { - // nearest neighbour scaling (++fast!) - switch (mode) { - - case BLEND: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - // davbol - renamed old blend_multiply to blend_blend - destPixels[destOffset + x] = - blend_blend(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case ADD: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_add_pin(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case SUBTRACT: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_sub_pin(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case LIGHTEST: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_lightest(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case DARKEST: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_darkest(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case REPLACE: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = srcBuffer[sY + (sX >> PRECISIONB)]; - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case DIFFERENCE: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_difference(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case EXCLUSION: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_exclusion(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case MULTIPLY: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_multiply(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case SCREEN: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_screen(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case OVERLAY: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_overlay(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case HARD_LIGHT: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_hard_light(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case SOFT_LIGHT: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_soft_light(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - // davbol - proposed 2007-01-09 - case DODGE: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_dodge(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case BURN: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_burn(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - } - } - } - - - private void filter_new_scanline() { - sX = srcXOffset; - fracV = srcYOffset & PREC_MAXVAL; - ifV = PREC_MAXVAL - fracV; - v1 = (srcYOffset >> PRECISIONB) * iw; - v2 = low((srcYOffset >> PRECISIONB) + 1, ih1) * iw; - } - - - private int filter_bilinear() { - fracU = sX & PREC_MAXVAL; - ifU = PREC_MAXVAL - fracU; - ul = (ifU * ifV) >> PRECISIONB; - ll = (ifU * fracV) >> PRECISIONB; - ur = (fracU * ifV) >> PRECISIONB; - lr = (fracU * fracV) >> PRECISIONB; - u1 = (sX >> PRECISIONB); - u2 = low(u1 + 1, iw1); - - // get color values of the 4 neighbouring texels - cUL = srcBuffer[v1 + u1]; - cUR = srcBuffer[v1 + u2]; - cLL = srcBuffer[v2 + u1]; - cLR = srcBuffer[v2 + u2]; - - r = ((ul*((cUL&RED_MASK)>>16) + ll*((cLL&RED_MASK)>>16) + - ur*((cUR&RED_MASK)>>16) + lr*((cLR&RED_MASK)>>16)) - << PREC_RED_SHIFT) & RED_MASK; - - g = ((ul*(cUL&GREEN_MASK) + ll*(cLL&GREEN_MASK) + - ur*(cUR&GREEN_MASK) + lr*(cLR&GREEN_MASK)) - >>> PRECISIONB) & GREEN_MASK; - - b = (ul*(cUL&BLUE_MASK) + ll*(cLL&BLUE_MASK) + - ur*(cUR&BLUE_MASK) + lr*(cLR&BLUE_MASK)) - >>> PRECISIONB; - - a = ((ul*((cUL&ALPHA_MASK)>>>24) + ll*((cLL&ALPHA_MASK)>>>24) + - ur*((cUR&ALPHA_MASK)>>>24) + lr*((cLR&ALPHA_MASK)>>>24)) - << PREC_ALPHA_SHIFT) & ALPHA_MASK; - - return a | r | g | b; - } - - - - ////////////////////////////////////////////////////////////// - - // internal blending methods - - - private static int low(int a, int b) { - return (a < b) ? a : b; - } - - - private static int high(int a, int b) { - return (a > b) ? a : b; - } - - // davbol - added peg helper, equiv to constrain(n,0,255) - private static int peg(int n) { - return (n < 0) ? 0 : ((n > 255) ? 255 : n); - } - - private static int mix(int a, int b, int f) { - return a + (((b - a) * f) >> 8); - } - - - - ///////////////////////////////////////////////////////////// - - // BLEND MODE IMPLEMENTIONS - - - private static int blend_blend(int a, int b) { - int f = (b & ALPHA_MASK) >>> 24; - - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - mix(a & RED_MASK, b & RED_MASK, f) & RED_MASK | - mix(a & GREEN_MASK, b & GREEN_MASK, f) & GREEN_MASK | - mix(a & BLUE_MASK, b & BLUE_MASK, f)); - } - - - /** - * additive blend with clipping - */ - private static int blend_add_pin(int a, int b) { - int f = (b & ALPHA_MASK) >>> 24; - - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - low(((a & RED_MASK) + - ((b & RED_MASK) >> 8) * f), RED_MASK) & RED_MASK | - low(((a & GREEN_MASK) + - ((b & GREEN_MASK) >> 8) * f), GREEN_MASK) & GREEN_MASK | - low((a & BLUE_MASK) + - (((b & BLUE_MASK) * f) >> 8), BLUE_MASK)); - } - - - /** - * subtractive blend with clipping - */ - private static int blend_sub_pin(int a, int b) { - int f = (b & ALPHA_MASK) >>> 24; - - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - high(((a & RED_MASK) - ((b & RED_MASK) >> 8) * f), - GREEN_MASK) & RED_MASK | - high(((a & GREEN_MASK) - ((b & GREEN_MASK) >> 8) * f), - BLUE_MASK) & GREEN_MASK | - high((a & BLUE_MASK) - (((b & BLUE_MASK) * f) >> 8), 0)); - } - - - /** - * only returns the blended lightest colour - */ - private static int blend_lightest(int a, int b) { - int f = (b & ALPHA_MASK) >>> 24; - - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - high(a & RED_MASK, ((b & RED_MASK) >> 8) * f) & RED_MASK | - high(a & GREEN_MASK, ((b & GREEN_MASK) >> 8) * f) & GREEN_MASK | - high(a & BLUE_MASK, ((b & BLUE_MASK) * f) >> 8)); - } - - - /** - * only returns the blended darkest colour - */ - private static int blend_darkest(int a, int b) { - int f = (b & ALPHA_MASK) >>> 24; - - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - mix(a & RED_MASK, - low(a & RED_MASK, - ((b & RED_MASK) >> 8) * f), f) & RED_MASK | - mix(a & GREEN_MASK, - low(a & GREEN_MASK, - ((b & GREEN_MASK) >> 8) * f), f) & GREEN_MASK | - mix(a & BLUE_MASK, - low(a & BLUE_MASK, - ((b & BLUE_MASK) * f) >> 8), f)); - } - - - /** - * returns the absolute value of the difference of the input colors - * C = |A - B| - */ - private static int blend_difference(int a, int b) { - // setup (this portion will always be the same) - int f = (b & ALPHA_MASK) >>> 24; - int ar = (a & RED_MASK) >> 16; - int ag = (a & GREEN_MASK) >> 8; - int ab = (a & BLUE_MASK); - int br = (b & RED_MASK) >> 16; - int bg = (b & GREEN_MASK) >> 8; - int bb = (b & BLUE_MASK); - // formula: - int cr = (ar > br) ? (ar-br) : (br-ar); - int cg = (ag > bg) ? (ag-bg) : (bg-ag); - int cb = (ab > bb) ? (ab-bb) : (bb-ab); - // alpha blend (this portion will always be the same) - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - (peg(ar + (((cr - ar) * f) >> 8)) << 16) | - (peg(ag + (((cg - ag) * f) >> 8)) << 8) | - (peg(ab + (((cb - ab) * f) >> 8)) ) ); - } - - - /** - * Cousin of difference, algorithm used here is based on a Lingo version - * found here: http://www.mediamacros.com/item/item-1006687616/ - * (Not yet verified to be correct). - */ - private static int blend_exclusion(int a, int b) { - // setup (this portion will always be the same) - int f = (b & ALPHA_MASK) >>> 24; - int ar = (a & RED_MASK) >> 16; - int ag = (a & GREEN_MASK) >> 8; - int ab = (a & BLUE_MASK); - int br = (b & RED_MASK) >> 16; - int bg = (b & GREEN_MASK) >> 8; - int bb = (b & BLUE_MASK); - // formula: - int cr = ar + br - ((ar * br) >> 7); - int cg = ag + bg - ((ag * bg) >> 7); - int cb = ab + bb - ((ab * bb) >> 7); - // alpha blend (this portion will always be the same) - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - (peg(ar + (((cr - ar) * f) >> 8)) << 16) | - (peg(ag + (((cg - ag) * f) >> 8)) << 8) | - (peg(ab + (((cb - ab) * f) >> 8)) ) ); - } - - - /** - * returns the product of the input colors - * C = A * B - */ - private static int blend_multiply(int a, int b) { - // setup (this portion will always be the same) - int f = (b & ALPHA_MASK) >>> 24; - int ar = (a & RED_MASK) >> 16; - int ag = (a & GREEN_MASK) >> 8; - int ab = (a & BLUE_MASK); - int br = (b & RED_MASK) >> 16; - int bg = (b & GREEN_MASK) >> 8; - int bb = (b & BLUE_MASK); - // formula: - int cr = (ar * br) >> 8; - int cg = (ag * bg) >> 8; - int cb = (ab * bb) >> 8; - // alpha blend (this portion will always be the same) - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - (peg(ar + (((cr - ar) * f) >> 8)) << 16) | - (peg(ag + (((cg - ag) * f) >> 8)) << 8) | - (peg(ab + (((cb - ab) * f) >> 8)) ) ); - } - - - /** - * returns the inverse of the product of the inverses of the input colors - * (the inverse of multiply). C = 1 - (1-A) * (1-B) - */ - private static int blend_screen(int a, int b) { - // setup (this portion will always be the same) - int f = (b & ALPHA_MASK) >>> 24; - int ar = (a & RED_MASK) >> 16; - int ag = (a & GREEN_MASK) >> 8; - int ab = (a & BLUE_MASK); - int br = (b & RED_MASK) >> 16; - int bg = (b & GREEN_MASK) >> 8; - int bb = (b & BLUE_MASK); - // formula: - int cr = 255 - (((255 - ar) * (255 - br)) >> 8); - int cg = 255 - (((255 - ag) * (255 - bg)) >> 8); - int cb = 255 - (((255 - ab) * (255 - bb)) >> 8); - // alpha blend (this portion will always be the same) - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - (peg(ar + (((cr - ar) * f) >> 8)) << 16) | - (peg(ag + (((cg - ag) * f) >> 8)) << 8) | - (peg(ab + (((cb - ab) * f) >> 8)) ) ); - } - - - /** - * returns either multiply or screen for darker or lighter values of A - * (the inverse of hard light) - * C = - * A < 0.5 : 2 * A * B - * A >=0.5 : 1 - (2 * (255-A) * (255-B)) - */ - private static int blend_overlay(int a, int b) { - // setup (this portion will always be the same) - int f = (b & ALPHA_MASK) >>> 24; - int ar = (a & RED_MASK) >> 16; - int ag = (a & GREEN_MASK) >> 8; - int ab = (a & BLUE_MASK); - int br = (b & RED_MASK) >> 16; - int bg = (b & GREEN_MASK) >> 8; - int bb = (b & BLUE_MASK); - // formula: - int cr = (ar < 128) ? ((ar*br)>>7) : (255-(((255-ar)*(255-br))>>7)); - int cg = (ag < 128) ? ((ag*bg)>>7) : (255-(((255-ag)*(255-bg))>>7)); - int cb = (ab < 128) ? ((ab*bb)>>7) : (255-(((255-ab)*(255-bb))>>7)); - // alpha blend (this portion will always be the same) - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - (peg(ar + (((cr - ar) * f) >> 8)) << 16) | - (peg(ag + (((cg - ag) * f) >> 8)) << 8) | - (peg(ab + (((cb - ab) * f) >> 8)) ) ); - } - - - /** - * returns either multiply or screen for darker or lighter values of B - * (the inverse of overlay) - * C = - * B < 0.5 : 2 * A * B - * B >=0.5 : 1 - (2 * (255-A) * (255-B)) - */ - private static int blend_hard_light(int a, int b) { - // setup (this portion will always be the same) - int f = (b & ALPHA_MASK) >>> 24; - int ar = (a & RED_MASK) >> 16; - int ag = (a & GREEN_MASK) >> 8; - int ab = (a & BLUE_MASK); - int br = (b & RED_MASK) >> 16; - int bg = (b & GREEN_MASK) >> 8; - int bb = (b & BLUE_MASK); - // formula: - int cr = (br < 128) ? ((ar*br)>>7) : (255-(((255-ar)*(255-br))>>7)); - int cg = (bg < 128) ? ((ag*bg)>>7) : (255-(((255-ag)*(255-bg))>>7)); - int cb = (bb < 128) ? ((ab*bb)>>7) : (255-(((255-ab)*(255-bb))>>7)); - // alpha blend (this portion will always be the same) - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - (peg(ar + (((cr - ar) * f) >> 8)) << 16) | - (peg(ag + (((cg - ag) * f) >> 8)) << 8) | - (peg(ab + (((cb - ab) * f) >> 8)) ) ); - } - - - /** - * returns the inverse multiply plus screen, which simplifies to - * C = 2AB + A^2 - 2A^2B - */ - private static int blend_soft_light(int a, int b) { - // setup (this portion will always be the same) - int f = (b & ALPHA_MASK) >>> 24; - int ar = (a & RED_MASK) >> 16; - int ag = (a & GREEN_MASK) >> 8; - int ab = (a & BLUE_MASK); - int br = (b & RED_MASK) >> 16; - int bg = (b & GREEN_MASK) >> 8; - int bb = (b & BLUE_MASK); - // formula: - int cr = ((ar*br)>>7) + ((ar*ar)>>8) - ((ar*ar*br)>>15); - int cg = ((ag*bg)>>7) + ((ag*ag)>>8) - ((ag*ag*bg)>>15); - int cb = ((ab*bb)>>7) + ((ab*ab)>>8) - ((ab*ab*bb)>>15); - // alpha blend (this portion will always be the same) - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - (peg(ar + (((cr - ar) * f) >> 8)) << 16) | - (peg(ag + (((cg - ag) * f) >> 8)) << 8) | - (peg(ab + (((cb - ab) * f) >> 8)) ) ); - } - - - /** - * Returns the first (underlay) color divided by the inverse of - * the second (overlay) color. C = A / (255-B) - */ - private static int blend_dodge(int a, int b) { - // setup (this portion will always be the same) - int f = (b & ALPHA_MASK) >>> 24; - int ar = (a & RED_MASK) >> 16; - int ag = (a & GREEN_MASK) >> 8; - int ab = (a & BLUE_MASK); - int br = (b & RED_MASK) >> 16; - int bg = (b & GREEN_MASK) >> 8; - int bb = (b & BLUE_MASK); - // formula: - int cr = (br==255) ? 255 : peg((ar << 8) / (255 - br)); // division requires pre-peg()-ing - int cg = (bg==255) ? 255 : peg((ag << 8) / (255 - bg)); // " - int cb = (bb==255) ? 255 : peg((ab << 8) / (255 - bb)); // " - // alpha blend (this portion will always be the same) - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - (peg(ar + (((cr - ar) * f) >> 8)) << 16) | - (peg(ag + (((cg - ag) * f) >> 8)) << 8) | - (peg(ab + (((cb - ab) * f) >> 8)) ) ); - } - - - /** - * returns the inverse of the inverse of the first (underlay) color - * divided by the second (overlay) color. C = 255 - (255-A) / B - */ - private static int blend_burn(int a, int b) { - // setup (this portion will always be the same) - int f = (b & ALPHA_MASK) >>> 24; - int ar = (a & RED_MASK) >> 16; - int ag = (a & GREEN_MASK) >> 8; - int ab = (a & BLUE_MASK); - int br = (b & RED_MASK) >> 16; - int bg = (b & GREEN_MASK) >> 8; - int bb = (b & BLUE_MASK); - // formula: - int cr = (br==0) ? 0 : 255 - peg(((255 - ar) << 8) / br); // division requires pre-peg()-ing - int cg = (bg==0) ? 0 : 255 - peg(((255 - ag) << 8) / bg); // " - int cb = (bb==0) ? 0 : 255 - peg(((255 - ab) << 8) / bb); // " - // alpha blend (this portion will always be the same) - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - (peg(ar + (((cr - ar) * f) >> 8)) << 16) | - (peg(ag + (((cg - ag) * f) >> 8)) << 8) | - (peg(ab + (((cb - ab) * f) >> 8)) ) ); - } - - - ////////////////////////////////////////////////////////////// - - // FILE I/O - - - static byte TIFF_HEADER[] = { - 77, 77, 0, 42, 0, 0, 0, 8, 0, 9, 0, -2, 0, 4, 0, 0, 0, 1, 0, 0, - 0, 0, 1, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 3, 0, 0, 0, 1, - 0, 0, 0, 0, 1, 2, 0, 3, 0, 0, 0, 3, 0, 0, 0, 122, 1, 6, 0, 3, 0, - 0, 0, 1, 0, 2, 0, 0, 1, 17, 0, 4, 0, 0, 0, 1, 0, 0, 3, 0, 1, 21, - 0, 3, 0, 0, 0, 1, 0, 3, 0, 0, 1, 22, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, - 1, 23, 0, 4, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 8 - }; - - - static final String TIFF_ERROR = - "Error: Processing can only read its own TIFF files."; - - static protected PImage loadTIFF(byte tiff[]) { - if ((tiff[42] != tiff[102]) || // width/height in both places - (tiff[43] != tiff[103])) { - System.err.println(TIFF_ERROR); - return null; - } - - int width = - ((tiff[30] & 0xff) << 8) | (tiff[31] & 0xff); - int height = - ((tiff[42] & 0xff) << 8) | (tiff[43] & 0xff); - - int count = - ((tiff[114] & 0xff) << 24) | - ((tiff[115] & 0xff) << 16) | - ((tiff[116] & 0xff) << 8) | - (tiff[117] & 0xff); - if (count != width * height * 3) { - System.err.println(TIFF_ERROR + " (" + width + ", " + height +")"); - return null; - } - - // check the rest of the header - for (int i = 0; i < TIFF_HEADER.length; i++) { - if ((i == 30) || (i == 31) || (i == 42) || (i == 43) || - (i == 102) || (i == 103) || - (i == 114) || (i == 115) || (i == 116) || (i == 117)) continue; - - if (tiff[i] != TIFF_HEADER[i]) { - System.err.println(TIFF_ERROR + " (" + i + ")"); - return null; - } - } - - PImage outgoing = new PImage(width, height, RGB); - int index = 768; - count /= 3; - for (int i = 0; i < count; i++) { - outgoing.pixels[i] = - 0xFF000000 | - (tiff[index++] & 0xff) << 16 | - (tiff[index++] & 0xff) << 8 | - (tiff[index++] & 0xff); - } - return outgoing; - } - - - protected boolean saveTIFF(OutputStream output) { - // shutting off the warning, people can figure this out themselves - /* - if (format != RGB) { - System.err.println("Warning: only RGB information is saved with " + - ".tif files. Use .tga or .png for ARGB images and others."); - } - */ - try { - byte tiff[] = new byte[768]; - System.arraycopy(TIFF_HEADER, 0, tiff, 0, TIFF_HEADER.length); - - tiff[30] = (byte) ((width >> 8) & 0xff); - tiff[31] = (byte) ((width) & 0xff); - tiff[42] = tiff[102] = (byte) ((height >> 8) & 0xff); - tiff[43] = tiff[103] = (byte) ((height) & 0xff); - - int count = width*height*3; - tiff[114] = (byte) ((count >> 24) & 0xff); - tiff[115] = (byte) ((count >> 16) & 0xff); - tiff[116] = (byte) ((count >> 8) & 0xff); - tiff[117] = (byte) ((count) & 0xff); - - // spew the header to the disk - output.write(tiff); - - for (int i = 0; i < pixels.length; i++) { - output.write((pixels[i] >> 16) & 0xff); - output.write((pixels[i] >> 8) & 0xff); - output.write(pixels[i] & 0xff); - } - output.flush(); - return true; - - } catch (IOException e) { - e.printStackTrace(); - } - return false; - } - - - /** - * Creates a Targa32 formatted byte sequence of specified - * pixel buffer using RLE compression. - *

    - * Also figured out how to avoid parsing the image upside-down - * (there's a header flag to set the image origin to top-left) - *

    - * Starting with revision 0092, the format setting is taken into account: - *
      - *
    • ALPHA images written as 8bit grayscale (uses lowest byte) - *
    • RGB → 24 bits - *
    • ARGB → 32 bits - *
    - * All versions are RLE compressed. - *

    - * Contributed by toxi 8-10 May 2005, based on this RLE - * specification - */ - protected boolean saveTGA(OutputStream output) { - byte header[] = new byte[18]; - - if (format == ALPHA) { // save ALPHA images as 8bit grayscale - header[2] = 0x0B; - header[16] = 0x08; - header[17] = 0x28; - - } else if (format == RGB) { - header[2] = 0x0A; - header[16] = 24; - header[17] = 0x20; - - } else if (format == ARGB) { - header[2] = 0x0A; - header[16] = 32; - header[17] = 0x28; - - } else { - throw new RuntimeException("Image format not recognized inside save()"); - } - // set image dimensions lo-hi byte order - header[12] = (byte) (width & 0xff); - header[13] = (byte) (width >> 8); - header[14] = (byte) (height & 0xff); - header[15] = (byte) (height >> 8); - - try { - output.write(header); - - int maxLen = height * width; - int index = 0; - int col; //, prevCol; - int[] currChunk = new int[128]; - - // 8bit image exporter is in separate loop - // to avoid excessive conditionals... - if (format == ALPHA) { - while (index < maxLen) { - boolean isRLE = false; - int rle = 1; - currChunk[0] = col = pixels[index] & 0xff; - while (index + rle < maxLen) { - if (col != (pixels[index + rle]&0xff) || rle == 128) { - isRLE = (rle > 1); - break; - } - rle++; - } - if (isRLE) { - output.write(0x80 | (rle - 1)); - output.write(col); - - } else { - rle = 1; - while (index + rle < maxLen) { - int cscan = pixels[index + rle] & 0xff; - if ((col != cscan && rle < 128) || rle < 3) { - currChunk[rle] = col = cscan; - } else { - if (col == cscan) rle -= 2; - break; - } - rle++; - } - output.write(rle - 1); - for (int i = 0; i < rle; i++) output.write(currChunk[i]); - } - index += rle; - } - } else { // export 24/32 bit TARGA - while (index < maxLen) { - boolean isRLE = false; - currChunk[0] = col = pixels[index]; - int rle = 1; - // try to find repeating bytes (min. len = 2 pixels) - // maximum chunk size is 128 pixels - while (index + rle < maxLen) { - if (col != pixels[index + rle] || rle == 128) { - isRLE = (rle > 1); // set flag for RLE chunk - break; - } - rle++; - } - if (isRLE) { - output.write(128 | (rle - 1)); - output.write(col & 0xff); - output.write(col >> 8 & 0xff); - output.write(col >> 16 & 0xff); - if (format == ARGB) output.write(col >>> 24 & 0xff); - - } else { // not RLE - rle = 1; - while (index + rle < maxLen) { - if ((col != pixels[index + rle] && rle < 128) || rle < 3) { - currChunk[rle] = col = pixels[index + rle]; - } else { - // check if the exit condition was the start of - // a repeating colour - if (col == pixels[index + rle]) rle -= 2; - break; - } - rle++; - } - // write uncompressed chunk - output.write(rle - 1); - if (format == ARGB) { - for (int i = 0; i < rle; i++) { - col = currChunk[i]; - output.write(col & 0xff); - output.write(col >> 8 & 0xff); - output.write(col >> 16 & 0xff); - output.write(col >>> 24 & 0xff); - } - } else { - for (int i = 0; i < rle; i++) { - col = currChunk[i]; - output.write(col & 0xff); - output.write(col >> 8 & 0xff); - output.write(col >> 16 & 0xff); - } - } - } - index += rle; - } - } - output.flush(); - return true; - - } catch (IOException e) { - e.printStackTrace(); - return false; - } - } - - - /** - * Use ImageIO functions from Java 1.4 and later to handle image save. - * Various formats are supported, typically jpeg, png, bmp, and wbmp. - * To get a list of the supported formats for writing, use:
    - * println(javax.imageio.ImageIO.getReaderFormatNames()) - */ - protected void saveImageIO(String path) throws IOException { - try { - BufferedImage bimage = - new BufferedImage(width, height, (format == ARGB) ? - BufferedImage.TYPE_INT_ARGB : - BufferedImage.TYPE_INT_RGB); - /* - Class bufferedImageClass = - Class.forName("java.awt.image.BufferedImage"); - Constructor bufferedImageConstructor = - bufferedImageClass.getConstructor(new Class[] { - Integer.TYPE, - Integer.TYPE, - Integer.TYPE }); - Field typeIntRgbField = bufferedImageClass.getField("TYPE_INT_RGB"); - int typeIntRgb = typeIntRgbField.getInt(typeIntRgbField); - Field typeIntArgbField = bufferedImageClass.getField("TYPE_INT_ARGB"); - int typeIntArgb = typeIntArgbField.getInt(typeIntArgbField); - Object bimage = - bufferedImageConstructor.newInstance(new Object[] { - new Integer(width), - new Integer(height), - new Integer((format == ARGB) ? typeIntArgb : typeIntRgb) - }); - */ - - bimage.setRGB(0, 0, width, height, pixels, 0, width); - /* - Method setRgbMethod = - bufferedImageClass.getMethod("setRGB", new Class[] { - Integer.TYPE, Integer.TYPE, - Integer.TYPE, Integer.TYPE, - pixels.getClass(), - Integer.TYPE, Integer.TYPE - }); - setRgbMethod.invoke(bimage, new Object[] { - new Integer(0), new Integer(0), - new Integer(width), new Integer(height), - pixels, new Integer(0), new Integer(width) - }); - */ - - File file = new File(path); - String extension = path.substring(path.lastIndexOf('.') + 1); - - ImageIO.write(bimage, extension, file); - /* - Class renderedImageClass = - Class.forName("java.awt.image.RenderedImage"); - Class ioClass = Class.forName("javax.imageio.ImageIO"); - Method writeMethod = - ioClass.getMethod("write", new Class[] { - renderedImageClass, String.class, File.class - }); - writeMethod.invoke(null, new Object[] { bimage, extension, file }); - */ - - } catch (Exception e) { - e.printStackTrace(); - throw new IOException("image save failed."); - } - } - - - protected String[] saveImageFormats; - - /** - * Save this image to disk. - *

    - * As of revision 0100, this function requires an absolute path, - * in order to avoid confusion. To save inside the sketch folder, - * use the function savePath() from PApplet, or use saveFrame() instead. - * As of revision 0116, savePath() is not needed if this object has been - * created (as recommended) via createImage() or createGraphics() or - * one of its neighbors. - *

    - * As of revision 0115, when using Java 1.4 and later, you can write - * to several formats besides tga and tiff. If Java 1.4 is installed - * and the extension used is supported (usually png, jpg, jpeg, bmp, - * and tiff), then those methods will be used to write the image. - * To get a list of the supported formats for writing, use:
    - * println(javax.imageio.ImageIO.getReaderFormatNames()) - *

    - * To use the original built-in image writers, use .tga or .tif as the - * extension, or don't include an extension. When no extension is used, - * the extension .tif will be added to the file name. - *

    - * The ImageIO API claims to support wbmp files, however they probably - * require a black and white image. Basic testing produced a zero-length - * file with no error. - */ - public void save(String path) { // ignore - boolean success = false; - - File file = new File(path); - if (!file.isAbsolute()) { - if (parent != null) { - //file = new File(parent.savePath(filename)); - path = parent.savePath(path); - } else { - String msg = "PImage.save() requires an absolute path. " + - "Use createImage(), or pass savePath() to save()."; - PGraphics.showException(msg); - } - } - - // Make sure the pixel data is ready to go - loadPixels(); - - try { - OutputStream os = null; - - if (saveImageFormats == null) { - saveImageFormats = javax.imageio.ImageIO.getWriterFormatNames(); - } - if (saveImageFormats != null) { - for (int i = 0; i < saveImageFormats.length; i++) { - if (path.endsWith("." + saveImageFormats[i])) { - saveImageIO(path); - return; - } - } - } - - if (path.toLowerCase().endsWith(".tga")) { - os = new BufferedOutputStream(new FileOutputStream(path), 32768); - success = saveTGA(os); //, pixels, width, height, format); - - } else { - if (!path.toLowerCase().endsWith(".tif") && - !path.toLowerCase().endsWith(".tiff")) { - // if no .tif extension, add it.. - path += ".tif"; - } - os = new BufferedOutputStream(new FileOutputStream(path), 32768); - success = saveTIFF(os); //, pixels, width, height); - } - os.flush(); - os.close(); - - } catch (IOException e) { - //System.err.println("Error while saving image."); - e.printStackTrace(); - success = false; - } - if (!success) { - throw new RuntimeException("Error while saving image."); - } - } -} - diff --git a/core/preproc/preproc.jar b/core/preproc/preproc.jar deleted file mode 100644 index e025d6a25e221cf9bdff231c440076a4baccaad7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3943 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

    _PJ5bbYVCzJBSneT&$i=VVDV&5jaF%08U-NsCp zV|ouK0&48$53Ok_5u7$C$om;y>e&JPj6j+6PNN`emV5B!f_EC}c>MQA#c?-mD=jU| zk*CsE7u+amlkTHViFSq|&fJyBfktI4MZO0=jLpr*6_J6&LKh+m0;lJoAaO|qvEHS( z59uVA(1jytw<^`El&uRn^UWHeo&oYfKp7>^;gxXUxH)vNOJq#l&_lc@o`)_lzlHm?>RD;n5j`ZhsmS)v4!m{zb z;om%33ugILT~*uX=s-G<*K9>xM#3j%Ib7&+&9k=&L$}XjEgDKQgY_=ovBW;yD)&8S zXXYh1^CMU@guy0#J=koY-5X+m75`CY8WWP@oA~r!2`g zG>7p7#tRm)dDS)mwf)+c$tXKVH{_0Acb1;gJiY50FVXW3G3qeD^C>ma;S!7?rZZ?^ zLrI%qB02= 0) { - break; - } - } - - // read the rest of the file and append it to the - while ((line = applet.readLine()) != null) { - content.append(line + "\n"); - } - - applet.close(); - process(out, graphicsFile); - process(out, imageFile); - - out.println("}"); - - } catch (IOException e) { - e.printStackTrace(); - - } catch(Exception ex) { - ex.printStackTrace(); - } - out.flush(); - - if (content.toString().equals(outBytes.toString())) { - System.out.println("No changes to PApplet API."); - } else { - System.out.println("Updating PApplet with API changes from PImage or PGraphics."); - try { - PrintStream temp = new PrintStream(appletFile); - temp.print(outBytes.toString()); - temp.flush(); - temp.close(); - } catch (FileNotFoundException e) { - e.printStackTrace(); - } - } - } - - - private void process(PrintStream out, File input) throws IOException { - BufferedReader in = createReader(input); - int comments = 0; - String line = null; - - while ((line = in.readLine()) != null) { - String decl = ""; - - // Keep track of comments - if (line.matches(Pattern.quote("/*"))) { - comments ++; - } - - if (line.matches(Pattern.quote("*/"))) { - comments --; - } - - // Ignore everything inside comments - if (comments > 0) { - continue; - } - - boolean gotSomething = false; - boolean gotStatic = false; - - Matcher result; - - if ((result = Pattern.compile("^\\s*public ([\\w\\[\\]]+) [a-zA-z_]+\\(.*$").matcher(line)).matches()) { - gotSomething = true; - } - else if ((result = Pattern.compile("^\\s*abstract public ([\\w\\[\\]]+) [a-zA-z_]+\\(.*$").matcher(line)).matches()) { - gotSomething = true; - } - else if ((result = Pattern.compile("^\\s*public final ([\\w\\[\\]]+) [a-zA-z_]+\\(.*$").matcher(line)).matches()) { - gotSomething = true; - } - else if ((result = Pattern.compile("^\\s*static public ([\\w\\[\\]]+) [a-zA-z_]+\\(.*$").matcher(line)).matches()) { - gotSomething = true; - gotStatic = true; - } - - // if function is marked "// ignore" then, uh, ignore it. - if (gotSomething && line.indexOf("// ignore") >= 0) { - gotSomething = false; - } - - String returns = ""; - if (gotSomething) { - if (result.group(1).equals("void")) { - returns = ""; - } else { - returns = "return "; - } - - // remove the abstract modifier - line = line.replaceFirst(Pattern.quote("abstract"), " "); - - // replace semicolons with a start def - line = line.replaceAll(Pattern.quote(";"), " {\n"); - - out.println("\n\n" + line); - - decl += line; - while(line.indexOf(')') == -1) { - line = in.readLine(); - decl += line; - line = line.replaceAll("\\;\\s*$", " {\n"); - out.println(line); - } - - result = Pattern.compile(".*?\\s(\\S+)\\(.*?").matcher(decl); - result.matches(); // try to match. DON't remove this or things will stop working! - String declName = result.group(1); - String gline = ""; - String rline = ""; - if (gotStatic) { - gline = " " + returns + "PGraphics." + declName + "("; - } else { - rline = " if (recorder != null) recorder." + declName + "("; - gline = " " + returns + "g." + declName + "("; - } - - decl = decl.replaceAll("\\s+", " "); // smush onto a single line - decl = decl.replaceFirst("^.*\\(", ""); - decl = decl.replaceFirst("\\).*$", ""); - - int prev = 0; - String parts[] = decl.split("\\, "); - - for (String part : parts) { - if (!part.trim().equals("")) { - String blargh[] = part.split(" "); - String theArg = blargh[1].replaceAll("[\\[\\]]", ""); - - if (prev != 0) { - gline += ", "; - rline += ", "; - } - - gline += theArg; - rline += theArg; - prev = 1; - } - } - - gline += ");"; - rline += ");"; - - if (!gotStatic && returns.equals("")) { - out.println(rline); - } - - out.println(gline); - out.println(" }"); - } - } - - in.close(); - } - - - private static BufferedReader createReader(File f) throws FileNotFoundException { - return new BufferedReader(new InputStreamReader(new FileInputStream(f))); - } -} diff --git a/core/src/processing/core/PApplet.java b/core/src/processing/core/PApplet.java deleted file mode 100644 index 9504a471a..000000000 --- a/core/src/processing/core/PApplet.java +++ /dev/null @@ -1,10184 +0,0 @@ -/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */ - -/* - Part of the Processing project - http://processing.org - - Copyright (c) 2004-10 Ben Fry and Casey Reas - Copyright (c) 2001-04 Massachusetts Institute of Technology - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation, version 2.1. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General - Public License along with this library; if not, write to the - Free Software Foundation, Inc., 59 Temple Place, Suite 330, - Boston, MA 02111-1307 USA -*/ - -package processing.core; - -import java.applet.*; -import java.awt.*; -import java.awt.event.*; -import java.awt.image.*; -import java.io.*; -import java.lang.reflect.*; -import java.net.*; -import java.text.*; -import java.util.*; -import java.util.regex.*; -import java.util.zip.*; - -import javax.imageio.ImageIO; -import javax.swing.JFileChooser; -import javax.swing.SwingUtilities; - -import processing.core.PShape; - - -/** - * Base class for all sketches that use processing.core. - *

    - * Note that you should not use AWT or Swing components inside a Processing - * applet. The surface is made to automatically update itself, and will cause - * problems with redraw of components drawn above it. If you'd like to - * integrate other Java components, see below. - *

    - * As of release 0145, Processing uses active mode rendering in all cases. - * All animation tasks happen on the "Processing Animation Thread". The - * setup() and draw() methods are handled by that thread, and events (like - * mouse movement and key presses, which are fired by the event dispatch - * thread or EDT) are queued to be (safely) handled at the end of draw(). - * For code that needs to run on the EDT, use SwingUtilities.invokeLater(). - * When doing so, be careful to synchronize between that code (since - * invokeLater() will make your code run from the EDT) and the Processing - * animation thread. Use of a callback function or the registerXxx() methods - * in PApplet can help ensure that your code doesn't do something naughty. - *

    - * As of release 0136 of Processing, we have discontinued support for versions - * of Java prior to 1.5. We don't have enough people to support it, and for a - * project of our size, we should be focusing on the future, rather than - * working around legacy Java code. In addition, Java 1.5 gives us access to - * better timing facilities which will improve the steadiness of animation. - *

    - * This class extends Applet instead of JApplet because 1) historically, - * we supported Java 1.1, which does not include Swing (without an - * additional, sizable, download), and 2) Swing is a bloated piece of crap. - * A Processing applet is a heavyweight AWT component, and can be used the - * same as any other AWT component, with or without Swing. - *

    - * Similarly, Processing runs in a Frame and not a JFrame. However, there's - * nothing to prevent you from embedding a PApplet into a JFrame, it's just - * that the base version uses a regular AWT frame because there's simply - * no need for swing in that context. If people want to use Swing, they can - * embed themselves as they wish. - *

    - * It is possible to use PApplet, along with core.jar in other projects. - * In addition to enabling you to use Java 1.5+ features with your sketch, - * this also allows you to embed a Processing drawing area into another Java - * application. This means you can use standard GUI controls with a Processing - * sketch. Because AWT and Swing GUI components cannot be used on top of a - * PApplet, you can instead embed the PApplet inside another GUI the way you - * would any other Component. - *

    - * It is also possible to resize the Processing window by including - * frame.setResizable(true) inside your setup() method. - * Note that the Java method frame.setSize() will not work unless - * you first set the frame to be resizable. - *

    - * Because the default animation thread will run at 60 frames per second, - * an embedded PApplet can make the parent sluggish. You can use frameRate() - * to make it update less often, or you can use noLoop() and loop() to disable - * and then re-enable looping. If you want to only update the sketch - * intermittently, use noLoop() inside setup(), and redraw() whenever - * the screen needs to be updated once (or loop() to re-enable the animation - * thread). The following example embeds a sketch and also uses the noLoop() - * and redraw() methods. You need not use noLoop() and redraw() when embedding - * if you want your application to animate continuously. - *

    - * public class ExampleFrame extends Frame {
    - *
    - *     public ExampleFrame() {
    - *         super("Embedded PApplet");
    - *
    - *         setLayout(new BorderLayout());
    - *         PApplet embed = new Embedded();
    - *         add(embed, BorderLayout.CENTER);
    - *
    - *         // important to call this whenever embedding a PApplet.
    - *         // It ensures that the animation thread is started and
    - *         // that other internal variables are properly set.
    - *         embed.init();
    - *     }
    - * }
    - *
    - * public class Embedded extends PApplet {
    - *
    - *     public void setup() {
    - *         // original setup code here ...
    - *         size(400, 400);
    - *
    - *         // prevent thread from starving everything else
    - *         noLoop();
    - *     }
    - *
    - *     public void draw() {
    - *         // drawing code goes here
    - *     }
    - *
    - *     public void mousePressed() {
    - *         // do something based on mouse movement
    - *
    - *         // update the screen (run draw once)
    - *         redraw();
    - *     }
    - * }
    - * 
    - * - *

    Processing on multiple displays

    - *

    I was asked about Processing with multiple displays, and for lack of a - * better place to document it, things will go here.

    - *

    You can address both screens by making a window the width of both, - * and the height of the maximum of both screens. In this case, do not use - * present mode, because that's exclusive to one screen. Basically it'll - * give you a PApplet that spans both screens. If using one half to control - * and the other half for graphics, you'd just have to put the 'live' stuff - * on one half of the canvas, the control stuff on the other. This works - * better in windows because on the mac we can't get rid of the menu bar - * unless it's running in present mode.

    - *

    For more control, you need to write straight java code that uses p5. - * You can create two windows, that are shown on two separate screens, - * that have their own PApplet. this is just one of the tradeoffs of one of - * the things that we don't support in p5 from within the environment - * itself (we must draw the line somewhere), because of how messy it would - * get to start talking about multiple screens. It's also not that tough to - * do by hand w/ some Java code.

    - * @usage Web & Application - */ -public class PApplet extends Applet - implements PConstants, Runnable, - MouseListener, MouseMotionListener, KeyListener, FocusListener -{ - /** - * Full name of the Java version (i.e. 1.5.0_11). - * Prior to 0125, this was only the first three digits. - */ - public static final String javaVersionName = - System.getProperty("java.version"); - - /** - * Version of Java that's in use, whether 1.1 or 1.3 or whatever, - * stored as a float. - *

    - * Note that because this is stored as a float, the values may - * not be exactly 1.3 or 1.4. Instead, make sure you're - * comparing against 1.3f or 1.4f, which will have the same amount - * of error (i.e. 1.40000001). This could just be a double, but - * since Processing only uses floats, it's safer for this to be a float - * because there's no good way to specify a double with the preproc. - */ - public static final float javaVersion = - new Float(javaVersionName.substring(0, 3)).floatValue(); - - /** - * Current platform in use. - *

    - * Equivalent to System.getProperty("os.name"), just used internally. - */ - - /** - * Current platform in use, one of the - * PConstants WINDOWS, MACOSX, MACOS9, LINUX or OTHER. - */ - static public int platform; - - /** - * Name associated with the current 'platform' (see PConstants.platformNames) - */ - //static public String platformName; - - static { - String osname = System.getProperty("os.name"); - - if (osname.indexOf("Mac") != -1) { - platform = MACOSX; - - } else if (osname.indexOf("Windows") != -1) { - platform = WINDOWS; - - } else if (osname.equals("Linux")) { // true for the ibm vm - platform = LINUX; - - } else { - platform = OTHER; - } - } - - /** - * Setting for whether to use the Quartz renderer on OS X. The Quartz - * renderer is on its way out for OS X, but Processing uses it by default - * because it's much faster than the Sun renderer. In some cases, however, - * the Quartz renderer is preferred. For instance, fonts are less thick - * when using the Sun renderer, so to improve how fonts look, - * change this setting before you call PApplet.main(). - *

    -   * static public void main(String[] args) {
    -   *   PApplet.useQuartz = "false";
    -   *   PApplet.main(new String[] { "YourSketch" });
    -   * }
    -   * 
    - * This setting must be called before any AWT work happens, so that's why - * it's such a terrible hack in how it's employed here. Calling setProperty() - * inside setup() is a joke, since it's long since the AWT has been invoked. - */ - static public String useQuartz = "true"; - - /** - * Modifier flags for the shortcut key used to trigger menus. - * (Cmd on Mac OS X, Ctrl on Linux and Windows) - */ - static public final int MENU_SHORTCUT = - Toolkit.getDefaultToolkit().getMenuShortcutKeyMask(); - - /** The PGraphics renderer associated with this PApplet */ - public PGraphics g; - - //protected Object glock = new Object(); // for sync - - /** The frame containing this applet (if any) */ - public Frame frame; - - /** - * The screen size when the applet was started. - *

    - * Access this via screen.width and screen.height. To make an applet - * run at full screen, use size(screen.width, screen.height). - *

    - * If you have multiple displays, this will be the size of the main - * display. Running full screen across multiple displays isn't - * particularly supported, and requires more monkeying with the values. - * This probably can't/won't be fixed until/unless I get a dual head - * system. - *

    - * Note that this won't update if you change the resolution - * of your screen once the the applet is running. - *

    - * This variable is not static because in the desktop version of Processing, - * not all instances of PApplet will necessarily be started on a screen of - * the same size. - */ - public int screenWidth, screenHeight; - - /** - * Use screenW and screenH instead. - * @deprecated - */ - public Dimension screen = - Toolkit.getDefaultToolkit().getScreenSize(); - - /** - * A leech graphics object that is echoing all events. - */ - public PGraphics recorder; - - /** - * Command line options passed in from main(). - *

    - * This does not include the arguments passed in to PApplet itself. - */ - public String args[]; - - /** Path to sketch folder */ - public String sketchPath; //folder; - - /** When debugging headaches */ - static final boolean THREAD_DEBUG = false; - - /** Default width and height for applet when not specified */ - static public final int DEFAULT_WIDTH = 100; - static public final int DEFAULT_HEIGHT = 100; - - /** - * Minimum dimensions for the window holding an applet. - * This varies between platforms, Mac OS X 10.3 can do any height - * but requires at least 128 pixels width. Windows XP has another - * set of limitations. And for all I know, Linux probably lets you - * make windows with negative sizes. - */ - static public final int MIN_WINDOW_WIDTH = 128; - static public final int MIN_WINDOW_HEIGHT = 128; - - /** - * Exception thrown when size() is called the first time. - *

    - * This is used internally so that setup() is forced to run twice - * when the renderer is changed. This is the only way for us to handle - * invoking the new renderer while also in the midst of rendering. - */ - static public class RendererChangeException extends RuntimeException { } - - /** - * true if no size() command has been executed. This is used to wait until - * a size has been set before placing in the window and showing it. - */ - public boolean defaultSize; - - volatile boolean resizeRequest; - volatile int resizeWidth; - volatile int resizeHeight; - - /** - * Array containing the values for all the pixels in the display window. These values are of the color datatype. This array is the size of the display window. For example, if the image is 100x100 pixels, there will be 10000 values and if the window is 200x300 pixels, there will be 60000 values. The index value defines the position of a value within the array. For example, the statment color b = pixels[230] will set the variable b to be equal to the value at that location in the array.

    Before accessing this array, the data must loaded with the loadPixels() function. After the array data has been modified, the updatePixels() function must be run to update the changes. Without loadPixels(), running the code may (or will in future releases) result in a NullPointerException. - * Pixel buffer from this applet's PGraphics. - *

    - * When used with OpenGL or Java2D, this value will - * be null until loadPixels() has been called. - * - * @webref image:pixels - * @see processing.core.PApplet#loadPixels() - * @see processing.core.PApplet#updatePixels() - * @see processing.core.PApplet#get(int, int, int, int) - * @see processing.core.PApplet#set(int, int, int) - * @see processing.core.PImage - */ - public int pixels[]; - - /** width of this applet's associated PGraphics - * @webref environment - */ - public int width; - - /** height of this applet's associated PGraphics - * @webref environment - * */ - public int height; - - /** - * The system variable mouseX always contains the current horizontal coordinate of the mouse. - * @webref input:mouse - * @see PApplet#mouseY - * @see PApplet#mousePressed - * @see PApplet#mousePressed() - * @see PApplet#mouseReleased() - * @see PApplet#mouseMoved() - * @see PApplet#mouseDragged() - * - * */ - public int mouseX; - - /** - * The system variable mouseY always contains the current vertical coordinate of the mouse. - * @webref input:mouse - * @see PApplet#mouseX - * @see PApplet#mousePressed - * @see PApplet#mousePressed() - * @see PApplet#mouseReleased() - * @see PApplet#mouseMoved() - * @see PApplet#mouseDragged() - * */ - public int mouseY; - - /** - * Previous x/y position of the mouse. This will be a different value - * when inside a mouse handler (like the mouseMoved() method) versus - * when inside draw(). Inside draw(), pmouseX is updated once each - * frame, but inside mousePressed() and friends, it's updated each time - * an event comes through. Be sure to use only one or the other type of - * means for tracking pmouseX and pmouseY within your sketch, otherwise - * you're gonna run into trouble. - * @webref input:mouse - * @see PApplet#pmouseY - * @see PApplet#mouseX - * @see PApplet#mouseY - */ - public int pmouseX; - - /** - * @webref input:mouse - * @see PApplet#pmouseX - * @see PApplet#mouseX - * @see PApplet#mouseY - */ - public int pmouseY; - - /** - * previous mouseX/Y for the draw loop, separated out because this is - * separate from the pmouseX/Y when inside the mouse event handlers. - */ - protected int dmouseX, dmouseY; - - /** - * pmouseX/Y for the event handlers (mousePressed(), mouseDragged() etc) - * these are different because mouse events are queued to the end of - * draw, so the previous position has to be updated on each event, - * as opposed to the pmouseX/Y that's used inside draw, which is expected - * to be updated once per trip through draw(). - */ - protected int emouseX, emouseY; - - /** - * Used to set pmouseX/Y to mouseX/Y the first time mouseX/Y are used, - * otherwise pmouseX/Y are always zero, causing a nasty jump. - *

    - * Just using (frameCount == 0) won't work since mouseXxxxx() - * may not be called until a couple frames into things. - */ - public boolean firstMouse; - - /** - * Processing automatically tracks if the mouse button is pressed and which button is pressed. - * The value of the system variable mouseButton is either LEFT, RIGHT, or CENTER depending on which button is pressed. - *

    Advanced:

    - * If running on Mac OS, a ctrl-click will be interpreted as - * the righthand mouse button (unlike Java, which reports it as - * the left mouse). - * @webref input:mouse - * @see PApplet#mouseX - * @see PApplet#mouseY - * @see PApplet#mousePressed() - * @see PApplet#mouseReleased() - * @see PApplet#mouseMoved() - * @see PApplet#mouseDragged() - */ - public int mouseButton; - - /** - * Variable storing if a mouse button is pressed. The value of the system variable mousePressed is true if a mouse button is pressed and false if a button is not pressed. - * @webref input:mouse - * @see PApplet#mouseX - * @see PApplet#mouseY - * @see PApplet#mouseReleased() - * @see PApplet#mouseMoved() - * @see PApplet#mouseDragged() - */ - public boolean mousePressed; - public MouseEvent mouseEvent; - - /** - * The system variable key always contains the value of the most recent key on the keyboard that was used (either pressed or released).

    - * For non-ASCII keys, use the keyCode variable. - * The keys included in the ASCII specification (BACKSPACE, TAB, ENTER, RETURN, ESC, and DELETE) do not require checking to see if they key is coded, and you should simply use the key variable instead of keyCode - * If you're making cross-platform projects, note that the ENTER key is commonly used on PCs and Unix and the RETURN key is used instead on Macintosh. - * Check for both ENTER and RETURN to make sure your program will work for all platforms. - * =advanced - * - * Last key pressed. - *

    - * If it's a coded key, i.e. UP/DOWN/CTRL/SHIFT/ALT, - * this will be set to CODED (0xffff or 65535). - * @webref input:keyboard - * @see PApplet#keyCode - * @see PApplet#keyPressed - * @see PApplet#keyPressed() - * @see PApplet#keyReleased() - */ - public char key; - - /** - * The variable keyCode is used to detect special keys such as the UP, DOWN, LEFT, RIGHT arrow keys and ALT, CONTROL, SHIFT. - * When checking for these keys, it's first necessary to check and see if the key is coded. This is done with the conditional "if (key == CODED)" as shown in the example. - *

    The keys included in the ASCII specification (BACKSPACE, TAB, ENTER, RETURN, ESC, and DELETE) do not require checking to see if they key is coded, and you should simply use the key variable instead of keyCode - * If you're making cross-platform projects, note that the ENTER key is commonly used on PCs and Unix and the RETURN key is used instead on Macintosh. - * Check for both ENTER and RETURN to make sure your program will work for all platforms. - *

    For users familiar with Java, the values for UP and DOWN are simply shorter versions of Java's KeyEvent.VK_UP and KeyEvent.VK_DOWN. - * Other keyCode values can be found in the Java KeyEvent reference. - * - * =advanced - * When "key" is set to CODED, this will contain a Java key code. - *

    - * For the arrow keys, keyCode will be one of UP, DOWN, LEFT and RIGHT. - * Also available are ALT, CONTROL and SHIFT. A full set of constants - * can be obtained from java.awt.event.KeyEvent, from the VK_XXXX variables. - * @webref input:keyboard - * @see PApplet#key - * @see PApplet#keyPressed - * @see PApplet#keyPressed() - * @see PApplet#keyReleased() - */ - public int keyCode; - - /** - * The boolean system variable keyPressed is true if any key is pressed and false if no keys are pressed. - * @webref input:keyboard - * @see PApplet#key - * @see PApplet#keyCode - * @see PApplet#keyPressed() - * @see PApplet#keyReleased() - */ - public boolean keyPressed; - - /** - * the last KeyEvent object passed into a mouse function. - */ - public KeyEvent keyEvent; - - /** - * Gets set to true/false as the applet gains/loses focus. - * @webref environment - */ - public boolean focused = false; - - /** - * true if the applet is online. - *

    - * This can be used to test how the applet should behave - * since online situations are different (no file writing, etc). - * @webref environment - */ - public boolean online = false; - - /** - * Time in milliseconds when the applet was started. - *

    - * Used by the millis() function. - */ - long millisOffset; - - /** - * The current value of frames per second. - *

    - * The initial value will be 10 fps, and will be updated with each - * frame thereafter. The value is not instantaneous (since that - * wouldn't be very useful since it would jump around so much), - * but is instead averaged (integrated) over several frames. - * As such, this value won't be valid until after 5-10 frames. - */ - public float frameRate = 10; - /** Last time in nanoseconds that frameRate was checked */ - protected long frameRateLastNanos = 0; - - /** As of release 0116, frameRate(60) is called as a default */ - protected float frameRateTarget = 60; - protected long frameRatePeriod = 1000000000L / 60L; - - protected boolean looping; - - /** flag set to true when a redraw is asked for by the user */ - protected boolean redraw; - - /** - * How many frames have been displayed since the applet started. - *

    - * This value is read-only do not attempt to set it, - * otherwise bad things will happen. - *

    - * Inside setup(), frameCount is 0. - * For the first iteration of draw(), frameCount will equal 1. - */ - public int frameCount; - - /** - * true if this applet has had it. - */ - public boolean finished; - - /** - * true if exit() has been called so that things shut down - * once the main thread kicks off. - */ - protected boolean exitCalled; - - Thread thread; - - protected RegisteredMethods sizeMethods; - protected RegisteredMethods preMethods, drawMethods, postMethods; - protected RegisteredMethods mouseEventMethods, keyEventMethods; - protected RegisteredMethods disposeMethods; - - // messages to send if attached as an external vm - - /** - * Position of the upper-lefthand corner of the editor window - * that launched this applet. - */ - static public final String ARGS_EDITOR_LOCATION = "--editor-location"; - - /** - * Location for where to position the applet window on screen. - *

    - * This is used by the editor to when saving the previous applet - * location, or could be used by other classes to launch at a - * specific position on-screen. - */ - static public final String ARGS_EXTERNAL = "--external"; - - static public final String ARGS_LOCATION = "--location"; - - static public final String ARGS_DISPLAY = "--display"; - - static public final String ARGS_BGCOLOR = "--bgcolor"; - - static public final String ARGS_PRESENT = "--present"; - - static public final String ARGS_EXCLUSIVE = "--exclusive"; - - static public final String ARGS_STOP_COLOR = "--stop-color"; - - static public final String ARGS_HIDE_STOP = "--hide-stop"; - - /** - * Allows the user or PdeEditor to set a specific sketch folder path. - *

    - * Used by PdeEditor to pass in the location where saveFrame() - * and all that stuff should write things. - */ - static public final String ARGS_SKETCH_FOLDER = "--sketch-path"; - - /** - * When run externally to a PdeEditor, - * this is sent by the applet when it quits. - */ - //static public final String EXTERNAL_QUIT = "__QUIT__"; - static public final String EXTERNAL_STOP = "__STOP__"; - - /** - * When run externally to a PDE Editor, this is sent by the applet - * whenever the window is moved. - *

    - * This is used so that the editor can re-open the sketch window - * in the same position as the user last left it. - */ - static public final String EXTERNAL_MOVE = "__MOVE__"; - - /** true if this sketch is being run by the PDE */ - boolean external = false; - - - static final String ERROR_MIN_MAX = - "Cannot use min() or max() on an empty array."; - - - // during rev 0100 dev cycle, working on new threading model, - // but need to disable and go conservative with changes in order - // to get pdf and audio working properly first. - // for 0116, the CRUSTY_THREADS are being disabled to fix lots of bugs. - //static final boolean CRUSTY_THREADS = false; //true; - - - public void init() { -// println("Calling init()"); - - Dimension screen = Toolkit.getDefaultToolkit().getScreenSize(); - screenWidth = screen.width; - screenHeight = screen.height; - - // send tab keys through to the PApplet - setFocusTraversalKeysEnabled(false); - - millisOffset = System.currentTimeMillis(); - - finished = false; // just for clarity - - // this will be cleared by draw() if it is not overridden - looping = true; - redraw = true; // draw this guy once - firstMouse = true; - - // these need to be inited before setup - sizeMethods = new RegisteredMethods(); - preMethods = new RegisteredMethods(); - drawMethods = new RegisteredMethods(); - postMethods = new RegisteredMethods(); - mouseEventMethods = new RegisteredMethods(); - keyEventMethods = new RegisteredMethods(); - disposeMethods = new RegisteredMethods(); - - try { - getAppletContext(); - online = true; - } catch (NullPointerException e) { - online = false; - } - - try { - if (sketchPath == null) { - sketchPath = System.getProperty("user.dir"); - } - } catch (Exception e) { } // may be a security problem - - Dimension size = getSize(); - if ((size.width != 0) && (size.height != 0)) { - // When this PApplet is embedded inside a Java application with other - // Component objects, its size() may already be set externally (perhaps - // by a LayoutManager). In this case, honor that size as the default. - // Size of the component is set, just create a renderer. - g = makeGraphics(size.width, size.height, getSketchRenderer(), null, true); - // This doesn't call setSize() or setPreferredSize() because the fact - // that a size was already set means that someone is already doing it. - - } else { - // Set the default size, until the user specifies otherwise - this.defaultSize = true; - int w = getSketchWidth(); - int h = getSketchHeight(); - g = makeGraphics(w, h, getSketchRenderer(), null, true); - // Fire component resize event - setSize(w, h); - setPreferredSize(new Dimension(w, h)); - } - width = g.width; - height = g.height; - - addListeners(); - - // this is automatically called in applets - // though it's here for applications anyway - start(); - } - - - public int getSketchWidth() { - return DEFAULT_WIDTH; - } - - - public int getSketchHeight() { - return DEFAULT_HEIGHT; - } - - - public String getSketchRenderer() { - return JAVA2D; - } - - - /** - * Called by the browser or applet viewer to inform this applet that it - * should start its execution. It is called after the init method and - * each time the applet is revisited in a Web page. - *

    - * Called explicitly via the first call to PApplet.paint(), because - * PAppletGL needs to have a usable screen before getting things rolling. - */ - public void start() { - // When running inside a browser, start() will be called when someone - // returns to a page containing this applet. - // http://dev.processing.org/bugs/show_bug.cgi?id=581 - finished = false; - - if (thread != null) return; - thread = new Thread(this, "Animation Thread"); - thread.start(); - } - - - /** - * Called by the browser or applet viewer to inform - * this applet that it should stop its execution. - *

    - * Unfortunately, there are no guarantees from the Java spec - * when or if stop() will be called (i.e. on browser quit, - * or when moving between web pages), and it's not always called. - */ - public void stop() { - // bringing this back for 0111, hoping it'll help opengl shutdown - finished = true; // why did i comment this out? - - // don't run stop and disposers twice - if (thread == null) return; - thread = null; - - // call to shut down renderer, in case it needs it (pdf does) - if (g != null) g.dispose(); - - // maybe this should be done earlier? might help ensure it gets called - // before the vm just craps out since 1.5 craps out so aggressively. - disposeMethods.handle(); - } - - - /** - * Called by the browser or applet viewer to inform this applet - * that it is being reclaimed and that it should destroy - * any resources that it has allocated. - *

    - * This also attempts to call PApplet.stop(), in case there - * was an inadvertent override of the stop() function by a user. - *

    - * destroy() supposedly gets called as the applet viewer - * is shutting down the applet. stop() is called - * first, and then destroy() to really get rid of things. - * no guarantees on when they're run (on browser quit, or - * when moving between pages), though. - */ - public void destroy() { - ((PApplet)this).stop(); - } - - - /** - * This returns the last width and height specified by the user - * via the size() command. - */ -// public Dimension getPreferredSize() { -// return new Dimension(width, height); -// } - - -// public void addNotify() { -// super.addNotify(); -// println("addNotify()"); -// } - - - - ////////////////////////////////////////////////////////////// - - - public class RegisteredMethods { - int count; - Object objects[]; - Method methods[]; - - - // convenience version for no args - public void handle() { - handle(new Object[] { }); - } - - public void handle(Object oargs[]) { - for (int i = 0; i < count; i++) { - try { - //System.out.println(objects[i] + " " + args); - methods[i].invoke(objects[i], oargs); - } catch (Exception e) { - e.printStackTrace(); - } - } - } - - public void add(Object object, Method method) { - if (objects == null) { - objects = new Object[5]; - methods = new Method[5]; - } - if (count == objects.length) { - objects = (Object[]) PApplet.expand(objects); - methods = (Method[]) PApplet.expand(methods); -// Object otemp[] = new Object[count << 1]; -// System.arraycopy(objects, 0, otemp, 0, count); -// objects = otemp; -// Method mtemp[] = new Method[count << 1]; -// System.arraycopy(methods, 0, mtemp, 0, count); -// methods = mtemp; - } - objects[count] = object; - methods[count] = method; - count++; - } - - - /** - * Removes first object/method pair matched (and only the first, - * must be called multiple times if object is registered multiple times). - * Does not shrink array afterwards, silently returns if method not found. - */ - public void remove(Object object, Method method) { - int index = findIndex(object, method); - if (index != -1) { - // shift remaining methods by one to preserve ordering - count--; - for (int i = index; i < count; i++) { - objects[i] = objects[i+1]; - methods[i] = methods[i+1]; - } - // clean things out for the gc's sake - objects[count] = null; - methods[count] = null; - } - } - - protected int findIndex(Object object, Method method) { - for (int i = 0; i < count; i++) { - if (objects[i] == object && methods[i].equals(method)) { - //objects[i].equals() might be overridden, so use == for safety - // since here we do care about actual object identity - //methods[i]==method is never true even for same method, so must use - // equals(), this should be safe because of object identity - return i; - } - } - return -1; - } - } - - - public void registerSize(Object o) { - Class methodArgs[] = new Class[] { Integer.TYPE, Integer.TYPE }; - registerWithArgs(sizeMethods, "size", o, methodArgs); - } - - public void registerPre(Object o) { - registerNoArgs(preMethods, "pre", o); - } - - public void registerDraw(Object o) { - registerNoArgs(drawMethods, "draw", o); - } - - public void registerPost(Object o) { - registerNoArgs(postMethods, "post", o); - } - - public void registerMouseEvent(Object o) { - Class methodArgs[] = new Class[] { MouseEvent.class }; - registerWithArgs(mouseEventMethods, "mouseEvent", o, methodArgs); - } - - - public void registerKeyEvent(Object o) { - Class methodArgs[] = new Class[] { KeyEvent.class }; - registerWithArgs(keyEventMethods, "keyEvent", o, methodArgs); - } - - public void registerDispose(Object o) { - registerNoArgs(disposeMethods, "dispose", o); - } - - - protected void registerNoArgs(RegisteredMethods meth, - String name, Object o) { - Class c = o.getClass(); - try { - Method method = c.getMethod(name, new Class[] {}); - meth.add(o, method); - - } catch (NoSuchMethodException nsme) { - die("There is no public " + name + "() method in the class " + - o.getClass().getName()); - - } catch (Exception e) { - die("Could not register " + name + " + () for " + o, e); - } - } - - - protected void registerWithArgs(RegisteredMethods meth, - String name, Object o, Class cargs[]) { - Class c = o.getClass(); - try { - Method method = c.getMethod(name, cargs); - meth.add(o, method); - - } catch (NoSuchMethodException nsme) { - die("There is no public " + name + "() method in the class " + - o.getClass().getName()); - - } catch (Exception e) { - die("Could not register " + name + " + () for " + o, e); - } - } - - - public void unregisterSize(Object o) { - Class methodArgs[] = new Class[] { Integer.TYPE, Integer.TYPE }; - unregisterWithArgs(sizeMethods, "size", o, methodArgs); - } - - public void unregisterPre(Object o) { - unregisterNoArgs(preMethods, "pre", o); - } - - public void unregisterDraw(Object o) { - unregisterNoArgs(drawMethods, "draw", o); - } - - public void unregisterPost(Object o) { - unregisterNoArgs(postMethods, "post", o); - } - - public void unregisterMouseEvent(Object o) { - Class methodArgs[] = new Class[] { MouseEvent.class }; - unregisterWithArgs(mouseEventMethods, "mouseEvent", o, methodArgs); - } - - public void unregisterKeyEvent(Object o) { - Class methodArgs[] = new Class[] { KeyEvent.class }; - unregisterWithArgs(keyEventMethods, "keyEvent", o, methodArgs); - } - - public void unregisterDispose(Object o) { - unregisterNoArgs(disposeMethods, "dispose", o); - } - - - protected void unregisterNoArgs(RegisteredMethods meth, - String name, Object o) { - Class c = o.getClass(); - try { - Method method = c.getMethod(name, new Class[] {}); - meth.remove(o, method); - } catch (Exception e) { - die("Could not unregister " + name + "() for " + o, e); - } - } - - - protected void unregisterWithArgs(RegisteredMethods meth, - String name, Object o, Class cargs[]) { - Class c = o.getClass(); - try { - Method method = c.getMethod(name, cargs); - meth.remove(o, method); - } catch (Exception e) { - die("Could not unregister " + name + "() for " + o, e); - } - } - - - ////////////////////////////////////////////////////////////// - - - public void setup() { - } - - - public void draw() { - // if no draw method, then shut things down - //System.out.println("no draw method, goodbye"); - finished = true; - } - - - ////////////////////////////////////////////////////////////// - - - protected void resizeRenderer(int iwidth, int iheight) { -// println("resizeRenderer request for " + iwidth + " " + iheight); - if (width != iwidth || height != iheight) { -// println(" former size was " + width + " " + height); - g.setSize(iwidth, iheight); - width = iwidth; - height = iheight; - } - } - - - /** - * Defines the dimension of the display window in units of pixels. The size() function must be the first line in setup(). If size() is not called, the default size of the window is 100x100 pixels. The system variables width and height are set by the parameters passed to the size() function.

    - * Do not use variables as the parameters to size() command, because it will cause problems when exporting your sketch. When variables are used, the dimensions of your sketch cannot be determined during export. Instead, employ numeric values in the size() statement, and then use the built-in width and height variables inside your program when you need the dimensions of the display window are needed.

    - * The MODE parameters selects which rendering engine to use. For example, if you will be drawing 3D shapes for the web use P3D, if you want to export a program with OpenGL graphics acceleration use OPENGL. A brief description of the four primary renderers follows:

    JAVA2D - The default renderer. This renderer supports two dimensional drawing and provides higher image quality in overall, but generally slower than P2D.

    P2D (Processing 2D) - Fast 2D renderer, best used with pixel data, but not as accurate as the JAVA2D default.

    P3D (Processing 3D) - Fast 3D renderer for the web. Sacrifices rendering quality for quick 3D drawing.

    OPENGL - High speed 3D graphics renderer that makes use of OpenGL-compatible graphics hardware is available. Keep in mind that OpenGL is not magic pixie dust that makes any sketch faster (though it's close), so other rendering options may produce better results depending on the nature of your code. Also note that with OpenGL, all graphics are smoothed: the smooth() and noSmooth() commands are ignored.

    PDF - The PDF renderer draws 2D graphics directly to an Acrobat PDF file. This produces excellent results when you need vector shapes for high resolution output or printing. You must first use Import Library → PDF to make use of the library. More information can be found in the PDF library reference. - * If you're manipulating pixels (using methods like get() or blend(), or manipulating the pixels[] array), P2D and P3D will usually be faster than the default (JAVA2D) setting, and often the OPENGL setting as well. Similarly, when handling lots of images, or doing video playback, P2D and P3D will tend to be faster.

    - * The P2D, P3D, and OPENGL renderers do not support strokeCap() or strokeJoin(), which can lead to ugly results when using strokeWeight(). (Bug 955)

    - * For the most elegant and accurate results when drawing in 2D, particularly when using smooth(), use the JAVA2D renderer setting. It may be slower than the others, but is the most complete, which is why it's the default. Advanced users will want to switch to other renderers as they learn the tradeoffs.

    - * Rendering graphics requires tradeoffs between speed, accuracy, and general usefulness of the available features. None of the renderers are perfect, so we provide multiple options so that you can decide what tradeoffs make the most sense for your project. We'd prefer all of them to have perfect visual accuracy, high performance, and support a wide range of features, but that's simply not possible.

    - * The maximum width and height is limited by your operating system, and is usually the width and height of your actual screen. On some machines it may simply be the number of pixels on your current screen, meaning that a screen that's 800x600 could support size(1600, 300), since it's the same number of pixels. This varies widely so you'll have to try different rendering modes and sizes until you get what you're looking for. If you need something larger, use createGraphics to create a non-visible drawing surface. - *

    Again, the size() method must be the first line of the code (or first item inside setup). Any code that appears before the size() command may run more than once, which can lead to confusing results. - * - * =advanced - * Starts up and creates a two-dimensional drawing surface, - * or resizes the current drawing surface. - *

    - * This should be the first thing called inside of setup(). - *

    - * If using Java 1.3 or later, this will default to using - * PGraphics2, the Java2D-based renderer. If using Java 1.1, - * or if PGraphics2 is not available, then PGraphics will be used. - * To set your own renderer, use the other version of the size() - * method that takes a renderer as its last parameter. - *

    - * If called once a renderer has already been set, this will - * use the previous renderer and simply resize it. - * - * @webref structure - * @param iwidth width of the display window in units of pixels - * @param iheight height of the display window in units of pixels - */ - public void size(int iwidth, int iheight) { - size(iwidth, iheight, JAVA2D, null); - } - - /** - * - * @param irenderer Either P2D, P3D, JAVA2D, or OPENGL - */ - public void size(int iwidth, int iheight, String irenderer) { - size(iwidth, iheight, irenderer, null); - } - - - /** - * Creates a new PGraphics object and sets it to the specified size. - * - * Note that you cannot change the renderer once outside of setup(). - * In most cases, you can call size() to give it a new size, - * but you need to always ask for the same renderer, otherwise - * you're gonna run into trouble. - * - * The size() method should *only* be called from inside the setup() or - * draw() methods, so that it is properly run on the main animation thread. - * To change the size of a PApplet externally, use setSize(), which will - * update the component size, and queue a resize of the renderer as well. - */ - public void size(final int iwidth, final int iheight, - String irenderer, String ipath) { - // Run this from the EDT, just cuz it's AWT stuff (or maybe later Swing) - SwingUtilities.invokeLater(new Runnable() { - public void run() { - // Set the preferred size so that the layout managers can handle it - setPreferredSize(new Dimension(iwidth, iheight)); - setSize(iwidth, iheight); - } - }); - - // ensure that this is an absolute path - if (ipath != null) ipath = savePath(ipath); - - String currentRenderer = g.getClass().getName(); - if (currentRenderer.equals(irenderer)) { - // Avoid infinite loop of throwing exception to reset renderer - resizeRenderer(iwidth, iheight); - //redraw(); // will only be called insize draw() - - } else { // renderer is being changed - // otherwise ok to fall through and create renderer below - // the renderer is changing, so need to create a new object - g = makeGraphics(iwidth, iheight, irenderer, ipath, true); - width = iwidth; - height = iheight; - - // fire resize event to make sure the applet is the proper size -// setSize(iwidth, iheight); - // this is the function that will run if the user does their own - // size() command inside setup, so set defaultSize to false. - defaultSize = false; - - // throw an exception so that setup() is called again - // but with a properly sized render - // this is for opengl, which needs a valid, properly sized - // display before calling anything inside setup(). - throw new RendererChangeException(); - } - } - - - /** - * Creates and returns a new PGraphics object of the types P2D, P3D, and JAVA2D. Use this class if you need to draw into an off-screen graphics buffer. It's not possible to use createGraphics() with OPENGL, because it doesn't allow offscreen use. The DXF and PDF renderers require the filename parameter. - *

    It's important to call any drawing commands between beginDraw() and endDraw() statements. This is also true for any commands that affect drawing, such as smooth() or colorMode(). - *

    Unlike the main drawing surface which is completely opaque, surfaces created with createGraphics() can have transparency. This makes it possible to draw into a graphics and maintain the alpha channel. By using save() to write a PNG or TGA file, the transparency of the graphics object will be honored. Note that transparency levels are binary: pixels are either complete opaque or transparent. For the time being (as of release 0127), this means that text characters will be opaque blocks. This will be fixed in a future release (Bug 641). - * - * =advanced - * Create an offscreen PGraphics object for drawing. This can be used - * for bitmap or vector images drawing or rendering. - *

      - *
    • Do not use "new PGraphicsXxxx()", use this method. This method - * ensures that internal variables are set up properly that tie the - * new graphics context back to its parent PApplet. - *
    • The basic way to create bitmap images is to use the saveFrame() - * function. - *
    • If you want to create a really large scene and write that, - * first make sure that you've allocated a lot of memory in the Preferences. - *
    • If you want to create images that are larger than the screen, - * you should create your own PGraphics object, draw to that, and use - * save(). - * For now, it's best to use P3D in this scenario. - * P2D is currently disabled, and the JAVA2D default will give mixed - * results. An example of using P3D: - *
      -   *
      -   * PGraphics big;
      -   *
      -   * void setup() {
      -   *   big = createGraphics(3000, 3000, P3D);
      -   *
      -   *   big.beginDraw();
      -   *   big.background(128);
      -   *   big.line(20, 1800, 1800, 900);
      -   *   // etc..
      -   *   big.endDraw();
      -   *
      -   *   // make sure the file is written to the sketch folder
      -   *   big.save("big.tif");
      -   * }
      -   *
      -   * 
      - *
    • It's important to always wrap drawing to createGraphics() with - * beginDraw() and endDraw() (beginFrame() and endFrame() prior to - * revision 0115). The reason is that the renderer needs to know when - * drawing has stopped, so that it can update itself internally. - * This also handles calling the defaults() method, for people familiar - * with that. - *
    • It's not possible to use createGraphics() with the OPENGL renderer, - * because it doesn't allow offscreen use. - *
    • With Processing 0115 and later, it's possible to write images in - * formats other than the default .tga and .tiff. The exact formats and - * background information can be found in the developer's reference for - * PImage.save(). - *
    - * - * @webref rendering - * @param iwidth width in pixels - * @param iheight height in pixels - * @param irenderer Either P2D (not yet implemented), P3D, JAVA2D, PDF, DXF - * - * @see processing.core.PGraphics - * - */ - public PGraphics createGraphics(int iwidth, int iheight, - String irenderer) { - PGraphics pg = makeGraphics(iwidth, iheight, irenderer, null, false); - //pg.parent = this; // make save() work - return pg; - } - - - /** - * Create an offscreen graphics surface for drawing, in this case - * for a renderer that writes to a file (such as PDF or DXF). - * @param ipath the name of the file (can be an absolute or relative path) - */ - public PGraphics createGraphics(int iwidth, int iheight, - String irenderer, String ipath) { - if (ipath != null) { - ipath = savePath(ipath); - } - PGraphics pg = makeGraphics(iwidth, iheight, irenderer, ipath, false); - pg.parent = this; // make save() work - return pg; - } - - - /** - * Version of createGraphics() used internally. - * - * @param ipath must be an absolute path, usually set via savePath() - * @oaram applet the parent applet object, this should only be non-null - * in cases where this is the main drawing surface object. - */ - protected PGraphics makeGraphics(int iwidth, int iheight, - String irenderer, String ipath, - boolean iprimary) { - if (irenderer.equals(OPENGL)) { - if (PApplet.platform == WINDOWS) { - String s = System.getProperty("java.version"); - if (s != null) { - if (s.equals("1.5.0_10")) { - System.err.println("OpenGL support is broken with Java 1.5.0_10"); - System.err.println("See http://dev.processing.org" + - "/bugs/show_bug.cgi?id=513 for more info."); - throw new RuntimeException("Please update your Java " + - "installation (see bug #513)"); - } - } - } - } - -// if (irenderer.equals(P2D)) { -// throw new RuntimeException("The P2D renderer is currently disabled, " + -// "please use P3D or JAVA2D."); -// } - - String openglError = - "Before using OpenGL, first select " + - "Import Library > opengl from the Sketch menu."; - - try { - /* - Class rendererClass = Class.forName(irenderer); - - Class constructorParams[] = null; - Object constructorValues[] = null; - - if (ipath == null) { - constructorParams = new Class[] { - Integer.TYPE, Integer.TYPE, PApplet.class - }; - constructorValues = new Object[] { - new Integer(iwidth), new Integer(iheight), this - }; - } else { - constructorParams = new Class[] { - Integer.TYPE, Integer.TYPE, PApplet.class, String.class - }; - constructorValues = new Object[] { - new Integer(iwidth), new Integer(iheight), this, ipath - }; - } - - Constructor constructor = - rendererClass.getConstructor(constructorParams); - PGraphics pg = (PGraphics) constructor.newInstance(constructorValues); - */ - - Class rendererClass = - Thread.currentThread().getContextClassLoader().loadClass(irenderer); - - //Class params[] = null; - //PApplet.println(rendererClass.getConstructors()); - Constructor constructor = rendererClass.getConstructor(new Class[] { }); - PGraphics pg = (PGraphics) constructor.newInstance(); - - pg.setParent(this); - pg.setPrimary(iprimary); - if (ipath != null) pg.setPath(ipath); - pg.setSize(iwidth, iheight); - - // everything worked, return it - return pg; - - } catch (InvocationTargetException ite) { - String msg = ite.getTargetException().getMessage(); - if ((msg != null) && - (msg.indexOf("no jogl in java.library.path") != -1)) { - throw new RuntimeException(openglError + - " (The native library is missing.)"); - - } else { - ite.getTargetException().printStackTrace(); - Throwable target = ite.getTargetException(); - if (platform == MACOSX) target.printStackTrace(System.out); // bug - // neither of these help, or work - //target.printStackTrace(System.err); - //System.err.flush(); - //System.out.println(System.err); // and the object isn't null - throw new RuntimeException(target.getMessage()); - } - - } catch (ClassNotFoundException cnfe) { - if (cnfe.getMessage().indexOf("processing.opengl.PGraphicsGL") != -1) { - throw new RuntimeException(openglError + - " (The library .jar file is missing.)"); - } else { - throw new RuntimeException("You need to use \"Import Library\" " + - "to add " + irenderer + " to your sketch."); - } - - } catch (Exception e) { - //System.out.println("ex3"); - if ((e instanceof IllegalArgumentException) || - (e instanceof NoSuchMethodException) || - (e instanceof IllegalAccessException)) { - e.printStackTrace(); - /* - String msg = "public " + - irenderer.substring(irenderer.lastIndexOf('.') + 1) + - "(int width, int height, PApplet parent" + - ((ipath == null) ? "" : ", String filename") + - ") does not exist."; - */ - String msg = irenderer + " needs to be updated " + - "for the current release of Processing."; - throw new RuntimeException(msg); - - } else { - if (platform == MACOSX) e.printStackTrace(System.out); - throw new RuntimeException(e.getMessage()); - } - } - } - - - /** - * Creates a new PImage (the datatype for storing images). This provides a fresh buffer of pixels to play with. Set the size of the buffer with the width and height parameters. The format parameter defines how the pixels are stored. See the PImage reference for more information. - *

    Be sure to include all three parameters, specifying only the width and height (but no format) will produce a strange error. - *

    Advanced users please note that createImage() should be used instead of the syntax new PImage(). - * =advanced - * Preferred method of creating new PImage objects, ensures that a - * reference to the parent PApplet is included, which makes save() work - * without needing an absolute path. - * - * @webref image - * @param wide width in pixels - * @param high height in pixels - * @param format Either RGB, ARGB, ALPHA (grayscale alpha channel) - * - * @see processing.core.PImage - * @see processing.core.PGraphics - */ - public PImage createImage(int wide, int high, int format) { - PImage image = new PImage(wide, high, format); - image.parent = this; // make save() work - return image; - } - - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - - public void update(Graphics screen) { - paint(screen); - } - - - //synchronized public void paint(Graphics screen) { // shutting off for 0146 - public void paint(Graphics screen) { - // ignore the very first call to paint, since it's coming - // from the o.s., and the applet will soon update itself anyway. - if (frameCount == 0) { -// println("Skipping frame"); - // paint() may be called more than once before things - // are finally painted to the screen and the thread gets going - return; - } - - // without ignoring the first call, the first several frames - // are confused because paint() gets called in the midst of - // the initial nextFrame() call, so there are multiple - // updates fighting with one another. - - // g.image is synchronized so that draw/loop and paint don't - // try to fight over it. this was causing a randomized slowdown - // that would cut the frameRate into a third on macosx, - // and is probably related to the windows sluggishness bug too - - // make sure the screen is visible and usable - // (also prevents over-drawing when using PGraphicsOpenGL) - if ((g != null) && (g.image != null)) { -// println("inside paint(), screen.drawImage()"); - screen.drawImage(g.image, 0, 0, null); - } - } - - - // active paint method - protected void paint() { - try { - Graphics screen = this.getGraphics(); - if (screen != null) { - if ((g != null) && (g.image != null)) { - screen.drawImage(g.image, 0, 0, null); - } - Toolkit.getDefaultToolkit().sync(); - } - } catch (Exception e) { - // Seen on applet destroy, maybe can ignore? - e.printStackTrace(); - -// } finally { -// if (g != null) { -// g.dispose(); -// } - } - } - - - ////////////////////////////////////////////////////////////// - - - /** - * Main method for the primary animation thread. - * - * Painting in AWT and Swing - */ - public void run() { // not good to make this synchronized, locks things up - long beforeTime = System.nanoTime(); - long overSleepTime = 0L; - - int noDelays = 0; - // Number of frames with a delay of 0 ms before the - // animation thread yields to other running threads. - final int NO_DELAYS_PER_YIELD = 15; - - /* - // this has to be called after the exception is thrown, - // otherwise the supporting libs won't have a valid context to draw to - Object methodArgs[] = - new Object[] { new Integer(width), new Integer(height) }; - sizeMethods.handle(methodArgs); - */ - - while ((Thread.currentThread() == thread) && !finished) { - // Don't resize the renderer from the EDT (i.e. from a ComponentEvent), - // otherwise it may attempt a resize mid-render. - if (resizeRequest) { - resizeRenderer(resizeWidth, resizeHeight); - resizeRequest = false; - } - - // render a single frame - handleDraw(); - - if (frameCount == 1) { - // Call the request focus event once the image is sure to be on - // screen and the component is valid. The OpenGL renderer will - // request focus for its canvas inside beginDraw(). - // http://java.sun.com/j2se/1.4.2/docs/api/java/awt/doc-files/FocusSpec.html - //println("requesting focus"); - requestFocus(); - } - - // wait for update & paint to happen before drawing next frame - // this is necessary since the drawing is sometimes in a - // separate thread, meaning that the next frame will start - // before the update/paint is completed - - long afterTime = System.nanoTime(); - long timeDiff = afterTime - beforeTime; - //System.out.println("time diff is " + timeDiff); - long sleepTime = (frameRatePeriod - timeDiff) - overSleepTime; - - if (sleepTime > 0) { // some time left in this cycle - try { -// Thread.sleep(sleepTime / 1000000L); // nanoseconds -> milliseconds - Thread.sleep(sleepTime / 1000000L, (int) (sleepTime % 1000000L)); - noDelays = 0; // Got some sleep, not delaying anymore - } catch (InterruptedException ex) { } - - overSleepTime = (System.nanoTime() - afterTime) - sleepTime; - //System.out.println(" oversleep is " + overSleepTime); - - } else { // sleepTime <= 0; the frame took longer than the period -// excess -= sleepTime; // store excess time value - overSleepTime = 0L; - - if (noDelays > NO_DELAYS_PER_YIELD) { - Thread.yield(); // give another thread a chance to run - noDelays = 0; - } - } - - beforeTime = System.nanoTime(); - } - - stop(); // call to shutdown libs? - - // If the user called the exit() function, the window should close, - // rather than the sketch just halting. - if (exitCalled) { - exit2(); - } - } - - - //synchronized public void handleDisplay() { - public void handleDraw() { - if (g != null && (looping || redraw)) { - if (!g.canDraw()) { - // Don't draw if the renderer is not yet ready. - // (e.g. OpenGL has to wait for a peer to be on screen) - return; - } - - //System.out.println("handleDraw() " + frameCount); - - g.beginDraw(); - if (recorder != null) { - recorder.beginDraw(); - } - - long now = System.nanoTime(); - - if (frameCount == 0) { - try { - //println("Calling setup()"); - setup(); - //println("Done with setup()"); - - } catch (RendererChangeException e) { - // Give up, instead set the new renderer and re-attempt setup() - return; - } - this.defaultSize = false; - - } else { // frameCount > 0, meaning an actual draw() - // update the current frameRate - double rate = 1000000.0 / ((now - frameRateLastNanos) / 1000000.0); - float instantaneousRate = (float) rate / 1000.0f; - frameRate = (frameRate * 0.9f) + (instantaneousRate * 0.1f); - - preMethods.handle(); - - // use dmouseX/Y as previous mouse pos, since this is the - // last position the mouse was in during the previous draw. - pmouseX = dmouseX; - pmouseY = dmouseY; - - //println("Calling draw()"); - draw(); - //println("Done calling draw()"); - - // dmouseX/Y is updated only once per frame (unlike emouseX/Y) - dmouseX = mouseX; - dmouseY = mouseY; - - // these are called *after* loop so that valid - // drawing commands can be run inside them. it can't - // be before, since a call to background() would wipe - // out anything that had been drawn so far. - dequeueMouseEvents(); - dequeueKeyEvents(); - - drawMethods.handle(); - - redraw = false; // unset 'redraw' flag in case it was set - // (only do this once draw() has run, not just setup()) - - } - - g.endDraw(); - if (recorder != null) { - recorder.endDraw(); - } - - frameRateLastNanos = now; - frameCount++; - - // Actively render the screen - paint(); - -// repaint(); -// getToolkit().sync(); // force repaint now (proper method) - - postMethods.handle(); - } - } - - - ////////////////////////////////////////////////////////////// - - - - synchronized public void redraw() { - if (!looping) { - redraw = true; -// if (thread != null) { -// // wake from sleep (necessary otherwise it'll be -// // up to 10 seconds before update) -// if (CRUSTY_THREADS) { -// thread.interrupt(); -// } else { -// synchronized (blocker) { -// blocker.notifyAll(); -// } -// } -// } - } - } - - - synchronized public void loop() { - if (!looping) { - looping = true; - } - } - - - synchronized public void noLoop() { - if (looping) { - looping = false; - } - } - - - ////////////////////////////////////////////////////////////// - - - public void addListeners() { - addMouseListener(this); - addMouseMotionListener(this); - addKeyListener(this); - addFocusListener(this); - - addComponentListener(new ComponentAdapter() { - public void componentResized(ComponentEvent e) { - Component c = e.getComponent(); - //System.out.println("componentResized() " + c); - Rectangle bounds = c.getBounds(); - resizeRequest = true; - resizeWidth = bounds.width; - resizeHeight = bounds.height; - } - }); - } - - - ////////////////////////////////////////////////////////////// - - - MouseEvent mouseEventQueue[] = new MouseEvent[10]; - int mouseEventCount; - - protected void enqueueMouseEvent(MouseEvent e) { - synchronized (mouseEventQueue) { - if (mouseEventCount == mouseEventQueue.length) { - MouseEvent temp[] = new MouseEvent[mouseEventCount << 1]; - System.arraycopy(mouseEventQueue, 0, temp, 0, mouseEventCount); - mouseEventQueue = temp; - } - mouseEventQueue[mouseEventCount++] = e; - } - } - - protected void dequeueMouseEvents() { - synchronized (mouseEventQueue) { - for (int i = 0; i < mouseEventCount; i++) { - mouseEvent = mouseEventQueue[i]; - handleMouseEvent(mouseEvent); - } - mouseEventCount = 0; - } - } - - - /** - * Actually take action based on a mouse event. - * Internally updates mouseX, mouseY, mousePressed, and mouseEvent. - * Then it calls the event type with no params, - * i.e. mousePressed() or mouseReleased() that the user may have - * overloaded to do something more useful. - */ - protected void handleMouseEvent(MouseEvent event) { - int id = event.getID(); - - // http://dev.processing.org/bugs/show_bug.cgi?id=170 - // also prevents mouseExited() on the mac from hosing the mouse - // position, because x/y are bizarre values on the exit event. - // see also the id check below.. both of these go together - if ((id == MouseEvent.MOUSE_DRAGGED) || - (id == MouseEvent.MOUSE_MOVED)) { - pmouseX = emouseX; - pmouseY = emouseY; - mouseX = event.getX(); - mouseY = event.getY(); - } - - mouseEvent = event; - - int modifiers = event.getModifiers(); - if ((modifiers & InputEvent.BUTTON1_MASK) != 0) { - mouseButton = LEFT; - } else if ((modifiers & InputEvent.BUTTON2_MASK) != 0) { - mouseButton = CENTER; - } else if ((modifiers & InputEvent.BUTTON3_MASK) != 0) { - mouseButton = RIGHT; - } - // if running on macos, allow ctrl-click as right mouse - if (platform == MACOSX) { - if (mouseEvent.isPopupTrigger()) { - mouseButton = RIGHT; - } - } - - mouseEventMethods.handle(new Object[] { event }); - - // this used to only be called on mouseMoved and mouseDragged - // change it back if people run into trouble - if (firstMouse) { - pmouseX = mouseX; - pmouseY = mouseY; - dmouseX = mouseX; - dmouseY = mouseY; - firstMouse = false; - } - - //println(event); - - switch (id) { - case MouseEvent.MOUSE_PRESSED: - mousePressed = true; - mousePressed(); - break; - case MouseEvent.MOUSE_RELEASED: - mousePressed = false; - mouseReleased(); - break; - case MouseEvent.MOUSE_CLICKED: - mouseClicked(); - break; - case MouseEvent.MOUSE_DRAGGED: - mouseDragged(); - break; - case MouseEvent.MOUSE_MOVED: - mouseMoved(); - break; - } - - if ((id == MouseEvent.MOUSE_DRAGGED) || - (id == MouseEvent.MOUSE_MOVED)) { - emouseX = mouseX; - emouseY = mouseY; - } - } - - - /** - * Figure out how to process a mouse event. When loop() has been - * called, the events will be queued up until drawing is complete. - * If noLoop() has been called, then events will happen immediately. - */ - protected void checkMouseEvent(MouseEvent event) { - if (looping) { - enqueueMouseEvent(event); - } else { - handleMouseEvent(event); - } - } - - - /** - * If you override this or any function that takes a "MouseEvent e" - * without calling its super.mouseXxxx() then mouseX, mouseY, - * mousePressed, and mouseEvent will no longer be set. - */ - public void mousePressed(MouseEvent e) { - checkMouseEvent(e); - } - - public void mouseReleased(MouseEvent e) { - checkMouseEvent(e); - } - - public void mouseClicked(MouseEvent e) { - checkMouseEvent(e); - } - - public void mouseEntered(MouseEvent e) { - checkMouseEvent(e); - } - - public void mouseExited(MouseEvent e) { - checkMouseEvent(e); - } - - public void mouseDragged(MouseEvent e) { - checkMouseEvent(e); - } - - public void mouseMoved(MouseEvent e) { - checkMouseEvent(e); - } - - - /** - * The mousePressed() function is called once after every time a mouse button is pressed. The mouseButton variable (see the related reference entry) can be used to determine which button has been pressed. - * =advanced - * - * If you must, use - * int button = mouseEvent.getButton(); - * to figure out which button was clicked. It will be one of: - * MouseEvent.BUTTON1, MouseEvent.BUTTON2, MouseEvent.BUTTON3 - * Note, however, that this is completely inconsistent across - * platforms. - * @webref input:mouse - * @see PApplet#mouseX - * @see PApplet#mouseY - * @see PApplet#mousePressed - * @see PApplet#mouseReleased() - * @see PApplet#mouseMoved() - * @see PApplet#mouseDragged() - */ - public void mousePressed() { } - - /** - * The mouseReleased() function is called every time a mouse button is released. - * @webref input:mouse - * @see PApplet#mouseX - * @see PApplet#mouseY - * @see PApplet#mousePressed - * @see PApplet#mousePressed() - * @see PApplet#mouseMoved() - * @see PApplet#mouseDragged() - */ - public void mouseReleased() { } - - /** - * The mouseClicked() function is called once after a mouse button has been pressed and then released. - * =advanced - * When the mouse is clicked, mousePressed() will be called, - * then mouseReleased(), then mouseClicked(). Note that - * mousePressed is already false inside of mouseClicked(). - * @webref input:mouse - * @see PApplet#mouseX - * @see PApplet#mouseY - * @see PApplet#mouseButton - * @see PApplet#mousePressed() - * @see PApplet#mouseReleased() - * @see PApplet#mouseMoved() - * @see PApplet#mouseDragged() - */ - public void mouseClicked() { } - - /** - * The mouseDragged() function is called once every time the mouse moves and a mouse button is pressed. - * @webref input:mouse - * @see PApplet#mouseX - * @see PApplet#mouseY - * @see PApplet#mousePressed - * @see PApplet#mousePressed() - * @see PApplet#mouseReleased() - * @see PApplet#mouseMoved() - */ - public void mouseDragged() { } - - /** - * The mouseMoved() function is called every time the mouse moves and a mouse button is not pressed. - * @webref input:mouse - * @see PApplet#mouseX - * @see PApplet#mouseY - * @see PApplet#mousePressed - * @see PApplet#mousePressed() - * @see PApplet#mouseReleased() - * @see PApplet#mouseDragged() - */ - public void mouseMoved() { } - - - ////////////////////////////////////////////////////////////// - - - KeyEvent keyEventQueue[] = new KeyEvent[10]; - int keyEventCount; - - protected void enqueueKeyEvent(KeyEvent e) { - synchronized (keyEventQueue) { - if (keyEventCount == keyEventQueue.length) { - KeyEvent temp[] = new KeyEvent[keyEventCount << 1]; - System.arraycopy(keyEventQueue, 0, temp, 0, keyEventCount); - keyEventQueue = temp; - } - keyEventQueue[keyEventCount++] = e; - } - } - - protected void dequeueKeyEvents() { - synchronized (keyEventQueue) { - for (int i = 0; i < keyEventCount; i++) { - keyEvent = keyEventQueue[i]; - handleKeyEvent(keyEvent); - } - keyEventCount = 0; - } - } - - - protected void handleKeyEvent(KeyEvent event) { - keyEvent = event; - key = event.getKeyChar(); - keyCode = event.getKeyCode(); - - keyEventMethods.handle(new Object[] { event }); - - switch (event.getID()) { - case KeyEvent.KEY_PRESSED: - keyPressed = true; - keyPressed(); - break; - case KeyEvent.KEY_RELEASED: - keyPressed = false; - keyReleased(); - break; - case KeyEvent.KEY_TYPED: - keyTyped(); - break; - } - - // if someone else wants to intercept the key, they should - // set key to zero (or something besides the ESC). - if (event.getID() == KeyEvent.KEY_PRESSED) { - if (key == KeyEvent.VK_ESCAPE) { - exit(); - } - // When running tethered to the Processing application, respond to - // Ctrl-W (or Cmd-W) events by closing the sketch. Disable this behavior - // when running independently, because this sketch may be one component - // embedded inside an application that has its own close behavior. - if (external && - event.getModifiers() == MENU_SHORTCUT && - event.getKeyCode() == 'W') { - exit(); - } - } - } - - - protected void checkKeyEvent(KeyEvent event) { - if (looping) { - enqueueKeyEvent(event); - } else { - handleKeyEvent(event); - } - } - - - /** - * Overriding keyXxxxx(KeyEvent e) functions will cause the 'key', - * 'keyCode', and 'keyEvent' variables to no longer work; - * key events will no longer be queued until the end of draw(); - * and the keyPressed(), keyReleased() and keyTyped() methods - * will no longer be called. - */ - public void keyPressed(KeyEvent e) { checkKeyEvent(e); } - public void keyReleased(KeyEvent e) { checkKeyEvent(e); } - public void keyTyped(KeyEvent e) { checkKeyEvent(e); } - - - /** - * - * The keyPressed() function is called once every time a key is pressed. The key that was pressed is stored in the key variable. - *

    For non-ASCII keys, use the keyCode variable. - * The keys included in the ASCII specification (BACKSPACE, TAB, ENTER, RETURN, ESC, and DELETE) do not require checking to see if they key is coded, and you should simply use the key variable instead of keyCode - * If you're making cross-platform projects, note that the ENTER key is commonly used on PCs and Unix and the RETURN key is used instead on Macintosh. - * Check for both ENTER and RETURN to make sure your program will work for all platforms.

    Because of how operating systems handle key repeats, holding down a key may cause multiple calls to keyPressed() (and keyReleased() as well). - * The rate of repeat is set by the operating system and how each computer is configured. - * =advanced - * - * Called each time a single key on the keyboard is pressed. - * Because of how operating systems handle key repeats, holding - * down a key will cause multiple calls to keyPressed(), because - * the OS repeat takes over. - *

    - * Examples for key handling: - * (Tested on Windows XP, please notify if different on other - * platforms, I have a feeling Mac OS and Linux may do otherwise) - *

    -   * 1. Pressing 'a' on the keyboard:
    -   *    keyPressed  with key == 'a' and keyCode == 'A'
    -   *    keyTyped    with key == 'a' and keyCode ==  0
    -   *    keyReleased with key == 'a' and keyCode == 'A'
    -   *
    -   * 2. Pressing 'A' on the keyboard:
    -   *    keyPressed  with key == 'A' and keyCode == 'A'
    -   *    keyTyped    with key == 'A' and keyCode ==  0
    -   *    keyReleased with key == 'A' and keyCode == 'A'
    -   *
    -   * 3. Pressing 'shift', then 'a' on the keyboard (caps lock is off):
    -   *    keyPressed  with key == CODED and keyCode == SHIFT
    -   *    keyPressed  with key == 'A'   and keyCode == 'A'
    -   *    keyTyped    with key == 'A'   and keyCode == 0
    -   *    keyReleased with key == 'A'   and keyCode == 'A'
    -   *    keyReleased with key == CODED and keyCode == SHIFT
    -   *
    -   * 4. Holding down the 'a' key.
    -   *    The following will happen several times,
    -   *    depending on your machine's "key repeat rate" settings:
    -   *    keyPressed  with key == 'a' and keyCode == 'A'
    -   *    keyTyped    with key == 'a' and keyCode ==  0
    -   *    When you finally let go, you'll get:
    -   *    keyReleased with key == 'a' and keyCode == 'A'
    -   *
    -   * 5. Pressing and releasing the 'shift' key
    -   *    keyPressed  with key == CODED and keyCode == SHIFT
    -   *    keyReleased with key == CODED and keyCode == SHIFT
    -   *    (note there is no keyTyped)
    -   *
    -   * 6. Pressing the tab key in an applet with Java 1.4 will
    -   *    normally do nothing, but PApplet dynamically shuts
    -   *    this behavior off if Java 1.4 is in use (tested 1.4.2_05 Windows).
    -   *    Java 1.1 (Microsoft VM) passes the TAB key through normally.
    -   *    Not tested on other platforms or for 1.3.
    -   * 
    - * @see PApplet#key - * @see PApplet#keyCode - * @see PApplet#keyPressed - * @see PApplet#keyReleased() - * @webref input:keyboard - */ - public void keyPressed() { } - - - /** - * The keyReleased() function is called once every time a key is released. The key that was released will be stored in the key variable. See key and keyReleased for more information. - * - * @see PApplet#key - * @see PApplet#keyCode - * @see PApplet#keyPressed - * @see PApplet#keyPressed() - * @webref input:keyboard - */ - public void keyReleased() { } - - - /** - * Only called for "regular" keys like letters, - * see keyPressed() for full documentation. - */ - public void keyTyped() { } - - - ////////////////////////////////////////////////////////////// - - // i am focused man, and i'm not afraid of death. - // and i'm going all out. i circle the vultures in a van - // and i run the block. - - - public void focusGained() { } - - public void focusGained(FocusEvent e) { - focused = true; - focusGained(); - } - - - public void focusLost() { } - - public void focusLost(FocusEvent e) { - focused = false; - focusLost(); - } - - - ////////////////////////////////////////////////////////////// - - // getting the time - - - /** - * Returns the number of milliseconds (thousandths of a second) since starting an applet. This information is often used for timing animation sequences. - * - * =advanced - *

    - * This is a function, rather than a variable, because it may - * change multiple times per frame. - * - * @webref input:time_date - * @see processing.core.PApplet#second() - * @see processing.core.PApplet#minute() - * @see processing.core.PApplet#hour() - * @see processing.core.PApplet#day() - * @see processing.core.PApplet#month() - * @see processing.core.PApplet#year() - * - */ - public int millis() { - return (int) (System.currentTimeMillis() - millisOffset); - } - - /** Seconds position of the current time. - * - * @webref input:time_date - * @see processing.core.PApplet#millis() - * @see processing.core.PApplet#minute() - * @see processing.core.PApplet#hour() - * @see processing.core.PApplet#day() - * @see processing.core.PApplet#month() - * @see processing.core.PApplet#year() - * */ - static public int second() { - return Calendar.getInstance().get(Calendar.SECOND); - } - - /** - * Processing communicates with the clock on your computer. The minute() function returns the current minute as a value from 0 - 59. - * - * @webref input:time_date - * @see processing.core.PApplet#millis() - * @see processing.core.PApplet#second() - * @see processing.core.PApplet#hour() - * @see processing.core.PApplet#day() - * @see processing.core.PApplet#month() - * @see processing.core.PApplet#year() - * - * */ - static public int minute() { - return Calendar.getInstance().get(Calendar.MINUTE); - } - - /** - * Processing communicates with the clock on your computer. The hour() function returns the current hour as a value from 0 - 23. - * =advanced - * Hour position of the current time in international format (0-23). - *

    - * To convert this value to American time:
    - *

    int yankeeHour = (hour() % 12);
    -   * if (yankeeHour == 0) yankeeHour = 12;
    - * - * @webref input:time_date - * @see processing.core.PApplet#millis() - * @see processing.core.PApplet#second() - * @see processing.core.PApplet#minute() - * @see processing.core.PApplet#day() - * @see processing.core.PApplet#month() - * @see processing.core.PApplet#year() - * - */ - static public int hour() { - return Calendar.getInstance().get(Calendar.HOUR_OF_DAY); - } - - /** - * Processing communicates with the clock on your computer. The day() function returns the current day as a value from 1 - 31. - * =advanced - * Get the current day of the month (1 through 31). - *

    - * If you're looking for the day of the week (M-F or whatever) - * or day of the year (1..365) then use java's Calendar.get() - * - * @webref input:time_date - * @see processing.core.PApplet#millis() - * @see processing.core.PApplet#second() - * @see processing.core.PApplet#minute() - * @see processing.core.PApplet#hour() - * @see processing.core.PApplet#month() - * @see processing.core.PApplet#year() - */ - static public int day() { - return Calendar.getInstance().get(Calendar.DAY_OF_MONTH); - } - - /** - * Processing communicates with the clock on your computer. The month() function returns the current month as a value from 1 - 12. - * - * @webref input:time_date - * @see processing.core.PApplet#millis() - * @see processing.core.PApplet#second() - * @see processing.core.PApplet#minute() - * @see processing.core.PApplet#hour() - * @see processing.core.PApplet#day() - * @see processing.core.PApplet#year() - */ - static public int month() { - // months are number 0..11 so change to colloquial 1..12 - return Calendar.getInstance().get(Calendar.MONTH) + 1; - } - - /** - * Processing communicates with the clock on your computer. - * The year() function returns the current year as an integer (2003, 2004, 2005, etc). - * - * @webref input:time_date - * @see processing.core.PApplet#millis() - * @see processing.core.PApplet#second() - * @see processing.core.PApplet#minute() - * @see processing.core.PApplet#hour() - * @see processing.core.PApplet#day() - * @see processing.core.PApplet#month() - */ - static public int year() { - return Calendar.getInstance().get(Calendar.YEAR); - } - - - ////////////////////////////////////////////////////////////// - - // controlling time (playing god) - - - /** - * The delay() function causes the program to halt for a specified time. - * Delay times are specified in thousandths of a second. For example, - * running delay(3000) will stop the program for three seconds and - * delay(500) will stop the program for a half-second. Remember: the - * display window is updated only at the end of draw(), so putting more - * than one delay() inside draw() will simply add them together and the new - * frame will be drawn when the total delay is over. - *

    - * I'm not sure if this is even helpful anymore, as the screen isn't - * updated before or after the delay, meaning which means it just - * makes the app lock up temporarily. - */ - public void delay(int napTime) { - if (frameCount != 0) { - if (napTime > 0) { - try { - Thread.sleep(napTime); - } catch (InterruptedException e) { } - } - } - } - - - /** - * Specifies the number of frames to be displayed every second. - * If the processor is not fast enough to maintain the specified rate, it will not be achieved. - * For example, the function call frameRate(30) will attempt to refresh 30 times a second. - * It is recommended to set the frame rate within setup(). The default rate is 60 frames per second. - * =advanced - * Set a target frameRate. This will cause delay() to be called - * after each frame so that the sketch synchronizes to a particular speed. - * Note that this only sets the maximum frame rate, it cannot be used to - * make a slow sketch go faster. Sketches have no default frame rate - * setting, and will attempt to use maximum processor power to achieve - * maximum speed. - * @webref environment - * @param newRateTarget number of frames per second - * @see PApplet#delay(int) - */ - public void frameRate(float newRateTarget) { - frameRateTarget = newRateTarget; - frameRatePeriod = (long) (1000000000.0 / frameRateTarget); - } - - - ////////////////////////////////////////////////////////////// - - - /** - * Reads the value of a param. - * Values are always read as a String so if you want them to be an integer or other datatype they must be converted. - * The param() function will only work in a web browser. - * The function should be called inside setup(), - * otherwise the applet may not yet be initialized and connected to its parent web browser. - * - * @webref input:web - * @usage Web - * - * @param what name of the param to read - */ - public String param(String what) { - if (online) { - return getParameter(what); - - } else { - System.err.println("param() only works inside a web browser"); - } - return null; - } - - - /** - * Displays message in the browser's status area. This is the text area in the lower left corner of the browser. - * The status() function will only work when the Processing program is running in a web browser. - * =advanced - * Show status in the status bar of a web browser, or in the - * System.out console. Eventually this might show status in the - * p5 environment itself, rather than relying on the console. - * - * @webref input:web - * @usage Web - * @param what any valid String - */ - public void status(String what) { - if (online) { - showStatus(what); - - } else { - System.out.println(what); // something more interesting? - } - } - - - public void link(String here) { - link(here, null); - } - - - /** - * Links to a webpage either in the same window or in a new window. The complete URL must be specified. - * =advanced - * Link to an external page without all the muss. - *

    - * When run with an applet, uses the browser to open the url, - * for applications, attempts to launch a browser with the url. - *

    - * Works on Mac OS X and Windows. For Linux, use: - *

    open(new String[] { "firefox", url });
    - * or whatever you want as your browser, since Linux doesn't - * yet have a standard method for launching URLs. - * - * @webref input:web - * @param url complete url as a String in quotes - * @param frameTitle name of the window to load the URL as a string in quotes - * - */ - public void link(String url, String frameTitle) { - if (online) { - try { - if (frameTitle == null) { - getAppletContext().showDocument(new URL(url)); - } else { - getAppletContext().showDocument(new URL(url), frameTitle); - } - } catch (Exception e) { - e.printStackTrace(); - throw new RuntimeException("Could not open " + url); - } - } else { - try { - if (platform == WINDOWS) { - // the following uses a shell execute to launch the .html file - // note that under cygwin, the .html files have to be chmodded +x - // after they're unpacked from the zip file. i don't know why, - // and don't understand what this does in terms of windows - // permissions. without the chmod, the command prompt says - // "Access is denied" in both cygwin and the "dos" prompt. - //Runtime.getRuntime().exec("cmd /c " + currentDir + "\\reference\\" + - // referenceFile + ".html"); - - // replace ampersands with control sequence for DOS. - // solution contributed by toxi on the bugs board. - url = url.replaceAll("&","^&"); - - // open dos prompt, give it 'start' command, which will - // open the url properly. start by itself won't work since - // it appears to need cmd - Runtime.getRuntime().exec("cmd /c start " + url); - - } else if (platform == MACOSX) { - //com.apple.mrj.MRJFileUtils.openURL(url); - try { -// Class mrjFileUtils = Class.forName("com.apple.mrj.MRJFileUtils"); -// Method openMethod = -// mrjFileUtils.getMethod("openURL", new Class[] { String.class }); - Class eieio = Class.forName("com.apple.eio.FileManager"); - Method openMethod = - eieio.getMethod("openURL", new Class[] { String.class }); - openMethod.invoke(null, new Object[] { url }); - } catch (Exception e) { - e.printStackTrace(); - } - } else { - //throw new RuntimeException("Can't open URLs for this platform"); - // Just pass it off to open() and hope for the best - open(url); - } - } catch (IOException e) { - e.printStackTrace(); - throw new RuntimeException("Could not open " + url); - } - } - } - - - /** - * Attempts to open an application or file using your platform's launcher. The file parameter is a String specifying the file name and location. The location parameter must be a full path name, or the name of an executable in the system's PATH. In most cases, using a full path is the best option, rather than relying on the system PATH. Be sure to make the file executable before attempting to open it (chmod +x). - *

    - * The args parameter is a String or String array which is passed to the command line. If you have multiple parameters, e.g. an application and a document, or a command with multiple switches, use the version that takes a String array, and place each individual item in a separate element. - *

    - * If args is a String (not an array), then it can only be a single file or application with no parameters. It's not the same as executing that String using a shell. For instance, open("jikes -help") will not work properly. - *

    - * This function behaves differently on each platform. On Windows, the parameters are sent to the Windows shell via "cmd /c". On Mac OS X, the "open" command is used (type "man open" in Terminal.app for documentation). On Linux, it first tries gnome-open, then kde-open, but if neither are available, it sends the command to the shell without any alterations. - *

    - * For users familiar with Java, this is not quite the same as Runtime.exec(), because the launcher command is prepended. Instead, the exec(String[]) function is a shortcut for Runtime.getRuntime.exec(String[]). - * - * @webref input:files - * @param filename name of the file - * @usage Application - */ - static public void open(String filename) { - open(new String[] { filename }); - } - - - static String openLauncher; - - /** - * Launch a process using a platforms shell. This version uses an array - * to make it easier to deal with spaces in the individual elements. - * (This avoids the situation of trying to put single or double quotes - * around different bits). - * - * @param list of commands passed to the command line - */ - static public Process open(String argv[]) { - String[] params = null; - - if (platform == WINDOWS) { - // just launching the .html file via the shell works - // but make sure to chmod +x the .html files first - // also place quotes around it in case there's a space - // in the user.dir part of the url - params = new String[] { "cmd", "/c" }; - - } else if (platform == MACOSX) { - params = new String[] { "open" }; - - } else if (platform == LINUX) { - if (openLauncher == null) { - // Attempt to use gnome-open - try { - Process p = Runtime.getRuntime().exec(new String[] { "gnome-open" }); - /*int result =*/ p.waitFor(); - // Not installed will throw an IOException (JDK 1.4.2, Ubuntu 7.04) - openLauncher = "gnome-open"; - } catch (Exception e) { } - } - if (openLauncher == null) { - // Attempt with kde-open - try { - Process p = Runtime.getRuntime().exec(new String[] { "kde-open" }); - /*int result =*/ p.waitFor(); - openLauncher = "kde-open"; - } catch (Exception e) { } - } - if (openLauncher == null) { - System.err.println("Could not find gnome-open or kde-open, " + - "the open() command may not work."); - } - if (openLauncher != null) { - params = new String[] { openLauncher }; - } - //} else { // give up and just pass it to Runtime.exec() - //open(new String[] { filename }); - //params = new String[] { filename }; - } - if (params != null) { - // If the 'open', 'gnome-open' or 'cmd' are already included - if (params[0].equals(argv[0])) { - // then don't prepend those params again - return exec(argv); - } else { - params = concat(params, argv); - return exec(params); - } - } else { - return exec(argv); - } - } - - - static public Process exec(String[] argv) { - try { - return Runtime.getRuntime().exec(argv); - } catch (Exception e) { - e.printStackTrace(); - throw new RuntimeException("Could not open " + join(argv, ' ')); - } - } - - - ////////////////////////////////////////////////////////////// - - - /** - * Function for an applet/application to kill itself and - * display an error. Mostly this is here to be improved later. - */ - public void die(String what) { - stop(); - throw new RuntimeException(what); - } - - - /** - * Same as above but with an exception. Also needs work. - */ - public void die(String what, Exception e) { - if (e != null) e.printStackTrace(); - die(what); - } - - - /** - * Call to safely exit the sketch when finished. For instance, - * to render a single frame, save it, and quit. - */ - public void exit() { - if (thread == null) { - // exit immediately, stop() has already been called, - // meaning that the main thread has long since exited - exit2(); - - } else if (looping) { - // stop() will be called as the thread exits - finished = true; - // tell the code to call exit2() to do a System.exit() - // once the next draw() has completed - exitCalled = true; - - } else if (!looping) { - // if not looping, need to call stop explicitly, - // because the main thread will be sleeping - stop(); - - // now get out - exit2(); - } - } - - - void exit2() { - try { - System.exit(0); - } catch (SecurityException e) { - // don't care about applet security exceptions - } - } - - - - ////////////////////////////////////////////////////////////// - - - public void method(String name) { -// final Object o = this; -// final Class c = getClass(); - try { - Method method = getClass().getMethod(name, new Class[] {}); - method.invoke(this, new Object[] { }); - - } catch (IllegalArgumentException e) { - e.printStackTrace(); - } catch (IllegalAccessException e) { - e.printStackTrace(); - } catch (InvocationTargetException e) { - e.getTargetException().printStackTrace(); - } catch (NoSuchMethodException nsme) { - System.err.println("There is no public " + name + "() method " + - "in the class " + getClass().getName()); - } catch (Exception e) { - e.printStackTrace(); - } - } - - - public void thread(final String name) { - Thread later = new Thread() { - public void run() { - method(name); - } - }; - later.start(); - } - - - /* - public void thread(String name) { - final Object o = this; - final Class c = getClass(); - try { - final Method method = c.getMethod(name, new Class[] {}); - Thread later = new Thread() { - public void run() { - try { - method.invoke(o, new Object[] { }); - - } catch (IllegalArgumentException e) { - e.printStackTrace(); - } catch (IllegalAccessException e) { - e.printStackTrace(); - } catch (InvocationTargetException e) { - e.getTargetException().printStackTrace(); - } - } - }; - later.start(); - - } catch (NoSuchMethodException nsme) { - System.err.println("There is no " + name + "() method " + - "in the class " + getClass().getName()); - - } catch (Exception e) { - e.printStackTrace(); - } - } - */ - - - - ////////////////////////////////////////////////////////////// - - // SCREEN GRABASS - - - /** - * Intercepts any relative paths to make them absolute (relative - * to the sketch folder) before passing to save() in PImage. - * (Changed in 0100) - */ - public void save(String filename) { - g.save(savePath(filename)); - } - - - /** - * Grab an image of what's currently in the drawing area and save it - * as a .tif or .tga file. - *

    - * Best used just before endDraw() at the end of your draw(). - * This can only create .tif or .tga images, so if neither extension - * is specified it defaults to writing a tiff and adds a .tif suffix. - */ - public void saveFrame() { - try { - g.save(savePath("screen-" + nf(frameCount, 4) + ".tif")); - } catch (SecurityException se) { - System.err.println("Can't use saveFrame() when running in a browser, " + - "unless using a signed applet."); - } - } - - - /** - * Save the current frame as a .tif or .tga image. - *

    - * The String passed in can contain a series of # signs - * that will be replaced with the screengrab number. - *

    -   * i.e. saveFrame("blah-####.tif");
    -   *      // saves a numbered tiff image, replacing the
    -   *      // #### signs with zeros and the frame number 
    - */ - public void saveFrame(String what) { - try { - g.save(savePath(insertFrame(what))); - } catch (SecurityException se) { - System.err.println("Can't use saveFrame() when running in a browser, " + - "unless using a signed applet."); - } - } - - - /** - * Check a string for #### signs to see if the frame number should be - * inserted. Used for functions like saveFrame() and beginRecord() to - * replace the # marks with the frame number. If only one # is used, - * it will be ignored, under the assumption that it's probably not - * intended to be the frame number. - */ - protected String insertFrame(String what) { - int first = what.indexOf('#'); - int last = what.lastIndexOf('#'); - - if ((first != -1) && (last - first > 0)) { - String prefix = what.substring(0, first); - int count = last - first + 1; - String suffix = what.substring(last + 1); - return prefix + nf(frameCount, count) + suffix; - } - return what; // no change - } - - - - ////////////////////////////////////////////////////////////// - - // CURSOR - - // - - - int cursorType = ARROW; // cursor type - boolean cursorVisible = true; // cursor visibility flag - PImage invisibleCursor; - - - /** - * Set the cursor type - * @param cursorType either ARROW, CROSS, HAND, MOVE, TEXT, WAIT - */ - public void cursor(int cursorType) { - setCursor(Cursor.getPredefinedCursor(cursorType)); - cursorVisible = true; - this.cursorType = cursorType; - } - - - /** - * Replace the cursor with the specified PImage. The x- and y- - * coordinate of the center will be the center of the image. - */ - public void cursor(PImage image) { - cursor(image, image.width/2, image.height/2); - } - - - /** - * Sets the cursor to a predefined symbol, an image, or turns it on if already hidden. - * If you are trying to set an image as the cursor, it is recommended to make the size 16x16 or 32x32 pixels. - * It is not possible to load an image as the cursor if you are exporting your program for the Web. - * The values for parameters x and y must be less than the dimensions of the image. - * =advanced - * Set a custom cursor to an image with a specific hotspot. - * Only works with JDK 1.2 and later. - * Currently seems to be broken on Java 1.4 for Mac OS X - *

    - * Based on code contributed by Amit Pitaru, plus additional - * code to handle Java versions via reflection by Jonathan Feinberg. - * Reflection removed for release 0128 and later. - * @webref environment - * @see PApplet#noCursor() - * @param image any variable of type PImage - * @param hotspotX the horizonal active spot of the cursor - * @param hotspotY the vertical active spot of the cursor - */ - public void cursor(PImage image, int hotspotX, int hotspotY) { - // don't set this as cursor type, instead use cursor_type - // to save the last cursor used in case cursor() is called - //cursor_type = Cursor.CUSTOM_CURSOR; - Image jimage = - createImage(new MemoryImageSource(image.width, image.height, - image.pixels, 0, image.width)); - Point hotspot = new Point(hotspotX, hotspotY); - Toolkit tk = Toolkit.getDefaultToolkit(); - Cursor cursor = tk.createCustomCursor(jimage, hotspot, "Custom Cursor"); - setCursor(cursor); - cursorVisible = true; - } - - - /** - * Show the cursor after noCursor() was called. - * Notice that the program remembers the last set cursor type - */ - public void cursor() { - // maybe should always set here? seems dangerous, since - // it's likely that java will set the cursor to something - // else on its own, and the applet will be stuck b/c bagel - // thinks that the cursor is set to one particular thing - if (!cursorVisible) { - cursorVisible = true; - setCursor(Cursor.getPredefinedCursor(cursorType)); - } - } - - - /** - * Hides the cursor from view. Will not work when running the program in a web browser. - * =advanced - * Hide the cursor by creating a transparent image - * and using it as a custom cursor. - * @webref environment - * @see PApplet#cursor() - * @usage Application - */ - public void noCursor() { - if (!cursorVisible) return; // don't hide if already hidden. - - if (invisibleCursor == null) { - invisibleCursor = new PImage(16, 16, ARGB); - } - // was formerly 16x16, but the 0x0 was added by jdf as a fix - // for macosx, which wasn't honoring the invisible cursor - cursor(invisibleCursor, 8, 8); - cursorVisible = false; - } - - - ////////////////////////////////////////////////////////////// - - - static public void print(byte what) { - System.out.print(what); - System.out.flush(); - } - - static public void print(boolean what) { - System.out.print(what); - System.out.flush(); - } - - static public void print(char what) { - System.out.print(what); - System.out.flush(); - } - - static public void print(int what) { - System.out.print(what); - System.out.flush(); - } - - static public void print(float what) { - System.out.print(what); - System.out.flush(); - } - - static public void print(String what) { - System.out.print(what); - System.out.flush(); - } - - static public void print(Object what) { - if (what == null) { - // special case since this does fuggly things on > 1.1 - System.out.print("null"); - } else { - System.out.println(what.toString()); - } - } - - // - - static public void println() { - System.out.println(); - } - - // - - static public void println(byte what) { - print(what); System.out.println(); - } - - static public void println(boolean what) { - print(what); System.out.println(); - } - - static public void println(char what) { - print(what); System.out.println(); - } - - static public void println(int what) { - print(what); System.out.println(); - } - - static public void println(float what) { - print(what); System.out.println(); - } - - static public void println(String what) { - print(what); System.out.println(); - } - - static public void println(Object what) { - if (what == null) { - // special case since this does fuggly things on > 1.1 - System.out.println("null"); - - } else { - String name = what.getClass().getName(); - if (name.charAt(0) == '[') { - switch (name.charAt(1)) { - case '[': - // don't even mess with multi-dimensional arrays (case '[') - // or anything else that's not int, float, boolean, char - System.out.println(what); - break; - - case 'L': - // print a 1D array of objects as individual elements - Object poo[] = (Object[]) what; - for (int i = 0; i < poo.length; i++) { - if (poo[i] instanceof String) { - System.out.println("[" + i + "] \"" + poo[i] + "\""); - } else { - System.out.println("[" + i + "] " + poo[i]); - } - } - break; - - case 'Z': // boolean - boolean zz[] = (boolean[]) what; - for (int i = 0; i < zz.length; i++) { - System.out.println("[" + i + "] " + zz[i]); - } - break; - - case 'B': // byte - byte bb[] = (byte[]) what; - for (int i = 0; i < bb.length; i++) { - System.out.println("[" + i + "] " + bb[i]); - } - break; - - case 'C': // char - char cc[] = (char[]) what; - for (int i = 0; i < cc.length; i++) { - System.out.println("[" + i + "] '" + cc[i] + "'"); - } - break; - - case 'I': // int - int ii[] = (int[]) what; - for (int i = 0; i < ii.length; i++) { - System.out.println("[" + i + "] " + ii[i]); - } - break; - - case 'F': // float - float ff[] = (float[]) what; - for (int i = 0; i < ff.length; i++) { - System.out.println("[" + i + "] " + ff[i]); - } - break; - - /* - case 'D': // double - double dd[] = (double[]) what; - for (int i = 0; i < dd.length; i++) { - System.out.println("[" + i + "] " + dd[i]); - } - break; - */ - - default: - System.out.println(what); - } - } else { // not an array - System.out.println(what); - } - } - } - - // - - /* - // not very useful, because it only works for public (and protected?) - // fields of a class, not local variables to methods - public void printvar(String name) { - try { - Field field = getClass().getDeclaredField(name); - println(name + " = " + field.get(this)); - } catch (Exception e) { - e.printStackTrace(); - } - } - */ - - - ////////////////////////////////////////////////////////////// - - // MATH - - // lots of convenience methods for math with floats. - // doubles are overkill for processing applets, and casting - // things all the time is annoying, thus the functions below. - - - static public final float abs(float n) { - return (n < 0) ? -n : n; - } - - static public final int abs(int n) { - return (n < 0) ? -n : n; - } - - static public final float sq(float a) { - return a*a; - } - - static public final float sqrt(float a) { - return (float)Math.sqrt(a); - } - - static public final float log(float a) { - return (float)Math.log(a); - } - - static public final float exp(float a) { - return (float)Math.exp(a); - } - - static public final float pow(float a, float b) { - return (float)Math.pow(a, b); - } - - - static public final int max(int a, int b) { - return (a > b) ? a : b; - } - - static public final float max(float a, float b) { - return (a > b) ? a : b; - } - - /* - static public final double max(double a, double b) { - return (a > b) ? a : b; - } - */ - - - static public final int max(int a, int b, int c) { - return (a > b) ? ((a > c) ? a : c) : ((b > c) ? b : c); - } - - static public final float max(float a, float b, float c) { - return (a > b) ? ((a > c) ? a : c) : ((b > c) ? b : c); - } - - - /** - * Find the maximum value in an array. - * Throws an ArrayIndexOutOfBoundsException if the array is length 0. - * @param list the source array - * @return The maximum value - */ - static public final int max(int[] list) { - if (list.length == 0) { - throw new ArrayIndexOutOfBoundsException(ERROR_MIN_MAX); - } - int max = list[0]; - for (int i = 1; i < list.length; i++) { - if (list[i] > max) max = list[i]; - } - return max; - } - - /** - * Find the maximum value in an array. - * Throws an ArrayIndexOutOfBoundsException if the array is length 0. - * @param list the source array - * @return The maximum value - */ - static public final float max(float[] list) { - if (list.length == 0) { - throw new ArrayIndexOutOfBoundsException(ERROR_MIN_MAX); - } - float max = list[0]; - for (int i = 1; i < list.length; i++) { - if (list[i] > max) max = list[i]; - } - return max; - } - - - /** - * Find the maximum value in an array. - * Throws an ArrayIndexOutOfBoundsException if the array is length 0. - * @param list the source array - * @return The maximum value - */ - /* - static public final double max(double[] list) { - if (list.length == 0) { - throw new ArrayIndexOutOfBoundsException(ERROR_MIN_MAX); - } - double max = list[0]; - for (int i = 1; i < list.length; i++) { - if (list[i] > max) max = list[i]; - } - return max; - } - */ - - - static public final int min(int a, int b) { - return (a < b) ? a : b; - } - - static public final float min(float a, float b) { - return (a < b) ? a : b; - } - - /* - static public final double min(double a, double b) { - return (a < b) ? a : b; - } - */ - - - static public final int min(int a, int b, int c) { - return (a < b) ? ((a < c) ? a : c) : ((b < c) ? b : c); - } - - static public final float min(float a, float b, float c) { - return (a < b) ? ((a < c) ? a : c) : ((b < c) ? b : c); - } - - /* - static public final double min(double a, double b, double c) { - return (a < b) ? ((a < c) ? a : c) : ((b < c) ? b : c); - } - */ - - - /** - * Find the minimum value in an array. - * Throws an ArrayIndexOutOfBoundsException if the array is length 0. - * @param list the source array - * @return The minimum value - */ - static public final int min(int[] list) { - if (list.length == 0) { - throw new ArrayIndexOutOfBoundsException(ERROR_MIN_MAX); - } - int min = list[0]; - for (int i = 1; i < list.length; i++) { - if (list[i] < min) min = list[i]; - } - return min; - } - - - /** - * Find the minimum value in an array. - * Throws an ArrayIndexOutOfBoundsException if the array is length 0. - * @param list the source array - * @return The minimum value - */ - static public final float min(float[] list) { - if (list.length == 0) { - throw new ArrayIndexOutOfBoundsException(ERROR_MIN_MAX); - } - float min = list[0]; - for (int i = 1; i < list.length; i++) { - if (list[i] < min) min = list[i]; - } - return min; - } - - - /** - * Find the minimum value in an array. - * Throws an ArrayIndexOutOfBoundsException if the array is length 0. - * @param list the source array - * @return The minimum value - */ - /* - static public final double min(double[] list) { - if (list.length == 0) { - throw new ArrayIndexOutOfBoundsException(ERROR_MIN_MAX); - } - double min = list[0]; - for (int i = 1; i < list.length; i++) { - if (list[i] < min) min = list[i]; - } - return min; - } - */ - - static public final int constrain(int amt, int low, int high) { - return (amt < low) ? low : ((amt > high) ? high : amt); - } - - static public final float constrain(float amt, float low, float high) { - return (amt < low) ? low : ((amt > high) ? high : amt); - } - - - static public final float sin(float angle) { - return (float)Math.sin(angle); - } - - static public final float cos(float angle) { - return (float)Math.cos(angle); - } - - static public final float tan(float angle) { - return (float)Math.tan(angle); - } - - - static public final float asin(float value) { - return (float)Math.asin(value); - } - - static public final float acos(float value) { - return (float)Math.acos(value); - } - - static public final float atan(float value) { - return (float)Math.atan(value); - } - - static public final float atan2(float a, float b) { - return (float)Math.atan2(a, b); - } - - - static public final float degrees(float radians) { - return radians * RAD_TO_DEG; - } - - static public final float radians(float degrees) { - return degrees * DEG_TO_RAD; - } - - - static public final int ceil(float what) { - return (int) Math.ceil(what); - } - - static public final int floor(float what) { - return (int) Math.floor(what); - } - - static public final int round(float what) { - return (int) Math.round(what); - } - - - static public final float mag(float a, float b) { - return (float)Math.sqrt(a*a + b*b); - } - - static public final float mag(float a, float b, float c) { - return (float)Math.sqrt(a*a + b*b + c*c); - } - - - static public final float dist(float x1, float y1, float x2, float y2) { - return sqrt(sq(x2-x1) + sq(y2-y1)); - } - - static public final float dist(float x1, float y1, float z1, - float x2, float y2, float z2) { - return sqrt(sq(x2-x1) + sq(y2-y1) + sq(z2-z1)); - } - - - static public final float lerp(float start, float stop, float amt) { - return start + (stop-start) * amt; - } - - /** - * Normalize a value to exist between 0 and 1 (inclusive). - * Mathematically the opposite of lerp(), figures out what proportion - * a particular value is relative to start and stop coordinates. - */ - static public final float norm(float value, float start, float stop) { - return (value - start) / (stop - start); - } - - /** - * Convenience function to map a variable from one coordinate space - * to another. Equivalent to unlerp() followed by lerp(). - */ - static public final float map(float value, - float istart, float istop, - float ostart, float ostop) { - return ostart + (ostop - ostart) * ((value - istart) / (istop - istart)); - } - - - /* - static public final double map(double value, - double istart, double istop, - double ostart, double ostop) { - return ostart + (ostop - ostart) * ((value - istart) / (istop - istart)); - } - */ - - - - ////////////////////////////////////////////////////////////// - - // RANDOM NUMBERS - - - Random internalRandom; - - /** - * Return a random number in the range [0, howbig). - *

    - * The number returned will range from zero up to - * (but not including) 'howbig'. - */ - public final float random(float howbig) { - // for some reason (rounding error?) Math.random() * 3 - // can sometimes return '3' (once in ~30 million tries) - // so a check was added to avoid the inclusion of 'howbig' - - // avoid an infinite loop - if (howbig == 0) return 0; - - // internal random number object - if (internalRandom == null) internalRandom = new Random(); - - float value = 0; - do { - //value = (float)Math.random() * howbig; - value = internalRandom.nextFloat() * howbig; - } while (value == howbig); - return value; - } - - - /** - * Return a random number in the range [howsmall, howbig). - *

    - * The number returned will range from 'howsmall' up to - * (but not including 'howbig'. - *

    - * If howsmall is >= howbig, howsmall will be returned, - * meaning that random(5, 5) will return 5 (useful) - * and random(7, 4) will return 7 (not useful.. better idea?) - */ - public final float random(float howsmall, float howbig) { - if (howsmall >= howbig) return howsmall; - float diff = howbig - howsmall; - return random(diff) + howsmall; - } - - - public final void randomSeed(long what) { - // internal random number object - if (internalRandom == null) internalRandom = new Random(); - internalRandom.setSeed(what); - } - - - - ////////////////////////////////////////////////////////////// - - // PERLIN NOISE - - // [toxi 040903] - // octaves and amplitude amount per octave are now user controlled - // via the noiseDetail() function. - - // [toxi 030902] - // cleaned up code and now using bagel's cosine table to speed up - - // [toxi 030901] - // implementation by the german demo group farbrausch - // as used in their demo "art": http://www.farb-rausch.de/fr010src.zip - - static final int PERLIN_YWRAPB = 4; - static final int PERLIN_YWRAP = 1<>= 1; - } - - if (x<0) x=-x; - if (y<0) y=-y; - if (z<0) z=-z; - - int xi=(int)x, yi=(int)y, zi=(int)z; - float xf = (float)(x-xi); - float yf = (float)(y-yi); - float zf = (float)(z-zi); - float rxf, ryf; - - float r=0; - float ampl=0.5f; - - float n1,n2,n3; - - for (int i=0; i=1.0f) { xi++; xf--; } - if (yf>=1.0f) { yi++; yf--; } - if (zf>=1.0f) { zi++; zf--; } - } - return r; - } - - // [toxi 031112] - // now adjusts to the size of the cosLUT used via - // the new variables, defined above - private float noise_fsc(float i) { - // using bagel's cosine table instead - return 0.5f*(1.0f-perlin_cosTable[(int)(i*perlin_PI)%perlin_TWOPI]); - } - - // [toxi 040903] - // make perlin noise quality user controlled to allow - // for different levels of detail. lower values will produce - // smoother results as higher octaves are surpressed - - public void noiseDetail(int lod) { - if (lod>0) perlin_octaves=lod; - } - - public void noiseDetail(int lod, float falloff) { - if (lod>0) perlin_octaves=lod; - if (falloff>0) perlin_amp_falloff=falloff; - } - - public void noiseSeed(long what) { - if (perlinRandom == null) perlinRandom = new Random(); - perlinRandom.setSeed(what); - // force table reset after changing the random number seed [0122] - perlin = null; - } - - - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - - protected String[] loadImageFormats; - - - /** - * Load an image from the data folder or a local directory. - * Supports .gif (including transparency), .tga, and .jpg images. - * In Java 1.3 or later, .png images are - * - * also supported. - *

    - * Generally, loadImage() should only be used during setup, because - * re-loading images inside draw() is likely to cause a significant - * delay while memory is allocated and the thread blocks while waiting - * for the image to load because loading is not asynchronous. - *

    - * To load several images asynchronously, see more information in the - * FAQ about writing your own threaded image loading method. - *

    - * As of 0096, returns null if no image of that name is found, - * rather than an error. - *

    - * Release 0115 also provides support for reading TIFF and RLE-encoded - * Targa (.tga) files written by Processing via save() and saveFrame(). - * Other TIFF and Targa files will probably not load, use a different - * format (gif, jpg and png are safest bets) when creating images with - * another application to use with Processing. - *

    - * Also in release 0115, more image formats (BMP and others) can - * be read when using Java 1.4 and later. Because many people still - * use Java 1.1 and 1.3, these formats are not recommended for - * work that will be posted on the web. To get a list of possible - * image formats for use with Java 1.4 and later, use the following: - * println(javax.imageio.ImageIO.getReaderFormatNames()) - *

    - * Images are loaded via a byte array that is passed to - * Toolkit.createImage(). Unfortunately, we cannot use Applet.getImage() - * because it takes a URL argument, which would be a pain in the a-- - * to make work consistently for online and local sketches. - * Sometimes this causes problems, resulting in issues like - * Bug 279 - * and - * Bug 305. - * In release 0115, everything was instead run through javax.imageio, - * but that turned out to be very slow, see - * Bug 392. - * As a result, starting with 0116, the following happens: - *

      - *
    • TGA and TIFF images are loaded using the internal load methods. - *
    • JPG, GIF, and PNG images are loaded via loadBytes(). - *
    • If the image still isn't loaded, it's passed to javax.imageio. - *
    - * For releases 0116 and later, if you have problems such as those seen - * in Bugs 279 and 305, use Applet.getImage() instead. You'll be stuck - * with the limitations of getImage() (the headache of dealing with - * online/offline use). Set up your own MediaTracker, and pass the resulting - * java.awt.Image to the PImage constructor that takes an AWT image. - */ - public PImage loadImage(String filename) { - return loadImage(filename, null); - } - - - /** - * Loads an image into a variable of type PImage. Four types of images ( .gif, .jpg, .tga, .png) images may be loaded. To load correctly, images must be located in the data directory of the current sketch. In most cases, load all images in setup() to preload them at the start of the program. Loading images inside draw() will reduce the speed of a program. - *

    The filename parameter can also be a URL to a file found online. For security reasons, a Processing sketch found online can only download files from the same server from which it came. Getting around this restriction requires a signed applet. - *

    The extension parameter is used to determine the image type in cases where the image filename does not end with a proper extension. Specify the extension as the second parameter to loadImage(), as shown in the third example on this page. - *

    If an image is not loaded successfully, the null value is returned and an error message will be printed to the console. The error message does not halt the program, however the null value may cause a NullPointerException if your code does not check whether the value returned from loadImage() is null.

    Depending on the type of error, a PImage object may still be returned, but the width and height of the image will be set to -1. This happens if bad image data is returned or cannot be decoded properly. Sometimes this happens with image URLs that produce a 403 error or that redirect to a password prompt, because loadImage() will attempt to interpret the HTML as image data. - * - * =advanced - * Identical to loadImage, but allows you to specify the type of - * image by its extension. Especially useful when downloading from - * CGI scripts. - *

    - * Use 'unknown' as the extension to pass off to the default - * image loader that handles gif, jpg, and png. - * - * @webref image:loading_displaying - * @param filename name of file to load, can be .gif, .jpg, .tga, or a handful of other image types depending on your platform. - * @param extension the type of image to load, for example "png", "gif", "jpg" - * - * @see processing.core.PImage - * @see processing.core.PApplet#image(PImage, float, float, float, float) - * @see processing.core.PApplet#imageMode(int) - * @see processing.core.PApplet#background(float, float, float) - */ - public PImage loadImage(String filename, String extension) { - if (extension == null) { - String lower = filename.toLowerCase(); - int dot = filename.lastIndexOf('.'); - if (dot == -1) { - extension = "unknown"; // no extension found - } - extension = lower.substring(dot + 1); - - // check for, and strip any parameters on the url, i.e. - // filename.jpg?blah=blah&something=that - int question = extension.indexOf('?'); - if (question != -1) { - extension = extension.substring(0, question); - } - } - - // just in case. them users will try anything! - extension = extension.toLowerCase(); - - if (extension.equals("tga")) { - try { - return loadImageTGA(filename); - } catch (IOException e) { - e.printStackTrace(); - return null; - } - } - - if (extension.equals("tif") || extension.equals("tiff")) { - byte bytes[] = loadBytes(filename); - return (bytes == null) ? null : PImage.loadTIFF(bytes); - } - - // For jpeg, gif, and png, load them using createImage(), - // because the javax.imageio code was found to be much slower, see - // Bug 392. - try { - if (extension.equals("jpg") || extension.equals("jpeg") || - extension.equals("gif") || extension.equals("png") || - extension.equals("unknown")) { - byte bytes[] = loadBytes(filename); - if (bytes == null) { - return null; - } else { - Image awtImage = Toolkit.getDefaultToolkit().createImage(bytes); - PImage image = loadImageMT(awtImage); - if (image.width == -1) { - System.err.println("The file " + filename + - " contains bad image data, or may not be an image."); - } - // if it's a .gif image, test to see if it has transparency - if (extension.equals("gif") || extension.equals("png")) { - image.checkAlpha(); - } - return image; - } - } - } catch (Exception e) { - // show error, but move on to the stuff below, see if it'll work - e.printStackTrace(); - } - - if (loadImageFormats == null) { - loadImageFormats = ImageIO.getReaderFormatNames(); - } - if (loadImageFormats != null) { - for (int i = 0; i < loadImageFormats.length; i++) { - if (extension.equals(loadImageFormats[i])) { - return loadImageIO(filename); - } - } - } - - // failed, could not load image after all those attempts - System.err.println("Could not find a method to load " + filename); - return null; - } - - public PImage requestImage(String filename) { - return requestImage(filename, null); - } - - - /** - * This function load images on a separate thread so that your sketch does not freeze while images load during setup(). While the image is loading, its width and height will be 0. If an error occurs while loading the image, its width and height will be set to -1. You'll know when the image has loaded properly because its width and height will be greater than 0. Asynchronous image loading (particularly when downloading from a server) can dramatically improve performance.

    - * The extension parameter is used to determine the image type in cases where the image filename does not end with a proper extension. Specify the extension as the second parameter to requestImage(). - * - * @webref image:loading_displaying - * @param filename name of file to load, can be .gif, .jpg, .tga, or a handful of other image types depending on your platform - * @param extension the type of image to load, for example "png", "gif", "jpg" - * - * @see processing.core.PApplet#loadImage(String, String) - * @see processing.core.PImage - */ - public PImage requestImage(String filename, String extension) { - PImage vessel = createImage(0, 0, ARGB); - AsyncImageLoader ail = - new AsyncImageLoader(filename, extension, vessel); - ail.start(); - return vessel; - } - - - /** - * By trial and error, four image loading threads seem to work best when - * loading images from online. This is consistent with the number of open - * connections that web browsers will maintain. The variable is made public - * (however no accessor has been added since it's esoteric) if you really - * want to have control over the value used. For instance, when loading local - * files, it might be better to only have a single thread (or two) loading - * images so that you're disk isn't simply jumping around. - */ - public int requestImageMax = 4; - volatile int requestImageCount; - - class AsyncImageLoader extends Thread { - String filename; - String extension; - PImage vessel; - - public AsyncImageLoader(String filename, String extension, PImage vessel) { - this.filename = filename; - this.extension = extension; - this.vessel = vessel; - } - - public void run() { - while (requestImageCount == requestImageMax) { - try { - Thread.sleep(10); - } catch (InterruptedException e) { } - } - requestImageCount++; - - PImage actual = loadImage(filename, extension); - - // An error message should have already printed - if (actual == null) { - vessel.width = -1; - vessel.height = -1; - - } else { - vessel.width = actual.width; - vessel.height = actual.height; - vessel.format = actual.format; - vessel.pixels = actual.pixels; - } - requestImageCount--; - } - } - - - /** - * Load an AWT image synchronously by setting up a MediaTracker for - * a single image, and blocking until it has loaded. - */ - protected PImage loadImageMT(Image awtImage) { - MediaTracker tracker = new MediaTracker(this); - tracker.addImage(awtImage, 0); - try { - tracker.waitForAll(); - } catch (InterruptedException e) { - //e.printStackTrace(); // non-fatal, right? - } - - PImage image = new PImage(awtImage); - image.parent = this; - return image; - } - - - /** - * Use Java 1.4 ImageIO methods to load an image. - */ - protected PImage loadImageIO(String filename) { - InputStream stream = createInput(filename); - if (stream == null) { - System.err.println("The image " + filename + " could not be found."); - return null; - } - - try { - BufferedImage bi = ImageIO.read(stream); - PImage outgoing = new PImage(bi.getWidth(), bi.getHeight()); - outgoing.parent = this; - - bi.getRGB(0, 0, outgoing.width, outgoing.height, - outgoing.pixels, 0, outgoing.width); - - // check the alpha for this image - // was gonna call getType() on the image to see if RGB or ARGB, - // but it's not actually useful, since gif images will come through - // as TYPE_BYTE_INDEXED, which means it'll still have to check for - // the transparency. also, would have to iterate through all the other - // types and guess whether alpha was in there, so.. just gonna stick - // with the old method. - outgoing.checkAlpha(); - - // return the image - return outgoing; - - } catch (Exception e) { - e.printStackTrace(); - return null; - } - } - - - /** - * Targa image loader for RLE-compressed TGA files. - *

    - * Rewritten for 0115 to read/write RLE-encoded targa images. - * For 0125, non-RLE encoded images are now supported, along with - * images whose y-order is reversed (which is standard for TGA files). - */ - protected PImage loadImageTGA(String filename) throws IOException { - InputStream is = createInput(filename); - if (is == null) return null; - - byte header[] = new byte[18]; - int offset = 0; - do { - int count = is.read(header, offset, header.length - offset); - if (count == -1) return null; - offset += count; - } while (offset < 18); - - /* - header[2] image type code - 2 (0x02) - Uncompressed, RGB images. - 3 (0x03) - Uncompressed, black and white images. - 10 (0x0A) - Runlength encoded RGB images. - 11 (0x0B) - Compressed, black and white images. (grayscale?) - - header[16] is the bit depth (8, 24, 32) - - header[17] image descriptor (packed bits) - 0x20 is 32 = origin upper-left - 0x28 is 32 + 8 = origin upper-left + 32 bits - - 7 6 5 4 3 2 1 0 - 128 64 32 16 8 4 2 1 - */ - - int format = 0; - - if (((header[2] == 3) || (header[2] == 11)) && // B&W, plus RLE or not - (header[16] == 8) && // 8 bits - ((header[17] == 0x8) || (header[17] == 0x28))) { // origin, 32 bit - format = ALPHA; - - } else if (((header[2] == 2) || (header[2] == 10)) && // RGB, RLE or not - (header[16] == 24) && // 24 bits - ((header[17] == 0x20) || (header[17] == 0))) { // origin - format = RGB; - - } else if (((header[2] == 2) || (header[2] == 10)) && - (header[16] == 32) && - ((header[17] == 0x8) || (header[17] == 0x28))) { // origin, 32 - format = ARGB; - } - - if (format == 0) { - System.err.println("Unknown .tga file format for " + filename); - //" (" + header[2] + " " + - //(header[16] & 0xff) + " " + - //hex(header[17], 2) + ")"); - return null; - } - - int w = ((header[13] & 0xff) << 8) + (header[12] & 0xff); - int h = ((header[15] & 0xff) << 8) + (header[14] & 0xff); - PImage outgoing = createImage(w, h, format); - - // where "reversed" means upper-left corner (normal for most of - // the modernized world, but "reversed" for the tga spec) - boolean reversed = (header[17] & 0x20) != 0; - - if ((header[2] == 2) || (header[2] == 3)) { // not RLE encoded - if (reversed) { - int index = (h-1) * w; - switch (format) { - case ALPHA: - for (int y = h-1; y >= 0; y--) { - for (int x = 0; x < w; x++) { - outgoing.pixels[index + x] = is.read(); - } - index -= w; - } - break; - case RGB: - for (int y = h-1; y >= 0; y--) { - for (int x = 0; x < w; x++) { - outgoing.pixels[index + x] = - is.read() | (is.read() << 8) | (is.read() << 16) | - 0xff000000; - } - index -= w; - } - break; - case ARGB: - for (int y = h-1; y >= 0; y--) { - for (int x = 0; x < w; x++) { - outgoing.pixels[index + x] = - is.read() | (is.read() << 8) | (is.read() << 16) | - (is.read() << 24); - } - index -= w; - } - } - } else { // not reversed - int count = w * h; - switch (format) { - case ALPHA: - for (int i = 0; i < count; i++) { - outgoing.pixels[i] = is.read(); - } - break; - case RGB: - for (int i = 0; i < count; i++) { - outgoing.pixels[i] = - is.read() | (is.read() << 8) | (is.read() << 16) | - 0xff000000; - } - break; - case ARGB: - for (int i = 0; i < count; i++) { - outgoing.pixels[i] = - is.read() | (is.read() << 8) | (is.read() << 16) | - (is.read() << 24); - } - break; - } - } - - } else { // header[2] is 10 or 11 - int index = 0; - int px[] = outgoing.pixels; - - while (index < px.length) { - int num = is.read(); - boolean isRLE = (num & 0x80) != 0; - if (isRLE) { - num -= 127; // (num & 0x7F) + 1 - int pixel = 0; - switch (format) { - case ALPHA: - pixel = is.read(); - break; - case RGB: - pixel = 0xFF000000 | - is.read() | (is.read() << 8) | (is.read() << 16); - //(is.read() << 16) | (is.read() << 8) | is.read(); - break; - case ARGB: - pixel = is.read() | - (is.read() << 8) | (is.read() << 16) | (is.read() << 24); - break; - } - for (int i = 0; i < num; i++) { - px[index++] = pixel; - if (index == px.length) break; - } - } else { // write up to 127 bytes as uncompressed - num += 1; - switch (format) { - case ALPHA: - for (int i = 0; i < num; i++) { - px[index++] = is.read(); - } - break; - case RGB: - for (int i = 0; i < num; i++) { - px[index++] = 0xFF000000 | - is.read() | (is.read() << 8) | (is.read() << 16); - //(is.read() << 16) | (is.read() << 8) | is.read(); - } - break; - case ARGB: - for (int i = 0; i < num; i++) { - px[index++] = is.read() | //(is.read() << 24) | - (is.read() << 8) | (is.read() << 16) | (is.read() << 24); - //(is.read() << 16) | (is.read() << 8) | is.read(); - } - break; - } - } - } - - if (!reversed) { - int[] temp = new int[w]; - for (int y = 0; y < h/2; y++) { - int z = (h-1) - y; - System.arraycopy(px, y*w, temp, 0, w); - System.arraycopy(px, z*w, px, y*w, w); - System.arraycopy(temp, 0, px, z*w, w); - } - } - } - - return outgoing; - } - - - - ////////////////////////////////////////////////////////////// - - // SHAPE I/O - - - /** - * Loads vector shapes into a variable of type PShape. Currently, only SVG files may be loaded. - * To load correctly, the file must be located in the data directory of the current sketch. - * In most cases, loadShape() should be used inside setup() because loading shapes inside draw() will reduce the speed of a sketch. - *

    - * The filename parameter can also be a URL to a file found online. - * For security reasons, a Processing sketch found online can only download files from the same server from which it came. - * Getting around this restriction requires a signed applet. - *

    - * If a shape is not loaded successfully, the null value is returned and an error message will be printed to the console. - * The error message does not halt the program, however the null value may cause a NullPointerException if your code does not check whether the value returned from loadShape() is null. - * - * @webref shape:loading_displaying - * @see PShape - * @see PApplet#shape(PShape) - * @see PApplet#shapeMode(int) - */ - public PShape loadShape(String filename) { - if (filename.toLowerCase().endsWith(".svg")) { - return new PShapeSVG(this, filename); - } - return null; - } - - - - ////////////////////////////////////////////////////////////// - - // FONT I/O - - - public PFont loadFont(String filename) { - try { - InputStream input = createInput(filename); - return new PFont(input); - - } catch (Exception e) { - die("Could not load font " + filename + ". " + - "Make sure that the font has been copied " + - "to the data folder of your sketch.", e); - } - return null; - } - - - /** - * Used by PGraphics to remove the requirement for loading a font! - */ - protected PFont createDefaultFont(float size) { -// Font f = new Font("SansSerif", Font.PLAIN, 12); -// println("n: " + f.getName()); -// println("fn: " + f.getFontName()); -// println("ps: " + f.getPSName()); - return createFont("SansSerif", size, true, null); - } - - - public PFont createFont(String name, float size) { - return createFont(name, size, true, null); - } - - - public PFont createFont(String name, float size, boolean smooth) { - return createFont(name, size, smooth, null); - } - - - /** - * Create a .vlw font on the fly from either a font name that's - * installed on the system, or from a .ttf or .otf that's inside - * the data folder of this sketch. - *

    - * Many .otf fonts don't seem to be supported by Java, perhaps because - * they're CFF based? - *

    - * Font names are inconsistent across platforms and Java versions. - * On Mac OS X, Java 1.3 uses the font menu name of the font, - * whereas Java 1.4 uses the PostScript name of the font. Java 1.4 - * on OS X will also accept the font menu name as well. On Windows, - * it appears that only the menu names are used, no matter what - * Java version is in use. Naming system unknown/untested for 1.5. - *

    - * Use 'null' for the charset if you want to dynamically create - * character bitmaps only as they're needed. (Version 1.0.9 and - * earlier would interpret null as all unicode characters.) - */ - public PFont createFont(String name, float size, - boolean smooth, char charset[]) { - String lowerName = name.toLowerCase(); - Font baseFont = null; - - try { - InputStream stream = null; - if (lowerName.endsWith(".otf") || lowerName.endsWith(".ttf")) { - stream = createInput(name); - if (stream == null) { - System.err.println("The font \"" + name + "\" " + - "is missing or inaccessible, make sure " + - "the URL is valid or that the file has been " + - "added to your sketch and is readable."); - return null; - } - baseFont = Font.createFont(Font.TRUETYPE_FONT, createInput(name)); - - } else { - baseFont = PFont.findFont(name); - } - return new PFont(baseFont.deriveFont(size), smooth, charset, - stream != null); - - } catch (Exception e) { - System.err.println("Problem createFont(" + name + ")"); - e.printStackTrace(); - return null; - } - } - - - - ////////////////////////////////////////////////////////////// - - // FILE/FOLDER SELECTION - - - public File selectedFile; - protected Frame parentFrame; - - - protected void checkParentFrame() { - if (parentFrame == null) { - Component comp = getParent(); - while (comp != null) { - if (comp instanceof Frame) { - parentFrame = (Frame) comp; - break; - } - comp = comp.getParent(); - } - // Who you callin' a hack? - if (parentFrame == null) { - parentFrame = new Frame(); - } - } - } - - - /** - * Open a platform-specific file chooser dialog to select a file for input. - * @return full path to the selected file, or null if no selection. - */ - public String selectInput() { - return selectInput("Select a file..."); - } - - - /** - * Opens a platform-specific file chooser dialog to select a file for input. This function returns the full path to the selected file as a String, or null if no selection. - * - * @webref input:files - * @param prompt message you want the user to see in the file chooser - * @return full path to the selected file, or null if canceled. - * - * @see processing.core.PApplet#selectOutput(String) - * @see processing.core.PApplet#selectFolder(String) - */ - public String selectInput(String prompt) { - return selectFileImpl(prompt, FileDialog.LOAD); - } - - - /** - * Open a platform-specific file save dialog to select a file for output. - * @return full path to the file entered, or null if canceled. - */ - public String selectOutput() { - return selectOutput("Save as..."); - } - - - /** - * Open a platform-specific file save dialog to create of select a file for output. - * This function returns the full path to the selected file as a String, or null if no selection. - * If you select an existing file, that file will be replaced. - * Alternatively, you can navigate to a folder and create a new file to write to. - * - * @param prompt message you want the user to see in the file chooser - * @return full path to the file entered, or null if canceled. - * - * @webref input:files - * @see processing.core.PApplet#selectInput(String) - * @see processing.core.PApplet#selectFolder(String) - */ - public String selectOutput(String prompt) { - return selectFileImpl(prompt, FileDialog.SAVE); - } - - - protected String selectFileImpl(final String prompt, final int mode) { - checkParentFrame(); - - try { - SwingUtilities.invokeAndWait(new Runnable() { - public void run() { - FileDialog fileDialog = - new FileDialog(parentFrame, prompt, mode); - fileDialog.setVisible(true); - String directory = fileDialog.getDirectory(); - String filename = fileDialog.getFile(); - selectedFile = - (filename == null) ? null : new File(directory, filename); - } - }); - return (selectedFile == null) ? null : selectedFile.getAbsolutePath(); - - } catch (Exception e) { - e.printStackTrace(); - return null; - } - } - - - public String selectFolder() { - return selectFolder("Select a folder..."); - } - - - /** - * Opens a platform-specific file chooser dialog to select a folder for input. - * This function returns the full path to the selected folder as a String, or null if no selection. - * - * @webref input:files - * @param prompt message you want the user to see in the file chooser - * @return full path to the selected folder, or null if no selection. - * - * @see processing.core.PApplet#selectOutput(String) - * @see processing.core.PApplet#selectInput(String) - */ - public String selectFolder(final String prompt) { - checkParentFrame(); - - try { - SwingUtilities.invokeAndWait(new Runnable() { - public void run() { - if (platform == MACOSX) { - FileDialog fileDialog = - new FileDialog(parentFrame, prompt, FileDialog.LOAD); - System.setProperty("apple.awt.fileDialogForDirectories", "true"); - fileDialog.setVisible(true); - System.setProperty("apple.awt.fileDialogForDirectories", "false"); - String filename = fileDialog.getFile(); - selectedFile = (filename == null) ? null : - new File(fileDialog.getDirectory(), fileDialog.getFile()); - } else { - JFileChooser fileChooser = new JFileChooser(); - fileChooser.setDialogTitle(prompt); - fileChooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY); - - int returned = fileChooser.showOpenDialog(parentFrame); - System.out.println(returned); - if (returned == JFileChooser.CANCEL_OPTION) { - selectedFile = null; - } else { - selectedFile = fileChooser.getSelectedFile(); - } - } - } - }); - return (selectedFile == null) ? null : selectedFile.getAbsolutePath(); - - } catch (Exception e) { - e.printStackTrace(); - return null; - } - } - - - - ////////////////////////////////////////////////////////////// - - // READERS AND WRITERS - - - /** - * I want to read lines from a file. I have RSI from typing these - * eight lines of code so many times. - */ - public BufferedReader createReader(String filename) { - try { - InputStream is = createInput(filename); - if (is == null) { - System.err.println(filename + " does not exist or could not be read"); - return null; - } - return createReader(is); - - } catch (Exception e) { - if (filename == null) { - System.err.println("Filename passed to reader() was null"); - } else { - System.err.println("Couldn't create a reader for " + filename); - } - } - return null; - } - - - /** - * I want to read lines from a file. And I'm still annoyed. - */ - static public BufferedReader createReader(File file) { - try { - InputStream is = new FileInputStream(file); - if (file.getName().toLowerCase().endsWith(".gz")) { - is = new GZIPInputStream(is); - } - return createReader(is); - - } catch (Exception e) { - if (file == null) { - throw new RuntimeException("File passed to createReader() was null"); - } else { - e.printStackTrace(); - throw new RuntimeException("Couldn't create a reader for " + - file.getAbsolutePath()); - } - } - //return null; - } - - - /** - * I want to read lines from a stream. If I have to type the - * following lines any more I'm gonna send Sun my medical bills. - */ - static public BufferedReader createReader(InputStream input) { - InputStreamReader isr = null; - try { - isr = new InputStreamReader(input, "UTF-8"); - } catch (UnsupportedEncodingException e) { } // not gonna happen - return new BufferedReader(isr); - } - - - /** - * I want to print lines to a file. Why can't I? - */ - public PrintWriter createWriter(String filename) { - return createWriter(saveFile(filename)); - } - - - /** - * I want to print lines to a file. I have RSI from typing these - * eight lines of code so many times. - */ - static public PrintWriter createWriter(File file) { - try { - createPath(file); // make sure in-between folders exist - OutputStream output = new FileOutputStream(file); - if (file.getName().toLowerCase().endsWith(".gz")) { - output = new GZIPOutputStream(output); - } - return createWriter(output); - - } catch (Exception e) { - if (file == null) { - throw new RuntimeException("File passed to createWriter() was null"); - } else { - e.printStackTrace(); - throw new RuntimeException("Couldn't create a writer for " + - file.getAbsolutePath()); - } - } - //return null; - } - - - /** - * I want to print lines to a file. Why am I always explaining myself? - * It's the JavaSoft API engineers who need to explain themselves. - */ - static public PrintWriter createWriter(OutputStream output) { - try { - OutputStreamWriter osw = new OutputStreamWriter(output, "UTF-8"); - return new PrintWriter(osw); - } catch (UnsupportedEncodingException e) { } // not gonna happen - return null; - } - - - ////////////////////////////////////////////////////////////// - - // FILE INPUT - - - /** - * @deprecated As of release 0136, use createInput() instead. - */ - public InputStream openStream(String filename) { - return createInput(filename); - } - - - /** - * This is a method for advanced programmers to open a Java InputStream. The method is useful if you want to use the facilities provided by PApplet to easily open files from the data folder or from a URL, but want an InputStream object so that you can use other Java methods to take more control of how the stream is read. - *

    If the requested item doesn't exist, null is returned. - *

    In earlier releases, this method was called openStream(). - *

    If not online, this will also check to see if the user is asking for a file whose name isn't properly capitalized. If capitalization is different an error will be printed to the console. This helps prevent issues that appear when a sketch is exported to the web, where case sensitivity matters, as opposed to running from inside the Processing Development Environment on Windows or Mac OS, where case sensitivity is preserved but ignored. - *

    The filename passed in can be:
    - * - A URL, for instance openStream("http://processing.org/");
    - * - A file in the sketch's data folder
    - * - The full path to a file to be opened locally (when running as an application) - *

    - * If the file ends with .gz, the stream will automatically be gzip decompressed. If you don't want the automatic decompression, use the related function createInputRaw(). - * - * =advanced - * Simplified method to open a Java InputStream. - *

    - * This method is useful if you want to use the facilities provided - * by PApplet to easily open things from the data folder or from a URL, - * but want an InputStream object so that you can use other Java - * methods to take more control of how the stream is read. - *

    - * If the requested item doesn't exist, null is returned. - * (Prior to 0096, die() would be called, killing the applet) - *

    - * For 0096+, the "data" folder is exported intact with subfolders, - * and openStream() properly handles subdirectories from the data folder - *

    - * If not online, this will also check to see if the user is asking - * for a file whose name isn't properly capitalized. This helps prevent - * issues when a sketch is exported to the web, where case sensitivity - * matters, as opposed to Windows and the Mac OS default where - * case sensitivity is preserved but ignored. - *

    - * It is strongly recommended that libraries use this method to open - * data files, so that the loading sequence is handled in the same way - * as functions like loadBytes(), loadImage(), etc. - *

    - * The filename passed in can be: - *

      - *
    • A URL, for instance openStream("http://processing.org/"); - *
    • A file in the sketch's data folder - *
    • Another file to be opened locally (when running as an application) - *
    - * - * @webref input:files - * @see processing.core.PApplet#createOutput(String) - * @see processing.core.PApplet#selectOutput(String) - * @see processing.core.PApplet#selectInput(String) - * - * @param filename the name of the file to use as input - * - */ - public InputStream createInput(String filename) { - InputStream input = createInputRaw(filename); - if ((input != null) && filename.toLowerCase().endsWith(".gz")) { - try { - return new GZIPInputStream(input); - } catch (IOException e) { - e.printStackTrace(); - return null; - } - } - return input; - } - - - /** - * Call openStream() without automatic gzip decompression. - */ - public InputStream createInputRaw(String filename) { - InputStream stream = null; - - if (filename == null) return null; - - if (filename.length() == 0) { - // an error will be called by the parent function - //System.err.println("The filename passed to openStream() was empty."); - return null; - } - - // safe to check for this as a url first. this will prevent online - // access logs from being spammed with GET /sketchfolder/http://blahblah - if (filename.indexOf(":") != -1) { // at least smells like URL - try { - URL url = new URL(filename); - stream = url.openStream(); - return stream; - - } catch (MalformedURLException mfue) { - // not a url, that's fine - - } catch (FileNotFoundException fnfe) { - // Java 1.5 likes to throw this when URL not available. (fix for 0119) - // http://dev.processing.org/bugs/show_bug.cgi?id=403 - - } catch (IOException e) { - // changed for 0117, shouldn't be throwing exception - e.printStackTrace(); - //System.err.println("Error downloading from URL " + filename); - return null; - //throw new RuntimeException("Error downloading from URL " + filename); - } - } - - // Moved this earlier than the getResourceAsStream() checks, because - // calling getResourceAsStream() on a directory lists its contents. - // http://dev.processing.org/bugs/show_bug.cgi?id=716 - try { - // First see if it's in a data folder. This may fail by throwing - // a SecurityException. If so, this whole block will be skipped. - File file = new File(dataPath(filename)); - if (!file.exists()) { - // next see if it's just in the sketch folder - file = new File(sketchPath, filename); - } - if (file.isDirectory()) { - return null; - } - if (file.exists()) { - try { - // handle case sensitivity check - String filePath = file.getCanonicalPath(); - String filenameActual = new File(filePath).getName(); - // make sure there isn't a subfolder prepended to the name - String filenameShort = new File(filename).getName(); - // if the actual filename is the same, but capitalized - // differently, warn the user. - //if (filenameActual.equalsIgnoreCase(filenameShort) && - //!filenameActual.equals(filenameShort)) { - if (!filenameActual.equals(filenameShort)) { - throw new RuntimeException("This file is named " + - filenameActual + " not " + - filename + ". Rename the file " + - "or change your code."); - } - } catch (IOException e) { } - } - - // if this file is ok, may as well just load it - stream = new FileInputStream(file); - if (stream != null) return stream; - - // have to break these out because a general Exception might - // catch the RuntimeException being thrown above - } catch (IOException ioe) { - } catch (SecurityException se) { } - - // Using getClassLoader() prevents java from converting dots - // to slashes or requiring a slash at the beginning. - // (a slash as a prefix means that it'll load from the root of - // the jar, rather than trying to dig into the package location) - ClassLoader cl = getClass().getClassLoader(); - - // by default, data files are exported to the root path of the jar. - // (not the data folder) so check there first. - stream = cl.getResourceAsStream("data/" + filename); - if (stream != null) { - String cn = stream.getClass().getName(); - // this is an irritation of sun's java plug-in, which will return - // a non-null stream for an object that doesn't exist. like all good - // things, this is probably introduced in java 1.5. awesome! - // http://dev.processing.org/bugs/show_bug.cgi?id=359 - if (!cn.equals("sun.plugin.cache.EmptyInputStream")) { - return stream; - } - } - - // When used with an online script, also need to check without the - // data folder, in case it's not in a subfolder called 'data'. - // http://dev.processing.org/bugs/show_bug.cgi?id=389 - stream = cl.getResourceAsStream(filename); - if (stream != null) { - String cn = stream.getClass().getName(); - if (!cn.equals("sun.plugin.cache.EmptyInputStream")) { - return stream; - } - } - - try { - // attempt to load from a local file, used when running as - // an application, or as a signed applet - try { // first try to catch any security exceptions - try { - stream = new FileInputStream(dataPath(filename)); - if (stream != null) return stream; - } catch (IOException e2) { } - - try { - stream = new FileInputStream(sketchPath(filename)); - if (stream != null) return stream; - } catch (Exception e) { } // ignored - - try { - stream = new FileInputStream(filename); - if (stream != null) return stream; - } catch (IOException e1) { } - - } catch (SecurityException se) { } // online, whups - - } catch (Exception e) { - //die(e.getMessage(), e); - e.printStackTrace(); - } - return null; - } - - - static public InputStream createInput(File file) { - if (file == null) { - throw new IllegalArgumentException("File passed to createInput() was null"); - } - try { - InputStream input = new FileInputStream(file); - if (file.getName().toLowerCase().endsWith(".gz")) { - return new GZIPInputStream(input); - } - return input; - - } catch (IOException e) { - System.err.println("Could not createInput() for " + file); - e.printStackTrace(); - return null; - } - } - - - /** - * Reads the contents of a file or url and places it in a byte array. If a file is specified, it must be located in the sketch's "data" directory/folder. - *

    The filename parameter can also be a URL to a file found online. For security reasons, a Processing sketch found online can only download files from the same server from which it came. Getting around this restriction requires a signed applet. - * - * @webref input:files - * @param filename name of a file in the data folder or a URL. - * - * @see processing.core.PApplet#loadStrings(String) - * @see processing.core.PApplet#saveStrings(String, String[]) - * @see processing.core.PApplet#saveBytes(String, byte[]) - * - */ - public byte[] loadBytes(String filename) { - InputStream is = createInput(filename); - if (is != null) return loadBytes(is); - - System.err.println("The file \"" + filename + "\" " + - "is missing or inaccessible, make sure " + - "the URL is valid or that the file has been " + - "added to your sketch and is readable."); - return null; - } - - - static public byte[] loadBytes(InputStream input) { - try { - BufferedInputStream bis = new BufferedInputStream(input); - ByteArrayOutputStream out = new ByteArrayOutputStream(); - - int c = bis.read(); - while (c != -1) { - out.write(c); - c = bis.read(); - } - return out.toByteArray(); - - } catch (IOException e) { - e.printStackTrace(); - //throw new RuntimeException("Couldn't load bytes from stream"); - } - return null; - } - - - static public byte[] loadBytes(File file) { - InputStream is = createInput(file); - return loadBytes(is); - } - - - static public String[] loadStrings(File file) { - InputStream is = createInput(file); - if (is != null) return loadStrings(is); - return null; - } - - - /** - * Reads the contents of a file or url and creates a String array of its individual lines. If a file is specified, it must be located in the sketch's "data" directory/folder. - *

    The filename parameter can also be a URL to a file found online. For security reasons, a Processing sketch found online can only download files from the same server from which it came. Getting around this restriction requires a signed applet. - *

    If the file is not available or an error occurs, null will be returned and an error message will be printed to the console. The error message does not halt the program, however the null value may cause a NullPointerException if your code does not check whether the value returned is null. - *

    Starting with Processing release 0134, all files loaded and saved by the Processing API use UTF-8 encoding. In previous releases, the default encoding for your platform was used, which causes problems when files are moved to other platforms. - * - * =advanced - * Load data from a file and shove it into a String array. - *

    - * Exceptions are handled internally, when an error, occurs, an - * exception is printed to the console and 'null' is returned, - * but the program continues running. This is a tradeoff between - * 1) showing the user that there was a problem but 2) not requiring - * that all i/o code is contained in try/catch blocks, for the sake - * of new users (or people who are just trying to get things done - * in a "scripting" fashion. If you want to handle exceptions, - * use Java methods for I/O. - * - * @webref input:files - * @param filename name of the file or url to load - * - * @see processing.core.PApplet#loadBytes(String) - * @see processing.core.PApplet#saveStrings(String, String[]) - * @see processing.core.PApplet#saveBytes(String, byte[]) - */ - public String[] loadStrings(String filename) { - InputStream is = createInput(filename); - if (is != null) return loadStrings(is); - - System.err.println("The file \"" + filename + "\" " + - "is missing or inaccessible, make sure " + - "the URL is valid or that the file has been " + - "added to your sketch and is readable."); - return null; - } - - - static public String[] loadStrings(InputStream input) { - try { - BufferedReader reader = - new BufferedReader(new InputStreamReader(input, "UTF-8")); - - String lines[] = new String[100]; - int lineCount = 0; - String line = null; - while ((line = reader.readLine()) != null) { - if (lineCount == lines.length) { - String temp[] = new String[lineCount << 1]; - System.arraycopy(lines, 0, temp, 0, lineCount); - lines = temp; - } - lines[lineCount++] = line; - } - reader.close(); - - if (lineCount == lines.length) { - return lines; - } - - // resize array to appropriate amount for these lines - String output[] = new String[lineCount]; - System.arraycopy(lines, 0, output, 0, lineCount); - return output; - - } catch (IOException e) { - e.printStackTrace(); - //throw new RuntimeException("Error inside loadStrings()"); - } - return null; - } - - - - ////////////////////////////////////////////////////////////// - - // FILE OUTPUT - - - /** - * Similar to createInput() (formerly openStream), this creates a Java - * OutputStream for a given filename or path. The file will be created in - * the sketch folder, or in the same folder as an exported application. - *

    - * If the path does not exist, intermediate folders will be created. If an - * exception occurs, it will be printed to the console, and null will be - * returned. - *

    - * Future releases may also add support for handling HTTP POST via this - * method (for better symmetry with createInput), however that's maybe a - * little too clever (and then we'd have to add the same features to the - * other file functions like createWriter). Who you callin' bloated? - */ - public OutputStream createOutput(String filename) { - return createOutput(saveFile(filename)); - } - - - static public OutputStream createOutput(File file) { - try { - createPath(file); // make sure the path exists - FileOutputStream fos = new FileOutputStream(file); - if (file.getName().toLowerCase().endsWith(".gz")) { - return new GZIPOutputStream(fos); - } - return fos; - - } catch (IOException e) { - e.printStackTrace(); - } - return null; - } - - - /** - * Save the contents of a stream to a file in the sketch folder. - * This is basically saveBytes(blah, loadBytes()), but done - * more efficiently (and with less confusing syntax). - */ - public void saveStream(String targetFilename, String sourceLocation) { - saveStream(saveFile(targetFilename), sourceLocation); - } - - - /** - * Identical to the other saveStream(), but writes to a File - * object, for greater control over the file location. - * Note that unlike other api methods, this will not automatically - * compress or uncompress gzip files. - */ - public void saveStream(File targetFile, String sourceLocation) { - saveStream(targetFile, createInputRaw(sourceLocation)); - } - - - static public void saveStream(File targetFile, InputStream sourceStream) { - File tempFile = null; - try { - File parentDir = targetFile.getParentFile(); - tempFile = File.createTempFile(targetFile.getName(), null, parentDir); - - BufferedInputStream bis = new BufferedInputStream(sourceStream, 16384); - FileOutputStream fos = new FileOutputStream(tempFile); - BufferedOutputStream bos = new BufferedOutputStream(fos); - - byte[] buffer = new byte[8192]; - int bytesRead; - while ((bytesRead = bis.read(buffer)) != -1) { - bos.write(buffer, 0, bytesRead); - } - - bos.flush(); - bos.close(); - bos = null; - - if (!tempFile.renameTo(targetFile)) { - System.err.println("Could not rename temporary file " + - tempFile.getAbsolutePath()); - } - } catch (IOException e) { - if (tempFile != null) { - tempFile.delete(); - } - e.printStackTrace(); - } - } - - - /** - * Saves bytes to a file to inside the sketch folder. - * The filename can be a relative path, i.e. "poo/bytefun.txt" - * would save to a file named "bytefun.txt" to a subfolder - * called 'poo' inside the sketch folder. If the in-between - * subfolders don't exist, they'll be created. - */ - public void saveBytes(String filename, byte buffer[]) { - saveBytes(saveFile(filename), buffer); - } - - - /** - * Saves bytes to a specific File location specified by the user. - */ - static public void saveBytes(File file, byte buffer[]) { - File tempFile = null; - try { - File parentDir = file.getParentFile(); - tempFile = File.createTempFile(file.getName(), null, parentDir); - - /* - String filename = file.getAbsolutePath(); - createPath(filename); - OutputStream output = new FileOutputStream(file); - if (file.getName().toLowerCase().endsWith(".gz")) { - output = new GZIPOutputStream(output); - } - */ - OutputStream output = createOutput(tempFile); - saveBytes(output, buffer); - output.close(); - output = null; - - if (!tempFile.renameTo(file)) { - System.err.println("Could not rename temporary file " + - tempFile.getAbsolutePath()); - } - - } catch (IOException e) { - System.err.println("error saving bytes to " + file); - if (tempFile != null) { - tempFile.delete(); - } - e.printStackTrace(); - } - } - - - /** - * Spews a buffer of bytes to an OutputStream. - */ - static public void saveBytes(OutputStream output, byte buffer[]) { - try { - output.write(buffer); - output.flush(); - - } catch (IOException e) { - e.printStackTrace(); - } - } - - // - - public void saveStrings(String filename, String strings[]) { - saveStrings(saveFile(filename), strings); - } - - - static public void saveStrings(File file, String strings[]) { - saveStrings(createOutput(file), strings); - /* - try { - String location = file.getAbsolutePath(); - createPath(location); - OutputStream output = new FileOutputStream(location); - if (file.getName().toLowerCase().endsWith(".gz")) { - output = new GZIPOutputStream(output); - } - saveStrings(output, strings); - output.close(); - - } catch (IOException e) { - e.printStackTrace(); - } - */ - } - - - static public void saveStrings(OutputStream output, String strings[]) { - PrintWriter writer = createWriter(output); - for (int i = 0; i < strings.length; i++) { - writer.println(strings[i]); - } - writer.flush(); - writer.close(); - } - - - ////////////////////////////////////////////////////////////// - - - /** - * Prepend the sketch folder path to the filename (or path) that is - * passed in. External libraries should use this function to save to - * the sketch folder. - *

    - * Note that when running as an applet inside a web browser, - * the sketchPath will be set to null, because security restrictions - * prevent applets from accessing that information. - *

    - * This will also cause an error if the sketch is not inited properly, - * meaning that init() was never called on the PApplet when hosted - * my some other main() or by other code. For proper use of init(), - * see the examples in the main description text for PApplet. - */ - public String sketchPath(String where) { - if (sketchPath == null) { - return where; -// throw new RuntimeException("The applet was not inited properly, " + -// "or security restrictions prevented " + -// "it from determining its path."); - } - // isAbsolute() could throw an access exception, but so will writing - // to the local disk using the sketch path, so this is safe here. - // for 0120, added a try/catch anyways. - try { - if (new File(where).isAbsolute()) return where; - } catch (Exception e) { } - - return sketchPath + File.separator + where; - } - - - public File sketchFile(String where) { - return new File(sketchPath(where)); - } - - - /** - * Returns a path inside the applet folder to save to. Like sketchPath(), - * but creates any in-between folders so that things save properly. - *

    - * All saveXxxx() functions use the path to the sketch folder, rather than - * its data folder. Once exported, the data folder will be found inside the - * jar file of the exported application or applet. In this case, it's not - * possible to save data into the jar file, because it will often be running - * from a server, or marked in-use if running from a local file system. - * With this in mind, saving to the data path doesn't make sense anyway. - * If you know you're running locally, and want to save to the data folder, - * use saveXxxx("data/blah.dat"). - */ - public String savePath(String where) { - if (where == null) return null; - String filename = sketchPath(where); - createPath(filename); - return filename; - } - - - /** - * Identical to savePath(), but returns a File object. - */ - public File saveFile(String where) { - return new File(savePath(where)); - } - - - /** - * Return a full path to an item in the data folder. - *

    - * In this method, the data path is defined not as the applet's actual - * data path, but a folder titled "data" in the sketch's working - * directory. When running inside the PDE, this will be the sketch's - * "data" folder. However, when exported (as application or applet), - * sketch's data folder is exported as part of the applications jar file, - * and it's not possible to read/write from the jar file in a generic way. - * If you need to read data from the jar file, you should use other methods - * such as createInput(), createReader(), or loadStrings(). - */ - public String dataPath(String where) { - // isAbsolute() could throw an access exception, but so will writing - // to the local disk using the sketch path, so this is safe here. - if (new File(where).isAbsolute()) return where; - - return sketchPath + File.separator + "data" + File.separator + where; - } - - - /** - * Return a full path to an item in the data folder as a File object. - * See the dataPath() method for more information. - */ - public File dataFile(String where) { - return new File(dataPath(where)); - } - - - /** - * Takes a path and creates any in-between folders if they don't - * already exist. Useful when trying to save to a subfolder that - * may not actually exist. - */ - static public void createPath(String path) { - createPath(new File(path)); - } - - - static public void createPath(File file) { - try { - String parent = file.getParent(); - if (parent != null) { - File unit = new File(parent); - if (!unit.exists()) unit.mkdirs(); - } - } catch (SecurityException se) { - System.err.println("You don't have permissions to create " + - file.getAbsolutePath()); - } - } - - - - ////////////////////////////////////////////////////////////// - - // SORT - - - static public byte[] sort(byte what[]) { - return sort(what, what.length); - } - - - static public byte[] sort(byte[] what, int count) { - byte[] outgoing = new byte[what.length]; - System.arraycopy(what, 0, outgoing, 0, what.length); - Arrays.sort(outgoing, 0, count); - return outgoing; - } - - - static public char[] sort(char what[]) { - return sort(what, what.length); - } - - - static public char[] sort(char[] what, int count) { - char[] outgoing = new char[what.length]; - System.arraycopy(what, 0, outgoing, 0, what.length); - Arrays.sort(outgoing, 0, count); - return outgoing; - } - - - static public int[] sort(int what[]) { - return sort(what, what.length); - } - - - static public int[] sort(int[] what, int count) { - int[] outgoing = new int[what.length]; - System.arraycopy(what, 0, outgoing, 0, what.length); - Arrays.sort(outgoing, 0, count); - return outgoing; - } - - - static public float[] sort(float what[]) { - return sort(what, what.length); - } - - - static public float[] sort(float[] what, int count) { - float[] outgoing = new float[what.length]; - System.arraycopy(what, 0, outgoing, 0, what.length); - Arrays.sort(outgoing, 0, count); - return outgoing; - } - - - static public String[] sort(String what[]) { - return sort(what, what.length); - } - - - static public String[] sort(String[] what, int count) { - String[] outgoing = new String[what.length]; - System.arraycopy(what, 0, outgoing, 0, what.length); - Arrays.sort(outgoing, 0, count); - return outgoing; - } - - - - ////////////////////////////////////////////////////////////// - - // ARRAY UTILITIES - - - /** - * Calls System.arraycopy(), included here so that we can - * avoid people needing to learn about the System object - * before they can just copy an array. - */ - static public void arrayCopy(Object src, int srcPosition, - Object dst, int dstPosition, - int length) { - System.arraycopy(src, srcPosition, dst, dstPosition, length); - } - - - /** - * Convenience method for arraycopy(). - * Identical to arraycopy(src, 0, dst, 0, length); - */ - static public void arrayCopy(Object src, Object dst, int length) { - System.arraycopy(src, 0, dst, 0, length); - } - - - /** - * Shortcut to copy the entire contents of - * the source into the destination array. - * Identical to arraycopy(src, 0, dst, 0, src.length); - */ - static public void arrayCopy(Object src, Object dst) { - System.arraycopy(src, 0, dst, 0, Array.getLength(src)); - } - - // - - /** - * @deprecated Use arrayCopy() instead. - */ - static public void arraycopy(Object src, int srcPosition, - Object dst, int dstPosition, - int length) { - System.arraycopy(src, srcPosition, dst, dstPosition, length); - } - - /** - * @deprecated Use arrayCopy() instead. - */ - static public void arraycopy(Object src, Object dst, int length) { - System.arraycopy(src, 0, dst, 0, length); - } - - /** - * @deprecated Use arrayCopy() instead. - */ - static public void arraycopy(Object src, Object dst) { - System.arraycopy(src, 0, dst, 0, Array.getLength(src)); - } - - // - - static public boolean[] expand(boolean list[]) { - return expand(list, list.length << 1); - } - - static public boolean[] expand(boolean list[], int newSize) { - boolean temp[] = new boolean[newSize]; - System.arraycopy(list, 0, temp, 0, Math.min(newSize, list.length)); - return temp; - } - - - static public byte[] expand(byte list[]) { - return expand(list, list.length << 1); - } - - static public byte[] expand(byte list[], int newSize) { - byte temp[] = new byte[newSize]; - System.arraycopy(list, 0, temp, 0, Math.min(newSize, list.length)); - return temp; - } - - - static public char[] expand(char list[]) { - return expand(list, list.length << 1); - } - - static public char[] expand(char list[], int newSize) { - char temp[] = new char[newSize]; - System.arraycopy(list, 0, temp, 0, Math.min(newSize, list.length)); - return temp; - } - - - static public int[] expand(int list[]) { - return expand(list, list.length << 1); - } - - static public int[] expand(int list[], int newSize) { - int temp[] = new int[newSize]; - System.arraycopy(list, 0, temp, 0, Math.min(newSize, list.length)); - return temp; - } - - - static public float[] expand(float list[]) { - return expand(list, list.length << 1); - } - - static public float[] expand(float list[], int newSize) { - float temp[] = new float[newSize]; - System.arraycopy(list, 0, temp, 0, Math.min(newSize, list.length)); - return temp; - } - - - static public String[] expand(String list[]) { - return expand(list, list.length << 1); - } - - static public String[] expand(String list[], int newSize) { - String temp[] = new String[newSize]; - // in case the new size is smaller than list.length - System.arraycopy(list, 0, temp, 0, Math.min(newSize, list.length)); - return temp; - } - - - static public Object expand(Object array) { - return expand(array, Array.getLength(array) << 1); - } - - static public Object expand(Object list, int newSize) { - Class type = list.getClass().getComponentType(); - Object temp = Array.newInstance(type, newSize); - System.arraycopy(list, 0, temp, 0, - Math.min(Array.getLength(list), newSize)); - return temp; - } - - // - - // contract() has been removed in revision 0124, use subset() instead. - // (expand() is also functionally equivalent) - - // - - static public byte[] append(byte b[], byte value) { - b = expand(b, b.length + 1); - b[b.length-1] = value; - return b; - } - - static public char[] append(char b[], char value) { - b = expand(b, b.length + 1); - b[b.length-1] = value; - return b; - } - - static public int[] append(int b[], int value) { - b = expand(b, b.length + 1); - b[b.length-1] = value; - return b; - } - - static public float[] append(float b[], float value) { - b = expand(b, b.length + 1); - b[b.length-1] = value; - return b; - } - - static public String[] append(String b[], String value) { - b = expand(b, b.length + 1); - b[b.length-1] = value; - return b; - } - - static public Object append(Object b, Object value) { - int length = Array.getLength(b); - b = expand(b, length + 1); - Array.set(b, length, value); - return b; - } - - // - - static public boolean[] shorten(boolean list[]) { - return subset(list, 0, list.length-1); - } - - static public byte[] shorten(byte list[]) { - return subset(list, 0, list.length-1); - } - - static public char[] shorten(char list[]) { - return subset(list, 0, list.length-1); - } - - static public int[] shorten(int list[]) { - return subset(list, 0, list.length-1); - } - - static public float[] shorten(float list[]) { - return subset(list, 0, list.length-1); - } - - static public String[] shorten(String list[]) { - return subset(list, 0, list.length-1); - } - - static public Object shorten(Object list) { - int length = Array.getLength(list); - return subset(list, 0, length - 1); - } - - // - - static final public boolean[] splice(boolean list[], - boolean v, int index) { - boolean outgoing[] = new boolean[list.length + 1]; - System.arraycopy(list, 0, outgoing, 0, index); - outgoing[index] = v; - System.arraycopy(list, index, outgoing, index + 1, - list.length - index); - return outgoing; - } - - static final public boolean[] splice(boolean list[], - boolean v[], int index) { - boolean outgoing[] = new boolean[list.length + v.length]; - System.arraycopy(list, 0, outgoing, 0, index); - System.arraycopy(v, 0, outgoing, index, v.length); - System.arraycopy(list, index, outgoing, index + v.length, - list.length - index); - return outgoing; - } - - - static final public byte[] splice(byte list[], - byte v, int index) { - byte outgoing[] = new byte[list.length + 1]; - System.arraycopy(list, 0, outgoing, 0, index); - outgoing[index] = v; - System.arraycopy(list, index, outgoing, index + 1, - list.length - index); - return outgoing; - } - - static final public byte[] splice(byte list[], - byte v[], int index) { - byte outgoing[] = new byte[list.length + v.length]; - System.arraycopy(list, 0, outgoing, 0, index); - System.arraycopy(v, 0, outgoing, index, v.length); - System.arraycopy(list, index, outgoing, index + v.length, - list.length - index); - return outgoing; - } - - - static final public char[] splice(char list[], - char v, int index) { - char outgoing[] = new char[list.length + 1]; - System.arraycopy(list, 0, outgoing, 0, index); - outgoing[index] = v; - System.arraycopy(list, index, outgoing, index + 1, - list.length - index); - return outgoing; - } - - static final public char[] splice(char list[], - char v[], int index) { - char outgoing[] = new char[list.length + v.length]; - System.arraycopy(list, 0, outgoing, 0, index); - System.arraycopy(v, 0, outgoing, index, v.length); - System.arraycopy(list, index, outgoing, index + v.length, - list.length - index); - return outgoing; - } - - - static final public int[] splice(int list[], - int v, int index) { - int outgoing[] = new int[list.length + 1]; - System.arraycopy(list, 0, outgoing, 0, index); - outgoing[index] = v; - System.arraycopy(list, index, outgoing, index + 1, - list.length - index); - return outgoing; - } - - static final public int[] splice(int list[], - int v[], int index) { - int outgoing[] = new int[list.length + v.length]; - System.arraycopy(list, 0, outgoing, 0, index); - System.arraycopy(v, 0, outgoing, index, v.length); - System.arraycopy(list, index, outgoing, index + v.length, - list.length - index); - return outgoing; - } - - - static final public float[] splice(float list[], - float v, int index) { - float outgoing[] = new float[list.length + 1]; - System.arraycopy(list, 0, outgoing, 0, index); - outgoing[index] = v; - System.arraycopy(list, index, outgoing, index + 1, - list.length - index); - return outgoing; - } - - static final public float[] splice(float list[], - float v[], int index) { - float outgoing[] = new float[list.length + v.length]; - System.arraycopy(list, 0, outgoing, 0, index); - System.arraycopy(v, 0, outgoing, index, v.length); - System.arraycopy(list, index, outgoing, index + v.length, - list.length - index); - return outgoing; - } - - - static final public String[] splice(String list[], - String v, int index) { - String outgoing[] = new String[list.length + 1]; - System.arraycopy(list, 0, outgoing, 0, index); - outgoing[index] = v; - System.arraycopy(list, index, outgoing, index + 1, - list.length - index); - return outgoing; - } - - static final public String[] splice(String list[], - String v[], int index) { - String outgoing[] = new String[list.length + v.length]; - System.arraycopy(list, 0, outgoing, 0, index); - System.arraycopy(v, 0, outgoing, index, v.length); - System.arraycopy(list, index, outgoing, index + v.length, - list.length - index); - return outgoing; - } - - - static final public Object splice(Object list, Object v, int index) { - Object[] outgoing = null; - int length = Array.getLength(list); - - // check whether item being spliced in is an array - if (v.getClass().getName().charAt(0) == '[') { - int vlength = Array.getLength(v); - outgoing = new Object[length + vlength]; - System.arraycopy(list, 0, outgoing, 0, index); - System.arraycopy(v, 0, outgoing, index, vlength); - System.arraycopy(list, index, outgoing, index + vlength, length - index); - - } else { - outgoing = new Object[length + 1]; - System.arraycopy(list, 0, outgoing, 0, index); - Array.set(outgoing, index, v); - System.arraycopy(list, index, outgoing, index + 1, length - index); - } - return outgoing; - } - - // - - static public boolean[] subset(boolean list[], int start) { - return subset(list, start, list.length - start); - } - - static public boolean[] subset(boolean list[], int start, int count) { - boolean output[] = new boolean[count]; - System.arraycopy(list, start, output, 0, count); - return output; - } - - - static public byte[] subset(byte list[], int start) { - return subset(list, start, list.length - start); - } - - static public byte[] subset(byte list[], int start, int count) { - byte output[] = new byte[count]; - System.arraycopy(list, start, output, 0, count); - return output; - } - - - static public char[] subset(char list[], int start) { - return subset(list, start, list.length - start); - } - - static public char[] subset(char list[], int start, int count) { - char output[] = new char[count]; - System.arraycopy(list, start, output, 0, count); - return output; - } - - - static public int[] subset(int list[], int start) { - return subset(list, start, list.length - start); - } - - static public int[] subset(int list[], int start, int count) { - int output[] = new int[count]; - System.arraycopy(list, start, output, 0, count); - return output; - } - - - static public float[] subset(float list[], int start) { - return subset(list, start, list.length - start); - } - - static public float[] subset(float list[], int start, int count) { - float output[] = new float[count]; - System.arraycopy(list, start, output, 0, count); - return output; - } - - - static public String[] subset(String list[], int start) { - return subset(list, start, list.length - start); - } - - static public String[] subset(String list[], int start, int count) { - String output[] = new String[count]; - System.arraycopy(list, start, output, 0, count); - return output; - } - - - static public Object subset(Object list, int start) { - int length = Array.getLength(list); - return subset(list, start, length - start); - } - - static public Object subset(Object list, int start, int count) { - Class type = list.getClass().getComponentType(); - Object outgoing = Array.newInstance(type, count); - System.arraycopy(list, start, outgoing, 0, count); - return outgoing; - } - - // - - static public boolean[] concat(boolean a[], boolean b[]) { - boolean c[] = new boolean[a.length + b.length]; - System.arraycopy(a, 0, c, 0, a.length); - System.arraycopy(b, 0, c, a.length, b.length); - return c; - } - - static public byte[] concat(byte a[], byte b[]) { - byte c[] = new byte[a.length + b.length]; - System.arraycopy(a, 0, c, 0, a.length); - System.arraycopy(b, 0, c, a.length, b.length); - return c; - } - - static public char[] concat(char a[], char b[]) { - char c[] = new char[a.length + b.length]; - System.arraycopy(a, 0, c, 0, a.length); - System.arraycopy(b, 0, c, a.length, b.length); - return c; - } - - static public int[] concat(int a[], int b[]) { - int c[] = new int[a.length + b.length]; - System.arraycopy(a, 0, c, 0, a.length); - System.arraycopy(b, 0, c, a.length, b.length); - return c; - } - - static public float[] concat(float a[], float b[]) { - float c[] = new float[a.length + b.length]; - System.arraycopy(a, 0, c, 0, a.length); - System.arraycopy(b, 0, c, a.length, b.length); - return c; - } - - static public String[] concat(String a[], String b[]) { - String c[] = new String[a.length + b.length]; - System.arraycopy(a, 0, c, 0, a.length); - System.arraycopy(b, 0, c, a.length, b.length); - return c; - } - - static public Object concat(Object a, Object b) { - Class type = a.getClass().getComponentType(); - int alength = Array.getLength(a); - int blength = Array.getLength(b); - Object outgoing = Array.newInstance(type, alength + blength); - System.arraycopy(a, 0, outgoing, 0, alength); - System.arraycopy(b, 0, outgoing, alength, blength); - return outgoing; - } - - // - - static public boolean[] reverse(boolean list[]) { - boolean outgoing[] = new boolean[list.length]; - int length1 = list.length - 1; - for (int i = 0; i < list.length; i++) { - outgoing[i] = list[length1 - i]; - } - return outgoing; - } - - static public byte[] reverse(byte list[]) { - byte outgoing[] = new byte[list.length]; - int length1 = list.length - 1; - for (int i = 0; i < list.length; i++) { - outgoing[i] = list[length1 - i]; - } - return outgoing; - } - - static public char[] reverse(char list[]) { - char outgoing[] = new char[list.length]; - int length1 = list.length - 1; - for (int i = 0; i < list.length; i++) { - outgoing[i] = list[length1 - i]; - } - return outgoing; - } - - static public int[] reverse(int list[]) { - int outgoing[] = new int[list.length]; - int length1 = list.length - 1; - for (int i = 0; i < list.length; i++) { - outgoing[i] = list[length1 - i]; - } - return outgoing; - } - - static public float[] reverse(float list[]) { - float outgoing[] = new float[list.length]; - int length1 = list.length - 1; - for (int i = 0; i < list.length; i++) { - outgoing[i] = list[length1 - i]; - } - return outgoing; - } - - static public String[] reverse(String list[]) { - String outgoing[] = new String[list.length]; - int length1 = list.length - 1; - for (int i = 0; i < list.length; i++) { - outgoing[i] = list[length1 - i]; - } - return outgoing; - } - - static public Object reverse(Object list) { - Class type = list.getClass().getComponentType(); - int length = Array.getLength(list); - Object outgoing = Array.newInstance(type, length); - for (int i = 0; i < length; i++) { - Array.set(outgoing, i, Array.get(list, (length - 1) - i)); - } - return outgoing; - } - - - - ////////////////////////////////////////////////////////////// - - // STRINGS - - - /** - * Remove whitespace characters from the beginning and ending - * of a String. Works like String.trim() but includes the - * unicode nbsp character as well. - */ - static public String trim(String str) { - return str.replace('\u00A0', ' ').trim(); - } - - - /** - * Trim the whitespace from a String array. This returns a new - * array and does not affect the passed-in array. - */ - static public String[] trim(String[] array) { - String[] outgoing = new String[array.length]; - for (int i = 0; i < array.length; i++) { - outgoing[i] = array[i].replace('\u00A0', ' ').trim(); - } - return outgoing; - } - - - /** - * Join an array of Strings together as a single String, - * separated by the whatever's passed in for the separator. - */ - static public String join(String str[], char separator) { - return join(str, String.valueOf(separator)); - } - - - /** - * Join an array of Strings together as a single String, - * separated by the whatever's passed in for the separator. - *

    - * To use this on numbers, first pass the array to nf() or nfs() - * to get a list of String objects, then use join on that. - *

    -   * e.g. String stuff[] = { "apple", "bear", "cat" };
    -   *      String list = join(stuff, ", ");
    -   *      // list is now "apple, bear, cat"
    - */ - static public String join(String str[], String separator) { - StringBuffer buffer = new StringBuffer(); - for (int i = 0; i < str.length; i++) { - if (i != 0) buffer.append(separator); - buffer.append(str[i]); - } - return buffer.toString(); - } - - - /** - * Split the provided String at wherever whitespace occurs. - * Multiple whitespace (extra spaces or tabs or whatever) - * between items will count as a single break. - *

    - * The whitespace characters are "\t\n\r\f", which are the defaults - * for java.util.StringTokenizer, plus the unicode non-breaking space - * character, which is found commonly on files created by or used - * in conjunction with Mac OS X (character 160, or 0x00A0 in hex). - *

    -   * i.e. splitTokens("a b") -> { "a", "b" }
    -   *      splitTokens("a    b") -> { "a", "b" }
    -   *      splitTokens("a\tb") -> { "a", "b" }
    -   *      splitTokens("a \t  b  ") -> { "a", "b" }
    - */ - static public String[] splitTokens(String what) { - return splitTokens(what, WHITESPACE); - } - - - /** - * Splits a string into pieces, using any of the chars in the - * String 'delim' as separator characters. For instance, - * in addition to white space, you might want to treat commas - * as a separator. The delimeter characters won't appear in - * the returned String array. - *
    -   * i.e. splitTokens("a, b", " ,") -> { "a", "b" }
    -   * 
    - * To include all the whitespace possibilities, use the variable - * WHITESPACE, found in PConstants: - *
    -   * i.e. splitTokens("a   | b", WHITESPACE + "|");  ->  { "a", "b" }
    - */ - static public String[] splitTokens(String what, String delim) { - StringTokenizer toker = new StringTokenizer(what, delim); - String pieces[] = new String[toker.countTokens()]; - - int index = 0; - while (toker.hasMoreTokens()) { - pieces[index++] = toker.nextToken(); - } - return pieces; - } - - - /** - * Split a string into pieces along a specific character. - * Most commonly used to break up a String along a space or a tab - * character. - *

    - * This operates differently than the others, where the - * single delimeter is the only breaking point, and consecutive - * delimeters will produce an empty string (""). This way, - * one can split on tab characters, but maintain the column - * alignments (of say an excel file) where there are empty columns. - */ - static public String[] split(String what, char delim) { - // do this so that the exception occurs inside the user's - // program, rather than appearing to be a bug inside split() - if (what == null) return null; - //return split(what, String.valueOf(delim)); // huh - - char chars[] = what.toCharArray(); - int splitCount = 0; //1; - for (int i = 0; i < chars.length; i++) { - if (chars[i] == delim) splitCount++; - } - // make sure that there is something in the input string - //if (chars.length > 0) { - // if the last char is a delimeter, get rid of it.. - //if (chars[chars.length-1] == delim) splitCount--; - // on second thought, i don't agree with this, will disable - //} - if (splitCount == 0) { - String splits[] = new String[1]; - splits[0] = new String(what); - return splits; - } - //int pieceCount = splitCount + 1; - String splits[] = new String[splitCount + 1]; - int splitIndex = 0; - int startIndex = 0; - for (int i = 0; i < chars.length; i++) { - if (chars[i] == delim) { - splits[splitIndex++] = - new String(chars, startIndex, i-startIndex); - startIndex = i + 1; - } - } - //if (startIndex != chars.length) { - splits[splitIndex] = - new String(chars, startIndex, chars.length-startIndex); - //} - return splits; - } - - - /** - * Split a String on a specific delimiter. Unlike Java's String.split() - * method, this does not parse the delimiter as a regexp because it's more - * confusing than necessary, and String.split() is always available for - * those who want regexp. - */ - static public String[] split(String what, String delim) { - ArrayList items = new ArrayList(); - int index; - int offset = 0; - while ((index = what.indexOf(delim, offset)) != -1) { - items.add(what.substring(offset, index)); - offset = index + delim.length(); - } - items.add(what.substring(offset)); - String[] outgoing = new String[items.size()]; - items.toArray(outgoing); - return outgoing; - } - - - /** - * Match a string with a regular expression, and returns the match as an - * array. The first index is the matching expression, and array elements - * [1] and higher represent each of the groups (sequences found in parens). - * - * This uses multiline matching (Pattern.MULTILINE) and dotall mode - * (Pattern.DOTALL) by default, so that ^ and $ match the beginning and - * end of any lines found in the source, and the . operator will also - * pick up newline characters. - */ - static public String[] match(String what, String regexp) { - Pattern p = Pattern.compile(regexp, Pattern.MULTILINE | Pattern.DOTALL); - Matcher m = p.matcher(what); - if (m.find()) { - int count = m.groupCount() + 1; - String[] groups = new String[count]; - for (int i = 0; i < count; i++) { - groups[i] = m.group(i); - } - return groups; - } - return null; - } - - - /** - * Identical to match(), except that it returns an array of all matches in - * the specified String, rather than just the first. - */ - static public String[][] matchAll(String what, String regexp) { - Pattern p = Pattern.compile(regexp, Pattern.MULTILINE | Pattern.DOTALL); - Matcher m = p.matcher(what); - ArrayList results = new ArrayList(); - int count = m.groupCount() + 1; - while (m.find()) { - String[] groups = new String[count]; - for (int i = 0; i < count; i++) { - groups[i] = m.group(i); - } - results.add(groups); - } - if (results.isEmpty()) { - return null; - } - String[][] matches = new String[results.size()][count]; - for (int i = 0; i < matches.length; i++) { - matches[i] = (String[]) results.get(i); - } - return matches; - } - - - - ////////////////////////////////////////////////////////////// - - // CASTING FUNCTIONS, INSERTED BY PREPROC - - - /** - * Convert a char to a boolean. 'T', 't', and '1' will become the - * boolean value true, while 'F', 'f', or '0' will become false. - */ - /* - static final public boolean parseBoolean(char what) { - return ((what == 't') || (what == 'T') || (what == '1')); - } - */ - - /** - *

    Convert an integer to a boolean. Because of how Java handles upgrading - * numbers, this will also cover byte and char (as they will upgrade to - * an int without any sort of explicit cast).

    - *

    The preprocessor will convert boolean(what) to parseBoolean(what).

    - * @return false if 0, true if any other number - */ - static final public boolean parseBoolean(int what) { - return (what != 0); - } - - /* - // removed because this makes no useful sense - static final public boolean parseBoolean(float what) { - return (what != 0); - } - */ - - /** - * Convert the string "true" or "false" to a boolean. - * @return true if 'what' is "true" or "TRUE", false otherwise - */ - static final public boolean parseBoolean(String what) { - return new Boolean(what).booleanValue(); - } - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - /* - // removed, no need to introduce strange syntax from other languages - static final public boolean[] parseBoolean(char what[]) { - boolean outgoing[] = new boolean[what.length]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = - ((what[i] == 't') || (what[i] == 'T') || (what[i] == '1')); - } - return outgoing; - } - */ - - /** - * Convert a byte array to a boolean array. Each element will be - * evaluated identical to the integer case, where a byte equal - * to zero will return false, and any other value will return true. - * @return array of boolean elements - */ - static final public boolean[] parseBoolean(byte what[]) { - boolean outgoing[] = new boolean[what.length]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = (what[i] != 0); - } - return outgoing; - } - - /** - * Convert an int array to a boolean array. An int equal - * to zero will return false, and any other value will return true. - * @return array of boolean elements - */ - static final public boolean[] parseBoolean(int what[]) { - boolean outgoing[] = new boolean[what.length]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = (what[i] != 0); - } - return outgoing; - } - - /* - // removed, not necessary... if necessary, convert to int array first - static final public boolean[] parseBoolean(float what[]) { - boolean outgoing[] = new boolean[what.length]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = (what[i] != 0); - } - return outgoing; - } - */ - - static final public boolean[] parseBoolean(String what[]) { - boolean outgoing[] = new boolean[what.length]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = new Boolean(what[i]).booleanValue(); - } - return outgoing; - } - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - static final public byte parseByte(boolean what) { - return what ? (byte)1 : 0; - } - - static final public byte parseByte(char what) { - return (byte) what; - } - - static final public byte parseByte(int what) { - return (byte) what; - } - - static final public byte parseByte(float what) { - return (byte) what; - } - - /* - // nixed, no precedent - static final public byte[] parseByte(String what) { // note: array[] - return what.getBytes(); - } - */ - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - static final public byte[] parseByte(boolean what[]) { - byte outgoing[] = new byte[what.length]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = what[i] ? (byte)1 : 0; - } - return outgoing; - } - - static final public byte[] parseByte(char what[]) { - byte outgoing[] = new byte[what.length]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = (byte) what[i]; - } - return outgoing; - } - - static final public byte[] parseByte(int what[]) { - byte outgoing[] = new byte[what.length]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = (byte) what[i]; - } - return outgoing; - } - - static final public byte[] parseByte(float what[]) { - byte outgoing[] = new byte[what.length]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = (byte) what[i]; - } - return outgoing; - } - - /* - static final public byte[][] parseByte(String what[]) { // note: array[][] - byte outgoing[][] = new byte[what.length][]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = what[i].getBytes(); - } - return outgoing; - } - */ - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - /* - static final public char parseChar(boolean what) { // 0/1 or T/F ? - return what ? 't' : 'f'; - } - */ - - static final public char parseChar(byte what) { - return (char) (what & 0xff); - } - - static final public char parseChar(int what) { - return (char) what; - } - - /* - static final public char parseChar(float what) { // nonsensical - return (char) what; - } - - static final public char[] parseChar(String what) { // note: array[] - return what.toCharArray(); - } - */ - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - /* - static final public char[] parseChar(boolean what[]) { // 0/1 or T/F ? - char outgoing[] = new char[what.length]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = what[i] ? 't' : 'f'; - } - return outgoing; - } - */ - - static final public char[] parseChar(byte what[]) { - char outgoing[] = new char[what.length]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = (char) (what[i] & 0xff); - } - return outgoing; - } - - static final public char[] parseChar(int what[]) { - char outgoing[] = new char[what.length]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = (char) what[i]; - } - return outgoing; - } - - /* - static final public char[] parseChar(float what[]) { // nonsensical - char outgoing[] = new char[what.length]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = (char) what[i]; - } - return outgoing; - } - - static final public char[][] parseChar(String what[]) { // note: array[][] - char outgoing[][] = new char[what.length][]; - for (int i = 0; i < what.length; i++) { - outgoing[i] = what[i].toCharArray(); - } - return outgoing; - } - */ - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - static final public int parseInt(boolean what) { - return what ? 1 : 0; - } - - /** - * Note that parseInt() will un-sign a signed byte value. - */ - static final public int parseInt(byte what) { - return what & 0xff; - } - - /** - * Note that parseInt('5') is unlike String in the sense that it - * won't return 5, but the ascii value. This is because ((int) someChar) - * returns the ascii value, and parseInt() is just longhand for the cast. - */ - static final public int parseInt(char what) { - return what; - } - - /** - * Same as floor(), or an (int) cast. - */ - static final public int parseInt(float what) { - return (int) what; - } - - /** - * Parse a String into an int value. Returns 0 if the value is bad. - */ - static final public int parseInt(String what) { - return parseInt(what, 0); - } - - /** - * Parse a String to an int, and provide an alternate value that - * should be used when the number is invalid. - */ - static final public int parseInt(String what, int otherwise) { - try { - int offset = what.indexOf('.'); - if (offset == -1) { - return Integer.parseInt(what); - } else { - return Integer.parseInt(what.substring(0, offset)); - } - } catch (NumberFormatException e) { } - return otherwise; - } - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - static final public int[] parseInt(boolean what[]) { - int list[] = new int[what.length]; - for (int i = 0; i < what.length; i++) { - list[i] = what[i] ? 1 : 0; - } - return list; - } - - static final public int[] parseInt(byte what[]) { // note this unsigns - int list[] = new int[what.length]; - for (int i = 0; i < what.length; i++) { - list[i] = (what[i] & 0xff); - } - return list; - } - - static final public int[] parseInt(char what[]) { - int list[] = new int[what.length]; - for (int i = 0; i < what.length; i++) { - list[i] = what[i]; - } - return list; - } - - static public int[] parseInt(float what[]) { - int inties[] = new int[what.length]; - for (int i = 0; i < what.length; i++) { - inties[i] = (int)what[i]; - } - return inties; - } - - /** - * Make an array of int elements from an array of String objects. - * If the String can't be parsed as a number, it will be set to zero. - * - * String s[] = { "1", "300", "44" }; - * int numbers[] = parseInt(s); - * - * numbers will contain { 1, 300, 44 } - */ - static public int[] parseInt(String what[]) { - return parseInt(what, 0); - } - - /** - * Make an array of int elements from an array of String objects. - * If the String can't be parsed as a number, its entry in the - * array will be set to the value of the "missing" parameter. - * - * String s[] = { "1", "300", "apple", "44" }; - * int numbers[] = parseInt(s, 9999); - * - * numbers will contain { 1, 300, 9999, 44 } - */ - static public int[] parseInt(String what[], int missing) { - int output[] = new int[what.length]; - for (int i = 0; i < what.length; i++) { - try { - output[i] = Integer.parseInt(what[i]); - } catch (NumberFormatException e) { - output[i] = missing; - } - } - return output; - } - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - /* - static final public float parseFloat(boolean what) { - return what ? 1 : 0; - } - */ - - /** - * Convert an int to a float value. Also handles bytes because of - * Java's rules for upgrading values. - */ - static final public float parseFloat(int what) { // also handles byte - return (float)what; - } - - static final public float parseFloat(String what) { - return parseFloat(what, Float.NaN); - } - - static final public float parseFloat(String what, float otherwise) { - try { - return new Float(what).floatValue(); - } catch (NumberFormatException e) { } - - return otherwise; - } - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - /* - static final public float[] parseFloat(boolean what[]) { - float floaties[] = new float[what.length]; - for (int i = 0; i < what.length; i++) { - floaties[i] = what[i] ? 1 : 0; - } - return floaties; - } - - static final public float[] parseFloat(char what[]) { - float floaties[] = new float[what.length]; - for (int i = 0; i < what.length; i++) { - floaties[i] = (char) what[i]; - } - return floaties; - } - */ - - static final public float[] parseByte(byte what[]) { - float floaties[] = new float[what.length]; - for (int i = 0; i < what.length; i++) { - floaties[i] = what[i]; - } - return floaties; - } - - static final public float[] parseFloat(int what[]) { - float floaties[] = new float[what.length]; - for (int i = 0; i < what.length; i++) { - floaties[i] = what[i]; - } - return floaties; - } - - static final public float[] parseFloat(String what[]) { - return parseFloat(what, Float.NaN); - } - - static final public float[] parseFloat(String what[], float missing) { - float output[] = new float[what.length]; - for (int i = 0; i < what.length; i++) { - try { - output[i] = new Float(what[i]).floatValue(); - } catch (NumberFormatException e) { - output[i] = missing; - } - } - return output; - } - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - static final public String str(boolean x) { - return String.valueOf(x); - } - - static final public String str(byte x) { - return String.valueOf(x); - } - - static final public String str(char x) { - return String.valueOf(x); - } - - static final public String str(int x) { - return String.valueOf(x); - } - - static final public String str(float x) { - return String.valueOf(x); - } - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - static final public String[] str(boolean x[]) { - String s[] = new String[x.length]; - for (int i = 0; i < x.length; i++) s[i] = String.valueOf(x[i]); - return s; - } - - static final public String[] str(byte x[]) { - String s[] = new String[x.length]; - for (int i = 0; i < x.length; i++) s[i] = String.valueOf(x[i]); - return s; - } - - static final public String[] str(char x[]) { - String s[] = new String[x.length]; - for (int i = 0; i < x.length; i++) s[i] = String.valueOf(x[i]); - return s; - } - - static final public String[] str(int x[]) { - String s[] = new String[x.length]; - for (int i = 0; i < x.length; i++) s[i] = String.valueOf(x[i]); - return s; - } - - static final public String[] str(float x[]) { - String s[] = new String[x.length]; - for (int i = 0; i < x.length; i++) s[i] = String.valueOf(x[i]); - return s; - } - - - ////////////////////////////////////////////////////////////// - - // INT NUMBER FORMATTING - - - /** - * Integer number formatter. - */ - static private NumberFormat int_nf; - static private int int_nf_digits; - static private boolean int_nf_commas; - - - static public String[] nf(int num[], int digits) { - String formatted[] = new String[num.length]; - for (int i = 0; i < formatted.length; i++) { - formatted[i] = nf(num[i], digits); - } - return formatted; - } - - - static public String nf(int num, int digits) { - if ((int_nf != null) && - (int_nf_digits == digits) && - !int_nf_commas) { - return int_nf.format(num); - } - - int_nf = NumberFormat.getInstance(); - int_nf.setGroupingUsed(false); // no commas - int_nf_commas = false; - int_nf.setMinimumIntegerDigits(digits); - int_nf_digits = digits; - return int_nf.format(num); - } - - - static public String[] nfc(int num[]) { - String formatted[] = new String[num.length]; - for (int i = 0; i < formatted.length; i++) { - formatted[i] = nfc(num[i]); - } - return formatted; - } - - - static public String nfc(int num) { - if ((int_nf != null) && - (int_nf_digits == 0) && - int_nf_commas) { - return int_nf.format(num); - } - - int_nf = NumberFormat.getInstance(); - int_nf.setGroupingUsed(true); - int_nf_commas = true; - int_nf.setMinimumIntegerDigits(0); - int_nf_digits = 0; - return int_nf.format(num); - } - - - /** - * number format signed (or space) - * Formats a number but leaves a blank space in the front - * when it's positive so that it can be properly aligned with - * numbers that have a negative sign in front of them. - */ - static public String nfs(int num, int digits) { - return (num < 0) ? nf(num, digits) : (' ' + nf(num, digits)); - } - - static public String[] nfs(int num[], int digits) { - String formatted[] = new String[num.length]; - for (int i = 0; i < formatted.length; i++) { - formatted[i] = nfs(num[i], digits); - } - return formatted; - } - - // - - /** - * number format positive (or plus) - * Formats a number, always placing a - or + sign - * in the front when it's negative or positive. - */ - static public String nfp(int num, int digits) { - return (num < 0) ? nf(num, digits) : ('+' + nf(num, digits)); - } - - static public String[] nfp(int num[], int digits) { - String formatted[] = new String[num.length]; - for (int i = 0; i < formatted.length; i++) { - formatted[i] = nfp(num[i], digits); - } - return formatted; - } - - - - ////////////////////////////////////////////////////////////// - - // FLOAT NUMBER FORMATTING - - - static private NumberFormat float_nf; - static private int float_nf_left, float_nf_right; - static private boolean float_nf_commas; - - - static public String[] nf(float num[], int left, int right) { - String formatted[] = new String[num.length]; - for (int i = 0; i < formatted.length; i++) { - formatted[i] = nf(num[i], left, right); - } - return formatted; - } - - - static public String nf(float num, int left, int right) { - if ((float_nf != null) && - (float_nf_left == left) && - (float_nf_right == right) && - !float_nf_commas) { - return float_nf.format(num); - } - - float_nf = NumberFormat.getInstance(); - float_nf.setGroupingUsed(false); - float_nf_commas = false; - - if (left != 0) float_nf.setMinimumIntegerDigits(left); - if (right != 0) { - float_nf.setMinimumFractionDigits(right); - float_nf.setMaximumFractionDigits(right); - } - float_nf_left = left; - float_nf_right = right; - return float_nf.format(num); - } - - - static public String[] nfc(float num[], int right) { - String formatted[] = new String[num.length]; - for (int i = 0; i < formatted.length; i++) { - formatted[i] = nfc(num[i], right); - } - return formatted; - } - - - static public String nfc(float num, int right) { - if ((float_nf != null) && - (float_nf_left == 0) && - (float_nf_right == right) && - float_nf_commas) { - return float_nf.format(num); - } - - float_nf = NumberFormat.getInstance(); - float_nf.setGroupingUsed(true); - float_nf_commas = true; - - if (right != 0) { - float_nf.setMinimumFractionDigits(right); - float_nf.setMaximumFractionDigits(right); - } - float_nf_left = 0; - float_nf_right = right; - return float_nf.format(num); - } - - - /** - * Number formatter that takes into account whether the number - * has a sign (positive, negative, etc) in front of it. - */ - static public String[] nfs(float num[], int left, int right) { - String formatted[] = new String[num.length]; - for (int i = 0; i < formatted.length; i++) { - formatted[i] = nfs(num[i], left, right); - } - return formatted; - } - - static public String nfs(float num, int left, int right) { - return (num < 0) ? nf(num, left, right) : (' ' + nf(num, left, right)); - } - - - static public String[] nfp(float num[], int left, int right) { - String formatted[] = new String[num.length]; - for (int i = 0; i < formatted.length; i++) { - formatted[i] = nfp(num[i], left, right); - } - return formatted; - } - - static public String nfp(float num, int left, int right) { - return (num < 0) ? nf(num, left, right) : ('+' + nf(num, left, right)); - } - - - - ////////////////////////////////////////////////////////////// - - // HEX/BINARY CONVERSION - - - static final public String hex(byte what) { - return hex(what, 2); - } - - static final public String hex(char what) { - return hex(what, 4); - } - - static final public String hex(int what) { - return hex(what, 8); - } - - static final public String hex(int what, int digits) { - String stuff = Integer.toHexString(what).toUpperCase(); - - int length = stuff.length(); - if (length > digits) { - return stuff.substring(length - digits); - - } else if (length < digits) { - return "00000000".substring(8 - (digits-length)) + stuff; - } - return stuff; - } - - static final public int unhex(String what) { - // has to parse as a Long so that it'll work for numbers bigger than 2^31 - return (int) (Long.parseLong(what, 16)); - } - - // - - /** - * Returns a String that contains the binary value of a byte. - * The returned value will always have 8 digits. - */ - static final public String binary(byte what) { - return binary(what, 8); - } - - /** - * Returns a String that contains the binary value of a char. - * The returned value will always have 16 digits because chars - * are two bytes long. - */ - static final public String binary(char what) { - return binary(what, 16); - } - - /** - * Returns a String that contains the binary value of an int. - * The length depends on the size of the number itself. - * An int can be up to 32 binary digits, but that seems like - * overkill for almost any situation, so this function just - * auto-size. If you want a specific number of digits (like all 32) - * use binary(int what, int digits) to specify how many digits. - */ - static final public String binary(int what) { - return Integer.toBinaryString(what); - //return binary(what, 32); - } - - /** - * Returns a String that contains the binary value of an int. - * The digits parameter determines how many digits will be used. - */ - static final public String binary(int what, int digits) { - String stuff = Integer.toBinaryString(what); - - int length = stuff.length(); - if (length > digits) { - return stuff.substring(length - digits); - - } else if (length < digits) { - int offset = 32 - (digits-length); - return "00000000000000000000000000000000".substring(offset) + stuff; - } - return stuff; - } - - - /** - * Unpack a binary String into an int. - * i.e. unbinary("00001000") would return 8. - */ - static final public int unbinary(String what) { - return Integer.parseInt(what, 2); - } - - - - ////////////////////////////////////////////////////////////// - - // COLOR FUNCTIONS - - // moved here so that they can work without - // the graphics actually being instantiated (outside setup) - - - public final int color(int gray) { - if (g == null) { - if (gray > 255) gray = 255; else if (gray < 0) gray = 0; - return 0xff000000 | (gray << 16) | (gray << 8) | gray; - } - return g.color(gray); - } - - - public final int color(float fgray) { - if (g == null) { - int gray = (int) fgray; - if (gray > 255) gray = 255; else if (gray < 0) gray = 0; - return 0xff000000 | (gray << 16) | (gray << 8) | gray; - } - return g.color(fgray); - } - - - /** - * As of 0116 this also takes color(#FF8800, alpha) - * - * @param gray number specifying value between white and black - */ - public final int color(int gray, int alpha) { - if (g == null) { - if (alpha > 255) alpha = 255; else if (alpha < 0) alpha = 0; - if (gray > 255) { - // then assume this is actually a #FF8800 - return (alpha << 24) | (gray & 0xFFFFFF); - } else { - //if (gray > 255) gray = 255; else if (gray < 0) gray = 0; - return (alpha << 24) | (gray << 16) | (gray << 8) | gray; - } - } - return g.color(gray, alpha); - } - - - public final int color(float fgray, float falpha) { - if (g == null) { - int gray = (int) fgray; - int alpha = (int) falpha; - if (gray > 255) gray = 255; else if (gray < 0) gray = 0; - if (alpha > 255) alpha = 255; else if (alpha < 0) alpha = 0; - return 0xff000000 | (gray << 16) | (gray << 8) | gray; - } - return g.color(fgray, falpha); - } - - - public final int color(int x, int y, int z) { - if (g == null) { - if (x > 255) x = 255; else if (x < 0) x = 0; - if (y > 255) y = 255; else if (y < 0) y = 0; - if (z > 255) z = 255; else if (z < 0) z = 0; - - return 0xff000000 | (x << 16) | (y << 8) | z; - } - return g.color(x, y, z); - } - - - public final int color(float x, float y, float z) { - if (g == null) { - if (x > 255) x = 255; else if (x < 0) x = 0; - if (y > 255) y = 255; else if (y < 0) y = 0; - if (z > 255) z = 255; else if (z < 0) z = 0; - - return 0xff000000 | ((int)x << 16) | ((int)y << 8) | (int)z; - } - return g.color(x, y, z); - } - - - public final int color(int x, int y, int z, int a) { - if (g == null) { - if (a > 255) a = 255; else if (a < 0) a = 0; - if (x > 255) x = 255; else if (x < 0) x = 0; - if (y > 255) y = 255; else if (y < 0) y = 0; - if (z > 255) z = 255; else if (z < 0) z = 0; - - return (a << 24) | (x << 16) | (y << 8) | z; - } - return g.color(x, y, z, a); - } - - /** - * Creates colors for storing in variables of the color datatype. The parameters are interpreted as RGB or HSB values depending on the current colorMode(). The default mode is RGB values from 0 to 255 and therefore, the function call color(255, 204, 0) will return a bright yellow color. More about how colors are stored can be found in the reference for the color datatype. - * - * @webref color:creating_reading - * @param x red or hue values relative to the current color range - * @param y green or saturation values relative to the current color range - * @param z blue or brightness values relative to the current color range - * @param a alpha relative to current color range - * - * @see processing.core.PApplet#colorMode(int) - * @ref color_datatype - */ - public final int color(float x, float y, float z, float a) { - if (g == null) { - if (a > 255) a = 255; else if (a < 0) a = 0; - if (x > 255) x = 255; else if (x < 0) x = 0; - if (y > 255) y = 255; else if (y < 0) y = 0; - if (z > 255) z = 255; else if (z < 0) z = 0; - - return ((int)a << 24) | ((int)x << 16) | ((int)y << 8) | (int)z; - } - return g.color(x, y, z, a); - } - - - - ////////////////////////////////////////////////////////////// - - // MAIN - - - /** - * Set this sketch to communicate its state back to the PDE. - *

    - * This uses the stderr stream to write positions of the window - * (so that it will be saved by the PDE for the next run) and - * notify on quit. See more notes in the Worker class. - */ - public void setupExternalMessages() { - - frame.addComponentListener(new ComponentAdapter() { - public void componentMoved(ComponentEvent e) { - Point where = ((Frame) e.getSource()).getLocation(); - System.err.println(PApplet.EXTERNAL_MOVE + " " + - where.x + " " + where.y); - System.err.flush(); // doesn't seem to help or hurt - } - }); - - frame.addWindowListener(new WindowAdapter() { - public void windowClosing(WindowEvent e) { -// System.err.println(PApplet.EXTERNAL_QUIT); -// System.err.flush(); // important -// System.exit(0); - exit(); // don't quit, need to just shut everything down (0133) - } - }); - } - - - /** - * Set up a listener that will fire proper component resize events - * in cases where frame.setResizable(true) is called. - */ - public void setupFrameResizeListener() { - frame.addComponentListener(new ComponentAdapter() { - - public void componentResized(ComponentEvent e) { - // Ignore bad resize events fired during setup to fix - // http://dev.processing.org/bugs/show_bug.cgi?id=341 - // This should also fix the blank screen on Linux bug - // http://dev.processing.org/bugs/show_bug.cgi?id=282 - if (frame.isResizable()) { - // might be multiple resize calls before visible (i.e. first - // when pack() is called, then when it's resized for use). - // ignore them because it's not the user resizing things. - Frame farm = (Frame) e.getComponent(); - if (farm.isVisible()) { - Insets insets = farm.getInsets(); - Dimension windowSize = farm.getSize(); - int usableW = windowSize.width - insets.left - insets.right; - int usableH = windowSize.height - insets.top - insets.bottom; - - // the ComponentListener in PApplet will handle calling size() - setBounds(insets.left, insets.top, usableW, usableH); - } - } - } - }); - } - - - /** - * GIF image of the Processing logo. - */ - static public final byte[] ICON_IMAGE = { - 71, 73, 70, 56, 57, 97, 16, 0, 16, 0, -60, 0, 0, 0, 0, 0, - 0, 0, -127, 0, -127, 0, 0, -127, -127, -127, 0, 0, -127, 0, -127, -127, - -127, 0, -127, -127, -127, -63, -63, -63, 0, 0, -1, 0, -1, 0, 0, -1, - -1, -1, 0, 0, -1, 0, -1, -1, -1, 0, -1, -1, -1, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, -7, 4, - 9, 0, 0, 16, 0, 44, 0, 0, 0, 0, 16, 0, 16, 0, 0, 5, - 75, 32, 36, -118, -57, 96, 14, -57, -88, 66, -27, -23, -90, -86, 43, -97, - 99, 59, -65, -30, 125, -77, 3, -14, -4, 8, -109, 15, -120, -22, 61, 78, - 15, -124, 15, 25, 28, 28, 93, 63, -45, 115, -22, -116, 90, -83, 82, 89, - -44, -103, 61, 44, -91, -54, -89, 19, -111, 50, 18, -51, -55, 1, 73, -121, - -53, -79, 77, 43, -101, 12, -74, -30, -99, -24, -94, 16, 0, 59, - }; - - - /** - * main() method for running this class from the command line. - *

    - * The options shown here are not yet finalized and will be - * changing over the next several releases. - *

    - * The simplest way to turn and applet into an application is to - * add the following code to your program: - *

    static public void main(String args[]) {
    -   *   PApplet.main(new String[] { "YourSketchName" });
    -   * }
    - * This will properly launch your applet from a double-clickable - * .jar or from the command line. - *
    -   * Parameters useful for launching or also used by the PDE:
    -   *
    -   * --location=x,y        upper-lefthand corner of where the applet
    -   *                       should appear on screen. if not used,
    -   *                       the default is to center on the main screen.
    -   *
    -   * --present             put the applet into full screen presentation
    -   *                       mode. requires java 1.4 or later.
    -   *
    -   * --exclusive           use full screen exclusive mode when presenting.
    -   *                       disables new windows or interaction with other
    -   *                       monitors, this is like a "game" mode.
    -   *
    -   * --hide-stop           use to hide the stop button in situations where
    -   *                       you don't want to allow users to exit. also
    -   *                       see the FAQ on information for capturing the ESC
    -   *                       key when running in presentation mode.
    -   *
    -   * --stop-color=#xxxxxx  color of the 'stop' text used to quit an
    -   *                       sketch when it's in present mode.
    -   *
    -   * --bgcolor=#xxxxxx     background color of the window.
    -   *
    -   * --sketch-path         location of where to save files from functions
    -   *                       like saveStrings() or saveFrame(). defaults to
    -   *                       the folder that the java application was
    -   *                       launched from, which means if this isn't set by
    -   *                       the pde, everything goes into the same folder
    -   *                       as processing.exe.
    -   *
    -   * --display=n           set what display should be used by this applet.
    -   *                       displays are numbered starting from 1.
    -   *
    -   * Parameters used by Processing when running via the PDE
    -   *
    -   * --external            set when the applet is being used by the PDE
    -   *
    -   * --editor-location=x,y position of the upper-lefthand corner of the
    -   *                       editor window, for placement of applet window
    -   * 
    - */ - static public void main(String args[]) { - // Disable abyssmally slow Sun renderer on OS X 10.5. - if (platform == MACOSX) { - // Only run this on OS X otherwise it can cause a permissions error. - // http://dev.processing.org/bugs/show_bug.cgi?id=976 - System.setProperty("apple.awt.graphics.UseQuartz", useQuartz); - } - - // This doesn't do anything. -// if (platform == WINDOWS) { -// // For now, disable the D3D renderer on Java 6u10 because -// // it causes problems with Present mode. -// // http://dev.processing.org/bugs/show_bug.cgi?id=1009 -// System.setProperty("sun.java2d.d3d", "false"); -// } - - if (args.length < 1) { - System.err.println("Usage: PApplet "); - System.err.println("For additional options, " + - "see the Javadoc for PApplet"); - System.exit(1); - } - - boolean external = false; - int[] location = null; - int[] editorLocation = null; - - String name = null; - boolean present = false; - boolean exclusive = false; - Color backgroundColor = Color.BLACK; - Color stopColor = Color.GRAY; - GraphicsDevice displayDevice = null; - boolean hideStop = false; - - String param = null, value = null; - - // try to get the user folder. if running under java web start, - // this may cause a security exception if the code is not signed. - // http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Integrate;action=display;num=1159386274 - String folder = null; - try { - folder = System.getProperty("user.dir"); - } catch (Exception e) { } - - int argIndex = 0; - while (argIndex < args.length) { - int equals = args[argIndex].indexOf('='); - if (equals != -1) { - param = args[argIndex].substring(0, equals); - value = args[argIndex].substring(equals + 1); - - if (param.equals(ARGS_EDITOR_LOCATION)) { - external = true; - editorLocation = parseInt(split(value, ',')); - - } else if (param.equals(ARGS_DISPLAY)) { - int deviceIndex = Integer.parseInt(value) - 1; - - //DisplayMode dm = device.getDisplayMode(); - //if ((dm.getWidth() == 1024) && (dm.getHeight() == 768)) { - - GraphicsEnvironment environment = - GraphicsEnvironment.getLocalGraphicsEnvironment(); - GraphicsDevice devices[] = environment.getScreenDevices(); - if ((deviceIndex >= 0) && (deviceIndex < devices.length)) { - displayDevice = devices[deviceIndex]; - } else { - System.err.println("Display " + value + " does not exist, " + - "using the default display instead."); - } - - } else if (param.equals(ARGS_BGCOLOR)) { - if (value.charAt(0) == '#') value = value.substring(1); - backgroundColor = new Color(Integer.parseInt(value, 16)); - - } else if (param.equals(ARGS_STOP_COLOR)) { - if (value.charAt(0) == '#') value = value.substring(1); - stopColor = new Color(Integer.parseInt(value, 16)); - - } else if (param.equals(ARGS_SKETCH_FOLDER)) { - folder = value; - - } else if (param.equals(ARGS_LOCATION)) { - location = parseInt(split(value, ',')); - } - - } else { - if (args[argIndex].equals(ARGS_PRESENT)) { - present = true; - - } else if (args[argIndex].equals(ARGS_EXCLUSIVE)) { - exclusive = true; - - } else if (args[argIndex].equals(ARGS_HIDE_STOP)) { - hideStop = true; - - } else if (args[argIndex].equals(ARGS_EXTERNAL)) { - external = true; - - } else { - name = args[argIndex]; - break; - } - } - argIndex++; - } - - // Set this property before getting into any GUI init code - //System.setProperty("com.apple.mrj.application.apple.menu.about.name", name); - // This )*)(*@#$ Apple crap don't work no matter where you put it - // (static method of the class, at the top of main, wherever) - - if (displayDevice == null) { - GraphicsEnvironment environment = - GraphicsEnvironment.getLocalGraphicsEnvironment(); - displayDevice = environment.getDefaultScreenDevice(); - } - - Frame frame = new Frame(displayDevice.getDefaultConfiguration()); - /* - Frame frame = null; - if (displayDevice != null) { - frame = new Frame(displayDevice.getDefaultConfiguration()); - } else { - frame = new Frame(); - } - */ - //Dimension screen = Toolkit.getDefaultToolkit().getScreenSize(); - - // remove the grow box by default - // users who want it back can call frame.setResizable(true) - frame.setResizable(false); - - // Set the trimmings around the image - Image image = Toolkit.getDefaultToolkit().createImage(ICON_IMAGE); - frame.setIconImage(image); - frame.setTitle(name); - - final PApplet applet; - try { - Class c = Thread.currentThread().getContextClassLoader().loadClass(name); - applet = (PApplet) c.newInstance(); - } catch (Exception e) { - throw new RuntimeException(e); - } - - // these are needed before init/start - applet.frame = frame; - applet.sketchPath = folder; - applet.args = PApplet.subset(args, 1); - applet.external = external; - - // Need to save the window bounds at full screen, - // because pack() will cause the bounds to go to zero. - // http://dev.processing.org/bugs/show_bug.cgi?id=923 - Rectangle fullScreenRect = null; - - // For 0149, moving this code (up to the pack() method) before init(). - // For OpenGL (and perhaps other renderers in the future), a peer is - // needed before a GLDrawable can be created. So pack() needs to be - // called on the Frame before applet.init(), which itself calls size(), - // and launches the Thread that will kick off setup(). - // http://dev.processing.org/bugs/show_bug.cgi?id=891 - // http://dev.processing.org/bugs/show_bug.cgi?id=908 - if (present) { - frame.setUndecorated(true); - frame.setBackground(backgroundColor); - if (exclusive) { - displayDevice.setFullScreenWindow(frame); - frame.setExtendedState(java.awt.Frame.MAXIMIZED_BOTH); - fullScreenRect = frame.getBounds(); - } else { - DisplayMode mode = displayDevice.getDisplayMode(); - fullScreenRect = new Rectangle(0, 0, mode.getWidth(), mode.getHeight()); - frame.setBounds(fullScreenRect); - frame.setVisible(true); - } - } - frame.setLayout(null); - frame.add(applet); - if (present) { - frame.invalidate(); - } else { - frame.pack(); - } - // insufficient, places the 100x100 sketches offset strangely - //frame.validate(); - - applet.init(); - - // Wait until the applet has figured out its width. - // In a static mode app, this will be after setup() has completed, - // and the empty draw() has set "finished" to true. - // TODO make sure this won't hang if the applet has an exception. - while (applet.defaultSize && !applet.finished) { - //System.out.println("default size"); - try { - Thread.sleep(5); - - } catch (InterruptedException e) { - //System.out.println("interrupt"); - } - } - //println("not default size " + applet.width + " " + applet.height); - //println(" (g width/height is " + applet.g.width + "x" + applet.g.height + ")"); - - if (present) { - // After the pack(), the screen bounds are gonna be 0s - frame.setBounds(fullScreenRect); - applet.setBounds((fullScreenRect.width - applet.width) / 2, - (fullScreenRect.height - applet.height) / 2, - applet.width, applet.height); - - if (!hideStop) { - Label label = new Label("stop"); - label.setForeground(stopColor); - label.addMouseListener(new MouseAdapter() { - public void mousePressed(MouseEvent e) { - System.exit(0); - } - }); - frame.add(label); - - Dimension labelSize = label.getPreferredSize(); - // sometimes shows up truncated on mac - //System.out.println("label width is " + labelSize.width); - labelSize = new Dimension(100, labelSize.height); - label.setSize(labelSize); - label.setLocation(20, fullScreenRect.height - labelSize.height - 20); - } - - // not always running externally when in present mode - if (external) { - applet.setupExternalMessages(); - } - - } else { // if not presenting - // can't do pack earlier cuz present mode don't like it - // (can't go full screen with a frame after calling pack) - // frame.pack(); // get insets. get more. - Insets insets = frame.getInsets(); - - int windowW = Math.max(applet.width, MIN_WINDOW_WIDTH) + - insets.left + insets.right; - int windowH = Math.max(applet.height, MIN_WINDOW_HEIGHT) + - insets.top + insets.bottom; - - frame.setSize(windowW, windowH); - - if (location != null) { - // a specific location was received from PdeRuntime - // (applet has been run more than once, user placed window) - frame.setLocation(location[0], location[1]); - - } else if (external) { - int locationX = editorLocation[0] - 20; - int locationY = editorLocation[1]; - - if (locationX - windowW > 10) { - // if it fits to the left of the window - frame.setLocation(locationX - windowW, locationY); - - } else { // doesn't fit - // if it fits inside the editor window, - // offset slightly from upper lefthand corner - // so that it's plunked inside the text area - locationX = editorLocation[0] + 66; - locationY = editorLocation[1] + 66; - - if ((locationX + windowW > applet.screen.width - 33) || - (locationY + windowH > applet.screen.height - 33)) { - // otherwise center on screen - locationX = (applet.screen.width - windowW) / 2; - locationY = (applet.screen.height - windowH) / 2; - } - frame.setLocation(locationX, locationY); - } - } else { // just center on screen - frame.setLocation((applet.screen.width - applet.width) / 2, - (applet.screen.height - applet.height) / 2); - } - - if (backgroundColor == Color.black) { //BLACK) { - // this means no bg color unless specified - backgroundColor = SystemColor.control; - } - frame.setBackground(backgroundColor); - - int usableWindowH = windowH - insets.top - insets.bottom; - applet.setBounds((windowW - applet.width)/2, - insets.top + (usableWindowH - applet.height)/2, - applet.width, applet.height); - - if (external) { - applet.setupExternalMessages(); - - } else { // !external - frame.addWindowListener(new WindowAdapter() { - public void windowClosing(WindowEvent e) { - System.exit(0); - } - }); - } - - // handle frame resizing events - applet.setupFrameResizeListener(); - - // all set for rockin - if (applet.displayable()) { - frame.setVisible(true); - } - } - - applet.requestFocus(); // ask for keydowns - //System.out.println("exiting main()"); - } - - - ////////////////////////////////////////////////////////////// - - - /** - * Begin recording to a new renderer of the specified type, using the width - * and height of the main drawing surface. - */ - public PGraphics beginRecord(String renderer, String filename) { - filename = insertFrame(filename); - PGraphics rec = createGraphics(width, height, renderer, filename); - beginRecord(rec); - return rec; - } - - - /** - * Begin recording (echoing) commands to the specified PGraphics object. - */ - public void beginRecord(PGraphics recorder) { - this.recorder = recorder; - recorder.beginDraw(); - } - - - public void endRecord() { - if (recorder != null) { - recorder.endDraw(); - recorder.dispose(); - recorder = null; - } - } - - - /** - * Begin recording raw shape data to a renderer of the specified type, - * using the width and height of the main drawing surface. - * - * If hashmarks (###) are found in the filename, they'll be replaced - * by the current frame number (frameCount). - */ - public PGraphics beginRaw(String renderer, String filename) { - filename = insertFrame(filename); - PGraphics rec = createGraphics(width, height, renderer, filename); - g.beginRaw(rec); - return rec; - } - - - /** - * Begin recording raw shape data to the specified renderer. - * - * This simply echoes to g.beginRaw(), but since is placed here (rather than - * generated by preproc.pl) for clarity and so that it doesn't echo the - * command should beginRecord() be in use. - */ - public void beginRaw(PGraphics rawGraphics) { - g.beginRaw(rawGraphics); - } - - - /** - * Stop recording raw shape data to the specified renderer. - * - * This simply echoes to g.beginRaw(), but since is placed here (rather than - * generated by preproc.pl) for clarity and so that it doesn't echo the - * command should beginRecord() be in use. - */ - public void endRaw() { - g.endRaw(); - } - - - ////////////////////////////////////////////////////////////// - - - /** - * Loads the pixel data for the display window into the pixels[] array. This function must always be called before reading from or writing to pixels[]. - *

    Certain renderers may or may not seem to require loadPixels() or updatePixels(). However, the rule is that any time you want to manipulate the pixels[] array, you must first call loadPixels(), and after changes have been made, call updatePixels(). Even if the renderer may not seem to use this function in the current Processing release, this will always be subject to change. - * =advanced - * Override the g.pixels[] function to set the pixels[] array - * that's part of the PApplet object. Allows the use of - * pixels[] in the code, rather than g.pixels[]. - * - * @webref image:pixels - * @see processing.core.PApplet#pixels - * @see processing.core.PApplet#updatePixels() - */ - public void loadPixels() { - g.loadPixels(); - pixels = g.pixels; - } - - /** - * Updates the display window with the data in the pixels[] array. Use in conjunction with loadPixels(). If you're only reading pixels from the array, there's no need to call updatePixels() unless there are changes. - *

    Certain renderers may or may not seem to require loadPixels() or updatePixels(). However, the rule is that any time you want to manipulate the pixels[] array, you must first call loadPixels(), and after changes have been made, call updatePixels(). Even if the renderer may not seem to use this function in the current Processing release, this will always be subject to change. - *

    Currently, none of the renderers use the additional parameters to updatePixels(), however this may be implemented in the future. - * - * @webref image:pixels - * - * @see processing.core.PApplet#loadPixels() - * @see processing.core.PApplet#updatePixels() - * - */ - public void updatePixels() { - g.updatePixels(); - } - - - public void updatePixels(int x1, int y1, int x2, int y2) { - g.updatePixels(x1, y1, x2, y2); - } - - - ////////////////////////////////////////////////////////////// - - // EVERYTHING BELOW THIS LINE IS AUTOMATICALLY GENERATED. DO NOT TOUCH! - // This includes the Javadoc comments, which are automatically copied from - // the PImage and PGraphics source code files. - - // public functions for processing.core - - - public void flush() { - if (recorder != null) recorder.flush(); - g.flush(); - } - - - /** - * Set various hints and hacks for the renderer. This is used to handle obscure rendering features that cannot be implemented in a consistent manner across renderers. Many options will often graduate to standard features instead of hints over time. - *

    hint(ENABLE_OPENGL_4X_SMOOTH) - Enable 4x anti-aliasing for OpenGL. This can help force anti-aliasing if it has not been enabled by the user. On some graphics cards, this can also be set by the graphics driver's control panel, however not all cards make this available. This hint must be called immediately after the size() command because it resets the renderer, obliterating any settings and anything drawn (and like size(), re-running the code that came before it again). - *

    hint(DISABLE_OPENGL_2X_SMOOTH) - In Processing 1.0, Processing always enables 2x smoothing when the OpenGL renderer is used. This hint disables the default 2x smoothing and returns the smoothing behavior found in earlier releases, where smooth() and noSmooth() could be used to enable and disable smoothing, though the quality was inferior. - *

    hint(ENABLE_NATIVE_FONTS) - Use the native version fonts when they are installed, rather than the bitmapped version from a .vlw file. This is useful with the JAVA2D renderer setting, as it will improve font rendering speed. This is not enabled by default, because it can be misleading while testing because the type will look great on your machine (because you have the font installed) but lousy on others' machines if the identical font is unavailable. This option can only be set per-sketch, and must be called before any use of textFont(). - *

    hint(DISABLE_DEPTH_TEST) - Disable the zbuffer, allowing you to draw on top of everything at will. When depth testing is disabled, items will be drawn to the screen sequentially, like a painting. This hint is most often used to draw in 3D, then draw in 2D on top of it (for instance, to draw GUI controls in 2D on top of a 3D interface). Starting in release 0149, this will also clear the depth buffer. Restore the default with hint(ENABLE_DEPTH_TEST), but note that with the depth buffer cleared, any 3D drawing that happens later in draw() will ignore existing shapes on the screen. - *

    hint(ENABLE_DEPTH_SORT) - Enable primitive z-sorting of triangles and lines in P3D and OPENGL. This can slow performance considerably, and the algorithm is not yet perfect. Restore the default with hint(DISABLE_DEPTH_SORT). - *

    hint(DISABLE_OPENGL_ERROR_REPORT) - Speeds up the OPENGL renderer setting by not checking for errors while running. Undo with hint(ENABLE_OPENGL_ERROR_REPORT). - *

    As of release 0149, unhint() has been removed in favor of adding additional ENABLE/DISABLE constants to reset the default behavior. This prevents the double negatives, and also reinforces which hints can be enabled or disabled. - * - * @webref rendering - * @param which name of the hint to be enabled or disabled - * - * @see processing.core.PGraphics - * @see processing.core.PApplet#createGraphics(int, int, String, String) - * @see processing.core.PApplet#size(int, int) - */ - public void hint(int which) { - if (recorder != null) recorder.hint(which); - g.hint(which); - } - - - /** - * Start a new shape of type POLYGON - */ - public void beginShape() { - if (recorder != null) recorder.beginShape(); - g.beginShape(); - } - - - /** - * Start a new shape. - *

    - * Differences between beginShape() and line() and point() methods. - *

    - * beginShape() is intended to be more flexible at the expense of being - * a little more complicated to use. it handles more complicated shapes - * that can consist of many connected lines (so you get joins) or lines - * mixed with curves. - *

    - * The line() and point() command are for the far more common cases - * (particularly for our audience) that simply need to draw a line - * or a point on the screen. - *

    - * From the code side of things, line() may or may not call beginShape() - * to do the drawing. In the beta code, they do, but in the alpha code, - * they did not. they might be implemented one way or the other depending - * on tradeoffs of runtime efficiency vs. implementation efficiency &mdash - * meaning the speed that things run at vs. the speed it takes me to write - * the code and maintain it. for beta, the latter is most important so - * that's how things are implemented. - */ - public void beginShape(int kind) { - if (recorder != null) recorder.beginShape(kind); - g.beginShape(kind); - } - - - /** - * Sets whether the upcoming vertex is part of an edge. - * Equivalent to glEdgeFlag(), for people familiar with OpenGL. - */ - public void edge(boolean edge) { - if (recorder != null) recorder.edge(edge); - g.edge(edge); - } - - - /** - * Sets the current normal vector. Only applies with 3D rendering - * and inside a beginShape/endShape block. - *

    - * This is for drawing three dimensional shapes and surfaces, - * allowing you to specify a vector perpendicular to the surface - * of the shape, which determines how lighting affects it. - *

    - * For the most part, PGraphics3D will attempt to automatically - * assign normals to shapes, but since that's imperfect, - * this is a better option when you want more control. - *

    - * For people familiar with OpenGL, this function is basically - * identical to glNormal3f(). - */ - public void normal(float nx, float ny, float nz) { - if (recorder != null) recorder.normal(nx, ny, nz); - g.normal(nx, ny, nz); - } - - - /** - * Set texture mode to either to use coordinates based on the IMAGE - * (more intuitive for new users) or NORMALIZED (better for advanced chaps) - */ - public void textureMode(int mode) { - if (recorder != null) recorder.textureMode(mode); - g.textureMode(mode); - } - - - /** - * Set texture image for current shape. - * Needs to be called between @see beginShape and @see endShape - * - * @param image reference to a PImage object - */ - public void texture(PImage image) { - if (recorder != null) recorder.texture(image); - g.texture(image); - } - - - public void vertex(float x, float y) { - if (recorder != null) recorder.vertex(x, y); - g.vertex(x, y); - } - - - public void vertex(float x, float y, float z) { - if (recorder != null) recorder.vertex(x, y, z); - g.vertex(x, y, z); - } - - - /** - * Used by renderer subclasses or PShape to efficiently pass in already - * formatted vertex information. - * @param v vertex parameters, as a float array of length VERTEX_FIELD_COUNT - */ - public void vertex(float[] v) { - if (recorder != null) recorder.vertex(v); - g.vertex(v); - } - - - public void vertex(float x, float y, float u, float v) { - if (recorder != null) recorder.vertex(x, y, u, v); - g.vertex(x, y, u, v); - } - - - public void vertex(float x, float y, float z, float u, float v) { - if (recorder != null) recorder.vertex(x, y, z, u, v); - g.vertex(x, y, z, u, v); - } - - - /** This feature is in testing, do not use or rely upon its implementation */ - public void breakShape() { - if (recorder != null) recorder.breakShape(); - g.breakShape(); - } - - - public void endShape() { - if (recorder != null) recorder.endShape(); - g.endShape(); - } - - - public void endShape(int mode) { - if (recorder != null) recorder.endShape(mode); - g.endShape(mode); - } - - - public void bezierVertex(float x2, float y2, - float x3, float y3, - float x4, float y4) { - if (recorder != null) recorder.bezierVertex(x2, y2, x3, y3, x4, y4); - g.bezierVertex(x2, y2, x3, y3, x4, y4); - } - - - public void bezierVertex(float x2, float y2, float z2, - float x3, float y3, float z3, - float x4, float y4, float z4) { - if (recorder != null) recorder.bezierVertex(x2, y2, z2, x3, y3, z3, x4, y4, z4); - g.bezierVertex(x2, y2, z2, x3, y3, z3, x4, y4, z4); - } - - - public void curveVertex(float x, float y) { - if (recorder != null) recorder.curveVertex(x, y); - g.curveVertex(x, y); - } - - - public void curveVertex(float x, float y, float z) { - if (recorder != null) recorder.curveVertex(x, y, z); - g.curveVertex(x, y, z); - } - - - public void point(float x, float y) { - if (recorder != null) recorder.point(x, y); - g.point(x, y); - } - - - /** - * Draws a point, a coordinate in space at the dimension of one pixel. - * The first parameter is the horizontal value for the point, the second - * value is the vertical value for the point, and the optional third value - * is the depth value. Drawing this shape in 3D using the z - * parameter requires the P3D or OPENGL parameter in combination with - * size as shown in the above example. - *

    Due to what appears to be a bug in Apple's Java implementation, - * the point() and set() methods are extremely slow in some circumstances - * when used with the default renderer. Using P2D or P3D will fix the - * problem. Grouping many calls to point() or set() together can also - * help. (Bug 1094) - * - * @webref shape:2d_primitives - * @param x x-coordinate of the point - * @param y y-coordinate of the point - * @param z z-coordinate of the point - * - * @see PGraphics#beginShape() - */ - public void point(float x, float y, float z) { - if (recorder != null) recorder.point(x, y, z); - g.point(x, y, z); - } - - - public void line(float x1, float y1, float x2, float y2) { - if (recorder != null) recorder.line(x1, y1, x2, y2); - g.line(x1, y1, x2, y2); - } - - - /** - * Draws a line (a direct path between two points) to the screen. - * The version of line() with four parameters draws the line in 2D. - * To color a line, use the stroke() function. A line cannot be - * filled, therefore the fill() method will not affect the color - * of a line. 2D lines are drawn with a width of one pixel by default, - * but this can be changed with the strokeWeight() function. - * The version with six parameters allows the line to be placed anywhere - * within XYZ space. Drawing this shape in 3D using the z parameter - * requires the P3D or OPENGL parameter in combination with size as shown - * in the above example. - * - * @webref shape:2d_primitives - * @param x1 x-coordinate of the first point - * @param y1 y-coordinate of the first point - * @param z1 z-coordinate of the first point - * @param x2 x-coordinate of the second point - * @param y2 y-coordinate of the second point - * @param z2 z-coordinate of the second point - * - * @see PGraphics#strokeWeight(float) - * @see PGraphics#strokeJoin(int) - * @see PGraphics#strokeCap(int) - * @see PGraphics#beginShape() - */ - public void line(float x1, float y1, float z1, - float x2, float y2, float z2) { - if (recorder != null) recorder.line(x1, y1, z1, x2, y2, z2); - g.line(x1, y1, z1, x2, y2, z2); - } - - - /** - * A triangle is a plane created by connecting three points. The first two - * arguments specify the first point, the middle two arguments specify - * the second point, and the last two arguments specify the third point. - * - * @webref shape:2d_primitives - * @param x1 x-coordinate of the first point - * @param y1 y-coordinate of the first point - * @param x2 x-coordinate of the second point - * @param y2 y-coordinate of the second point - * @param x3 x-coordinate of the third point - * @param y3 y-coordinate of the third point - * - * @see PApplet#beginShape() - */ - public void triangle(float x1, float y1, float x2, float y2, - float x3, float y3) { - if (recorder != null) recorder.triangle(x1, y1, x2, y2, x3, y3); - g.triangle(x1, y1, x2, y2, x3, y3); - } - - - /** - * A quad is a quadrilateral, a four sided polygon. It is similar to - * a rectangle, but the angles between its edges are not constrained - * ninety degrees. The first pair of parameters (x1,y1) sets the - * first vertex and the subsequent pairs should proceed clockwise or - * counter-clockwise around the defined shape. - * - * @webref shape:2d_primitives - * @param x1 x-coordinate of the first corner - * @param y1 y-coordinate of the first corner - * @param x2 x-coordinate of the second corner - * @param y2 y-coordinate of the second corner - * @param x3 x-coordinate of the third corner - * @param y3 y-coordinate of the third corner - * @param x4 x-coordinate of the fourth corner - * @param y4 y-coordinate of the fourth corner - * - */ - public void quad(float x1, float y1, float x2, float y2, - float x3, float y3, float x4, float y4) { - if (recorder != null) recorder.quad(x1, y1, x2, y2, x3, y3, x4, y4); - g.quad(x1, y1, x2, y2, x3, y3, x4, y4); - } - - - public void rectMode(int mode) { - if (recorder != null) recorder.rectMode(mode); - g.rectMode(mode); - } - - - /** - * Draws a rectangle to the screen. A rectangle is a four-sided shape with - * every angle at ninety degrees. The first two parameters set the location, - * the third sets the width, and the fourth sets the height. The origin is - * changed with the rectMode() function. - * - * @webref shape:2d_primitives - * @param a x-coordinate of the rectangle - * @param b y-coordinate of the rectangle - * @param c width of the rectangle - * @param d height of the rectangle - * - * @see PGraphics#rectMode(int) - * @see PGraphics#quad(float, float, float, float, float, float, float, float) - */ - public void rect(float a, float b, float c, float d) { - if (recorder != null) recorder.rect(a, b, c, d); - g.rect(a, b, c, d); - } - - - /** - * The origin of the ellipse is modified by the ellipseMode() - * function. The default configuration is ellipseMode(CENTER), - * which specifies the location of the ellipse as the center of the shape. - * The RADIUS mode is the same, but the width and height parameters to - * ellipse() specify the radius of the ellipse, rather than the - * diameter. The CORNER mode draws the shape from the upper-left corner - * of its bounding box. The CORNERS mode uses the four parameters to - * ellipse() to set two opposing corners of the ellipse's bounding - * box. The parameter must be written in "ALL CAPS" because Processing - * syntax is case sensitive. - * - * @webref shape:attributes - * - * @param mode Either CENTER, RADIUS, CORNER, or CORNERS. - * @see PApplet#ellipse(float, float, float, float) - */ - public void ellipseMode(int mode) { - if (recorder != null) recorder.ellipseMode(mode); - g.ellipseMode(mode); - } - - - /** - * Draws an ellipse (oval) in the display window. An ellipse with an equal - * width and height is a circle. The first two parameters set - * the location, the third sets the width, and the fourth sets the height. - * The origin may be changed with the ellipseMode() function. - * - * @webref shape:2d_primitives - * @param a x-coordinate of the ellipse - * @param b y-coordinate of the ellipse - * @param c width of the ellipse - * @param d height of the ellipse - * - * @see PApplet#ellipseMode(int) - */ - public void ellipse(float a, float b, float c, float d) { - if (recorder != null) recorder.ellipse(a, b, c, d); - g.ellipse(a, b, c, d); - } - - - /** - * Draws an arc in the display window. - * Arcs are drawn along the outer edge of an ellipse defined by the - * x, y, width and height parameters. - * The origin or the arc's ellipse may be changed with the - * ellipseMode() function. - * The start and stop parameters specify the angles - * at which to draw the arc. - * - * @webref shape:2d_primitives - * @param a x-coordinate of the arc's ellipse - * @param b y-coordinate of the arc's ellipse - * @param c width of the arc's ellipse - * @param d height of the arc's ellipse - * @param start angle to start the arc, specified in radians - * @param stop angle to stop the arc, specified in radians - * - * @see PGraphics#ellipseMode(int) - * @see PGraphics#ellipse(float, float, float, float) - */ - public void arc(float a, float b, float c, float d, - float start, float stop) { - if (recorder != null) recorder.arc(a, b, c, d, start, stop); - g.arc(a, b, c, d, start, stop); - } - - - /** - * @param size dimension of the box in all dimensions, creates a cube - */ - public void box(float size) { - if (recorder != null) recorder.box(size); - g.box(size); - } - - - /** - * A box is an extruded rectangle. A box with equal dimension - * on all sides is a cube. - * - * @webref shape:3d_primitives - * @param w dimension of the box in the x-dimension - * @param h dimension of the box in the y-dimension - * @param d dimension of the box in the z-dimension - * - * @see PApplet#sphere(float) - */ - public void box(float w, float h, float d) { - if (recorder != null) recorder.box(w, h, d); - g.box(w, h, d); - } - - - /** - * @param res number of segments (minimum 3) used per full circle revolution - */ - public void sphereDetail(int res) { - if (recorder != null) recorder.sphereDetail(res); - g.sphereDetail(res); - } - - - /** - * Controls the detail used to render a sphere by adjusting the number of - * vertices of the sphere mesh. The default resolution is 30, which creates - * a fairly detailed sphere definition with vertices every 360/30 = 12 - * degrees. If you're going to render a great number of spheres per frame, - * it is advised to reduce the level of detail using this function. - * The setting stays active until sphereDetail() is called again with - * a new parameter and so should not be called prior to every - * sphere() statement, unless you wish to render spheres with - * different settings, e.g. using less detail for smaller spheres or ones - * further away from the camera. To control the detail of the horizontal - * and vertical resolution independently, use the version of the functions - * with two parameters. - * - * =advanced - * Code for sphereDetail() submitted by toxi [031031]. - * Code for enhanced u/v version from davbol [080801]. - * - * @webref shape:3d_primitives - * @param ures number of segments used horizontally (longitudinally) - * per full circle revolution - * @param vres number of segments used vertically (latitudinally) - * from top to bottom - * - * @see PGraphics#sphere(float) - */ - /** - * Set the detail level for approximating a sphere. The ures and vres params - * control the horizontal and vertical resolution. - * - */ - public void sphereDetail(int ures, int vres) { - if (recorder != null) recorder.sphereDetail(ures, vres); - g.sphereDetail(ures, vres); - } - - - /** - * Draw a sphere with radius r centered at coordinate 0, 0, 0. - * A sphere is a hollow ball made from tessellated triangles. - * =advanced - *

    - * Implementation notes: - *

    - * cache all the points of the sphere in a static array - * top and bottom are just a bunch of triangles that land - * in the center point - *

    - * sphere is a series of concentric circles who radii vary - * along the shape, based on, er.. cos or something - *

    -   * [toxi 031031] new sphere code. removed all multiplies with
    -   * radius, as scale() will take care of that anyway
    -   *
    -   * [toxi 031223] updated sphere code (removed modulos)
    -   * and introduced sphereAt(x,y,z,r)
    -   * to avoid additional translate()'s on the user/sketch side
    -   *
    -   * [davbol 080801] now using separate sphereDetailU/V
    -   * 
    - * - * @webref shape:3d_primitives - * @param r the radius of the sphere - */ - public void sphere(float r) { - if (recorder != null) recorder.sphere(r); - g.sphere(r); - } - - - /** - * Evalutes quadratic bezier at point t for points a, b, c, d. - * The parameter t varies between 0 and 1. The a and d parameters are the - * on-curve points, b and c are the control points. To make a two-dimensional - * curve, call this function once with the x coordinates and a second time - * with the y coordinates to get the location of a bezier curve at t. - * - * =advanced - * For instance, to convert the following example:
    -   * stroke(255, 102, 0);
    -   * line(85, 20, 10, 10);
    -   * line(90, 90, 15, 80);
    -   * stroke(0, 0, 0);
    -   * bezier(85, 20, 10, 10, 90, 90, 15, 80);
    -   *
    -   * // draw it in gray, using 10 steps instead of the default 20
    -   * // this is a slower way to do it, but useful if you need
    -   * // to do things with the coordinates at each step
    -   * stroke(128);
    -   * beginShape(LINE_STRIP);
    -   * for (int i = 0; i <= 10; i++) {
    -   *   float t = i / 10.0f;
    -   *   float x = bezierPoint(85, 10, 90, 15, t);
    -   *   float y = bezierPoint(20, 10, 90, 80, t);
    -   *   vertex(x, y);
    -   * }
    -   * endShape();
    - * - * @webref shape:curves - * @param a coordinate of first point on the curve - * @param b coordinate of first control point - * @param c coordinate of second control point - * @param d coordinate of second point on the curve - * @param t value between 0 and 1 - * - * @see PGraphics#bezier(float, float, float, float, float, float, float, float, float, float, float, float) - * @see PGraphics#bezierVertex(float, float, float, float, float, float) - * @see PGraphics#curvePoint(float, float, float, float, float) - */ - public float bezierPoint(float a, float b, float c, float d, float t) { - return g.bezierPoint(a, b, c, d, t); - } - - - /** - * Calculates the tangent of a point on a Bezier curve. There is a good - * definition of "tangent" at Wikipedia: http://en.wikipedia.org/wiki/Tangent - * - * =advanced - * Code submitted by Dave Bollinger (davol) for release 0136. - * - * @webref shape:curves - * @param a coordinate of first point on the curve - * @param b coordinate of first control point - * @param c coordinate of second control point - * @param d coordinate of second point on the curve - * @param t value between 0 and 1 - * - * @see PGraphics#bezier(float, float, float, float, float, float, float, float, float, float, float, float) - * @see PGraphics#bezierVertex(float, float, float, float, float, float) - * @see PGraphics#curvePoint(float, float, float, float, float) - */ - public float bezierTangent(float a, float b, float c, float d, float t) { - return g.bezierTangent(a, b, c, d, t); - } - - - /** - * Sets the resolution at which Beziers display. The default value is 20. This function is only useful when using the P3D or OPENGL renderer as the default (JAVA2D) renderer does not use this information. - * - * @webref shape:curves - * @param detail resolution of the curves - * - * @see PApplet#curve(float, float, float, float, float, float, float, float, float, float, float, float) - * @see PApplet#curveVertex(float, float) - * @see PApplet#curveTightness(float) - */ - public void bezierDetail(int detail) { - if (recorder != null) recorder.bezierDetail(detail); - g.bezierDetail(detail); - } - - - /** - * Draws a Bezier curve on the screen. These curves are defined by a series - * of anchor and control points. The first two parameters specify the first - * anchor point and the last two parameters specify the other anchor point. - * The middle parameters specify the control points which define the shape - * of the curve. Bezier curves were developed by French engineer Pierre - * Bezier. Using the 3D version of requires rendering with P3D or OPENGL - * (see the Environment reference for more information). - * - * =advanced - * Draw a cubic bezier curve. The first and last points are - * the on-curve points. The middle two are the 'control' points, - * or 'handles' in an application like Illustrator. - *

    - * Identical to typing: - *

    beginShape();
    -   * vertex(x1, y1);
    -   * bezierVertex(x2, y2, x3, y3, x4, y4);
    -   * endShape();
    -   * 
    - * In Postscript-speak, this would be: - *
    moveto(x1, y1);
    -   * curveto(x2, y2, x3, y3, x4, y4);
    - * If you were to try and continue that curve like so: - *
    curveto(x5, y5, x6, y6, x7, y7);
    - * This would be done in processing by adding these statements: - *
    bezierVertex(x5, y5, x6, y6, x7, y7)
    -   * 
    - * To draw a quadratic (instead of cubic) curve, - * use the control point twice by doubling it: - *
    bezier(x1, y1, cx, cy, cx, cy, x2, y2);
    - * - * @webref shape:curves - * @param x1 coordinates for the first anchor point - * @param y1 coordinates for the first anchor point - * @param z1 coordinates for the first anchor point - * @param x2 coordinates for the first control point - * @param y2 coordinates for the first control point - * @param z2 coordinates for the first control point - * @param x3 coordinates for the second control point - * @param y3 coordinates for the second control point - * @param z3 coordinates for the second control point - * @param x4 coordinates for the second anchor point - * @param y4 coordinates for the second anchor point - * @param z4 coordinates for the second anchor point - * - * @see PGraphics#bezierVertex(float, float, float, float, float, float) - * @see PGraphics#curve(float, float, float, float, float, float, float, float, float, float, float, float) - */ - public void bezier(float x1, float y1, - float x2, float y2, - float x3, float y3, - float x4, float y4) { - if (recorder != null) recorder.bezier(x1, y1, x2, y2, x3, y3, x4, y4); - g.bezier(x1, y1, x2, y2, x3, y3, x4, y4); - } - - - public void bezier(float x1, float y1, float z1, - float x2, float y2, float z2, - float x3, float y3, float z3, - float x4, float y4, float z4) { - if (recorder != null) recorder.bezier(x1, y1, z1, x2, y2, z2, x3, y3, z3, x4, y4, z4); - g.bezier(x1, y1, z1, x2, y2, z2, x3, y3, z3, x4, y4, z4); - } - - - /** - * Evalutes the Catmull-Rom curve at point t for points a, b, c, d. The - * parameter t varies between 0 and 1, a and d are points on the curve, - * and b and c are the control points. This can be done once with the x - * coordinates and a second time with the y coordinates to get the - * location of a curve at t. - * - * @webref shape:curves - * @param a coordinate of first point on the curve - * @param b coordinate of second point on the curve - * @param c coordinate of third point on the curve - * @param d coordinate of fourth point on the curve - * @param t value between 0 and 1 - * - * @see PGraphics#curve(float, float, float, float, float, float, float, float, float, float, float, float) - * @see PGraphics#curveVertex(float, float) - * @see PGraphics#bezierPoint(float, float, float, float, float) - */ - public float curvePoint(float a, float b, float c, float d, float t) { - return g.curvePoint(a, b, c, d, t); - } - - - /** - * Calculates the tangent of a point on a Catmull-Rom curve. There is a good definition of "tangent" at Wikipedia: http://en.wikipedia.org/wiki/Tangent. - * - * =advanced - * Code thanks to Dave Bollinger (Bug #715) - * - * @webref shape:curves - * @param a coordinate of first point on the curve - * @param b coordinate of first control point - * @param c coordinate of second control point - * @param d coordinate of second point on the curve - * @param t value between 0 and 1 - * - * @see PGraphics#curve(float, float, float, float, float, float, float, float, float, float, float, float) - * @see PGraphics#curveVertex(float, float) - * @see PGraphics#curvePoint(float, float, float, float, float) - * @see PGraphics#bezierTangent(float, float, float, float, float) - */ - public float curveTangent(float a, float b, float c, float d, float t) { - return g.curveTangent(a, b, c, d, t); - } - - - /** - * Sets the resolution at which curves display. The default value is 20. - * This function is only useful when using the P3D or OPENGL renderer as - * the default (JAVA2D) renderer does not use this information. - * - * @webref shape:curves - * @param detail resolution of the curves - * - * @see PGraphics#curve(float, float, float, float, float, float, float, float, float, float, float, float) - * @see PGraphics#curveVertex(float, float) - * @see PGraphics#curveTightness(float) - */ - public void curveDetail(int detail) { - if (recorder != null) recorder.curveDetail(detail); - g.curveDetail(detail); - } - - - /** - * Modifies the quality of forms created with curve() and - *curveVertex(). The parameter squishy determines how the - * curve fits to the vertex points. The value 0.0 is the default value for - * squishy (this value defines the curves to be Catmull-Rom splines) - * and the value 1.0 connects all the points with straight lines. - * Values within the range -5.0 and 5.0 will deform the curves but - * will leave them recognizable and as values increase in magnitude, - * they will continue to deform. - * - * @webref shape:curves - * @param tightness amount of deformation from the original vertices - * - * @see PGraphics#curve(float, float, float, float, float, float, float, float, float, float, float, float) - * @see PGraphics#curveVertex(float, float) - * - */ - public void curveTightness(float tightness) { - if (recorder != null) recorder.curveTightness(tightness); - g.curveTightness(tightness); - } - - - /** - * Draws a curved line on the screen. The first and second parameters - * specify the beginning control point and the last two parameters specify - * the ending control point. The middle parameters specify the start and - * stop of the curve. Longer curves can be created by putting a series of - * curve() functions together or using curveVertex(). - * An additional function called curveTightness() provides control - * for the visual quality of the curve. The curve() function is an - * implementation of Catmull-Rom splines. Using the 3D version of requires - * rendering with P3D or OPENGL (see the Environment reference for more - * information). - * - * =advanced - * As of revision 0070, this function no longer doubles the first - * and last points. The curves are a bit more boring, but it's more - * mathematically correct, and properly mirrored in curvePoint(). - *

    - * Identical to typing out:

    -   * beginShape();
    -   * curveVertex(x1, y1);
    -   * curveVertex(x2, y2);
    -   * curveVertex(x3, y3);
    -   * curveVertex(x4, y4);
    -   * endShape();
    -   * 
    - * - * @webref shape:curves - * @param x1 coordinates for the beginning control point - * @param y1 coordinates for the beginning control point - * @param z1 coordinates for the beginning control point - * @param x2 coordinates for the first point - * @param y2 coordinates for the first point - * @param z2 coordinates for the first point - * @param x3 coordinates for the second point - * @param y3 coordinates for the second point - * @param z3 coordinates for the second point - * @param x4 coordinates for the ending control point - * @param y4 coordinates for the ending control point - * @param z4 coordinates for the ending control point - * - * @see PGraphics#curveVertex(float, float) - * @see PGraphics#curveTightness(float) - * @see PGraphics#bezier(float, float, float, float, float, float, float, float, float, float, float, float) - */ - public void curve(float x1, float y1, - float x2, float y2, - float x3, float y3, - float x4, float y4) { - if (recorder != null) recorder.curve(x1, y1, x2, y2, x3, y3, x4, y4); - g.curve(x1, y1, x2, y2, x3, y3, x4, y4); - } - - - public void curve(float x1, float y1, float z1, - float x2, float y2, float z2, - float x3, float y3, float z3, - float x4, float y4, float z4) { - if (recorder != null) recorder.curve(x1, y1, z1, x2, y2, z2, x3, y3, z3, x4, y4, z4); - g.curve(x1, y1, z1, x2, y2, z2, x3, y3, z3, x4, y4, z4); - } - - - /** - * If true in PImage, use bilinear interpolation for copy() - * operations. When inherited by PGraphics, also controls shapes. - */ - public void smooth() { - if (recorder != null) recorder.smooth(); - g.smooth(); - } - - - /** - * Disable smoothing. See smooth(). - */ - public void noSmooth() { - if (recorder != null) recorder.noSmooth(); - g.noSmooth(); - } - - - /** - * Modifies the location from which images draw. The default mode is - * imageMode(CORNER), which specifies the location to be the - * upper-left corner and uses the fourth and fifth parameters of - * image() to set the image's width and height. The syntax - * imageMode(CORNERS) uses the second and third parameters of - * image() to set the location of one corner of the image and - * uses the fourth and fifth parameters to set the opposite corner. - * Use imageMode(CENTER) to draw images centered at the given - * x and y position. - *

    The parameter to imageMode() must be written in - * ALL CAPS because Processing syntax is case sensitive. - * - * @webref image:loading_displaying - * @param mode Either CORNER, CORNERS, or CENTER - * - * @see processing.core.PApplet#loadImage(String, String) - * @see processing.core.PImage - * @see processing.core.PApplet#image(PImage, float, float, float, float) - * @see processing.core.PGraphics#background(float, float, float, float) - */ - public void imageMode(int mode) { - if (recorder != null) recorder.imageMode(mode); - g.imageMode(mode); - } - - - public void image(PImage image, float x, float y) { - if (recorder != null) recorder.image(image, x, y); - g.image(image, x, y); - } - - - /** - * Displays images to the screen. The images must be in the sketch's "data" - * directory to load correctly. Select "Add file..." from the "Sketch" menu - * to add the image. Processing currently works with GIF, JPEG, and Targa - * images. The color of an image may be modified with the tint() - * function and if a GIF has transparency, it will maintain its transparency. - * The img parameter specifies the image to display and the x - * and y parameters define the location of the image from its - * upper-left corner. The image is displayed at its original size unless - * the width and height parameters specify a different size. - * The imageMode() function changes the way the parameters work. - * A call to imageMode(CORNERS) will change the width and height - * parameters to define the x and y values of the opposite corner of the - * image. - * - * =advanced - * Starting with release 0124, when using the default (JAVA2D) renderer, - * smooth() will also improve image quality of resized images. - * - * @webref image:loading_displaying - * @param image the image to display - * @param x x-coordinate of the image - * @param y y-coordinate of the image - * @param c width to display the image - * @param d height to display the image - * - * @see processing.core.PApplet#loadImage(String, String) - * @see processing.core.PImage - * @see processing.core.PGraphics#imageMode(int) - * @see processing.core.PGraphics#tint(float) - * @see processing.core.PGraphics#background(float, float, float, float) - * @see processing.core.PGraphics#alpha(int) - */ - public void image(PImage image, float x, float y, float c, float d) { - if (recorder != null) recorder.image(image, x, y, c, d); - g.image(image, x, y, c, d); - } - - - /** - * Draw an image(), also specifying u/v coordinates. - * In this method, the u, v coordinates are always based on image space - * location, regardless of the current textureMode(). - */ - public void image(PImage image, - float a, float b, float c, float d, - int u1, int v1, int u2, int v2) { - if (recorder != null) recorder.image(image, a, b, c, d, u1, v1, u2, v2); - g.image(image, a, b, c, d, u1, v1, u2, v2); - } - - - /** - * Modifies the location from which shapes draw. - * The default mode is shapeMode(CORNER), which specifies the - * location to be the upper left corner of the shape and uses the third - * and fourth parameters of shape() to specify the width and height. - * The syntax shapeMode(CORNERS) uses the first and second parameters - * of shape() to set the location of one corner and uses the third - * and fourth parameters to set the opposite corner. - * The syntax shapeMode(CENTER) draws the shape from its center point - * and uses the third and forth parameters of shape() to specify the - * width and height. - * The parameter must be written in "ALL CAPS" because Processing syntax - * is case sensitive. - * - * @param mode One of CORNER, CORNERS, CENTER - * - * @webref shape:loading_displaying - * @see PGraphics#shape(PShape) - * @see PGraphics#rectMode(int) - */ - public void shapeMode(int mode) { - if (recorder != null) recorder.shapeMode(mode); - g.shapeMode(mode); - } - - - public void shape(PShape shape) { - if (recorder != null) recorder.shape(shape); - g.shape(shape); - } - - - /** - * Convenience method to draw at a particular location. - */ - public void shape(PShape shape, float x, float y) { - if (recorder != null) recorder.shape(shape, x, y); - g.shape(shape, x, y); - } - - - /** - * Displays shapes to the screen. The shapes must be in the sketch's "data" - * directory to load correctly. Select "Add file..." from the "Sketch" menu - * to add the shape. - * Processing currently works with SVG shapes only. - * The sh parameter specifies the shape to display and the x - * and y parameters define the location of the shape from its - * upper-left corner. - * The shape is displayed at its original size unless the width - * and height parameters specify a different size. - * The shapeMode() function changes the way the parameters work. - * A call to shapeMode(CORNERS), for example, will change the width - * and height parameters to define the x and y values of the opposite corner - * of the shape. - *

    - * Note complex shapes may draw awkwardly with P2D, P3D, and OPENGL. Those - * renderers do not yet support shapes that have holes or complicated breaks. - * - * @param shape - * @param x x-coordinate of the shape - * @param y y-coordinate of the shape - * @param c width to display the shape - * @param d height to display the shape - * - * @webref shape:loading_displaying - * @see PShape - * @see PGraphics#loadShape(String) - * @see PGraphics#shapeMode(int) - */ - public void shape(PShape shape, float x, float y, float c, float d) { - if (recorder != null) recorder.shape(shape, x, y, c, d); - g.shape(shape, x, y, c, d); - } - - - /** - * Sets the alignment of the text to one of LEFT, CENTER, or RIGHT. - * This will also reset the vertical text alignment to BASELINE. - */ - public void textAlign(int align) { - if (recorder != null) recorder.textAlign(align); - g.textAlign(align); - } - - - /** - * Sets the horizontal and vertical alignment of the text. The horizontal - * alignment can be one of LEFT, CENTER, or RIGHT. The vertical alignment - * can be TOP, BOTTOM, CENTER, or the BASELINE (the default). - */ - public void textAlign(int alignX, int alignY) { - if (recorder != null) recorder.textAlign(alignX, alignY); - g.textAlign(alignX, alignY); - } - - - /** - * Returns the ascent of the current font at the current size. - * This is a method, rather than a variable inside the PGraphics object - * because it requires calculation. - */ - public float textAscent() { - return g.textAscent(); - } - - - /** - * Returns the descent of the current font at the current size. - * This is a method, rather than a variable inside the PGraphics object - * because it requires calculation. - */ - public float textDescent() { - return g.textDescent(); - } - - - /** - * Sets the current font. The font's size will be the "natural" - * size of this font (the size that was set when using "Create Font"). - * The leading will also be reset. - */ - public void textFont(PFont which) { - if (recorder != null) recorder.textFont(which); - g.textFont(which); - } - - - /** - * Useful function to set the font and size at the same time. - */ - public void textFont(PFont which, float size) { - if (recorder != null) recorder.textFont(which, size); - g.textFont(which, size); - } - - - /** - * Set the text leading to a specific value. If using a custom - * value for the text leading, you'll have to call textLeading() - * again after any calls to textSize(). - */ - public void textLeading(float leading) { - if (recorder != null) recorder.textLeading(leading); - g.textLeading(leading); - } - - - /** - * Sets the text rendering/placement to be either SCREEN (direct - * to the screen, exact coordinates, only use the font's original size) - * or MODEL (the default, where text is manipulated by translate() and - * can have a textSize). The text size cannot be set when using - * textMode(SCREEN), because it uses the pixels directly from the font. - */ - public void textMode(int mode) { - if (recorder != null) recorder.textMode(mode); - g.textMode(mode); - } - - - /** - * Sets the text size, also resets the value for the leading. - */ - public void textSize(float size) { - if (recorder != null) recorder.textSize(size); - g.textSize(size); - } - - - public float textWidth(char c) { - return g.textWidth(c); - } - - - /** - * Return the width of a line of text. If the text has multiple - * lines, this returns the length of the longest line. - */ - public float textWidth(String str) { - return g.textWidth(str); - } - - - /** - * TODO not sure if this stays... - */ - public float textWidth(char[] chars, int start, int length) { - return g.textWidth(chars, start, length); - } - - - /** - * Write text where we just left off. - */ - public void text(char c) { - if (recorder != null) recorder.text(c); - g.text(c); - } - - - /** - * Draw a single character on screen. - * Extremely slow when used with textMode(SCREEN) and Java 2D, - * because loadPixels has to be called first and updatePixels last. - */ - public void text(char c, float x, float y) { - if (recorder != null) recorder.text(c, x, y); - g.text(c, x, y); - } - - - /** - * Draw a single character on screen (with a z coordinate) - */ - public void text(char c, float x, float y, float z) { - if (recorder != null) recorder.text(c, x, y, z); - g.text(c, x, y, z); - } - - - /** - * Write text where we just left off. - */ - public void text(String str) { - if (recorder != null) recorder.text(str); - g.text(str); - } - - - /** - * Draw a chunk of text. - * Newlines that are \n (Unix newline or linefeed char, ascii 10) - * are honored, but \r (carriage return, Windows and Mac OS) are - * ignored. - */ - public void text(String str, float x, float y) { - if (recorder != null) recorder.text(str, x, y); - g.text(str, x, y); - } - - - /** - * Method to draw text from an array of chars. This method will usually be - * more efficient than drawing from a String object, because the String will - * not be converted to a char array before drawing. - */ - public void text(char[] chars, int start, int stop, float x, float y) { - if (recorder != null) recorder.text(chars, start, stop, x, y); - g.text(chars, start, stop, x, y); - } - - - /** - * Same as above but with a z coordinate. - */ - public void text(String str, float x, float y, float z) { - if (recorder != null) recorder.text(str, x, y, z); - g.text(str, x, y, z); - } - - - public void text(char[] chars, int start, int stop, - float x, float y, float z) { - if (recorder != null) recorder.text(chars, start, stop, x, y, z); - g.text(chars, start, stop, x, y, z); - } - - - /** - * Draw text in a box that is constrained to a particular size. - * The current rectMode() determines what the coordinates mean - * (whether x1/y1/x2/y2 or x/y/w/h). - *

    - * Note that the x,y coords of the start of the box - * will align with the *ascent* of the text, not the baseline, - * as is the case for the other text() functions. - *

    - * Newlines that are \n (Unix newline or linefeed char, ascii 10) - * are honored, and \r (carriage return, Windows and Mac OS) are - * ignored. - */ - public void text(String str, float x1, float y1, float x2, float y2) { - if (recorder != null) recorder.text(str, x1, y1, x2, y2); - g.text(str, x1, y1, x2, y2); - } - - - public void text(String s, float x1, float y1, float x2, float y2, float z) { - if (recorder != null) recorder.text(s, x1, y1, x2, y2, z); - g.text(s, x1, y1, x2, y2, z); - } - - - public void text(int num, float x, float y) { - if (recorder != null) recorder.text(num, x, y); - g.text(num, x, y); - } - - - public void text(int num, float x, float y, float z) { - if (recorder != null) recorder.text(num, x, y, z); - g.text(num, x, y, z); - } - - - /** - * This does a basic number formatting, to avoid the - * generally ugly appearance of printing floats. - * Users who want more control should use their own nf() cmmand, - * or if they want the long, ugly version of float, - * use String.valueOf() to convert the float to a String first. - */ - public void text(float num, float x, float y) { - if (recorder != null) recorder.text(num, x, y); - g.text(num, x, y); - } - - - public void text(float num, float x, float y, float z) { - if (recorder != null) recorder.text(num, x, y, z); - g.text(num, x, y, z); - } - - - /** - * Push a copy of the current transformation matrix onto the stack. - */ - public void pushMatrix() { - if (recorder != null) recorder.pushMatrix(); - g.pushMatrix(); - } - - - /** - * Replace the current transformation matrix with the top of the stack. - */ - public void popMatrix() { - if (recorder != null) recorder.popMatrix(); - g.popMatrix(); - } - - - /** - * Translate in X and Y. - */ - public void translate(float tx, float ty) { - if (recorder != null) recorder.translate(tx, ty); - g.translate(tx, ty); - } - - - /** - * Translate in X, Y, and Z. - */ - public void translate(float tx, float ty, float tz) { - if (recorder != null) recorder.translate(tx, ty, tz); - g.translate(tx, ty, tz); - } - - - /** - * Two dimensional rotation. - * - * Same as rotateZ (this is identical to a 3D rotation along the z-axis) - * but included for clarity. It'd be weird for people drawing 2D graphics - * to be using rotateZ. And they might kick our a-- for the confusion. - * - * Additional background. - */ - public void rotate(float angle) { - if (recorder != null) recorder.rotate(angle); - g.rotate(angle); - } - - - /** - * Rotate around the X axis. - */ - public void rotateX(float angle) { - if (recorder != null) recorder.rotateX(angle); - g.rotateX(angle); - } - - - /** - * Rotate around the Y axis. - */ - public void rotateY(float angle) { - if (recorder != null) recorder.rotateY(angle); - g.rotateY(angle); - } - - - /** - * Rotate around the Z axis. - * - * The functions rotate() and rotateZ() are identical, it's just that it make - * sense to have rotate() and then rotateX() and rotateY() when using 3D; - * nor does it make sense to use a function called rotateZ() if you're only - * doing things in 2D. so we just decided to have them both be the same. - */ - public void rotateZ(float angle) { - if (recorder != null) recorder.rotateZ(angle); - g.rotateZ(angle); - } - - - /** - * Rotate about a vector in space. Same as the glRotatef() function. - */ - public void rotate(float angle, float vx, float vy, float vz) { - if (recorder != null) recorder.rotate(angle, vx, vy, vz); - g.rotate(angle, vx, vy, vz); - } - - - /** - * Scale in all dimensions. - */ - public void scale(float s) { - if (recorder != null) recorder.scale(s); - g.scale(s); - } - - - /** - * Scale in X and Y. Equivalent to scale(sx, sy, 1). - * - * Not recommended for use in 3D, because the z-dimension is just - * scaled by 1, since there's no way to know what else to scale it by. - */ - public void scale(float sx, float sy) { - if (recorder != null) recorder.scale(sx, sy); - g.scale(sx, sy); - } - - - /** - * Scale in X, Y, and Z. - */ - public void scale(float x, float y, float z) { - if (recorder != null) recorder.scale(x, y, z); - g.scale(x, y, z); - } - - - /** - * Set the current transformation matrix to identity. - */ - public void resetMatrix() { - if (recorder != null) recorder.resetMatrix(); - g.resetMatrix(); - } - - - public void applyMatrix(PMatrix source) { - if (recorder != null) recorder.applyMatrix(source); - g.applyMatrix(source); - } - - - public void applyMatrix(PMatrix2D source) { - if (recorder != null) recorder.applyMatrix(source); - g.applyMatrix(source); - } - - - /** - * Apply a 3x2 affine transformation matrix. - */ - public void applyMatrix(float n00, float n01, float n02, - float n10, float n11, float n12) { - if (recorder != null) recorder.applyMatrix(n00, n01, n02, n10, n11, n12); - g.applyMatrix(n00, n01, n02, n10, n11, n12); - } - - - public void applyMatrix(PMatrix3D source) { - if (recorder != null) recorder.applyMatrix(source); - g.applyMatrix(source); - } - - - /** - * Apply a 4x4 transformation matrix. - */ - public void applyMatrix(float n00, float n01, float n02, float n03, - float n10, float n11, float n12, float n13, - float n20, float n21, float n22, float n23, - float n30, float n31, float n32, float n33) { - if (recorder != null) recorder.applyMatrix(n00, n01, n02, n03, n10, n11, n12, n13, n20, n21, n22, n23, n30, n31, n32, n33); - g.applyMatrix(n00, n01, n02, n03, n10, n11, n12, n13, n20, n21, n22, n23, n30, n31, n32, n33); - } - - - public PMatrix getMatrix() { - return g.getMatrix(); - } - - - /** - * Copy the current transformation matrix into the specified target. - * Pass in null to create a new matrix. - */ - public PMatrix2D getMatrix(PMatrix2D target) { - return g.getMatrix(target); - } - - - /** - * Copy the current transformation matrix into the specified target. - * Pass in null to create a new matrix. - */ - public PMatrix3D getMatrix(PMatrix3D target) { - return g.getMatrix(target); - } - - - /** - * Set the current transformation matrix to the contents of another. - */ - public void setMatrix(PMatrix source) { - if (recorder != null) recorder.setMatrix(source); - g.setMatrix(source); - } - - - /** - * Set the current transformation to the contents of the specified source. - */ - public void setMatrix(PMatrix2D source) { - if (recorder != null) recorder.setMatrix(source); - g.setMatrix(source); - } - - - /** - * Set the current transformation to the contents of the specified source. - */ - public void setMatrix(PMatrix3D source) { - if (recorder != null) recorder.setMatrix(source); - g.setMatrix(source); - } - - - /** - * Print the current model (or "transformation") matrix. - */ - public void printMatrix() { - if (recorder != null) recorder.printMatrix(); - g.printMatrix(); - } - - - public void beginCamera() { - if (recorder != null) recorder.beginCamera(); - g.beginCamera(); - } - - - public void endCamera() { - if (recorder != null) recorder.endCamera(); - g.endCamera(); - } - - - public void camera() { - if (recorder != null) recorder.camera(); - g.camera(); - } - - - public void camera(float eyeX, float eyeY, float eyeZ, - float centerX, float centerY, float centerZ, - float upX, float upY, float upZ) { - if (recorder != null) recorder.camera(eyeX, eyeY, eyeZ, centerX, centerY, centerZ, upX, upY, upZ); - g.camera(eyeX, eyeY, eyeZ, centerX, centerY, centerZ, upX, upY, upZ); - } - - - public void printCamera() { - if (recorder != null) recorder.printCamera(); - g.printCamera(); - } - - - public void ortho() { - if (recorder != null) recorder.ortho(); - g.ortho(); - } - - - public void ortho(float left, float right, - float bottom, float top, - float near, float far) { - if (recorder != null) recorder.ortho(left, right, bottom, top, near, far); - g.ortho(left, right, bottom, top, near, far); - } - - - public void perspective() { - if (recorder != null) recorder.perspective(); - g.perspective(); - } - - - public void perspective(float fovy, float aspect, float zNear, float zFar) { - if (recorder != null) recorder.perspective(fovy, aspect, zNear, zFar); - g.perspective(fovy, aspect, zNear, zFar); - } - - - public void frustum(float left, float right, - float bottom, float top, - float near, float far) { - if (recorder != null) recorder.frustum(left, right, bottom, top, near, far); - g.frustum(left, right, bottom, top, near, far); - } - - - public void printProjection() { - if (recorder != null) recorder.printProjection(); - g.printProjection(); - } - - - /** - * Given an x and y coordinate, returns the x position of where - * that point would be placed on screen, once affected by translate(), - * scale(), or any other transformations. - */ - public float screenX(float x, float y) { - return g.screenX(x, y); - } - - - /** - * Given an x and y coordinate, returns the y position of where - * that point would be placed on screen, once affected by translate(), - * scale(), or any other transformations. - */ - public float screenY(float x, float y) { - return g.screenY(x, y); - } - - - /** - * Maps a three dimensional point to its placement on-screen. - *

    - * Given an (x, y, z) coordinate, returns the x position of where - * that point would be placed on screen, once affected by translate(), - * scale(), or any other transformations. - */ - public float screenX(float x, float y, float z) { - return g.screenX(x, y, z); - } - - - /** - * Maps a three dimensional point to its placement on-screen. - *

    - * Given an (x, y, z) coordinate, returns the y position of where - * that point would be placed on screen, once affected by translate(), - * scale(), or any other transformations. - */ - public float screenY(float x, float y, float z) { - return g.screenY(x, y, z); - } - - - /** - * Maps a three dimensional point to its placement on-screen. - *

    - * Given an (x, y, z) coordinate, returns its z value. - * This value can be used to determine if an (x, y, z) coordinate - * is in front or in back of another (x, y, z) coordinate. - * The units are based on how the zbuffer is set up, and don't - * relate to anything "real". They're only useful for in - * comparison to another value obtained from screenZ(), - * or directly out of the zbuffer[]. - */ - public float screenZ(float x, float y, float z) { - return g.screenZ(x, y, z); - } - - - /** - * Returns the model space x value for an x, y, z coordinate. - *

    - * This will give you a coordinate after it has been transformed - * by translate(), rotate(), and camera(), but not yet transformed - * by the projection matrix. For instance, his can be useful for - * figuring out how points in 3D space relate to the edge - * coordinates of a shape. - */ - public float modelX(float x, float y, float z) { - return g.modelX(x, y, z); - } - - - /** - * Returns the model space y value for an x, y, z coordinate. - */ - public float modelY(float x, float y, float z) { - return g.modelY(x, y, z); - } - - - /** - * Returns the model space z value for an x, y, z coordinate. - */ - public float modelZ(float x, float y, float z) { - return g.modelZ(x, y, z); - } - - - public void pushStyle() { - if (recorder != null) recorder.pushStyle(); - g.pushStyle(); - } - - - public void popStyle() { - if (recorder != null) recorder.popStyle(); - g.popStyle(); - } - - - public void style(PStyle s) { - if (recorder != null) recorder.style(s); - g.style(s); - } - - - public void strokeWeight(float weight) { - if (recorder != null) recorder.strokeWeight(weight); - g.strokeWeight(weight); - } - - - public void strokeJoin(int join) { - if (recorder != null) recorder.strokeJoin(join); - g.strokeJoin(join); - } - - - public void strokeCap(int cap) { - if (recorder != null) recorder.strokeCap(cap); - g.strokeCap(cap); - } - - - /** - * Disables drawing the stroke (outline). If both noStroke() and - * noFill() are called, no shapes will be drawn to the screen. - * - * @webref color:setting - * - * @see PGraphics#stroke(float, float, float, float) - */ - public void noStroke() { - if (recorder != null) recorder.noStroke(); - g.noStroke(); - } - - - /** - * Set the tint to either a grayscale or ARGB value. - * See notes attached to the fill() function. - * @param rgb color value in hexadecimal notation - * (i.e. #FFCC00 or 0xFFFFCC00) or any value of the color datatype - */ - public void stroke(int rgb) { - if (recorder != null) recorder.stroke(rgb); - g.stroke(rgb); - } - - - public void stroke(int rgb, float alpha) { - if (recorder != null) recorder.stroke(rgb, alpha); - g.stroke(rgb, alpha); - } - - - /** - * - * @param gray specifies a value between white and black - */ - public void stroke(float gray) { - if (recorder != null) recorder.stroke(gray); - g.stroke(gray); - } - - - public void stroke(float gray, float alpha) { - if (recorder != null) recorder.stroke(gray, alpha); - g.stroke(gray, alpha); - } - - - public void stroke(float x, float y, float z) { - if (recorder != null) recorder.stroke(x, y, z); - g.stroke(x, y, z); - } - - - /** - * Sets the color used to draw lines and borders around shapes. This color - * is either specified in terms of the RGB or HSB color depending on the - * current colorMode() (the default color space is RGB, with each - * value in the range from 0 to 255). - *

    When using hexadecimal notation to specify a color, use "#" or - * "0x" before the values (e.g. #CCFFAA, 0xFFCCFFAA). The # syntax uses six - * digits to specify a color (the way colors are specified in HTML and CSS). - * When using the hexadecimal notation starting with "0x", the hexadecimal - * value must be specified with eight characters; the first two characters - * define the alpha component and the remainder the red, green, and blue - * components. - *

    The value for the parameter "gray" must be less than or equal - * to the current maximum value as specified by colorMode(). - * The default maximum value is 255. - * - * @webref color:setting - * @param alpha opacity of the stroke - * @param x red or hue value (depending on the current color mode) - * @param y green or saturation value (depending on the current color mode) - * @param z blue or brightness value (depending on the current color mode) - */ - public void stroke(float x, float y, float z, float a) { - if (recorder != null) recorder.stroke(x, y, z, a); - g.stroke(x, y, z, a); - } - - - /** - * Removes the current fill value for displaying images and reverts to displaying images with their original hues. - * - * @webref image:loading_displaying - * @see processing.core.PGraphics#tint(float, float, float, float) - * @see processing.core.PGraphics#image(PImage, float, float, float, float) - */ - public void noTint() { - if (recorder != null) recorder.noTint(); - g.noTint(); - } - - - /** - * Set the tint to either a grayscale or ARGB value. - */ - public void tint(int rgb) { - if (recorder != null) recorder.tint(rgb); - g.tint(rgb); - } - - - /** - * @param rgb color value in hexadecimal notation - * (i.e. #FFCC00 or 0xFFFFCC00) or any value of the color datatype - * @param alpha opacity of the image - */ - public void tint(int rgb, float alpha) { - if (recorder != null) recorder.tint(rgb, alpha); - g.tint(rgb, alpha); - } - - - /** - * @param gray any valid number - */ - public void tint(float gray) { - if (recorder != null) recorder.tint(gray); - g.tint(gray); - } - - - public void tint(float gray, float alpha) { - if (recorder != null) recorder.tint(gray, alpha); - g.tint(gray, alpha); - } - - - public void tint(float x, float y, float z) { - if (recorder != null) recorder.tint(x, y, z); - g.tint(x, y, z); - } - - - /** - * Sets the fill value for displaying images. Images can be tinted to - * specified colors or made transparent by setting the alpha. - *

    To make an image transparent, but not change it's color, - * use white as the tint color and specify an alpha value. For instance, - * tint(255, 128) will make an image 50% transparent (unless - * colorMode() has been used). - * - *

    When using hexadecimal notation to specify a color, use "#" or - * "0x" before the values (e.g. #CCFFAA, 0xFFCCFFAA). The # syntax uses six - * digits to specify a color (the way colors are specified in HTML and CSS). - * When using the hexadecimal notation starting with "0x", the hexadecimal - * value must be specified with eight characters; the first two characters - * define the alpha component and the remainder the red, green, and blue - * components. - *

    The value for the parameter "gray" must be less than or equal - * to the current maximum value as specified by colorMode(). - * The default maximum value is 255. - *

    The tint() method is also used to control the coloring of - * textures in 3D. - * - * @webref image:loading_displaying - * @param x red or hue value - * @param y green or saturation value - * @param z blue or brightness value - * - * @see processing.core.PGraphics#noTint() - * @see processing.core.PGraphics#image(PImage, float, float, float, float) - */ - public void tint(float x, float y, float z, float a) { - if (recorder != null) recorder.tint(x, y, z, a); - g.tint(x, y, z, a); - } - - - /** - * Disables filling geometry. If both noStroke() and noFill() - * are called, no shapes will be drawn to the screen. - * - * @webref color:setting - * - * @see PGraphics#fill(float, float, float, float) - * - */ - public void noFill() { - if (recorder != null) recorder.noFill(); - g.noFill(); - } - - - /** - * Set the fill to either a grayscale value or an ARGB int. - * @param rgb color value in hexadecimal notation (i.e. #FFCC00 or 0xFFFFCC00) or any value of the color datatype - */ - public void fill(int rgb) { - if (recorder != null) recorder.fill(rgb); - g.fill(rgb); - } - - - public void fill(int rgb, float alpha) { - if (recorder != null) recorder.fill(rgb, alpha); - g.fill(rgb, alpha); - } - - - /** - * @param gray number specifying value between white and black - */ - public void fill(float gray) { - if (recorder != null) recorder.fill(gray); - g.fill(gray); - } - - - public void fill(float gray, float alpha) { - if (recorder != null) recorder.fill(gray, alpha); - g.fill(gray, alpha); - } - - - public void fill(float x, float y, float z) { - if (recorder != null) recorder.fill(x, y, z); - g.fill(x, y, z); - } - - - /** - * Sets the color used to fill shapes. For example, if you run fill(204, 102, 0), all subsequent shapes will be filled with orange. This color is either specified in terms of the RGB or HSB color depending on the current colorMode() (the default color space is RGB, with each value in the range from 0 to 255). - *

    When using hexadecimal notation to specify a color, use "#" or "0x" before the values (e.g. #CCFFAA, 0xFFCCFFAA). The # syntax uses six digits to specify a color (the way colors are specified in HTML and CSS). When using the hexadecimal notation starting with "0x", the hexadecimal value must be specified with eight characters; the first two characters define the alpha component and the remainder the red, green, and blue components. - *

    The value for the parameter "gray" must be less than or equal to the current maximum value as specified by colorMode(). The default maximum value is 255. - *

    To change the color of an image (or a texture), use tint(). - * - * @webref color:setting - * @param x red or hue value - * @param y green or saturation value - * @param z blue or brightness value - * @param alpha opacity of the fill - * - * @see PGraphics#noFill() - * @see PGraphics#stroke(float) - * @see PGraphics#tint(float) - * @see PGraphics#background(float, float, float, float) - * @see PGraphics#colorMode(int, float, float, float, float) - */ - public void fill(float x, float y, float z, float a) { - if (recorder != null) recorder.fill(x, y, z, a); - g.fill(x, y, z, a); - } - - - public void ambient(int rgb) { - if (recorder != null) recorder.ambient(rgb); - g.ambient(rgb); - } - - - public void ambient(float gray) { - if (recorder != null) recorder.ambient(gray); - g.ambient(gray); - } - - - public void ambient(float x, float y, float z) { - if (recorder != null) recorder.ambient(x, y, z); - g.ambient(x, y, z); - } - - - public void specular(int rgb) { - if (recorder != null) recorder.specular(rgb); - g.specular(rgb); - } - - - public void specular(float gray) { - if (recorder != null) recorder.specular(gray); - g.specular(gray); - } - - - public void specular(float x, float y, float z) { - if (recorder != null) recorder.specular(x, y, z); - g.specular(x, y, z); - } - - - public void shininess(float shine) { - if (recorder != null) recorder.shininess(shine); - g.shininess(shine); - } - - - public void emissive(int rgb) { - if (recorder != null) recorder.emissive(rgb); - g.emissive(rgb); - } - - - public void emissive(float gray) { - if (recorder != null) recorder.emissive(gray); - g.emissive(gray); - } - - - public void emissive(float x, float y, float z) { - if (recorder != null) recorder.emissive(x, y, z); - g.emissive(x, y, z); - } - - - public void lights() { - if (recorder != null) recorder.lights(); - g.lights(); - } - - - public void noLights() { - if (recorder != null) recorder.noLights(); - g.noLights(); - } - - - public void ambientLight(float red, float green, float blue) { - if (recorder != null) recorder.ambientLight(red, green, blue); - g.ambientLight(red, green, blue); - } - - - public void ambientLight(float red, float green, float blue, - float x, float y, float z) { - if (recorder != null) recorder.ambientLight(red, green, blue, x, y, z); - g.ambientLight(red, green, blue, x, y, z); - } - - - public void directionalLight(float red, float green, float blue, - float nx, float ny, float nz) { - if (recorder != null) recorder.directionalLight(red, green, blue, nx, ny, nz); - g.directionalLight(red, green, blue, nx, ny, nz); - } - - - public void pointLight(float red, float green, float blue, - float x, float y, float z) { - if (recorder != null) recorder.pointLight(red, green, blue, x, y, z); - g.pointLight(red, green, blue, x, y, z); - } - - - public void spotLight(float red, float green, float blue, - float x, float y, float z, - float nx, float ny, float nz, - float angle, float concentration) { - if (recorder != null) recorder.spotLight(red, green, blue, x, y, z, nx, ny, nz, angle, concentration); - g.spotLight(red, green, blue, x, y, z, nx, ny, nz, angle, concentration); - } - - - public void lightFalloff(float constant, float linear, float quadratic) { - if (recorder != null) recorder.lightFalloff(constant, linear, quadratic); - g.lightFalloff(constant, linear, quadratic); - } - - - public void lightSpecular(float x, float y, float z) { - if (recorder != null) recorder.lightSpecular(x, y, z); - g.lightSpecular(x, y, z); - } - - - /** - * Set the background to a gray or ARGB color. - *

    - * For the main drawing surface, the alpha value will be ignored. However, - * alpha can be used on PGraphics objects from createGraphics(). This is - * the only way to set all the pixels partially transparent, for instance. - *

    - * Note that background() should be called before any transformations occur, - * because some implementations may require the current transformation matrix - * to be identity before drawing. - * - * @param rgb color value in hexadecimal notation (i.e. #FFCC00 or 0xFFFFCC00)
    or any value of the color datatype - */ - public void background(int rgb) { - if (recorder != null) recorder.background(rgb); - g.background(rgb); - } - - - /** - * See notes about alpha in background(x, y, z, a). - */ - public void background(int rgb, float alpha) { - if (recorder != null) recorder.background(rgb, alpha); - g.background(rgb, alpha); - } - - - /** - * Set the background to a grayscale value, based on the - * current colorMode. - */ - public void background(float gray) { - if (recorder != null) recorder.background(gray); - g.background(gray); - } - - - /** - * See notes about alpha in background(x, y, z, a). - * @param gray specifies a value between white and black - * @param alpha opacity of the background - */ - public void background(float gray, float alpha) { - if (recorder != null) recorder.background(gray, alpha); - g.background(gray, alpha); - } - - - /** - * Set the background to an r, g, b or h, s, b value, - * based on the current colorMode. - */ - public void background(float x, float y, float z) { - if (recorder != null) recorder.background(x, y, z); - g.background(x, y, z); - } - - - /** - * The background() function sets the color used for the background of the Processing window. The default background is light gray. In the draw() function, the background color is used to clear the display window at the beginning of each frame. - *

    An image can also be used as the background for a sketch, however its width and height must be the same size as the sketch window. To resize an image 'b' to the size of the sketch window, use b.resize(width, height). - *

    Images used as background will ignore the current tint() setting. - *

    It is not possible to use transparency (alpha) in background colors with the main drawing surface, however they will work properly with createGraphics. - * - * =advanced - *

    Clear the background with a color that includes an alpha value. This can - * only be used with objects created by createGraphics(), because the main - * drawing surface cannot be set transparent.

    - *

    It might be tempting to use this function to partially clear the screen - * on each frame, however that's not how this function works. When calling - * background(), the pixels will be replaced with pixels that have that level - * of transparency. To do a semi-transparent overlay, use fill() with alpha - * and draw a rectangle.

    - * - * @webref color:setting - * @param x red or hue value (depending on the current color mode) - * @param y green or saturation value (depending on the current color mode) - * @param z blue or brightness value (depending on the current color mode) - * - * @see PGraphics#stroke(float) - * @see PGraphics#fill(float) - * @see PGraphics#tint(float) - * @see PGraphics#colorMode(int) - */ - public void background(float x, float y, float z, float a) { - if (recorder != null) recorder.background(x, y, z, a); - g.background(x, y, z, a); - } - - - /** - * Takes an RGB or ARGB image and sets it as the background. - * The width and height of the image must be the same size as the sketch. - * Use image.resize(width, height) to make short work of such a task. - *

    - * Note that even if the image is set as RGB, the high 8 bits of each pixel - * should be set opaque (0xFF000000), because the image data will be copied - * directly to the screen, and non-opaque background images may have strange - * behavior. Using image.filter(OPAQUE) will handle this easily. - *

    - * When using 3D, this will also clear the zbuffer (if it exists). - */ - public void background(PImage image) { - if (recorder != null) recorder.background(image); - g.background(image); - } - - - /** - * @param mode Either RGB or HSB, corresponding to Red/Green/Blue and Hue/Saturation/Brightness - * @param max range for all color elements - */ - public void colorMode(int mode) { - if (recorder != null) recorder.colorMode(mode); - g.colorMode(mode); - } - - - public void colorMode(int mode, float max) { - if (recorder != null) recorder.colorMode(mode, max); - g.colorMode(mode, max); - } - - - /** - * Set the colorMode and the maximum values for (r, g, b) - * or (h, s, b). - *

    - * Note that this doesn't set the maximum for the alpha value, - * which might be confusing if for instance you switched to - *

    colorMode(HSB, 360, 100, 100);
    - * because the alpha values were still between 0 and 255. - */ - public void colorMode(int mode, float maxX, float maxY, float maxZ) { - if (recorder != null) recorder.colorMode(mode, maxX, maxY, maxZ); - g.colorMode(mode, maxX, maxY, maxZ); - } - - - /** - * Changes the way Processing interprets color data. By default, the parameters for fill(), stroke(), background(), and color() are defined by values between 0 and 255 using the RGB color model. The colorMode() function is used to change the numerical range used for specifying colors and to switch color systems. For example, calling colorMode(RGB, 1.0) will specify that values are specified between 0 and 1. The limits for defining colors are altered by setting the parameters range1, range2, range3, and range 4. - * - * @webref color:setting - * @param maxX range for the red or hue depending on the current color mode - * @param maxY range for the green or saturation depending on the current color mode - * @param maxZ range for the blue or brightness depending on the current color mode - * @param maxA range for the alpha - * - * @see PGraphics#background(float) - * @see PGraphics#fill(float) - * @see PGraphics#stroke(float) - */ - public void colorMode(int mode, - float maxX, float maxY, float maxZ, float maxA) { - if (recorder != null) recorder.colorMode(mode, maxX, maxY, maxZ, maxA); - g.colorMode(mode, maxX, maxY, maxZ, maxA); - } - - - /** - * Extracts the alpha value from a color. - * - * @webref color:creating_reading - * @param what any value of the color datatype - */ - public final float alpha(int what) { - return g.alpha(what); - } - - - /** - * Extracts the red value from a color, scaled to match current colorMode(). This value is always returned as a float so be careful not to assign it to an int value.

    The red() function is easy to use and undestand, but is slower than another technique. To achieve the same results when working in colorMode(RGB, 255), but with greater speed, use the >> (right shift) operator with a bit mask. For example, the following two lines of code are equivalent:
    float r1 = red(myColor);
    float r2 = myColor >> 16 & 0xFF;
    - * - * @webref color:creating_reading - * @param what any value of the color datatype - * - * @see PGraphics#green(int) - * @see PGraphics#blue(int) - * @see PGraphics#hue(int) - * @see PGraphics#saturation(int) - * @see PGraphics#brightness(int) - * @ref rightshift - */ - public final float red(int what) { - return g.red(what); - } - - - /** - * Extracts the green value from a color, scaled to match current colorMode(). This value is always returned as a float so be careful not to assign it to an int value.

    The green() function is easy to use and undestand, but is slower than another technique. To achieve the same results when working in colorMode(RGB, 255), but with greater speed, use the >> (right shift) operator with a bit mask. For example, the following two lines of code are equivalent:
    float r1 = green(myColor);
    float r2 = myColor >> 8 & 0xFF;
    - * - * @webref color:creating_reading - * @param what any value of the color datatype - * - * @see PGraphics#red(int) - * @see PGraphics#blue(int) - * @see PGraphics#hue(int) - * @see PGraphics#saturation(int) - * @see PGraphics#brightness(int) - * @ref rightshift - */ - public final float green(int what) { - return g.green(what); - } - - - /** - * Extracts the blue value from a color, scaled to match current colorMode(). This value is always returned as a float so be careful not to assign it to an int value.

    The blue() function is easy to use and undestand, but is slower than another technique. To achieve the same results when working in colorMode(RGB, 255), but with greater speed, use a bit mask to remove the other color components. For example, the following two lines of code are equivalent:
    float r1 = blue(myColor);
    float r2 = myColor & 0xFF;
    - * - * @webref color:creating_reading - * @param what any value of the color datatype - * - * @see PGraphics#red(int) - * @see PGraphics#green(int) - * @see PGraphics#hue(int) - * @see PGraphics#saturation(int) - * @see PGraphics#brightness(int) - */ - public final float blue(int what) { - return g.blue(what); - } - - - /** - * Extracts the hue value from a color. - * - * @webref color:creating_reading - * @param what any value of the color datatype - * - * @see PGraphics#red(int) - * @see PGraphics#green(int) - * @see PGraphics#blue(int) - * @see PGraphics#saturation(int) - * @see PGraphics#brightness(int) - */ - public final float hue(int what) { - return g.hue(what); - } - - - /** - * Extracts the saturation value from a color. - * - * @webref color:creating_reading - * @param what any value of the color datatype - * - * @see PGraphics#red(int) - * @see PGraphics#green(int) - * @see PGraphics#blue(int) - * @see PGraphics#hue(int) - * @see PGraphics#brightness(int) - */ - public final float saturation(int what) { - return g.saturation(what); - } - - - /** - * Extracts the brightness value from a color. - * - * - * @webref color:creating_reading - * @param what any value of the color datatype - * - * @see PGraphics#red(int) - * @see PGraphics#green(int) - * @see PGraphics#blue(int) - * @see PGraphics#hue(int) - * @see PGraphics#saturation(int) - */ - public final float brightness(int what) { - return g.brightness(what); - } - - - /** - * Calculates a color or colors between two color at a specific increment. The amt parameter is the amount to interpolate between the two values where 0.0 equal to the first point, 0.1 is very near the first point, 0.5 is half-way in between, etc. - * - * @webref color:creating_reading - * @param c1 interpolate from this color - * @param c2 interpolate to this color - * @param amt between 0.0 and 1.0 - * - * @see PGraphics#blendColor(int, int, int) - * @see PGraphics#color(float, float, float, float) - */ - public int lerpColor(int c1, int c2, float amt) { - return g.lerpColor(c1, c2, amt); - } - - - /** - * Interpolate between two colors. Like lerp(), but for the - * individual color components of a color supplied as an int value. - */ - static public int lerpColor(int c1, int c2, float amt, int mode) { - return PGraphics.lerpColor(c1, c2, amt, mode); - } - - - /** - * Return true if this renderer should be drawn to the screen. Defaults to - * returning true, since nearly all renderers are on-screen beasts. But can - * be overridden for subclasses like PDF so that a window doesn't open up. - *

    - * A better name? showFrame, displayable, isVisible, visible, shouldDisplay, - * what to call this? - */ - public boolean displayable() { - return g.displayable(); - } - - - /** - * Store data of some kind for a renderer that requires extra metadata of - * some kind. Usually this is a renderer-specific representation of the - * image data, for instance a BufferedImage with tint() settings applied for - * PGraphicsJava2D, or resized image data and OpenGL texture indices for - * PGraphicsOpenGL. - */ - public void setCache(Object parent, Object storage) { - if (recorder != null) recorder.setCache(parent, storage); - g.setCache(parent, storage); - } - - - /** - * Get cache storage data for the specified renderer. Because each renderer - * will cache data in different formats, it's necessary to store cache data - * keyed by the renderer object. Otherwise, attempting to draw the same - * image to both a PGraphicsJava2D and a PGraphicsOpenGL will cause errors. - * @param parent The PGraphics object (or any object, really) associated - * @return data stored for the specified parent - */ - public Object getCache(Object parent) { - return g.getCache(parent); - } - - - /** - * Remove information associated with this renderer from the cache, if any. - * @param parent The PGraphics object whose cache data should be removed - */ - public void removeCache(Object parent) { - if (recorder != null) recorder.removeCache(parent); - g.removeCache(parent); - } - - - /** - * Returns an ARGB "color" type (a packed 32 bit int with the color. - * If the coordinate is outside the image, zero is returned - * (black, but completely transparent). - *

    - * If the image is in RGB format (i.e. on a PVideo object), - * the value will get its high bits set, just to avoid cases where - * they haven't been set already. - *

    - * If the image is in ALPHA format, this returns a white with its - * alpha value set. - *

    - * This function is included primarily for beginners. It is quite - * slow because it has to check to see if the x, y that was provided - * is inside the bounds, and then has to check to see what image - * type it is. If you want things to be more efficient, access the - * pixels[] array directly. - */ - public int get(int x, int y) { - return g.get(x, y); - } - - - /** - * Reads the color of any pixel or grabs a group of pixels. If no parameters are specified, the entire image is returned. Get the value of one pixel by specifying an x,y coordinate. Get a section of the display window by specifing an additional width and height parameter. If the pixel requested is outside of the image window, black is returned. The numbers returned are scaled according to the current color ranges, but only RGB values are returned by this function. Even though you may have drawn a shape with colorMode(HSB), the numbers returned will be in RGB. - *

    Getting the color of a single pixel with get(x, y) is easy, but not as fast as grabbing the data directly from pixels[]. The equivalent statement to "get(x, y)" using pixels[] is "pixels[y*width+x]". Processing requires calling loadPixels() to load the display window data into the pixels[] array before getting the values. - *

    As of release 0149, this function ignores imageMode(). - * - * @webref - * @brief Reads the color of any pixel or grabs a rectangle of pixels - * @param x x-coordinate of the pixel - * @param y y-coordinate of the pixel - * @param w width of pixel rectangle to get - * @param h height of pixel rectangle to get - * - * @see processing.core.PImage#set(int, int, int) - * @see processing.core.PImage#pixels - * @see processing.core.PImage#copy(PImage, int, int, int, int, int, int, int, int) - */ - public PImage get(int x, int y, int w, int h) { - return g.get(x, y, w, h); - } - - - /** - * Returns a copy of this PImage. Equivalent to get(0, 0, width, height). - */ - public PImage get() { - return g.get(); - } - - - /** - * Changes the color of any pixel or writes an image directly into the display window. The x and y parameters specify the pixel to change and the color parameter specifies the color value. The color parameter is affected by the current color mode (the default is RGB values from 0 to 255). When setting an image, the x and y parameters define the coordinates for the upper-left corner of the image. - *

    Setting the color of a single pixel with set(x, y) is easy, but not as fast as putting the data directly into pixels[]. The equivalent statement to "set(x, y, #000000)" using pixels[] is "pixels[y*width+x] = #000000". You must call loadPixels() to load the display window data into the pixels[] array before setting the values and calling updatePixels() to update the window with any changes. - *

    As of release 1.0, this function ignores imageMode(). - *

    Due to what appears to be a bug in Apple's Java implementation, the point() and set() methods are extremely slow in some circumstances when used with the default renderer. Using P2D or P3D will fix the problem. Grouping many calls to point() or set() together can also help. (Bug 1094) - * =advanced - *

    As of release 0149, this function ignores imageMode(). - * - * @webref image:pixels - * @param x x-coordinate of the pixel - * @param y y-coordinate of the pixel - * @param c any value of the color datatype - */ - public void set(int x, int y, int c) { - if (recorder != null) recorder.set(x, y, c); - g.set(x, y, c); - } - - - /** - * Efficient method of drawing an image's pixels directly to this surface. - * No variations are employed, meaning that any scale, tint, or imageMode - * settings will be ignored. - */ - public void set(int x, int y, PImage src) { - if (recorder != null) recorder.set(x, y, src); - g.set(x, y, src); - } - - - /** - * Set alpha channel for an image. Black colors in the source - * image will make the destination image completely transparent, - * and white will make things fully opaque. Gray values will - * be in-between steps. - *

    - * Strictly speaking the "blue" value from the source image is - * used as the alpha color. For a fully grayscale image, this - * is correct, but for a color image it's not 100% accurate. - * For a more accurate conversion, first use filter(GRAY) - * which will make the image into a "correct" grayscale by - * performing a proper luminance-based conversion. - * - * @param maskArray any array of Integer numbers used as the alpha channel, needs to be same length as the image's pixel array - */ - public void mask(int maskArray[]) { - if (recorder != null) recorder.mask(maskArray); - g.mask(maskArray); - } - - - /** - * Masks part of an image from displaying by loading another image and using it as an alpha channel. - * This mask image should only contain grayscale data, but only the blue color channel is used. - * The mask image needs to be the same size as the image to which it is applied. - * In addition to using a mask image, an integer array containing the alpha channel data can be specified directly. - * This method is useful for creating dynamically generated alpha masks. - * This array must be of the same length as the target image's pixels array and should contain only grayscale data of values between 0-255. - * @webref - * @brief Masks part of the image from displaying - * @param maskImg any PImage object used as the alpha channel for "img", needs to be same size as "img" - */ - public void mask(PImage maskImg) { - if (recorder != null) recorder.mask(maskImg); - g.mask(maskImg); - } - - - public void filter(int kind) { - if (recorder != null) recorder.filter(kind); - g.filter(kind); - } - - - /** - * Filters an image as defined by one of the following modes:

    THRESHOLD - converts the image to black and white pixels depending if they are above or below the threshold defined by the level parameter. The level must be between 0.0 (black) and 1.0(white). If no level is specified, 0.5 is used.

    GRAY - converts any colors in the image to grayscale equivalents

    INVERT - sets each pixel to its inverse value

    POSTERIZE - limits each channel of the image to the number of colors specified as the level parameter

    BLUR - executes a Guassian blur with the level parameter specifying the extent of the blurring. If no level parameter is used, the blur is equivalent to Guassian blur of radius 1.

    OPAQUE - sets the alpha channel to entirely opaque.

    ERODE - reduces the light areas with the amount defined by the level parameter.

    DILATE - increases the light areas with the amount defined by the level parameter - * =advanced - * Method to apply a variety of basic filters to this image. - *

    - *

      - *
    • filter(BLUR) provides a basic blur. - *
    • filter(GRAY) converts the image to grayscale based on luminance. - *
    • filter(INVERT) will invert the color components in the image. - *
    • filter(OPAQUE) set all the high bits in the image to opaque - *
    • filter(THRESHOLD) converts the image to black and white. - *
    • filter(DILATE) grow white/light areas - *
    • filter(ERODE) shrink white/light areas - *
    - * Luminance conversion code contributed by - * toxi - *

    - * Gaussian blur code contributed by - * Mario Klingemann - * - * @webref - * @brief Converts the image to grayscale or black and white - * @param kind Either THRESHOLD, GRAY, INVERT, POSTERIZE, BLUR, OPAQUE, ERODE, or DILATE - * @param param in the range from 0 to 1 - */ - public void filter(int kind, float param) { - if (recorder != null) recorder.filter(kind, param); - g.filter(kind, param); - } - - - /** - * Copy things from one area of this image - * to another area in the same image. - */ - public void copy(int sx, int sy, int sw, int sh, - int dx, int dy, int dw, int dh) { - if (recorder != null) recorder.copy(sx, sy, sw, sh, dx, dy, dw, dh); - g.copy(sx, sy, sw, sh, dx, dy, dw, dh); - } - - - /** - * Copies a region of pixels from one image into another. If the source and destination regions aren't the same size, it will automatically resize source pixels to fit the specified target region. No alpha information is used in the process, however if the source image has an alpha channel set, it will be copied as well. - *

    As of release 0149, this function ignores imageMode(). - * - * @webref - * @brief Copies the entire image - * @param sx X coordinate of the source's upper left corner - * @param sy Y coordinate of the source's upper left corner - * @param sw source image width - * @param sh source image height - * @param dx X coordinate of the destination's upper left corner - * @param dy Y coordinate of the destination's upper left corner - * @param dw destination image width - * @param dh destination image height - * @param src an image variable referring to the source image. - * - * @see processing.core.PGraphics#alpha(int) - * @see processing.core.PImage#blend(PImage, int, int, int, int, int, int, int, int, int) - */ - public void copy(PImage src, - int sx, int sy, int sw, int sh, - int dx, int dy, int dw, int dh) { - if (recorder != null) recorder.copy(src, sx, sy, sw, sh, dx, dy, dw, dh); - g.copy(src, sx, sy, sw, sh, dx, dy, dw, dh); - } - - - /** - * Blend two colors based on a particular mode. - *

      - *
    • REPLACE - destination colour equals colour of source pixel: C = A. - * Sometimes called "Normal" or "Copy" in other software. - * - *
    • BLEND - linear interpolation of colours: - * C = A*factor + B - * - *
    • ADD - additive blending with white clip: - * C = min(A*factor + B, 255). - * Clipped to 0..255, Photoshop calls this "Linear Burn", - * and Director calls it "Add Pin". - * - *
    • SUBTRACT - substractive blend with black clip: - * C = max(B - A*factor, 0). - * Clipped to 0..255, Photoshop calls this "Linear Dodge", - * and Director calls it "Subtract Pin". - * - *
    • DARKEST - only the darkest colour succeeds: - * C = min(A*factor, B). - * Illustrator calls this "Darken". - * - *
    • LIGHTEST - only the lightest colour succeeds: - * C = max(A*factor, B). - * Illustrator calls this "Lighten". - * - *
    • DIFFERENCE - subtract colors from underlying image. - * - *
    • EXCLUSION - similar to DIFFERENCE, but less extreme. - * - *
    • MULTIPLY - Multiply the colors, result will always be darker. - * - *
    • SCREEN - Opposite multiply, uses inverse values of the colors. - * - *
    • OVERLAY - A mix of MULTIPLY and SCREEN. Multiplies dark values, - * and screens light values. - * - *
    • HARD_LIGHT - SCREEN when greater than 50% gray, MULTIPLY when lower. - * - *
    • SOFT_LIGHT - Mix of DARKEST and LIGHTEST. - * Works like OVERLAY, but not as harsh. - * - *
    • DODGE - Lightens light tones and increases contrast, ignores darks. - * Called "Color Dodge" in Illustrator and Photoshop. - * - *
    • BURN - Darker areas are applied, increasing contrast, ignores lights. - * Called "Color Burn" in Illustrator and Photoshop. - *
    - *

    A useful reference for blending modes and their algorithms can be - * found in the SVG - * specification.

    - *

    It is important to note that Processing uses "fast" code, not - * necessarily "correct" code. No biggie, most software does. A nitpicker - * can find numerous "off by 1 division" problems in the blend code where - * >>8 or >>7 is used when strictly speaking - * /255.0 or /127.0 should have been used.

    - *

    For instance, exclusion (not intended for real-time use) reads - * r1 + r2 - ((2 * r1 * r2) / 255) because 255 == 1.0 - * not 256 == 1.0. In other words, (255*255)>>8 is not - * the same as (255*255)/255. But for real-time use the shifts - * are preferrable, and the difference is insignificant for applications - * built with Processing.

    - */ - static public int blendColor(int c1, int c2, int mode) { - return PGraphics.blendColor(c1, c2, mode); - } - - - /** - * Blends one area of this image to another area. - * - * @see processing.core.PImage#blendColor(int,int,int) - */ - public void blend(int sx, int sy, int sw, int sh, - int dx, int dy, int dw, int dh, int mode) { - if (recorder != null) recorder.blend(sx, sy, sw, sh, dx, dy, dw, dh, mode); - g.blend(sx, sy, sw, sh, dx, dy, dw, dh, mode); - } - - - /** - * Blends a region of pixels into the image specified by the img parameter. These copies utilize full alpha channel support and a choice of the following modes to blend the colors of source pixels (A) with the ones of pixels in the destination image (B):

    - * BLEND - linear interpolation of colours: C = A*factor + B

    - * ADD - additive blending with white clip: C = min(A*factor + B, 255)

    - * SUBTRACT - subtractive blending with black clip: C = max(B - A*factor, 0)

    - * DARKEST - only the darkest colour succeeds: C = min(A*factor, B)

    - * LIGHTEST - only the lightest colour succeeds: C = max(A*factor, B)

    - * DIFFERENCE - subtract colors from underlying image.

    - * EXCLUSION - similar to DIFFERENCE, but less extreme.

    - * MULTIPLY - Multiply the colors, result will always be darker.

    - * SCREEN - Opposite multiply, uses inverse values of the colors.

    - * OVERLAY - A mix of MULTIPLY and SCREEN. Multiplies dark values, and screens light values.

    - * HARD_LIGHT - SCREEN when greater than 50% gray, MULTIPLY when lower.

    - * SOFT_LIGHT - Mix of DARKEST and LIGHTEST. Works like OVERLAY, but not as harsh.

    - * DODGE - Lightens light tones and increases contrast, ignores darks. Called "Color Dodge" in Illustrator and Photoshop.

    - * BURN - Darker areas are applied, increasing contrast, ignores lights. Called "Color Burn" in Illustrator and Photoshop.

    - * All modes use the alpha information (highest byte) of source image pixels as the blending factor. If the source and destination regions are different sizes, the image will be automatically resized to match the destination size. If the srcImg parameter is not used, the display window is used as the source image.

    - * As of release 0149, this function ignores imageMode(). - * - * @webref - * @brief Copies a pixel or rectangle of pixels using different blending modes - * @param src an image variable referring to the source image - * @param sx X coordinate of the source's upper left corner - * @param sy Y coordinate of the source's upper left corner - * @param sw source image width - * @param sh source image height - * @param dx X coordinate of the destinations's upper left corner - * @param dy Y coordinate of the destinations's upper left corner - * @param dw destination image width - * @param dh destination image height - * @param mode Either BLEND, ADD, SUBTRACT, LIGHTEST, DARKEST, DIFFERENCE, EXCLUSION, MULTIPLY, SCREEN, OVERLAY, HARD_LIGHT, SOFT_LIGHT, DODGE, BURN - * - * @see processing.core.PGraphics#alpha(int) - * @see processing.core.PGraphics#copy(PImage, int, int, int, int, int, int, int, int) - * @see processing.core.PImage#blendColor(int,int,int) - */ - public void blend(PImage src, - int sx, int sy, int sw, int sh, - int dx, int dy, int dw, int dh, int mode) { - if (recorder != null) recorder.blend(src, sx, sy, sw, sh, dx, dy, dw, dh, mode); - g.blend(src, sx, sy, sw, sh, dx, dy, dw, dh, mode); - } -} diff --git a/core/src/processing/core/PConstants.java b/core/src/processing/core/PConstants.java deleted file mode 100644 index f1eae5882..000000000 --- a/core/src/processing/core/PConstants.java +++ /dev/null @@ -1,504 +0,0 @@ -/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */ - -/* - Part of the Processing project - http://processing.org - - Copyright (c) 2004-08 Ben Fry and Casey Reas - Copyright (c) 2001-04 Massachusetts Institute of Technology - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General - Public License along with this library; if not, write to the - Free Software Foundation, Inc., 59 Temple Place, Suite 330, - Boston, MA 02111-1307 USA -*/ - -package processing.core; - -import java.awt.Cursor; -import java.awt.event.KeyEvent; - - -/** - * Numbers shared throughout processing.core. - *

    - * An attempt is made to keep the constants as short/non-verbose - * as possible. For instance, the constant is TIFF instead of - * FILE_TYPE_TIFF. We'll do this as long as we can get away with it. - * - * @usage Web & Application - */ -public interface PConstants { - - static public final int X = 0; // model coords xyz (formerly MX/MY/MZ) - static public final int Y = 1; - static public final int Z = 2; - - static public final int R = 3; // actual rgb, after lighting - static public final int G = 4; // fill stored here, transform in place - static public final int B = 5; // TODO don't do that anymore (?) - static public final int A = 6; - - static public final int U = 7; // texture - static public final int V = 8; - - static public final int NX = 9; // normal - static public final int NY = 10; - static public final int NZ = 11; - - static public final int EDGE = 12; - - - // stroke - - /** stroke argb values */ - static public final int SR = 13; - static public final int SG = 14; - static public final int SB = 15; - static public final int SA = 16; - - /** stroke weight */ - static public final int SW = 17; - - - // transformations (2D and 3D) - - static public final int TX = 18; // transformed xyzw - static public final int TY = 19; - static public final int TZ = 20; - - static public final int VX = 21; // view space coords - static public final int VY = 22; - static public final int VZ = 23; - static public final int VW = 24; - - - // material properties - - // Ambient color (usually to be kept the same as diffuse) - // fill(_) sets both ambient and diffuse. - static public final int AR = 25; - static public final int AG = 26; - static public final int AB = 27; - - // Diffuse is shared with fill. - static public final int DR = 3; // TODO needs to not be shared, this is a material property - static public final int DG = 4; - static public final int DB = 5; - static public final int DA = 6; - - // specular (by default kept white) - static public final int SPR = 28; - static public final int SPG = 29; - static public final int SPB = 30; - - static public final int SHINE = 31; - - // emissive (by default kept black) - static public final int ER = 32; - static public final int EG = 33; - static public final int EB = 34; - - // has this vertex been lit yet - static public final int BEEN_LIT = 35; - - static public final int VERTEX_FIELD_COUNT = 36; - - - // renderers known to processing.core - - static final String P2D = "processing.core.PGraphics2D"; - static final String P3D = "processing.core.PGraphics3D"; - static final String JAVA2D = "processing.core.PGraphicsJava2D"; - static final String OPENGL = "processing.opengl.PGraphicsOpenGL"; - static final String PDF = "processing.pdf.PGraphicsPDF"; - static final String DXF = "processing.dxf.RawDXF"; - - - // platform IDs for PApplet.platform - - static final int OTHER = 0; - static final int WINDOWS = 1; - static final int MACOSX = 2; - static final int LINUX = 3; - - static final String[] platformNames = { - "other", "windows", "macosx", "linux" - }; - - - static final float EPSILON = 0.0001f; - - - // max/min values for numbers - - /** - * Same as Float.MAX_VALUE, but included for parity with MIN_VALUE, - * and to avoid teaching static methods on the first day. - */ - static final float MAX_FLOAT = Float.MAX_VALUE; - /** - * Note that Float.MIN_VALUE is the smallest positive value - * for a floating point number, not actually the minimum (negative) value - * for a float. This constant equals 0xFF7FFFFF, the smallest (farthest - * negative) value a float can have before it hits NaN. - */ - static final float MIN_FLOAT = -Float.MAX_VALUE; - /** Largest possible (positive) integer value */ - static final int MAX_INT = Integer.MAX_VALUE; - /** Smallest possible (negative) integer value */ - static final int MIN_INT = Integer.MIN_VALUE; - - - // useful goodness - - /** - * PI is a mathematical constant with the value 3.14159265358979323846. - * It is the ratio of the circumference of a circle to its diameter. - * It is useful in combination with the trigonometric functions sin() and cos(). - * - * @webref constants - * @see processing.core.PConstants#HALF_PI - * @see processing.core.PConstants#TWO_PI - * @see processing.core.PConstants#QUARTER_PI - * - */ - static final float PI = (float) Math.PI; - /** - * HALF_PI is a mathematical constant with the value 1.57079632679489661923. - * It is half the ratio of the circumference of a circle to its diameter. - * It is useful in combination with the trigonometric functions sin() and cos(). - * - * @webref constants - * @see processing.core.PConstants#PI - * @see processing.core.PConstants#TWO_PI - * @see processing.core.PConstants#QUARTER_PI - */ - static final float HALF_PI = PI / 2.0f; - static final float THIRD_PI = PI / 3.0f; - /** - * QUARTER_PI is a mathematical constant with the value 0.7853982. - * It is one quarter the ratio of the circumference of a circle to its diameter. - * It is useful in combination with the trigonometric functions sin() and cos(). - * - * @webref constants - * @see processing.core.PConstants#PI - * @see processing.core.PConstants#TWO_PI - * @see processing.core.PConstants#HALF_PI - */ - static final float QUARTER_PI = PI / 4.0f; - /** - * TWO_PI is a mathematical constant with the value 6.28318530717958647693. - * It is twice the ratio of the circumference of a circle to its diameter. - * It is useful in combination with the trigonometric functions sin() and cos(). - * - * @webref constants - * @see processing.core.PConstants#PI - * @see processing.core.PConstants#HALF_PI - * @see processing.core.PConstants#QUARTER_PI - */ - static final float TWO_PI = PI * 2.0f; - - static final float DEG_TO_RAD = PI/180.0f; - static final float RAD_TO_DEG = 180.0f/PI; - - - // angle modes - - //static final int RADIANS = 0; - //static final int DEGREES = 1; - - - // used by split, all the standard whitespace chars - // (also includes unicode nbsp, that little bostage) - - static final String WHITESPACE = " \t\n\r\f\u00A0"; - - - // for colors and/or images - - static final int RGB = 1; // image & color - static final int ARGB = 2; // image - static final int HSB = 3; // color - static final int ALPHA = 4; // image - static final int CMYK = 5; // image & color (someday) - - - // image file types - - static final int TIFF = 0; - static final int TARGA = 1; - static final int JPEG = 2; - static final int GIF = 3; - - - // filter/convert types - - static final int BLUR = 11; - static final int GRAY = 12; - static final int INVERT = 13; - static final int OPAQUE = 14; - static final int POSTERIZE = 15; - static final int THRESHOLD = 16; - static final int ERODE = 17; - static final int DILATE = 18; - - - // blend mode keyword definitions - // @see processing.core.PImage#blendColor(int,int,int) - - public final static int REPLACE = 0; - public final static int BLEND = 1 << 0; - public final static int ADD = 1 << 1; - public final static int SUBTRACT = 1 << 2; - public final static int LIGHTEST = 1 << 3; - public final static int DARKEST = 1 << 4; - public final static int DIFFERENCE = 1 << 5; - public final static int EXCLUSION = 1 << 6; - public final static int MULTIPLY = 1 << 7; - public final static int SCREEN = 1 << 8; - public final static int OVERLAY = 1 << 9; - public final static int HARD_LIGHT = 1 << 10; - public final static int SOFT_LIGHT = 1 << 11; - public final static int DODGE = 1 << 12; - public final static int BURN = 1 << 13; - - // colour component bitmasks - - public static final int ALPHA_MASK = 0xff000000; - public static final int RED_MASK = 0x00ff0000; - public static final int GREEN_MASK = 0x0000ff00; - public static final int BLUE_MASK = 0x000000ff; - - - // for messages - - static final int CHATTER = 0; - static final int COMPLAINT = 1; - static final int PROBLEM = 2; - - - // types of projection matrices - - static final int CUSTOM = 0; // user-specified fanciness - static final int ORTHOGRAPHIC = 2; // 2D isometric projection - static final int PERSPECTIVE = 3; // perspective matrix - - - // shapes - - // the low four bits set the variety, - // higher bits set the specific shape type - - //static final int GROUP = (1 << 2); - - static final int POINT = 2; // shared with light (!) - static final int POINTS = 2; - - static final int LINE = 4; - static final int LINES = 4; - - static final int TRIANGLE = 8; - static final int TRIANGLES = 9; - static final int TRIANGLE_STRIP = 10; - static final int TRIANGLE_FAN = 11; - - static final int QUAD = 16; - static final int QUADS = 16; - static final int QUAD_STRIP = 17; - - static final int POLYGON = 20; - static final int PATH = 21; - - static final int RECT = 30; - static final int ELLIPSE = 31; - static final int ARC = 32; - - static final int SPHERE = 40; - static final int BOX = 41; - - - // shape closing modes - - static final int OPEN = 1; - static final int CLOSE = 2; - - - // shape drawing modes - - /** Draw mode convention to use (x, y) to (width, height) */ - static final int CORNER = 0; - /** Draw mode convention to use (x1, y1) to (x2, y2) coordinates */ - static final int CORNERS = 1; - /** Draw mode from the center, and using the radius */ - static final int RADIUS = 2; - /** @deprecated Use RADIUS instead. */ - static final int CENTER_RADIUS = 2; - /** - * Draw from the center, using second pair of values as the diameter. - * Formerly called CENTER_DIAMETER in alpha releases. - */ - static final int CENTER = 3; - /** - * Synonym for the CENTER constant. Draw from the center, - * using second pair of values as the diameter. - */ - static final int DIAMETER = 3; - /** @deprecated Use DIAMETER instead. */ - static final int CENTER_DIAMETER = 3; - - - // vertically alignment modes for text - - /** Default vertical alignment for text placement */ - static final int BASELINE = 0; - /** Align text to the top */ - static final int TOP = 101; - /** Align text from the bottom, using the baseline. */ - static final int BOTTOM = 102; - - - // uv texture orientation modes - - /** texture coordinates in 0..1 range */ - static final int NORMAL = 1; - /** @deprecated use NORMAL instead */ - static final int NORMALIZED = 1; - /** texture coordinates based on image width/height */ - static final int IMAGE = 2; - - - // text placement modes - - /** - * textMode(MODEL) is the default, meaning that characters - * will be affected by transformations like any other shapes. - *

    - * Changed value in 0093 to not interfere with LEFT, CENTER, and RIGHT. - */ - static final int MODEL = 4; - - /** - * textMode(SHAPE) draws text using the the glyph outlines of - * individual characters rather than as textures. If the outlines are - * not available, then textMode(SHAPE) will be ignored and textMode(MODEL) - * will be used instead. For this reason, be sure to call textMode() - * after calling textFont(). - *

    - * Currently, textMode(SHAPE) is only supported by OPENGL mode. - * It also requires Java 1.2 or higher (OPENGL requires 1.4 anyway) - */ - static final int SHAPE = 5; - - - // text alignment modes - // are inherited from LEFT, CENTER, RIGHT - - - // stroke modes - - static final int SQUARE = 1 << 0; // called 'butt' in the svg spec - static final int ROUND = 1 << 1; - static final int PROJECT = 1 << 2; // called 'square' in the svg spec - static final int MITER = 1 << 3; - static final int BEVEL = 1 << 5; - - - // lighting - - static final int AMBIENT = 0; - static final int DIRECTIONAL = 1; - //static final int POINT = 2; // shared with shape feature - static final int SPOT = 3; - - - // key constants - - // only including the most-used of these guys - // if people need more esoteric keys, they can learn about - // the esoteric java KeyEvent api and of virtual keys - - // both key and keyCode will equal these values - // for 0125, these were changed to 'char' values, because they - // can be upgraded to ints automatically by Java, but having them - // as ints prevented split(blah, TAB) from working - static final char BACKSPACE = 8; - static final char TAB = 9; - static final char ENTER = 10; - static final char RETURN = 13; - static final char ESC = 27; - static final char DELETE = 127; - - // i.e. if ((key == CODED) && (keyCode == UP)) - static final int CODED = 0xffff; - - // key will be CODED and keyCode will be this value - static final int UP = KeyEvent.VK_UP; - static final int DOWN = KeyEvent.VK_DOWN; - static final int LEFT = KeyEvent.VK_LEFT; - static final int RIGHT = KeyEvent.VK_RIGHT; - - // key will be CODED and keyCode will be this value - static final int ALT = KeyEvent.VK_ALT; - static final int CONTROL = KeyEvent.VK_CONTROL; - static final int SHIFT = KeyEvent.VK_SHIFT; - - - // cursor types - - static final int ARROW = Cursor.DEFAULT_CURSOR; - static final int CROSS = Cursor.CROSSHAIR_CURSOR; - static final int HAND = Cursor.HAND_CURSOR; - static final int MOVE = Cursor.MOVE_CURSOR; - static final int TEXT = Cursor.TEXT_CURSOR; - static final int WAIT = Cursor.WAIT_CURSOR; - - - // hints - hint values are positive for the alternate version, - // negative of the same value returns to the normal/default state - - static final int DISABLE_OPENGL_2X_SMOOTH = 1; - static final int ENABLE_OPENGL_2X_SMOOTH = -1; - static final int ENABLE_OPENGL_4X_SMOOTH = 2; - - static final int ENABLE_NATIVE_FONTS = 3; - - static final int DISABLE_DEPTH_TEST = 4; - static final int ENABLE_DEPTH_TEST = -4; - - static final int ENABLE_DEPTH_SORT = 5; - static final int DISABLE_DEPTH_SORT = -5; - - static final int DISABLE_OPENGL_ERROR_REPORT = 6; - static final int ENABLE_OPENGL_ERROR_REPORT = -6; - - static final int ENABLE_ACCURATE_TEXTURES = 7; - static final int DISABLE_ACCURATE_TEXTURES = -7; - - static final int HINT_COUNT = 10; - - - // error messages - - static final String ERROR_BACKGROUND_IMAGE_SIZE = - "background image must be the same size as your application"; - static final String ERROR_BACKGROUND_IMAGE_FORMAT = - "background images should be RGB or ARGB"; - - static final String ERROR_TEXTFONT_NULL_PFONT = - "A null PFont was passed to textFont()"; - - static final String ERROR_PUSHMATRIX_OVERFLOW = - "Too many calls to pushMatrix()."; - static final String ERROR_PUSHMATRIX_UNDERFLOW = - "Too many calls to popMatrix(), and not enough to pushMatrix()."; -} diff --git a/core/src/processing/core/PFont.java b/core/src/processing/core/PFont.java deleted file mode 100644 index 421cfb09e..000000000 --- a/core/src/processing/core/PFont.java +++ /dev/null @@ -1,877 +0,0 @@ -/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */ - -/* - Part of the Processing project - http://processing.org - - Copyright (c) 2004-10 Ben Fry & Casey Reas - Copyright (c) 2001-04 Massachusetts Institute of Technology - - This library is free software; you can redistribute it and/or - modify it under the terms of version 2.01 of the GNU Lesser General - Public License as published by the Free Software Foundation. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General - Public License along with this library; if not, write to the - Free Software Foundation, Inc., 59 Temple Place, Suite 330, - Boston, MA 02111-1307 USA -*/ - -package processing.core; - -import java.awt.*; -import java.awt.image.*; -import java.io.*; -import java.util.Arrays; -import java.util.HashMap; - - -/** - * Grayscale bitmap font class used by Processing. - *

    - * Awful (and by that, I mean awesome) ASCII (non-)art for how this works: - *

    - *   |
    - *   |                   height is the full used height of the image
    - *   |
    - *   |   ..XX..       }
    - *   |   ..XX..       }
    - *   |   ......       }
    - *   |   XXXX..       }  topExtent (top y is baseline - topExtent)
    - *   |   ..XX..       }
    - *   |   ..XX..       }  dotted areas are where the image data
    - *   |   ..XX..       }  is actually located for the character
    - *   +---XXXXXX----   }  (it extends to the right and down
    - *   |                   for power of two texture sizes)
    - *   ^^^^ leftExtent (amount to move over before drawing the image
    - *
    - *   ^^^^^^^^^^^^^^ setWidth (width displaced by char)
    - * 
    - */ -public class PFont implements PConstants { - - /** Number of character glyphs in this font. */ - protected int glyphCount; - - /** - * Actual glyph data. The length of this array won't necessarily be the - * same size as glyphCount, in cases where lazy font loading is in use. - */ - protected Glyph[] glyphs; - - /** - * Name of the font as seen by Java when it was created. - * If the font is available, the native version will be used. - */ - protected String name; - - /** - * Postscript name of the font that this bitmap was created from. - */ - protected String psname; - - /** - * The original size of the font when it was first created - */ - protected int size; - - /** true if smoothing was enabled for this font, used for native impl */ - protected boolean smooth; - - /** - * The ascent of the font. If the 'd' character is present in this PFont, - * this value is replaced with its pixel height, because the values returned - * by FontMetrics.getAscent() seem to be terrible. - */ - protected int ascent; - - /** - * The descent of the font. If the 'p' character is present in this PFont, - * this value is replaced with its lowest pixel height, because the values - * returned by FontMetrics.getDescent() are gross. - */ - protected int descent; - - /** - * A more efficient array lookup for straight ASCII characters. For Unicode - * characters, a QuickSort-style search is used. - */ - protected int[] ascii; - - /** - * True if this font is set to load dynamically. This is the default when - * createFont() method is called without a character set. Bitmap versions of - * characters are only created when prompted by an index() call. - */ - protected boolean lazy; - - /** - * Native Java version of the font. If possible, this allows the - * PGraphics subclass to just use Java's font rendering stuff - * in situations where that's faster. - */ - protected Font font; - - /** True if this font was loaded from a stream, rather than from the OS. */ - protected boolean stream; - - /** - * True if we've already tried to find the native AWT version of this font. - */ - protected boolean fontSearched; - - /** - * Array of the native system fonts. Used to lookup native fonts by their - * PostScript name. This is a workaround for a several year old Apple Java - * bug that they can't be bothered to fix. - */ - static protected Font[] fonts; - static protected HashMap fontDifferent; - - - // objects to handle creation of font characters only as they're needed - BufferedImage lazyImage; - Graphics2D lazyGraphics; - FontMetrics lazyMetrics; - int[] lazySamples; - - - public PFont() { } // for subclasses - - - /** - * Create a new Processing font from a native font, but don't create all the - * characters at once, instead wait until they're used to include them. - * @param font - * @param smooth - */ - public PFont(Font font, boolean smooth) { - this(font, smooth, null); - } - - - /** - * Create a new image-based font on the fly. If charset is set to null, - * the characters will only be created as bitmaps when they're drawn. - * - * @param font the font object to create from - * @param charset array of all unicode chars that should be included - * @param smooth true to enable smoothing/anti-aliasing - */ - public PFont(Font font, boolean smooth, char charset[]) { - // save this so that we can use the native version - this.font = font; - this.smooth = smooth; - - name = font.getName(); - psname = font.getPSName(); - size = font.getSize(); - - // no, i'm not interested in getting off the couch - lazy = true; - // not sure what else to do here - //mbox2 = 0; - - int initialCount = 10; - glyphs = new Glyph[initialCount]; - - ascii = new int[128]; - Arrays.fill(ascii, -1); - - int mbox3 = size * 3; - - lazyImage = new BufferedImage(mbox3, mbox3, BufferedImage.TYPE_INT_RGB); - lazyGraphics = (Graphics2D) lazyImage.getGraphics(); - lazyGraphics.setRenderingHint(RenderingHints.KEY_ANTIALIASING, - smooth ? - RenderingHints.VALUE_ANTIALIAS_ON : - RenderingHints.VALUE_ANTIALIAS_OFF); - // adding this for post-1.0.9 - lazyGraphics.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, - smooth ? - RenderingHints.VALUE_TEXT_ANTIALIAS_ON : - RenderingHints.VALUE_TEXT_ANTIALIAS_OFF); - - lazyGraphics.setFont(font); - lazyMetrics = lazyGraphics.getFontMetrics(); - lazySamples = new int[mbox3 * mbox3]; - - // These values are terrible/unusable. Verified again for Processing 1.1. - // They vary widely per-platform and per-font, so instead we'll use the - // calculate-by-hand method of measuring pixels in characters. - //ascent = lazyMetrics.getAscent(); - //descent = lazyMetrics.getDescent(); - - if (charset != null) { - // charset needs to be sorted to make index lookup run more quickly - // http://dev.processing.org/bugs/show_bug.cgi?id=494 - Arrays.sort(charset); - - glyphs = new Glyph[charset.length]; - - glyphCount = 0; - for (char c : charset) { - if (font.canDisplay(c)) { - glyphs[glyphCount++] = new Glyph(c); - } - } - - // shorten the array if necessary - if (glyphCount != charset.length) { - glyphs = (Glyph[]) PApplet.subset(glyphs, 0, glyphCount); - } - - // foreign font, so just make ascent the max topExtent - // for > 1.0.9, not doing this anymore. - // instead using getAscent() and getDescent() values for these cases. -// if ((ascent == 0) && (descent == 0)) { -// //for (int i = 0; i < charCount; i++) { -// for (Glyph glyph : glyphs) { -// char cc = (char) glyph.value; -// //char cc = (char) glyphs[i].value; -// if (Character.isWhitespace(cc) || -// (cc == '\u00A0') || (cc == '\u2007') || (cc == '\u202F')) { -// continue; -// } -// if (glyph.topExtent > ascent) { -// ascent = glyph.topExtent; -// } -// int d = -glyph.topExtent + glyph.height; -// if (d > descent) { -// descent = d; -// } -// } -// } - } - - // If not already created, just create these two characters to calculate - // the ascent and descent values for the font. This was tested to only - // require 5-10 ms on a 2.4 GHz MacBook Pro. - // In versions 1.0.9 and earlier, fonts that could not display d or p - // used the max up/down values as calculated by looking through the font. - // That's no longer valid with the auto-generating fonts, so we'll just - // use getAscent() and getDescent() in such (minor) cases. - if (ascent == 0) { - if (font.canDisplay('d')) { - new Glyph('d'); - } else { - ascent = lazyMetrics.getAscent(); - } - } - if (descent == 0) { - if (font.canDisplay('p')) { - new Glyph('p'); - } else { - descent = lazyMetrics.getDescent(); - } - } - } - - - /** - * Adds an additional parameter that indicates the font came from a file, - * not a built-in OS font. - */ - public PFont(Font font, boolean smooth, char charset[], boolean stream) { - this(font, smooth, charset); - this.stream = stream; - } - - - public PFont(InputStream input) throws IOException { - DataInputStream is = new DataInputStream(input); - - // number of character images stored in this font - glyphCount = is.readInt(); - - // used to be the bitCount, but now used for version number. - // version 8 is any font before 69, so 9 is anything from 83+ - // 9 was buggy so gonna increment to 10. - int version = is.readInt(); - - // this was formerly ignored, now it's the actual font size - //mbox = is.readInt(); - size = is.readInt(); - - // this was formerly mboxY, the one that was used - // this will make new fonts downward compatible - is.readInt(); // ignore the other mbox attribute - - ascent = is.readInt(); // formerly baseHt (zero/ignored) - descent = is.readInt(); // formerly ignored struct padding - - // allocate enough space for the character info - glyphs = new Glyph[glyphCount]; - - ascii = new int[128]; - Arrays.fill(ascii, -1); - - // read the information about the individual characters - for (int i = 0; i < glyphCount; i++) { - Glyph glyph = new Glyph(is); - // cache locations of the ascii charset - if (glyph.value < 128) { - ascii[glyph.value] = i; - } - glyphs[i] = glyph; - } - - // not a roman font, so throw an error and ask to re-build. - // that way can avoid a bunch of error checking hacks in here. - if ((ascent == 0) && (descent == 0)) { - throw new RuntimeException("Please use \"Create Font\" to " + - "re-create this font."); - } - - for (Glyph glyph : glyphs) { - glyph.readBitmap(is); - } - - if (version >= 10) { // includes the font name at the end of the file - name = is.readUTF(); - psname = is.readUTF(); - } - if (version == 11) { - smooth = is.readBoolean(); - } - } - - - /** - * Write this PFont to an OutputStream. - *

    - * This is used by the Create Font tool, or whatever anyone else dreams - * up for messing with fonts themselves. - *

    - * It is assumed that the calling class will handle closing - * the stream when finished. - */ - public void save(OutputStream output) throws IOException { - DataOutputStream os = new DataOutputStream(output); - - os.writeInt(glyphCount); - - if ((name == null) || (psname == null)) { - name = ""; - psname = ""; - } - - os.writeInt(11); // formerly numBits, now used for version number - os.writeInt(size); // formerly mboxX (was 64, now 48) - os.writeInt(0); // formerly mboxY, now ignored - os.writeInt(ascent); // formerly baseHt (was ignored) - os.writeInt(descent); // formerly struct padding for c version - - for (int i = 0; i < glyphCount; i++) { - glyphs[i].writeHeader(os); - } - - for (int i = 0; i < glyphCount; i++) { - glyphs[i].writeBitmap(os); - } - - // version 11 - os.writeUTF(name); - os.writeUTF(psname); - os.writeBoolean(smooth); - - os.flush(); - } - - - /** - * Create a new glyph, and add the character to the current font. - * @param c character to create an image for. - */ - protected void addGlyph(char c) { - Glyph glyph = new Glyph(c); - - if (glyphCount == glyphs.length) { - glyphs = (Glyph[]) PApplet.expand(glyphs); - } - if (glyphCount == 0) { - glyphs[glyphCount] = glyph; - if (glyph.value < 128) { - ascii[glyph.value] = 0; - } - - } else if (glyphs[glyphCount-1].value < glyph.value) { - glyphs[glyphCount] = glyph; - if (glyph.value < 128) { - ascii[glyph.value] = glyphCount; - } - - } else { - for (int i = 0; i < glyphCount; i++) { - if (glyphs[i].value > c) { - for (int j = glyphCount; j > i; --j) { - glyphs[j] = glyphs[j-1]; - if (glyphs[j].value < 128) { - ascii[glyphs[j].value] = j; - } - } - glyphs[i] = glyph; - // cache locations of the ascii charset - if (c < 128) ascii[c] = i; - break; - } - } - } - glyphCount++; - } - - - public String getName() { - return name; - } - - - public String getPostScriptName() { - return psname; - } - - - /** - * Set the native complement of this font. - */ - public void setFont(Font font) { - this.font = font; - } - - - /** - * Return the native java.awt.Font associated with this PFont (if any). - */ - public Font getFont() { -// if (font == null && !fontSearched) { -// font = findFont(); -// } - return font; - } - - - public boolean isStream() { - return stream; - } - - - /** - * Attempt to find the native version of this font. - * (Public so that it can be used by OpenGL or other renderers.) - */ - public Font findFont() { - if (font == null) { - if (!fontSearched) { - // this font may or may not be installed - font = new Font(name, Font.PLAIN, size); - // if the ps name matches, then we're in fine shape - if (!font.getPSName().equals(psname)) { - // on osx java 1.4 (not 1.3.. ugh), you can specify the ps name - // of the font, so try that in case this .vlw font was created on pc - // and the name is different, but the ps name is found on the - // java 1.4 mac that's currently running this sketch. - font = new Font(psname, Font.PLAIN, size); - } - // check again, and if still bad, screw em - if (!font.getPSName().equals(psname)) { - font = null; - } - fontSearched = true; - } - } - return font; - } - - - public Glyph getGlyph(char c) { - int index = index(c); - return (index == -1) ? null : glyphs[index]; - } - - - /** - * Get index for the character. - * @return index into arrays or -1 if not found - */ - protected int index(char c) { - if (lazy) { - int index = indexActual(c); - if (index != -1) { - return index; - } - if (font.canDisplay(c)) { - // create the glyph - addGlyph(c); - // now where did i put that? - return indexActual(c); - - } else { - return -1; - } - - } else { - return indexActual(c); - } - } - - - protected int indexActual(char c) { - // degenerate case, but the find function will have trouble - // if there are somehow zero chars in the lookup - //if (value.length == 0) return -1; - if (glyphCount == 0) return -1; - - // quicker lookup for the ascii fellers - if (c < 128) return ascii[c]; - - // some other unicode char, hunt it out - //return index_hunt(c, 0, value.length-1); - return indexHunt(c, 0, glyphCount-1); - } - - - protected int indexHunt(int c, int start, int stop) { - int pivot = (start + stop) / 2; - - // if this is the char, then return it - if (c == glyphs[pivot].value) return pivot; - - // char doesn't exist, otherwise would have been the pivot - //if (start == stop) return -1; - if (start >= stop) return -1; - - // if it's in the lower half, continue searching that - if (c < glyphs[pivot].value) return indexHunt(c, start, pivot-1); - - // if it's in the upper half, continue there - return indexHunt(c, pivot+1, stop); - } - - - /** - * Currently un-implemented for .vlw fonts, - * but honored for layout in case subclasses use it. - */ - public float kern(char a, char b) { - return 0; - } - - - /** - * Returns the ascent of this font from the baseline. - * The value is based on a font of size 1. - */ - public float ascent() { - return ((float) ascent / (float) size); - } - - - /** - * Returns how far this font descends from the baseline. - * The value is based on a font size of 1. - */ - public float descent() { - return ((float) descent / (float) size); - } - - - /** - * Width of this character for a font of size 1. - */ - public float width(char c) { - if (c == 32) return width('i'); - - int cc = index(c); - if (cc == -1) return 0; - - return ((float) glyphs[cc].setWidth / (float) size); - } - - - ////////////////////////////////////////////////////////////// - - - static final char[] EXTRA_CHARS = { - 0x0080, 0x0081, 0x0082, 0x0083, 0x0084, 0x0085, 0x0086, 0x0087, - 0x0088, 0x0089, 0x008A, 0x008B, 0x008C, 0x008D, 0x008E, 0x008F, - 0x0090, 0x0091, 0x0092, 0x0093, 0x0094, 0x0095, 0x0096, 0x0097, - 0x0098, 0x0099, 0x009A, 0x009B, 0x009C, 0x009D, 0x009E, 0x009F, - 0x00A0, 0x00A1, 0x00A2, 0x00A3, 0x00A4, 0x00A5, 0x00A6, 0x00A7, - 0x00A8, 0x00A9, 0x00AA, 0x00AB, 0x00AC, 0x00AD, 0x00AE, 0x00AF, - 0x00B0, 0x00B1, 0x00B4, 0x00B5, 0x00B6, 0x00B7, 0x00B8, 0x00BA, - 0x00BB, 0x00BF, 0x00C0, 0x00C1, 0x00C2, 0x00C3, 0x00C4, 0x00C5, - 0x00C6, 0x00C7, 0x00C8, 0x00C9, 0x00CA, 0x00CB, 0x00CC, 0x00CD, - 0x00CE, 0x00CF, 0x00D1, 0x00D2, 0x00D3, 0x00D4, 0x00D5, 0x00D6, - 0x00D7, 0x00D8, 0x00D9, 0x00DA, 0x00DB, 0x00DC, 0x00DD, 0x00DF, - 0x00E0, 0x00E1, 0x00E2, 0x00E3, 0x00E4, 0x00E5, 0x00E6, 0x00E7, - 0x00E8, 0x00E9, 0x00EA, 0x00EB, 0x00EC, 0x00ED, 0x00EE, 0x00EF, - 0x00F1, 0x00F2, 0x00F3, 0x00F4, 0x00F5, 0x00F6, 0x00F7, 0x00F8, - 0x00F9, 0x00FA, 0x00FB, 0x00FC, 0x00FD, 0x00FF, 0x0102, 0x0103, - 0x0104, 0x0105, 0x0106, 0x0107, 0x010C, 0x010D, 0x010E, 0x010F, - 0x0110, 0x0111, 0x0118, 0x0119, 0x011A, 0x011B, 0x0131, 0x0139, - 0x013A, 0x013D, 0x013E, 0x0141, 0x0142, 0x0143, 0x0144, 0x0147, - 0x0148, 0x0150, 0x0151, 0x0152, 0x0153, 0x0154, 0x0155, 0x0158, - 0x0159, 0x015A, 0x015B, 0x015E, 0x015F, 0x0160, 0x0161, 0x0162, - 0x0163, 0x0164, 0x0165, 0x016E, 0x016F, 0x0170, 0x0171, 0x0178, - 0x0179, 0x017A, 0x017B, 0x017C, 0x017D, 0x017E, 0x0192, 0x02C6, - 0x02C7, 0x02D8, 0x02D9, 0x02DA, 0x02DB, 0x02DC, 0x02DD, 0x03A9, - 0x03C0, 0x2013, 0x2014, 0x2018, 0x2019, 0x201A, 0x201C, 0x201D, - 0x201E, 0x2020, 0x2021, 0x2022, 0x2026, 0x2030, 0x2039, 0x203A, - 0x2044, 0x20AC, 0x2122, 0x2202, 0x2206, 0x220F, 0x2211, 0x221A, - 0x221E, 0x222B, 0x2248, 0x2260, 0x2264, 0x2265, 0x25CA, 0xF8FF, - 0xFB01, 0xFB02 - }; - - - /** - * The default Processing character set. - *

    - * This is the union of the Mac Roman and Windows ANSI (CP1250) - * character sets. ISO 8859-1 Latin 1 is Unicode characters 0x80 -> 0xFF, - * and would seem a good standard, but in practice, most P5 users would - * rather have characters that they expect from their platform's fonts. - *

    - * This is more of an interim solution until a much better - * font solution can be determined. (i.e. create fonts on - * the fly from some sort of vector format). - *

    - * Not that I expect that to happen. - */ - static public char[] CHARSET; - static { - CHARSET = new char[126-33+1 + EXTRA_CHARS.length]; - int index = 0; - for (int i = 33; i <= 126; i++) { - CHARSET[index++] = (char)i; - } - for (int i = 0; i < EXTRA_CHARS.length; i++) { - CHARSET[index++] = EXTRA_CHARS[i]; - } - }; - - - /** - * Get a list of the fonts installed on the system that can be used - * by Java. Not all fonts can be used in Java, in fact it's mostly - * only TrueType fonts. OpenType fonts with CFF data such as Adobe's - * OpenType fonts seem to have trouble (even though they're sort of - * TrueType fonts as well, or may have a .ttf extension). Regular - * PostScript fonts seem to work OK, however. - *

    - * Not recommended for use in applets, but this is implemented - * in PFont because the Java methods to access this information - * have changed between 1.1 and 1.4, and the 1.4 method is - * typical of the sort of undergraduate-level over-abstraction - * that the seems to have made its way into the Java API after 1.1. - */ - static public String[] list() { - loadFonts(); - String list[] = new String[fonts.length]; - for (int i = 0; i < list.length; i++) { - list[i] = fonts[i].getName(); - } - return list; - } - - - static public void loadFonts() { - if (fonts == null) { - GraphicsEnvironment ge = - GraphicsEnvironment.getLocalGraphicsEnvironment(); - fonts = ge.getAllFonts(); - if (PApplet.platform == PConstants.MACOSX) { - fontDifferent = new HashMap(); - for (Font font : fonts) { - // getName() returns the PostScript name on OS X 10.6 w/ Java 6. - fontDifferent.put(font.getName(), font); - //fontDifferent.put(font.getPSName(), font); - } - } - } - } - - - /** - * Starting with Java 1.5, Apple broke the ability to specify most fonts. - * This bug was filed years ago as #4769141 at bugreporter.apple.com. More: - * Bug 407. - */ - static public Font findFont(String name) { - loadFonts(); - if (PApplet.platform == PConstants.MACOSX) { - Font maybe = fontDifferent.get(name); - if (maybe != null) { - return maybe; - } -// for (int i = 0; i < fonts.length; i++) { -// if (name.equals(fonts[i].getName())) { -// return fonts[i]; -// } -// } - } - return new Font(name, Font.PLAIN, 1); - } - - - ////////////////////////////////////////////////////////////// - - - /** - * A single character, and its visage. - */ - public class Glyph { - PImage image; - int value; - int height; - int width; - int setWidth; - int topExtent; - int leftExtent; - - - protected Glyph() { - // used when reading from a stream or for subclasses - } - - - protected Glyph(DataInputStream is) throws IOException { - readHeader(is); - } - - - protected void readHeader(DataInputStream is) throws IOException { - value = is.readInt(); - height = is.readInt(); - width = is.readInt(); - setWidth = is.readInt(); - topExtent = is.readInt(); - leftExtent = is.readInt(); - - // pointer from a struct in the c version, ignored - is.readInt(); - - // the values for getAscent() and getDescent() from FontMetrics - // seem to be way too large.. perhaps they're the max? - // as such, use a more traditional marker for ascent/descent - if (value == 'd') { - if (ascent == 0) ascent = topExtent; - } - if (value == 'p') { - if (descent == 0) descent = -topExtent + height; - } - } - - - protected void writeHeader(DataOutputStream os) throws IOException { - os.writeInt(value); - os.writeInt(height); - os.writeInt(width); - os.writeInt(setWidth); - os.writeInt(topExtent); - os.writeInt(leftExtent); - os.writeInt(0); // padding - } - - - protected void readBitmap(DataInputStream is) throws IOException { - image = new PImage(width, height, ALPHA); - int bitmapSize = width * height; - - byte[] temp = new byte[bitmapSize]; - is.readFully(temp); - - // convert the bitmap to an alpha channel - int w = width; - int h = height; - int[] pixels = image.pixels; - for (int y = 0; y < h; y++) { - for (int x = 0; x < w; x++) { - pixels[y * width + x] = temp[y*w + x] & 0xff; -// System.out.print((image.pixels[y*64+x] > 128) ? "*" : "."); - } -// System.out.println(); - } -// System.out.println(); - } - - - protected void writeBitmap(DataOutputStream os) throws IOException { - int[] pixels = image.pixels; - for (int y = 0; y < height; y++) { - for (int x = 0; x < width; x++) { - os.write(pixels[y * width + x] & 0xff); - } - } - } - - - protected Glyph(char c) { - int mbox3 = size * 3; - lazyGraphics.setColor(Color.white); - lazyGraphics.fillRect(0, 0, mbox3, mbox3); - lazyGraphics.setColor(Color.black); - lazyGraphics.drawString(String.valueOf(c), size, size * 2); - - WritableRaster raster = lazyImage.getRaster(); - raster.getDataElements(0, 0, mbox3, mbox3, lazySamples); - - int minX = 1000, maxX = 0; - int minY = 1000, maxY = 0; - boolean pixelFound = false; - - for (int y = 0; y < mbox3; y++) { - for (int x = 0; x < mbox3; x++) { - int sample = lazySamples[y * mbox3 + x] & 0xff; - if (sample != 255) { - if (x < minX) minX = x; - if (y < minY) minY = y; - if (x > maxX) maxX = x; - if (y > maxY) maxY = y; - pixelFound = true; - } - } - } - - if (!pixelFound) { - minX = minY = 0; - maxX = maxY = 0; - // this will create a 1 pixel white (clear) character.. - // maybe better to set one to -1 so nothing is added? - } - - value = c; - height = (maxY - minY) + 1; - width = (maxX - minX) + 1; - setWidth = lazyMetrics.charWidth(c); - - // offset from vertical location of baseline - // of where the char was drawn (size*2) - topExtent = size*2 - minY; - - // offset from left of where coord was drawn - leftExtent = minX - size; - - image = new PImage(width, height, ALPHA); - int[] pixels = image.pixels; - for (int y = minY; y <= maxY; y++) { - for (int x = minX; x <= maxX; x++) { - int val = 255 - (lazySamples[y * mbox3 + x] & 0xff); - int pindex = (y - minY) * width + (x - minX); - pixels[pindex] = val; - } - } - - // replace the ascent/descent values with something.. err, decent. - if (value == 'd') { - if (ascent == 0) ascent = topExtent; - } - if (value == 'p') { - if (descent == 0) descent = -topExtent + height; - } - } - } -} diff --git a/core/src/processing/core/PGraphics.java b/core/src/processing/core/PGraphics.java deleted file mode 100644 index 9d50cdedd..000000000 --- a/core/src/processing/core/PGraphics.java +++ /dev/null @@ -1,5707 +0,0 @@ -/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */ - -/* - Part of the Processing project - http://processing.org - - Copyright (c) 2004-09 Ben Fry and Casey Reas - Copyright (c) 2001-04 Massachusetts Institute of Technology - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General - Public License along with this library; if not, write to the - Free Software Foundation, Inc., 59 Temple Place, Suite 330, - Boston, MA 02111-1307 USA -*/ - -package processing.core; - -import java.awt.*; -import java.util.HashMap; - - -/** - * Main graphics and rendering context, as well as the base API implementation for processing "core". - * Use this class if you need to draw into an off-screen graphics buffer. - * A PGraphics object can be constructed with the createGraphics() function. - * The beginDraw() and endDraw() methods (see above example) are necessary to set up the buffer and to finalize it. - * The fields and methods for this class are extensive; - * for a complete list visit the developer's reference: http://dev.processing.org/reference/core/ - * =advanced - * Main graphics and rendering context, as well as the base API implementation. - * - *

    Subclassing and initializing PGraphics objects

    - * Starting in release 0149, subclasses of PGraphics are handled differently. - * The constructor for subclasses takes no parameters, instead a series of - * functions are called by the hosting PApplet to specify its attributes. - *
      - *
    • setParent(PApplet) - is called to specify the parent PApplet. - *
    • setPrimary(boolean) - called with true if this PGraphics will be the - * primary drawing surface used by the sketch, or false if not. - *
    • setPath(String) - called when the renderer needs a filename or output - * path, such as with the PDF or DXF renderers. - *
    • setSize(int, int) - this is called last, at which point it's safe for - * the renderer to complete its initialization routine. - *
    - * The functions were broken out because of the growing number of parameters - * such as these that might be used by a renderer, yet with the exception of - * setSize(), it's not clear which will be necessary. So while the size could - * be passed in to the constructor instead of a setSize() function, a function - * would still be needed that would notify the renderer that it was time to - * finish its initialization. Thus, setSize() simply does both. - * - *

    Know your rights: public vs. private methods

    - * Methods that are protected are often subclassed by other renderers, however - * they are not set 'public' because they shouldn't be part of the user-facing - * public API accessible from PApplet. That is, we don't want sketches calling - * textModeCheck() or vertexTexture() directly. - * - *

    Handling warnings and exceptions

    - * Methods that are unavailable generally show a warning, unless their lack of - * availability will soon cause another exception. For instance, if a method - * like getMatrix() returns null because it is unavailable, an exception will - * be thrown stating that the method is unavailable, rather than waiting for - * the NullPointerException that will occur when the sketch tries to use that - * method. As of release 0149, warnings will only be shown once, and exceptions - * have been changed to warnings where possible. - * - *

    Using xxxxImpl() for subclassing smoothness

    - * The xxxImpl() methods are generally renderer-specific handling for some - * subset if tasks for a particular function (vague enough for you?) For - * instance, imageImpl() handles drawing an image whose x/y/w/h and u/v coords - * have been specified, and screen placement (independent of imageMode) has - * been determined. There's no point in all renderers implementing the - * if (imageMode == BLAH) placement/sizing logic, so that's handled - * by PGraphics, which then calls imageImpl() once all that is figured out. - * - *

    His brother PImage

    - * PGraphics subclasses PImage so that it can be drawn and manipulated in a - * similar fashion. As such, many methods are inherited from PGraphics, - * though many are unavailable: for instance, resize() is not likely to be - * implemented; the same goes for mask(), depending on the situation. - * - *

    What's in PGraphics, what ain't

    - * For the benefit of subclasses, as much as possible has been placed inside - * PGraphics. For instance, bezier interpolation code and implementations of - * the strokeCap() method (that simply sets the strokeCap variable) are - * handled here. Features that will vary widely between renderers are located - * inside the subclasses themselves. For instance, all matrix handling code - * is per-renderer: Java 2D uses its own AffineTransform, P2D uses a PMatrix2D, - * and PGraphics3D needs to keep continually update forward and reverse - * transformations. A proper (future) OpenGL implementation will have all its - * matrix madness handled by the card. Lighting also falls under this - * category, however the base material property settings (emissive, specular, - * et al.) are handled in PGraphics because they use the standard colorMode() - * logic. Subclasses should override methods like emissiveFromCalc(), which - * is a point where a valid color has been defined internally, and can be - * applied in some manner based on the calcXxxx values. - * - *

    What's in the PGraphics documentation, what ain't

    - * Some things are noted here, some things are not. For public API, always - * refer to the reference - * on Processing.org for proper explanations. No attempt has been made to - * keep the javadoc up to date or complete. It's an enormous task for - * which we simply do not have the time. That is, it's not something that - * to be done once—it's a matter of keeping the multiple references - * synchronized (to say nothing of the translation issues), while targeting - * them for their separate audiences. Ouch. - * - * We're working right now on synchronizing the two references, so the website reference - * is generated from the javadoc comments. Yay. - * - * @webref rendering - * @instanceName graphics any object of the type PGraphics - * @usage Web & Application - * @see processing.core.PApplet#createGraphics(int, int, String) - */ -public class PGraphics extends PImage implements PConstants { - - // ........................................................ - - // width and height are already inherited from PImage - - - /// width minus one (useful for many calculations) - protected int width1; - - /// height minus one (useful for many calculations) - protected int height1; - - /// width * height (useful for many calculations) - public int pixelCount; - - /// true if smoothing is enabled (read-only) - public boolean smooth = false; - - // ........................................................ - - /// true if defaults() has been called a first time - protected boolean settingsInited; - - /// set to a PGraphics object being used inside a beginRaw/endRaw() block - protected PGraphics raw; - - // ........................................................ - - /** path to the file being saved for this renderer (if any) */ - protected String path; - - /** - * true if this is the main drawing surface for a particular sketch. - * This would be set to false for an offscreen buffer or if it were - * created any other way than size(). When this is set, the listeners - * are also added to the sketch. - */ - protected boolean primarySurface; - - // ........................................................ - - /** - * Array of hint[] items. These are hacks to get around various - * temporary workarounds inside the environment. - *

    - * Note that this array cannot be static, as a hint() may result in a - * runtime change specific to a renderer. For instance, calling - * hint(DISABLE_DEPTH_TEST) has to call glDisable() right away on an - * instance of PGraphicsOpenGL. - *

    - * The hints[] array is allocated early on because it might - * be used inside beginDraw(), allocate(), etc. - */ - protected boolean[] hints = new boolean[HINT_COUNT]; - - - //////////////////////////////////////////////////////////// - - // STYLE PROPERTIES - - // Also inherits imageMode() and smooth() (among others) from PImage. - - /** The current colorMode */ - public int colorMode; // = RGB; - - /** Max value for red (or hue) set by colorMode */ - public float colorModeX; // = 255; - - /** Max value for green (or saturation) set by colorMode */ - public float colorModeY; // = 255; - - /** Max value for blue (or value) set by colorMode */ - public float colorModeZ; // = 255; - - /** Max value for alpha set by colorMode */ - public float colorModeA; // = 255; - - /** True if colors are not in the range 0..1 */ - boolean colorModeScale; // = true; - - /** True if colorMode(RGB, 255) */ - boolean colorModeDefault; // = true; - - // ........................................................ - - // Tint color for images - - /** - * True if tint() is enabled (read-only). - * - * Using tint/tintColor seems a better option for naming than - * tintEnabled/tint because the latter seems ugly, even though - * g.tint as the actual color seems a little more intuitive, - * it's just that g.tintEnabled is even more unintuitive. - * Same goes for fill and stroke, et al. - */ - public boolean tint; - - /** tint that was last set (read-only) */ - public int tintColor; - - protected boolean tintAlpha; - protected float tintR, tintG, tintB, tintA; - protected int tintRi, tintGi, tintBi, tintAi; - - // ........................................................ - - // Fill color - - /** true if fill() is enabled, (read-only) */ - public boolean fill; - - /** fill that was last set (read-only) */ - public int fillColor = 0xffFFFFFF; - - protected boolean fillAlpha; - protected float fillR, fillG, fillB, fillA; - protected int fillRi, fillGi, fillBi, fillAi; - - // ........................................................ - - // Stroke color - - /** true if stroke() is enabled, (read-only) */ - public boolean stroke; - - /** stroke that was last set (read-only) */ - public int strokeColor = 0xff000000; - - protected boolean strokeAlpha; - protected float strokeR, strokeG, strokeB, strokeA; - protected int strokeRi, strokeGi, strokeBi, strokeAi; - - // ........................................................ - - // Additional stroke properties - - static protected final float DEFAULT_STROKE_WEIGHT = 1; - static protected final int DEFAULT_STROKE_JOIN = MITER; - static protected final int DEFAULT_STROKE_CAP = ROUND; - - /** - * Last value set by strokeWeight() (read-only). This has a default - * setting, rather than fighting with renderers about whether that - * renderer supports thick lines. - */ - public float strokeWeight = DEFAULT_STROKE_WEIGHT; - - /** - * Set by strokeJoin() (read-only). This has a default setting - * so that strokeJoin() need not be called by defaults, - * because subclasses may not implement it (i.e. PGraphicsGL) - */ - public int strokeJoin = DEFAULT_STROKE_JOIN; - - /** - * Set by strokeCap() (read-only). This has a default setting - * so that strokeCap() need not be called by defaults, - * because subclasses may not implement it (i.e. PGraphicsGL) - */ - public int strokeCap = DEFAULT_STROKE_CAP; - - // ........................................................ - - // Shape placement properties - - // imageMode() is inherited from PImage - - /** The current rect mode (read-only) */ - public int rectMode; - - /** The current ellipse mode (read-only) */ - public int ellipseMode; - - /** The current shape alignment mode (read-only) */ - public int shapeMode; - - /** The current image alignment (read-only) */ - public int imageMode = CORNER; - - // ........................................................ - - // Text and font properties - - /** The current text font (read-only) */ - public PFont textFont; - - /** The current text align (read-only) */ - public int textAlign = LEFT; - - /** The current vertical text alignment (read-only) */ - public int textAlignY = BASELINE; - - /** The current text mode (read-only) */ - public int textMode = MODEL; - - /** The current text size (read-only) */ - public float textSize; - - /** The current text leading (read-only) */ - public float textLeading; - - // ........................................................ - - // Material properties - -// PMaterial material; -// PMaterial[] materialStack; -// int materialStackPointer; - - public float ambientR, ambientG, ambientB; - public float specularR, specularG, specularB; - public float emissiveR, emissiveG, emissiveB; - public float shininess; - - - // Style stack - - static final int STYLE_STACK_DEPTH = 64; - PStyle[] styleStack = new PStyle[STYLE_STACK_DEPTH]; - int styleStackDepth; - - - //////////////////////////////////////////////////////////// - - - /** Last background color that was set, zero if an image */ - public int backgroundColor = 0xffCCCCCC; - - protected boolean backgroundAlpha; - protected float backgroundR, backgroundG, backgroundB, backgroundA; - protected int backgroundRi, backgroundGi, backgroundBi, backgroundAi; - - // ........................................................ - - /** - * Current model-view matrix transformation of the form m[row][column], - * which is a "column vector" (as opposed to "row vector") matrix. - */ -// PMatrix matrix; -// public float m00, m01, m02, m03; -// public float m10, m11, m12, m13; -// public float m20, m21, m22, m23; -// public float m30, m31, m32, m33; - -// static final int MATRIX_STACK_DEPTH = 32; -// float[][] matrixStack = new float[MATRIX_STACK_DEPTH][16]; -// float[][] matrixInvStack = new float[MATRIX_STACK_DEPTH][16]; -// int matrixStackDepth; - - static final int MATRIX_STACK_DEPTH = 32; - - // ........................................................ - - /** - * Java AWT Image object associated with this renderer. For P2D and P3D, - * this will be associated with their MemoryImageSource. For PGraphicsJava2D, - * it will be the offscreen drawing buffer. - */ - public Image image; - - // ........................................................ - - // internal color for setting/calculating - protected float calcR, calcG, calcB, calcA; - protected int calcRi, calcGi, calcBi, calcAi; - protected int calcColor; - protected boolean calcAlpha; - - /** The last RGB value converted to HSB */ - int cacheHsbKey; - /** Result of the last conversion to HSB */ - float[] cacheHsbValue = new float[3]; - - // ........................................................ - - /** - * Type of shape passed to beginShape(), - * zero if no shape is currently being drawn. - */ - protected int shape; - - // vertices - static final int DEFAULT_VERTICES = 512; - protected float vertices[][] = - new float[DEFAULT_VERTICES][VERTEX_FIELD_COUNT]; - protected int vertexCount; // total number of vertices - - // ........................................................ - - protected boolean bezierInited = false; - public int bezierDetail = 20; - - // used by both curve and bezier, so just init here - protected PMatrix3D bezierBasisMatrix = - new PMatrix3D(-1, 3, -3, 1, - 3, -6, 3, 0, - -3, 3, 0, 0, - 1, 0, 0, 0); - - //protected PMatrix3D bezierForwardMatrix; - protected PMatrix3D bezierDrawMatrix; - - // ........................................................ - - protected boolean curveInited = false; - protected int curveDetail = 20; - public float curveTightness = 0; - // catmull-rom basis matrix, perhaps with optional s parameter - protected PMatrix3D curveBasisMatrix; - protected PMatrix3D curveDrawMatrix; - - protected PMatrix3D bezierBasisInverse; - protected PMatrix3D curveToBezierMatrix; - - // ........................................................ - - // spline vertices - - protected float curveVertices[][]; - protected int curveVertexCount; - - // ........................................................ - - // precalculate sin/cos lookup tables [toxi] - // circle resolution is determined from the actual used radii - // passed to ellipse() method. this will automatically take any - // scale transformations into account too - - // [toxi 031031] - // changed table's precision to 0.5 degree steps - // introduced new vars for more flexible code - static final protected float sinLUT[]; - static final protected float cosLUT[]; - static final protected float SINCOS_PRECISION = 0.5f; - static final protected int SINCOS_LENGTH = (int) (360f / SINCOS_PRECISION); - static { - sinLUT = new float[SINCOS_LENGTH]; - cosLUT = new float[SINCOS_LENGTH]; - for (int i = 0; i < SINCOS_LENGTH; i++) { - sinLUT[i] = (float) Math.sin(i * DEG_TO_RAD * SINCOS_PRECISION); - cosLUT[i] = (float) Math.cos(i * DEG_TO_RAD * SINCOS_PRECISION); - } - } - - // ........................................................ - - /** The current font if a Java version of it is installed */ - //protected Font textFontNative; - - /** Metrics for the current native Java font */ - //protected FontMetrics textFontNativeMetrics; - - /** Last text position, because text often mixed on lines together */ - protected float textX, textY, textZ; - - /** - * Internal buffer used by the text() functions - * because the String object is slow - */ - protected char[] textBuffer = new char[8 * 1024]; - protected char[] textWidthBuffer = new char[8 * 1024]; - - protected int textBreakCount; - protected int[] textBreakStart; - protected int[] textBreakStop; - - // ........................................................ - - public boolean edge = true; - - // ........................................................ - - /// normal calculated per triangle - static protected final int NORMAL_MODE_AUTO = 0; - /// one normal manually specified per shape - static protected final int NORMAL_MODE_SHAPE = 1; - /// normals specified for each shape vertex - static protected final int NORMAL_MODE_VERTEX = 2; - - /// Current mode for normals, one of AUTO, SHAPE, or VERTEX - protected int normalMode; - - /// Keep track of how many calls to normal, to determine the mode. - //protected int normalCount; - - /** Current normal vector. */ - public float normalX, normalY, normalZ; - - // ........................................................ - - /** - * Sets whether texture coordinates passed to - * vertex() calls will be based on coordinates that are - * based on the IMAGE or NORMALIZED. - */ - public int textureMode; - - /** - * Current horizontal coordinate for texture, will always - * be between 0 and 1, even if using textureMode(IMAGE). - */ - public float textureU; - - /** Current vertical coordinate for texture, see above. */ - public float textureV; - - /** Current image being used as a texture */ - public PImage textureImage; - - // ........................................................ - - // [toxi031031] new & faster sphere code w/ support flexibile resolutions - // will be set by sphereDetail() or 1st call to sphere() - float sphereX[], sphereY[], sphereZ[]; - - /// Number of U steps (aka "theta") around longitudinally spanning 2*pi - public int sphereDetailU = 0; - /// Number of V steps (aka "phi") along latitudinally top-to-bottom spanning pi - public int sphereDetailV = 0; - - - ////////////////////////////////////////////////////////////// - - // INTERNAL - - - /** - * Constructor for the PGraphics object. Use this to ensure that - * the defaults get set properly. In a subclass, use this(w, h) - * as the first line of a subclass' constructor to properly set - * the internal fields and defaults. - * - */ - public PGraphics() { - } - - - public void setParent(PApplet parent) { // ignore - this.parent = parent; - } - - - /** - * Set (or unset) this as the main drawing surface. Meaning that it can - * safely be set to opaque (and given a default gray background), or anything - * else that goes along with that. - */ - public void setPrimary(boolean primary) { // ignore - this.primarySurface = primary; - - // base images must be opaque (for performance and general - // headache reasons.. argh, a semi-transparent opengl surface?) - // use createGraphics() if you want a transparent surface. - if (primarySurface) { - format = RGB; - } - } - - - public void setPath(String path) { // ignore - this.path = path; - } - - - /** - * The final step in setting up a renderer, set its size of this renderer. - * This was formerly handled by the constructor, but instead it's been broken - * out so that setParent/setPrimary/setPath can be handled differently. - * - * Important that this is ignored by preproc.pl because otherwise it will - * override setSize() in PApplet/Applet/Component, which will 1) not call - * super.setSize(), and 2) will cause the renderer to be resized from the - * event thread (EDT), causing a nasty crash as it collides with the - * animation thread. - */ - public void setSize(int w, int h) { // ignore - width = w; - height = h; - width1 = width - 1; - height1 = height - 1; - - allocate(); - reapplySettings(); - } - - - /** - * Allocate memory for this renderer. Generally will need to be implemented - * for all renderers. - */ - protected void allocate() { } - - - /** - * Handle any takedown for this graphics context. - *

    - * This is called when a sketch is shut down and this renderer was - * specified using the size() command, or inside endRecord() and - * endRaw(), in order to shut things off. - */ - public void dispose() { // ignore - } - - - - ////////////////////////////////////////////////////////////// - - // FRAME - - - /** - * Some renderers have requirements re: when they are ready to draw. - */ - public boolean canDraw() { // ignore - return true; - } - - - /** - * Sets the default properties for a PGraphics object. It should be called before anything is drawn into the object. - * =advanced - *

    - * When creating your own PGraphics, you should call this before - * drawing anything. - * - * @webref - * @brief Sets up the rendering context - */ - public void beginDraw() { // ignore - } - - - /** - * Finalizes the rendering of a PGraphics object so that it can be shown on screen. - * =advanced - *

    - * When creating your own PGraphics, you should call this when - * you're finished drawing. - * - * @webref - * @brief Finalizes the renderering context - */ - public void endDraw() { // ignore - } - - - public void flush() { - // no-op, mostly for P3D to write sorted stuff - } - - - protected void checkSettings() { - if (!settingsInited) defaultSettings(); - } - - - /** - * Set engine's default values. This has to be called by PApplet, - * somewhere inside setup() or draw() because it talks to the - * graphics buffer, meaning that for subclasses like OpenGL, there - * needs to be a valid graphics context to mess with otherwise - * you'll get some good crashing action. - * - * This is currently called by checkSettings(), during beginDraw(). - */ - protected void defaultSettings() { // ignore -// System.out.println("PGraphics.defaultSettings() " + width + " " + height); - - noSmooth(); // 0149 - - colorMode(RGB, 255); - fill(255); - stroke(0); - - // as of 0178, no longer relying on local versions of the variables - // being set, because subclasses may need to take extra action. - strokeWeight(DEFAULT_STROKE_WEIGHT); - strokeJoin(DEFAULT_STROKE_JOIN); - strokeCap(DEFAULT_STROKE_CAP); - - // init shape stuff - shape = 0; - - // init matrices (must do before lights) - //matrixStackDepth = 0; - - rectMode(CORNER); - ellipseMode(DIAMETER); - - // no current font - textFont = null; - textSize = 12; - textLeading = 14; - textAlign = LEFT; - textMode = MODEL; - - // if this fella is associated with an applet, then clear its background. - // if it's been created by someone else through createGraphics, - // they have to call background() themselves, otherwise everything gets - // a gray background (when just a transparent surface or an empty pdf - // is what's desired). - // this background() call is for the Java 2D and OpenGL renderers. - if (primarySurface) { - //System.out.println("main drawing surface bg " + getClass().getName()); - background(backgroundColor); - } - - settingsInited = true; - // defaultSettings() overlaps reapplySettings(), don't do both - //reapplySettings = false; - } - - - /** - * Re-apply current settings. Some methods, such as textFont(), require that - * their methods be called (rather than simply setting the textFont variable) - * because they affect the graphics context, or they require parameters from - * the context (e.g. getting native fonts for text). - * - * This will only be called from an allocate(), which is only called from - * size(), which is safely called from inside beginDraw(). And it cannot be - * called before defaultSettings(), so we should be safe. - */ - protected void reapplySettings() { -// System.out.println("attempting reapplySettings()"); - if (!settingsInited) return; // if this is the initial setup, no need to reapply - -// System.out.println(" doing reapplySettings"); -// new Exception().printStackTrace(System.out); - - colorMode(colorMode, colorModeX, colorModeY, colorModeZ); - if (fill) { -// PApplet.println(" fill " + PApplet.hex(fillColor)); - fill(fillColor); - } else { - noFill(); - } - if (stroke) { - stroke(strokeColor); - - // The if() statements should be handled inside the functions, - // otherwise an actual reset/revert won't work properly. - //if (strokeWeight != DEFAULT_STROKE_WEIGHT) { - strokeWeight(strokeWeight); - //} -// if (strokeCap != DEFAULT_STROKE_CAP) { - strokeCap(strokeCap); -// } -// if (strokeJoin != DEFAULT_STROKE_JOIN) { - strokeJoin(strokeJoin); -// } - } else { - noStroke(); - } - if (tint) { - tint(tintColor); - } else { - noTint(); - } - if (smooth) { - smooth(); - } else { - // Don't bother setting this, cuz it'll anger P3D. - noSmooth(); - } - if (textFont != null) { -// System.out.println(" textFont in reapply is " + textFont); - // textFont() resets the leading, so save it in case it's changed - float saveLeading = textLeading; - textFont(textFont, textSize); - textLeading(saveLeading); - } - textMode(textMode); - textAlign(textAlign, textAlignY); - background(backgroundColor); - - //reapplySettings = false; - } - - - ////////////////////////////////////////////////////////////// - - // HINTS - - /** - * Set various hints and hacks for the renderer. This is used to handle obscure rendering features that cannot be implemented in a consistent manner across renderers. Many options will often graduate to standard features instead of hints over time. - *

    hint(ENABLE_OPENGL_4X_SMOOTH) - Enable 4x anti-aliasing for OpenGL. This can help force anti-aliasing if it has not been enabled by the user. On some graphics cards, this can also be set by the graphics driver's control panel, however not all cards make this available. This hint must be called immediately after the size() command because it resets the renderer, obliterating any settings and anything drawn (and like size(), re-running the code that came before it again). - *

    hint(DISABLE_OPENGL_2X_SMOOTH) - In Processing 1.0, Processing always enables 2x smoothing when the OpenGL renderer is used. This hint disables the default 2x smoothing and returns the smoothing behavior found in earlier releases, where smooth() and noSmooth() could be used to enable and disable smoothing, though the quality was inferior. - *

    hint(ENABLE_NATIVE_FONTS) - Use the native version fonts when they are installed, rather than the bitmapped version from a .vlw file. This is useful with the JAVA2D renderer setting, as it will improve font rendering speed. This is not enabled by default, because it can be misleading while testing because the type will look great on your machine (because you have the font installed) but lousy on others' machines if the identical font is unavailable. This option can only be set per-sketch, and must be called before any use of textFont(). - *

    hint(DISABLE_DEPTH_TEST) - Disable the zbuffer, allowing you to draw on top of everything at will. When depth testing is disabled, items will be drawn to the screen sequentially, like a painting. This hint is most often used to draw in 3D, then draw in 2D on top of it (for instance, to draw GUI controls in 2D on top of a 3D interface). Starting in release 0149, this will also clear the depth buffer. Restore the default with hint(ENABLE_DEPTH_TEST), but note that with the depth buffer cleared, any 3D drawing that happens later in draw() will ignore existing shapes on the screen. - *

    hint(ENABLE_DEPTH_SORT) - Enable primitive z-sorting of triangles and lines in P3D and OPENGL. This can slow performance considerably, and the algorithm is not yet perfect. Restore the default with hint(DISABLE_DEPTH_SORT). - *

    hint(DISABLE_OPENGL_ERROR_REPORT) - Speeds up the OPENGL renderer setting by not checking for errors while running. Undo with hint(ENABLE_OPENGL_ERROR_REPORT). - *

    As of release 0149, unhint() has been removed in favor of adding additional ENABLE/DISABLE constants to reset the default behavior. This prevents the double negatives, and also reinforces which hints can be enabled or disabled. - * - * @webref rendering - * @param which name of the hint to be enabled or disabled - * - * @see processing.core.PGraphics - * @see processing.core.PApplet#createGraphics(int, int, String, String) - * @see processing.core.PApplet#size(int, int) - */ - public void hint(int which) { - if (which > 0) { - hints[which] = true; - } else { - hints[-which] = false; - } - } - - - - ////////////////////////////////////////////////////////////// - - // VERTEX SHAPES - - /** - * Start a new shape of type POLYGON - */ - public void beginShape() { - beginShape(POLYGON); - } - - - /** - * Start a new shape. - *

    - * Differences between beginShape() and line() and point() methods. - *

    - * beginShape() is intended to be more flexible at the expense of being - * a little more complicated to use. it handles more complicated shapes - * that can consist of many connected lines (so you get joins) or lines - * mixed with curves. - *

    - * The line() and point() command are for the far more common cases - * (particularly for our audience) that simply need to draw a line - * or a point on the screen. - *

    - * From the code side of things, line() may or may not call beginShape() - * to do the drawing. In the beta code, they do, but in the alpha code, - * they did not. they might be implemented one way or the other depending - * on tradeoffs of runtime efficiency vs. implementation efficiency &mdash - * meaning the speed that things run at vs. the speed it takes me to write - * the code and maintain it. for beta, the latter is most important so - * that's how things are implemented. - */ - public void beginShape(int kind) { - shape = kind; - } - - - /** - * Sets whether the upcoming vertex is part of an edge. - * Equivalent to glEdgeFlag(), for people familiar with OpenGL. - */ - public void edge(boolean edge) { - this.edge = edge; - } - - - /** - * Sets the current normal vector. Only applies with 3D rendering - * and inside a beginShape/endShape block. - *

    - * This is for drawing three dimensional shapes and surfaces, - * allowing you to specify a vector perpendicular to the surface - * of the shape, which determines how lighting affects it. - *

    - * For the most part, PGraphics3D will attempt to automatically - * assign normals to shapes, but since that's imperfect, - * this is a better option when you want more control. - *

    - * For people familiar with OpenGL, this function is basically - * identical to glNormal3f(). - */ - public void normal(float nx, float ny, float nz) { - normalX = nx; - normalY = ny; - normalZ = nz; - - // if drawing a shape and the normal hasn't been set yet, - // then we need to set the normals for each vertex so far - if (shape != 0) { - if (normalMode == NORMAL_MODE_AUTO) { - // either they set the normals, or they don't [0149] -// for (int i = vertex_start; i < vertexCount; i++) { -// vertices[i][NX] = normalX; -// vertices[i][NY] = normalY; -// vertices[i][NZ] = normalZ; -// } - // One normal per begin/end shape - normalMode = NORMAL_MODE_SHAPE; - - } else if (normalMode == NORMAL_MODE_SHAPE) { - // a separate normal for each vertex - normalMode = NORMAL_MODE_VERTEX; - } - } - } - - - /** - * Set texture mode to either to use coordinates based on the IMAGE - * (more intuitive for new users) or NORMALIZED (better for advanced chaps) - */ - public void textureMode(int mode) { - this.textureMode = mode; - } - - - /** - * Set texture image for current shape. - * Needs to be called between @see beginShape and @see endShape - * - * @param image reference to a PImage object - */ - public void texture(PImage image) { - textureImage = image; - } - - - protected void vertexCheck() { - if (vertexCount == vertices.length) { - float temp[][] = new float[vertexCount << 1][VERTEX_FIELD_COUNT]; - System.arraycopy(vertices, 0, temp, 0, vertexCount); - vertices = temp; - } - } - - - public void vertex(float x, float y) { - vertexCheck(); - float[] vertex = vertices[vertexCount]; - - curveVertexCount = 0; - - vertex[X] = x; - vertex[Y] = y; - - vertex[EDGE] = edge ? 1 : 0; - -// if (fill) { -// vertex[R] = fillR; -// vertex[G] = fillG; -// vertex[B] = fillB; -// vertex[A] = fillA; -// } - if (fill || textureImage != null) { - if (textureImage == null) { - vertex[R] = fillR; - vertex[G] = fillG; - vertex[B] = fillB; - vertex[A] = fillA; - } else { - if (tint) { - vertex[R] = tintR; - vertex[G] = tintG; - vertex[B] = tintB; - vertex[A] = tintA; - } else { - vertex[R] = 1; - vertex[G] = 1; - vertex[B] = 1; - vertex[A] = 1; - } - } - } - - if (stroke) { - vertex[SR] = strokeR; - vertex[SG] = strokeG; - vertex[SB] = strokeB; - vertex[SA] = strokeA; - vertex[SW] = strokeWeight; - } - - if (textureImage != null) { - vertex[U] = textureU; - vertex[V] = textureV; - } - - vertexCount++; - } - - - public void vertex(float x, float y, float z) { - vertexCheck(); - float[] vertex = vertices[vertexCount]; - - // only do this if we're using an irregular (POLYGON) shape that - // will go through the triangulator. otherwise it'll do thinks like - // disappear in mathematically odd ways - // http://dev.processing.org/bugs/show_bug.cgi?id=444 - if (shape == POLYGON) { - if (vertexCount > 0) { - float pvertex[] = vertices[vertexCount-1]; - if ((Math.abs(pvertex[X] - x) < EPSILON) && - (Math.abs(pvertex[Y] - y) < EPSILON) && - (Math.abs(pvertex[Z] - z) < EPSILON)) { - // this vertex is identical, don't add it, - // because it will anger the triangulator - return; - } - } - } - - // User called vertex(), so that invalidates anything queued up for curve - // vertices. If this is internally called by curveVertexSegment, - // then curveVertexCount will be saved and restored. - curveVertexCount = 0; - - vertex[X] = x; - vertex[Y] = y; - vertex[Z] = z; - - vertex[EDGE] = edge ? 1 : 0; - - if (fill || textureImage != null) { - if (textureImage == null) { - vertex[R] = fillR; - vertex[G] = fillG; - vertex[B] = fillB; - vertex[A] = fillA; - } else { - if (tint) { - vertex[R] = tintR; - vertex[G] = tintG; - vertex[B] = tintB; - vertex[A] = tintA; - } else { - vertex[R] = 1; - vertex[G] = 1; - vertex[B] = 1; - vertex[A] = 1; - } - } - - vertex[AR] = ambientR; - vertex[AG] = ambientG; - vertex[AB] = ambientB; - - vertex[SPR] = specularR; - vertex[SPG] = specularG; - vertex[SPB] = specularB; - //vertex[SPA] = specularA; - - vertex[SHINE] = shininess; - - vertex[ER] = emissiveR; - vertex[EG] = emissiveG; - vertex[EB] = emissiveB; - } - - if (stroke) { - vertex[SR] = strokeR; - vertex[SG] = strokeG; - vertex[SB] = strokeB; - vertex[SA] = strokeA; - vertex[SW] = strokeWeight; - } - - if (textureImage != null) { - vertex[U] = textureU; - vertex[V] = textureV; - } - - vertex[NX] = normalX; - vertex[NY] = normalY; - vertex[NZ] = normalZ; - - vertex[BEEN_LIT] = 0; - - vertexCount++; - } - - - /** - * Used by renderer subclasses or PShape to efficiently pass in already - * formatted vertex information. - * @param v vertex parameters, as a float array of length VERTEX_FIELD_COUNT - */ - public void vertex(float[] v) { - vertexCheck(); - curveVertexCount = 0; - float[] vertex = vertices[vertexCount]; - System.arraycopy(v, 0, vertex, 0, VERTEX_FIELD_COUNT); - vertexCount++; - } - - - public void vertex(float x, float y, float u, float v) { - vertexTexture(u, v); - vertex(x, y); - } - - - public void vertex(float x, float y, float z, float u, float v) { - vertexTexture(u, v); - vertex(x, y, z); - } - - - /** - * Internal method to copy all style information for the given vertex. - * Can be overridden by subclasses to handle only properties pertinent to - * that renderer. (e.g. no need to copy the emissive color in P2D) - */ -// protected void vertexStyle() { -// } - - - /** - * Set (U, V) coords for the next vertex in the current shape. - * This is ugly as its own function, and will (almost?) always be - * coincident with a call to vertex. As of beta, this was moved to - * the protected method you see here, and called from an optional - * param of and overloaded vertex(). - *

    - * The parameters depend on the current textureMode. When using - * textureMode(IMAGE), the coordinates will be relative to the size - * of the image texture, when used with textureMode(NORMAL), - * they'll be in the range 0..1. - *

    - * Used by both PGraphics2D (for images) and PGraphics3D. - */ - protected void vertexTexture(float u, float v) { - if (textureImage == null) { - throw new RuntimeException("You must first call texture() before " + - "using u and v coordinates with vertex()"); - } - if (textureMode == IMAGE) { - u /= (float) textureImage.width; - v /= (float) textureImage.height; - } - - textureU = u; - textureV = v; - - if (textureU < 0) textureU = 0; - else if (textureU > 1) textureU = 1; - - if (textureV < 0) textureV = 0; - else if (textureV > 1) textureV = 1; - } - - - /** This feature is in testing, do not use or rely upon its implementation */ - public void breakShape() { - showWarning("This renderer cannot currently handle concave shapes, " + - "or shapes with holes."); - } - - - public void endShape() { - endShape(OPEN); - } - - - public void endShape(int mode) { - } - - - - ////////////////////////////////////////////////////////////// - - // CURVE/BEZIER VERTEX HANDLING - - - protected void bezierVertexCheck() { - if (shape == 0 || shape != POLYGON) { - throw new RuntimeException("beginShape() or beginShape(POLYGON) " + - "must be used before bezierVertex()"); - } - if (vertexCount == 0) { - throw new RuntimeException("vertex() must be used at least once" + - "before bezierVertex()"); - } - } - - - public void bezierVertex(float x2, float y2, - float x3, float y3, - float x4, float y4) { - bezierInitCheck(); - bezierVertexCheck(); - PMatrix3D draw = bezierDrawMatrix; - - float[] prev = vertices[vertexCount-1]; - float x1 = prev[X]; - float y1 = prev[Y]; - - float xplot1 = draw.m10*x1 + draw.m11*x2 + draw.m12*x3 + draw.m13*x4; - float xplot2 = draw.m20*x1 + draw.m21*x2 + draw.m22*x3 + draw.m23*x4; - float xplot3 = draw.m30*x1 + draw.m31*x2 + draw.m32*x3 + draw.m33*x4; - - float yplot1 = draw.m10*y1 + draw.m11*y2 + draw.m12*y3 + draw.m13*y4; - float yplot2 = draw.m20*y1 + draw.m21*y2 + draw.m22*y3 + draw.m23*y4; - float yplot3 = draw.m30*y1 + draw.m31*y2 + draw.m32*y3 + draw.m33*y4; - - for (int j = 0; j < bezierDetail; j++) { - x1 += xplot1; xplot1 += xplot2; xplot2 += xplot3; - y1 += yplot1; yplot1 += yplot2; yplot2 += yplot3; - vertex(x1, y1); - } - } - - - public void bezierVertex(float x2, float y2, float z2, - float x3, float y3, float z3, - float x4, float y4, float z4) { - bezierInitCheck(); - bezierVertexCheck(); - PMatrix3D draw = bezierDrawMatrix; - - float[] prev = vertices[vertexCount-1]; - float x1 = prev[X]; - float y1 = prev[Y]; - float z1 = prev[Z]; - - float xplot1 = draw.m10*x1 + draw.m11*x2 + draw.m12*x3 + draw.m13*x4; - float xplot2 = draw.m20*x1 + draw.m21*x2 + draw.m22*x3 + draw.m23*x4; - float xplot3 = draw.m30*x1 + draw.m31*x2 + draw.m32*x3 + draw.m33*x4; - - float yplot1 = draw.m10*y1 + draw.m11*y2 + draw.m12*y3 + draw.m13*y4; - float yplot2 = draw.m20*y1 + draw.m21*y2 + draw.m22*y3 + draw.m23*y4; - float yplot3 = draw.m30*y1 + draw.m31*y2 + draw.m32*y3 + draw.m33*y4; - - float zplot1 = draw.m10*z1 + draw.m11*z2 + draw.m12*z3 + draw.m13*z4; - float zplot2 = draw.m20*z1 + draw.m21*z2 + draw.m22*z3 + draw.m23*z4; - float zplot3 = draw.m30*z1 + draw.m31*z2 + draw.m32*z3 + draw.m33*z4; - - for (int j = 0; j < bezierDetail; j++) { - x1 += xplot1; xplot1 += xplot2; xplot2 += xplot3; - y1 += yplot1; yplot1 += yplot2; yplot2 += yplot3; - z1 += zplot1; zplot1 += zplot2; zplot2 += zplot3; - vertex(x1, y1, z1); - } - } - - - /** - * Perform initialization specific to curveVertex(), and handle standard - * error modes. Can be overridden by subclasses that need the flexibility. - */ - protected void curveVertexCheck() { - if (shape != POLYGON) { - throw new RuntimeException("You must use beginShape() or " + - "beginShape(POLYGON) before curveVertex()"); - } - // to improve code init time, allocate on first use. - if (curveVertices == null) { - curveVertices = new float[128][3]; - } - - if (curveVertexCount == curveVertices.length) { - // Can't use PApplet.expand() cuz it doesn't do the copy properly - float[][] temp = new float[curveVertexCount << 1][3]; - System.arraycopy(curveVertices, 0, temp, 0, curveVertexCount); - curveVertices = temp; - } - curveInitCheck(); - } - - - public void curveVertex(float x, float y) { - curveVertexCheck(); - float[] vertex = curveVertices[curveVertexCount]; - vertex[X] = x; - vertex[Y] = y; - curveVertexCount++; - - // draw a segment if there are enough points - if (curveVertexCount > 3) { - curveVertexSegment(curveVertices[curveVertexCount-4][X], - curveVertices[curveVertexCount-4][Y], - curveVertices[curveVertexCount-3][X], - curveVertices[curveVertexCount-3][Y], - curveVertices[curveVertexCount-2][X], - curveVertices[curveVertexCount-2][Y], - curveVertices[curveVertexCount-1][X], - curveVertices[curveVertexCount-1][Y]); - } - } - - - public void curveVertex(float x, float y, float z) { - curveVertexCheck(); - float[] vertex = curveVertices[curveVertexCount]; - vertex[X] = x; - vertex[Y] = y; - vertex[Z] = z; - curveVertexCount++; - - // draw a segment if there are enough points - if (curveVertexCount > 3) { - curveVertexSegment(curveVertices[curveVertexCount-4][X], - curveVertices[curveVertexCount-4][Y], - curveVertices[curveVertexCount-4][Z], - curveVertices[curveVertexCount-3][X], - curveVertices[curveVertexCount-3][Y], - curveVertices[curveVertexCount-3][Z], - curveVertices[curveVertexCount-2][X], - curveVertices[curveVertexCount-2][Y], - curveVertices[curveVertexCount-2][Z], - curveVertices[curveVertexCount-1][X], - curveVertices[curveVertexCount-1][Y], - curveVertices[curveVertexCount-1][Z]); - } - } - - - /** - * Handle emitting a specific segment of Catmull-Rom curve. This can be - * overridden by subclasses that need more efficient rendering options. - */ - protected void curveVertexSegment(float x1, float y1, - float x2, float y2, - float x3, float y3, - float x4, float y4) { - float x0 = x2; - float y0 = y2; - - PMatrix3D draw = curveDrawMatrix; - - float xplot1 = draw.m10*x1 + draw.m11*x2 + draw.m12*x3 + draw.m13*x4; - float xplot2 = draw.m20*x1 + draw.m21*x2 + draw.m22*x3 + draw.m23*x4; - float xplot3 = draw.m30*x1 + draw.m31*x2 + draw.m32*x3 + draw.m33*x4; - - float yplot1 = draw.m10*y1 + draw.m11*y2 + draw.m12*y3 + draw.m13*y4; - float yplot2 = draw.m20*y1 + draw.m21*y2 + draw.m22*y3 + draw.m23*y4; - float yplot3 = draw.m30*y1 + draw.m31*y2 + draw.m32*y3 + draw.m33*y4; - - // vertex() will reset splineVertexCount, so save it - int savedCount = curveVertexCount; - - vertex(x0, y0); - for (int j = 0; j < curveDetail; j++) { - x0 += xplot1; xplot1 += xplot2; xplot2 += xplot3; - y0 += yplot1; yplot1 += yplot2; yplot2 += yplot3; - vertex(x0, y0); - } - curveVertexCount = savedCount; - } - - - /** - * Handle emitting a specific segment of Catmull-Rom curve. This can be - * overridden by subclasses that need more efficient rendering options. - */ - protected void curveVertexSegment(float x1, float y1, float z1, - float x2, float y2, float z2, - float x3, float y3, float z3, - float x4, float y4, float z4) { - float x0 = x2; - float y0 = y2; - float z0 = z2; - - PMatrix3D draw = curveDrawMatrix; - - float xplot1 = draw.m10*x1 + draw.m11*x2 + draw.m12*x3 + draw.m13*x4; - float xplot2 = draw.m20*x1 + draw.m21*x2 + draw.m22*x3 + draw.m23*x4; - float xplot3 = draw.m30*x1 + draw.m31*x2 + draw.m32*x3 + draw.m33*x4; - - float yplot1 = draw.m10*y1 + draw.m11*y2 + draw.m12*y3 + draw.m13*y4; - float yplot2 = draw.m20*y1 + draw.m21*y2 + draw.m22*y3 + draw.m23*y4; - float yplot3 = draw.m30*y1 + draw.m31*y2 + draw.m32*y3 + draw.m33*y4; - - // vertex() will reset splineVertexCount, so save it - int savedCount = curveVertexCount; - - float zplot1 = draw.m10*z1 + draw.m11*z2 + draw.m12*z3 + draw.m13*z4; - float zplot2 = draw.m20*z1 + draw.m21*z2 + draw.m22*z3 + draw.m23*z4; - float zplot3 = draw.m30*z1 + draw.m31*z2 + draw.m32*z3 + draw.m33*z4; - - vertex(x0, y0, z0); - for (int j = 0; j < curveDetail; j++) { - x0 += xplot1; xplot1 += xplot2; xplot2 += xplot3; - y0 += yplot1; yplot1 += yplot2; yplot2 += yplot3; - z0 += zplot1; zplot1 += zplot2; zplot2 += zplot3; - vertex(x0, y0, z0); - } - curveVertexCount = savedCount; - } - - - - ////////////////////////////////////////////////////////////// - - // SIMPLE SHAPES WITH ANALOGUES IN beginShape() - - - public void point(float x, float y) { - beginShape(POINTS); - vertex(x, y); - endShape(); - } - - - /** - * Draws a point, a coordinate in space at the dimension of one pixel. - * The first parameter is the horizontal value for the point, the second - * value is the vertical value for the point, and the optional third value - * is the depth value. Drawing this shape in 3D using the z - * parameter requires the P3D or OPENGL parameter in combination with - * size as shown in the above example. - *

    Due to what appears to be a bug in Apple's Java implementation, - * the point() and set() methods are extremely slow in some circumstances - * when used with the default renderer. Using P2D or P3D will fix the - * problem. Grouping many calls to point() or set() together can also - * help. (Bug 1094) - * - * @webref shape:2d_primitives - * @param x x-coordinate of the point - * @param y y-coordinate of the point - * @param z z-coordinate of the point - * - * @see PGraphics#beginShape() - */ - public void point(float x, float y, float z) { - beginShape(POINTS); - vertex(x, y, z); - endShape(); - } - - - public void line(float x1, float y1, float x2, float y2) { - beginShape(LINES); - vertex(x1, y1); - vertex(x2, y2); - endShape(); - } - - - - /** - * Draws a line (a direct path between two points) to the screen. - * The version of line() with four parameters draws the line in 2D. - * To color a line, use the stroke() function. A line cannot be - * filled, therefore the fill() method will not affect the color - * of a line. 2D lines are drawn with a width of one pixel by default, - * but this can be changed with the strokeWeight() function. - * The version with six parameters allows the line to be placed anywhere - * within XYZ space. Drawing this shape in 3D using the z parameter - * requires the P3D or OPENGL parameter in combination with size as shown - * in the above example. - * - * @webref shape:2d_primitives - * @param x1 x-coordinate of the first point - * @param y1 y-coordinate of the first point - * @param z1 z-coordinate of the first point - * @param x2 x-coordinate of the second point - * @param y2 y-coordinate of the second point - * @param z2 z-coordinate of the second point - * - * @see PGraphics#strokeWeight(float) - * @see PGraphics#strokeJoin(int) - * @see PGraphics#strokeCap(int) - * @see PGraphics#beginShape() - */ - public void line(float x1, float y1, float z1, - float x2, float y2, float z2) { - beginShape(LINES); - vertex(x1, y1, z1); - vertex(x2, y2, z2); - endShape(); - } - - - /** - * A triangle is a plane created by connecting three points. The first two - * arguments specify the first point, the middle two arguments specify - * the second point, and the last two arguments specify the third point. - * - * @webref shape:2d_primitives - * @param x1 x-coordinate of the first point - * @param y1 y-coordinate of the first point - * @param x2 x-coordinate of the second point - * @param y2 y-coordinate of the second point - * @param x3 x-coordinate of the third point - * @param y3 y-coordinate of the third point - * - * @see PApplet#beginShape() - */ - public void triangle(float x1, float y1, float x2, float y2, - float x3, float y3) { - beginShape(TRIANGLES); - vertex(x1, y1); - vertex(x2, y2); - vertex(x3, y3); - endShape(); - } - - - /** - * A quad is a quadrilateral, a four sided polygon. It is similar to - * a rectangle, but the angles between its edges are not constrained - * ninety degrees. The first pair of parameters (x1,y1) sets the - * first vertex and the subsequent pairs should proceed clockwise or - * counter-clockwise around the defined shape. - * - * @webref shape:2d_primitives - * @param x1 x-coordinate of the first corner - * @param y1 y-coordinate of the first corner - * @param x2 x-coordinate of the second corner - * @param y2 y-coordinate of the second corner - * @param x3 x-coordinate of the third corner - * @param y3 y-coordinate of the third corner - * @param x4 x-coordinate of the fourth corner - * @param y4 y-coordinate of the fourth corner - * - */ - public void quad(float x1, float y1, float x2, float y2, - float x3, float y3, float x4, float y4) { - beginShape(QUADS); - vertex(x1, y1); - vertex(x2, y2); - vertex(x3, y3); - vertex(x4, y4); - endShape(); - } - - - - ////////////////////////////////////////////////////////////// - - // RECT - - - public void rectMode(int mode) { - rectMode = mode; - } - - - /** - * Draws a rectangle to the screen. A rectangle is a four-sided shape with - * every angle at ninety degrees. The first two parameters set the location, - * the third sets the width, and the fourth sets the height. The origin is - * changed with the rectMode() function. - * - * @webref shape:2d_primitives - * @param a x-coordinate of the rectangle - * @param b y-coordinate of the rectangle - * @param c width of the rectangle - * @param d height of the rectangle - * - * @see PGraphics#rectMode(int) - * @see PGraphics#quad(float, float, float, float, float, float, float, float) - */ - public void rect(float a, float b, float c, float d) { - float hradius, vradius; - switch (rectMode) { - case CORNERS: - break; - case CORNER: - c += a; d += b; - break; - case RADIUS: - hradius = c; - vradius = d; - c = a + hradius; - d = b + vradius; - a -= hradius; - b -= vradius; - break; - case CENTER: - hradius = c / 2.0f; - vradius = d / 2.0f; - c = a + hradius; - d = b + vradius; - a -= hradius; - b -= vradius; - } - - if (a > c) { - float temp = a; a = c; c = temp; - } - - if (b > d) { - float temp = b; b = d; d = temp; - } - - rectImpl(a, b, c, d); - } - - - protected void rectImpl(float x1, float y1, float x2, float y2) { - quad(x1, y1, x2, y1, x2, y2, x1, y2); - } - - - - ////////////////////////////////////////////////////////////// - - // ELLIPSE AND ARC - - - /** - * The origin of the ellipse is modified by the ellipseMode() - * function. The default configuration is ellipseMode(CENTER), - * which specifies the location of the ellipse as the center of the shape. - * The RADIUS mode is the same, but the width and height parameters to - * ellipse() specify the radius of the ellipse, rather than the - * diameter. The CORNER mode draws the shape from the upper-left corner - * of its bounding box. The CORNERS mode uses the four parameters to - * ellipse() to set two opposing corners of the ellipse's bounding - * box. The parameter must be written in "ALL CAPS" because Processing - * syntax is case sensitive. - * - * @webref shape:attributes - * - * @param mode Either CENTER, RADIUS, CORNER, or CORNERS. - * @see PApplet#ellipse(float, float, float, float) - */ - public void ellipseMode(int mode) { - ellipseMode = mode; - } - - - /** - * Draws an ellipse (oval) in the display window. An ellipse with an equal - * width and height is a circle. The first two parameters set - * the location, the third sets the width, and the fourth sets the height. - * The origin may be changed with the ellipseMode() function. - * - * @webref shape:2d_primitives - * @param a x-coordinate of the ellipse - * @param b y-coordinate of the ellipse - * @param c width of the ellipse - * @param d height of the ellipse - * - * @see PApplet#ellipseMode(int) - */ - public void ellipse(float a, float b, float c, float d) { - float x = a; - float y = b; - float w = c; - float h = d; - - if (ellipseMode == CORNERS) { - w = c - a; - h = d - b; - - } else if (ellipseMode == RADIUS) { - x = a - c; - y = b - d; - w = c * 2; - h = d * 2; - - } else if (ellipseMode == DIAMETER) { - x = a - c/2f; - y = b - d/2f; - } - - if (w < 0) { // undo negative width - x += w; - w = -w; - } - - if (h < 0) { // undo negative height - y += h; - h = -h; - } - - ellipseImpl(x, y, w, h); - } - - - protected void ellipseImpl(float x, float y, float w, float h) { - } - - - /** - * Draws an arc in the display window. - * Arcs are drawn along the outer edge of an ellipse defined by the - * x, y, width and height parameters. - * The origin or the arc's ellipse may be changed with the - * ellipseMode() function. - * The start and stop parameters specify the angles - * at which to draw the arc. - * - * @webref shape:2d_primitives - * @param a x-coordinate of the arc's ellipse - * @param b y-coordinate of the arc's ellipse - * @param c width of the arc's ellipse - * @param d height of the arc's ellipse - * @param start angle to start the arc, specified in radians - * @param stop angle to stop the arc, specified in radians - * - * @see PGraphics#ellipseMode(int) - * @see PGraphics#ellipse(float, float, float, float) - */ - public void arc(float a, float b, float c, float d, - float start, float stop) { - float x = a; - float y = b; - float w = c; - float h = d; - - if (ellipseMode == CORNERS) { - w = c - a; - h = d - b; - - } else if (ellipseMode == RADIUS) { - x = a - c; - y = b - d; - w = c * 2; - h = d * 2; - - } else if (ellipseMode == CENTER) { - x = a - c/2f; - y = b - d/2f; - } - - // make sure this loop will exit before starting while - if (Float.isInfinite(start) || Float.isInfinite(stop)) return; -// while (stop < start) stop += TWO_PI; - if (stop < start) return; // why bother - - // make sure that we're starting at a useful point - while (start < 0) { - start += TWO_PI; - stop += TWO_PI; - } - - if (stop - start > TWO_PI) { - start = 0; - stop = TWO_PI; - } - - arcImpl(x, y, w, h, start, stop); - } - - - /** - * Start and stop are in radians, converted by the parent function. - * Note that the radians can be greater (or less) than TWO_PI. - * This is so that an arc can be drawn that crosses zero mark, - * and the user will still collect $200. - */ - protected void arcImpl(float x, float y, float w, float h, - float start, float stop) { - } - - - - ////////////////////////////////////////////////////////////// - - // BOX - - - /** - * @param size dimension of the box in all dimensions, creates a cube - */ - public void box(float size) { - box(size, size, size); - } - - - /** - * A box is an extruded rectangle. A box with equal dimension - * on all sides is a cube. - * - * @webref shape:3d_primitives - * @param w dimension of the box in the x-dimension - * @param h dimension of the box in the y-dimension - * @param d dimension of the box in the z-dimension - * - * @see PApplet#sphere(float) - */ - public void box(float w, float h, float d) { - float x1 = -w/2f; float x2 = w/2f; - float y1 = -h/2f; float y2 = h/2f; - float z1 = -d/2f; float z2 = d/2f; - - // TODO not the least bit efficient, it even redraws lines - // along the vertices. ugly ugly ugly! - - beginShape(QUADS); - - // front - normal(0, 0, 1); - vertex(x1, y1, z1); - vertex(x2, y1, z1); - vertex(x2, y2, z1); - vertex(x1, y2, z1); - - // right - normal(1, 0, 0); - vertex(x2, y1, z1); - vertex(x2, y1, z2); - vertex(x2, y2, z2); - vertex(x2, y2, z1); - - // back - normal(0, 0, -1); - vertex(x2, y1, z2); - vertex(x1, y1, z2); - vertex(x1, y2, z2); - vertex(x2, y2, z2); - - // left - normal(-1, 0, 0); - vertex(x1, y1, z2); - vertex(x1, y1, z1); - vertex(x1, y2, z1); - vertex(x1, y2, z2); - - // top - normal(0, 1, 0); - vertex(x1, y1, z2); - vertex(x2, y1, z2); - vertex(x2, y1, z1); - vertex(x1, y1, z1); - - // bottom - normal(0, -1, 0); - vertex(x1, y2, z1); - vertex(x2, y2, z1); - vertex(x2, y2, z2); - vertex(x1, y2, z2); - - endShape(); - } - - - - ////////////////////////////////////////////////////////////// - - // SPHERE - - - /** - * @param res number of segments (minimum 3) used per full circle revolution - */ - public void sphereDetail(int res) { - sphereDetail(res, res); - } - - - /** - * Controls the detail used to render a sphere by adjusting the number of - * vertices of the sphere mesh. The default resolution is 30, which creates - * a fairly detailed sphere definition with vertices every 360/30 = 12 - * degrees. If you're going to render a great number of spheres per frame, - * it is advised to reduce the level of detail using this function. - * The setting stays active until sphereDetail() is called again with - * a new parameter and so should not be called prior to every - * sphere() statement, unless you wish to render spheres with - * different settings, e.g. using less detail for smaller spheres or ones - * further away from the camera. To control the detail of the horizontal - * and vertical resolution independently, use the version of the functions - * with two parameters. - * - * =advanced - * Code for sphereDetail() submitted by toxi [031031]. - * Code for enhanced u/v version from davbol [080801]. - * - * @webref shape:3d_primitives - * @param ures number of segments used horizontally (longitudinally) - * per full circle revolution - * @param vres number of segments used vertically (latitudinally) - * from top to bottom - * - * @see PGraphics#sphere(float) - */ - /** - * Set the detail level for approximating a sphere. The ures and vres params - * control the horizontal and vertical resolution. - * - */ - public void sphereDetail(int ures, int vres) { - if (ures < 3) ures = 3; // force a minimum res - if (vres < 2) vres = 2; // force a minimum res - if ((ures == sphereDetailU) && (vres == sphereDetailV)) return; - - float delta = (float)SINCOS_LENGTH/ures; - float[] cx = new float[ures]; - float[] cz = new float[ures]; - // calc unit circle in XZ plane - for (int i = 0; i < ures; i++) { - cx[i] = cosLUT[(int) (i*delta) % SINCOS_LENGTH]; - cz[i] = sinLUT[(int) (i*delta) % SINCOS_LENGTH]; - } - // computing vertexlist - // vertexlist starts at south pole - int vertCount = ures * (vres-1) + 2; - int currVert = 0; - - // re-init arrays to store vertices - sphereX = new float[vertCount]; - sphereY = new float[vertCount]; - sphereZ = new float[vertCount]; - - float angle_step = (SINCOS_LENGTH*0.5f)/vres; - float angle = angle_step; - - // step along Y axis - for (int i = 1; i < vres; i++) { - float curradius = sinLUT[(int) angle % SINCOS_LENGTH]; - float currY = -cosLUT[(int) angle % SINCOS_LENGTH]; - for (int j = 0; j < ures; j++) { - sphereX[currVert] = cx[j] * curradius; - sphereY[currVert] = currY; - sphereZ[currVert++] = cz[j] * curradius; - } - angle += angle_step; - } - sphereDetailU = ures; - sphereDetailV = vres; - } - - - /** - * Draw a sphere with radius r centered at coordinate 0, 0, 0. - * A sphere is a hollow ball made from tessellated triangles. - * =advanced - *

    - * Implementation notes: - *

    - * cache all the points of the sphere in a static array - * top and bottom are just a bunch of triangles that land - * in the center point - *

    - * sphere is a series of concentric circles who radii vary - * along the shape, based on, er.. cos or something - *

    -   * [toxi 031031] new sphere code. removed all multiplies with
    -   * radius, as scale() will take care of that anyway
    -   *
    -   * [toxi 031223] updated sphere code (removed modulos)
    -   * and introduced sphereAt(x,y,z,r)
    -   * to avoid additional translate()'s on the user/sketch side
    -   *
    -   * [davbol 080801] now using separate sphereDetailU/V
    -   * 
    - * - * @webref shape:3d_primitives - * @param r the radius of the sphere - */ - public void sphere(float r) { - if ((sphereDetailU < 3) || (sphereDetailV < 2)) { - sphereDetail(30); - } - - pushMatrix(); - scale(r); - edge(false); - - // 1st ring from south pole - beginShape(TRIANGLE_STRIP); - for (int i = 0; i < sphereDetailU; i++) { - normal(0, -1, 0); - vertex(0, -1, 0); - normal(sphereX[i], sphereY[i], sphereZ[i]); - vertex(sphereX[i], sphereY[i], sphereZ[i]); - } - //normal(0, -1, 0); - vertex(0, -1, 0); - normal(sphereX[0], sphereY[0], sphereZ[0]); - vertex(sphereX[0], sphereY[0], sphereZ[0]); - endShape(); - - int v1,v11,v2; - - // middle rings - int voff = 0; - for (int i = 2; i < sphereDetailV; i++) { - v1 = v11 = voff; - voff += sphereDetailU; - v2 = voff; - beginShape(TRIANGLE_STRIP); - for (int j = 0; j < sphereDetailU; j++) { - normal(sphereX[v1], sphereY[v1], sphereZ[v1]); - vertex(sphereX[v1], sphereY[v1], sphereZ[v1++]); - normal(sphereX[v2], sphereY[v2], sphereZ[v2]); - vertex(sphereX[v2], sphereY[v2], sphereZ[v2++]); - } - // close each ring - v1 = v11; - v2 = voff; - normal(sphereX[v1], sphereY[v1], sphereZ[v1]); - vertex(sphereX[v1], sphereY[v1], sphereZ[v1]); - normal(sphereX[v2], sphereY[v2], sphereZ[v2]); - vertex(sphereX[v2], sphereY[v2], sphereZ[v2]); - endShape(); - } - - // add the northern cap - beginShape(TRIANGLE_STRIP); - for (int i = 0; i < sphereDetailU; i++) { - v2 = voff + i; - normal(sphereX[v2], sphereY[v2], sphereZ[v2]); - vertex(sphereX[v2], sphereY[v2], sphereZ[v2]); - normal(0, 1, 0); - vertex(0, 1, 0); - } - normal(sphereX[voff], sphereY[voff], sphereZ[voff]); - vertex(sphereX[voff], sphereY[voff], sphereZ[voff]); - normal(0, 1, 0); - vertex(0, 1, 0); - endShape(); - - edge(true); - popMatrix(); - } - - - - ////////////////////////////////////////////////////////////// - - // BEZIER - - /** - * Evaluates the Bezier at point t for points a, b, c, d. The parameter t varies between 0 and 1, a and d are points on the curve, and b and c are the control points. This can be done once with the x coordinates and a second time with the y coordinates to get the location of a bezier curve at t. - */ - - /** - * Evalutes quadratic bezier at point t for points a, b, c, d. - * The parameter t varies between 0 and 1. The a and d parameters are the - * on-curve points, b and c are the control points. To make a two-dimensional - * curve, call this function once with the x coordinates and a second time - * with the y coordinates to get the location of a bezier curve at t. - * - * =advanced - * For instance, to convert the following example:
    -   * stroke(255, 102, 0);
    -   * line(85, 20, 10, 10);
    -   * line(90, 90, 15, 80);
    -   * stroke(0, 0, 0);
    -   * bezier(85, 20, 10, 10, 90, 90, 15, 80);
    -   *
    -   * // draw it in gray, using 10 steps instead of the default 20
    -   * // this is a slower way to do it, but useful if you need
    -   * // to do things with the coordinates at each step
    -   * stroke(128);
    -   * beginShape(LINE_STRIP);
    -   * for (int i = 0; i <= 10; i++) {
    -   *   float t = i / 10.0f;
    -   *   float x = bezierPoint(85, 10, 90, 15, t);
    -   *   float y = bezierPoint(20, 10, 90, 80, t);
    -   *   vertex(x, y);
    -   * }
    -   * endShape();
    - * - * @webref shape:curves - * @param a coordinate of first point on the curve - * @param b coordinate of first control point - * @param c coordinate of second control point - * @param d coordinate of second point on the curve - * @param t value between 0 and 1 - * - * @see PGraphics#bezier(float, float, float, float, float, float, float, float, float, float, float, float) - * @see PGraphics#bezierVertex(float, float, float, float, float, float) - * @see PGraphics#curvePoint(float, float, float, float, float) - */ - public float bezierPoint(float a, float b, float c, float d, float t) { - float t1 = 1.0f - t; - return a*t1*t1*t1 + 3*b*t*t1*t1 + 3*c*t*t*t1 + d*t*t*t; - } - - - /** - * Calculates the tangent of a point on a Bezier curve. There is a good - * definition of "tangent" at Wikipedia: http://en.wikipedia.org/wiki/Tangent - * - * =advanced - * Code submitted by Dave Bollinger (davol) for release 0136. - * - * @webref shape:curves - * @param a coordinate of first point on the curve - * @param b coordinate of first control point - * @param c coordinate of second control point - * @param d coordinate of second point on the curve - * @param t value between 0 and 1 - * - * @see PGraphics#bezier(float, float, float, float, float, float, float, float, float, float, float, float) - * @see PGraphics#bezierVertex(float, float, float, float, float, float) - * @see PGraphics#curvePoint(float, float, float, float, float) - */ - public float bezierTangent(float a, float b, float c, float d, float t) { - return (3*t*t * (-a+3*b-3*c+d) + - 6*t * (a-2*b+c) + - 3 * (-a+b)); - } - - - protected void bezierInitCheck() { - if (!bezierInited) { - bezierInit(); - } - } - - - protected void bezierInit() { - // overkill to be broken out, but better parity with the curve stuff below - bezierDetail(bezierDetail); - bezierInited = true; - } - - - /** - * Sets the resolution at which Beziers display. The default value is 20. This function is only useful when using the P3D or OPENGL renderer as the default (JAVA2D) renderer does not use this information. - * - * @webref shape:curves - * @param detail resolution of the curves - * - * @see PApplet#curve(float, float, float, float, float, float, float, float, float, float, float, float) - * @see PApplet#curveVertex(float, float) - * @see PApplet#curveTightness(float) - */ - public void bezierDetail(int detail) { - bezierDetail = detail; - - if (bezierDrawMatrix == null) { - bezierDrawMatrix = new PMatrix3D(); - } - - // setup matrix for forward differencing to speed up drawing - splineForward(detail, bezierDrawMatrix); - - // multiply the basis and forward diff matrices together - // saves much time since this needn't be done for each curve - //mult_spline_matrix(bezierForwardMatrix, bezier_basis, bezierDrawMatrix, 4); - //bezierDrawMatrix.set(bezierForwardMatrix); - bezierDrawMatrix.apply(bezierBasisMatrix); - } - - - /** - * Draws a Bezier curve on the screen. These curves are defined by a series - * of anchor and control points. The first two parameters specify the first - * anchor point and the last two parameters specify the other anchor point. - * The middle parameters specify the control points which define the shape - * of the curve. Bezier curves were developed by French engineer Pierre - * Bezier. Using the 3D version of requires rendering with P3D or OPENGL - * (see the Environment reference for more information). - * - * =advanced - * Draw a cubic bezier curve. The first and last points are - * the on-curve points. The middle two are the 'control' points, - * or 'handles' in an application like Illustrator. - *

    - * Identical to typing: - *

    beginShape();
    -   * vertex(x1, y1);
    -   * bezierVertex(x2, y2, x3, y3, x4, y4);
    -   * endShape();
    -   * 
    - * In Postscript-speak, this would be: - *
    moveto(x1, y1);
    -   * curveto(x2, y2, x3, y3, x4, y4);
    - * If you were to try and continue that curve like so: - *
    curveto(x5, y5, x6, y6, x7, y7);
    - * This would be done in processing by adding these statements: - *
    bezierVertex(x5, y5, x6, y6, x7, y7)
    -   * 
    - * To draw a quadratic (instead of cubic) curve, - * use the control point twice by doubling it: - *
    bezier(x1, y1, cx, cy, cx, cy, x2, y2);
    - * - * @webref shape:curves - * @param x1 coordinates for the first anchor point - * @param y1 coordinates for the first anchor point - * @param z1 coordinates for the first anchor point - * @param x2 coordinates for the first control point - * @param y2 coordinates for the first control point - * @param z2 coordinates for the first control point - * @param x3 coordinates for the second control point - * @param y3 coordinates for the second control point - * @param z3 coordinates for the second control point - * @param x4 coordinates for the second anchor point - * @param y4 coordinates for the second anchor point - * @param z4 coordinates for the second anchor point - * - * @see PGraphics#bezierVertex(float, float, float, float, float, float) - * @see PGraphics#curve(float, float, float, float, float, float, float, float, float, float, float, float) - */ - public void bezier(float x1, float y1, - float x2, float y2, - float x3, float y3, - float x4, float y4) { - beginShape(); - vertex(x1, y1); - bezierVertex(x2, y2, x3, y3, x4, y4); - endShape(); - } - - - public void bezier(float x1, float y1, float z1, - float x2, float y2, float z2, - float x3, float y3, float z3, - float x4, float y4, float z4) { - beginShape(); - vertex(x1, y1, z1); - bezierVertex(x2, y2, z2, - x3, y3, z3, - x4, y4, z4); - endShape(); - } - - - - ////////////////////////////////////////////////////////////// - - // CATMULL-ROM CURVE - - - /** - * Evalutes the Catmull-Rom curve at point t for points a, b, c, d. The - * parameter t varies between 0 and 1, a and d are points on the curve, - * and b and c are the control points. This can be done once with the x - * coordinates and a second time with the y coordinates to get the - * location of a curve at t. - * - * @webref shape:curves - * @param a coordinate of first point on the curve - * @param b coordinate of second point on the curve - * @param c coordinate of third point on the curve - * @param d coordinate of fourth point on the curve - * @param t value between 0 and 1 - * - * @see PGraphics#curve(float, float, float, float, float, float, float, float, float, float, float, float) - * @see PGraphics#curveVertex(float, float) - * @see PGraphics#bezierPoint(float, float, float, float, float) - */ - public float curvePoint(float a, float b, float c, float d, float t) { - curveInitCheck(); - - float tt = t * t; - float ttt = t * tt; - PMatrix3D cb = curveBasisMatrix; - - // not optimized (and probably need not be) - return (a * (ttt*cb.m00 + tt*cb.m10 + t*cb.m20 + cb.m30) + - b * (ttt*cb.m01 + tt*cb.m11 + t*cb.m21 + cb.m31) + - c * (ttt*cb.m02 + tt*cb.m12 + t*cb.m22 + cb.m32) + - d * (ttt*cb.m03 + tt*cb.m13 + t*cb.m23 + cb.m33)); - } - - - /** - * Calculates the tangent of a point on a Catmull-Rom curve. There is a good definition of "tangent" at Wikipedia: http://en.wikipedia.org/wiki/Tangent. - * - * =advanced - * Code thanks to Dave Bollinger (Bug #715) - * - * @webref shape:curves - * @param a coordinate of first point on the curve - * @param b coordinate of first control point - * @param c coordinate of second control point - * @param d coordinate of second point on the curve - * @param t value between 0 and 1 - * - * @see PGraphics#curve(float, float, float, float, float, float, float, float, float, float, float, float) - * @see PGraphics#curveVertex(float, float) - * @see PGraphics#curvePoint(float, float, float, float, float) - * @see PGraphics#bezierTangent(float, float, float, float, float) - */ - public float curveTangent(float a, float b, float c, float d, float t) { - curveInitCheck(); - - float tt3 = t * t * 3; - float t2 = t * 2; - PMatrix3D cb = curveBasisMatrix; - - // not optimized (and probably need not be) - return (a * (tt3*cb.m00 + t2*cb.m10 + cb.m20) + - b * (tt3*cb.m01 + t2*cb.m11 + cb.m21) + - c * (tt3*cb.m02 + t2*cb.m12 + cb.m22) + - d * (tt3*cb.m03 + t2*cb.m13 + cb.m23) ); - } - - - /** - * Sets the resolution at which curves display. The default value is 20. - * This function is only useful when using the P3D or OPENGL renderer as - * the default (JAVA2D) renderer does not use this information. - * - * @webref shape:curves - * @param detail resolution of the curves - * - * @see PGraphics#curve(float, float, float, float, float, float, float, float, float, float, float, float) - * @see PGraphics#curveVertex(float, float) - * @see PGraphics#curveTightness(float) - */ - public void curveDetail(int detail) { - curveDetail = detail; - curveInit(); - } - - - /** - * Modifies the quality of forms created with curve() and - *curveVertex(). The parameter squishy determines how the - * curve fits to the vertex points. The value 0.0 is the default value for - * squishy (this value defines the curves to be Catmull-Rom splines) - * and the value 1.0 connects all the points with straight lines. - * Values within the range -5.0 and 5.0 will deform the curves but - * will leave them recognizable and as values increase in magnitude, - * they will continue to deform. - * - * @webref shape:curves - * @param tightness amount of deformation from the original vertices - * - * @see PGraphics#curve(float, float, float, float, float, float, float, float, float, float, float, float) - * @see PGraphics#curveVertex(float, float) - * - */ - public void curveTightness(float tightness) { - curveTightness = tightness; - curveInit(); - } - - - protected void curveInitCheck() { - if (!curveInited) { - curveInit(); - } - } - - - /** - * Set the number of segments to use when drawing a Catmull-Rom - * curve, and setting the s parameter, which defines how tightly - * the curve fits to each vertex. Catmull-Rom curves are actually - * a subset of this curve type where the s is set to zero. - *

    - * (This function is not optimized, since it's not expected to - * be called all that often. there are many juicy and obvious - * opimizations in here, but it's probably better to keep the - * code more readable) - */ - protected void curveInit() { - // allocate only if/when used to save startup time - if (curveDrawMatrix == null) { - curveBasisMatrix = new PMatrix3D(); - curveDrawMatrix = new PMatrix3D(); - curveInited = true; - } - - float s = curveTightness; - curveBasisMatrix.set((s-1)/2f, (s+3)/2f, (-3-s)/2f, (1-s)/2f, - (1-s), (-5-s)/2f, (s+2), (s-1)/2f, - (s-1)/2f, 0, (1-s)/2f, 0, - 0, 1, 0, 0); - - //setup_spline_forward(segments, curveForwardMatrix); - splineForward(curveDetail, curveDrawMatrix); - - if (bezierBasisInverse == null) { - bezierBasisInverse = bezierBasisMatrix.get(); - bezierBasisInverse.invert(); - curveToBezierMatrix = new PMatrix3D(); - } - - // TODO only needed for PGraphicsJava2D? if so, move it there - // actually, it's generally useful for other renderers, so keep it - // or hide the implementation elsewhere. - curveToBezierMatrix.set(curveBasisMatrix); - curveToBezierMatrix.preApply(bezierBasisInverse); - - // multiply the basis and forward diff matrices together - // saves much time since this needn't be done for each curve - curveDrawMatrix.apply(curveBasisMatrix); - } - - - /** - * Draws a curved line on the screen. The first and second parameters - * specify the beginning control point and the last two parameters specify - * the ending control point. The middle parameters specify the start and - * stop of the curve. Longer curves can be created by putting a series of - * curve() functions together or using curveVertex(). - * An additional function called curveTightness() provides control - * for the visual quality of the curve. The curve() function is an - * implementation of Catmull-Rom splines. Using the 3D version of requires - * rendering with P3D or OPENGL (see the Environment reference for more - * information). - * - * =advanced - * As of revision 0070, this function no longer doubles the first - * and last points. The curves are a bit more boring, but it's more - * mathematically correct, and properly mirrored in curvePoint(). - *

    - * Identical to typing out:

    -   * beginShape();
    -   * curveVertex(x1, y1);
    -   * curveVertex(x2, y2);
    -   * curveVertex(x3, y3);
    -   * curveVertex(x4, y4);
    -   * endShape();
    -   * 
    - * - * @webref shape:curves - * @param x1 coordinates for the beginning control point - * @param y1 coordinates for the beginning control point - * @param z1 coordinates for the beginning control point - * @param x2 coordinates for the first point - * @param y2 coordinates for the first point - * @param z2 coordinates for the first point - * @param x3 coordinates for the second point - * @param y3 coordinates for the second point - * @param z3 coordinates for the second point - * @param x4 coordinates for the ending control point - * @param y4 coordinates for the ending control point - * @param z4 coordinates for the ending control point - * - * @see PGraphics#curveVertex(float, float) - * @see PGraphics#curveTightness(float) - * @see PGraphics#bezier(float, float, float, float, float, float, float, float, float, float, float, float) - */ - public void curve(float x1, float y1, - float x2, float y2, - float x3, float y3, - float x4, float y4) { - beginShape(); - curveVertex(x1, y1); - curveVertex(x2, y2); - curveVertex(x3, y3); - curveVertex(x4, y4); - endShape(); - } - - - public void curve(float x1, float y1, float z1, - float x2, float y2, float z2, - float x3, float y3, float z3, - float x4, float y4, float z4) { - beginShape(); - curveVertex(x1, y1, z1); - curveVertex(x2, y2, z2); - curveVertex(x3, y3, z3); - curveVertex(x4, y4, z4); - endShape(); - } - - - - ////////////////////////////////////////////////////////////// - - // SPLINE UTILITY FUNCTIONS (used by both Bezier and Catmull-Rom) - - - /** - * Setup forward-differencing matrix to be used for speedy - * curve rendering. It's based on using a specific number - * of curve segments and just doing incremental adds for each - * vertex of the segment, rather than running the mathematically - * expensive cubic equation. - * @param segments number of curve segments to use when drawing - * @param matrix target object for the new matrix - */ - protected void splineForward(int segments, PMatrix3D matrix) { - float f = 1.0f / segments; - float ff = f * f; - float fff = ff * f; - - matrix.set(0, 0, 0, 1, - fff, ff, f, 0, - 6*fff, 2*ff, 0, 0, - 6*fff, 0, 0, 0); - } - - - - ////////////////////////////////////////////////////////////// - - // SMOOTHING - - - /** - * If true in PImage, use bilinear interpolation for copy() - * operations. When inherited by PGraphics, also controls shapes. - */ - public void smooth() { - smooth = true; - } - - - /** - * Disable smoothing. See smooth(). - */ - public void noSmooth() { - smooth = false; - } - - - - ////////////////////////////////////////////////////////////// - - // IMAGE - - - /** - * Modifies the location from which images draw. The default mode is - * imageMode(CORNER), which specifies the location to be the - * upper-left corner and uses the fourth and fifth parameters of - * image() to set the image's width and height. The syntax - * imageMode(CORNERS) uses the second and third parameters of - * image() to set the location of one corner of the image and - * uses the fourth and fifth parameters to set the opposite corner. - * Use imageMode(CENTER) to draw images centered at the given - * x and y position. - *

    The parameter to imageMode() must be written in - * ALL CAPS because Processing syntax is case sensitive. - * - * @webref image:loading_displaying - * @param mode Either CORNER, CORNERS, or CENTER - * - * @see processing.core.PApplet#loadImage(String, String) - * @see processing.core.PImage - * @see processing.core.PApplet#image(PImage, float, float, float, float) - * @see processing.core.PGraphics#background(float, float, float, float) - */ - public void imageMode(int mode) { - if ((mode == CORNER) || (mode == CORNERS) || (mode == CENTER)) { - imageMode = mode; - } else { - String msg = - "imageMode() only works with CORNER, CORNERS, or CENTER"; - throw new RuntimeException(msg); - } - } - - - public void image(PImage image, float x, float y) { - // Starting in release 0144, image errors are simply ignored. - // loadImageAsync() sets width and height to -1 when loading fails. - if (image.width == -1 || image.height == -1) return; - - if (imageMode == CORNER || imageMode == CORNERS) { - imageImpl(image, - x, y, x+image.width, y+image.height, - 0, 0, image.width, image.height); - - } else if (imageMode == CENTER) { - float x1 = x - image.width/2; - float y1 = y - image.height/2; - imageImpl(image, - x1, y1, x1+image.width, y1+image.height, - 0, 0, image.width, image.height); - } - } - - - /** - * Displays images to the screen. The images must be in the sketch's "data" - * directory to load correctly. Select "Add file..." from the "Sketch" menu - * to add the image. Processing currently works with GIF, JPEG, and Targa - * images. The color of an image may be modified with the tint() - * function and if a GIF has transparency, it will maintain its transparency. - * The img parameter specifies the image to display and the x - * and y parameters define the location of the image from its - * upper-left corner. The image is displayed at its original size unless - * the width and height parameters specify a different size. - * The imageMode() function changes the way the parameters work. - * A call to imageMode(CORNERS) will change the width and height - * parameters to define the x and y values of the opposite corner of the - * image. - * - * =advanced - * Starting with release 0124, when using the default (JAVA2D) renderer, - * smooth() will also improve image quality of resized images. - * - * @webref image:loading_displaying - * @param image the image to display - * @param x x-coordinate of the image - * @param y y-coordinate of the image - * @param c width to display the image - * @param d height to display the image - * - * @see processing.core.PApplet#loadImage(String, String) - * @see processing.core.PImage - * @see processing.core.PGraphics#imageMode(int) - * @see processing.core.PGraphics#tint(float) - * @see processing.core.PGraphics#background(float, float, float, float) - * @see processing.core.PGraphics#alpha(int) - */ - public void image(PImage image, float x, float y, float c, float d) { - image(image, x, y, c, d, 0, 0, image.width, image.height); - } - - - /** - * Draw an image(), also specifying u/v coordinates. - * In this method, the u, v coordinates are always based on image space - * location, regardless of the current textureMode(). - */ - public void image(PImage image, - float a, float b, float c, float d, - int u1, int v1, int u2, int v2) { - // Starting in release 0144, image errors are simply ignored. - // loadImageAsync() sets width and height to -1 when loading fails. - if (image.width == -1 || image.height == -1) return; - - if (imageMode == CORNER) { - if (c < 0) { // reset a negative width - a += c; c = -c; - } - if (d < 0) { // reset a negative height - b += d; d = -d; - } - - imageImpl(image, - a, b, a + c, b + d, - u1, v1, u2, v2); - - } else if (imageMode == CORNERS) { - if (c < a) { // reverse because x2 < x1 - float temp = a; a = c; c = temp; - } - if (d < b) { // reverse because y2 < y1 - float temp = b; b = d; d = temp; - } - - imageImpl(image, - a, b, c, d, - u1, v1, u2, v2); - - } else if (imageMode == CENTER) { - // c and d are width/height - if (c < 0) c = -c; - if (d < 0) d = -d; - float x1 = a - c/2; - float y1 = b - d/2; - - imageImpl(image, - x1, y1, x1 + c, y1 + d, - u1, v1, u2, v2); - } - } - - - /** - * Expects x1, y1, x2, y2 coordinates where (x2 >= x1) and (y2 >= y1). - * If tint() has been called, the image will be colored. - *

    - * The default implementation draws an image as a textured quad. - * The (u, v) coordinates are in image space (they're ints, after all..) - */ - protected void imageImpl(PImage image, - float x1, float y1, float x2, float y2, - int u1, int v1, int u2, int v2) { - boolean savedStroke = stroke; -// boolean savedFill = fill; - int savedTextureMode = textureMode; - - stroke = false; -// fill = true; - textureMode = IMAGE; - -// float savedFillR = fillR; -// float savedFillG = fillG; -// float savedFillB = fillB; -// float savedFillA = fillA; -// -// if (tint) { -// fillR = tintR; -// fillG = tintG; -// fillB = tintB; -// fillA = tintA; -// -// } else { -// fillR = 1; -// fillG = 1; -// fillB = 1; -// fillA = 1; -// } - - beginShape(QUADS); - texture(image); - vertex(x1, y1, u1, v1); - vertex(x1, y2, u1, v2); - vertex(x2, y2, u2, v2); - vertex(x2, y1, u2, v1); - endShape(); - - stroke = savedStroke; -// fill = savedFill; - textureMode = savedTextureMode; - -// fillR = savedFillR; -// fillG = savedFillG; -// fillB = savedFillB; -// fillA = savedFillA; - } - - - - ////////////////////////////////////////////////////////////// - - // SHAPE - - - /** - * Modifies the location from which shapes draw. - * The default mode is shapeMode(CORNER), which specifies the - * location to be the upper left corner of the shape and uses the third - * and fourth parameters of shape() to specify the width and height. - * The syntax shapeMode(CORNERS) uses the first and second parameters - * of shape() to set the location of one corner and uses the third - * and fourth parameters to set the opposite corner. - * The syntax shapeMode(CENTER) draws the shape from its center point - * and uses the third and forth parameters of shape() to specify the - * width and height. - * The parameter must be written in "ALL CAPS" because Processing syntax - * is case sensitive. - * - * @param mode One of CORNER, CORNERS, CENTER - * - * @webref shape:loading_displaying - * @see PGraphics#shape(PShape) - * @see PGraphics#rectMode(int) - */ - public void shapeMode(int mode) { - this.shapeMode = mode; - } - - - public void shape(PShape shape) { - if (shape.isVisible()) { // don't do expensive matrix ops if invisible - if (shapeMode == CENTER) { - pushMatrix(); - translate(-shape.getWidth()/2, -shape.getHeight()/2); - } - - shape.draw(this); // needs to handle recorder too - - if (shapeMode == CENTER) { - popMatrix(); - } - } - } - - - /** - * Convenience method to draw at a particular location. - */ - public void shape(PShape shape, float x, float y) { - if (shape.isVisible()) { // don't do expensive matrix ops if invisible - pushMatrix(); - - if (shapeMode == CENTER) { - translate(x - shape.getWidth()/2, y - shape.getHeight()/2); - - } else if ((shapeMode == CORNER) || (shapeMode == CORNERS)) { - translate(x, y); - } - shape.draw(this); - - popMatrix(); - } - } - - - /** - * Displays shapes to the screen. The shapes must be in the sketch's "data" - * directory to load correctly. Select "Add file..." from the "Sketch" menu - * to add the shape. - * Processing currently works with SVG shapes only. - * The sh parameter specifies the shape to display and the x - * and y parameters define the location of the shape from its - * upper-left corner. - * The shape is displayed at its original size unless the width - * and height parameters specify a different size. - * The shapeMode() function changes the way the parameters work. - * A call to shapeMode(CORNERS), for example, will change the width - * and height parameters to define the x and y values of the opposite corner - * of the shape. - *

    - * Note complex shapes may draw awkwardly with P2D, P3D, and OPENGL. Those - * renderers do not yet support shapes that have holes or complicated breaks. - * - * @param shape - * @param x x-coordinate of the shape - * @param y y-coordinate of the shape - * @param c width to display the shape - * @param d height to display the shape - * - * @webref shape:loading_displaying - * @see PShape - * @see PGraphics#loadShape(String) - * @see PGraphics#shapeMode(int) - */ - public void shape(PShape shape, float x, float y, float c, float d) { - if (shape.isVisible()) { // don't do expensive matrix ops if invisible - pushMatrix(); - - if (shapeMode == CENTER) { - // x and y are center, c and d refer to a diameter - translate(x - c/2f, y - d/2f); - scale(c / shape.getWidth(), d / shape.getHeight()); - - } else if (shapeMode == CORNER) { - translate(x, y); - scale(c / shape.getWidth(), d / shape.getHeight()); - - } else if (shapeMode == CORNERS) { - // c and d are x2/y2, make them into width/height - c -= x; - d -= y; - // then same as above - translate(x, y); - scale(c / shape.getWidth(), d / shape.getHeight()); - } - shape.draw(this); - - popMatrix(); - } - } - - - - ////////////////////////////////////////////////////////////// - - // TEXT/FONTS - - - /** - * Sets the alignment of the text to one of LEFT, CENTER, or RIGHT. - * This will also reset the vertical text alignment to BASELINE. - */ - public void textAlign(int align) { - textAlign(align, BASELINE); - } - - - /** - * Sets the horizontal and vertical alignment of the text. The horizontal - * alignment can be one of LEFT, CENTER, or RIGHT. The vertical alignment - * can be TOP, BOTTOM, CENTER, or the BASELINE (the default). - */ - public void textAlign(int alignX, int alignY) { - textAlign = alignX; - textAlignY = alignY; - } - - - /** - * Returns the ascent of the current font at the current size. - * This is a method, rather than a variable inside the PGraphics object - * because it requires calculation. - */ - public float textAscent() { - if (textFont == null) { - defaultFontOrDeath("textAscent"); - } - return textFont.ascent() * ((textMode == SCREEN) ? textFont.size : textSize); - } - - - /** - * Returns the descent of the current font at the current size. - * This is a method, rather than a variable inside the PGraphics object - * because it requires calculation. - */ - public float textDescent() { - if (textFont == null) { - defaultFontOrDeath("textDescent"); - } - return textFont.descent() * ((textMode == SCREEN) ? textFont.size : textSize); - } - - - /** - * Sets the current font. The font's size will be the "natural" - * size of this font (the size that was set when using "Create Font"). - * The leading will also be reset. - */ - public void textFont(PFont which) { - if (which != null) { - textFont = which; - if (hints[ENABLE_NATIVE_FONTS]) { - //if (which.font == null) { - which.findFont(); - //} - } - /* - textFontNative = which.font; - - //textFontNativeMetrics = null; - // changed for rev 0104 for textMode(SHAPE) in opengl - if (textFontNative != null) { - // TODO need a better way to handle this. could use reflection to get - // rid of the warning, but that'd be a little silly. supporting this is - // an artifact of supporting java 1.1, otherwise we'd use getLineMetrics, - // as recommended by the @deprecated flag. - textFontNativeMetrics = - Toolkit.getDefaultToolkit().getFontMetrics(textFontNative); - // The following is what needs to be done, however we need to be able - // to get the actual graphics context where the drawing is happening. - // For instance, parent.getGraphics() doesn't work for OpenGL since - // an OpenGL drawing surface is an embedded component. -// if (parent != null) { -// textFontNativeMetrics = parent.getGraphics().getFontMetrics(textFontNative); -// } - - // float w = font.getStringBounds(text, g2.getFontRenderContext()).getWidth(); - } - */ - textSize(which.size); - - } else { - throw new RuntimeException(ERROR_TEXTFONT_NULL_PFONT); - } - } - - - /** - * Useful function to set the font and size at the same time. - */ - public void textFont(PFont which, float size) { - textFont(which); - textSize(size); - } - - - /** - * Set the text leading to a specific value. If using a custom - * value for the text leading, you'll have to call textLeading() - * again after any calls to textSize(). - */ - public void textLeading(float leading) { - textLeading = leading; - } - - - /** - * Sets the text rendering/placement to be either SCREEN (direct - * to the screen, exact coordinates, only use the font's original size) - * or MODEL (the default, where text is manipulated by translate() and - * can have a textSize). The text size cannot be set when using - * textMode(SCREEN), because it uses the pixels directly from the font. - */ - public void textMode(int mode) { - // CENTER and MODEL overlap (they're both 3) - if ((mode == LEFT) || (mode == RIGHT)) { - showWarning("Since Processing beta, textMode() is now textAlign()."); - return; - } -// if ((mode != SCREEN) && (mode != MODEL)) { -// showError("Only textMode(SCREEN) and textMode(MODEL) " + -// "are available with this renderer."); -// } - - if (textModeCheck(mode)) { - textMode = mode; - } else { - String modeStr = String.valueOf(mode); - switch (mode) { - case SCREEN: modeStr = "SCREEN"; break; - case MODEL: modeStr = "MODEL"; break; - case SHAPE: modeStr = "SHAPE"; break; - } - showWarning("textMode(" + modeStr + ") is not supported by this renderer."); - } - - // reset the font to its natural size - // (helps with width calculations and all that) - //if (textMode == SCREEN) { - //textSize(textFont.size); - //} - - //} else { - //throw new RuntimeException("use textFont() before textMode()"); - //} - } - - - protected boolean textModeCheck(int mode) { - return true; - } - - - /** - * Sets the text size, also resets the value for the leading. - */ - public void textSize(float size) { - if (textFont == null) { - defaultFontOrDeath("textSize", size); - } - textSize = size; - textLeading = (textAscent() + textDescent()) * 1.275f; - } - - - // ........................................................ - - - public float textWidth(char c) { - textWidthBuffer[0] = c; - return textWidthImpl(textWidthBuffer, 0, 1); - } - - - /** - * Return the width of a line of text. If the text has multiple - * lines, this returns the length of the longest line. - */ - public float textWidth(String str) { - if (textFont == null) { - defaultFontOrDeath("textWidth"); - } - - int length = str.length(); - if (length > textWidthBuffer.length) { - textWidthBuffer = new char[length + 10]; - } - str.getChars(0, length, textWidthBuffer, 0); - - float wide = 0; - int index = 0; - int start = 0; - - while (index < length) { - if (textWidthBuffer[index] == '\n') { - wide = Math.max(wide, textWidthImpl(textWidthBuffer, start, index)); - start = index+1; - } - index++; - } - if (start < length) { - wide = Math.max(wide, textWidthImpl(textWidthBuffer, start, index)); - } - return wide; - } - - - /** - * TODO not sure if this stays... - */ - public float textWidth(char[] chars, int start, int length) { - return textWidthImpl(chars, start, start + length); - } - - - /** - * Implementation of returning the text width of - * the chars [start, stop) in the buffer. - * Unlike the previous version that was inside PFont, this will - * return the size not of a 1 pixel font, but the actual current size. - */ - protected float textWidthImpl(char buffer[], int start, int stop) { - float wide = 0; - for (int i = start; i < stop; i++) { - // could add kerning here, but it just ain't implemented - wide += textFont.width(buffer[i]) * textSize; - } - return wide; - } - - - // ........................................................ - - - /** - * Write text where we just left off. - */ - public void text(char c) { - text(c, textX, textY, textZ); - } - - - /** - * Draw a single character on screen. - * Extremely slow when used with textMode(SCREEN) and Java 2D, - * because loadPixels has to be called first and updatePixels last. - */ - public void text(char c, float x, float y) { - if (textFont == null) { - defaultFontOrDeath("text"); - } - - if (textMode == SCREEN) loadPixels(); - - if (textAlignY == CENTER) { - y += textAscent() / 2; - } else if (textAlignY == TOP) { - y += textAscent(); - } else if (textAlignY == BOTTOM) { - y -= textDescent(); - //} else if (textAlignY == BASELINE) { - // do nothing - } - - textBuffer[0] = c; - textLineAlignImpl(textBuffer, 0, 1, x, y); - - if (textMode == SCREEN) updatePixels(); - } - - - /** - * Draw a single character on screen (with a z coordinate) - */ - public void text(char c, float x, float y, float z) { -// if ((z != 0) && (textMode == SCREEN)) { -// String msg = "textMode(SCREEN) cannot have a z coordinate"; -// throw new RuntimeException(msg); -// } - - if (z != 0) translate(0, 0, z); // slowness, badness - - text(c, x, y); - textZ = z; - - if (z != 0) translate(0, 0, -z); - } - - - /** - * Write text where we just left off. - */ - public void text(String str) { - text(str, textX, textY, textZ); - } - - - /** - * Draw a chunk of text. - * Newlines that are \n (Unix newline or linefeed char, ascii 10) - * are honored, but \r (carriage return, Windows and Mac OS) are - * ignored. - */ - public void text(String str, float x, float y) { - if (textFont == null) { - defaultFontOrDeath("text"); - } - - if (textMode == SCREEN) loadPixels(); - - int length = str.length(); - if (length > textBuffer.length) { - textBuffer = new char[length + 10]; - } - str.getChars(0, length, textBuffer, 0); - text(textBuffer, 0, length, x, y); - } - - - /** - * Method to draw text from an array of chars. This method will usually be - * more efficient than drawing from a String object, because the String will - * not be converted to a char array before drawing. - */ - public void text(char[] chars, int start, int stop, float x, float y) { - // If multiple lines, sum the height of the additional lines - float high = 0; //-textAscent(); - for (int i = start; i < stop; i++) { - if (chars[i] == '\n') { - high += textLeading; - } - } - if (textAlignY == CENTER) { - // for a single line, this adds half the textAscent to y - // for multiple lines, subtract half the additional height - //y += (textAscent() - textDescent() - high)/2; - y += (textAscent() - high)/2; - } else if (textAlignY == TOP) { - // for a single line, need to add textAscent to y - // for multiple lines, no different - y += textAscent(); - } else if (textAlignY == BOTTOM) { - // for a single line, this is just offset by the descent - // for multiple lines, subtract leading for each line - y -= textDescent() + high; - //} else if (textAlignY == BASELINE) { - // do nothing - } - -// int start = 0; - int index = 0; - while (index < stop) { //length) { - if (chars[index] == '\n') { - textLineAlignImpl(chars, start, index, x, y); - start = index + 1; - y += textLeading; - } - index++; - } - if (start < stop) { //length) { - textLineAlignImpl(chars, start, index, x, y); - } - if (textMode == SCREEN) updatePixels(); - } - - - /** - * Same as above but with a z coordinate. - */ - public void text(String str, float x, float y, float z) { - if (z != 0) translate(0, 0, z); // slow! - - text(str, x, y); - textZ = z; - - if (z != 0) translate(0, 0, -z); // inaccurate! - } - - - public void text(char[] chars, int start, int stop, - float x, float y, float z) { - if (z != 0) translate(0, 0, z); // slow! - - text(chars, start, stop, x, y); - textZ = z; - - if (z != 0) translate(0, 0, -z); // inaccurate! - } - - - /** - * Draw text in a box that is constrained to a particular size. - * The current rectMode() determines what the coordinates mean - * (whether x1/y1/x2/y2 or x/y/w/h). - *

    - * Note that the x,y coords of the start of the box - * will align with the *ascent* of the text, not the baseline, - * as is the case for the other text() functions. - *

    - * Newlines that are \n (Unix newline or linefeed char, ascii 10) - * are honored, and \r (carriage return, Windows and Mac OS) are - * ignored. - */ - public void text(String str, float x1, float y1, float x2, float y2) { - if (textFont == null) { - defaultFontOrDeath("text"); - } - - if (textMode == SCREEN) loadPixels(); - - float hradius, vradius; - switch (rectMode) { - case CORNER: - x2 += x1; y2 += y1; - break; - case RADIUS: - hradius = x2; - vradius = y2; - x2 = x1 + hradius; - y2 = y1 + vradius; - x1 -= hradius; - y1 -= vradius; - break; - case CENTER: - hradius = x2 / 2.0f; - vradius = y2 / 2.0f; - x2 = x1 + hradius; - y2 = y1 + vradius; - x1 -= hradius; - y1 -= vradius; - } - if (x2 < x1) { - float temp = x1; x1 = x2; x2 = temp; - } - if (y2 < y1) { - float temp = y1; y1 = y2; y2 = temp; - } - -// float currentY = y1; - float boxWidth = x2 - x1; - -// // ala illustrator, the text itself must fit inside the box -// currentY += textAscent(); //ascent() * textSize; -// // if the box is already too small, tell em to f off -// if (currentY > y2) return; - - float spaceWidth = textWidth(' '); - - if (textBreakStart == null) { - textBreakStart = new int[20]; - textBreakStop = new int[20]; - } - textBreakCount = 0; - - int length = str.length(); - if (length + 1 > textBuffer.length) { - textBuffer = new char[length + 1]; - } - str.getChars(0, length, textBuffer, 0); - // add a fake newline to simplify calculations - textBuffer[length++] = '\n'; - - int sentenceStart = 0; - for (int i = 0; i < length; i++) { - if (textBuffer[i] == '\n') { -// currentY = textSentence(textBuffer, sentenceStart, i, -// lineX, boxWidth, currentY, y2, spaceWidth); - boolean legit = - textSentence(textBuffer, sentenceStart, i, boxWidth, spaceWidth); - if (!legit) break; -// if (Float.isNaN(currentY)) break; // word too big (or error) -// if (currentY > y2) break; // past the box - sentenceStart = i + 1; - } - } - - // lineX is the position where the text starts, which is adjusted - // to left/center/right based on the current textAlign - float lineX = x1; //boxX1; - if (textAlign == CENTER) { - lineX = lineX + boxWidth/2f; - } else if (textAlign == RIGHT) { - lineX = x2; //boxX2; - } - - float boxHeight = y2 - y1; - //int lineFitCount = 1 + PApplet.floor((boxHeight - textAscent()) / textLeading); - // incorporate textAscent() for the top (baseline will be y1 + ascent) - // and textDescent() for the bottom, so that lower parts of letters aren't - // outside the box. [0151] - float topAndBottom = textAscent() + textDescent(); - int lineFitCount = 1 + PApplet.floor((boxHeight - topAndBottom) / textLeading); - int lineCount = Math.min(textBreakCount, lineFitCount); - - if (textAlignY == CENTER) { - float lineHigh = textAscent() + textLeading * (lineCount - 1); - float y = y1 + textAscent() + (boxHeight - lineHigh) / 2; - for (int i = 0; i < lineCount; i++) { - textLineAlignImpl(textBuffer, textBreakStart[i], textBreakStop[i], lineX, y); - y += textLeading; - } - - } else if (textAlignY == BOTTOM) { - float y = y2 - textDescent() - textLeading * (lineCount - 1); - for (int i = 0; i < lineCount; i++) { - textLineAlignImpl(textBuffer, textBreakStart[i], textBreakStop[i], lineX, y); - y += textLeading; - } - - } else { // TOP or BASELINE just go to the default - float y = y1 + textAscent(); - for (int i = 0; i < lineCount; i++) { - textLineAlignImpl(textBuffer, textBreakStart[i], textBreakStop[i], lineX, y); - y += textLeading; - } - } - - if (textMode == SCREEN) updatePixels(); - } - - - /** - * Emit a sentence of text, defined as a chunk of text without any newlines. - * @param stop non-inclusive, the end of the text in question - */ - protected boolean textSentence(char[] buffer, int start, int stop, - float boxWidth, float spaceWidth) { - float runningX = 0; - - // Keep track of this separately from index, since we'll need to back up - // from index when breaking words that are too long to fit. - int lineStart = start; - int wordStart = start; - int index = start; - while (index <= stop) { - // boundary of a word or end of this sentence - if ((buffer[index] == ' ') || (index == stop)) { - float wordWidth = textWidthImpl(buffer, wordStart, index); - - if (runningX + wordWidth > boxWidth) { - if (runningX != 0) { - // Next word is too big, output the current line and advance - index = wordStart; - textSentenceBreak(lineStart, index); - // Eat whitespace because multiple spaces don't count for s* - // when they're at the end of a line. - while ((index < stop) && (buffer[index] == ' ')) { - index++; - } - } else { // (runningX == 0) - // If this is the first word on the line, and its width is greater - // than the width of the text box, then break the word where at the - // max width, and send the rest of the word to the next line. - do { - index--; - if (index == wordStart) { - // Not a single char will fit on this line. screw 'em. - //System.out.println("screw you"); - return false; //Float.NaN; - } - wordWidth = textWidthImpl(buffer, wordStart, index); - } while (wordWidth > boxWidth); - - //textLineImpl(buffer, lineStart, index, x, y); - textSentenceBreak(lineStart, index); - } - lineStart = index; - wordStart = index; - runningX = 0; - - } else if (index == stop) { - // last line in the block, time to unload - //textLineImpl(buffer, lineStart, index, x, y); - textSentenceBreak(lineStart, index); -// y += textLeading; - index++; - - } else { // this word will fit, just add it to the line - runningX += wordWidth + spaceWidth; - wordStart = index + 1; // move on to the next word - index++; - } - } else { // not a space or the last character - index++; // this is just another letter - } - } -// return y; - return true; - } - - - protected void textSentenceBreak(int start, int stop) { - if (textBreakCount == textBreakStart.length) { - textBreakStart = PApplet.expand(textBreakStart); - textBreakStop = PApplet.expand(textBreakStop); - } - textBreakStart[textBreakCount] = start; - textBreakStop[textBreakCount] = stop; - textBreakCount++; - } - - - public void text(String s, float x1, float y1, float x2, float y2, float z) { - if (z != 0) translate(0, 0, z); // slowness, badness - - text(s, x1, y1, x2, y2); - textZ = z; - - if (z != 0) translate(0, 0, -z); // TEMPORARY HACK! SLOW! - } - - - public void text(int num, float x, float y) { - text(String.valueOf(num), x, y); - } - - - public void text(int num, float x, float y, float z) { - text(String.valueOf(num), x, y, z); - } - - - /** - * This does a basic number formatting, to avoid the - * generally ugly appearance of printing floats. - * Users who want more control should use their own nf() cmmand, - * or if they want the long, ugly version of float, - * use String.valueOf() to convert the float to a String first. - */ - public void text(float num, float x, float y) { - text(PApplet.nfs(num, 0, 3), x, y); - } - - - public void text(float num, float x, float y, float z) { - text(PApplet.nfs(num, 0, 3), x, y, z); - } - - - - ////////////////////////////////////////////////////////////// - - // TEXT IMPL - - // These are most likely to be overridden by subclasses, since the other - // (public) functions handle generic features like setting alignment. - - - /** - * Handles placement of a text line, then calls textLineImpl - * to actually render at the specific point. - */ - protected void textLineAlignImpl(char buffer[], int start, int stop, - float x, float y) { - if (textAlign == CENTER) { - x -= textWidthImpl(buffer, start, stop) / 2f; - - } else if (textAlign == RIGHT) { - x -= textWidthImpl(buffer, start, stop); - } - - textLineImpl(buffer, start, stop, x, y); - } - - - /** - * Implementation of actual drawing for a line of text. - */ - protected void textLineImpl(char buffer[], int start, int stop, - float x, float y) { - for (int index = start; index < stop; index++) { - textCharImpl(buffer[index], x, y); - - // this doesn't account for kerning - x += textWidth(buffer[index]); - } - textX = x; - textY = y; - textZ = 0; // this will get set by the caller if non-zero - } - - - protected void textCharImpl(char ch, float x, float y) { //, float z) { - PFont.Glyph glyph = textFont.getGlyph(ch); - if (glyph != null) { - if (textMode == MODEL) { - float high = glyph.height / (float) textFont.size; - float bwidth = glyph.width / (float) textFont.size; - float lextent = glyph.leftExtent / (float) textFont.size; - float textent = glyph.topExtent / (float) textFont.size; - - float x1 = x + lextent * textSize; - float y1 = y - textent * textSize; - float x2 = x1 + bwidth * textSize; - float y2 = y1 + high * textSize; - - textCharModelImpl(glyph.image, - x1, y1, x2, y2, - glyph.width, glyph.height); - - } else if (textMode == SCREEN) { - int xx = (int) x + glyph.leftExtent; - int yy = (int) y - glyph.topExtent; - - int w0 = glyph.width; - int h0 = glyph.height; - - textCharScreenImpl(glyph.image, xx, yy, w0, h0); - } - } - } - - - protected void textCharModelImpl(PImage glyph, - float x1, float y1, //float z1, - float x2, float y2, //float z2, - int u2, int v2) { - boolean savedTint = tint; - int savedTintColor = tintColor; - float savedTintR = tintR; - float savedTintG = tintG; - float savedTintB = tintB; - float savedTintA = tintA; - boolean savedTintAlpha = tintAlpha; - - tint = true; - tintColor = fillColor; - tintR = fillR; - tintG = fillG; - tintB = fillB; - tintA = fillA; - tintAlpha = fillAlpha; - - imageImpl(glyph, x1, y1, x2, y2, 0, 0, u2, v2); - - tint = savedTint; - tintColor = savedTintColor; - tintR = savedTintR; - tintG = savedTintG; - tintB = savedTintB; - tintA = savedTintA; - tintAlpha = savedTintAlpha; - } - - - protected void textCharScreenImpl(PImage glyph, - int xx, int yy, - int w0, int h0) { - int x0 = 0; - int y0 = 0; - - if ((xx >= width) || (yy >= height) || - (xx + w0 < 0) || (yy + h0 < 0)) return; - - if (xx < 0) { - x0 -= xx; - w0 += xx; - xx = 0; - } - if (yy < 0) { - y0 -= yy; - h0 += yy; - yy = 0; - } - if (xx + w0 > width) { - w0 -= ((xx + w0) - width); - } - if (yy + h0 > height) { - h0 -= ((yy + h0) - height); - } - - int fr = fillRi; - int fg = fillGi; - int fb = fillBi; - int fa = fillAi; - - int pixels1[] = glyph.pixels; //images[glyph].pixels; - - // TODO this can be optimized a bit - for (int row = y0; row < y0 + h0; row++) { - for (int col = x0; col < x0 + w0; col++) { - //int a1 = (fa * pixels1[row * textFont.twidth + col]) >> 8; - int a1 = (fa * pixels1[row * glyph.width + col]) >> 8; - int a2 = a1 ^ 0xff; - //int p1 = pixels1[row * glyph.width + col]; - int p2 = pixels[(yy + row-y0)*width + (xx+col-x0)]; - - pixels[(yy + row-y0)*width + xx+col-x0] = - (0xff000000 | - (((a1 * fr + a2 * ((p2 >> 16) & 0xff)) & 0xff00) << 8) | - (( a1 * fg + a2 * ((p2 >> 8) & 0xff)) & 0xff00) | - (( a1 * fb + a2 * ( p2 & 0xff)) >> 8)); - } - } - } - - - - ////////////////////////////////////////////////////////////// - - // MATRIX STACK - - - /** - * Push a copy of the current transformation matrix onto the stack. - */ - public void pushMatrix() { - showMethodWarning("pushMatrix"); - } - - - /** - * Replace the current transformation matrix with the top of the stack. - */ - public void popMatrix() { - showMethodWarning("popMatrix"); - } - - - - ////////////////////////////////////////////////////////////// - - // MATRIX TRANSFORMATIONS - - - /** - * Translate in X and Y. - */ - public void translate(float tx, float ty) { - showMissingWarning("translate"); - } - - - /** - * Translate in X, Y, and Z. - */ - public void translate(float tx, float ty, float tz) { - showMissingWarning("translate"); - } - - - /** - * Two dimensional rotation. - * - * Same as rotateZ (this is identical to a 3D rotation along the z-axis) - * but included for clarity. It'd be weird for people drawing 2D graphics - * to be using rotateZ. And they might kick our a-- for the confusion. - * - * Additional background. - */ - public void rotate(float angle) { - showMissingWarning("rotate"); - } - - - /** - * Rotate around the X axis. - */ - public void rotateX(float angle) { - showMethodWarning("rotateX"); - } - - - /** - * Rotate around the Y axis. - */ - public void rotateY(float angle) { - showMethodWarning("rotateY"); - } - - - /** - * Rotate around the Z axis. - * - * The functions rotate() and rotateZ() are identical, it's just that it make - * sense to have rotate() and then rotateX() and rotateY() when using 3D; - * nor does it make sense to use a function called rotateZ() if you're only - * doing things in 2D. so we just decided to have them both be the same. - */ - public void rotateZ(float angle) { - showMethodWarning("rotateZ"); - } - - - /** - * Rotate about a vector in space. Same as the glRotatef() function. - */ - public void rotate(float angle, float vx, float vy, float vz) { - showMissingWarning("rotate"); - } - - - /** - * Scale in all dimensions. - */ - public void scale(float s) { - showMissingWarning("scale"); - } - - - /** - * Scale in X and Y. Equivalent to scale(sx, sy, 1). - * - * Not recommended for use in 3D, because the z-dimension is just - * scaled by 1, since there's no way to know what else to scale it by. - */ - public void scale(float sx, float sy) { - showMissingWarning("scale"); - } - - - /** - * Scale in X, Y, and Z. - */ - public void scale(float x, float y, float z) { - showMissingWarning("scale"); - } - - - ////////////////////////////////////////////////////////////// - - // MATRIX FULL MONTY - - - /** - * Set the current transformation matrix to identity. - */ - public void resetMatrix() { - showMethodWarning("resetMatrix"); - } - - - public void applyMatrix(PMatrix source) { - if (source instanceof PMatrix2D) { - applyMatrix((PMatrix2D) source); - } else if (source instanceof PMatrix3D) { - applyMatrix((PMatrix3D) source); - } - } - - - public void applyMatrix(PMatrix2D source) { - applyMatrix(source.m00, source.m01, source.m02, - source.m10, source.m11, source.m12); - } - - - /** - * Apply a 3x2 affine transformation matrix. - */ - public void applyMatrix(float n00, float n01, float n02, - float n10, float n11, float n12) { - showMissingWarning("applyMatrix"); - } - - - public void applyMatrix(PMatrix3D source) { - applyMatrix(source.m00, source.m01, source.m02, source.m03, - source.m10, source.m11, source.m12, source.m13, - source.m20, source.m21, source.m22, source.m23, - source.m30, source.m31, source.m32, source.m33); - } - - - /** - * Apply a 4x4 transformation matrix. - */ - public void applyMatrix(float n00, float n01, float n02, float n03, - float n10, float n11, float n12, float n13, - float n20, float n21, float n22, float n23, - float n30, float n31, float n32, float n33) { - showMissingWarning("applyMatrix"); - } - - - - ////////////////////////////////////////////////////////////// - - // MATRIX GET/SET/PRINT - - - public PMatrix getMatrix() { - showMissingWarning("getMatrix"); - return null; - } - - - /** - * Copy the current transformation matrix into the specified target. - * Pass in null to create a new matrix. - */ - public PMatrix2D getMatrix(PMatrix2D target) { - showMissingWarning("getMatrix"); - return null; - } - - - /** - * Copy the current transformation matrix into the specified target. - * Pass in null to create a new matrix. - */ - public PMatrix3D getMatrix(PMatrix3D target) { - showMissingWarning("getMatrix"); - return null; - } - - - /** - * Set the current transformation matrix to the contents of another. - */ - public void setMatrix(PMatrix source) { - if (source instanceof PMatrix2D) { - setMatrix((PMatrix2D) source); - } else if (source instanceof PMatrix3D) { - setMatrix((PMatrix3D) source); - } - } - - - /** - * Set the current transformation to the contents of the specified source. - */ - public void setMatrix(PMatrix2D source) { - showMissingWarning("setMatrix"); - } - - - /** - * Set the current transformation to the contents of the specified source. - */ - public void setMatrix(PMatrix3D source) { - showMissingWarning("setMatrix"); - } - - - /** - * Print the current model (or "transformation") matrix. - */ - public void printMatrix() { - showMethodWarning("printMatrix"); - } - - - - ////////////////////////////////////////////////////////////// - - // CAMERA - - - public void beginCamera() { - showMethodWarning("beginCamera"); - } - - - public void endCamera() { - showMethodWarning("endCamera"); - } - - - public void camera() { - showMissingWarning("camera"); - } - - - public void camera(float eyeX, float eyeY, float eyeZ, - float centerX, float centerY, float centerZ, - float upX, float upY, float upZ) { - showMissingWarning("camera"); - } - - - public void printCamera() { - showMethodWarning("printCamera"); - } - - - - ////////////////////////////////////////////////////////////// - - // PROJECTION - - - public void ortho() { - showMissingWarning("ortho"); - } - - - public void ortho(float left, float right, - float bottom, float top, - float near, float far) { - showMissingWarning("ortho"); - } - - - public void perspective() { - showMissingWarning("perspective"); - } - - - public void perspective(float fovy, float aspect, float zNear, float zFar) { - showMissingWarning("perspective"); - } - - - public void frustum(float left, float right, - float bottom, float top, - float near, float far) { - showMethodWarning("frustum"); - } - - - public void printProjection() { - showMethodWarning("printCamera"); - } - - - - ////////////////////////////////////////////////////////////// - - // SCREEN TRANSFORMS - - - /** - * Given an x and y coordinate, returns the x position of where - * that point would be placed on screen, once affected by translate(), - * scale(), or any other transformations. - */ - public float screenX(float x, float y) { - showMissingWarning("screenX"); - return 0; - } - - - /** - * Given an x and y coordinate, returns the y position of where - * that point would be placed on screen, once affected by translate(), - * scale(), or any other transformations. - */ - public float screenY(float x, float y) { - showMissingWarning("screenY"); - return 0; - } - - - /** - * Maps a three dimensional point to its placement on-screen. - *

    - * Given an (x, y, z) coordinate, returns the x position of where - * that point would be placed on screen, once affected by translate(), - * scale(), or any other transformations. - */ - public float screenX(float x, float y, float z) { - showMissingWarning("screenX"); - return 0; - } - - - /** - * Maps a three dimensional point to its placement on-screen. - *

    - * Given an (x, y, z) coordinate, returns the y position of where - * that point would be placed on screen, once affected by translate(), - * scale(), or any other transformations. - */ - public float screenY(float x, float y, float z) { - showMissingWarning("screenY"); - return 0; - } - - - /** - * Maps a three dimensional point to its placement on-screen. - *

    - * Given an (x, y, z) coordinate, returns its z value. - * This value can be used to determine if an (x, y, z) coordinate - * is in front or in back of another (x, y, z) coordinate. - * The units are based on how the zbuffer is set up, and don't - * relate to anything "real". They're only useful for in - * comparison to another value obtained from screenZ(), - * or directly out of the zbuffer[]. - */ - public float screenZ(float x, float y, float z) { - showMissingWarning("screenZ"); - return 0; - } - - - /** - * Returns the model space x value for an x, y, z coordinate. - *

    - * This will give you a coordinate after it has been transformed - * by translate(), rotate(), and camera(), but not yet transformed - * by the projection matrix. For instance, his can be useful for - * figuring out how points in 3D space relate to the edge - * coordinates of a shape. - */ - public float modelX(float x, float y, float z) { - showMissingWarning("modelX"); - return 0; - } - - - /** - * Returns the model space y value for an x, y, z coordinate. - */ - public float modelY(float x, float y, float z) { - showMissingWarning("modelY"); - return 0; - } - - - /** - * Returns the model space z value for an x, y, z coordinate. - */ - public float modelZ(float x, float y, float z) { - showMissingWarning("modelZ"); - return 0; - } - - - - ////////////////////////////////////////////////////////////// - - // STYLE - - - public void pushStyle() { - if (styleStackDepth == styleStack.length) { - styleStack = (PStyle[]) PApplet.expand(styleStack); - } - if (styleStack[styleStackDepth] == null) { - styleStack[styleStackDepth] = new PStyle(); - } - PStyle s = styleStack[styleStackDepth++]; - getStyle(s); - } - - - public void popStyle() { - if (styleStackDepth == 0) { - throw new RuntimeException("Too many popStyle() without enough pushStyle()"); - } - styleStackDepth--; - style(styleStack[styleStackDepth]); - } - - - public void style(PStyle s) { - // if (s.smooth) { - // smooth(); - // } else { - // noSmooth(); - // } - - imageMode(s.imageMode); - rectMode(s.rectMode); - ellipseMode(s.ellipseMode); - shapeMode(s.shapeMode); - - if (s.tint) { - tint(s.tintColor); - } else { - noTint(); - } - if (s.fill) { - fill(s.fillColor); - } else { - noFill(); - } - if (s.stroke) { - stroke(s.strokeColor); - } else { - noStroke(); - } - strokeWeight(s.strokeWeight); - strokeCap(s.strokeCap); - strokeJoin(s.strokeJoin); - - // Set the colorMode() for the material properties. - // TODO this is really inefficient, need to just have a material() method, - // but this has the least impact to the API. - colorMode(RGB, 1); - ambient(s.ambientR, s.ambientG, s.ambientB); - emissive(s.emissiveR, s.emissiveG, s.emissiveB); - specular(s.specularR, s.specularG, s.specularB); - shininess(s.shininess); - - /* - s.ambientR = ambientR; - s.ambientG = ambientG; - s.ambientB = ambientB; - s.specularR = specularR; - s.specularG = specularG; - s.specularB = specularB; - s.emissiveR = emissiveR; - s.emissiveG = emissiveG; - s.emissiveB = emissiveB; - s.shininess = shininess; - */ - // material(s.ambientR, s.ambientG, s.ambientB, - // s.emissiveR, s.emissiveG, s.emissiveB, - // s.specularR, s.specularG, s.specularB, - // s.shininess); - - // Set this after the material properties. - colorMode(s.colorMode, - s.colorModeX, s.colorModeY, s.colorModeZ, s.colorModeA); - - // This is a bit asymmetric, since there's no way to do "noFont()", - // and a null textFont will produce an error (since usually that means that - // the font couldn't load properly). So in some cases, the font won't be - // 'cleared' to null, even though that's technically correct. - if (s.textFont != null) { - textFont(s.textFont, s.textSize); - textLeading(s.textLeading); - } - // These don't require a font to be set. - textAlign(s.textAlign, s.textAlignY); - textMode(s.textMode); - } - - - public PStyle getStyle() { // ignore - return getStyle(null); - } - - - public PStyle getStyle(PStyle s) { // ignore - if (s == null) { - s = new PStyle(); - } - - s.imageMode = imageMode; - s.rectMode = rectMode; - s.ellipseMode = ellipseMode; - s.shapeMode = shapeMode; - - s.colorMode = colorMode; - s.colorModeX = colorModeX; - s.colorModeY = colorModeY; - s.colorModeZ = colorModeZ; - s.colorModeA = colorModeA; - - s.tint = tint; - s.tintColor = tintColor; - s.fill = fill; - s.fillColor = fillColor; - s.stroke = stroke; - s.strokeColor = strokeColor; - s.strokeWeight = strokeWeight; - s.strokeCap = strokeCap; - s.strokeJoin = strokeJoin; - - s.ambientR = ambientR; - s.ambientG = ambientG; - s.ambientB = ambientB; - s.specularR = specularR; - s.specularG = specularG; - s.specularB = specularB; - s.emissiveR = emissiveR; - s.emissiveG = emissiveG; - s.emissiveB = emissiveB; - s.shininess = shininess; - - s.textFont = textFont; - s.textAlign = textAlign; - s.textAlignY = textAlignY; - s.textMode = textMode; - s.textSize = textSize; - s.textLeading = textLeading; - - return s; - } - - - - ////////////////////////////////////////////////////////////// - - // STROKE CAP/JOIN/WEIGHT - - - public void strokeWeight(float weight) { - strokeWeight = weight; - } - - - public void strokeJoin(int join) { - strokeJoin = join; - } - - - public void strokeCap(int cap) { - strokeCap = cap; - } - - - - ////////////////////////////////////////////////////////////// - - // STROKE COLOR - - - /** - * Disables drawing the stroke (outline). If both noStroke() and - * noFill() are called, no shapes will be drawn to the screen. - * - * @webref color:setting - * - * @see PGraphics#stroke(float, float, float, float) - */ - public void noStroke() { - stroke = false; - } - - - /** - * Set the tint to either a grayscale or ARGB value. - * See notes attached to the fill() function. - * @param rgb color value in hexadecimal notation - * (i.e. #FFCC00 or 0xFFFFCC00) or any value of the color datatype - */ - public void stroke(int rgb) { - colorCalc(rgb); - strokeFromCalc(); - } - - - public void stroke(int rgb, float alpha) { - colorCalc(rgb, alpha); - strokeFromCalc(); - } - - - /** - * - * @param gray specifies a value between white and black - */ - public void stroke(float gray) { - colorCalc(gray); - strokeFromCalc(); - } - - - public void stroke(float gray, float alpha) { - colorCalc(gray, alpha); - strokeFromCalc(); - } - - - public void stroke(float x, float y, float z) { - colorCalc(x, y, z); - strokeFromCalc(); - } - - - /** - * Sets the color used to draw lines and borders around shapes. This color - * is either specified in terms of the RGB or HSB color depending on the - * current colorMode() (the default color space is RGB, with each - * value in the range from 0 to 255). - *

    When using hexadecimal notation to specify a color, use "#" or - * "0x" before the values (e.g. #CCFFAA, 0xFFCCFFAA). The # syntax uses six - * digits to specify a color (the way colors are specified in HTML and CSS). - * When using the hexadecimal notation starting with "0x", the hexadecimal - * value must be specified with eight characters; the first two characters - * define the alpha component and the remainder the red, green, and blue - * components. - *

    The value for the parameter "gray" must be less than or equal - * to the current maximum value as specified by colorMode(). - * The default maximum value is 255. - * - * @webref color:setting - * @param alpha opacity of the stroke - * @param x red or hue value (depending on the current color mode) - * @param y green or saturation value (depending on the current color mode) - * @param z blue or brightness value (depending on the current color mode) - */ - public void stroke(float x, float y, float z, float a) { - colorCalc(x, y, z, a); - strokeFromCalc(); - } - - - protected void strokeFromCalc() { - stroke = true; - strokeR = calcR; - strokeG = calcG; - strokeB = calcB; - strokeA = calcA; - strokeRi = calcRi; - strokeGi = calcGi; - strokeBi = calcBi; - strokeAi = calcAi; - strokeColor = calcColor; - strokeAlpha = calcAlpha; - } - - - - ////////////////////////////////////////////////////////////// - - // TINT COLOR - - - /** - * Removes the current fill value for displaying images and reverts to displaying images with their original hues. - * - * @webref image:loading_displaying - * @see processing.core.PGraphics#tint(float, float, float, float) - * @see processing.core.PGraphics#image(PImage, float, float, float, float) - */ - public void noTint() { - tint = false; - } - - - /** - * Set the tint to either a grayscale or ARGB value. - */ - public void tint(int rgb) { - colorCalc(rgb); - tintFromCalc(); - } - - - /** - * @param rgb color value in hexadecimal notation - * (i.e. #FFCC00 or 0xFFFFCC00) or any value of the color datatype - * @param alpha opacity of the image - */ - public void tint(int rgb, float alpha) { - colorCalc(rgb, alpha); - tintFromCalc(); - } - - - /** - * @param gray any valid number - */ - public void tint(float gray) { - colorCalc(gray); - tintFromCalc(); - } - - - public void tint(float gray, float alpha) { - colorCalc(gray, alpha); - tintFromCalc(); - } - - - public void tint(float x, float y, float z) { - colorCalc(x, y, z); - tintFromCalc(); - } - - - /** - * Sets the fill value for displaying images. Images can be tinted to - * specified colors or made transparent by setting the alpha. - *

    To make an image transparent, but not change it's color, - * use white as the tint color and specify an alpha value. For instance, - * tint(255, 128) will make an image 50% transparent (unless - * colorMode() has been used). - * - *

    When using hexadecimal notation to specify a color, use "#" or - * "0x" before the values (e.g. #CCFFAA, 0xFFCCFFAA). The # syntax uses six - * digits to specify a color (the way colors are specified in HTML and CSS). - * When using the hexadecimal notation starting with "0x", the hexadecimal - * value must be specified with eight characters; the first two characters - * define the alpha component and the remainder the red, green, and blue - * components. - *

    The value for the parameter "gray" must be less than or equal - * to the current maximum value as specified by colorMode(). - * The default maximum value is 255. - *

    The tint() method is also used to control the coloring of - * textures in 3D. - * - * @webref image:loading_displaying - * @param x red or hue value - * @param y green or saturation value - * @param z blue or brightness value - * - * @see processing.core.PGraphics#noTint() - * @see processing.core.PGraphics#image(PImage, float, float, float, float) - */ - public void tint(float x, float y, float z, float a) { - colorCalc(x, y, z, a); - tintFromCalc(); - } - - - protected void tintFromCalc() { - tint = true; - tintR = calcR; - tintG = calcG; - tintB = calcB; - tintA = calcA; - tintRi = calcRi; - tintGi = calcGi; - tintBi = calcBi; - tintAi = calcAi; - tintColor = calcColor; - tintAlpha = calcAlpha; - } - - - - ////////////////////////////////////////////////////////////// - - // FILL COLOR - - - /** - * Disables filling geometry. If both noStroke() and noFill() - * are called, no shapes will be drawn to the screen. - * - * @webref color:setting - * - * @see PGraphics#fill(float, float, float, float) - * - */ - public void noFill() { - fill = false; - } - - - /** - * Set the fill to either a grayscale value or an ARGB int. - * @param rgb color value in hexadecimal notation (i.e. #FFCC00 or 0xFFFFCC00) or any value of the color datatype - */ - public void fill(int rgb) { - colorCalc(rgb); - fillFromCalc(); - } - - - public void fill(int rgb, float alpha) { - colorCalc(rgb, alpha); - fillFromCalc(); - } - - - /** - * @param gray number specifying value between white and black - */ - public void fill(float gray) { - colorCalc(gray); - fillFromCalc(); - } - - - public void fill(float gray, float alpha) { - colorCalc(gray, alpha); - fillFromCalc(); - } - - - public void fill(float x, float y, float z) { - colorCalc(x, y, z); - fillFromCalc(); - } - - - /** - * Sets the color used to fill shapes. For example, if you run fill(204, 102, 0), all subsequent shapes will be filled with orange. This color is either specified in terms of the RGB or HSB color depending on the current colorMode() (the default color space is RGB, with each value in the range from 0 to 255). - *

    When using hexadecimal notation to specify a color, use "#" or "0x" before the values (e.g. #CCFFAA, 0xFFCCFFAA). The # syntax uses six digits to specify a color (the way colors are specified in HTML and CSS). When using the hexadecimal notation starting with "0x", the hexadecimal value must be specified with eight characters; the first two characters define the alpha component and the remainder the red, green, and blue components. - *

    The value for the parameter "gray" must be less than or equal to the current maximum value as specified by colorMode(). The default maximum value is 255. - *

    To change the color of an image (or a texture), use tint(). - * - * @webref color:setting - * @param x red or hue value - * @param y green or saturation value - * @param z blue or brightness value - * @param alpha opacity of the fill - * - * @see PGraphics#noFill() - * @see PGraphics#stroke(float) - * @see PGraphics#tint(float) - * @see PGraphics#background(float, float, float, float) - * @see PGraphics#colorMode(int, float, float, float, float) - */ - public void fill(float x, float y, float z, float a) { - colorCalc(x, y, z, a); - fillFromCalc(); - } - - - protected void fillFromCalc() { - fill = true; - fillR = calcR; - fillG = calcG; - fillB = calcB; - fillA = calcA; - fillRi = calcRi; - fillGi = calcGi; - fillBi = calcBi; - fillAi = calcAi; - fillColor = calcColor; - fillAlpha = calcAlpha; - } - - - - ////////////////////////////////////////////////////////////// - - // MATERIAL PROPERTIES - - - public void ambient(int rgb) { -// if (((rgb & 0xff000000) == 0) && (rgb <= colorModeX)) { -// ambient((float) rgb); -// -// } else { -// colorCalcARGB(rgb, colorModeA); -// ambientFromCalc(); -// } - colorCalc(rgb); - ambientFromCalc(); - } - - - public void ambient(float gray) { - colorCalc(gray); - ambientFromCalc(); - } - - - public void ambient(float x, float y, float z) { - colorCalc(x, y, z); - ambientFromCalc(); - } - - - protected void ambientFromCalc() { - ambientR = calcR; - ambientG = calcG; - ambientB = calcB; - } - - - public void specular(int rgb) { -// if (((rgb & 0xff000000) == 0) && (rgb <= colorModeX)) { -// specular((float) rgb); -// -// } else { -// colorCalcARGB(rgb, colorModeA); -// specularFromCalc(); -// } - colorCalc(rgb); - specularFromCalc(); - } - - - public void specular(float gray) { - colorCalc(gray); - specularFromCalc(); - } - - - public void specular(float x, float y, float z) { - colorCalc(x, y, z); - specularFromCalc(); - } - - - protected void specularFromCalc() { - specularR = calcR; - specularG = calcG; - specularB = calcB; - } - - - public void shininess(float shine) { - shininess = shine; - } - - - public void emissive(int rgb) { -// if (((rgb & 0xff000000) == 0) && (rgb <= colorModeX)) { -// emissive((float) rgb); -// -// } else { -// colorCalcARGB(rgb, colorModeA); -// emissiveFromCalc(); -// } - colorCalc(rgb); - emissiveFromCalc(); - } - - - public void emissive(float gray) { - colorCalc(gray); - emissiveFromCalc(); - } - - - public void emissive(float x, float y, float z) { - colorCalc(x, y, z); - emissiveFromCalc(); - } - - - protected void emissiveFromCalc() { - emissiveR = calcR; - emissiveG = calcG; - emissiveB = calcB; - } - - - - ////////////////////////////////////////////////////////////// - - // LIGHTS - - // The details of lighting are very implementation-specific, so this base - // class does not handle any details of settings lights. It does however - // display warning messages that the functions are not available. - - - public void lights() { - showMethodWarning("lights"); - } - - public void noLights() { - showMethodWarning("noLights"); - } - - public void ambientLight(float red, float green, float blue) { - showMethodWarning("ambientLight"); - } - - public void ambientLight(float red, float green, float blue, - float x, float y, float z) { - showMethodWarning("ambientLight"); - } - - public void directionalLight(float red, float green, float blue, - float nx, float ny, float nz) { - showMethodWarning("directionalLight"); - } - - public void pointLight(float red, float green, float blue, - float x, float y, float z) { - showMethodWarning("pointLight"); - } - - public void spotLight(float red, float green, float blue, - float x, float y, float z, - float nx, float ny, float nz, - float angle, float concentration) { - showMethodWarning("spotLight"); - } - - public void lightFalloff(float constant, float linear, float quadratic) { - showMethodWarning("lightFalloff"); - } - - public void lightSpecular(float x, float y, float z) { - showMethodWarning("lightSpecular"); - } - - - - ////////////////////////////////////////////////////////////// - - // BACKGROUND - - - /** - * Set the background to a gray or ARGB color. - *

    - * For the main drawing surface, the alpha value will be ignored. However, - * alpha can be used on PGraphics objects from createGraphics(). This is - * the only way to set all the pixels partially transparent, for instance. - *

    - * Note that background() should be called before any transformations occur, - * because some implementations may require the current transformation matrix - * to be identity before drawing. - * - * @param rgb color value in hexadecimal notation (i.e. #FFCC00 or 0xFFFFCC00)
    or any value of the color datatype - */ - public void background(int rgb) { -// if (((rgb & 0xff000000) == 0) && (rgb <= colorModeX)) { -// background((float) rgb); -// -// } else { -// if (format == RGB) { -// rgb |= 0xff000000; // ignore alpha for main drawing surface -// } -// colorCalcARGB(rgb, colorModeA); -// backgroundFromCalc(); -// backgroundImpl(); -// } - colorCalc(rgb); - backgroundFromCalc(); - } - - - /** - * See notes about alpha in background(x, y, z, a). - */ - public void background(int rgb, float alpha) { -// if (format == RGB) { -// background(rgb); // ignore alpha for main drawing surface -// -// } else { -// if (((rgb & 0xff000000) == 0) && (rgb <= colorModeX)) { -// background((float) rgb, alpha); -// -// } else { -// colorCalcARGB(rgb, alpha); -// backgroundFromCalc(); -// backgroundImpl(); -// } -// } - colorCalc(rgb, alpha); - backgroundFromCalc(); - } - - - /** - * Set the background to a grayscale value, based on the - * current colorMode. - */ - public void background(float gray) { - colorCalc(gray); - backgroundFromCalc(); -// backgroundImpl(); - } - - - /** - * See notes about alpha in background(x, y, z, a). - * @param gray specifies a value between white and black - * @param alpha opacity of the background - */ - public void background(float gray, float alpha) { - if (format == RGB) { - background(gray); // ignore alpha for main drawing surface - - } else { - colorCalc(gray, alpha); - backgroundFromCalc(); -// backgroundImpl(); - } - } - - - /** - * Set the background to an r, g, b or h, s, b value, - * based on the current colorMode. - */ - public void background(float x, float y, float z) { - colorCalc(x, y, z); - backgroundFromCalc(); -// backgroundImpl(); - } - - - /** - * The background() function sets the color used for the background of the Processing window. The default background is light gray. In the draw() function, the background color is used to clear the display window at the beginning of each frame. - *

    An image can also be used as the background for a sketch, however its width and height must be the same size as the sketch window. To resize an image 'b' to the size of the sketch window, use b.resize(width, height). - *

    Images used as background will ignore the current tint() setting. - *

    It is not possible to use transparency (alpha) in background colors with the main drawing surface, however they will work properly with createGraphics. - * - * =advanced - *

    Clear the background with a color that includes an alpha value. This can - * only be used with objects created by createGraphics(), because the main - * drawing surface cannot be set transparent.

    - *

    It might be tempting to use this function to partially clear the screen - * on each frame, however that's not how this function works. When calling - * background(), the pixels will be replaced with pixels that have that level - * of transparency. To do a semi-transparent overlay, use fill() with alpha - * and draw a rectangle.

    - * - * @webref color:setting - * @param x red or hue value (depending on the current color mode) - * @param y green or saturation value (depending on the current color mode) - * @param z blue or brightness value (depending on the current color mode) - * - * @see PGraphics#stroke(float) - * @see PGraphics#fill(float) - * @see PGraphics#tint(float) - * @see PGraphics#colorMode(int) - */ - public void background(float x, float y, float z, float a) { -// if (format == RGB) { -// background(x, y, z); // don't allow people to set alpha -// -// } else { -// colorCalc(x, y, z, a); -// backgroundFromCalc(); -// backgroundImpl(); -// } - colorCalc(x, y, z, a); - backgroundFromCalc(); - } - - - protected void backgroundFromCalc() { - backgroundR = calcR; - backgroundG = calcG; - backgroundB = calcB; - backgroundA = (format == RGB) ? colorModeA : calcA; - backgroundRi = calcRi; - backgroundGi = calcGi; - backgroundBi = calcBi; - backgroundAi = (format == RGB) ? 255 : calcAi; - backgroundAlpha = (format == RGB) ? false : calcAlpha; - backgroundColor = calcColor; - - backgroundImpl(); - } - - - /** - * Takes an RGB or ARGB image and sets it as the background. - * The width and height of the image must be the same size as the sketch. - * Use image.resize(width, height) to make short work of such a task. - *

    - * Note that even if the image is set as RGB, the high 8 bits of each pixel - * should be set opaque (0xFF000000), because the image data will be copied - * directly to the screen, and non-opaque background images may have strange - * behavior. Using image.filter(OPAQUE) will handle this easily. - *

    - * When using 3D, this will also clear the zbuffer (if it exists). - */ - public void background(PImage image) { - if ((image.width != width) || (image.height != height)) { - throw new RuntimeException(ERROR_BACKGROUND_IMAGE_SIZE); - } - if ((image.format != RGB) && (image.format != ARGB)) { - throw new RuntimeException(ERROR_BACKGROUND_IMAGE_FORMAT); - } - backgroundColor = 0; // just zero it out for images - backgroundImpl(image); - } - - - /** - * Actually set the background image. This is separated from the error - * handling and other semantic goofiness that is shared across renderers. - */ - protected void backgroundImpl(PImage image) { - // blit image to the screen - set(0, 0, image); - } - - - /** - * Actual implementation of clearing the background, now that the - * internal variables for background color have been set. Called by the - * backgroundFromCalc() method, which is what all the other background() - * methods call once the work is done. - */ - protected void backgroundImpl() { - pushStyle(); - pushMatrix(); - resetMatrix(); - fill(backgroundColor); - rect(0, 0, width, height); - popMatrix(); - popStyle(); - } - - - /** - * Callback to handle clearing the background when begin/endRaw is in use. - * Handled as separate function for OpenGL (or other) subclasses that - * override backgroundImpl() but still needs this to work properly. - */ -// protected void backgroundRawImpl() { -// if (raw != null) { -// raw.colorMode(RGB, 1); -// raw.noStroke(); -// raw.fill(backgroundR, backgroundG, backgroundB); -// raw.beginShape(TRIANGLES); -// -// raw.vertex(0, 0); -// raw.vertex(width, 0); -// raw.vertex(0, height); -// -// raw.vertex(width, 0); -// raw.vertex(width, height); -// raw.vertex(0, height); -// -// raw.endShape(); -// } -// } - - - - ////////////////////////////////////////////////////////////// - - // COLOR MODE - - - /** - * @param mode Either RGB or HSB, corresponding to Red/Green/Blue and Hue/Saturation/Brightness - * @param max range for all color elements - */ - public void colorMode(int mode) { - colorMode(mode, colorModeX, colorModeY, colorModeZ, colorModeA); - } - - - public void colorMode(int mode, float max) { - colorMode(mode, max, max, max, max); - } - - - /** - * Set the colorMode and the maximum values for (r, g, b) - * or (h, s, b). - *

    - * Note that this doesn't set the maximum for the alpha value, - * which might be confusing if for instance you switched to - *

    colorMode(HSB, 360, 100, 100);
    - * because the alpha values were still between 0 and 255. - */ - public void colorMode(int mode, float maxX, float maxY, float maxZ) { - colorMode(mode, maxX, maxY, maxZ, colorModeA); - } - - - /** - * Changes the way Processing interprets color data. By default, the parameters for fill(), stroke(), background(), and color() are defined by values between 0 and 255 using the RGB color model. The colorMode() function is used to change the numerical range used for specifying colors and to switch color systems. For example, calling colorMode(RGB, 1.0) will specify that values are specified between 0 and 1. The limits for defining colors are altered by setting the parameters range1, range2, range3, and range 4. - * - * @webref color:setting - * @param maxX range for the red or hue depending on the current color mode - * @param maxY range for the green or saturation depending on the current color mode - * @param maxZ range for the blue or brightness depending on the current color mode - * @param maxA range for the alpha - * - * @see PGraphics#background(float) - * @see PGraphics#fill(float) - * @see PGraphics#stroke(float) - */ - public void colorMode(int mode, - float maxX, float maxY, float maxZ, float maxA) { - colorMode = mode; - - colorModeX = maxX; // still needs to be set for hsb - colorModeY = maxY; - colorModeZ = maxZ; - colorModeA = maxA; - - // if color max values are all 1, then no need to scale - colorModeScale = - ((maxA != 1) || (maxX != maxY) || (maxY != maxZ) || (maxZ != maxA)); - - // if color is rgb/0..255 this will make it easier for the - // red() green() etc functions - colorModeDefault = (colorMode == RGB) && - (colorModeA == 255) && (colorModeX == 255) && - (colorModeY == 255) && (colorModeZ == 255); - } - - - - ////////////////////////////////////////////////////////////// - - // COLOR CALCULATIONS - - // Given input values for coloring, these functions will fill the calcXxxx - // variables with values that have been properly filtered through the - // current colorMode settings. - - // Renderers that need to subclass any drawing properties such as fill or - // stroke will usally want to override methods like fillFromCalc (or the - // same for stroke, ambient, etc.) That way the color calcuations are - // covered by this based PGraphics class, leaving only a single function - // to override/implement in the subclass. - - - /** - * Set the fill to either a grayscale value or an ARGB int. - *

    - * The problem with this code is that it has to detect between these two - * situations automatically. This is done by checking to see if the high bits - * (the alpha for 0xAA000000) is set, and if not, whether the color value - * that follows is less than colorModeX (first param passed to colorMode). - *

    - * This auto-detect would break in the following situation: - *

    size(256, 256);
    -   * for (int i = 0; i < 256; i++) {
    -   *   color c = color(0, 0, 0, i);
    -   *   stroke(c);
    -   *   line(i, 0, i, 256);
    -   * }
    - * ...on the first time through the loop, where (i == 0), since the color - * itself is zero (black) then it would appear indistinguishable from code - * that reads "fill(0)". The solution is to use the four parameter versions - * of stroke or fill to more directly specify the desired result. - */ - protected void colorCalc(int rgb) { - if (((rgb & 0xff000000) == 0) && (rgb <= colorModeX)) { - colorCalc((float) rgb); - - } else { - colorCalcARGB(rgb, colorModeA); - } - } - - - protected void colorCalc(int rgb, float alpha) { - if (((rgb & 0xff000000) == 0) && (rgb <= colorModeX)) { // see above - colorCalc((float) rgb, alpha); - - } else { - colorCalcARGB(rgb, alpha); - } - } - - - protected void colorCalc(float gray) { - colorCalc(gray, colorModeA); - } - - - protected void colorCalc(float gray, float alpha) { - if (gray > colorModeX) gray = colorModeX; - if (alpha > colorModeA) alpha = colorModeA; - - if (gray < 0) gray = 0; - if (alpha < 0) alpha = 0; - - calcR = colorModeScale ? (gray / colorModeX) : gray; - calcG = calcR; - calcB = calcR; - calcA = colorModeScale ? (alpha / colorModeA) : alpha; - - calcRi = (int)(calcR*255); calcGi = (int)(calcG*255); - calcBi = (int)(calcB*255); calcAi = (int)(calcA*255); - calcColor = (calcAi << 24) | (calcRi << 16) | (calcGi << 8) | calcBi; - calcAlpha = (calcAi != 255); - } - - - protected void colorCalc(float x, float y, float z) { - colorCalc(x, y, z, colorModeA); - } - - - protected void colorCalc(float x, float y, float z, float a) { - if (x > colorModeX) x = colorModeX; - if (y > colorModeY) y = colorModeY; - if (z > colorModeZ) z = colorModeZ; - if (a > colorModeA) a = colorModeA; - - if (x < 0) x = 0; - if (y < 0) y = 0; - if (z < 0) z = 0; - if (a < 0) a = 0; - - switch (colorMode) { - case RGB: - if (colorModeScale) { - calcR = x / colorModeX; - calcG = y / colorModeY; - calcB = z / colorModeZ; - calcA = a / colorModeA; - } else { - calcR = x; calcG = y; calcB = z; calcA = a; - } - break; - - case HSB: - x /= colorModeX; // h - y /= colorModeY; // s - z /= colorModeZ; // b - - calcA = colorModeScale ? (a/colorModeA) : a; - - if (y == 0) { // saturation == 0 - calcR = calcG = calcB = z; - - } else { - float which = (x - (int)x) * 6.0f; - float f = which - (int)which; - float p = z * (1.0f - y); - float q = z * (1.0f - y * f); - float t = z * (1.0f - (y * (1.0f - f))); - - switch ((int)which) { - case 0: calcR = z; calcG = t; calcB = p; break; - case 1: calcR = q; calcG = z; calcB = p; break; - case 2: calcR = p; calcG = z; calcB = t; break; - case 3: calcR = p; calcG = q; calcB = z; break; - case 4: calcR = t; calcG = p; calcB = z; break; - case 5: calcR = z; calcG = p; calcB = q; break; - } - } - break; - } - calcRi = (int)(255*calcR); calcGi = (int)(255*calcG); - calcBi = (int)(255*calcB); calcAi = (int)(255*calcA); - calcColor = (calcAi << 24) | (calcRi << 16) | (calcGi << 8) | calcBi; - calcAlpha = (calcAi != 255); - } - - - /** - * Unpacks AARRGGBB color for direct use with colorCalc. - *

    - * Handled here with its own function since this is indepenent - * of the color mode. - *

    - * Strangely the old version of this code ignored the alpha - * value. not sure if that was a bug or what. - *

    - * Note, no need for a bounds check since it's a 32 bit number. - */ - protected void colorCalcARGB(int argb, float alpha) { - if (alpha == colorModeA) { - calcAi = (argb >> 24) & 0xff; - calcColor = argb; - } else { - calcAi = (int) (((argb >> 24) & 0xff) * (alpha / colorModeA)); - calcColor = (calcAi << 24) | (argb & 0xFFFFFF); - } - calcRi = (argb >> 16) & 0xff; - calcGi = (argb >> 8) & 0xff; - calcBi = argb & 0xff; - calcA = (float)calcAi / 255.0f; - calcR = (float)calcRi / 255.0f; - calcG = (float)calcGi / 255.0f; - calcB = (float)calcBi / 255.0f; - calcAlpha = (calcAi != 255); - } - - - - ////////////////////////////////////////////////////////////// - - // COLOR DATATYPE STUFFING - - // The 'color' primitive type in Processing syntax is in fact a 32-bit int. - // These functions handle stuffing color values into a 32-bit cage based - // on the current colorMode settings. - - // These functions are really slow (because they take the current colorMode - // into account), but they're easy to use. Advanced users can write their - // own bit shifting operations to setup 'color' data types. - - - public final int color(int gray) { // ignore - if (((gray & 0xff000000) == 0) && (gray <= colorModeX)) { - if (colorModeDefault) { - // bounds checking to make sure the numbers aren't to high or low - if (gray > 255) gray = 255; else if (gray < 0) gray = 0; - return 0xff000000 | (gray << 16) | (gray << 8) | gray; - } else { - colorCalc(gray); - } - } else { - colorCalcARGB(gray, colorModeA); - } - return calcColor; - } - - - public final int color(float gray) { // ignore - colorCalc(gray); - return calcColor; - } - - - /** - * @param gray can be packed ARGB or a gray in this case - */ - public final int color(int gray, int alpha) { // ignore - if (colorModeDefault) { - // bounds checking to make sure the numbers aren't to high or low - if (gray > 255) gray = 255; else if (gray < 0) gray = 0; - if (alpha > 255) alpha = 255; else if (alpha < 0) alpha = 0; - - return ((alpha & 0xff) << 24) | (gray << 16) | (gray << 8) | gray; - } - colorCalc(gray, alpha); - return calcColor; - } - - - /** - * @param rgb can be packed ARGB or a gray in this case - */ - public final int color(int rgb, float alpha) { // ignore - if (((rgb & 0xff000000) == 0) && (rgb <= colorModeX)) { - colorCalc(rgb, alpha); - } else { - colorCalcARGB(rgb, alpha); - } - return calcColor; - } - - - public final int color(float gray, float alpha) { // ignore - colorCalc(gray, alpha); - return calcColor; - } - - - public final int color(int x, int y, int z) { // ignore - if (colorModeDefault) { - // bounds checking to make sure the numbers aren't to high or low - if (x > 255) x = 255; else if (x < 0) x = 0; - if (y > 255) y = 255; else if (y < 0) y = 0; - if (z > 255) z = 255; else if (z < 0) z = 0; - - return 0xff000000 | (x << 16) | (y << 8) | z; - } - colorCalc(x, y, z); - return calcColor; - } - - - public final int color(float x, float y, float z) { // ignore - colorCalc(x, y, z); - return calcColor; - } - - - public final int color(int x, int y, int z, int a) { // ignore - if (colorModeDefault) { - // bounds checking to make sure the numbers aren't to high or low - if (a > 255) a = 255; else if (a < 0) a = 0; - if (x > 255) x = 255; else if (x < 0) x = 0; - if (y > 255) y = 255; else if (y < 0) y = 0; - if (z > 255) z = 255; else if (z < 0) z = 0; - - return (a << 24) | (x << 16) | (y << 8) | z; - } - colorCalc(x, y, z, a); - return calcColor; - } - - - public final int color(float x, float y, float z, float a) { // ignore - colorCalc(x, y, z, a); - return calcColor; - } - - - - ////////////////////////////////////////////////////////////// - - // COLOR DATATYPE EXTRACTION - - // Vee have veys of making the colors talk. - - - /** - * Extracts the alpha value from a color. - * - * @webref color:creating_reading - * @param what any value of the color datatype - */ - public final float alpha(int what) { - float c = (what >> 24) & 0xff; - if (colorModeA == 255) return c; - return (c / 255.0f) * colorModeA; - } - - - /** - * Extracts the red value from a color, scaled to match current colorMode(). This value is always returned as a float so be careful not to assign it to an int value.

    The red() function is easy to use and undestand, but is slower than another technique. To achieve the same results when working in colorMode(RGB, 255), but with greater speed, use the >> (right shift) operator with a bit mask. For example, the following two lines of code are equivalent:

    float r1 = red(myColor);
    float r2 = myColor >> 16 & 0xFF;
    - * - * @webref color:creating_reading - * @param what any value of the color datatype - * - * @see PGraphics#green(int) - * @see PGraphics#blue(int) - * @see PGraphics#hue(int) - * @see PGraphics#saturation(int) - * @see PGraphics#brightness(int) - * @ref rightshift - */ - public final float red(int what) { - float c = (what >> 16) & 0xff; - if (colorModeDefault) return c; - return (c / 255.0f) * colorModeX; - } - - - /** - * Extracts the green value from a color, scaled to match current colorMode(). This value is always returned as a float so be careful not to assign it to an int value.

    The green() function is easy to use and undestand, but is slower than another technique. To achieve the same results when working in colorMode(RGB, 255), but with greater speed, use the >> (right shift) operator with a bit mask. For example, the following two lines of code are equivalent:
    float r1 = green(myColor);
    float r2 = myColor >> 8 & 0xFF;
    - * - * @webref color:creating_reading - * @param what any value of the color datatype - * - * @see PGraphics#red(int) - * @see PGraphics#blue(int) - * @see PGraphics#hue(int) - * @see PGraphics#saturation(int) - * @see PGraphics#brightness(int) - * @ref rightshift - */ - public final float green(int what) { - float c = (what >> 8) & 0xff; - if (colorModeDefault) return c; - return (c / 255.0f) * colorModeY; - } - - - /** - * Extracts the blue value from a color, scaled to match current colorMode(). This value is always returned as a float so be careful not to assign it to an int value.

    The blue() function is easy to use and undestand, but is slower than another technique. To achieve the same results when working in colorMode(RGB, 255), but with greater speed, use a bit mask to remove the other color components. For example, the following two lines of code are equivalent:
    float r1 = blue(myColor);
    float r2 = myColor & 0xFF;
    - * - * @webref color:creating_reading - * @param what any value of the color datatype - * - * @see PGraphics#red(int) - * @see PGraphics#green(int) - * @see PGraphics#hue(int) - * @see PGraphics#saturation(int) - * @see PGraphics#brightness(int) - */ - public final float blue(int what) { - float c = (what) & 0xff; - if (colorModeDefault) return c; - return (c / 255.0f) * colorModeZ; - } - - - /** - * Extracts the hue value from a color. - * - * @webref color:creating_reading - * @param what any value of the color datatype - * - * @see PGraphics#red(int) - * @see PGraphics#green(int) - * @see PGraphics#blue(int) - * @see PGraphics#saturation(int) - * @see PGraphics#brightness(int) - */ - public final float hue(int what) { - if (what != cacheHsbKey) { - Color.RGBtoHSB((what >> 16) & 0xff, (what >> 8) & 0xff, - what & 0xff, cacheHsbValue); - cacheHsbKey = what; - } - return cacheHsbValue[0] * colorModeX; - } - - - /** - * Extracts the saturation value from a color. - * - * @webref color:creating_reading - * @param what any value of the color datatype - * - * @see PGraphics#red(int) - * @see PGraphics#green(int) - * @see PGraphics#blue(int) - * @see PGraphics#hue(int) - * @see PGraphics#brightness(int) - */ - public final float saturation(int what) { - if (what != cacheHsbKey) { - Color.RGBtoHSB((what >> 16) & 0xff, (what >> 8) & 0xff, - what & 0xff, cacheHsbValue); - cacheHsbKey = what; - } - return cacheHsbValue[1] * colorModeY; - } - - - /** - * Extracts the brightness value from a color. - * - * - * @webref color:creating_reading - * @param what any value of the color datatype - * - * @see PGraphics#red(int) - * @see PGraphics#green(int) - * @see PGraphics#blue(int) - * @see PGraphics#hue(int) - * @see PGraphics#saturation(int) - */ - public final float brightness(int what) { - if (what != cacheHsbKey) { - Color.RGBtoHSB((what >> 16) & 0xff, (what >> 8) & 0xff, - what & 0xff, cacheHsbValue); - cacheHsbKey = what; - } - return cacheHsbValue[2] * colorModeZ; - } - - - - ////////////////////////////////////////////////////////////// - - // COLOR DATATYPE INTERPOLATION - - // Against our better judgement. - - - /** - * Calculates a color or colors between two color at a specific increment. The amt parameter is the amount to interpolate between the two values where 0.0 equal to the first point, 0.1 is very near the first point, 0.5 is half-way in between, etc. - * - * @webref color:creating_reading - * @param c1 interpolate from this color - * @param c2 interpolate to this color - * @param amt between 0.0 and 1.0 - * - * @see PGraphics#blendColor(int, int, int) - * @see PGraphics#color(float, float, float, float) - */ - public int lerpColor(int c1, int c2, float amt) { - return lerpColor(c1, c2, amt, colorMode); - } - - static float[] lerpColorHSB1; - static float[] lerpColorHSB2; - - /** - * Interpolate between two colors. Like lerp(), but for the - * individual color components of a color supplied as an int value. - */ - static public int lerpColor(int c1, int c2, float amt, int mode) { - if (mode == RGB) { - float a1 = ((c1 >> 24) & 0xff); - float r1 = (c1 >> 16) & 0xff; - float g1 = (c1 >> 8) & 0xff; - float b1 = c1 & 0xff; - float a2 = (c2 >> 24) & 0xff; - float r2 = (c2 >> 16) & 0xff; - float g2 = (c2 >> 8) & 0xff; - float b2 = c2 & 0xff; - - return (((int) (a1 + (a2-a1)*amt) << 24) | - ((int) (r1 + (r2-r1)*amt) << 16) | - ((int) (g1 + (g2-g1)*amt) << 8) | - ((int) (b1 + (b2-b1)*amt))); - - } else if (mode == HSB) { - if (lerpColorHSB1 == null) { - lerpColorHSB1 = new float[3]; - lerpColorHSB2 = new float[3]; - } - - float a1 = (c1 >> 24) & 0xff; - float a2 = (c2 >> 24) & 0xff; - int alfa = ((int) (a1 + (a2-a1)*amt)) << 24; - - Color.RGBtoHSB((c1 >> 16) & 0xff, (c1 >> 8) & 0xff, c1 & 0xff, - lerpColorHSB1); - Color.RGBtoHSB((c2 >> 16) & 0xff, (c2 >> 8) & 0xff, c2 & 0xff, - lerpColorHSB2); - - /* If mode is HSB, this will take the shortest path around the - * color wheel to find the new color. For instance, red to blue - * will go red violet blue (backwards in hue space) rather than - * cycling through ROYGBIV. - */ - // Disabling rollover (wasn't working anyway) for 0126. - // Otherwise it makes full spectrum scale impossible for - // those who might want it...in spite of how despicable - // a full spectrum scale might be. - // roll around when 0.9 to 0.1 - // more than 0.5 away means that it should roll in the other direction - /* - float h1 = lerpColorHSB1[0]; - float h2 = lerpColorHSB2[0]; - if (Math.abs(h1 - h2) > 0.5f) { - if (h1 > h2) { - // i.e. h1 is 0.7, h2 is 0.1 - h2 += 1; - } else { - // i.e. h1 is 0.1, h2 is 0.7 - h1 += 1; - } - } - float ho = (PApplet.lerp(lerpColorHSB1[0], lerpColorHSB2[0], amt)) % 1.0f; - */ - float ho = PApplet.lerp(lerpColorHSB1[0], lerpColorHSB2[0], amt); - float so = PApplet.lerp(lerpColorHSB1[1], lerpColorHSB2[1], amt); - float bo = PApplet.lerp(lerpColorHSB1[2], lerpColorHSB2[2], amt); - - return alfa | (Color.HSBtoRGB(ho, so, bo) & 0xFFFFFF); - } - return 0; - } - - - - ////////////////////////////////////////////////////////////// - - // BEGINRAW/ENDRAW - - - /** - * Record individual lines and triangles by echoing them to another renderer. - */ - public void beginRaw(PGraphics rawGraphics) { // ignore - this.raw = rawGraphics; - rawGraphics.beginDraw(); - } - - - public void endRaw() { // ignore - if (raw != null) { - // for 3D, need to flush any geometry that's been stored for sorting - // (particularly if the ENABLE_DEPTH_SORT hint is set) - flush(); - - // just like beginDraw, this will have to be called because - // endDraw() will be happening outside of draw() - raw.endDraw(); - raw.dispose(); - raw = null; - } - } - - - - ////////////////////////////////////////////////////////////// - - // WARNINGS and EXCEPTIONS - - - static protected HashMap warnings; - - - /** - * Show a renderer error, and keep track of it so that it's only shown once. - * @param msg the error message (which will be stored for later comparison) - */ - static public void showWarning(String msg) { // ignore - if (warnings == null) { - warnings = new HashMap(); - } - if (!warnings.containsKey(msg)) { - System.err.println(msg); - warnings.put(msg, new Object()); - } - } - - - /** - * Display a warning that the specified method is only available with 3D. - * @param method The method name (no parentheses) - */ - static protected void showDepthWarning(String method) { - showWarning(method + "() can only be used with a renderer that " + - "supports 3D, such as P3D or OPENGL."); - } - - - /** - * Display a warning that the specified method that takes x, y, z parameters - * can only be used with x and y parameters in this renderer. - * @param method The method name (no parentheses) - */ - static protected void showDepthWarningXYZ(String method) { - showWarning(method + "() with x, y, and z coordinates " + - "can only be used with a renderer that " + - "supports 3D, such as P3D or OPENGL. " + - "Use a version without a z-coordinate instead."); - } - - - /** - * Display a warning that the specified method is simply unavailable. - */ - static protected void showMethodWarning(String method) { - showWarning(method + "() is not available with this renderer."); - } - - - /** - * Error that a particular variation of a method is unavailable (even though - * other variations are). For instance, if vertex(x, y, u, v) is not - * available, but vertex(x, y) is just fine. - */ - static protected void showVariationWarning(String str) { - showWarning(str + " is not available with this renderer."); - } - - - /** - * Display a warning that the specified method is not implemented, meaning - * that it could be either a completely missing function, although other - * variations of it may still work properly. - */ - static protected void showMissingWarning(String method) { - showWarning(method + "(), or this particular variation of it, " + - "is not available with this renderer."); - } - - - /** - * Show an renderer-related exception that halts the program. Currently just - * wraps the message as a RuntimeException and throws it, but might do - * something more specific might be used in the future. - */ - static public void showException(String msg) { // ignore - throw new RuntimeException(msg); - } - - - /** - * Same as below, but defaults to a 12 point font, just as MacWrite intended. - */ - protected void defaultFontOrDeath(String method) { - defaultFontOrDeath(method, 12); - } - - - /** - * First try to create a default font, but if that's not possible, throw - * an exception that halts the program because textFont() has not been used - * prior to the specified method. - */ - protected void defaultFontOrDeath(String method, float size) { - if (parent != null) { - textFont = parent.createDefaultFont(size); - } else { - throw new RuntimeException("Use textFont() before " + method + "()"); - } - } - - - - ////////////////////////////////////////////////////////////// - - // RENDERER SUPPORT QUERIES - - - /** - * Return true if this renderer should be drawn to the screen. Defaults to - * returning true, since nearly all renderers are on-screen beasts. But can - * be overridden for subclasses like PDF so that a window doesn't open up. - *

    - * A better name? showFrame, displayable, isVisible, visible, shouldDisplay, - * what to call this? - */ - public boolean displayable() { - return true; - } - - - /** - * Return true if this renderer supports 2D drawing. Defaults to true. - */ - public boolean is2D() { - return true; - } - - - /** - * Return true if this renderer supports 2D drawing. Defaults to true. - */ - public boolean is3D() { - return false; - } -} diff --git a/core/src/processing/core/PGraphics2D.java b/core/src/processing/core/PGraphics2D.java deleted file mode 100644 index 0c0bfa77e..000000000 --- a/core/src/processing/core/PGraphics2D.java +++ /dev/null @@ -1,2144 +0,0 @@ -/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */ - -/* - Part of the Processing project - http://processing.org - - Copyright (c) 2006-08 Ben Fry and Casey Reas - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General - Public License along with this library; if not, write to the - Free Software Foundation, Inc., 59 Temple Place, Suite 330, - Boston, MA 02111-1307 USA -*/ - -package processing.core; - -import java.awt.Toolkit; -import java.awt.image.DirectColorModel; -import java.awt.image.MemoryImageSource; -import java.util.Arrays; - - -/** - * Subclass of PGraphics that handles fast 2D rendering using a - * MemoryImageSource. The renderer found in this class is not as accurate as - * PGraphicsJava2D, but offers certain speed tradeoffs, particular when - * messing with the pixels array, or displaying image or video data. - */ -public class PGraphics2D extends PGraphics { - - PMatrix2D ctm = new PMatrix2D(); - - //PPolygon polygon; // general polygon to use for shape - PPolygon fpolygon; // used to fill polys for tri or quad strips - PPolygon spolygon; // stroke/line polygon - float svertices[][]; // temp vertices used for stroking end of poly - - PPolygon tpolygon; - int[] vertexOrder; - - PLine line; - - float[][] matrixStack = new float[MATRIX_STACK_DEPTH][6]; - int matrixStackDepth; - - DirectColorModel cm; - MemoryImageSource mis; - - - ////////////////////////////////////////////////////////////// - - - public PGraphics2D() { } - - - //public void setParent(PApplet parent) - - - //public void setPrimary(boolean primary) - - - //public void setPath(String path) - - - //public void setSize(int iwidth, int iheight) - - - protected void allocate() { - pixelCount = width * height; - pixels = new int[pixelCount]; - - if (primarySurface) { - cm = new DirectColorModel(32, 0x00ff0000, 0x0000ff00, 0x000000ff);; - mis = new MemoryImageSource(width, height, pixels, 0, width); - mis.setFullBufferUpdates(true); - mis.setAnimated(true); - image = Toolkit.getDefaultToolkit().createImage(mis); - } - } - - - //public void dispose() - - - - ////////////////////////////////////////////////////////////// - - - public boolean canDraw() { - return true; - } - - - public void beginDraw() { - // need to call defaults(), but can only be done when it's ok to draw - // (i.e. for OpenGL, no drawing can be done outside beginDraw/endDraw). - if (!settingsInited) { - defaultSettings(); - -// polygon = new PPolygon(this); - fpolygon = new PPolygon(this); - spolygon = new PPolygon(this); - spolygon.vertexCount = 4; - svertices = new float[2][]; - } - - resetMatrix(); // reset model matrix - - // reset vertices - vertexCount = 0; - } - - - public void endDraw() { - if (mis != null) { - mis.newPixels(pixels, cm, 0, width); - } - // mark pixels as having been updated, so that they'll work properly - // when this PGraphics is drawn using image(). - updatePixels(); - } - - - // public void flush() - - - - ////////////////////////////////////////////////////////////// - - - //protected void checkSettings() - - - //protected void defaultSettings() - - - //protected void reapplySettings() - - - - ////////////////////////////////////////////////////////////// - - - //public void hint(int which) - - - - ////////////////////////////////////////////////////////////// - - - //public void beginShape() - - - public void beginShape(int kind) { - shape = kind; - vertexCount = 0; - curveVertexCount = 0; - -// polygon.reset(0); - fpolygon.reset(4); - spolygon.reset(4); - - textureImage = null; -// polygon.interpUV = false; - } - - - //public void edge(boolean e) - - - //public void normal(float nx, float ny, float nz) - - - //public void textureMode(int mode) - - - //public void texture(PImage image) - - - /* - public void vertex(float x, float y) { - if (shape == POINTS) { - point(x, y); - } else { - super.vertex(x, y); - } - } - */ - - - public void vertex(float x, float y, float z) { - showDepthWarningXYZ("vertex"); - } - - - //public void vertex(float x, float y, float u, float v) - - - public void vertex(float x, float y, float z, float u, float v) { - showDepthWarningXYZ("vertex"); - } - - - //protected void vertexTexture(float u, float v); - - - public void breakShape() { - showWarning("This renderer cannot handle concave shapes " + - "or shapes with holes."); - } - - - //public void endShape() - - - public void endShape(int mode) { - if (ctm.isIdentity()) { - for (int i = 0; i < vertexCount; i++) { - vertices[i][TX] = vertices[i][X]; - vertices[i][TY] = vertices[i][Y]; - } - } else { - for (int i = 0; i < vertexCount; i++) { - vertices[i][TX] = ctm.multX(vertices[i][X], vertices[i][Y]); - vertices[i][TY] = ctm.multY(vertices[i][X], vertices[i][Y]); - } - } - - // ------------------------------------------------------------------ - // TEXTURES - - fpolygon.texture(textureImage); - - // ------------------------------------------------------------------ - // COLORS - // calculate RGB for each vertex - - spolygon.interpARGB = true; //strokeChanged; //false; - fpolygon.interpARGB = true; //fillChanged; //false; - - // all the values for r, g, b have been set with calls to vertex() - // (no need to re-calculate anything here) - - // ------------------------------------------------------------------ - // RENDER SHAPES - - int increment; - - switch (shape) { - case POINTS: - // stroke cannot change inside beginShape(POINTS); - if (stroke) { - if ((ctm.m00 == ctm.m11) && (strokeWeight == 1)) { - for (int i = 0; i < vertexCount; i++) { - thin_point(vertices[i][TX], vertices[i][TY], strokeColor); - } - } else { - for (int i = 0; i < vertexCount; i++) { - float[] v = vertices[i]; - thick_point(v[TX], v[TY], v[TZ], v[SR], v[SG], v[SB], v[SA]); - } - } - } - break; - - case LINES: - if (stroke) { - // increment by two for individual lines - increment = (shape == LINES) ? 2 : 1; - draw_lines(vertices, vertexCount-1, 1, increment, 0); - } - break; - - case TRIANGLE_FAN: - // do fill and stroke separately because otherwise - // the lines will be stroked more than necessary - if (fill || textureImage != null) { - fpolygon.vertexCount = 3; - - for (int i = 1; i < vertexCount-1; i++) { -// System.out.println(i + " of " + vertexCount); - - fpolygon.vertices[2][R] = vertices[0][R]; - fpolygon.vertices[2][G] = vertices[0][G]; - fpolygon.vertices[2][B] = vertices[0][B]; - fpolygon.vertices[2][A] = vertices[0][A]; - - fpolygon.vertices[2][TX] = vertices[0][TX]; - fpolygon.vertices[2][TY] = vertices[0][TY]; - - if (textureImage != null) { - fpolygon.vertices[2][U] = vertices[0][U]; - fpolygon.vertices[2][V] = vertices[0][V]; - } -// System.out.println(fpolygon.vertices[2][TX] + " " + fpolygon.vertices[2][TY]); - - for (int j = 0; j < 2; j++) { - fpolygon.vertices[j][R] = vertices[i+j][R]; - fpolygon.vertices[j][G] = vertices[i+j][G]; - fpolygon.vertices[j][B] = vertices[i+j][B]; - fpolygon.vertices[j][A] = vertices[i+j][A]; - - fpolygon.vertices[j][TX] = vertices[i+j][TX]; - fpolygon.vertices[j][TY] = vertices[i+j][TY]; - -// System.out.println(fpolygon.vertices[j][TX] + " " + fpolygon.vertices[j][TY]); - - if (textureImage != null) { - fpolygon.vertices[j][U] = vertices[i+j][U]; - fpolygon.vertices[j][V] = vertices[i+j][V]; - } - } -// System.out.println(); - fpolygon.render(); - } - } - if (stroke) { - // draw internal lines - for (int i = 1; i < vertexCount; i++) { - draw_line(vertices[0], vertices[i]); - } - // draw a ring around the outside - for (int i = 1; i < vertexCount-1; i++) { - draw_line(vertices[i], vertices[i+1]); - } - // close the shape - draw_line(vertices[vertexCount-1], vertices[1]); - } - break; - - case TRIANGLES: - case TRIANGLE_STRIP: - increment = (shape == TRIANGLES) ? 3 : 1; - // do fill and stroke separately because otherwise - // the lines will be stroked more than necessary - if (fill || textureImage != null) { - fpolygon.vertexCount = 3; - for (int i = 0; i < vertexCount-2; i += increment) { - for (int j = 0; j < 3; j++) { - fpolygon.vertices[j][R] = vertices[i+j][R]; - fpolygon.vertices[j][G] = vertices[i+j][G]; - fpolygon.vertices[j][B] = vertices[i+j][B]; - fpolygon.vertices[j][A] = vertices[i+j][A]; - - fpolygon.vertices[j][TX] = vertices[i+j][TX]; - fpolygon.vertices[j][TY] = vertices[i+j][TY]; - fpolygon.vertices[j][TZ] = vertices[i+j][TZ]; - - if (textureImage != null) { - fpolygon.vertices[j][U] = vertices[i+j][U]; - fpolygon.vertices[j][V] = vertices[i+j][V]; - } - } - fpolygon.render(); - } - } - if (stroke) { - // first draw all vertices as a line strip - if (shape == TRIANGLE_STRIP) { - draw_lines(vertices, vertexCount-1, 1, 1, 0); - } else { - draw_lines(vertices, vertexCount-1, 1, 1, 3); - } - // then draw from vertex (n) to (n+2) - // incrementing n using the same as above - draw_lines(vertices, vertexCount-2, 2, increment, 0); - // changed this to vertexCount-2, because it seemed - // to be adding an extra (nonexistant) line - } - break; - - case QUADS: - if (fill || textureImage != null) { - fpolygon.vertexCount = 4; - for (int i = 0; i < vertexCount-3; i += 4) { - for (int j = 0; j < 4; j++) { - int jj = i+j; - fpolygon.vertices[j][R] = vertices[jj][R]; - fpolygon.vertices[j][G] = vertices[jj][G]; - fpolygon.vertices[j][B] = vertices[jj][B]; - fpolygon.vertices[j][A] = vertices[jj][A]; - - fpolygon.vertices[j][TX] = vertices[jj][TX]; - fpolygon.vertices[j][TY] = vertices[jj][TY]; - fpolygon.vertices[j][TZ] = vertices[jj][TZ]; - - if (textureImage != null) { - fpolygon.vertices[j][U] = vertices[jj][U]; - fpolygon.vertices[j][V] = vertices[jj][V]; - } - } - fpolygon.render(); - } - } - if (stroke) { - for (int i = 0; i < vertexCount-3; i += 4) { - draw_line(vertices[i+0], vertices[i+1]); - draw_line(vertices[i+1], vertices[i+2]); - draw_line(vertices[i+2], vertices[i+3]); - draw_line(vertices[i+3], vertices[i+0]); - } - } - break; - - case QUAD_STRIP: - if (fill || textureImage != null) { - fpolygon.vertexCount = 4; - for (int i = 0; i < vertexCount-3; i += 2) { - for (int j = 0; j < 4; j++) { - int jj = i+j; - if (j == 2) jj = i+3; // swap 2nd and 3rd vertex - if (j == 3) jj = i+2; - - fpolygon.vertices[j][R] = vertices[jj][R]; - fpolygon.vertices[j][G] = vertices[jj][G]; - fpolygon.vertices[j][B] = vertices[jj][B]; - fpolygon.vertices[j][A] = vertices[jj][A]; - - fpolygon.vertices[j][TX] = vertices[jj][TX]; - fpolygon.vertices[j][TY] = vertices[jj][TY]; - fpolygon.vertices[j][TZ] = vertices[jj][TZ]; - - if (textureImage != null) { - fpolygon.vertices[j][U] = vertices[jj][U]; - fpolygon.vertices[j][V] = vertices[jj][V]; - } - } - fpolygon.render(); - } - } - if (stroke) { - draw_lines(vertices, vertexCount-1, 1, 2, 0); // inner lines - draw_lines(vertices, vertexCount-2, 2, 1, 0); // outer lines - } - break; - - case POLYGON: - if (isConvex()) { - if (fill || textureImage != null) { - //System.out.println("convex"); - fpolygon.renderPolygon(vertices, vertexCount); - //if (stroke) polygon.unexpand(); - } - - if (stroke) { - draw_lines(vertices, vertexCount-1, 1, 1, 0); - if (mode == CLOSE) { - // draw the last line connecting back to the first point in poly - //svertices[0] = vertices[vertexCount-1]; - //svertices[1] = vertices[0]; - //draw_lines(svertices, 1, 1, 1, 0); - draw_line(vertices[vertexCount-1], vertices[0]); - } - } - } else { // not convex - //System.out.println("concave"); - if (fill || textureImage != null) { - // the triangulator produces polygons that don't align - // when smoothing is enabled. but if there is a stroke around - // the polygon, then smoothing can be temporarily disabled. - boolean smoov = smooth; - //if (stroke && !hints[DISABLE_SMOOTH_HACK]) smooth = false; - if (stroke) smooth = false; - concaveRender(); - //if (stroke && !hints[DISABLE_SMOOTH_HACK]) smooth = smoov; - if (stroke) smooth = smoov; - } - - if (stroke) { - draw_lines(vertices, vertexCount-1, 1, 1, 0); - if (mode == CLOSE) { - // draw the last line connecting back - // to the first point in poly -// svertices[0] = vertices[vertexCount-1]; -// svertices[1] = vertices[0]; -// draw_lines(svertices, 1, 1, 1, 0); - draw_line(vertices[vertexCount-1], vertices[0]); - } - } - } - break; - } - - // to signify no shape being drawn - shape = 0; - } - - - - ////////////////////////////////////////////////////////////// - - // CONCAVE/CONVEX POLYGONS - - - private boolean isConvex() { - //float v[][] = polygon.vertices; - //int n = polygon.vertexCount; - //int j,k; - //float tol = 0.001f; - - if (vertexCount < 3) { - // ERROR: this is a line or a point, render as convex - return true; - } - - int flag = 0; - // iterate along border doing dot product. - // if the sign of the result changes, then is concave - for (int i = 0; i < vertexCount; i++) { - float[] vi = vertices[i]; - float[] vj = vertices[(i + 1) % vertexCount]; - float[] vk = vertices[(i + 2) % vertexCount]; - float calc = ((vj[TX] - vi[TX]) * (vk[TY] - vj[TY]) - - (vj[TY] - vi[TY]) * (vk[TX] - vj[TX])); - if (calc < 0) { - flag |= 1; - } else if (calc > 0) { - flag |= 2; - } - if (flag == 3) { - return false; // CONCAVE - } - } - if (flag != 0) { - return true; // CONVEX - } else { - // ERROR: colinear points, self intersection - // treat as CONVEX - return true; - } - } - - - /** - * Triangulate the current polygon. - *

    - * Simple ear clipping polygon triangulation adapted from code by - * John W. Ratcliff (jratcliff at verant.com). Presumably - * this - * bit of code from the web. - */ - protected void concaveRender() { - if (vertexOrder == null || vertexOrder.length != vertices.length) { - vertexOrder = new int[vertices.length]; -// int[] temp = new int[vertices.length]; -// // since vertex_start may not be zero, might need to keep old stuff around -// PApplet.arrayCopy(vertexOrder, temp, vertexCount); -// vertexOrder = temp; - } - - if (tpolygon == null) { - tpolygon = new PPolygon(this); - } - tpolygon.reset(3); - - // first we check if the polygon goes clockwise or counterclockwise - float area = 0; - for (int p = vertexCount - 1, q = 0; q < vertexCount; p = q++) { - area += (vertices[q][X] * vertices[p][Y] - - vertices[p][X] * vertices[q][Y]); - } - // ain't nuthin there - if (area == 0) return; - - // don't allow polygons to come back and meet themselves, - // otherwise it will anger the triangulator - // http://dev.processing.org/bugs/show_bug.cgi?id=97 - float vfirst[] = vertices[0]; - float vlast[] = vertices[vertexCount-1]; - if ((Math.abs(vfirst[X] - vlast[X]) < EPSILON) && - (Math.abs(vfirst[Y] - vlast[Y]) < EPSILON) && - (Math.abs(vfirst[Z] - vlast[Z]) < EPSILON)) { - vertexCount--; - } - - // then sort the vertices so they are always in a counterclockwise order - for (int i = 0; i < vertexCount; i++) { - vertexOrder[i] = (area > 0) ? i : (vertexCount-1 - i); - } - - // remove vc-2 Vertices, creating 1 triangle every time - int vc = vertexCount; // vc will be decremented while working - int count = 2*vc; // complex polygon detection - - for (int m = 0, v = vc - 1; vc > 2; ) { - boolean snip = true; - - // if we start over again, is a complex polygon - if (0 >= (count--)) { - break; // triangulation failed - } - - // get 3 consecutive vertices - int u = v ; if (vc <= u) u = 0; // previous - v = u + 1; if (vc <= v) v = 0; // current - int w = v + 1; if (vc <= w) w = 0; // next - - // Upgrade values to doubles, and multiply by 10 so that we can have - // some better accuracy as we tessellate. This seems to have negligible - // speed differences on Windows and Intel Macs, but causes a 50% speed - // drop for PPC Macs with the bug's example code that draws ~200 points - // in a concave polygon. Apple has abandoned PPC so we may as well too. - // http://dev.processing.org/bugs/show_bug.cgi?id=774 - - // triangle A B C - double Ax = -10 * vertices[vertexOrder[u]][X]; - double Ay = 10 * vertices[vertexOrder[u]][Y]; - double Bx = -10 * vertices[vertexOrder[v]][X]; - double By = 10 * vertices[vertexOrder[v]][Y]; - double Cx = -10 * vertices[vertexOrder[w]][X]; - double Cy = 10 * vertices[vertexOrder[w]][Y]; - - // first we check if continues going ccw - if (EPSILON > (((Bx-Ax) * (Cy-Ay)) - ((By-Ay) * (Cx-Ax)))) { - continue; - } - - for (int p = 0; p < vc; p++) { - if ((p == u) || (p == v) || (p == w)) { - continue; - } - - double Px = -10 * vertices[vertexOrder[p]][X]; - double Py = 10 * vertices[vertexOrder[p]][Y]; - - double ax = Cx - Bx; double ay = Cy - By; - double bx = Ax - Cx; double by = Ay - Cy; - double cx = Bx - Ax; double cy = By - Ay; - double apx = Px - Ax; double apy = Py - Ay; - double bpx = Px - Bx; double bpy = Py - By; - double cpx = Px - Cx; double cpy = Py - Cy; - - double aCROSSbp = ax * bpy - ay * bpx; - double cCROSSap = cx * apy - cy * apx; - double bCROSScp = bx * cpy - by * cpx; - - if ((aCROSSbp >= 0.0) && (bCROSScp >= 0.0) && (cCROSSap >= 0.0)) { - snip = false; - } - } - - if (snip) { - tpolygon.renderTriangle(vertices[vertexOrder[u]], - vertices[vertexOrder[v]], - vertices[vertexOrder[w]]); - m++; - - // remove v from remaining polygon - for (int s = v, t = v + 1; t < vc; s++, t++) { - vertexOrder[s] = vertexOrder[t]; - } - vc--; - - // reset error detection counter - count = 2 * vc; - } - } - } - - - /* - // triangulate the current polygon - private void concaveRender() { - float polyVertices[][] = polygon.vertices; - - if (tpolygon == null) { - // allocate on first use, rather than slowing - // the startup of the class. - tpolygon = new PPolygon(this); - tpolygon_vertex_order = new int[TPOLYGON_MAX_VERTICES]; - } - tpolygon.reset(3); - - // copy render parameters - - if (textureImage != null) { - tpolygon.texture(textureImage); //polygon.timage); - } - - tpolygon.interpX = polygon.interpX; - tpolygon.interpUV = polygon.interpUV; - tpolygon.interpARGB = polygon.interpARGB; - - // simple ear clipping polygon triangulation - // addapted from code by john w. ratcliff (jratcliff@verant.com) - - // 1 - first we check if the polygon goes CW or CCW - // CW-CCW ordering adapted from code by - // Joseph O'Rourke orourke@cs.smith.edu - // 1A - we start by finding the lowest-right most vertex - - boolean ccw = false; // clockwise - - int n = polygon.vertexCount; - int mm; // postion for LR vertex - //float min[] = new float[2]; - float minX = polyVertices[0][TX]; - float minY = polyVertices[0][TY]; - mm = 0; - - for(int i = 0; i < n; i++ ) { - if ((polyVertices[i][TY] < minY) || - ((polyVertices[i][TY] == minY) && (polyVertices[i][TX] > minX) ) - ) { - mm = i; - minX = polyVertices[mm][TX]; - minY = polyVertices[mm][TY]; - } - } - - // 1B - now we compute the cross product of the edges of this vertex - float cp; - int mm1; - - // just for renaming - float a[] = new float[2]; - float b[] = new float[2]; - float c[] = new float[2]; - - mm1 = (mm + (n-1)) % n; - - // assign a[0] to point to poly[m1][0] etc. - for(int i = 0; i < 2; i++ ) { - a[i] = polyVertices[mm1][i]; - b[i] = polyVertices[mm][i]; - c[i] = polyVertices[(mm+1)%n][i]; - } - - cp = a[0] * b[1] - a[1] * b[0] + - a[1] * c[0] - a[0] * c[1] + - b[0] * c[1] - c[0] * b[1]; - - if ( cp > 0 ) - ccw = true; // CCW - else - ccw = false; // CW - - // 1C - then we sort the vertices so they - // are always in a counterclockwise order - //int j = 0; - if (!ccw) { - // keep the same order - for (int i = 0; i < n; i++) { - tpolygon_vertex_order[i] = i; - } - - } else { - // invert the order - for (int i = 0; i < n; i++) { - tpolygon_vertex_order[i] = (n - 1) - i; - } - } - - // 2 - begin triangulation - // resulting triangles are stored in the triangle array - // remove vc-2 Vertices, creating 1 triangle every time - int vc = n; - int count = 2*vc; // complex polygon detection - - for (int m = 0, v = vc - 1; vc > 2; ) { - boolean snip = true; - - // if we start over again, is a complex polygon - if (0 >= (count--)) { - break; // triangulation failed - } - - // get 3 consecutive vertices - int u = v ; if (vc <= u) u = 0; // previous - v = u+1; if (vc <= v) v = 0; // current - int w = v+1; if (vc <= w) w = 0; // next - - // triangle A B C - float Ax, Ay, Bx, By, Cx, Cy, Px, Py; - - Ax = -polyVertices[tpolygon_vertex_order[u]][TX]; - Ay = polyVertices[tpolygon_vertex_order[u]][TY]; - Bx = -polyVertices[tpolygon_vertex_order[v]][TX]; - By = polyVertices[tpolygon_vertex_order[v]][TY]; - Cx = -polyVertices[tpolygon_vertex_order[w]][TX]; - Cy = polyVertices[tpolygon_vertex_order[w]][TY]; - - if ( EPSILON > (((Bx-Ax) * (Cy-Ay)) - ((By-Ay) * (Cx-Ax)))) { - continue; - } - - for (int p = 0; p < vc; p++) { - - // this part is a bit osbscure, basically what it does - // is test if this tree vertices are and ear or not, looking for - // intersections with the remaining vertices using a cross product - float ax, ay, bx, by, cx, cy, apx, apy, bpx, bpy, cpx, cpy; - float cCROSSap, bCROSScp, aCROSSbp; - - if( (p == u) || (p == v) || (p == w) ) { - continue; - } - - Px = -polyVertices[tpolygon_vertex_order[p]][TX]; - Py = polyVertices[tpolygon_vertex_order[p]][TY]; - - ax = Cx - Bx; ay = Cy - By; - bx = Ax - Cx; by = Ay - Cy; - cx = Bx - Ax; cy = By - Ay; - apx= Px - Ax; apy= Py - Ay; - bpx= Px - Bx; bpy= Py - By; - cpx= Px - Cx; cpy= Py - Cy; - - aCROSSbp = ax * bpy - ay * bpx; - cCROSSap = cx * apy - cy * apx; - bCROSScp = bx * cpy - by * cpx; - - if ((aCROSSbp >= 0.0f) && (bCROSScp >= 0.0f) && (cCROSSap >= 0.0f)) { - snip = false; - } - } - - if (snip) { - // yes, the trio is an ear, render it and cut it - - int triangle_vertices[] = new int[3]; - int s,t; - - // true names of the vertices - triangle_vertices[0] = tpolygon_vertex_order[u]; - triangle_vertices[1] = tpolygon_vertex_order[v]; - triangle_vertices[2] = tpolygon_vertex_order[w]; - - // create triangle - //render_triangle(triangle_vertices); - //private final void render_triangle(int[] triangle_vertices) { - // copy all fields of the triangle vertices - for (int i = 0; i < 3; i++) { - float[] src = polygon.vertices[triangle_vertices[i]]; - float[] dest = tpolygon.vertices[i]; - for (int k = 0; k < VERTEX_FIELD_COUNT; k++) { - dest[k] = src[k]; - } - } - // render triangle - tpolygon.render(); - //} - - m++; - - // remove v from remaining polygon - for( s = v, t = v + 1; t < vc; s++, t++) { - tpolygon_vertex_order[s] = tpolygon_vertex_order[t]; - } - - vc--; - - // resest error detection counter - count = 2 * vc; - } - } - } - */ - - - - ////////////////////////////////////////////////////////////// - - // BEZIER VERTICES - - - //public void bezierVertex(float x2, float y2, - // float x3, float y3, - // float x4, float y4) - - - //public void bezierVertex(float x2, float y2, float z2, - // float x3, float y3, float z3, - // float x4, float y4, float z4) - - - - ////////////////////////////////////////////////////////////// - - // CURVE VERTICES - - - //public void curveVertex(float x, float y) - - - //public void curveVertex(float x, float y, float z) - - - - ////////////////////////////////////////////////////////////// - - // FLUSH - - - //public void flush() - - - - ////////////////////////////////////////////////////////////// - - // PRIMITIVES - - - //public void point(float x, float y) - - - public void point(float x, float y, float z) { - showDepthWarningXYZ("point"); - } - - - //public void line(float x1, float y1, float x2, float y2) - - - //public void line(float x1, float y1, float z1, - // float x2, float y2, float z2) - - - //public void triangle(float x1, float y1, - // float x2, float y2, - // float x3, float y3) - - - //public void quad(float x1, float y1, float x2, float y2, - // float x3, float y3, float x4, float y4) - - - - ////////////////////////////////////////////////////////////// - - // RECT - - - protected void rectImpl(float x1f, float y1f, float x2f, float y2f) { - if (smooth || strokeAlpha || ctm.isWarped()) { - // screw the efficiency, send this off to beginShape(). - super.rectImpl(x1f, y1f, x2f, y2f); - - } else { - int x1 = (int) (x1f + ctm.m02); - int y1 = (int) (y1f + ctm.m12); - int x2 = (int) (x2f + ctm.m02); - int y2 = (int) (y2f + ctm.m12); - - if (fill) { - simple_rect_fill(x1, y1, x2, y2); - } - - if (stroke) { - if (strokeWeight == 1) { - thin_flat_line(x1, y1, x2, y1); - thin_flat_line(x2, y1, x2, y2); - thin_flat_line(x2, y2, x1, y2); - thin_flat_line(x1, y2, x1, y1); - - } else { - thick_flat_line(x1, y1, strokeR, strokeG, strokeB, strokeA, - x2, y1, strokeR, strokeG, strokeB, strokeA); - thick_flat_line(x2, y1, strokeR, strokeG, strokeB, strokeA, - x2, y2, strokeR, strokeG, strokeB, strokeA); - thick_flat_line(x2, y2, strokeR, strokeG, strokeB, strokeA, - x1, y2, strokeR, strokeG, strokeB, strokeA); - thick_flat_line(x1, y2, strokeR, strokeG, strokeB, strokeA, - x1, y1, strokeR, strokeG, strokeB, strokeA); - } - } - } - } - - - /** - * Draw a rectangle that hasn't been warped by the CTM (though it may be - * translated). Just fill a bunch of pixels, or blend them if there's alpha. - */ - private void simple_rect_fill(int x1, int y1, int x2, int y2) { - if (y2 < y1) { - int temp = y1; y1 = y2; y2 = temp; - } - if (x2 < x1) { - int temp = x1; x1 = x2; x2 = temp; - } - // check to see if completely off-screen (e.g. if the left edge of the - // rectangle is bigger than the width, and so on.) - if ((x1 > width1) || (x2 < 0) || - (y1 > height1) || (y2 < 0)) return; - - // these only affect the fill, not the stroke - // (otherwise strange boogers at edges b/c frame changes shape) - if (x1 < 0) x1 = 0; - if (x2 > width) x2 = width; - if (y1 < 0) y1 = 0; - if (y2 > height) y2 = height; - - int ww = x2 - x1; - - if (fillAlpha) { - for (int y = y1; y < y2; y++) { - int index = y*width + x1; - for (int x = 0; x < ww; x++) { - pixels[index] = blend_fill(pixels[index]); - index++; - } - } - - } else { - // on avg. 20-25% faster fill routine using System.arraycopy() [toxi 031223] - // removed temporary row[] array for (hopefully) better performance [fry 081117] - int hh = y2 - y1; - // int[] row = new int[ww]; - // for (int i = 0; i < ww; i++) row[i] = fillColor; - int index = y1 * width + x1; - int rowIndex = index; - for (int i = 0; i < ww; i++) { - pixels[index + i] = fillColor; - } - for (int y = 0; y < hh; y++) { - // System.arraycopy(row, 0, pixels, idx, ww); - System.arraycopy(pixels, rowIndex, pixels, index, ww); - index += width; - } - // row = null; - } - } - - - - ////////////////////////////////////////////////////////////// - - // ELLIPSE AND ARC - - - protected void ellipseImpl(float x, float y, float w, float h) { - if (smooth || (strokeWeight != 1) || - fillAlpha || strokeAlpha || ctm.isWarped()) { - // identical to PGraphics version, but uses POLYGON - // for the fill instead of a TRIANGLE_FAN - float radiusH = w / 2; - float radiusV = h / 2; - - float centerX = x + radiusH; - float centerY = y + radiusV; - - float sx1 = screenX(x, y); - float sy1 = screenY(x, y); - float sx2 = screenX(x+w, y+h); - float sy2 = screenY(x+w, y+h); - int accuracy = (int) (TWO_PI * PApplet.dist(sx1, sy1, sx2, sy2) / 8); - if (accuracy < 4) return; // don't bother? - //System.out.println("diameter " + w + " " + h + " -> " + accuracy); - - float inc = (float)SINCOS_LENGTH / accuracy; - - float val = 0; - - if (fill) { - boolean savedStroke = stroke; - stroke = false; - - beginShape(); - for (int i = 0; i < accuracy; i++) { - vertex(centerX + cosLUT[(int) val] * radiusH, - centerY + sinLUT[(int) val] * radiusV); - val += inc; - } - endShape(CLOSE); - - stroke = savedStroke; - } - - if (stroke) { - boolean savedFill = fill; - fill = false; - - val = 0; - beginShape(); - for (int i = 0; i < accuracy; i++) { - vertex(centerX + cosLUT[(int) val] * radiusH, - centerY + sinLUT[(int) val] * radiusV); - val += inc; - } - endShape(CLOSE); - - fill = savedFill; - } - } else { - float hradius = w / 2f; - float vradius = h / 2f; - - int centerX = (int) (x + hradius + ctm.m02); - int centerY = (int) (y + vradius + ctm.m12); - - int hradiusi = (int) hradius; - int vradiusi = (int) vradius; - - if (hradiusi == vradiusi) { - if (fill) flat_circle_fill(centerX, centerY, hradiusi); - if (stroke) flat_circle_stroke(centerX, centerY, hradiusi); - - } else { - if (fill) flat_ellipse_internal(centerX, centerY, hradiusi, vradiusi, true); - if (stroke) flat_ellipse_internal(centerX, centerY, hradiusi, vradiusi, false); - } - } - } - - - /** - * Draw the outline around a flat circle using a bresenham-style - * algorithm. Adapted from drawCircle function in "Computer Graphics - * for Java Programmers" by Leen Ammeraal, p. 110. - *

    - * This function is included because the quality is so much better, - * and the drawing significantly faster than with adaptive ellipses - * drawn using the sine/cosine tables. - *

    - * Circle quadrants break down like so: - *

    -   *              |
    -   *        \ NNW | NNE /
    -   *          \   |   /
    -   *       WNW  \ | /  ENE
    -   *     -------------------
    -   *       WSW  / | \  ESE
    -   *          /   |   \
    -   *        / SSW | SSE \
    -   *              |
    -   * 
    - * @param xc x center - * @param yc y center - * @param r radius - */ - private void flat_circle_stroke(int xC, int yC, int r) { - int x = 0, y = r, u = 1, v = 2 * r - 1, E = 0; - while (x < y) { - thin_point(xC + x, yC + y, strokeColor); // NNE - thin_point(xC + y, yC - x, strokeColor); // ESE - thin_point(xC - x, yC - y, strokeColor); // SSW - thin_point(xC - y, yC + x, strokeColor); // WNW - - x++; E += u; u += 2; - if (v < 2 * E) { - y--; E -= v; v -= 2; - } - if (x > y) break; - - thin_point(xC + y, yC + x, strokeColor); // ENE - thin_point(xC + x, yC - y, strokeColor); // SSE - thin_point(xC - y, yC - x, strokeColor); // WSW - thin_point(xC - x, yC + y, strokeColor); // NNW - } - } - - - /** - * Heavily adapted version of the above algorithm that handles - * filling the ellipse. Works by drawing from the center and - * outwards to the points themselves. Has to be done this way - * because the values for the points are changed halfway through - * the function, making it impossible to just store a series of - * left and right edges to be drawn more quickly. - * - * @param xc x center - * @param yc y center - * @param r radius - */ - private void flat_circle_fill(int xc, int yc, int r) { - int x = 0, y = r, u = 1, v = 2 * r - 1, E = 0; - while (x < y) { - for (int xx = xc; xx < xc + x; xx++) { // NNE - thin_point(xx, yc + y, fillColor); - } - for (int xx = xc; xx < xc + y; xx++) { // ESE - thin_point(xx, yc - x, fillColor); - } - for (int xx = xc - x; xx < xc; xx++) { // SSW - thin_point(xx, yc - y, fillColor); - } - for (int xx = xc - y; xx < xc; xx++) { // WNW - thin_point(xx, yc + x, fillColor); - } - - x++; E += u; u += 2; - if (v < 2 * E) { - y--; E -= v; v -= 2; - } - if (x > y) break; - - for (int xx = xc; xx < xc + y; xx++) { // ENE - thin_point(xx, yc + x, fillColor); - } - for (int xx = xc; xx < xc + x; xx++) { // SSE - thin_point(xx, yc - y, fillColor); - } - for (int xx = xc - y; xx < xc; xx++) { // WSW - thin_point(xx, yc - x, fillColor); - } - for (int xx = xc - x; xx < xc; xx++) { // NNW - thin_point(xx, yc + y, fillColor); - } - } - } - - - // unfortunately this can't handle fill and stroke simultaneously, - // because the fill will later replace some of the stroke points - - private final void flat_ellipse_symmetry(int centerX, int centerY, - int ellipseX, int ellipseY, - boolean filling) { - if (filling) { - for (int i = centerX - ellipseX + 1; i < centerX + ellipseX; i++) { - thin_point(i, centerY - ellipseY, fillColor); - thin_point(i, centerY + ellipseY, fillColor); - } - } else { - thin_point(centerX - ellipseX, centerY + ellipseY, strokeColor); - thin_point(centerX + ellipseX, centerY + ellipseY, strokeColor); - thin_point(centerX - ellipseX, centerY - ellipseY, strokeColor); - thin_point(centerX + ellipseX, centerY - ellipseY, strokeColor); - } - } - - - /** - * Bresenham-style ellipse drawing function, adapted from a posting to - * comp.graphics.algortihms. - * - * This function is included because the quality is so much better, - * and the drawing significantly faster than with adaptive ellipses - * drawn using the sine/cosine tables. - * - * @param centerX x coordinate of the center - * @param centerY y coordinate of the center - * @param a horizontal radius - * @param b vertical radius - */ - private void flat_ellipse_internal(int centerX, int centerY, - int a, int b, boolean filling) { - int x, y, a2, b2, s, t; - - a2 = a*a; - b2 = b*b; - x = 0; - y = b; - s = a2*(1-2*b) + 2*b2; - t = b2 - 2*a2*(2*b-1); - flat_ellipse_symmetry(centerX, centerY, x, y, filling); - - do { - if (s < 0) { - s += 2*b2*(2*x+3); - t += 4*b2*(x+1); - x++; - } else if (t < 0) { - s += 2*b2*(2*x+3) - 4*a2*(y-1); - t += 4*b2*(x+1) - 2*a2*(2*y-3); - x++; - y--; - } else { - s -= 4*a2*(y-1); - t -= 2*a2*(2*y-3); - y--; - } - flat_ellipse_symmetry(centerX, centerY, x, y, filling); - - } while (y > 0); - } - - - // TODO really need a decent arc function in here.. - - protected void arcImpl(float x, float y, float w, float h, - float start, float stop) { - float hr = w / 2f; - float vr = h / 2f; - - float centerX = x + hr; - float centerY = y + vr; - - if (fill) { - // shut off stroke for a minute - boolean savedStroke = stroke; - stroke = false; - - int startLUT = (int) (-0.5f + (start / TWO_PI) * SINCOS_LENGTH); - int stopLUT = (int) (0.5f + (stop / TWO_PI) * SINCOS_LENGTH); - - beginShape(); - vertex(centerX, centerY); - for (int i = startLUT; i < stopLUT; i++) { - int ii = i % SINCOS_LENGTH; - // modulo won't make the value positive - if (ii < 0) ii += SINCOS_LENGTH; - vertex(centerX + cosLUT[ii] * hr, - centerY + sinLUT[ii] * vr); - } - endShape(CLOSE); - - stroke = savedStroke; - } - - if (stroke) { - // Almost identical to above, but this uses a LINE_STRIP - // and doesn't include the first (center) vertex. - - boolean savedFill = fill; - fill = false; - - int startLUT = (int) (0.5f + (start / TWO_PI) * SINCOS_LENGTH); - int stopLUT = (int) (0.5f + (stop / TWO_PI) * SINCOS_LENGTH); - - beginShape(); //LINE_STRIP); - int increment = 1; // what's a good algorithm? stopLUT - startLUT; - for (int i = startLUT; i < stopLUT; i += increment) { - int ii = i % SINCOS_LENGTH; - if (ii < 0) ii += SINCOS_LENGTH; - vertex(centerX + cosLUT[ii] * hr, - centerY + sinLUT[ii] * vr); - } - // draw last point explicitly for accuracy - vertex(centerX + cosLUT[stopLUT % SINCOS_LENGTH] * hr, - centerY + sinLUT[stopLUT % SINCOS_LENGTH] * vr); - endShape(); - - fill = savedFill; - } - } - - - - ////////////////////////////////////////////////////////////// - - // BOX - - - public void box(float size) { - showDepthWarning("box"); - } - - public void box(float w, float h, float d) { - showDepthWarning("box"); - } - - - - ////////////////////////////////////////////////////////////// - - // SPHERE - - - public void sphereDetail(int res) { - showDepthWarning("sphereDetail"); - } - - public void sphereDetail(int ures, int vres) { - showDepthWarning("sphereDetail"); - } - - public void sphere(float r) { - showDepthWarning("sphere"); - } - - - - ////////////////////////////////////////////////////////////// - - // BEZIER & CURVE - - - public void bezier(float x1, float y1, float z1, - float x2, float y2, float z2, - float x3, float y3, float z3, - float x4, float y4, float z4) { - showDepthWarningXYZ("bezier"); - } - - - public void curve(float x1, float y1, float z1, - float x2, float y2, float z2, - float x3, float y3, float z3, - float x4, float y4, float z4) { - showDepthWarningXYZ("curve"); - } - - - - ////////////////////////////////////////////////////////////// - - // IMAGE - - - protected void imageImpl(PImage image, - float x1, float y1, float x2, float y2, - int u1, int v1, int u2, int v2) { - if ((x2 - x1 == image.width) && - (y2 - y1 == image.height) && - !tint && !ctm.isWarped()) { - simple_image(image, (int) (x1 + ctm.m02), (int) (y1 + ctm.m12), u1, v1, u2, v2); - - } else { - super.imageImpl(image, x1, y1, x2, y2, u1, v1, u2, v2); - } - } - - - /** - * Image drawn in flat "screen space", with no scaling or warping. - * this is so common that a special routine is included for it, - * because the alternative is much slower. - * - * @param image image to be drawn - * @param sx1 x coordinate of upper-lefthand corner in screen space - * @param sy1 y coordinate of upper-lefthand corner in screen space - */ - private void simple_image(PImage image, int sx1, int sy1, - int ix1, int iy1, int ix2, int iy2) { - int sx2 = sx1 + image.width; - int sy2 = sy1 + image.height; - - // don't draw if completely offscreen - // (without this check, ArrayIndexOutOfBoundsException) - if ((sx1 > width1) || (sx2 < 0) || - (sy1 > height1) || (sy2 < 0)) return; - - if (sx1 < 0) { // off left edge - ix1 -= sx1; - sx1 = 0; - } - if (sy1 < 0) { // off top edge - iy1 -= sy1; - sy1 = 0; - } - if (sx2 > width) { // off right edge - ix2 -= sx2 - width; - sx2 = width; - } - if (sy2 > height) { // off bottom edge - iy2 -= sy2 - height; - sy2 = height; - } - - int source = iy1 * image.width + ix1; - int target = sy1 * width; - - if (image.format == ARGB) { - for (int y = sy1; y < sy2; y++) { - int tx = 0; - - for (int x = sx1; x < sx2; x++) { - pixels[target + x] = -// _blend(pixels[target + x], -// image.pixels[source + tx], -// image.pixels[source + tx++] >>> 24); - blend_color(pixels[target + x], - image.pixels[source + tx++]); - } - source += image.width; - target += width; - } - } else if (image.format == ALPHA) { - for (int y = sy1; y < sy2; y++) { - int tx = 0; - - for (int x = sx1; x < sx2; x++) { - pixels[target + x] = - blend_color_alpha(pixels[target + x], - fillColor, - image.pixels[source + tx++]); - } - source += image.width; - target += width; - } - - } else if (image.format == RGB) { - target += sx1; - int tw = sx2 - sx1; - for (int y = sy1; y < sy2; y++) { - System.arraycopy(image.pixels, source, pixels, target, tw); - // should set z coordinate in here - // or maybe not, since dims=0, meaning no relevant z - source += image.width; - target += width; - } - } - } - - - ////////////////////////////////////////////////////////////// - - // TEXT/FONTS - - - // These will be handled entirely by PGraphics. - - - - ////////////////////////////////////////////////////////////// - - // UGLY RENDERING SHITE - - - // expects properly clipped coords, hence does - // NOT check if x/y are in bounds [toxi] - private void thin_point_at(int x, int y, float z, int color) { - int index = y*width+x; // offset values are pre-calced in constructor - pixels[index] = color; - } - - // expects offset/index in pixelbuffer array instead of x/y coords - // used by optimized parts of thin_flat_line() [toxi] - private void thin_point_at_index(int offset, float z, int color) { - pixels[offset] = color; - } - - - private void thick_point(float x, float y, float z, // note floats - float r, float g, float b, float a) { - spolygon.reset(4); - spolygon.interpARGB = false; // no changes for vertices of a point - - float strokeWidth2 = strokeWeight/2.0f; - - float svertex[] = spolygon.vertices[0]; - svertex[TX] = x - strokeWidth2; - svertex[TY] = y - strokeWidth2; - svertex[TZ] = z; - - svertex[R] = r; - svertex[G] = g; - svertex[B] = b; - svertex[A] = a; - - svertex = spolygon.vertices[1]; - svertex[TX] = x + strokeWidth2; - svertex[TY] = y - strokeWidth2; - svertex[TZ] = z; - - svertex = spolygon.vertices[2]; - svertex[TX] = x + strokeWidth2; - svertex[TY] = y + strokeWidth2; - svertex[TZ] = z; - - svertex = spolygon.vertices[3]; - svertex[TX] = x - strokeWidth2; - svertex[TY] = y + strokeWidth2; - svertex[TZ] = z; - - spolygon.render(); - } - - - // new bresenham clipping code, as old one was buggy [toxi] - private void thin_flat_line(int x1, int y1, int x2, int y2) { - int nx1,ny1,nx2,ny2; - - // get the "dips" for the points to clip - int code1 = thin_flat_line_clip_code(x1, y1); - int code2 = thin_flat_line_clip_code(x2, y2); - - if ((code1 & code2)!=0) { - return; - } else { - int dip = code1 | code2; - if (dip != 0) { - // now calculate the clipped points - float a1 = 0, a2 = 1, a = 0; - for (int i=0;i<4;i++) { - if (((dip>>i)%2)==1) { - a = thin_flat_line_slope((float)x1, (float)y1, - (float)x2, (float)y2, i+1); - if (((code1>>i)%2)==1) { - a1 = (float)Math.max(a, a1); - } else { - a2 = (float)Math.min(a, a2); - } - } - } - if (a1>a2) return; - else { - nx1=(int) (x1+a1*(x2-x1)); - ny1=(int) (y1+a1*(y2-y1)); - nx2=(int) (x1+a2*(x2-x1)); - ny2=(int) (y1+a2*(y2-y1)); - } - // line is fully visible/unclipped - } else { - nx1=x1; nx2=x2; - ny1=y1; ny2=y2; - } - } - - // new "extremely fast" line code - // adapted from http://www.edepot.com/linee.html - - boolean yLonger=false; - int shortLen=ny2-ny1; - int longLen=nx2-nx1; - if (Math.abs(shortLen)>Math.abs(longLen)) { - int swap=shortLen; - shortLen=longLen; - longLen=swap; - yLonger=true; - } - int decInc; - if (longLen==0) decInc=0; - else decInc = (shortLen << 16) / longLen; - - if (nx1==nx2) { - // special case: vertical line - if (ny1>ny2) { int ty=ny1; ny1=ny2; ny2=ty; } - int offset=ny1*width+nx1; - for(int j=ny1; j<=ny2; j++) { - thin_point_at_index(offset,0,strokeColor); - offset+=width; - } - return; - } else if (ny1==ny2) { - // special case: horizontal line - if (nx1>nx2) { int tx=nx1; nx1=nx2; nx2=tx; } - int offset=ny1*width+nx1; - for(int j=nx1; j<=nx2; j++) thin_point_at_index(offset++,0,strokeColor); - return; - } else if (yLonger) { - if (longLen>0) { - longLen+=ny1; - for (int j=0x8000+(nx1<<16);ny1<=longLen;++ny1) { - thin_point_at(j>>16, ny1, 0, strokeColor); - j+=decInc; - } - return; - } - longLen+=ny1; - for (int j=0x8000+(nx1<<16);ny1>=longLen;--ny1) { - thin_point_at(j>>16, ny1, 0, strokeColor); - j-=decInc; - } - return; - } else if (longLen>0) { - longLen+=nx1; - for (int j=0x8000+(ny1<<16);nx1<=longLen;++nx1) { - thin_point_at(nx1, j>>16, 0, strokeColor); - j+=decInc; - } - return; - } - longLen+=nx1; - for (int j=0x8000+(ny1<<16);nx1>=longLen;--nx1) { - thin_point_at(nx1, j>>16, 0, strokeColor); - j-=decInc; - } - } - - - private int thin_flat_line_clip_code(float x, float y) { - return ((y < 0 ? 8 : 0) | (y > height1 ? 4 : 0) | - (x < 0 ? 2 : 0) | (x > width1 ? 1 : 0)); - } - - - private float thin_flat_line_slope(float x1, float y1, - float x2, float y2, int border) { - switch (border) { - case 4: { - return (-y1)/(y2-y1); - } - case 3: { - return (height1-y1)/(y2-y1); - } - case 2: { - return (-x1)/(x2-x1); - } - case 1: { - return (width1-x1)/(x2-x1); - } - } - return -1f; - } - - - private void thick_flat_line(float ox1, float oy1, - float r1, float g1, float b1, float a1, - float ox2, float oy2, - float r2, float g2, float b2, float a2) { - spolygon.interpARGB = (r1 != r2) || (g1 != g2) || (b1 != b2) || (a1 != a2); -// spolygon.interpZ = false; - - float dX = ox2-ox1 + EPSILON; - float dY = oy2-oy1 + EPSILON; - float len = (float) Math.sqrt(dX*dX + dY*dY); - - // TODO stroke width should be transformed! - float rh = (strokeWeight / len) / 2; - - float dx0 = rh * dY; - float dy0 = rh * dX; - float dx1 = rh * dY; - float dy1 = rh * dX; - - spolygon.reset(4); - - float svertex[] = spolygon.vertices[0]; - svertex[TX] = ox1+dx0; - svertex[TY] = oy1-dy0; - svertex[R] = r1; - svertex[G] = g1; - svertex[B] = b1; - svertex[A] = a1; - - svertex = spolygon.vertices[1]; - svertex[TX] = ox1-dx0; - svertex[TY] = oy1+dy0; - svertex[R] = r1; - svertex[G] = g1; - svertex[B] = b1; - svertex[A] = a1; - - svertex = spolygon.vertices[2]; - svertex[TX] = ox2-dx1; - svertex[TY] = oy2+dy1; - svertex[R] = r2; - svertex[G] = g2; - svertex[B] = b2; - svertex[A] = a2; - - svertex = spolygon.vertices[3]; - svertex[TX] = ox2+dx1; - svertex[TY] = oy2-dy1; - svertex[R] = r2; - svertex[G] = g2; - svertex[B] = b2; - svertex[A] = a2; - - spolygon.render(); - } - - - private void draw_line(float[] v1, float[] v2) { - if (strokeWeight == 1) { - if (line == null) line = new PLine(this); - - line.reset(); - line.setIntensities(v1[SR], v1[SG], v1[SB], v1[SA], - v2[SR], v2[SG], v2[SB], v2[SA]); - line.setVertices(v1[TX], v1[TY], v1[TZ], - v2[TX], v2[TY], v2[TZ]); - line.draw(); - - } else { // use old line code for thickness != 1 - thick_flat_line(v1[TX], v1[TY], v1[SR], v1[SG], v1[SB], v1[SA], - v2[TX], v2[TY], v2[SR], v2[SG], v2[SB], v2[SA]); - } - } - - - /** - * @param max is what to count to - * @param offset is offset to the 'next' vertex - * @param increment is how much to increment in the loop - */ - private void draw_lines(float vertices[][], int max, - int offset, int increment, int skip) { - - if (strokeWeight == 1) { - for (int i = 0; i < max; i += increment) { - if ((skip != 0) && (((i+offset) % skip) == 0)) continue; - - float a[] = vertices[i]; - float b[] = vertices[i+offset]; - - if (line == null) line = new PLine(this); - - line.reset(); - line.setIntensities(a[SR], a[SG], a[SB], a[SA], - b[SR], b[SG], b[SB], b[SA]); - line.setVertices(a[TX], a[TY], a[TZ], - b[TX], b[TY], b[TZ]); - line.draw(); - } - - } else { // use old line code for thickness != 1 - for (int i = 0; i < max; i += increment) { - if ((skip != 0) && (((i+offset) % skip) == 0)) continue; - - float v1[] = vertices[i]; - float v2[] = vertices[i+offset]; - thick_flat_line(v1[TX], v1[TY], v1[SR], v1[SG], v1[SB], v1[SA], - v2[TX], v2[TY], v2[SR], v2[SG], v2[SB], v2[SA]); - } - } - } - - - private void thin_point(float fx, float fy, int color) { - int x = (int) (fx + 0.4999f); - int y = (int) (fy + 0.4999f); - if (x < 0 || x > width1 || y < 0 || y > height1) return; - - int index = y*width + x; - if ((color & 0xff000000) == 0xff000000) { // opaque - pixels[index] = color; - - } else { // transparent - // a1 is how much of the orig pixel - int a2 = (color >> 24) & 0xff; - int a1 = a2 ^ 0xff; - - int p2 = strokeColor; - int p1 = pixels[index]; - - int r = (a1 * ((p1 >> 16) & 0xff) + a2 * ((p2 >> 16) & 0xff)) & 0xff00; - int g = (a1 * ((p1 >> 8) & 0xff) + a2 * ((p2 >> 8) & 0xff)) & 0xff00; - int b = (a1 * ( p1 & 0xff) + a2 * ( p2 & 0xff)) >> 8; - - pixels[index] = 0xff000000 | (r << 8) | g | b; - } - } - - - - ////////////////////////////////////////////////////////////// - - // MATRIX TRANSFORMATIONS - - - public void translate(float tx, float ty) { - ctm.translate(tx, ty); - } - - - public void translate(float tx, float ty, float tz) { - showDepthWarningXYZ("translate"); - } - - - public void rotate(float angle) { - ctm.rotate(angle); -// float c = (float) Math.cos(angle); -// float s = (float) Math.sin(angle); -// applyMatrix(c, -s, 0, s, c, 0); - } - - - public void rotateX(float angle) { - showDepthWarning("rotateX"); - } - - public void rotateY(float angle) { - showDepthWarning("rotateY"); - } - - - public void rotateZ(float angle) { - showDepthWarning("rotateZ"); - } - - - public void rotate(float angle, float vx, float vy, float vz) { - showVariationWarning("rotate(angle, x, y, z)"); - } - - - public void scale(float s) { - ctm.scale(s); -// applyMatrix(s, 0, 0, -// 0, s, 0); - } - - - public void scale(float sx, float sy) { - ctm.scale(sx, sy); -// applyMatrix(sx, 0, 0, -// 0, sy, 0); - } - - - public void scale(float x, float y, float z) { - showDepthWarningXYZ("scale"); - } - - - - ////////////////////////////////////////////////////////////// - - // TRANSFORMATION MATRIX - - - public void pushMatrix() { - if (matrixStackDepth == MATRIX_STACK_DEPTH) { - throw new RuntimeException(ERROR_PUSHMATRIX_OVERFLOW); - } - ctm.get(matrixStack[matrixStackDepth]); - matrixStackDepth++; - } - - - public void popMatrix() { - if (matrixStackDepth == 0) { - throw new RuntimeException(ERROR_PUSHMATRIX_UNDERFLOW); - } - matrixStackDepth--; - ctm.set(matrixStack[matrixStackDepth]); - } - - - /** - * Load identity as the transform/model matrix. - * Same as glLoadIdentity(). - */ - public void resetMatrix() { - ctm.reset(); -// m00 = 1; m01 = 0; m02 = 0; -// m10 = 0; m11 = 1; m12 = 0; - } - - - /** - * Apply a 3x2 affine transformation matrix. - */ - public void applyMatrix(float n00, float n01, float n02, - float n10, float n11, float n12) { - ctm.apply(n00, n01, n02, - n10, n11, n12); -// -// float r00 = m00*n00 + m01*n10; -// float r01 = m00*n01 + m01*n11; -// float r02 = m00*n02 + m01*n12 + m02; -// -// float r10 = m10*n00 + m11*n10; -// float r11 = m10*n01 + m11*n11; -// float r12 = m10*n02 + m11*n12 + m12; -// -// m00 = r00; m01 = r01; m02 = r02; -// m10 = r10; m11 = r11; m12 = r12; - } - - - public void applyMatrix(float n00, float n01, float n02, float n03, - float n10, float n11, float n12, float n13, - float n20, float n21, float n22, float n23, - float n30, float n31, float n32, float n33) { - showDepthWarningXYZ("applyMatrix"); - } - - - /** - * Loads the current matrix into m00, m01 etc (or modelview and - * projection when using 3D) so that the values can be read. - *

    - * Note that there is no "updateMatrix" because that gets too - * complicated (unnecessary) when considering the 3D matrices. - */ -// public void loadMatrix() { - // no-op on base PGraphics because they're used directly -// } - - - /** - * Print the current model (or "transformation") matrix. - */ - public void printMatrix() { - ctm.print(); - -// loadMatrix(); // just to make sure -// -// float big = Math.abs(m00); -// if (Math.abs(m01) > big) big = Math.abs(m01); -// if (Math.abs(m02) > big) big = Math.abs(m02); -// if (Math.abs(m10) > big) big = Math.abs(m10); -// if (Math.abs(m11) > big) big = Math.abs(m11); -// if (Math.abs(m12) > big) big = Math.abs(m12); -// -// // avoid infinite loop -// if (Float.isNaN(big) || Float.isInfinite(big)) { -// big = 1000000; // set to something arbitrary -// } -// -// int d = 1; -// int bigi = (int) big; -// while ((bigi /= 10) != 0) d++; // cheap log() -// -// System.out.println(PApplet.nfs(m00, d, 4) + " " + -// PApplet.nfs(m01, d, 4) + " " + -// PApplet.nfs(m02, d, 4)); -// -// System.out.println(PApplet.nfs(m10, d, 4) + " " + -// PApplet.nfs(m11, d, 4) + " " + -// PApplet.nfs(m12, d, 4)); -// -// System.out.println(); - } - - - - ////////////////////////////////////////////////////////////// - - // SCREEN TRANSFORMS - - - public float screenX(float x, float y) { - return ctm.m00 * x + ctm.m01 * y + ctm.m02; - } - - - public float screenY(float x, float y) { - return ctm.m10 * x + ctm.m11 * y + ctm.m12; - } - - - - ////////////////////////////////////////////////////////////// - - // BACKGROUND AND FRIENDS - - - /** - * Clear the pixel buffer. - */ - protected void backgroundImpl() { - Arrays.fill(pixels, backgroundColor); - } - - - - /* - public void ambient(int rgb) { - showDepthError("ambient"); - } - - public void ambient(float gray) { - showDepthError("ambient"); - } - - public void ambient(float x, float y, float z) { - // This doesn't take - if ((x != PMaterial.DEFAULT_AMBIENT) || - (y != PMaterial.DEFAULT_AMBIENT) || - (z != PMaterial.DEFAULT_AMBIENT)) { - showDepthError("ambient"); - } - } - - public void specular(int rgb) { - showDepthError("specular"); - } - - public void specular(float gray) { - showDepthError("specular"); - } - - public void specular(float x, float y, float z) { - showDepthError("specular"); - } - - public void shininess(float shine) { - showDepthError("shininess"); - } - - - public void emissive(int rgb) { - showDepthError("emissive"); - } - - public void emissive(float gray) { - showDepthError("emissive"); - } - - public void emissive(float x, float y, float z ) { - showDepthError("emissive"); - } - */ - - - - ////////////////////////////////////////////////////////////// - - // INTERNAL SCHIZZLE - - - // TODO make this more efficient, or move into PMatrix2D -// private boolean untransformed() { -// return ((ctm.m00 == 1) && (ctm.m01 == 0) && (ctm.m02 == 0) && -// (ctm.m10 == 0) && (ctm.m11 == 1) && (ctm.m12 == 0)); -// } -// -// -// // TODO make this more efficient, or move into PMatrix2D -// private boolean unwarped() { -// return ((ctm.m00 == 1) && (ctm.m01 == 0) && -// (ctm.m10 == 0) && (ctm.m11 == 1)); -// } - - - // only call this if there's an alpha in the fill - private final int blend_fill(int p1) { - int a2 = fillAi; - int a1 = a2 ^ 0xff; - - int r = (a1 * ((p1 >> 16) & 0xff)) + (a2 * fillRi) & 0xff00; - int g = (a1 * ((p1 >> 8) & 0xff)) + (a2 * fillGi) & 0xff00; - int b = (a1 * ( p1 & 0xff)) + (a2 * fillBi) & 0xff00; - - return 0xff000000 | (r << 8) | g | (b >> 8); - } - - - private final int blend_color(int p1, int p2) { - int a2 = (p2 >>> 24); - - if (a2 == 0xff) { - // full replacement - return p2; - - } else { - int a1 = a2 ^ 0xff; - int r = (a1 * ((p1 >> 16) & 0xff) + a2 * ((p2 >> 16) & 0xff)) & 0xff00; - int g = (a1 * ((p1 >> 8) & 0xff) + a2 * ((p2 >> 8) & 0xff)) & 0xff00; - int b = (a1 * ( p1 & 0xff) + a2 * ( p2 & 0xff)) >> 8; - - return 0xff000000 | (r << 8) | g | b; - } - } - - - private final int blend_color_alpha(int p1, int p2, int a2) { - // scale alpha by alpha of incoming pixel - a2 = (a2 * (p2 >>> 24)) >> 8; - - int a1 = a2 ^ 0xff; - int r = (a1 * ((p1 >> 16) & 0xff) + a2 * ((p2 >> 16) & 0xff)) & 0xff00; - int g = (a1 * ((p1 >> 8) & 0xff) + a2 * ((p2 >> 8) & 0xff)) & 0xff00; - int b = (a1 * ( p1 & 0xff) + a2 * ( p2 & 0xff)) >> 8; - - return 0xff000000 | (r << 8) | g | b; - } -} diff --git a/core/src/processing/core/PGraphics3D.java b/core/src/processing/core/PGraphics3D.java deleted file mode 100644 index 2a47d9547..000000000 --- a/core/src/processing/core/PGraphics3D.java +++ /dev/null @@ -1,4379 +0,0 @@ -/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */ - -/* - Part of the Processing project - http://processing.org - - Copyright (c) 2004-08 Ben Fry and Casey Reas - Copyright (c) 2001-04 Massachusetts Institute of Technology - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General - Public License along with this library; if not, write to the - Free Software Foundation, Inc., 59 Temple Place, Suite 330, - Boston, MA 02111-1307 USA -*/ - -package processing.core; - -import java.awt.Toolkit; -import java.awt.image.*; -import java.util.*; - - -/** - * Subclass of PGraphics that handles 3D rendering. - * It can render 3D inside a browser window and requires no plug-ins. - *

    - * The renderer is mostly set up based on the structure of the OpenGL API, - * if you have questions about specifics that aren't covered here, - * look for reference on the OpenGL implementation of a similar feature. - *

    - * Lighting and camera implementation by Simon Greenwold. - */ -public class PGraphics3D extends PGraphics { - - /** The depth buffer. */ - public float[] zbuffer; - - // ........................................................ - - /** The modelview matrix. */ - public PMatrix3D modelview; - - /** Inverse modelview matrix, used for lighting. */ - public PMatrix3D modelviewInv; - - /** - * Marks when changes to the size have occurred, so that the camera - * will be reset in beginDraw(). - */ - protected boolean sizeChanged; - - /** The camera matrix, the modelview will be set to this on beginDraw. */ - public PMatrix3D camera; - - /** Inverse camera matrix */ - protected PMatrix3D cameraInv; - - /** Camera field of view. */ - public float cameraFOV; - - /** Position of the camera. */ - public float cameraX, cameraY, cameraZ; - public float cameraNear, cameraFar; - /** Aspect ratio of camera's view. */ - public float cameraAspect; - - /** Current projection matrix. */ - public PMatrix3D projection; - - - ////////////////////////////////////////////////////////////// - - - /** - * Maximum lights by default is 8, which is arbitrary for this renderer, - * but is the minimum defined by OpenGL - */ - public static final int MAX_LIGHTS = 8; - - public int lightCount = 0; - - /** Light types */ - public int[] lightType; - - /** Light positions */ - //public float[][] lightPosition; - public PVector[] lightPosition; - - /** Light direction (normalized vector) */ - //public float[][] lightNormal; - public PVector[] lightNormal; - - /** Light falloff */ - public float[] lightFalloffConstant; - public float[] lightFalloffLinear; - public float[] lightFalloffQuadratic; - - /** Light spot angle */ - public float[] lightSpotAngle; - - /** Cosine of light spot angle */ - public float[] lightSpotAngleCos; - - /** Light spot concentration */ - public float[] lightSpotConcentration; - - /** Diffuse colors for lights. - * For an ambient light, this will hold the ambient color. - * Internally these are stored as numbers between 0 and 1. */ - public float[][] lightDiffuse; - - /** Specular colors for lights. - Internally these are stored as numbers between 0 and 1. */ - public float[][] lightSpecular; - - /** Current specular color for lighting */ - public float[] currentLightSpecular; - - /** Current light falloff */ - public float currentLightFalloffConstant; - public float currentLightFalloffLinear; - public float currentLightFalloffQuadratic; - - - ////////////////////////////////////////////////////////////// - - - static public final int TRI_DIFFUSE_R = 0; - static public final int TRI_DIFFUSE_G = 1; - static public final int TRI_DIFFUSE_B = 2; - static public final int TRI_DIFFUSE_A = 3; - static public final int TRI_SPECULAR_R = 4; - static public final int TRI_SPECULAR_G = 5; - static public final int TRI_SPECULAR_B = 6; - static public final int TRI_COLOR_COUNT = 7; - - // ........................................................ - - // Whether or not we have to worry about vertex position for lighting calcs - private boolean lightingDependsOnVertexPosition; - - static final int LIGHT_AMBIENT_R = 0; - static final int LIGHT_AMBIENT_G = 1; - static final int LIGHT_AMBIENT_B = 2; - static final int LIGHT_DIFFUSE_R = 3; - static final int LIGHT_DIFFUSE_G = 4; - static final int LIGHT_DIFFUSE_B = 5; - static final int LIGHT_SPECULAR_R = 6; - static final int LIGHT_SPECULAR_G = 7; - static final int LIGHT_SPECULAR_B = 8; - static final int LIGHT_COLOR_COUNT = 9; - - // Used to shuttle lighting calcs around - // (no need to re-allocate all the time) - protected float[] tempLightingContribution = new float[LIGHT_COLOR_COUNT]; -// protected float[] worldNormal = new float[4]; - - /// Used in lightTriangle(). Allocated here once to avoid re-allocating - protected PVector lightTriangleNorm = new PVector(); - - // ........................................................ - - /** - * This is turned on at beginCamera, and off at endCamera - * Currently we don't support nested begin/end cameras. - * If we wanted to, this variable would have to become a stack. - */ - protected boolean manipulatingCamera; - - float[][] matrixStack = new float[MATRIX_STACK_DEPTH][16]; - float[][] matrixInvStack = new float[MATRIX_STACK_DEPTH][16]; - int matrixStackDepth; - - // These two matrices always point to either the modelview - // or the modelviewInv, but they are swapped during - // when in camera manipulation mode. That way camera transforms - // are automatically accumulated in inverse on the modelview matrix. - protected PMatrix3D forwardTransform; - protected PMatrix3D reverseTransform; - - // Added by ewjordan for accurate texturing purposes. Screen plane is - // not scaled to pixel-size, so these manually keep track of its size - // from frustum() calls. Sorry to add public vars, is there a way - // to compute these from something publicly available without matrix ops? - // (used once per triangle in PTriangle with ENABLE_ACCURATE_TEXTURES) - protected float leftScreen; - protected float rightScreen; - protected float topScreen; - protected float bottomScreen; - protected float nearPlane; //depth of near clipping plane - - /** true if frustum has been called to set perspective, false if ortho */ - private boolean frustumMode = false; - - /** - * Use PSmoothTriangle for rendering instead of PTriangle? - * Usually set by calling smooth() or noSmooth() - */ - static protected boolean s_enableAccurateTextures = false; //maybe just use smooth instead? - - /** Used for anti-aliased and perspective corrected rendering. */ - public PSmoothTriangle smoothTriangle; - - - // ........................................................ - - // pos of first vertex of current shape in vertices array - protected int shapeFirst; - - // i think vertex_end is actually the last vertex in the current shape - // and is separate from vertexCount for occasions where drawing happens - // on endDraw() with all the triangles being depth sorted - protected int shapeLast; - - // vertices may be added during clipping against the near plane. - protected int shapeLastPlusClipped; - - // used for sorting points when triangulating a polygon - // warning - maximum number of vertices for a polygon is DEFAULT_VERTICES - protected int vertexOrder[] = new int[DEFAULT_VERTICES]; - - // ........................................................ - - // This is done to keep track of start/stop information for lines in the - // line array, so that lines can be shown as a single path, rather than just - // individual segments. Currently only in use inside PGraphicsOpenGL. - protected int pathCount; - protected int[] pathOffset = new int[64]; - protected int[] pathLength = new int[64]; - - // ........................................................ - - // line & triangle fields (note that these overlap) -// static protected final int INDEX = 0; // shape index - static protected final int VERTEX1 = 0; - static protected final int VERTEX2 = 1; - static protected final int VERTEX3 = 2; // (triangles only) - /** used to store the strokeColor int for efficient drawing. */ - static protected final int STROKE_COLOR = 1; // (points only) - static protected final int TEXTURE_INDEX = 3; // (triangles only) - //static protected final int STROKE_MODE = 2; // (lines only) - //static protected final int STROKE_WEIGHT = 3; // (lines only) - - static protected final int POINT_FIELD_COUNT = 2; //4 - static protected final int LINE_FIELD_COUNT = 2; //4 - static protected final int TRIANGLE_FIELD_COUNT = 4; - - // points - static final int DEFAULT_POINTS = 512; - protected int[][] points = new int[DEFAULT_POINTS][POINT_FIELD_COUNT]; - protected int pointCount; - - // lines - static final int DEFAULT_LINES = 512; - public PLine line; // used for drawing - protected int[][] lines = new int[DEFAULT_LINES][LINE_FIELD_COUNT]; - protected int lineCount; - - // triangles - static final int DEFAULT_TRIANGLES = 256; - public PTriangle triangle; - protected int[][] triangles = - new int[DEFAULT_TRIANGLES][TRIANGLE_FIELD_COUNT]; - protected float triangleColors[][][] = - new float[DEFAULT_TRIANGLES][3][TRI_COLOR_COUNT]; - protected int triangleCount; // total number of triangles - - // cheap picking someday - //public int shape_index; - - // ........................................................ - - static final int DEFAULT_TEXTURES = 3; - protected PImage[] textures = new PImage[DEFAULT_TEXTURES]; - int textureIndex; - - // ........................................................ - - DirectColorModel cm; - MemoryImageSource mis; - - - ////////////////////////////////////////////////////////////// - - - public PGraphics3D() { } - - - //public void setParent(PApplet parent) - - - //public void setPrimary(boolean primary) - - - //public void setPath(String path) - - - /** - * Called in response to a resize event, handles setting the - * new width and height internally, as well as re-allocating - * the pixel buffer for the new size. - * - * Note that this will nuke any cameraMode() settings. - * - * No drawing can happen in this function, and no talking to the graphics - * context. That is, no glXxxx() calls, or other things that change state. - */ - public void setSize(int iwidth, int iheight) { // ignore - width = iwidth; - height = iheight; - width1 = width - 1; - height1 = height - 1; - - allocate(); - reapplySettings(); - - // init lights (in resize() instead of allocate() b/c needed by opengl) - lightType = new int[MAX_LIGHTS]; - lightPosition = new PVector[MAX_LIGHTS]; - lightNormal = new PVector[MAX_LIGHTS]; - for (int i = 0; i < MAX_LIGHTS; i++) { - lightPosition[i] = new PVector(); - lightNormal[i] = new PVector(); - } - lightDiffuse = new float[MAX_LIGHTS][3]; - lightSpecular = new float[MAX_LIGHTS][3]; - lightFalloffConstant = new float[MAX_LIGHTS]; - lightFalloffLinear = new float[MAX_LIGHTS]; - lightFalloffQuadratic = new float[MAX_LIGHTS]; - lightSpotAngle = new float[MAX_LIGHTS]; - lightSpotAngleCos = new float[MAX_LIGHTS]; - lightSpotConcentration = new float[MAX_LIGHTS]; - currentLightSpecular = new float[3]; - - projection = new PMatrix3D(); - modelview = new PMatrix3D(); - modelviewInv = new PMatrix3D(); - -// modelviewStack = new float[MATRIX_STACK_DEPTH][16]; -// modelviewInvStack = new float[MATRIX_STACK_DEPTH][16]; -// modelviewStackPointer = 0; - - forwardTransform = modelview; - reverseTransform = modelviewInv; - - // init perspective projection based on new dimensions - cameraFOV = 60 * DEG_TO_RAD; // at least for now - cameraX = width / 2.0f; - cameraY = height / 2.0f; - cameraZ = cameraY / ((float) Math.tan(cameraFOV / 2.0f)); - cameraNear = cameraZ / 10.0f; - cameraFar = cameraZ * 10.0f; - cameraAspect = (float)width / (float)height; - - camera = new PMatrix3D(); - cameraInv = new PMatrix3D(); - - // set this flag so that beginDraw() will do an update to the camera. - sizeChanged = true; - } - - - protected void allocate() { - //System.out.println(this + " allocating for " + width + " " + height); - //new Exception().printStackTrace(); - - pixelCount = width * height; - pixels = new int[pixelCount]; - zbuffer = new float[pixelCount]; - - if (primarySurface) { - cm = new DirectColorModel(32, 0x00ff0000, 0x0000ff00, 0x000000ff);; - mis = new MemoryImageSource(width, height, pixels, 0, width); - mis.setFullBufferUpdates(true); - mis.setAnimated(true); - image = Toolkit.getDefaultToolkit().createImage(mis); - - } else { - // when not the main drawing surface, need to set the zbuffer, - // because there's a possibility that background() will not be called - Arrays.fill(zbuffer, Float.MAX_VALUE); - } - - line = new PLine(this); - triangle = new PTriangle(this); - smoothTriangle = new PSmoothTriangle(this); - } - - - //public void dispose() - - - //////////////////////////////////////////////////////////// - - - //public boolean canDraw() - - - public void beginDraw() { - // need to call defaults(), but can only be done when it's ok - // to draw (i.e. for opengl, no drawing can be done outside - // beginDraw/endDraw). - if (!settingsInited) defaultSettings(); - - if (sizeChanged) { - // set up the default camera - camera(); - - // defaults to perspective, if the user has setup up their - // own projection, they'll need to fix it after resize anyway. - // this helps the people who haven't set up their own projection. - perspective(); - - // clear the flag - sizeChanged = false; - } - - resetMatrix(); // reset model matrix - - // reset vertices - vertexCount = 0; - - modelview.set(camera); - modelviewInv.set(cameraInv); - - // clear out the lights, they'll have to be turned on again - lightCount = 0; - lightingDependsOnVertexPosition = false; - lightFalloff(1, 0, 0); - lightSpecular(0, 0, 0); - - /* - // reset lines - lineCount = 0; - if (line != null) line.reset(); // is this necessary? - pathCount = 0; - - // reset triangles - triangleCount = 0; - if (triangle != null) triangle.reset(); // necessary? - */ - - shapeFirst = 0; - - // reset textures - Arrays.fill(textures, null); - textureIndex = 0; - - normal(0, 0, 1); - } - - - /** - * See notes in PGraphics. - * If z-sorting has been turned on, then the triangles will - * all be quicksorted here (to make alpha work more properly) - * and then blit to the screen. - */ - public void endDraw() { - // no need to z order and render - // shapes were already rendered in endShape(); - // (but can't return, since needs to update memimgsrc) - if (hints[ENABLE_DEPTH_SORT]) { - flush(); - } - if (mis != null) { - mis.newPixels(pixels, cm, 0, width); - } - // mark pixels as having been updated, so that they'll work properly - // when this PGraphics is drawn using image(). - updatePixels(); - } - - - //////////////////////////////////////////////////////////// - - - //protected void checkSettings() - - - protected void defaultSettings() { - super.defaultSettings(); - - manipulatingCamera = false; - forwardTransform = modelview; - reverseTransform = modelviewInv; - - // set up the default camera - camera(); - - // defaults to perspective, if the user has setup up their - // own projection, they'll need to fix it after resize anyway. - // this helps the people who haven't set up their own projection. - perspective(); - - // easiest for beginners - textureMode(IMAGE); - - emissive(0.0f); - specular(0.5f); - shininess(1.0f); - } - - - //protected void reapplySettings() - - - //////////////////////////////////////////////////////////// - - - public void hint(int which) { - if (which == DISABLE_DEPTH_SORT) { - flush(); - } else if (which == DISABLE_DEPTH_TEST) { - if (zbuffer != null) { // will be null in OpenGL and others - Arrays.fill(zbuffer, Float.MAX_VALUE); - } - } - super.hint(which); - } - - - ////////////////////////////////////////////////////////////// - - - //public void beginShape() - - - public void beginShape(int kind) { - shape = kind; - -// shape_index = shape_index + 1; -// if (shape_index == -1) { -// shape_index = 0; -// } - - if (hints[ENABLE_DEPTH_SORT]) { - // continue with previous vertex, line and triangle count - // all shapes are rendered at endDraw(); - shapeFirst = vertexCount; - shapeLast = 0; - - } else { - // reset vertex, line and triangle information - // every shape is rendered at endShape(); - vertexCount = 0; - if (line != null) line.reset(); // necessary? - lineCount = 0; -// pathCount = 0; - if (triangle != null) triangle.reset(); // necessary? - triangleCount = 0; - } - - textureImage = null; - curveVertexCount = 0; - normalMode = NORMAL_MODE_AUTO; -// normalCount = 0; - } - - - //public void normal(float nx, float ny, float nz) - - - //public void textureMode(int mode) - - - public void texture(PImage image) { - textureImage = image; - - if (textureIndex == textures.length - 1) { - textures = (PImage[]) PApplet.expand(textures); - } - if (textures[textureIndex] != null) { // ??? - textureIndex++; - } - textures[textureIndex] = image; - } - - - public void vertex(float x, float y) { - // override so that the default 3D implementation will be used, - // which will pick up all 3D settings (e.g. emissive, ambient) - vertex(x, y, 0); - } - - - //public void vertex(float x, float y, float z) - - - public void vertex(float x, float y, float u, float v) { - // see vertex(x, y) for note - vertex(x, y, 0, u, v); - } - - - //public void vertex(float x, float y, float z, float u, float v) - - - //public void breakShape() - - - //public void endShape() - - - public void endShape(int mode) { - shapeLast = vertexCount; - shapeLastPlusClipped = shapeLast; - - // don't try to draw if there are no vertices - // (fixes a bug in LINE_LOOP that re-adds a nonexistent vertex) - if (vertexCount == 0) { - shape = 0; - return; - } - - // convert points from model (X/Y/Z) to camera space (VX/VY/VZ). - // Do this now because we will be clipping them on add_triangle. - endShapeModelToCamera(shapeFirst, shapeLast); - - if (stroke) { - endShapeStroke(mode); - } - - if (fill || textureImage != null) { - endShapeFill(); - } - - // transform, light, and clip - endShapeLighting(lightCount > 0 && fill); - - // convert points from camera space (VX, VY, VZ) to screen space (X, Y, Z) - // (this appears to be wasted time with the OpenGL renderer) - endShapeCameraToScreen(shapeFirst, shapeLastPlusClipped); - - // render shape and fill here if not saving the shapes for later - // if true, the shapes will be rendered on endDraw - if (!hints[ENABLE_DEPTH_SORT]) { - if (fill || textureImage != null) { - if (triangleCount > 0) { - renderTriangles(0, triangleCount); - if (raw != null) { - rawTriangles(0, triangleCount); - } - triangleCount = 0; - } - } - if (stroke) { - if (pointCount > 0) { - renderPoints(0, pointCount); - if (raw != null) { - rawPoints(0, pointCount); - } - pointCount = 0; - } - - if (lineCount > 0) { - renderLines(0, lineCount); - if (raw != null) { - rawLines(0, lineCount); - } - lineCount = 0; - } - } - pathCount = 0; - } - - shape = 0; - } - - - protected void endShapeModelToCamera(int start, int stop) { - for (int i = start; i < stop; i++) { - float vertex[] = vertices[i]; - - vertex[VX] = - modelview.m00*vertex[X] + modelview.m01*vertex[Y] + - modelview.m02*vertex[Z] + modelview.m03; - vertex[VY] = - modelview.m10*vertex[X] + modelview.m11*vertex[Y] + - modelview.m12*vertex[Z] + modelview.m13; - vertex[VZ] = - modelview.m20*vertex[X] + modelview.m21*vertex[Y] + - modelview.m22*vertex[Z] + modelview.m23; - vertex[VW] = - modelview.m30*vertex[X] + modelview.m31*vertex[Y] + - modelview.m32*vertex[Z] + modelview.m33; - - // normalize - if (vertex[VW] != 0 && vertex[VW] != 1) { - vertex[VX] /= vertex[VW]; - vertex[VY] /= vertex[VW]; - vertex[VZ] /= vertex[VW]; - } - vertex[VW] = 1; - } - } - - - protected void endShapeStroke(int mode) { - switch (shape) { - case POINTS: - { - int stop = shapeLast; - for (int i = shapeFirst; i < stop; i++) { -// if (strokeWeight == 1) { - addPoint(i); -// } else { -// addLineBreak(); // total overkill for points -// addLine(i, i); -// } - } - } - break; - - case LINES: - { - // store index of first vertex - int first = lineCount; - int stop = shapeLast - 1; - //increment = (shape == LINES) ? 2 : 1; - - // for LINE_STRIP and LINE_LOOP, make this all one path - if (shape != LINES) addLineBreak(); - - for (int i = shapeFirst; i < stop; i += 2) { - // for LINES, make a new path for each segment - if (shape == LINES) addLineBreak(); - addLine(i, i+1); - } - - // for LINE_LOOP, close the loop with a final segment - //if (shape == LINE_LOOP) { - if (mode == CLOSE) { - addLine(stop, lines[first][VERTEX1]); - } - } - break; - - case TRIANGLES: - { - for (int i = shapeFirst; i < shapeLast-2; i += 3) { - addLineBreak(); - //counter = i - vertex_start; - addLine(i+0, i+1); - addLine(i+1, i+2); - addLine(i+2, i+0); - } - } - break; - - case TRIANGLE_STRIP: - { - // first draw all vertices as a line strip - int stop = shapeLast-1; - - addLineBreak(); - for (int i = shapeFirst; i < stop; i++) { - //counter = i - vertex_start; - addLine(i, i+1); - } - - // then draw from vertex (n) to (n+2) - stop = shapeLast-2; - for (int i = shapeFirst; i < stop; i++) { - addLineBreak(); - addLine(i, i+2); - } - } - break; - - case TRIANGLE_FAN: - { - // this just draws a series of line segments - // from the center to each exterior point - for (int i = shapeFirst + 1; i < shapeLast; i++) { - addLineBreak(); - addLine(shapeFirst, i); - } - - // then a single line loop around the outside. - addLineBreak(); - for (int i = shapeFirst + 1; i < shapeLast-1; i++) { - addLine(i, i+1); - } - // closing the loop - addLine(shapeLast-1, shapeFirst + 1); - } - break; - - case QUADS: - { - for (int i = shapeFirst; i < shapeLast; i += 4) { - addLineBreak(); - //counter = i - vertex_start; - addLine(i+0, i+1); - addLine(i+1, i+2); - addLine(i+2, i+3); - addLine(i+3, i+0); - } - } - break; - - case QUAD_STRIP: - { - for (int i = shapeFirst; i < shapeLast - 3; i += 2) { - addLineBreak(); - addLine(i+0, i+2); - addLine(i+2, i+3); - addLine(i+3, i+1); - addLine(i+1, i+0); - } - } - break; - - case POLYGON: - { - // store index of first vertex - int stop = shapeLast - 1; - - addLineBreak(); - for (int i = shapeFirst; i < stop; i++) { - addLine(i, i+1); - } - if (mode == CLOSE) { - // draw the last line connecting back to the first point in poly - addLine(stop, shapeFirst); //lines[first][VERTEX1]); - } - } - break; - } - } - - - protected void endShapeFill() { - switch (shape) { - case TRIANGLE_FAN: - { - int stop = shapeLast - 1; - for (int i = shapeFirst + 1; i < stop; i++) { - addTriangle(shapeFirst, i, i+1); - } - } - break; - - case TRIANGLES: - { - int stop = shapeLast - 2; - for (int i = shapeFirst; i < stop; i += 3) { - // have to switch between clockwise/counter-clockwise - // otherwise the feller is backwards and renderer won't draw - if ((i % 2) == 0) { - addTriangle(i, i+2, i+1); - } else { - addTriangle(i, i+1, i+2); - } - } - } - break; - - case TRIANGLE_STRIP: - { - int stop = shapeLast - 2; - for (int i = shapeFirst; i < stop; i++) { - // have to switch between clockwise/counter-clockwise - // otherwise the feller is backwards and renderer won't draw - if ((i % 2) == 0) { - addTriangle(i, i+2, i+1); - } else { - addTriangle(i, i+1, i+2); - } - } - } - break; - - case QUADS: - { - int stop = vertexCount-3; - for (int i = shapeFirst; i < stop; i += 4) { - // first triangle - addTriangle(i, i+1, i+2); - // second triangle - addTriangle(i, i+2, i+3); - } - } - break; - - case QUAD_STRIP: - { - int stop = vertexCount-3; - for (int i = shapeFirst; i < stop; i += 2) { - // first triangle - addTriangle(i+0, i+2, i+1); - // second triangle - addTriangle(i+2, i+3, i+1); - } - } - break; - - case POLYGON: - { - addPolygonTriangles(); - } - break; - } - } - - - protected void endShapeLighting(boolean lights) { - if (lights) { - // If the lighting does not depend on vertex position and there is a single - // normal specified for this shape, go ahead and apply the same lighting - // contribution to every vertex in this shape (one lighting calc!) - if (!lightingDependsOnVertexPosition && normalMode == NORMAL_MODE_SHAPE) { - calcLightingContribution(shapeFirst, tempLightingContribution); - for (int tri = 0; tri < triangleCount; tri++) { - lightTriangle(tri, tempLightingContribution); - } - } else { // Otherwise light each triangle individually... - for (int tri = 0; tri < triangleCount; tri++) { - lightTriangle(tri); - } - } - } else { - for (int tri = 0; tri < triangleCount; tri++) { - int index = triangles[tri][VERTEX1]; - copyPrelitVertexColor(tri, index, 0); - index = triangles[tri][VERTEX2]; - copyPrelitVertexColor(tri, index, 1); - index = triangles[tri][VERTEX3]; - copyPrelitVertexColor(tri, index, 2); - } - } - } - - - protected void endShapeCameraToScreen(int start, int stop) { - for (int i = start; i < stop; i++) { - float vx[] = vertices[i]; - - float ox = - projection.m00*vx[VX] + projection.m01*vx[VY] + - projection.m02*vx[VZ] + projection.m03*vx[VW]; - float oy = - projection.m10*vx[VX] + projection.m11*vx[VY] + - projection.m12*vx[VZ] + projection.m13*vx[VW]; - float oz = - projection.m20*vx[VX] + projection.m21*vx[VY] + - projection.m22*vx[VZ] + projection.m23*vx[VW]; - float ow = - projection.m30*vx[VX] + projection.m31*vx[VY] + - projection.m32*vx[VZ] + projection.m33*vx[VW]; - - if (ow != 0 && ow != 1) { - ox /= ow; oy /= ow; oz /= ow; - } - - vx[TX] = width * (1 + ox) / 2.0f; - vx[TY] = height * (1 + oy) / 2.0f; - vx[TZ] = (oz + 1) / 2.0f; - } - } - - - - ///////////////////////////////////////////////////////////////////////////// - - // POINTS - - - protected void addPoint(int a) { - if (pointCount == points.length) { - int[][] temp = new int[pointCount << 1][LINE_FIELD_COUNT]; - System.arraycopy(points, 0, temp, 0, lineCount); - points = temp; - } - points[pointCount][VERTEX1] = a; - //points[pointCount][STROKE_MODE] = strokeCap | strokeJoin; - points[pointCount][STROKE_COLOR] = strokeColor; - //points[pointCount][STROKE_WEIGHT] = (int) (strokeWeight + 0.5f); // hmm - pointCount++; - } - - - protected void renderPoints(int start, int stop) { - if (strokeWeight != 1) { - for (int i = start; i < stop; i++) { - float[] a = vertices[points[i][VERTEX1]]; - renderLineVertices(a, a); - } - } else { - for (int i = start; i < stop; i++) { - float[] a = vertices[points[i][VERTEX1]]; - int sx = (int) (a[TX] + 0.4999f); - int sy = (int) (a[TY] + 0.4999f); - if (sx >= 0 && sx < width && sy >= 0 && sy < height) { - int index = sy*width + sx; - pixels[index] = points[i][STROKE_COLOR]; - zbuffer[index] = a[TZ]; - } - } - } - } - - - // alternative implementations of point rendering code... - - /* - int sx = (int) (screenX(x, y, z) + 0.5f); - int sy = (int) (screenY(x, y, z) + 0.5f); - - int index = sy*width + sx; - pixels[index] = strokeColor; - zbuffer[index] = screenZ(x, y, z); - - */ - - /* - protected void renderPoints(int start, int stop) { - for (int i = start; i < stop; i++) { - float a[] = vertices[points[i][VERTEX1]]; - - line.reset(); - - line.setIntensities(a[SR], a[SG], a[SB], a[SA], - a[SR], a[SG], a[SB], a[SA]); - - line.setVertices(a[TX], a[TY], a[TZ], - a[TX] + 0.5f, a[TY] + 0.5f, a[TZ] + 0.5f); - - line.draw(); - } - } - */ - - /* - // handle points with an actual stroke weight (or scaled by renderer) - private void point3(float x, float y, float z, int color) { - // need to get scaled version of the stroke - float x1 = screenX(x - 0.5f, y - 0.5f, z); - float y1 = screenY(x - 0.5f, y - 0.5f, z); - float x2 = screenX(x + 0.5f, y + 0.5f, z); - float y2 = screenY(x + 0.5f, y + 0.5f, z); - - float weight = (abs(x2 - x1) + abs(y2 - y1)) / 2f; - if (weight < 1.5f) { - int xx = (int) ((x1 + x2) / 2f); - int yy = (int) ((y1 + y2) / 2f); - //point0(xx, yy, z, color); - zbuffer[yy*width + xx] = screenZ(x, y, z); - //stencil? - - } else { - // actually has some weight, need to draw shapes instead - // these will be - } - } - */ - - - protected void rawPoints(int start, int stop) { - raw.colorMode(RGB, 1); - raw.noFill(); - raw.strokeWeight(vertices[lines[start][VERTEX1]][SW]); - raw.beginShape(POINTS); - - for (int i = start; i < stop; i++) { - float a[] = vertices[lines[i][VERTEX1]]; - - if (raw.is3D()) { - if (a[VW] != 0) { - raw.stroke(a[SR], a[SG], a[SB], a[SA]); - raw.vertex(a[VX] / a[VW], a[VY] / a[VW], a[VZ] / a[VW]); - } - } else { // if is2D() - raw.stroke(a[SR], a[SG], a[SB], a[SA]); - raw.vertex(a[TX], a[TY]); - } - } - raw.endShape(); - } - - - - ///////////////////////////////////////////////////////////////////////////// - - // LINES - - - /** - * Begin a new section of stroked geometry. - */ - protected final void addLineBreak() { - if (pathCount == pathOffset.length) { - pathOffset = PApplet.expand(pathOffset); - pathLength = PApplet.expand(pathLength); - } - pathOffset[pathCount] = lineCount; - pathLength[pathCount] = 0; - pathCount++; - } - - - protected void addLine(int a, int b) { - addLineWithClip(a, b); - } - - - protected final void addLineWithClip(int a, int b) { - float az = vertices[a][VZ]; - float bz = vertices[b][VZ]; - if (az > cameraNear) { - if (bz > cameraNear) { - return; - } - int cb = interpolateClipVertex(a, b); - addLineWithoutClip(cb, b); - return; - } - else { - if (bz <= cameraNear) { - addLineWithoutClip(a, b); - return; - } - int cb = interpolateClipVertex(a, b); - addLineWithoutClip(a, cb); - return; - } - } - - - protected final void addLineWithoutClip(int a, int b) { - if (lineCount == lines.length) { - int temp[][] = new int[lineCount<<1][LINE_FIELD_COUNT]; - System.arraycopy(lines, 0, temp, 0, lineCount); - lines = temp; - } - lines[lineCount][VERTEX1] = a; - lines[lineCount][VERTEX2] = b; - - //lines[lineCount][STROKE_MODE] = strokeCap | strokeJoin; - //lines[lineCount][STROKE_WEIGHT] = (int) (strokeWeight + 0.5f); // hmm - lineCount++; - - // mark this piece as being part of the current path - pathLength[pathCount-1]++; - } - - - protected void renderLines(int start, int stop) { - for (int i = start; i < stop; i++) { - renderLineVertices(vertices[lines[i][VERTEX1]], - vertices[lines[i][VERTEX2]]); - } - } - - - protected void renderLineVertices(float[] a, float[] b) { - // 2D hack added by ewjordan 6/13/07 - // Offset coordinates by a little bit if drawing 2D graphics. - // http://dev.processing.org/bugs/show_bug.cgi?id=95 - - // This hack fixes a bug caused by numerical precision issues when - // applying the 3D transformations to coordinates in the screen plane - // that should actually not be altered under said transformations. - // It will not be applied if any transformations other than translations - // are active, nor should it apply in OpenGL mode (PGraphicsOpenGL - // overrides render_lines(), so this should be fine). - // This fix exposes a last-pixel bug in the lineClipCode() function - // of PLine.java, so that fix must remain in place if this one is used. - - // Note: the "true" fix for this bug is to change the pixel coverage - // model so that the threshold for display does not lie on an integer - // boundary. Search "diamond exit rule" for info the OpenGL approach. - - /* - // removing for 0149 with the return of P2D - if (drawing2D() && a[Z] == 0) { - a[TX] += 0.01; - a[TY] += 0.01; - a[VX] += 0.01*a[VW]; - a[VY] += 0.01*a[VW]; - b[TX] += 0.01; - b[TY] += 0.01; - b[VX] += 0.01*b[VW]; - b[VY] += 0.01*b[VW]; - } - */ - // end 2d-hack - - if (a[SW] > 1.25f || a[SW] < 0.75f) { - float ox1 = a[TX]; - float oy1 = a[TY]; - float ox2 = b[TX]; - float oy2 = b[TY]; - - // TODO strokeWeight should be transformed! - float weight = a[SW] / 2; - - // when drawing points with stroke weight, need to extend a bit - if (ox1 == ox2 && oy1 == oy2) { - oy1 -= weight; - oy2 += weight; - } - - float dX = ox2 - ox1 + EPSILON; - float dY = oy2 - oy1 + EPSILON; - float len = (float) Math.sqrt(dX*dX + dY*dY); - - float rh = weight / len; - - float dx0 = rh * dY; - float dy0 = rh * dX; - float dx1 = rh * dY; - float dy1 = rh * dX; - - float ax1 = ox1+dx0; - float ay1 = oy1-dy0; - - float ax2 = ox1-dx0; - float ay2 = oy1+dy0; - - float bx1 = ox2+dx1; - float by1 = oy2-dy1; - - float bx2 = ox2-dx1; - float by2 = oy2+dy1; - - if (smooth) { - smoothTriangle.reset(3); - smoothTriangle.smooth = true; - smoothTriangle.interpARGB = true; // ? - - // render first triangle for thick line - smoothTriangle.setVertices(ax1, ay1, a[TZ], - bx2, by2, b[TZ], - ax2, ay2, a[TZ]); - smoothTriangle.setIntensities(a[SR], a[SG], a[SB], a[SA], - b[SR], b[SG], b[SB], b[SA], - a[SR], a[SG], a[SB], a[SA]); - smoothTriangle.render(); - - // render second triangle for thick line - smoothTriangle.setVertices(ax1, ay1, a[TZ], - bx2, by2, b[TZ], - bx1, by1, b[TZ]); - smoothTriangle.setIntensities(a[SR], a[SG], a[SB], a[SA], - b[SR], b[SG], b[SB], b[SA], - b[SR], b[SG], b[SB], b[SA]); - smoothTriangle.render(); - - } else { - triangle.reset(); - - // render first triangle for thick line - triangle.setVertices(ax1, ay1, a[TZ], - bx2, by2, b[TZ], - ax2, ay2, a[TZ]); - triangle.setIntensities(a[SR], a[SG], a[SB], a[SA], - b[SR], b[SG], b[SB], b[SA], - a[SR], a[SG], a[SB], a[SA]); - triangle.render(); - - // render second triangle for thick line - triangle.setVertices(ax1, ay1, a[TZ], - bx2, by2, b[TZ], - bx1, by1, b[TZ]); - triangle.setIntensities(a[SR], a[SG], a[SB], a[SA], - b[SR], b[SG], b[SB], b[SA], - b[SR], b[SG], b[SB], b[SA]); - triangle.render(); - } - - } else { - line.reset(); - - line.setIntensities(a[SR], a[SG], a[SB], a[SA], - b[SR], b[SG], b[SB], b[SA]); - - line.setVertices(a[TX], a[TY], a[TZ], - b[TX], b[TY], b[TZ]); - - /* - // Seems okay to remove this because these vertices are not used again, - // but if problems arise, this needs to be uncommented because the above - // change is destructive and may need to be undone before proceeding. - if (drawing2D() && a[MZ] == 0) { - a[X] -= 0.01; - a[Y] -= 0.01; - a[VX] -= 0.01*a[VW]; - a[VY] -= 0.01*a[VW]; - b[X] -= 0.01; - b[Y] -= 0.01; - b[VX] -= 0.01*b[VW]; - b[VY] -= 0.01*b[VW]; - } - */ - - line.draw(); - } - } - - - /** - * Handle echoing line data to a raw shape recording renderer. This has been - * broken out of the renderLines() procedure so that renderLines() can be - * optimized per-renderer without having to deal with this code. This code, - * for instance, will stay the same when OpenGL is in use, but renderLines() - * can be optimized significantly. - *

    - * Values for start and stop are specified, so that in the future, sorted - * rendering can be implemented, which will require sequences of lines, - * triangles, or points to be rendered in the neighborhood of one another. - * That is, if we're gonna depth sort, we can't just draw all the triangles - * and then draw all the lines, cuz that defeats the purpose. - */ - protected void rawLines(int start, int stop) { - raw.colorMode(RGB, 1); - raw.noFill(); - raw.beginShape(LINES); - - for (int i = start; i < stop; i++) { - float a[] = vertices[lines[i][VERTEX1]]; - float b[] = vertices[lines[i][VERTEX2]]; - raw.strokeWeight(vertices[lines[i][VERTEX2]][SW]); - - if (raw.is3D()) { - if ((a[VW] != 0) && (b[VW] != 0)) { - raw.stroke(a[SR], a[SG], a[SB], a[SA]); - raw.vertex(a[VX] / a[VW], a[VY] / a[VW], a[VZ] / a[VW]); - raw.stroke(b[SR], b[SG], b[SB], b[SA]); - raw.vertex(b[VX] / b[VW], b[VY] / b[VW], b[VZ] / b[VW]); - } - } else if (raw.is2D()) { - raw.stroke(a[SR], a[SG], a[SB], a[SA]); - raw.vertex(a[TX], a[TY]); - raw.stroke(b[SR], b[SG], b[SB], b[SA]); - raw.vertex(b[TX], b[TY]); - } - } - raw.endShape(); - } - - - - ///////////////////////////////////////////////////////////////////////////// - - // TRIANGLES - - - protected void addTriangle(int a, int b, int c) { - addTriangleWithClip(a, b, c); - } - - - protected final void addTriangleWithClip(int a, int b, int c) { - boolean aClipped = false; - boolean bClipped = false; - int clippedCount = 0; - - // This is a hack for temporary clipping. Clipping still needs to - // be implemented properly, however. Please help! - // http://dev.processing.org/bugs/show_bug.cgi?id=1393 - cameraNear = -8; - if (vertices[a][VZ] > cameraNear) { - aClipped = true; - clippedCount++; - } - if (vertices[b][VZ] > cameraNear) { - bClipped = true; - clippedCount++; - } - if (vertices[c][VZ] > cameraNear) { - //cClipped = true; - clippedCount++; - } - if (clippedCount == 0) { -// if (vertices[a][VZ] < cameraFar && -// vertices[b][VZ] < cameraFar && -// vertices[c][VZ] < cameraFar) { - addTriangleWithoutClip(a, b, c); -// } - -// } else if (true) { -// return; - - } else if (clippedCount == 3) { - // In this case there is only one visible point. |/| - // So we'll have to make two new points on the clip line <| | - // and add that triangle instead. |\| - - } else if (clippedCount == 2) { - //System.out.println("Clipped two"); - - int ca, cb, cc, cd, ce; - if (!aClipped) { - ca = a; - cb = b; - cc = c; - } - else if (!bClipped) { - ca = b; - cb = a; - cc = c; - } - else { //if (!cClipped) { - ca = c; - cb = b; - cc = a; - } - - cd = interpolateClipVertex(ca, cb); - ce = interpolateClipVertex(ca, cc); - addTriangleWithoutClip(ca, cd, ce); - - } else { // (clippedCount == 1) { - // . | - // In this case there are two visible points. |\| - // So we'll have to make two new points on the clip line | |> - // and then add two new triangles. |/| - // . | - //System.out.println("Clipped one"); - int ca, cb, cc, cd, ce; - if (aClipped) { - //System.out.println("aClipped"); - ca = c; - cb = b; - cc = a; - } - else if (bClipped) { - //System.out.println("bClipped"); - ca = a; - cb = c; - cc = b; - } - else { //if (cClipped) { - //System.out.println("cClipped"); - ca = a; - cb = b; - cc = c; - } - - cd = interpolateClipVertex(ca, cc); - ce = interpolateClipVertex(cb, cc); - addTriangleWithoutClip(ca, cd, cb); - //System.out.println("ca: " + ca + ", " + vertices[ca][VX] + ", " + vertices[ca][VY] + ", " + vertices[ca][VZ]); - //System.out.println("cd: " + cd + ", " + vertices[cd][VX] + ", " + vertices[cd][VY] + ", " + vertices[cd][VZ]); - //System.out.println("cb: " + cb + ", " + vertices[cb][VX] + ", " + vertices[cb][VY] + ", " + vertices[cb][VZ]); - addTriangleWithoutClip(cb, cd, ce); - } - } - - - protected final int interpolateClipVertex(int a, int b) { - float[] va; - float[] vb; - // Set up va, vb such that va[VZ] >= vb[VZ] - if (vertices[a][VZ] < vertices[b][VZ]) { - va = vertices[b]; - vb = vertices[a]; - } - else { - va = vertices[a]; - vb = vertices[b]; - } - float az = va[VZ]; - float bz = vb[VZ]; - - float dz = az - bz; - // If they have the same z, just use pt. a. - if (dz == 0) { - return a; - } - //float pa = (az - cameraNear) / dz; - //float pb = (cameraNear - bz) / dz; - float pa = (cameraNear - bz) / dz; - float pb = 1 - pa; - - vertex(pa * va[X] + pb * vb[X], - pa * va[Y] + pb * vb[Y], - pa * va[Z] + pb * vb[Z]); - int irv = vertexCount - 1; - shapeLastPlusClipped++; - - float[] rv = vertices[irv]; - - rv[TX] = pa * va[TX] + pb * vb[TX]; - rv[TY] = pa * va[TY] + pb * vb[TY]; - rv[TZ] = pa * va[TZ] + pb * vb[TZ]; - - rv[VX] = pa * va[VX] + pb * vb[VX]; - rv[VY] = pa * va[VY] + pb * vb[VY]; - rv[VZ] = pa * va[VZ] + pb * vb[VZ]; - rv[VW] = pa * va[VW] + pb * vb[VW]; - - rv[R] = pa * va[R] + pb * vb[R]; - rv[G] = pa * va[G] + pb * vb[G]; - rv[B] = pa * va[B] + pb * vb[B]; - rv[A] = pa * va[A] + pb * vb[A]; - - rv[U] = pa * va[U] + pb * vb[U]; - rv[V] = pa * va[V] + pb * vb[V]; - - rv[SR] = pa * va[SR] + pb * vb[SR]; - rv[SG] = pa * va[SG] + pb * vb[SG]; - rv[SB] = pa * va[SB] + pb * vb[SB]; - rv[SA] = pa * va[SA] + pb * vb[SA]; - - rv[NX] = pa * va[NX] + pb * vb[NX]; - rv[NY] = pa * va[NY] + pb * vb[NY]; - rv[NZ] = pa * va[NZ] + pb * vb[NZ]; - -// rv[SW] = pa * va[SW] + pb * vb[SW]; - - rv[AR] = pa * va[AR] + pb * vb[AR]; - rv[AG] = pa * va[AG] + pb * vb[AG]; - rv[AB] = pa * va[AB] + pb * vb[AB]; - - rv[SPR] = pa * va[SPR] + pb * vb[SPR]; - rv[SPG] = pa * va[SPG] + pb * vb[SPG]; - rv[SPB] = pa * va[SPB] + pb * vb[SPB]; - //rv[SPA] = pa * va[SPA] + pb * vb[SPA]; - - rv[ER] = pa * va[ER] + pb * vb[ER]; - rv[EG] = pa * va[EG] + pb * vb[EG]; - rv[EB] = pa * va[EB] + pb * vb[EB]; - - rv[SHINE] = pa * va[SHINE] + pb * vb[SHINE]; - - rv[BEEN_LIT] = 0; - - return irv; - } - - - protected final void addTriangleWithoutClip(int a, int b, int c) { - if (triangleCount == triangles.length) { - int temp[][] = new int[triangleCount<<1][TRIANGLE_FIELD_COUNT]; - System.arraycopy(triangles, 0, temp, 0, triangleCount); - triangles = temp; - //message(CHATTER, "allocating more triangles " + triangles.length); - float ftemp[][][] = new float[triangleCount<<1][3][TRI_COLOR_COUNT]; - System.arraycopy(triangleColors, 0, ftemp, 0, triangleCount); - triangleColors = ftemp; - } - triangles[triangleCount][VERTEX1] = a; - triangles[triangleCount][VERTEX2] = b; - triangles[triangleCount][VERTEX3] = c; - - if (textureImage == null) { - triangles[triangleCount][TEXTURE_INDEX] = -1; - } else { - triangles[triangleCount][TEXTURE_INDEX] = textureIndex; - } - -// triangles[triangleCount][INDEX] = shape_index; - triangleCount++; - } - - - /** - * Triangulate the current polygon. - *

    - * Simple ear clipping polygon triangulation adapted from code by - * John W. Ratcliff (jratcliff at verant.com). Presumably - * this - * bit of code from the web. - */ - protected void addPolygonTriangles() { - if (vertexOrder.length != vertices.length) { - int[] temp = new int[vertices.length]; - // vertex_start may not be zero, might need to keep old stuff around - // also, copy vertexOrder.length, not vertexCount because vertexCount - // may be larger than vertexOrder.length (since this is a post-processing - // step that happens after the vertex arrays are built). - PApplet.arrayCopy(vertexOrder, temp, vertexOrder.length); - vertexOrder = temp; - } - - // this clipping algorithm only works in 2D, so in cases where a - // polygon is drawn perpendicular to the z-axis, the area will be zero, - // and triangulation will fail. as such, when the area calculates to - // zero, figure out whether x or y is empty, and calculate based on the - // two dimensions that actually contain information. - // http://dev.processing.org/bugs/show_bug.cgi?id=111 - int d1 = X; - int d2 = Y; - // this brings up the nastier point that there may be cases where - // a polygon is irregular in space and will throw off the - // clockwise/counterclockwise calculation. for instance, if clockwise - // relative to x and z, but counter relative to y and z or something - // like that.. will wait to see if this is in fact a problem before - // hurting my head on the math. - - /* - // trying to track down bug #774 - for (int i = vertex_start; i < vertex_end; i++) { - if (i > vertex_start) { - if (vertices[i-1][MX] == vertices[i][MX] && - vertices[i-1][MY] == vertices[i][MY]) { - System.out.print("**** " ); - } - } - System.out.println(i + " " + vertices[i][MX] + " " + vertices[i][MY]); - } - System.out.println(); - */ - - // first we check if the polygon goes clockwise or counterclockwise - float area = 0; - for (int p = shapeLast - 1, q = shapeFirst; q < shapeLast; p = q++) { - area += (vertices[q][d1] * vertices[p][d2] - - vertices[p][d1] * vertices[q][d2]); - } - // rather than checking for the perpendicular case first, only do it - // when the area calculates to zero. checking for perpendicular would be - // a needless waste of time for the 99% case. - if (area == 0) { - // figure out which dimension is the perpendicular axis - boolean foundValidX = false; - boolean foundValidY = false; - - for (int i = shapeFirst; i < shapeLast; i++) { - for (int j = i; j < shapeLast; j++){ - if ( vertices[i][X] != vertices[j][X] ) foundValidX = true; - if ( vertices[i][Y] != vertices[j][Y] ) foundValidY = true; - } - } - - if (foundValidX) { - //d1 = MX; // already the case - d2 = Z; - } else if (foundValidY) { - // ermm.. which is the proper order for cw/ccw here? - d1 = Y; - d2 = Z; - } else { - // screw it, this polygon is just f-ed up - return; - } - - // re-calculate the area, with what should be good values - for (int p = shapeLast - 1, q = shapeFirst; q < shapeLast; p = q++) { - area += (vertices[q][d1] * vertices[p][d2] - - vertices[p][d1] * vertices[q][d2]); - } - } - - // don't allow polygons to come back and meet themselves, - // otherwise it will anger the triangulator - // http://dev.processing.org/bugs/show_bug.cgi?id=97 - float vfirst[] = vertices[shapeFirst]; - float vlast[] = vertices[shapeLast-1]; - if ((abs(vfirst[X] - vlast[X]) < EPSILON) && - (abs(vfirst[Y] - vlast[Y]) < EPSILON) && - (abs(vfirst[Z] - vlast[Z]) < EPSILON)) { - shapeLast--; - } - - // then sort the vertices so they are always in a counterclockwise order - int j = 0; - if (area > 0) { - for (int i = shapeFirst; i < shapeLast; i++) { - j = i - shapeFirst; - vertexOrder[j] = i; - } - } else { - for (int i = shapeFirst; i < shapeLast; i++) { - j = i - shapeFirst; - vertexOrder[j] = (shapeLast - 1) - j; - } - } - - // remove vc-2 Vertices, creating 1 triangle every time - int vc = shapeLast - shapeFirst; - int count = 2*vc; // complex polygon detection - - for (int m = 0, v = vc - 1; vc > 2; ) { - boolean snip = true; - - // if we start over again, is a complex polygon - if (0 >= (count--)) { - break; // triangulation failed - } - - // get 3 consecutive vertices - int u = v ; if (vc <= u) u = 0; // previous - v = u + 1; if (vc <= v) v = 0; // current - int w = v + 1; if (vc <= w) w = 0; // next - - // Upgrade values to doubles, and multiply by 10 so that we can have - // some better accuracy as we tessellate. This seems to have negligible - // speed differences on Windows and Intel Macs, but causes a 50% speed - // drop for PPC Macs with the bug's example code that draws ~200 points - // in a concave polygon. Apple has abandoned PPC so we may as well too. - // http://dev.processing.org/bugs/show_bug.cgi?id=774 - - // triangle A B C - double Ax = -10 * vertices[vertexOrder[u]][d1]; - double Ay = 10 * vertices[vertexOrder[u]][d2]; - double Bx = -10 * vertices[vertexOrder[v]][d1]; - double By = 10 * vertices[vertexOrder[v]][d2]; - double Cx = -10 * vertices[vertexOrder[w]][d1]; - double Cy = 10 * vertices[vertexOrder[w]][d2]; - - // first we check if continues going ccw - if (EPSILON > (((Bx-Ax) * (Cy-Ay)) - ((By-Ay) * (Cx-Ax)))) { - continue; - } - - for (int p = 0; p < vc; p++) { - if ((p == u) || (p == v) || (p == w)) { - continue; - } - - double Px = -10 * vertices[vertexOrder[p]][d1]; - double Py = 10 * vertices[vertexOrder[p]][d2]; - - double ax = Cx - Bx; double ay = Cy - By; - double bx = Ax - Cx; double by = Ay - Cy; - double cx = Bx - Ax; double cy = By - Ay; - double apx = Px - Ax; double apy = Py - Ay; - double bpx = Px - Bx; double bpy = Py - By; - double cpx = Px - Cx; double cpy = Py - Cy; - - double aCROSSbp = ax * bpy - ay * bpx; - double cCROSSap = cx * apy - cy * apx; - double bCROSScp = bx * cpy - by * cpx; - - if ((aCROSSbp >= 0.0) && (bCROSScp >= 0.0) && (cCROSSap >= 0.0)) { - snip = false; - } - } - - if (snip) { - addTriangle(vertexOrder[u], vertexOrder[v], vertexOrder[w]); - - m++; - - // remove v from remaining polygon - for (int s = v, t = v + 1; t < vc; s++, t++) { - vertexOrder[s] = vertexOrder[t]; - } - vc--; - - // reset error detection counter - count = 2 * vc; - } - } - } - - - private void toWorldNormal(float nx, float ny, float nz, float[] out) { - out[0] = - modelviewInv.m00*nx + modelviewInv.m10*ny + - modelviewInv.m20*nz + modelviewInv.m30; - out[1] = - modelviewInv.m01*nx + modelviewInv.m11*ny + - modelviewInv.m21*nz + modelviewInv.m31; - out[2] = - modelviewInv.m02*nx + modelviewInv.m12*ny + - modelviewInv.m22*nz + modelviewInv.m32; - out[3] = - modelviewInv.m03*nx + modelviewInv.m13*ny + - modelviewInv.m23*nz + modelviewInv.m33; - - if (out[3] != 0 && out[3] != 1) { - // divide by perspective coordinate - out[0] /= out[3]; out[1] /= out[3]; out[2] /= out[3]; - } - out[3] = 1; - - float nlen = mag(out[0], out[1], out[2]); // normalize - if (nlen != 0 && nlen != 1) { - out[0] /= nlen; out[1] /= nlen; out[2] /= nlen; - } - } - - - //private PVector calcLightingNorm = new PVector(); - //private PVector calcLightingWorldNorm = new PVector(); - float[] worldNormal = new float[4]; - - - private void calcLightingContribution(int vIndex, - float[] contribution) { - calcLightingContribution(vIndex, contribution, false); - } - - - private void calcLightingContribution(int vIndex, - float[] contribution, - boolean normalIsWorld) { - float[] v = vertices[vIndex]; - - float sr = v[SPR]; - float sg = v[SPG]; - float sb = v[SPB]; - - float wx = v[VX]; - float wy = v[VY]; - float wz = v[VZ]; - float shine = v[SHINE]; - - float nx = v[NX]; - float ny = v[NY]; - float nz = v[NZ]; - - if (!normalIsWorld) { -// System.out.println("um, hello?"); -// calcLightingNorm.set(nx, ny, nz); -// //modelviewInv.mult(calcLightingNorm, calcLightingWorldNorm); -// -//// PMatrix3D mvi = modelViewInv; -//// float ox = mvi.m00*nx + mvi.m10*ny + mvi*m20+nz + -// modelviewInv.cmult(calcLightingNorm, calcLightingWorldNorm); -// -// calcLightingWorldNorm.normalize(); -// nx = calcLightingWorldNorm.x; -// ny = calcLightingWorldNorm.y; -// nz = calcLightingWorldNorm.z; - - toWorldNormal(v[NX], v[NY], v[NZ], worldNormal); - nx = worldNormal[X]; - ny = worldNormal[Y]; - nz = worldNormal[Z]; - -// float wnx = modelviewInv.multX(nx, ny, nz); -// float wny = modelviewInv.multY(nx, ny, nz); -// float wnz = modelviewInv.multZ(nx, ny, nz); -// float wnw = modelviewInv.multW(nx, ny, nz); - -// if (wnw != 0 && wnw != 1) { -// wnx /= wnw; -// wny /= wnw; -// wnz /= wnw; -// } -// float nlen = mag(wnx, wny, wnw); -// if (nlen != 0 && nlen != 1) { -// nx = wnx / nlen; -// ny = wny / nlen; -// nz = wnz / nlen; -// } else { -// nx = wnx; -// ny = wny; -// nz = wnz; -// } -// */ - } else { - nx = v[NX]; - ny = v[NY]; - nz = v[NZ]; - } - - // Since the camera space == world space, - // we can test for visibility by the dot product of - // the normal with the direction from pt. to eye. - float dir = dot(nx, ny, nz, -wx, -wy, -wz); - // If normal is away from camera, choose its opposite. - // If we add backface culling, this will be backfacing - // (but since this is per vertex, it's more complicated) - if (dir < 0) { - nx = -nx; - ny = -ny; - nz = -nz; - } - - // These two terms will sum the contributions from the various lights - contribution[LIGHT_AMBIENT_R] = 0; - contribution[LIGHT_AMBIENT_G] = 0; - contribution[LIGHT_AMBIENT_B] = 0; - - contribution[LIGHT_DIFFUSE_R] = 0; - contribution[LIGHT_DIFFUSE_G] = 0; - contribution[LIGHT_DIFFUSE_B] = 0; - - contribution[LIGHT_SPECULAR_R] = 0; - contribution[LIGHT_SPECULAR_G] = 0; - contribution[LIGHT_SPECULAR_B] = 0; - - // for (int i = 0; i < MAX_LIGHTS; i++) { - // if (!light[i]) continue; - for (int i = 0; i < lightCount; i++) { - - float denom = lightFalloffConstant[i]; - float spotTerm = 1; - - if (lightType[i] == AMBIENT) { - if (lightFalloffQuadratic[i] != 0 || lightFalloffLinear[i] != 0) { - // Falloff depends on distance - float distSq = mag(lightPosition[i].x - wx, - lightPosition[i].y - wy, - lightPosition[i].z - wz); - denom += - lightFalloffQuadratic[i] * distSq + - lightFalloffLinear[i] * sqrt(distSq); - } - if (denom == 0) denom = 1; - - contribution[LIGHT_AMBIENT_R] += lightDiffuse[i][0] / denom; - contribution[LIGHT_AMBIENT_G] += lightDiffuse[i][1] / denom; - contribution[LIGHT_AMBIENT_B] += lightDiffuse[i][2] / denom; - - } else { - // If not ambient, we must deal with direction - - // li is the vector from the vertex to the light - float lix, liy, liz; - float lightDir_dot_li = 0; - float n_dot_li = 0; - - if (lightType[i] == DIRECTIONAL) { - lix = -lightNormal[i].x; - liy = -lightNormal[i].y; - liz = -lightNormal[i].z; - denom = 1; - n_dot_li = (nx * lix + ny * liy + nz * liz); - // If light is lighting the face away from the camera, ditch - if (n_dot_li <= 0) { - continue; - } - } else { // Point or spot light (must deal also with light location) - lix = lightPosition[i].x - wx; - liy = lightPosition[i].y - wy; - liz = lightPosition[i].z - wz; - // normalize - float distSq = mag(lix, liy, liz); - if (distSq != 0) { - lix /= distSq; - liy /= distSq; - liz /= distSq; - } - n_dot_li = (nx * lix + ny * liy + nz * liz); - // If light is lighting the face away from the camera, ditch - if (n_dot_li <= 0) { - continue; - } - - if (lightType[i] == SPOT) { // Must deal with spot cone - lightDir_dot_li = - -(lightNormal[i].x * lix + - lightNormal[i].y * liy + - lightNormal[i].z * liz); - // Outside of spot cone - if (lightDir_dot_li <= lightSpotAngleCos[i]) { - continue; - } - spotTerm = (float) Math.pow(lightDir_dot_li, lightSpotConcentration[i]); - } - - if (lightFalloffQuadratic[i] != 0 || lightFalloffLinear[i] != 0) { - // Falloff depends on distance - denom += - lightFalloffQuadratic[i] * distSq + - lightFalloffLinear[i] * (float) sqrt(distSq); - } - } - // Directional, point, or spot light: - - // We know n_dot_li > 0 from above "continues" - - if (denom == 0) - denom = 1; - float mul = n_dot_li * spotTerm / denom; - contribution[LIGHT_DIFFUSE_R] += lightDiffuse[i][0] * mul; - contribution[LIGHT_DIFFUSE_G] += lightDiffuse[i][1] * mul; - contribution[LIGHT_DIFFUSE_B] += lightDiffuse[i][2] * mul; - - // SPECULAR - - // If the material and light have a specular component. - if ((sr > 0 || sg > 0 || sb > 0) && - (lightSpecular[i][0] > 0 || - lightSpecular[i][1] > 0 || - lightSpecular[i][2] > 0)) { - - float vmag = mag(wx, wy, wz); - if (vmag != 0) { - wx /= vmag; - wy /= vmag; - wz /= vmag; - } - float sx = lix - wx; - float sy = liy - wy; - float sz = liz - wz; - vmag = mag(sx, sy, sz); - if (vmag != 0) { - sx /= vmag; - sy /= vmag; - sz /= vmag; - } - float s_dot_n = (sx * nx + sy * ny + sz * nz); - - if (s_dot_n > 0) { - s_dot_n = (float) Math.pow(s_dot_n, shine); - mul = s_dot_n * spotTerm / denom; - contribution[LIGHT_SPECULAR_R] += lightSpecular[i][0] * mul; - contribution[LIGHT_SPECULAR_G] += lightSpecular[i][1] * mul; - contribution[LIGHT_SPECULAR_B] += lightSpecular[i][2] * mul; - } - - } - } - } - return; - } - - - // Multiply the lighting contribution into the vertex's colors. - // Only do this when there is ONE lighting per vertex - // (MANUAL_VERTEX_NORMAL or SHAPE_NORMAL mode). - private void applyLightingContribution(int vIndex, float[] contribution) { - float[] v = vertices[vIndex]; - - v[R] = clamp(v[ER] + v[AR] * contribution[LIGHT_AMBIENT_R] + v[DR] * contribution[LIGHT_DIFFUSE_R]); - v[G] = clamp(v[EG] + v[AG] * contribution[LIGHT_AMBIENT_G] + v[DG] * contribution[LIGHT_DIFFUSE_G]); - v[B] = clamp(v[EB] + v[AB] * contribution[LIGHT_AMBIENT_B] + v[DB] * contribution[LIGHT_DIFFUSE_B]); - v[A] = clamp(v[DA]); - - v[SPR] = clamp(v[SPR] * contribution[LIGHT_SPECULAR_R]); - v[SPG] = clamp(v[SPG] * contribution[LIGHT_SPECULAR_G]); - v[SPB] = clamp(v[SPB] * contribution[LIGHT_SPECULAR_B]); - //v[SPA] = min(1, v[SPA]); - - v[BEEN_LIT] = 1; - } - - - private void lightVertex(int vIndex, float[] contribution) { - calcLightingContribution(vIndex, contribution); - applyLightingContribution(vIndex, contribution); - } - - - private void lightUnlitVertex(int vIndex, float[] contribution) { - if (vertices[vIndex][BEEN_LIT] == 0) { - lightVertex(vIndex, contribution); - } - } - - - private void copyPrelitVertexColor(int triIndex, int index, int colorIndex) { - float[] triColor = triangleColors[triIndex][colorIndex]; - float[] v = vertices[index]; - - triColor[TRI_DIFFUSE_R] = v[R]; - triColor[TRI_DIFFUSE_G] = v[G]; - triColor[TRI_DIFFUSE_B] = v[B]; - triColor[TRI_DIFFUSE_A] = v[A]; - triColor[TRI_SPECULAR_R] = v[SPR]; - triColor[TRI_SPECULAR_G] = v[SPG]; - triColor[TRI_SPECULAR_B] = v[SPB]; - //triColor[TRI_SPECULAR_A] = v[SPA]; - } - - - private void copyVertexColor(int triIndex, int index, int colorIndex, - float[] contrib) { - float[] triColor = triangleColors[triIndex][colorIndex]; - float[] v = vertices[index]; - - triColor[TRI_DIFFUSE_R] = - clamp(v[ER] + v[AR] * contrib[LIGHT_AMBIENT_R] + v[DR] * contrib[LIGHT_DIFFUSE_R]); - triColor[TRI_DIFFUSE_G] = - clamp(v[EG] + v[AG] * contrib[LIGHT_AMBIENT_G] + v[DG] * contrib[LIGHT_DIFFUSE_G]); - triColor[TRI_DIFFUSE_B] = - clamp(v[EB] + v[AB] * contrib[LIGHT_AMBIENT_B] + v[DB] * contrib[LIGHT_DIFFUSE_B]); - triColor[TRI_DIFFUSE_A] = clamp(v[DA]); - - triColor[TRI_SPECULAR_R] = clamp(v[SPR] * contrib[LIGHT_SPECULAR_R]); - triColor[TRI_SPECULAR_G] = clamp(v[SPG] * contrib[LIGHT_SPECULAR_G]); - triColor[TRI_SPECULAR_B] = clamp(v[SPB] * contrib[LIGHT_SPECULAR_B]); - } - - - private void lightTriangle(int triIndex, float[] lightContribution) { - int vIndex = triangles[triIndex][VERTEX1]; - copyVertexColor(triIndex, vIndex, 0, lightContribution); - vIndex = triangles[triIndex][VERTEX2]; - copyVertexColor(triIndex, vIndex, 1, lightContribution); - vIndex = triangles[triIndex][VERTEX3]; - copyVertexColor(triIndex, vIndex, 2, lightContribution); - } - - - private void lightTriangle(int triIndex) { - int vIndex; - - // Handle lighting on, but no lights (in this case, just use emissive) - // This wont be used currently because lightCount == 0 is don't use - // lighting at all... So. OK. If that ever changes, use the below: - /* - if (lightCount == 0) { - vIndex = triangles[triIndex][VERTEX1]; - copy_emissive_vertex_color_to_triangle(triIndex, vIndex, 0); - vIndex = triangles[triIndex][VERTEX2]; - copy_emissive_vertex_color_to_triangle(triIndex, vIndex, 1); - vIndex = triangles[triIndex][VERTEX3]; - copy_emissive_vertex_color_to_triangle(triIndex, vIndex, 2); - return; - } - */ - - // In MANUAL_VERTEX_NORMAL mode, we have a specific normal - // for each vertex. In that case, we light any verts that - // haven't already been lit and copy their colors straight - // into the triangle. - if (normalMode == NORMAL_MODE_VERTEX) { - vIndex = triangles[triIndex][VERTEX1]; - lightUnlitVertex(vIndex, tempLightingContribution); - copyPrelitVertexColor(triIndex, vIndex, 0); - - vIndex = triangles[triIndex][VERTEX2]; - lightUnlitVertex(vIndex, tempLightingContribution); - copyPrelitVertexColor(triIndex, vIndex, 1); - - vIndex = triangles[triIndex][VERTEX3]; - lightUnlitVertex(vIndex, tempLightingContribution); - copyPrelitVertexColor(triIndex, vIndex, 2); - - } - - // If the lighting doesn't depend on the vertex position, do the - // following: We've already dealt with NORMAL_MODE_SHAPE mode before - // we got into this function, so here we only have to deal with - // NORMAL_MODE_AUTO. So we calculate the normal for this triangle, - // and use that for the lighting. - else if (!lightingDependsOnVertexPosition) { - vIndex = triangles[triIndex][VERTEX1]; - int vIndex2 = triangles[triIndex][VERTEX2]; - int vIndex3 = triangles[triIndex][VERTEX3]; - - /* - dv1[0] = vertices[vIndex2][VX] - vertices[vIndex][VX]; - dv1[1] = vertices[vIndex2][VY] - vertices[vIndex][VY]; - dv1[2] = vertices[vIndex2][VZ] - vertices[vIndex][VZ]; - - dv2[0] = vertices[vIndex3][VX] - vertices[vIndex][VX]; - dv2[1] = vertices[vIndex3][VY] - vertices[vIndex][VY]; - dv2[2] = vertices[vIndex3][VZ] - vertices[vIndex][VZ]; - - cross(dv1, dv2, norm); - */ - - cross(vertices[vIndex2][VX] - vertices[vIndex][VX], - vertices[vIndex2][VY] - vertices[vIndex][VY], - vertices[vIndex2][VZ] - vertices[vIndex][VZ], - vertices[vIndex3][VX] - vertices[vIndex][VX], - vertices[vIndex3][VY] - vertices[vIndex][VY], - vertices[vIndex3][VZ] - vertices[vIndex][VZ], lightTriangleNorm); - - lightTriangleNorm.normalize(); - vertices[vIndex][NX] = lightTriangleNorm.x; - vertices[vIndex][NY] = lightTriangleNorm.y; - vertices[vIndex][NZ] = lightTriangleNorm.z; - - // The true at the end says the normal is already in world coordinates - calcLightingContribution(vIndex, tempLightingContribution, true); - copyVertexColor(triIndex, vIndex, 0, tempLightingContribution); - copyVertexColor(triIndex, vIndex2, 1, tempLightingContribution); - copyVertexColor(triIndex, vIndex3, 2, tempLightingContribution); - } - - // If lighting is position-dependent - else { - if (normalMode == NORMAL_MODE_SHAPE) { - vIndex = triangles[triIndex][VERTEX1]; - vertices[vIndex][NX] = vertices[shapeFirst][NX]; - vertices[vIndex][NY] = vertices[shapeFirst][NY]; - vertices[vIndex][NZ] = vertices[shapeFirst][NZ]; - calcLightingContribution(vIndex, tempLightingContribution); - copyVertexColor(triIndex, vIndex, 0, tempLightingContribution); - - vIndex = triangles[triIndex][VERTEX2]; - vertices[vIndex][NX] = vertices[shapeFirst][NX]; - vertices[vIndex][NY] = vertices[shapeFirst][NY]; - vertices[vIndex][NZ] = vertices[shapeFirst][NZ]; - calcLightingContribution(vIndex, tempLightingContribution); - copyVertexColor(triIndex, vIndex, 1, tempLightingContribution); - - vIndex = triangles[triIndex][VERTEX3]; - vertices[vIndex][NX] = vertices[shapeFirst][NX]; - vertices[vIndex][NY] = vertices[shapeFirst][NY]; - vertices[vIndex][NZ] = vertices[shapeFirst][NZ]; - calcLightingContribution(vIndex, tempLightingContribution); - copyVertexColor(triIndex, vIndex, 2, tempLightingContribution); - } - - // lighting mode is AUTO_NORMAL - else { - vIndex = triangles[triIndex][VERTEX1]; - int vIndex2 = triangles[triIndex][VERTEX2]; - int vIndex3 = triangles[triIndex][VERTEX3]; - - /* - dv1[0] = vertices[vIndex2][VX] - vertices[vIndex][VX]; - dv1[1] = vertices[vIndex2][VY] - vertices[vIndex][VY]; - dv1[2] = vertices[vIndex2][VZ] - vertices[vIndex][VZ]; - - dv2[0] = vertices[vIndex3][VX] - vertices[vIndex][VX]; - dv2[1] = vertices[vIndex3][VY] - vertices[vIndex][VY]; - dv2[2] = vertices[vIndex3][VZ] - vertices[vIndex][VZ]; - - cross(dv1, dv2, norm); - */ - - cross(vertices[vIndex2][VX] - vertices[vIndex][VX], - vertices[vIndex2][VY] - vertices[vIndex][VY], - vertices[vIndex2][VZ] - vertices[vIndex][VZ], - vertices[vIndex3][VX] - vertices[vIndex][VX], - vertices[vIndex3][VY] - vertices[vIndex][VY], - vertices[vIndex3][VZ] - vertices[vIndex][VZ], lightTriangleNorm); -// float nmag = mag(norm[X], norm[Y], norm[Z]); -// if (nmag != 0 && nmag != 1) { -// norm[X] /= nmag; norm[Y] /= nmag; norm[Z] /= nmag; -// } - lightTriangleNorm.normalize(); - vertices[vIndex][NX] = lightTriangleNorm.x; - vertices[vIndex][NY] = lightTriangleNorm.y; - vertices[vIndex][NZ] = lightTriangleNorm.z; - // The true at the end says the normal is already in world coordinates - calcLightingContribution(vIndex, tempLightingContribution, true); - copyVertexColor(triIndex, vIndex, 0, tempLightingContribution); - - vertices[vIndex2][NX] = lightTriangleNorm.x; - vertices[vIndex2][NY] = lightTriangleNorm.y; - vertices[vIndex2][NZ] = lightTriangleNorm.z; - // The true at the end says the normal is already in world coordinates - calcLightingContribution(vIndex2, tempLightingContribution, true); - copyVertexColor(triIndex, vIndex2, 1, tempLightingContribution); - - vertices[vIndex3][NX] = lightTriangleNorm.x; - vertices[vIndex3][NY] = lightTriangleNorm.y; - vertices[vIndex3][NZ] = lightTriangleNorm.z; - // The true at the end says the normal is already in world coordinates - calcLightingContribution(vIndex3, tempLightingContribution, true); - copyVertexColor(triIndex, vIndex3, 2, tempLightingContribution); - } - } - } - - - protected void renderTriangles(int start, int stop) { - for (int i = start; i < stop; i++) { - float a[] = vertices[triangles[i][VERTEX1]]; - float b[] = vertices[triangles[i][VERTEX2]]; - float c[] = vertices[triangles[i][VERTEX3]]; - int tex = triangles[i][TEXTURE_INDEX]; - - /* - // removing for 0149 with the return of P2D - // ewjordan: hack to 'fix' accuracy issues when drawing in 2d - // see also render_lines() where similar hack is employed - float shift = 0.15f;//was 0.49f - boolean shifted = false; - if (drawing2D() && (a[Z] == 0)) { - shifted = true; - a[TX] += shift; - a[TY] += shift; - a[VX] += shift*a[VW]; - a[VY] += shift*a[VW]; - b[TX] += shift; - b[TY] += shift; - b[VX] += shift*b[VW]; - b[VY] += shift*b[VW]; - c[TX] += shift; - c[TY] += shift; - c[VX] += shift*c[VW]; - c[VY] += shift*c[VW]; - } - */ - - triangle.reset(); - - // This is only true when not textured. - // We really should pass specular straight through to triangle rendering. - float ar = clamp(triangleColors[i][0][TRI_DIFFUSE_R] + triangleColors[i][0][TRI_SPECULAR_R]); - float ag = clamp(triangleColors[i][0][TRI_DIFFUSE_G] + triangleColors[i][0][TRI_SPECULAR_G]); - float ab = clamp(triangleColors[i][0][TRI_DIFFUSE_B] + triangleColors[i][0][TRI_SPECULAR_B]); - float br = clamp(triangleColors[i][1][TRI_DIFFUSE_R] + triangleColors[i][1][TRI_SPECULAR_R]); - float bg = clamp(triangleColors[i][1][TRI_DIFFUSE_G] + triangleColors[i][1][TRI_SPECULAR_G]); - float bb = clamp(triangleColors[i][1][TRI_DIFFUSE_B] + triangleColors[i][1][TRI_SPECULAR_B]); - float cr = clamp(triangleColors[i][2][TRI_DIFFUSE_R] + triangleColors[i][2][TRI_SPECULAR_R]); - float cg = clamp(triangleColors[i][2][TRI_DIFFUSE_G] + triangleColors[i][2][TRI_SPECULAR_G]); - float cb = clamp(triangleColors[i][2][TRI_DIFFUSE_B] + triangleColors[i][2][TRI_SPECULAR_B]); - - // ACCURATE TEXTURE CODE - boolean failedToPrecalc = false; - if (s_enableAccurateTextures && frustumMode){ - boolean textured = true; - smoothTriangle.reset(3); - smoothTriangle.smooth = true; - smoothTriangle.interpARGB = true; - smoothTriangle.setIntensities(ar, ag, ab, a[A], - br, bg, bb, b[A], - cr, cg, cb, c[A]); - if (tex > -1 && textures[tex] != null) { - smoothTriangle.setCamVertices(a[VX], a[VY], a[VZ], - b[VX], b[VY], b[VZ], - c[VX], c[VY], c[VZ]); - smoothTriangle.interpUV = true; - smoothTriangle.texture(textures[tex]); - float umult = textures[tex].width; // apparently no check for textureMode is needed here - float vmult = textures[tex].height; - smoothTriangle.vertices[0][U] = a[U]*umult; - smoothTriangle.vertices[0][V] = a[V]*vmult; - smoothTriangle.vertices[1][U] = b[U]*umult; - smoothTriangle.vertices[1][V] = b[V]*vmult; - smoothTriangle.vertices[2][U] = c[U]*umult; - smoothTriangle.vertices[2][V] = c[V]*vmult; - } else { - smoothTriangle.interpUV = false; - textured = false; - } - - smoothTriangle.setVertices(a[TX], a[TY], a[TZ], - b[TX], b[TY], b[TZ], - c[TX], c[TY], c[TZ]); - - - if (!textured || smoothTriangle.precomputeAccurateTexturing()){ - smoothTriangle.render(); - } else { - // Something went wrong with the precomputation, - // so we need to fall back on normal PTriangle - // rendering. - failedToPrecalc = true; - } - } - - // Normal triangle rendering - // Note: this is not an end-if from the smoothed texturing mode - // because it's possible that the precalculation will fail and we - // need to fall back on normal rendering. - if (!s_enableAccurateTextures || failedToPrecalc || (frustumMode == false)){ - if (tex > -1 && textures[tex] != null) { - triangle.setTexture(textures[tex]); - triangle.setUV(a[U], a[V], b[U], b[V], c[U], c[V]); - } - - triangle.setIntensities(ar, ag, ab, a[A], - br, bg, bb, b[A], - cr, cg, cb, c[A]); - - triangle.setVertices(a[TX], a[TY], a[TZ], - b[TX], b[TY], b[TZ], - c[TX], c[TY], c[TZ]); - - triangle.render(); - } - - /* - // removing for 0149 with the return of P2D - if (drawing2D() && shifted){ - a[TX] -= shift; - a[TY] -= shift; - a[VX] -= shift*a[VW]; - a[VY] -= shift*a[VW]; - b[TX] -= shift; - b[TY] -= shift; - b[VX] -= shift*b[VW]; - b[VY] -= shift*b[VW]; - c[TX] -= shift; - c[TY] -= shift; - c[VX] -= shift*c[VW]; - c[VY] -= shift*c[VW]; - } - */ - } - } - - - protected void rawTriangles(int start, int stop) { - raw.colorMode(RGB, 1); - raw.noStroke(); - raw.beginShape(TRIANGLES); - - for (int i = start; i < stop; i++) { - float a[] = vertices[triangles[i][VERTEX1]]; - float b[] = vertices[triangles[i][VERTEX2]]; - float c[] = vertices[triangles[i][VERTEX3]]; - - float ar = clamp(triangleColors[i][0][TRI_DIFFUSE_R] + triangleColors[i][0][TRI_SPECULAR_R]); - float ag = clamp(triangleColors[i][0][TRI_DIFFUSE_G] + triangleColors[i][0][TRI_SPECULAR_G]); - float ab = clamp(triangleColors[i][0][TRI_DIFFUSE_B] + triangleColors[i][0][TRI_SPECULAR_B]); - float br = clamp(triangleColors[i][1][TRI_DIFFUSE_R] + triangleColors[i][1][TRI_SPECULAR_R]); - float bg = clamp(triangleColors[i][1][TRI_DIFFUSE_G] + triangleColors[i][1][TRI_SPECULAR_G]); - float bb = clamp(triangleColors[i][1][TRI_DIFFUSE_B] + triangleColors[i][1][TRI_SPECULAR_B]); - float cr = clamp(triangleColors[i][2][TRI_DIFFUSE_R] + triangleColors[i][2][TRI_SPECULAR_R]); - float cg = clamp(triangleColors[i][2][TRI_DIFFUSE_G] + triangleColors[i][2][TRI_SPECULAR_G]); - float cb = clamp(triangleColors[i][2][TRI_DIFFUSE_B] + triangleColors[i][2][TRI_SPECULAR_B]); - - int tex = triangles[i][TEXTURE_INDEX]; - PImage texImage = (tex > -1) ? textures[tex] : null; - if (texImage != null) { - if (raw.is3D()) { - if ((a[VW] != 0) && (b[VW] != 0) && (c[VW] != 0)) { - raw.fill(ar, ag, ab, a[A]); - raw.vertex(a[VX] / a[VW], a[VY] / a[VW], a[VZ] / a[VW], a[U], a[V]); - raw.fill(br, bg, bb, b[A]); - raw.vertex(b[VX] / b[VW], b[VY] / b[VW], b[VZ] / b[VW], b[U], b[V]); - raw.fill(cr, cg, cb, c[A]); - raw.vertex(c[VX] / c[VW], c[VY] / c[VW], c[VZ] / c[VW], c[U], c[V]); - } - } else if (raw.is2D()) { - raw.fill(ar, ag, ab, a[A]); - raw.vertex(a[TX], a[TY], a[U], a[V]); - raw.fill(br, bg, bb, b[A]); - raw.vertex(b[TX], b[TY], b[U], b[V]); - raw.fill(cr, cg, cb, c[A]); - raw.vertex(c[TX], c[TY], c[U], c[V]); - } - } else { // no texture - if (raw.is3D()) { - if ((a[VW] != 0) && (b[VW] != 0) && (c[VW] != 0)) { - raw.fill(ar, ag, ab, a[A]); - raw.vertex(a[VX] / a[VW], a[VY] / a[VW], a[VZ] / a[VW]); - raw.fill(br, bg, bb, b[A]); - raw.vertex(b[VX] / b[VW], b[VY] / b[VW], b[VZ] / b[VW]); - raw.fill(cr, cg, cb, c[A]); - raw.vertex(c[VX] / c[VW], c[VY] / c[VW], c[VZ] / c[VW]); - } - } else if (raw.is2D()) { - raw.fill(ar, ag, ab, a[A]); - raw.vertex(a[TX], a[TY]); - raw.fill(br, bg, bb, b[A]); - raw.vertex(b[TX], b[TY]); - raw.fill(cr, cg, cb, c[A]); - raw.vertex(c[TX], c[TY]); - } - } - } - - raw.endShape(); - } - - - ////////////////////////////////////////////////////////////// - - - //public void bezierVertex(float x2, float y2, - // float x3, float y3, - // float x4, float y4) - - - //public void bezierVertex(float x2, float y2, float z2, - // float x3, float y3, float z3, - // float x4, float y4, float z4) - - - - ////////////////////////////////////////////////////////////// - - - //public void curveVertex(float x, float y) - - - //public void curveVertex(float x, float y, float z) - - - - //////////////////////////////////////////////////////////// - - - /** - * Emit any sorted geometry that's been collected on this frame. - */ - public void flush() { - if (hints[ENABLE_DEPTH_SORT]) { - sort(); - } - render(); - - /* - if (triangleCount > 0) { - if (hints[ENABLE_DEPTH_SORT]) { - sortTriangles(); - } - renderTriangles(); - } - if (lineCount > 0) { - if (hints[ENABLE_DEPTH_SORT]) { - sortLines(); - } - renderLines(); - } - // Clear this out in case flush() is called again. - // For instance, with hint(ENABLE_DEPTH_SORT), it will be called - // once on endRaw(), and once again at endDraw(). - triangleCount = 0; - lineCount = 0; - */ - } - - - protected void render() { - if (pointCount > 0) { - renderPoints(0, pointCount); - if (raw != null) { - rawPoints(0, pointCount); - } - pointCount = 0; - } - if (lineCount > 0) { - renderLines(0, lineCount); - if (raw != null) { - rawLines(0, lineCount); - } - lineCount = 0; - pathCount = 0; - } - if (triangleCount > 0) { - renderTriangles(0, triangleCount); - if (raw != null) { - rawTriangles(0, triangleCount); - } - triangleCount = 0; - } - } - - - /** - * Handle depth sorting of geometry. Currently this only handles triangles, - * however in the future it will be expanded for points and lines, which - * will also need to be interspersed with one another while rendering. - */ - protected void sort() { - if (triangleCount > 0) { - sortTrianglesInternal(0, triangleCount-1); - } - } - - - private void sortTrianglesInternal(int i, int j) { - int pivotIndex = (i+j)/2; - sortTrianglesSwap(pivotIndex, j); - int k = sortTrianglesPartition(i-1, j); - sortTrianglesSwap(k, j); - if ((k-i) > 1) sortTrianglesInternal(i, k-1); - if ((j-k) > 1) sortTrianglesInternal(k+1, j); - } - - - private int sortTrianglesPartition(int left, int right) { - int pivot = right; - do { - while (sortTrianglesCompare(++left, pivot) < 0) { } - while ((right != 0) && - (sortTrianglesCompare(--right, pivot) > 0)) { } - sortTrianglesSwap(left, right); - } while (left < right); - sortTrianglesSwap(left, right); - return left; - } - - - private void sortTrianglesSwap(int a, int b) { - int tempi[] = triangles[a]; - triangles[a] = triangles[b]; - triangles[b] = tempi; - float tempf[][] = triangleColors[a]; - triangleColors[a] = triangleColors[b]; - triangleColors[b] = tempf; - } - - - private float sortTrianglesCompare(int a, int b) { - /* - if (Float.isNaN(vertices[triangles[a][VERTEX1]][TZ]) || - Float.isNaN(vertices[triangles[a][VERTEX2]][TZ]) || - Float.isNaN(vertices[triangles[a][VERTEX3]][TZ]) || - Float.isNaN(vertices[triangles[b][VERTEX1]][TZ]) || - Float.isNaN(vertices[triangles[b][VERTEX2]][TZ]) || - Float.isNaN(vertices[triangles[b][VERTEX3]][TZ])) { - System.err.println("NaN values in triangle"); - } - */ - return ((vertices[triangles[b][VERTEX1]][TZ] + - vertices[triangles[b][VERTEX2]][TZ] + - vertices[triangles[b][VERTEX3]][TZ]) - - (vertices[triangles[a][VERTEX1]][TZ] + - vertices[triangles[a][VERTEX2]][TZ] + - vertices[triangles[a][VERTEX3]][TZ])); - } - - - - ////////////////////////////////////////////////////////////// - - // POINT, LINE, TRIANGLE, QUAD - - // Because vertex(x, y) is mapped to vertex(x, y, 0), none of these commands - // need to be overridden from their default implementation in PGraphics. - - - //public void point(float x, float y) - - - //public void point(float x, float y, float z) - - - //public void line(float x1, float y1, float x2, float y2) - - - //public void line(float x1, float y1, float z1, - // float x2, float y2, float z2) - - - //public void triangle(float x1, float y1, float x2, float y2, - // float x3, float y3) - - - //public void quad(float x1, float y1, float x2, float y2, - // float x3, float y3, float x4, float y4) - - - - ////////////////////////////////////////////////////////////// - - // RECT - - - //public void rectMode(int mode) - - - //public void rect(float a, float b, float c, float d) - - - //protected void rectImpl(float x1, float y1, float x2, float y2) - - - - ////////////////////////////////////////////////////////////// - - // ELLIPSE - - - //public void ellipseMode(int mode) - - - //public void ellipse(float a, float b, float c, float d) - - - protected void ellipseImpl(float x, float y, float w, float h) { - float radiusH = w / 2; - float radiusV = h / 2; - - float centerX = x + radiusH; - float centerY = y + radiusV; - -// float sx1 = screenX(x, y); -// float sy1 = screenY(x, y); -// float sx2 = screenX(x+w, y+h); -// float sy2 = screenY(x+w, y+h); - - // returning to pre-1.0 version of algorithm because of problems - int rough = (int)(4+Math.sqrt(w+h)*3); - int accuracy = PApplet.constrain(rough, 6, 100); - - if (fill) { - // returning to pre-1.0 version of algorithm because of problems -// int rough = (int)(4+Math.sqrt(w+h)*3); -// int rough = (int) (TWO_PI * PApplet.dist(sx1, sy1, sx2, sy2) / 20); -// int accuracy = PApplet.constrain(rough, 6, 100); - - float inc = (float)SINCOS_LENGTH / accuracy; - float val = 0; - - boolean strokeSaved = stroke; - stroke = false; - boolean smoothSaved = smooth; - if (smooth && stroke) { - smooth = false; - } - - beginShape(TRIANGLE_FAN); - normal(0, 0, 1); - vertex(centerX, centerY); - for (int i = 0; i < accuracy; i++) { - vertex(centerX + cosLUT[(int) val] * radiusH, - centerY + sinLUT[(int) val] * radiusV); - val = (val + inc) % SINCOS_LENGTH; - } - // back to the beginning - vertex(centerX + cosLUT[0] * radiusH, - centerY + sinLUT[0] * radiusV); - endShape(); - - stroke = strokeSaved; - smooth = smoothSaved; - } - - if (stroke) { -// int rough = (int) (TWO_PI * PApplet.dist(sx1, sy1, sx2, sy2) / 8); -// int accuracy = PApplet.constrain(rough, 6, 100); - - float inc = (float)SINCOS_LENGTH / accuracy; - float val = 0; - - boolean savedFill = fill; - fill = false; - - val = 0; - beginShape(); - for (int i = 0; i < accuracy; i++) { - vertex(centerX + cosLUT[(int) val] * radiusH, - centerY + sinLUT[(int) val] * radiusV); - val = (val + inc) % SINCOS_LENGTH; - } - endShape(CLOSE); - - fill = savedFill; - } - } - - - //public void arc(float a, float b, float c, float d, - // float start, float stop) - - - protected void arcImpl(float x, float y, float w, float h, - float start, float stop) { - float hr = w / 2f; - float vr = h / 2f; - - float centerX = x + hr; - float centerY = y + vr; - - if (fill) { - // shut off stroke for a minute - boolean savedStroke = stroke; - stroke = false; - - int startLUT = (int) (0.5f + (start / TWO_PI) * SINCOS_LENGTH); - int stopLUT = (int) (0.5f + (stop / TWO_PI) * SINCOS_LENGTH); - - beginShape(TRIANGLE_FAN); - vertex(centerX, centerY); - int increment = 1; // what's a good algorithm? stopLUT - startLUT; - for (int i = startLUT; i < stopLUT; i += increment) { - int ii = i % SINCOS_LENGTH; - // modulo won't make the value positive - if (ii < 0) ii += SINCOS_LENGTH; - vertex(centerX + cosLUT[ii] * hr, - centerY + sinLUT[ii] * vr); - } - // draw last point explicitly for accuracy - vertex(centerX + cosLUT[stopLUT % SINCOS_LENGTH] * hr, - centerY + sinLUT[stopLUT % SINCOS_LENGTH] * vr); - endShape(); - - stroke = savedStroke; - } - - if (stroke) { - // Almost identical to above, but this uses a LINE_STRIP - // and doesn't include the first (center) vertex. - - boolean savedFill = fill; - fill = false; - - int startLUT = (int) (0.5f + (start / TWO_PI) * SINCOS_LENGTH); - int stopLUT = (int) (0.5f + (stop / TWO_PI) * SINCOS_LENGTH); - - beginShape(); //LINE_STRIP); - int increment = 1; // what's a good algorithm? stopLUT - startLUT; - for (int i = startLUT; i < stopLUT; i += increment) { - int ii = i % SINCOS_LENGTH; - if (ii < 0) ii += SINCOS_LENGTH; - vertex(centerX + cosLUT[ii] * hr, - centerY + sinLUT[ii] * vr); - } - // draw last point explicitly for accuracy - vertex(centerX + cosLUT[stopLUT % SINCOS_LENGTH] * hr, - centerY + sinLUT[stopLUT % SINCOS_LENGTH] * vr); - endShape(); - - fill = savedFill; - } - } - - - - ////////////////////////////////////////////////////////////// - - // BOX - - - //public void box(float size) - - - public void box(float w, float h, float d) { - if (triangle != null) { // triangle is null in gl - triangle.setCulling(true); - } - - super.box(w, h, d); - - if (triangle != null) { // triangle is null in gl - triangle.setCulling(false); - } - } - - - - ////////////////////////////////////////////////////////////// - - // SPHERE - - - //public void sphereDetail(int res) - - - //public void sphereDetail(int ures, int vres) - - - public void sphere(float r) { - if (triangle != null) { // triangle is null in gl - triangle.setCulling(true); - } - - super.sphere(r); - - if (triangle != null) { // triangle is null in gl - triangle.setCulling(false); - } - } - - - - ////////////////////////////////////////////////////////////// - - // BEZIER - - - //public float bezierPoint(float a, float b, float c, float d, float t) - - - //public float bezierTangent(float a, float b, float c, float d, float t) - - - //public void bezierDetail(int detail) - - - //public void bezier(float x1, float y1, - // float x2, float y2, - // float x3, float y3, - // float x4, float y4) - - - //public void bezier(float x1, float y1, float z1, - // float x2, float y2, float z2, - // float x3, float y3, float z3, - // float x4, float y4, float z4) - - - - ////////////////////////////////////////////////////////////// - - // CATMULL-ROM CURVES - - - //public float curvePoint(float a, float b, float c, float d, float t) - - - //public float curveTangent(float a, float b, float c, float d, float t) - - - //public void curveDetail(int detail) - - - //public void curveTightness(float tightness) - - - //public void curve(float x1, float y1, - // float x2, float y2, - // float x3, float y3, - // float x4, float y4) - - - //public void curve(float x1, float y1, float z1, - // float x2, float y2, float z2, - // float x3, float y3, float z3, - // float x4, float y4, float z4) - - - - ////////////////////////////////////////////////////////////// - - // SMOOTH - - - public void smooth() { - //showMethodWarning("smooth"); - s_enableAccurateTextures = true; - smooth = true; - } - - - public void noSmooth() { - s_enableAccurateTextures = false; - smooth = false; - } - - - - ////////////////////////////////////////////////////////////// - - // IMAGES - - - //public void imageMode(int mode) - - - //public void image(PImage image, float x, float y) - - - //public void image(PImage image, float x, float y, float c, float d) - - - //public void image(PImage image, - // float a, float b, float c, float d, - // int u1, int v1, int u2, int v2) - - - //protected void imageImpl(PImage image, - // float x1, float y1, float x2, float y2, - // int u1, int v1, int u2, int v2) - - - - ////////////////////////////////////////////////////////////// - - // SHAPE - - - //public void shapeMode(int mode) - - - //public void shape(PShape shape) - - - //public void shape(PShape shape, float x, float y) - - - //public void shape(PShape shape, float x, float y, float c, float d) - - - - ////////////////////////////////////////////////////////////// - - // TEXT SETTINGS - - // Only textModeCheck overridden from PGraphics, no textAlign, textAscent, - // textDescent, textFont, textLeading, textMode, textSize, textWidth - - - protected boolean textModeCheck(int mode) { - return (textMode == MODEL) || (textMode == SCREEN); - } - - - - ////////////////////////////////////////////////////////////// - - // TEXT - - // None of the variations of text() are overridden from PGraphics. - - - - ////////////////////////////////////////////////////////////// - - // TEXT IMPL - - // Not even the text drawing implementation stuff is overridden. - - - - ////////////////////////////////////////////////////////////// - - // MATRIX STACK - - - public void pushMatrix() { - if (matrixStackDepth == MATRIX_STACK_DEPTH) { - throw new RuntimeException(ERROR_PUSHMATRIX_OVERFLOW); - } - modelview.get(matrixStack[matrixStackDepth]); - modelviewInv.get(matrixInvStack[matrixStackDepth]); - matrixStackDepth++; - } - - - public void popMatrix() { - if (matrixStackDepth == 0) { - throw new RuntimeException(ERROR_PUSHMATRIX_UNDERFLOW); - } - matrixStackDepth--; - modelview.set(matrixStack[matrixStackDepth]); - modelviewInv.set(matrixInvStack[matrixStackDepth]); - } - - - - ////////////////////////////////////////////////////////////// - - // MATRIX TRANSFORMATIONS - - - public void translate(float tx, float ty) { - translate(tx, ty, 0); - } - - - public void translate(float tx, float ty, float tz) { - forwardTransform.translate(tx, ty, tz); - reverseTransform.invTranslate(tx, ty, tz); - } - - - /** - * Two dimensional rotation. Same as rotateZ (this is identical - * to a 3D rotation along the z-axis) but included for clarity -- - * it'd be weird for people drawing 2D graphics to be using rotateZ. - * And they might kick our a-- for the confusion. - */ - public void rotate(float angle) { - rotateZ(angle); - } - - - public void rotateX(float angle) { - forwardTransform.rotateX(angle); - reverseTransform.invRotateX(angle); - } - - - public void rotateY(float angle) { - forwardTransform.rotateY(angle); - reverseTransform.invRotateY(angle); - } - - - public void rotateZ(float angle) { - forwardTransform.rotateZ(angle); - reverseTransform.invRotateZ(angle); - } - - - /** - * Rotate around an arbitrary vector, similar to glRotate(), - * except that it takes radians (instead of degrees). - */ - public void rotate(float angle, float v0, float v1, float v2) { - forwardTransform.rotate(angle, v0, v1, v2); - reverseTransform.invRotate(angle, v0, v1, v2); - } - - - /** - * Same as scale(s, s, s). - */ - public void scale(float s) { - scale(s, s, s); - } - - - /** - * Same as scale(sx, sy, 1). - */ - public void scale(float sx, float sy) { - scale(sx, sy, 1); - } - - - /** - * Scale in three dimensions. - */ - public void scale(float x, float y, float z) { - forwardTransform.scale(x, y, z); - reverseTransform.invScale(x, y, z); - } - - - - ////////////////////////////////////////////////////////////// - - // MATRIX MORE! - - - public void resetMatrix() { - forwardTransform.reset(); - reverseTransform.reset(); - } - - - public void applyMatrix(PMatrix2D source) { - applyMatrix(source.m00, source.m01, source.m02, - source.m10, source.m11, source.m12); - } - - - public void applyMatrix(float n00, float n01, float n02, - float n10, float n11, float n12) { - applyMatrix(n00, n01, n02, 0, - n10, n11, n12, 0, - 0, 0, 1, 0, - 0, 0, 0, 1); - } - - - public void applyMatrix(PMatrix3D source) { - applyMatrix(source.m00, source.m01, source.m02, source.m03, - source.m10, source.m11, source.m12, source.m13, - source.m20, source.m21, source.m22, source.m23, - source.m30, source.m31, source.m32, source.m33); - } - - - /** - * Apply a 4x4 transformation matrix. Same as glMultMatrix(). - * This call will be slow because it will try to calculate the - * inverse of the transform. So avoid it whenever possible. - */ - public void applyMatrix(float n00, float n01, float n02, float n03, - float n10, float n11, float n12, float n13, - float n20, float n21, float n22, float n23, - float n30, float n31, float n32, float n33) { - - forwardTransform.apply(n00, n01, n02, n03, - n10, n11, n12, n13, - n20, n21, n22, n23, - n30, n31, n32, n33); - - reverseTransform.invApply(n00, n01, n02, n03, - n10, n11, n12, n13, - n20, n21, n22, n23, - n30, n31, n32, n33); - } - - - - ////////////////////////////////////////////////////////////// - - // MATRIX GET/SET/PRINT - - - public PMatrix getMatrix() { - return modelview.get(); - } - - - //public PMatrix2D getMatrix(PMatrix2D target) - - - public PMatrix3D getMatrix(PMatrix3D target) { - if (target == null) { - target = new PMatrix3D(); - } - target.set(modelview); - return target; - } - - - //public void setMatrix(PMatrix source) - - - public void setMatrix(PMatrix2D source) { - // not efficient, but at least handles the inverse stuff. - resetMatrix(); - applyMatrix(source); - } - - - /** - * Set the current transformation to the contents of the specified source. - */ - public void setMatrix(PMatrix3D source) { - // not efficient, but at least handles the inverse stuff. - resetMatrix(); - applyMatrix(source); - } - - - /** - * Print the current model (or "transformation") matrix. - */ - public void printMatrix() { - modelview.print(); - } - - - /* - * This function checks if the modelview matrix is set up to likely be - * drawing in 2D. It merely checks if the non-translational piece of the - * matrix is unity. If this is to be used, it should be coupled with a - * check that the raw vertex coordinates lie in the z=0 plane. - * Mainly useful for applying sub-pixel shifts to avoid 2d artifacts - * in the screen plane. - * Added by ewjordan 6/13/07 - * - * TODO need to invert the logic here so that we can simply return - * the value, rather than calculating true/false and returning it. - */ - /* - private boolean drawing2D() { - if (modelview.m00 != 1.0f || - modelview.m11 != 1.0f || - modelview.m22 != 1.0f || // check scale - modelview.m01 != 0.0f || - modelview.m02 != 0.0f || // check rotational pieces - modelview.m10 != 0.0f || - modelview.m12 != 0.0f || - modelview.m20 != 0.0f || - modelview.m21 != 0.0f || - !((camera.m23-modelview.m23) <= EPSILON && - (camera.m23-modelview.m23) >= -EPSILON)) { // check for z-translation - // Something about the modelview matrix indicates 3d drawing - // (or rotated 2d, in which case 2d subpixel fixes probably aren't needed) - return false; - } else { - //The matrix is mapping z=0 vertices to the screen plane, - // which means it's likely that 2D drawing is happening. - return true; - } - } - */ - - - - ////////////////////////////////////////////////////////////// - - // CAMERA - - - /** - * Set matrix mode to the camera matrix (instead of the current - * transformation matrix). This means applyMatrix, resetMatrix, etc. - * will affect the camera. - *

    - * Note that the camera matrix is *not* the perspective matrix, - * it is in front of the modelview matrix (hence the name "model" - * and "view" for that matrix). - *

    - * beginCamera() specifies that all coordinate transforms until endCamera() - * should be pre-applied in inverse to the camera transform matrix. - * Note that this is only challenging when a user specifies an arbitrary - * matrix with applyMatrix(). Then that matrix will need to be inverted, - * which may not be possible. But take heart, if a user is applying a - * non-invertible matrix to the camera transform, then he is clearly - * up to no good, and we can wash our hands of those bad intentions. - *

    - * begin/endCamera clauses do not automatically reset the camera transform - * matrix. That's because we set up a nice default camera transform int - * setup(), and we expect it to hold through draw(). So we don't reset - * the camera transform matrix at the top of draw(). That means that an - * innocuous-looking clause like - *

    -   * beginCamera();
    -   * translate(0, 0, 10);
    -   * endCamera();
    -   * 
    - * at the top of draw(), will result in a runaway camera that shoots - * infinitely out of the screen over time. In order to prevent this, - * it is necessary to call some function that does a hard reset of the - * camera transform matrix inside of begin/endCamera. Two options are - *
    -   * camera(); // sets up the nice default camera transform
    -   * resetMatrix(); // sets up the identity camera transform
    -   * 
    - * So to rotate a camera a constant amount, you might try - *
    -   * beginCamera();
    -   * camera();
    -   * rotateY(PI/8);
    -   * endCamera();
    -   * 
    - */ - public void beginCamera() { - if (manipulatingCamera) { - throw new RuntimeException("beginCamera() cannot be called again " + - "before endCamera()"); - } else { - manipulatingCamera = true; - forwardTransform = cameraInv; - reverseTransform = camera; - } - } - - - /** - * Record the current settings into the camera matrix, and set - * the matrix mode back to the current transformation matrix. - *

    - * Note that this will destroy any settings to scale(), translate(), - * or whatever, because the final camera matrix will be copied - * (not multiplied) into the modelview. - */ - public void endCamera() { - if (!manipulatingCamera) { - throw new RuntimeException("Cannot call endCamera() " + - "without first calling beginCamera()"); - } - // reset the modelview to use this new camera matrix - modelview.set(camera); - modelviewInv.set(cameraInv); - - // set matrix mode back to modelview - forwardTransform = modelview; - reverseTransform = modelviewInv; - - // all done - manipulatingCamera = false; - } - - - /** - * Set camera to the default settings. - *

    - * Processing camera behavior: - *

    - * Camera behavior can be split into two separate components, camera - * transformation, and projection. The transformation corresponds to the - * physical location, orientation, and scale of the camera. In a physical - * camera metaphor, this is what can manipulated by handling the camera - * body (with the exception of scale, which doesn't really have a physcial - * analog). The projection corresponds to what can be changed by - * manipulating the lens. - *

    - * We maintain separate matrices to represent the camera transform and - * projection. An important distinction between the two is that the camera - * transform should be invertible, where the projection matrix should not, - * since it serves to map three dimensions to two. It is possible to bake - * the two matrices into a single one just by multiplying them together, - * but it isn't a good idea, since lighting, z-ordering, and z-buffering - * all demand a true camera z coordinate after modelview and camera - * transforms have been applied but before projection. If the camera - * transform and projection are combined there is no way to recover a - * good camera-space z-coordinate from a model coordinate. - *

    - * Fortunately, there are no functions that manipulate both camera - * transformation and projection. - *

    - * camera() sets the camera position, orientation, and center of the scene. - * It replaces the camera transform with a new one. This is different from - * gluLookAt(), but I think the only reason that GLU's lookat doesn't fully - * replace the camera matrix with the new one, but instead multiplies it, - * is that GL doesn't enforce the separation of camera transform and - * projection, so it wouldn't be safe (you'd probably stomp your projection). - *

    - * The transformation functions are the same ones used to manipulate the - * modelview matrix (scale, translate, rotate, etc.). But they are bracketed - * with beginCamera(), endCamera() to indicate that they should apply - * (in inverse), to the camera transformation matrix. - *

    - * This differs considerably from camera transformation in OpenGL. - * OpenGL only lets you say, apply everything from here out to the - * projection or modelview matrix. This makes it very hard to treat camera - * manipulation as if it were a physical camera. Imagine that you want to - * move your camera 100 units forward. In OpenGL, you need to apply the - * inverse of that transformation or else you'll move your scene 100 units - * forward--whether or not you've specified modelview or projection matrix. - * Remember they're just multiplied by model coods one after another. - * So in order to treat a camera like a physical camera, it is necessary - * to pre-apply inverse transforms to a matrix that will be applied to model - * coordinates. OpenGL provides nothing of this sort, but Processing does! - * This is the camera transform matrix. - */ - public void camera() { - camera(cameraX, cameraY, cameraZ, - cameraX, cameraY, 0, - 0, 1, 0); - } - - - /** - * More flexible method for dealing with camera(). - *

    - * The actual call is like gluLookat. Here's the real skinny on - * what does what: - *

    -   * camera(); or
    -   * camera(ex, ey, ez, cx, cy, cz, ux, uy, uz);
    -   * 
    - * do not need to be called from with beginCamera();/endCamera(); - * That's because they always apply to the camera transformation, - * and they always totally replace it. That means that any coordinate - * transforms done before camera(); in draw() will be wiped out. - * It also means that camera() always operates in untransformed world - * coordinates. Therefore it is always redundant to call resetMatrix(); - * before camera(); This isn't technically true of gluLookat, but it's - * pretty much how it's used. - *

    - * Now, beginCamera(); and endCamera(); are useful if you want to move - * the camera around using transforms like translate(), etc. They will - * wipe out any coordinate system transforms that occur before them in - * draw(), but they will not automatically wipe out the camera transform. - * This means that they should be at the top of draw(). It also means - * that the following: - *

    -   * beginCamera();
    -   * rotateY(PI/8);
    -   * endCamera();
    -   * 
    - * will result in a camera that spins without stopping. If you want to - * just rotate a small constant amount, try this: - *
    -   * beginCamera();
    -   * camera(); // sets up the default view
    -   * rotateY(PI/8);
    -   * endCamera();
    -   * 
    - * That will rotate a little off of the default view. Note that this - * is entirely equivalent to - *
    -   * camera(); // sets up the default view
    -   * beginCamera();
    -   * rotateY(PI/8);
    -   * endCamera();
    -   * 
    - * because camera() doesn't care whether or not it's inside a - * begin/end clause. Basically it's safe to use camera() or - * camera(ex, ey, ez, cx, cy, cz, ux, uy, uz) as naked calls because - * they do all the matrix resetting automatically. - */ - public void camera(float eyeX, float eyeY, float eyeZ, - float centerX, float centerY, float centerZ, - float upX, float upY, float upZ) { - float z0 = eyeX - centerX; - float z1 = eyeY - centerY; - float z2 = eyeZ - centerZ; - float mag = sqrt(z0*z0 + z1*z1 + z2*z2); - - if (mag != 0) { - z0 /= mag; - z1 /= mag; - z2 /= mag; - } - - float y0 = upX; - float y1 = upY; - float y2 = upZ; - - float x0 = y1*z2 - y2*z1; - float x1 = -y0*z2 + y2*z0; - float x2 = y0*z1 - y1*z0; - - y0 = z1*x2 - z2*x1; - y1 = -z0*x2 + z2*x0; - y2 = z0*x1 - z1*x0; - - mag = sqrt(x0*x0 + x1*x1 + x2*x2); - if (mag != 0) { - x0 /= mag; - x1 /= mag; - x2 /= mag; - } - - mag = sqrt(y0*y0 + y1*y1 + y2*y2); - if (mag != 0) { - y0 /= mag; - y1 /= mag; - y2 /= mag; - } - - // just does an apply to the main matrix, - // since that'll be copied out on endCamera - camera.set(x0, x1, x2, 0, - y0, y1, y2, 0, - z0, z1, z2, 0, - 0, 0, 0, 1); - camera.translate(-eyeX, -eyeY, -eyeZ); - - cameraInv.reset(); - cameraInv.invApply(x0, x1, x2, 0, - y0, y1, y2, 0, - z0, z1, z2, 0, - 0, 0, 0, 1); - cameraInv.translate(eyeX, eyeY, eyeZ); - - modelview.set(camera); - modelviewInv.set(cameraInv); - } - - - /** - * Print the current camera matrix. - */ - public void printCamera() { - camera.print(); - } - - - ////////////////////////////////////////////////////////////// - - // PROJECTION - - - /** - * Calls ortho() with the proper parameters for Processing's - * standard orthographic projection. - */ - public void ortho() { - ortho(0, width, 0, height, -10, 10); - } - - - /** - * Similar to gluOrtho(), but wipes out the current projection matrix. - *

    - * Implementation partially based on Mesa's matrix.c. - */ - public void ortho(float left, float right, - float bottom, float top, - float near, float far) { - float x = 2.0f / (right - left); - float y = 2.0f / (top - bottom); - float z = -2.0f / (far - near); - - float tx = -(right + left) / (right - left); - float ty = -(top + bottom) / (top - bottom); - float tz = -(far + near) / (far - near); - - projection.set(x, 0, 0, tx, - 0, y, 0, ty, - 0, 0, z, tz, - 0, 0, 0, 1); - updateProjection(); - - frustumMode = false; - } - - - /** - * Calls perspective() with Processing's standard coordinate projection. - *

    - * Projection functions: - *

      - *
    • frustrum() - *
    • ortho() - *
    • perspective() - *
    - * Each of these three functions completely replaces the projection - * matrix with a new one. They can be called inside setup(), and their - * effects will be felt inside draw(). At the top of draw(), the projection - * matrix is not reset. Therefore the last projection function to be - * called always dominates. On resize, the default projection is always - * established, which has perspective. - *

    - * This behavior is pretty much familiar from OpenGL, except where - * functions replace matrices, rather than multiplying against the - * previous. - *

    - */ - public void perspective() { - perspective(cameraFOV, cameraAspect, cameraNear, cameraFar); - } - - - /** - * Similar to gluPerspective(). Implementation based on Mesa's glu.c - */ - public void perspective(float fov, float aspect, float zNear, float zFar) { - //float ymax = zNear * tan(fovy * PI / 360.0f); - float ymax = zNear * (float) Math.tan(fov / 2); - float ymin = -ymax; - - float xmin = ymin * aspect; - float xmax = ymax * aspect; - - frustum(xmin, xmax, ymin, ymax, zNear, zFar); - } - - - /** - * Same as glFrustum(), except that it wipes out (rather than - * multiplies against) the current perspective matrix. - *

    - * Implementation based on the explanation in the OpenGL blue book. - */ - public void frustum(float left, float right, float bottom, - float top, float znear, float zfar) { - - leftScreen = left; - rightScreen = right; - bottomScreen = bottom; - topScreen = top; - nearPlane = znear; - frustumMode = true; - - //System.out.println(projection); - projection.set((2*znear)/(right-left), 0, (right+left)/(right-left), 0, - 0, (2*znear)/(top-bottom), (top+bottom)/(top-bottom), 0, - 0, 0, -(zfar+znear)/(zfar-znear),-(2*zfar*znear)/(zfar-znear), - 0, 0, -1, 0); - updateProjection(); - } - - - /** Called after the 'projection' PMatrix3D has changed. */ - protected void updateProjection() { - } - - - /** - * Print the current projection matrix. - */ - public void printProjection() { - projection.print(); - } - - - - ////////////////////////////////////////////////////////////// - - // SCREEN AND MODEL COORDS - - - public float screenX(float x, float y) { - return screenX(x, y, 0); - } - - - public float screenY(float x, float y) { - return screenY(x, y, 0); - } - - - public float screenX(float x, float y, float z) { - float ax = - modelview.m00*x + modelview.m01*y + modelview.m02*z + modelview.m03; - float ay = - modelview.m10*x + modelview.m11*y + modelview.m12*z + modelview.m13; - float az = - modelview.m20*x + modelview.m21*y + modelview.m22*z + modelview.m23; - float aw = - modelview.m30*x + modelview.m31*y + modelview.m32*z + modelview.m33; - - float ox = - projection.m00*ax + projection.m01*ay + - projection.m02*az + projection.m03*aw; - float ow = - projection.m30*ax + projection.m31*ay + - projection.m32*az + projection.m33*aw; - - if (ow != 0) ox /= ow; - return width * (1 + ox) / 2.0f; - } - - - public float screenY(float x, float y, float z) { - float ax = - modelview.m00*x + modelview.m01*y + modelview.m02*z + modelview.m03; - float ay = - modelview.m10*x + modelview.m11*y + modelview.m12*z + modelview.m13; - float az = - modelview.m20*x + modelview.m21*y + modelview.m22*z + modelview.m23; - float aw = - modelview.m30*x + modelview.m31*y + modelview.m32*z + modelview.m33; - - float oy = - projection.m10*ax + projection.m11*ay + - projection.m12*az + projection.m13*aw; - float ow = - projection.m30*ax + projection.m31*ay + - projection.m32*az + projection.m33*aw; - - if (ow != 0) oy /= ow; - return height * (1 + oy) / 2.0f; - } - - - public float screenZ(float x, float y, float z) { - float ax = - modelview.m00*x + modelview.m01*y + modelview.m02*z + modelview.m03; - float ay = - modelview.m10*x + modelview.m11*y + modelview.m12*z + modelview.m13; - float az = - modelview.m20*x + modelview.m21*y + modelview.m22*z + modelview.m23; - float aw = - modelview.m30*x + modelview.m31*y + modelview.m32*z + modelview.m33; - - float oz = - projection.m20*ax + projection.m21*ay + - projection.m22*az + projection.m23*aw; - float ow = - projection.m30*ax + projection.m31*ay + - projection.m32*az + projection.m33*aw; - - if (ow != 0) oz /= ow; - return (oz + 1) / 2.0f; - } - - - public float modelX(float x, float y, float z) { - float ax = - modelview.m00*x + modelview.m01*y + modelview.m02*z + modelview.m03; - float ay = - modelview.m10*x + modelview.m11*y + modelview.m12*z + modelview.m13; - float az = - modelview.m20*x + modelview.m21*y + modelview.m22*z + modelview.m23; - float aw = - modelview.m30*x + modelview.m31*y + modelview.m32*z + modelview.m33; - - float ox = - cameraInv.m00*ax + cameraInv.m01*ay + - cameraInv.m02*az + cameraInv.m03*aw; - float ow = - cameraInv.m30*ax + cameraInv.m31*ay + - cameraInv.m32*az + cameraInv.m33*aw; - - return (ow != 0) ? ox / ow : ox; - } - - - public float modelY(float x, float y, float z) { - float ax = - modelview.m00*x + modelview.m01*y + modelview.m02*z + modelview.m03; - float ay = - modelview.m10*x + modelview.m11*y + modelview.m12*z + modelview.m13; - float az = - modelview.m20*x + modelview.m21*y + modelview.m22*z + modelview.m23; - float aw = - modelview.m30*x + modelview.m31*y + modelview.m32*z + modelview.m33; - - float oy = - cameraInv.m10*ax + cameraInv.m11*ay + - cameraInv.m12*az + cameraInv.m13*aw; - float ow = - cameraInv.m30*ax + cameraInv.m31*ay + - cameraInv.m32*az + cameraInv.m33*aw; - - return (ow != 0) ? oy / ow : oy; - } - - - public float modelZ(float x, float y, float z) { - float ax = - modelview.m00*x + modelview.m01*y + modelview.m02*z + modelview.m03; - float ay = - modelview.m10*x + modelview.m11*y + modelview.m12*z + modelview.m13; - float az = - modelview.m20*x + modelview.m21*y + modelview.m22*z + modelview.m23; - float aw = - modelview.m30*x + modelview.m31*y + modelview.m32*z + modelview.m33; - - float oz = - cameraInv.m20*ax + cameraInv.m21*ay + - cameraInv.m22*az + cameraInv.m23*aw; - float ow = - cameraInv.m30*ax + cameraInv.m31*ay + - cameraInv.m32*az + cameraInv.m33*aw; - - return (ow != 0) ? oz / ow : oz; - } - - - - ////////////////////////////////////////////////////////////// - - // STYLE - - // pushStyle(), popStyle(), style() and getStyle() inherited. - - - - ////////////////////////////////////////////////////////////// - - // STROKE CAP/JOIN/WEIGHT - - -// public void strokeWeight(float weight) { -// if (weight != DEFAULT_STROKE_WEIGHT) { -// showMethodWarning("strokeWeight"); -// } -// } - - - public void strokeJoin(int join) { - if (join != DEFAULT_STROKE_JOIN) { - showMethodWarning("strokeJoin"); - } - } - - - public void strokeCap(int cap) { - if (cap != DEFAULT_STROKE_CAP) { - showMethodWarning("strokeCap"); - } - } - - - - ////////////////////////////////////////////////////////////// - - // STROKE COLOR - - // All methods inherited from PGraphics. - - - - ////////////////////////////////////////////////////////////// - - // TINT COLOR - - // All methods inherited from PGraphics. - - - - ////////////////////////////////////////////////////////////// - - // FILL COLOR - - - protected void fillFromCalc() { - super.fillFromCalc(); - ambientFromCalc(); - } - - - - ////////////////////////////////////////////////////////////// - - // MATERIAL PROPERTIES - - // ambient, specular, shininess, and emissive all inherited. - - - - ////////////////////////////////////////////////////////////// - - // LIGHTS - - - PVector lightPositionVec = new PVector(); - PVector lightDirectionVec = new PVector(); - - /** - * Sets up an ambient and directional light. - *

    -   * The Lighting Skinny:
    -   *
    -   * The way lighting works is complicated enough that it's worth
    -   * producing a document to describe it. Lighting calculations proceed
    -   * pretty much exactly as described in the OpenGL red book.
    -   *
    -   * Light-affecting material properties:
    -   *
    -   *   AMBIENT COLOR
    -   *   - multiplies by light's ambient component
    -   *   - for believability this should match diffuse color
    -   *
    -   *   DIFFUSE COLOR
    -   *   - multiplies by light's diffuse component
    -   *
    -   *   SPECULAR COLOR
    -   *   - multiplies by light's specular component
    -   *   - usually less colored than diffuse/ambient
    -   *
    -   *   SHININESS
    -   *   - the concentration of specular effect
    -   *   - this should be set pretty high (20-50) to see really
    -   *     noticeable specularity
    -   *
    -   *   EMISSIVE COLOR
    -   *   - constant additive color effect
    -   *
    -   * Light types:
    -   *
    -   *   AMBIENT
    -   *   - one color
    -   *   - no specular color
    -   *   - no direction
    -   *   - may have falloff (constant, linear, and quadratic)
    -   *   - may have position (which matters in non-constant falloff case)
    -   *   - multiplies by a material's ambient reflection
    -   *
    -   *   DIRECTIONAL
    -   *   - has diffuse color
    -   *   - has specular color
    -   *   - has direction
    -   *   - no position
    -   *   - no falloff
    -   *   - multiplies by a material's diffuse and specular reflections
    -   *
    -   *   POINT
    -   *   - has diffuse color
    -   *   - has specular color
    -   *   - has position
    -   *   - no direction
    -   *   - may have falloff (constant, linear, and quadratic)
    -   *   - multiplies by a material's diffuse and specular reflections
    -   *
    -   *   SPOT
    -   *   - has diffuse color
    -   *   - has specular color
    -   *   - has position
    -   *   - has direction
    -   *   - has cone angle (set to half the total cone angle)
    -   *   - has concentration value
    -   *   - may have falloff (constant, linear, and quadratic)
    -   *   - multiplies by a material's diffuse and specular reflections
    -   *
    -   * Normal modes:
    -   *
    -   * All of the primitives (rect, box, sphere, etc.) have their normals
    -   * set nicely. During beginShape/endShape normals can be set by the user.
    -   *
    -   *   AUTO-NORMAL
    -   *   - if no normal is set during the shape, we are in auto-normal mode
    -   *   - auto-normal calculates one normal per triangle (face-normal mode)
    -   *
    -   *   SHAPE-NORMAL
    -   *   - if one normal is set during the shape, it will be used for
    -   *     all vertices
    -   *
    -   *   VERTEX-NORMAL
    -   *   - if multiple normals are set, each normal applies to
    -   *     subsequent vertices
    -   *   - (except for the first one, which applies to previous
    -   *     and subsequent vertices)
    -   *
    -   * Efficiency consequences:
    -   *
    -   *   There is a major efficiency consequence of position-dependent
    -   *   lighting calculations per vertex. (See below for determining
    -   *   whether lighting is vertex position-dependent.) If there is no
    -   *   position dependency then the only factors that affect the lighting
    -   *   contribution per vertex are its colors and its normal.
    -   *   There is a major efficiency win if
    -   *
    -   *   1) lighting is not position dependent
    -   *   2) we are in AUTO-NORMAL or SHAPE-NORMAL mode
    -   *
    -   *   because then we can calculate one lighting contribution per shape
    -   *   (SHAPE-NORMAL) or per triangle (AUTO-NORMAL) and simply multiply it
    -   *   into the vertex colors. The converse is our worst-case performance when
    -   *
    -   *   1) lighting is position dependent
    -   *   2) we are in AUTO-NORMAL mode
    -   *
    -   *   because then we must calculate lighting per-face * per-vertex.
    -   *   Each vertex has a different lighting contribution per face in
    -   *   which it appears. Yuck.
    -   *
    -   * Determining vertex position dependency:
    -   *
    -   *   If any of the following factors are TRUE then lighting is
    -   *   vertex position dependent:
    -   *
    -   *   1) Any lights uses non-constant falloff
    -   *   2) There are any point or spot lights
    -   *   3) There is a light with specular color AND there is a
    -   *      material with specular color
    -   *
    -   * So worth noting is that default lighting (a no-falloff ambient
    -   * and a directional without specularity) is not position-dependent.
    -   * We should capitalize.
    -   *
    -   * Simon Greenwold, April 2005
    -   * 
    - */ - public void lights() { - // need to make sure colorMode is RGB 255 here - int colorModeSaved = colorMode; - colorMode = RGB; - - lightFalloff(1, 0, 0); - lightSpecular(0, 0, 0); - - ambientLight(colorModeX * 0.5f, - colorModeY * 0.5f, - colorModeZ * 0.5f); - directionalLight(colorModeX * 0.5f, - colorModeY * 0.5f, - colorModeZ * 0.5f, - 0, 0, -1); - - colorMode = colorModeSaved; - - lightingDependsOnVertexPosition = false; - } - - - /** - * Turn off all lights. - */ - public void noLights() { - // write any queued geometry, because lighting will be goofed after - flush(); - // set the light count back to zero - lightCount = 0; - } - - - /** - * Add an ambient light based on the current color mode. - */ - public void ambientLight(float r, float g, float b) { - ambientLight(r, g, b, 0, 0, 0); - } - - - /** - * Add an ambient light based on the current color mode. - * This version includes an (x, y, z) position for situations - * where the falloff distance is used. - */ - public void ambientLight(float r, float g, float b, - float x, float y, float z) { - if (lightCount == MAX_LIGHTS) { - throw new RuntimeException("can only create " + MAX_LIGHTS + " lights"); - } - colorCalc(r, g, b); - lightDiffuse[lightCount][0] = calcR; - lightDiffuse[lightCount][1] = calcG; - lightDiffuse[lightCount][2] = calcB; - - lightType[lightCount] = AMBIENT; - lightFalloffConstant[lightCount] = currentLightFalloffConstant; - lightFalloffLinear[lightCount] = currentLightFalloffLinear; - lightFalloffQuadratic[lightCount] = currentLightFalloffQuadratic; - lightPosition(lightCount, x, y, z); - lightCount++; - //return lightCount-1; - } - - - public void directionalLight(float r, float g, float b, - float nx, float ny, float nz) { - if (lightCount == MAX_LIGHTS) { - throw new RuntimeException("can only create " + MAX_LIGHTS + " lights"); - } - colorCalc(r, g, b); - lightDiffuse[lightCount][0] = calcR; - lightDiffuse[lightCount][1] = calcG; - lightDiffuse[lightCount][2] = calcB; - - lightType[lightCount] = DIRECTIONAL; - lightFalloffConstant[lightCount] = currentLightFalloffConstant; - lightFalloffLinear[lightCount] = currentLightFalloffLinear; - lightFalloffQuadratic[lightCount] = currentLightFalloffQuadratic; - lightSpecular[lightCount][0] = currentLightSpecular[0]; - lightSpecular[lightCount][1] = currentLightSpecular[1]; - lightSpecular[lightCount][2] = currentLightSpecular[2]; - lightDirection(lightCount, nx, ny, nz); - lightCount++; - } - - - public void pointLight(float r, float g, float b, - float x, float y, float z) { - if (lightCount == MAX_LIGHTS) { - throw new RuntimeException("can only create " + MAX_LIGHTS + " lights"); - } - colorCalc(r, g, b); - lightDiffuse[lightCount][0] = calcR; - lightDiffuse[lightCount][1] = calcG; - lightDiffuse[lightCount][2] = calcB; - - lightType[lightCount] = POINT; - lightFalloffConstant[lightCount] = currentLightFalloffConstant; - lightFalloffLinear[lightCount] = currentLightFalloffLinear; - lightFalloffQuadratic[lightCount] = currentLightFalloffQuadratic; - lightSpecular[lightCount][0] = currentLightSpecular[0]; - lightSpecular[lightCount][1] = currentLightSpecular[1]; - lightSpecular[lightCount][2] = currentLightSpecular[2]; - lightPosition(lightCount, x, y, z); - lightCount++; - - lightingDependsOnVertexPosition = true; - } - - - public void spotLight(float r, float g, float b, - float x, float y, float z, - float nx, float ny, float nz, - float angle, float concentration) { - if (lightCount == MAX_LIGHTS) { - throw new RuntimeException("can only create " + MAX_LIGHTS + " lights"); - } - colorCalc(r, g, b); - lightDiffuse[lightCount][0] = calcR; - lightDiffuse[lightCount][1] = calcG; - lightDiffuse[lightCount][2] = calcB; - - lightType[lightCount] = SPOT; - lightFalloffConstant[lightCount] = currentLightFalloffConstant; - lightFalloffLinear[lightCount] = currentLightFalloffLinear; - lightFalloffQuadratic[lightCount] = currentLightFalloffQuadratic; - lightSpecular[lightCount][0] = currentLightSpecular[0]; - lightSpecular[lightCount][1] = currentLightSpecular[1]; - lightSpecular[lightCount][2] = currentLightSpecular[2]; - lightPosition(lightCount, x, y, z); - lightDirection(lightCount, nx, ny, nz); - lightSpotAngle[lightCount] = angle; - lightSpotAngleCos[lightCount] = Math.max(0, (float) Math.cos(angle)); - lightSpotConcentration[lightCount] = concentration; - lightCount++; - - lightingDependsOnVertexPosition = true; - } - - - /** - * Set the light falloff rates for the last light that was created. - * Default is lightFalloff(1, 0, 0). - */ - public void lightFalloff(float constant, float linear, float quadratic) { - currentLightFalloffConstant = constant; - currentLightFalloffLinear = linear; - currentLightFalloffQuadratic = quadratic; - - lightingDependsOnVertexPosition = true; - } - - - /** - * Set the specular color of the last light created. - */ - public void lightSpecular(float x, float y, float z) { - colorCalc(x, y, z); - currentLightSpecular[0] = calcR; - currentLightSpecular[1] = calcG; - currentLightSpecular[2] = calcB; - - lightingDependsOnVertexPosition = true; - } - - - /** - * internal function to set the light position - * based on the current modelview matrix. - */ - protected void lightPosition(int num, float x, float y, float z) { - lightPositionVec.set(x, y, z); - modelview.mult(lightPositionVec, lightPosition[num]); - /* - lightPosition[num][0] = - modelview.m00*x + modelview.m01*y + modelview.m02*z + modelview.m03; - lightPosition[num][1] = - modelview.m10*x + modelview.m11*y + modelview.m12*z + modelview.m13; - lightPosition[num][2] = - modelview.m20*x + modelview.m21*y + modelview.m22*z + modelview.m23; - */ - } - - - /** - * internal function to set the light direction - * based on the current modelview matrix. - */ - protected void lightDirection(int num, float x, float y, float z) { - lightNormal[num].set(modelviewInv.m00*x + modelviewInv.m10*y + modelviewInv.m20*z + modelviewInv.m30, - modelviewInv.m01*x + modelviewInv.m11*y + modelviewInv.m21*z + modelviewInv.m31, - modelviewInv.m02*x + modelviewInv.m12*y + modelviewInv.m22*z + modelviewInv.m32); - lightNormal[num].normalize(); - - /* - lightDirectionVec.set(x, y, z); - System.out.println("dir vec " + lightDirectionVec); - //modelviewInv.mult(lightDirectionVec, lightNormal[num]); - modelviewInv.cmult(lightDirectionVec, lightNormal[num]); - System.out.println("cmult vec " + lightNormal[num]); - lightNormal[num].normalize(); - System.out.println("setting light direction " + lightNormal[num]); - */ - - /* - // Multiply by inverse transpose. - lightNormal[num][0] = - modelviewInv.m00*x + modelviewInv.m10*y + - modelviewInv.m20*z + modelviewInv.m30; - lightNormal[num][1] = - modelviewInv.m01*x + modelviewInv.m11*y + - modelviewInv.m21*z + modelviewInv.m31; - lightNormal[num][2] = - modelviewInv.m02*x + modelviewInv.m12*y + - modelviewInv.m22*z + modelviewInv.m32; - - float n = mag(lightNormal[num][0], lightNormal[num][1], lightNormal[num][2]); - if (n == 0 || n == 1) return; - - lightNormal[num][0] /= n; - lightNormal[num][1] /= n; - lightNormal[num][2] /= n; - */ - } - - - - ////////////////////////////////////////////////////////////// - - // BACKGROUND - - // Base background() variations inherited from PGraphics. - - - protected void backgroundImpl(PImage image) { - System.arraycopy(image.pixels, 0, pixels, 0, pixels.length); - Arrays.fill(zbuffer, Float.MAX_VALUE); - } - - - /** - * Clear pixel buffer. With P3D and OPENGL, this also clears the zbuffer. - */ - protected void backgroundImpl() { - Arrays.fill(pixels, backgroundColor); - Arrays.fill(zbuffer, Float.MAX_VALUE); - } - - - - ////////////////////////////////////////////////////////////// - - // COLOR MODE - - // all colorMode() variations inherited from PGraphics. - - - - ////////////////////////////////////////////////////////////// - - // COLOR CALCULATIONS - - // protected colorCalc and colorCalcARGB inherited. - - - - ////////////////////////////////////////////////////////////// - - // COLOR DATATYPE STUFFING - - // final color() variations inherited. - - - - ////////////////////////////////////////////////////////////// - - // COLOR DATATYPE EXTRACTION - - // final methods alpha, red, green, blue, - // hue, saturation, and brightness all inherited. - - - - ////////////////////////////////////////////////////////////// - - // COLOR DATATYPE INTERPOLATION - - // both lerpColor variants inherited. - - - - ////////////////////////////////////////////////////////////// - - // BEGIN/END RAW - - // beginRaw, endRaw() both inherited. - - - - ////////////////////////////////////////////////////////////// - - // WARNINGS and EXCEPTIONS - - // showWarning and showException inherited. - - - - ////////////////////////////////////////////////////////////// - - // RENDERER SUPPORT QUERIES - - - //public boolean displayable() - - - public boolean is2D() { - return false; - } - - - public boolean is3D() { - return true; - } - - - - ////////////////////////////////////////////////////////////// - - // PIMAGE METHODS - - // All these methods are inherited, because this render has a - // pixels[] array that can be accessed directly. - - // getImage - // setCache, getCache, removeCache - // isModified, setModified - // loadPixels, updatePixels - // resize - // get, getImpl, set, setImpl - // mask - // filter - // copy - // blendColor, blend - - - - ////////////////////////////////////////////////////////////// - - // MATH (internal use only) - - - private final float sqrt(float a) { - return (float) Math.sqrt(a); - } - - - private final float mag(float a, float b, float c) { - return (float) Math.sqrt(a*a + b*b + c*c); - } - - - private final float clamp(float a) { - return (a < 1) ? a : 1; - } - - - private final float abs(float a) { - return (a < 0) ? -a : a; - } - - - private float dot(float ax, float ay, float az, - float bx, float by, float bz) { - return ax*bx + ay*by + az*bz; - } - - - /* - private final void cross(float a0, float a1, float a2, - float b0, float b1, float b2, - float[] out) { - out[0] = a1*b2 - a2*b1; - out[1] = a2*b0 - a0*b2; - out[2] = a0*b1 - a1*b0; - } - */ - - - private final void cross(float a0, float a1, float a2, - float b0, float b1, float b2, - PVector out) { - out.x = a1*b2 - a2*b1; - out.y = a2*b0 - a0*b2; - out.z = a0*b1 - a1*b0; - } - - - /* - private final void cross(float[] a, float[] b, float[] out) { - out[0] = a[1]*b[2] - a[2]*b[1]; - out[1] = a[2]*b[0] - a[0]*b[2]; - out[2] = a[0]*b[1] - a[1]*b[0]; - } - */ -} - diff --git a/core/src/processing/core/PGraphicsJava2D.java b/core/src/processing/core/PGraphicsJava2D.java deleted file mode 100644 index f72a566bb..000000000 --- a/core/src/processing/core/PGraphicsJava2D.java +++ /dev/null @@ -1,1847 +0,0 @@ -/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */ - -/* - Part of the Processing project - http://processing.org - - Copyright (c) 2005-08 Ben Fry and Casey Reas - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General - Public License along with this library; if not, write to the - Free Software Foundation, Inc., 59 Temple Place, Suite 330, - Boston, MA 02111-1307 USA -*/ - -package processing.core; - -import java.awt.*; -import java.awt.geom.*; -import java.awt.image.*; - - -/** - * Subclass for PGraphics that implements the graphics API using Java2D. - * - *

    Pixel operations too slow? As of release 0085 (the first beta), - * the default renderer uses Java2D. It's more accurate than the renderer - * used in alpha releases of Processing (it handles stroke caps and joins, - * and has better polygon tessellation), but it's super slow for handling - * pixels. At least until we get a chance to get the old 2D renderer - * (now called P2D) working in a similar fashion, you can use - * size(w, h, P3D) instead of size(w, h) which will - * be faster for general pixel flipping madness.

    - * - *

    To get access to the Java 2D "Graphics2D" object for the default - * renderer, use: - *

    Graphics2D g2 = ((PGraphicsJava2D)g).g2;
    - * This will let you do Java 2D stuff directly, but is not supported in - * any way shape or form. Which just means "have fun, but don't complain - * if it breaks."

    - */ -public class PGraphicsJava2D extends PGraphics /*PGraphics2D*/ { - - public Graphics2D g2; - GeneralPath gpath; - - /// break the shape at the next vertex (next vertex() call is a moveto()) - boolean breakShape; - - /// coordinates for internal curve calculation - float[] curveCoordX; - float[] curveCoordY; - float[] curveDrawX; - float[] curveDrawY; - - int transformCount; - AffineTransform transformStack[] = - new AffineTransform[MATRIX_STACK_DEPTH]; - double[] transform = new double[6]; - - Line2D.Float line = new Line2D.Float(); - Ellipse2D.Float ellipse = new Ellipse2D.Float(); - Rectangle2D.Float rect = new Rectangle2D.Float(); - Arc2D.Float arc = new Arc2D.Float(); - - protected Color tintColorObject; - - protected Color fillColorObject; - public boolean fillGradient; - public Paint fillGradientObject; - - protected Color strokeColorObject; - public boolean strokeGradient; - public Paint strokeGradientObject; - - - - ////////////////////////////////////////////////////////////// - - // INTERNAL - - - public PGraphicsJava2D() { } - - - //public void setParent(PApplet parent) - - - //public void setPrimary(boolean primary) - - - //public void setPath(String path) - - - /** - * Called in response to a resize event, handles setting the - * new width and height internally, as well as re-allocating - * the pixel buffer for the new size. - * - * Note that this will nuke any cameraMode() settings. - */ - public void setSize(int iwidth, int iheight) { // ignore - width = iwidth; - height = iheight; - width1 = width - 1; - height1 = height - 1; - - allocate(); - reapplySettings(); - } - - - // broken out because of subclassing for opengl - protected void allocate() { -// System.out.println("PGraphicsJava2D allocate() " + width + " " + height); -// System.out.println("allocate " + Thread.currentThread().getName()); - image = new BufferedImage(width, height, BufferedImage.TYPE_INT_ARGB); - g2 = (Graphics2D) image.getGraphics(); - // can't un-set this because this may be only a resize - // http://dev.processing.org/bugs/show_bug.cgi?id=463 - //defaultsInited = false; - //checkSettings(); - //reapplySettings = true; - } - - - //public void dispose() - - - - ////////////////////////////////////////////////////////////// - - // FRAME - - - public boolean canDraw() { - return true; - } - - - public void beginDraw() { - checkSettings(); - - resetMatrix(); // reset model matrix - - // reset vertices - vertexCount = 0; - } - - - public void endDraw() { - // hm, mark pixels as changed, because this will instantly do a full - // copy of all the pixels to the surface.. so that's kind of a mess. - //updatePixels(); - - // TODO this is probably overkill for most tasks... - if (!primarySurface) { - loadPixels(); - } - modified = true; - } - - - - ////////////////////////////////////////////////////////////// - - // SETTINGS - - - //protected void checkSettings() - - - //protected void defaultSettings() - - - //protected void reapplySettings() - - - - ////////////////////////////////////////////////////////////// - - // HINT - - - //public void hint(int which) - - - - ////////////////////////////////////////////////////////////// - - // SHAPES - - - //public void beginShape(int kind) - - - public void beginShape(int kind) { - //super.beginShape(kind); - shape = kind; - vertexCount = 0; - curveVertexCount = 0; - - // set gpath to null, because when mixing curves and straight - // lines, vertexCount will be set back to zero, so vertexCount == 1 - // is no longer a good indicator of whether the shape is new. - // this way, just check to see if gpath is null, and if it isn't - // then just use it to continue the shape. - gpath = null; - } - - - //public boolean edge(boolean e) - - - //public void normal(float nx, float ny, float nz) { - - - //public void textureMode(int mode) - - - public void texture(PImage image) { - showMethodWarning("texture"); - } - - - public void vertex(float x, float y) { - curveVertexCount = 0; - //float vertex[]; - - if (vertexCount == vertices.length) { - float temp[][] = new float[vertexCount<<1][VERTEX_FIELD_COUNT]; - System.arraycopy(vertices, 0, temp, 0, vertexCount); - vertices = temp; - //message(CHATTER, "allocating more vertices " + vertices.length); - } - // not everyone needs this, but just easier to store rather - // than adding another moving part to the code... - vertices[vertexCount][X] = x; - vertices[vertexCount][Y] = y; - vertexCount++; - - switch (shape) { - - case POINTS: - point(x, y); - break; - - case LINES: - if ((vertexCount % 2) == 0) { - line(vertices[vertexCount-2][X], - vertices[vertexCount-2][Y], x, y); - } - break; - - case TRIANGLES: - if ((vertexCount % 3) == 0) { - triangle(vertices[vertexCount - 3][X], - vertices[vertexCount - 3][Y], - vertices[vertexCount - 2][X], - vertices[vertexCount - 2][Y], - x, y); - } - break; - - case TRIANGLE_STRIP: - if (vertexCount >= 3) { - triangle(vertices[vertexCount - 2][X], - vertices[vertexCount - 2][Y], - vertices[vertexCount - 1][X], - vertices[vertexCount - 1][Y], - vertices[vertexCount - 3][X], - vertices[vertexCount - 3][Y]); - } - break; - - case TRIANGLE_FAN: - if (vertexCount == 3) { - triangle(vertices[0][X], vertices[0][Y], - vertices[1][X], vertices[1][Y], - x, y); - } else if (vertexCount > 3) { - gpath = new GeneralPath(); - // when vertexCount > 3, draw an un-closed triangle - // for indices 0 (center), previous, current - gpath.moveTo(vertices[0][X], - vertices[0][Y]); - gpath.lineTo(vertices[vertexCount - 2][X], - vertices[vertexCount - 2][Y]); - gpath.lineTo(x, y); - drawShape(gpath); - } - break; - - case QUADS: - if ((vertexCount % 4) == 0) { - quad(vertices[vertexCount - 4][X], - vertices[vertexCount - 4][Y], - vertices[vertexCount - 3][X], - vertices[vertexCount - 3][Y], - vertices[vertexCount - 2][X], - vertices[vertexCount - 2][Y], - x, y); - } - break; - - case QUAD_STRIP: - // 0---2---4 - // | | | - // 1---3---5 - if ((vertexCount >= 4) && ((vertexCount % 2) == 0)) { - quad(vertices[vertexCount - 4][X], - vertices[vertexCount - 4][Y], - vertices[vertexCount - 2][X], - vertices[vertexCount - 2][Y], - x, y, - vertices[vertexCount - 3][X], - vertices[vertexCount - 3][Y]); - } - break; - - case POLYGON: - if (gpath == null) { - gpath = new GeneralPath(); - gpath.moveTo(x, y); - } else if (breakShape) { - gpath.moveTo(x, y); - breakShape = false; - } else { - gpath.lineTo(x, y); - } - break; - } - } - - - public void vertex(float x, float y, float z) { - showDepthWarningXYZ("vertex"); - } - - - public void vertex(float x, float y, float u, float v) { - showVariationWarning("vertex(x, y, u, v)"); - } - - - public void vertex(float x, float y, float z, float u, float v) { - showDepthWarningXYZ("vertex"); - } - - - public void breakShape() { - breakShape = true; - } - - - public void endShape(int mode) { - if (gpath != null) { // make sure something has been drawn - if (shape == POLYGON) { - if (mode == CLOSE) { - gpath.closePath(); - } - drawShape(gpath); - } - } - shape = 0; - } - - - - ////////////////////////////////////////////////////////////// - - // BEZIER VERTICES - - - public void bezierVertex(float x1, float y1, - float x2, float y2, - float x3, float y3) { - bezierVertexCheck(); - gpath.curveTo(x1, y1, x2, y2, x3, y3); - } - - - public void bezierVertex(float x2, float y2, float z2, - float x3, float y3, float z3, - float x4, float y4, float z4) { - showDepthWarningXYZ("bezierVertex"); - } - - - - ////////////////////////////////////////////////////////////// - - // CURVE VERTICES - - - protected void curveVertexCheck() { - super.curveVertexCheck(); - - if (curveCoordX == null) { - curveCoordX = new float[4]; - curveCoordY = new float[4]; - curveDrawX = new float[4]; - curveDrawY = new float[4]; - } - } - - - protected void curveVertexSegment(float x1, float y1, - float x2, float y2, - float x3, float y3, - float x4, float y4) { - curveCoordX[0] = x1; - curveCoordY[0] = y1; - - curveCoordX[1] = x2; - curveCoordY[1] = y2; - - curveCoordX[2] = x3; - curveCoordY[2] = y3; - - curveCoordX[3] = x4; - curveCoordY[3] = y4; - - curveToBezierMatrix.mult(curveCoordX, curveDrawX); - curveToBezierMatrix.mult(curveCoordY, curveDrawY); - - // since the paths are continuous, - // only the first point needs the actual moveto - if (gpath == null) { - gpath = new GeneralPath(); - gpath.moveTo(curveDrawX[0], curveDrawY[0]); - } - - gpath.curveTo(curveDrawX[1], curveDrawY[1], - curveDrawX[2], curveDrawY[2], - curveDrawX[3], curveDrawY[3]); - } - - - public void curveVertex(float x, float y, float z) { - showDepthWarningXYZ("curveVertex"); - } - - - - ////////////////////////////////////////////////////////////// - - // RENDERER - - - //public void flush() - - - - ////////////////////////////////////////////////////////////// - - // POINT, LINE, TRIANGLE, QUAD - - - public void point(float x, float y) { - if (stroke) { -// if (strokeWeight > 1) { - line(x, y, x + EPSILON, y + EPSILON); -// } else { -// set((int) screenX(x, y), (int) screenY(x, y), strokeColor); -// } - } - } - - - public void line(float x1, float y1, float x2, float y2) { - line.setLine(x1, y1, x2, y2); - strokeShape(line); - } - - - public void triangle(float x1, float y1, float x2, float y2, - float x3, float y3) { - gpath = new GeneralPath(); - gpath.moveTo(x1, y1); - gpath.lineTo(x2, y2); - gpath.lineTo(x3, y3); - gpath.closePath(); - drawShape(gpath); - } - - - public void quad(float x1, float y1, float x2, float y2, - float x3, float y3, float x4, float y4) { - GeneralPath gp = new GeneralPath(); - gp.moveTo(x1, y1); - gp.lineTo(x2, y2); - gp.lineTo(x3, y3); - gp.lineTo(x4, y4); - gp.closePath(); - drawShape(gp); - } - - - - ////////////////////////////////////////////////////////////// - - // RECT - - - //public void rectMode(int mode) - - - //public void rect(float a, float b, float c, float d) - - - protected void rectImpl(float x1, float y1, float x2, float y2) { - rect.setFrame(x1, y1, x2-x1, y2-y1); - drawShape(rect); - } - - - - ////////////////////////////////////////////////////////////// - - // ELLIPSE - - - //public void ellipseMode(int mode) - - - //public void ellipse(float a, float b, float c, float d) - - - protected void ellipseImpl(float x, float y, float w, float h) { - ellipse.setFrame(x, y, w, h); - drawShape(ellipse); - } - - - - ////////////////////////////////////////////////////////////// - - // ARC - - - //public void arc(float a, float b, float c, float d, - // float start, float stop) - - - protected void arcImpl(float x, float y, float w, float h, - float start, float stop) { - // 0 to 90 in java would be 0 to -90 for p5 renderer - // but that won't work, so -90 to 0? - - start = -start * RAD_TO_DEG; - stop = -stop * RAD_TO_DEG; - - // ok to do this because already checked for NaN -// while (start < 0) { -// start += 360; -// stop += 360; -// } -// if (start > stop) { -// float temp = start; -// start = stop; -// stop = temp; -// } - float sweep = stop - start; - - // stroke as Arc2D.OPEN, fill as Arc2D.PIE - if (fill) { - //System.out.println("filla"); - arc.setArc(x, y, w, h, start, sweep, Arc2D.PIE); - fillShape(arc); - } - if (stroke) { - //System.out.println("strokey"); - arc.setArc(x, y, w, h, start, sweep, Arc2D.OPEN); - strokeShape(arc); - } - } - - - - ////////////////////////////////////////////////////////////// - - // JAVA2D SHAPE/PATH HANDLING - - - protected void fillShape(Shape s) { - if (fillGradient) { - g2.setPaint(fillGradientObject); - g2.fill(s); - } else if (fill) { - g2.setColor(fillColorObject); - g2.fill(s); - } - } - - - protected void strokeShape(Shape s) { - if (strokeGradient) { - g2.setPaint(strokeGradientObject); - g2.draw(s); - } else if (stroke) { - g2.setColor(strokeColorObject); - g2.draw(s); - } - } - - - protected void drawShape(Shape s) { - if (fillGradient) { - g2.setPaint(fillGradientObject); - g2.fill(s); - } else if (fill) { - g2.setColor(fillColorObject); - g2.fill(s); - } - if (strokeGradient) { - g2.setPaint(strokeGradientObject); - g2.draw(s); - } else if (stroke) { - g2.setColor(strokeColorObject); - g2.draw(s); - } - } - - - - ////////////////////////////////////////////////////////////// - - // BOX - - - //public void box(float size) - - - public void box(float w, float h, float d) { - showMethodWarning("box"); - } - - - - ////////////////////////////////////////////////////////////// - - // SPHERE - - - //public void sphereDetail(int res) - - - //public void sphereDetail(int ures, int vres) - - - public void sphere(float r) { - showMethodWarning("sphere"); - } - - - - ////////////////////////////////////////////////////////////// - - // BEZIER - - - //public float bezierPoint(float a, float b, float c, float d, float t) - - - //public float bezierTangent(float a, float b, float c, float d, float t) - - - //protected void bezierInitCheck() - - - //protected void bezierInit() - - - /** Ignored (not needed) in Java 2D. */ - public void bezierDetail(int detail) { - } - - - //public void bezier(float x1, float y1, - // float x2, float y2, - // float x3, float y3, - // float x4, float y4) - - - //public void bezier(float x1, float y1, float z1, - // float x2, float y2, float z2, - // float x3, float y3, float z3, - // float x4, float y4, float z4) - - - - ////////////////////////////////////////////////////////////// - - // CURVE - - - //public float curvePoint(float a, float b, float c, float d, float t) - - - //public float curveTangent(float a, float b, float c, float d, float t) - - - /** Ignored (not needed) in Java 2D. */ - public void curveDetail(int detail) { - } - - //public void curveTightness(float tightness) - - - //protected void curveInitCheck() - - - //protected void curveInit() - - - //public void curve(float x1, float y1, - // float x2, float y2, - // float x3, float y3, - // float x4, float y4) - - - //public void curve(float x1, float y1, float z1, - // float x2, float y2, float z2, - // float x3, float y3, float z3, - // float x4, float y4, float z4) - - - - ////////////////////////////////////////////////////////////// - - // SMOOTH - - - public void smooth() { - smooth = true; - g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, - RenderingHints.VALUE_ANTIALIAS_ON); - g2.setRenderingHint(RenderingHints.KEY_INTERPOLATION, -// RenderingHints.VALUE_INTERPOLATION_BILINEAR); - RenderingHints.VALUE_INTERPOLATION_BICUBIC); - } - - - public void noSmooth() { - smooth = false; - g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, - RenderingHints.VALUE_ANTIALIAS_OFF); - g2.setRenderingHint(RenderingHints.KEY_INTERPOLATION, - RenderingHints.VALUE_INTERPOLATION_NEAREST_NEIGHBOR); - } - - - - ////////////////////////////////////////////////////////////// - - // IMAGE - - - //public void imageMode(int mode) - - - //public void image(PImage image, float x, float y) - - - //public void image(PImage image, float x, float y, float c, float d) - - - //public void image(PImage image, - // float a, float b, float c, float d, - // int u1, int v1, int u2, int v2) - - - /** - * Handle renderer-specific image drawing. - */ - protected void imageImpl(PImage who, - float x1, float y1, float x2, float y2, - int u1, int v1, int u2, int v2) { - // Image not ready yet, or an error - if (who.width <= 0 || who.height <= 0) return; - - if (who.getCache(this) == null) { - //System.out.println("making new image cache"); - who.setCache(this, new ImageCache(who)); - who.updatePixels(); // mark the whole thing for update - who.modified = true; - } - - ImageCache cash = (ImageCache) who.getCache(this); - // if image previously was tinted, or the color changed - // or the image was tinted, and tint is now disabled - if ((tint && !cash.tinted) || - (tint && (cash.tintedColor != tintColor)) || - (!tint && cash.tinted)) { - // for tint change, mark all pixels as needing update - who.updatePixels(); - } - - if (who.modified) { - cash.update(tint, tintColor); - who.modified = false; - } - - g2.drawImage(((ImageCache) who.getCache(this)).image, - (int) x1, (int) y1, (int) x2, (int) y2, - u1, v1, u2, v2, null); - } - - - class ImageCache { - PImage source; - boolean tinted; - int tintedColor; - int tintedPixels[]; // one row of tinted pixels - BufferedImage image; - - public ImageCache(PImage source) { - this.source = source; - // even if RGB, set the image type to ARGB, because the - // image may have an alpha value for its tint(). -// int type = BufferedImage.TYPE_INT_ARGB; - //System.out.println("making new buffered image"); -// image = new BufferedImage(source.width, source.height, type); - } - - /** - * Update the pixels of the cache image. Already determined that the tint - * has changed, or the pixels have changed, so should just go through - * with the update without further checks. - */ - public void update(boolean tint, int tintColor) { - int bufferType = BufferedImage.TYPE_INT_ARGB; - boolean opaque = (tintColor & 0xFF000000) == 0xFF000000; - if (source.format == RGB) { - if (!tint || (tint && opaque)) { - bufferType = BufferedImage.TYPE_INT_RGB; - } - } - boolean wrongType = (image != null) && (image.getType() != bufferType); - if ((image == null) || wrongType) { - image = new BufferedImage(source.width, source.height, bufferType); - } - - WritableRaster wr = image.getRaster(); - if (tint) { - if (tintedPixels == null || tintedPixels.length != source.width) { - tintedPixels = new int[source.width]; - } - int a2 = (tintColor >> 24) & 0xff; - int r2 = (tintColor >> 16) & 0xff; - int g2 = (tintColor >> 8) & 0xff; - int b2 = (tintColor) & 0xff; - - if (bufferType == BufferedImage.TYPE_INT_RGB) { - //int alpha = tintColor & 0xFF000000; - int index = 0; - for (int y = 0; y < source.height; y++) { - for (int x = 0; x < source.width; x++) { - int argb1 = source.pixels[index++]; - int r1 = (argb1 >> 16) & 0xff; - int g1 = (argb1 >> 8) & 0xff; - int b1 = (argb1) & 0xff; - - tintedPixels[x] = //0xFF000000 | - (((r2 * r1) & 0xff00) << 8) | - ((g2 * g1) & 0xff00) | - (((b2 * b1) & 0xff00) >> 8); - } - wr.setDataElements(0, y, source.width, 1, tintedPixels); - } - // could this be any slower? -// float[] scales = { tintR, tintG, tintB }; -// float[] offsets = new float[3]; -// RescaleOp op = new RescaleOp(scales, offsets, null); -// op.filter(image, image); - - } else if (bufferType == BufferedImage.TYPE_INT_ARGB) { - int index = 0; - for (int y = 0; y < source.height; y++) { - if (source.format == RGB) { - int alpha = tintColor & 0xFF000000; - for (int x = 0; x < source.width; x++) { - int argb1 = source.pixels[index++]; - int r1 = (argb1 >> 16) & 0xff; - int g1 = (argb1 >> 8) & 0xff; - int b1 = (argb1) & 0xff; - tintedPixels[x] = alpha | - (((r2 * r1) & 0xff00) << 8) | - ((g2 * g1) & 0xff00) | - (((b2 * b1) & 0xff00) >> 8); - } - } else if (source.format == ARGB) { - for (int x = 0; x < source.width; x++) { - int argb1 = source.pixels[index++]; - int a1 = (argb1 >> 24) & 0xff; - int r1 = (argb1 >> 16) & 0xff; - int g1 = (argb1 >> 8) & 0xff; - int b1 = (argb1) & 0xff; - tintedPixels[x] = - (((a2 * a1) & 0xff00) << 16) | - (((r2 * r1) & 0xff00) << 8) | - ((g2 * g1) & 0xff00) | - (((b2 * b1) & 0xff00) >> 8); - } - } else if (source.format == ALPHA) { - int lower = tintColor & 0xFFFFFF; - for (int x = 0; x < source.width; x++) { - int a1 = source.pixels[index++]; - tintedPixels[x] = - (((a2 * a1) & 0xff00) << 16) | lower; - } - } - wr.setDataElements(0, y, source.width, 1, tintedPixels); - } - // Not sure why ARGB images take the scales in this order... -// float[] scales = { tintR, tintG, tintB, tintA }; -// float[] offsets = new float[4]; -// RescaleOp op = new RescaleOp(scales, offsets, null); -// op.filter(image, image); - } - } else { - wr.setDataElements(0, 0, source.width, source.height, source.pixels); - } - this.tinted = tint; - this.tintedColor = tintColor; - } - } - - - - ////////////////////////////////////////////////////////////// - - // SHAPE - - - //public void shapeMode(int mode) - - - //public void shape(PShape shape) - - - //public void shape(PShape shape, float x, float y) - - - //public void shape(PShape shape, float x, float y, float c, float d) - - - - ////////////////////////////////////////////////////////////// - - // TEXT ATTRIBTUES - - - //public void textAlign(int align) - - - //public void textAlign(int alignX, int alignY) - - - public float textAscent() { - if (textFont == null) { - defaultFontOrDeath("textAscent"); - } - Font font = textFont.getFont(); - if (font == null) { - return super.textAscent(); - } - FontMetrics metrics = parent.getFontMetrics(font); - return metrics.getAscent(); - } - - - public float textDescent() { - if (textFont == null) { - defaultFontOrDeath("textAscent"); - } - Font font = textFont.getFont(); - if (font == null) { - return super.textDescent(); - } - FontMetrics metrics = parent.getFontMetrics(font); - return metrics.getDescent(); - } - - - //public void textFont(PFont which) - - - //public void textFont(PFont which, float size) - - - //public void textLeading(float leading) - - - //public void textMode(int mode) - - - protected boolean textModeCheck(int mode) { - return (mode == MODEL) || (mode == SCREEN); - } - - - /** - * Same as parent, but override for native version of the font. - *

    - * Also gets called by textFont, so the metrics - * will get recorded properly. - */ - public void textSize(float size) { - if (textFont == null) { - defaultFontOrDeath("textAscent", size); - } - - // if a native version available, derive this font -// if (textFontNative != null) { -// textFontNative = textFontNative.deriveFont(size); -// g2.setFont(textFontNative); -// textFontNativeMetrics = g2.getFontMetrics(textFontNative); -// } - Font font = textFont.getFont(); - if (font != null) { - Font dfont = font.deriveFont(size); - g2.setFont(dfont); - textFont.setFont(dfont); - } - - // take care of setting the textSize and textLeading vars - // this has to happen second, because it calls textAscent() - // (which requires the native font metrics to be set) - super.textSize(size); - } - - - //public float textWidth(char c) - - - //public float textWidth(String str) - - - protected float textWidthImpl(char buffer[], int start, int stop) { - Font font = textFont.getFont(); - if (font == null) { - return super.textWidthImpl(buffer, start, stop); - } - // maybe should use one of the newer/fancier functions for this? - int length = stop - start; - FontMetrics metrics = g2.getFontMetrics(font); - return metrics.charsWidth(buffer, start, length); - } - - - - ////////////////////////////////////////////////////////////// - - // TEXT - - // None of the variations of text() are overridden from PGraphics. - - - - ////////////////////////////////////////////////////////////// - - // TEXT IMPL - - - //protected void textLineAlignImpl(char buffer[], int start, int stop, - // float x, float y) - - - protected void textLineImpl(char buffer[], int start, int stop, - float x, float y) { - Font font = textFont.getFont(); - if (font == null) { - super.textLineImpl(buffer, start, stop, x, y); - return; - } - - /* - // save the current setting for text smoothing. note that this is - // different from the smooth() function, because the font smoothing - // is controlled when the font is created, not now as it's drawn. - // fixed a bug in 0116 that handled this incorrectly. - Object textAntialias = - g2.getRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING); - - // override the current text smoothing setting based on the font - // (don't change the global smoothing settings) - g2.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, - textFont.smooth ? - RenderingHints.VALUE_ANTIALIAS_ON : - RenderingHints.VALUE_ANTIALIAS_OFF); - */ - - Object antialias = - g2.getRenderingHint(RenderingHints.KEY_ANTIALIASING); - if (antialias == null) { - // if smooth() and noSmooth() not called, this will be null (0120) - antialias = RenderingHints.VALUE_ANTIALIAS_DEFAULT; - } - - // override the current smoothing setting based on the font - // also changes global setting for antialiasing, but this is because it's - // not possible to enable/disable them independently in some situations. - g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, - textFont.smooth ? - RenderingHints.VALUE_ANTIALIAS_ON : - RenderingHints.VALUE_ANTIALIAS_OFF); - - //System.out.println("setting frac metrics"); - //g2.setRenderingHint(RenderingHints.KEY_FRACTIONALMETRICS, - // RenderingHints.VALUE_FRACTIONALMETRICS_ON); - - g2.setColor(fillColorObject); - int length = stop - start; - g2.drawChars(buffer, start, length, (int) (x + 0.5f), (int) (y + 0.5f)); - // better to use drawString() with floats? (nope, draws the same) - //g2.drawString(new String(buffer, start, length), x, y); - - // this didn't seem to help the scaling issue - // and creates garbage because of the new temporary object - //java.awt.font.GlyphVector gv = textFontNative.createGlyphVector(g2.getFontRenderContext(), new String(buffer, start, stop)); - //g2.drawGlyphVector(gv, x, y); - -// System.out.println("text() " + new String(buffer, start, stop)); - - // return to previous smoothing state if it was changed - //g2.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, textAntialias); - g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, antialias); - - textX = x + textWidthImpl(buffer, start, stop); - textY = y; - textZ = 0; // this will get set by the caller if non-zero - } - - - - ////////////////////////////////////////////////////////////// - - // MATRIX STACK - - - public void pushMatrix() { - if (transformCount == transformStack.length) { - throw new RuntimeException("pushMatrix() cannot use push more than " + - transformStack.length + " times"); - } - transformStack[transformCount] = g2.getTransform(); - transformCount++; - } - - - public void popMatrix() { - if (transformCount == 0) { - throw new RuntimeException("missing a popMatrix() " + - "to go with that pushMatrix()"); - } - transformCount--; - g2.setTransform(transformStack[transformCount]); - } - - - - ////////////////////////////////////////////////////////////// - - // MATRIX TRANSFORMS - - - public void translate(float tx, float ty) { - g2.translate(tx, ty); - } - - - //public void translate(float tx, float ty, float tz) - - - public void rotate(float angle) { - g2.rotate(angle); - } - - - public void rotateX(float angle) { - showDepthWarning("rotateX"); - } - - - public void rotateY(float angle) { - showDepthWarning("rotateY"); - } - - - public void rotateZ(float angle) { - showDepthWarning("rotateZ"); - } - - - public void rotate(float angle, float vx, float vy, float vz) { - showVariationWarning("rotate"); - } - - - public void scale(float s) { - g2.scale(s, s); - } - - - public void scale(float sx, float sy) { - g2.scale(sx, sy); - } - - - public void scale(float sx, float sy, float sz) { - showDepthWarningXYZ("scale"); - } - - - - ////////////////////////////////////////////////////////////// - - // MATRIX MORE - - - public void resetMatrix() { - g2.setTransform(new AffineTransform()); - } - - - //public void applyMatrix(PMatrix2D source) - - - public void applyMatrix(float n00, float n01, float n02, - float n10, float n11, float n12) { - //System.out.println("PGraphicsJava2D.applyMatrix()"); - //System.out.println(new AffineTransform(n00, n10, n01, n11, n02, n12)); - g2.transform(new AffineTransform(n00, n10, n01, n11, n02, n12)); - //g2.transform(new AffineTransform(n00, n01, n02, n10, n11, n12)); - } - - - //public void applyMatrix(PMatrix3D source) - - - public void applyMatrix(float n00, float n01, float n02, float n03, - float n10, float n11, float n12, float n13, - float n20, float n21, float n22, float n23, - float n30, float n31, float n32, float n33) { - showVariationWarning("applyMatrix"); - } - - - - ////////////////////////////////////////////////////////////// - - // MATRIX GET/SET - - - public PMatrix getMatrix() { - return getMatrix((PMatrix2D) null); - } - - - public PMatrix2D getMatrix(PMatrix2D target) { - if (target == null) { - target = new PMatrix2D(); - } - g2.getTransform().getMatrix(transform); - target.set((float) transform[0], (float) transform[2], (float) transform[4], - (float) transform[1], (float) transform[3], (float) transform[5]); - return target; - } - - - public PMatrix3D getMatrix(PMatrix3D target) { - showVariationWarning("getMatrix"); - return target; - } - - - //public void setMatrix(PMatrix source) - - - public void setMatrix(PMatrix2D source) { - g2.setTransform(new AffineTransform(source.m00, source.m10, - source.m01, source.m11, - source.m02, source.m12)); - } - - - public void setMatrix(PMatrix3D source) { - showVariationWarning("setMatrix"); - } - - - public void printMatrix() { - getMatrix((PMatrix2D) null).print(); - } - - - - ////////////////////////////////////////////////////////////// - - // CAMERA and PROJECTION - - // Inherit the plaintive warnings from PGraphics - - - //public void beginCamera() - //public void endCamera() - //public void camera() - //public void camera(float eyeX, float eyeY, float eyeZ, - // float centerX, float centerY, float centerZ, - // float upX, float upY, float upZ) - //public void printCamera() - - //public void ortho() - //public void ortho(float left, float right, - // float bottom, float top, - // float near, float far) - //public void perspective() - //public void perspective(float fov, float aspect, float near, float far) - //public void frustum(float left, float right, - // float bottom, float top, - // float near, float far) - //public void printProjection() - - - - ////////////////////////////////////////////////////////////// - - // SCREEN and MODEL transforms - - - public float screenX(float x, float y) { - g2.getTransform().getMatrix(transform); - return (float)transform[0]*x + (float)transform[2]*y + (float)transform[4]; - } - - - public float screenY(float x, float y) { - g2.getTransform().getMatrix(transform); - return (float)transform[1]*x + (float)transform[3]*y + (float)transform[5]; - } - - - public float screenX(float x, float y, float z) { - showDepthWarningXYZ("screenX"); - return 0; - } - - - public float screenY(float x, float y, float z) { - showDepthWarningXYZ("screenY"); - return 0; - } - - - public float screenZ(float x, float y, float z) { - showDepthWarningXYZ("screenZ"); - return 0; - } - - - //public float modelX(float x, float y, float z) - - - //public float modelY(float x, float y, float z) - - - //public float modelZ(float x, float y, float z) - - - - ////////////////////////////////////////////////////////////// - - // STYLE - - // pushStyle(), popStyle(), style() and getStyle() inherited. - - - - ////////////////////////////////////////////////////////////// - - // STROKE CAP/JOIN/WEIGHT - - - public void strokeCap(int cap) { - super.strokeCap(cap); - strokeImpl(); - } - - - public void strokeJoin(int join) { - super.strokeJoin(join); - strokeImpl(); - } - - - public void strokeWeight(float weight) { - super.strokeWeight(weight); - strokeImpl(); - } - - - protected void strokeImpl() { - int cap = BasicStroke.CAP_BUTT; - if (strokeCap == ROUND) { - cap = BasicStroke.CAP_ROUND; - } else if (strokeCap == PROJECT) { - cap = BasicStroke.CAP_SQUARE; - } - - int join = BasicStroke.JOIN_BEVEL; - if (strokeJoin == MITER) { - join = BasicStroke.JOIN_MITER; - } else if (strokeJoin == ROUND) { - join = BasicStroke.JOIN_ROUND; - } - - g2.setStroke(new BasicStroke(strokeWeight, cap, join)); - } - - - - ////////////////////////////////////////////////////////////// - - // STROKE - - // noStroke() and stroke() inherited from PGraphics. - - - protected void strokeFromCalc() { - super.strokeFromCalc(); - strokeColorObject = new Color(strokeColor, true); - strokeGradient = false; - } - - - - ////////////////////////////////////////////////////////////// - - // TINT - - // noTint() and tint() inherited from PGraphics. - - - protected void tintFromCalc() { - super.tintFromCalc(); - // TODO actually implement tinted images - tintColorObject = new Color(tintColor, true); - } - - - - ////////////////////////////////////////////////////////////// - - // FILL - - // noFill() and fill() inherited from PGraphics. - - - protected void fillFromCalc() { - super.fillFromCalc(); - fillColorObject = new Color(fillColor, true); - fillGradient = false; - } - - - - ////////////////////////////////////////////////////////////// - - // MATERIAL PROPERTIES - - - //public void ambient(int rgb) - //public void ambient(float gray) - //public void ambient(float x, float y, float z) - //protected void ambientFromCalc() - //public void specular(int rgb) - //public void specular(float gray) - //public void specular(float x, float y, float z) - //protected void specularFromCalc() - //public void shininess(float shine) - //public void emissive(int rgb) - //public void emissive(float gray) - //public void emissive(float x, float y, float z ) - //protected void emissiveFromCalc() - - - - ////////////////////////////////////////////////////////////// - - // LIGHTS - - - //public void lights() - //public void noLights() - //public void ambientLight(float red, float green, float blue) - //public void ambientLight(float red, float green, float blue, - // float x, float y, float z) - //public void directionalLight(float red, float green, float blue, - // float nx, float ny, float nz) - //public void pointLight(float red, float green, float blue, - // float x, float y, float z) - //public void spotLight(float red, float green, float blue, - // float x, float y, float z, - // float nx, float ny, float nz, - // float angle, float concentration) - //public void lightFalloff(float constant, float linear, float quadratic) - //public void lightSpecular(float x, float y, float z) - //protected void lightPosition(int num, float x, float y, float z) - //protected void lightDirection(int num, float x, float y, float z) - - - - ////////////////////////////////////////////////////////////// - - // BACKGROUND - - // background() methods inherited from PGraphics, along with the - // PImage version of backgroundImpl(), since it just calls set(). - - - //public void backgroundImpl(PImage image) - - - int[] clearPixels; - - public void backgroundImpl() { - if (backgroundAlpha) { - // Create a small array that can be used to set the pixels several times. - // Using a single-pixel line of length 'width' is a tradeoff between - // speed (setting each pixel individually is too slow) and memory - // (an array for width*height would waste lots of memory if it stayed - // resident, and would terrify the gc if it were re-created on each trip - // to background(). - WritableRaster raster = ((BufferedImage) image).getRaster(); - if ((clearPixels == null) || (clearPixels.length < width)) { - clearPixels = new int[width]; - } - java.util.Arrays.fill(clearPixels, backgroundColor); - for (int i = 0; i < height; i++) { - raster.setDataElements(0, i, width, 1, clearPixels); - } - } else { - //new Exception().printStackTrace(System.out); - // in case people do transformations before background(), - // need to handle this with a push/reset/pop - pushMatrix(); - resetMatrix(); - g2.setColor(new Color(backgroundColor)); //, backgroundAlpha)); - g2.fillRect(0, 0, width, height); - popMatrix(); - } - } - - - - ////////////////////////////////////////////////////////////// - - // COLOR MODE - - // All colorMode() variations are inherited from PGraphics. - - - - ////////////////////////////////////////////////////////////// - - // COLOR CALC - - // colorCalc() and colorCalcARGB() inherited from PGraphics. - - - - ////////////////////////////////////////////////////////////// - - // COLOR DATATYPE STUFFING - - // final color() variations inherited. - - - - ////////////////////////////////////////////////////////////// - - // COLOR DATATYPE EXTRACTION - - // final methods alpha, red, green, blue, - // hue, saturation, and brightness all inherited. - - - - ////////////////////////////////////////////////////////////// - - // COLOR DATATYPE INTERPOLATION - - // both lerpColor variants inherited. - - - - ////////////////////////////////////////////////////////////// - - // BEGIN/END RAW - - - public void beginRaw(PGraphics recorderRaw) { - showMethodWarning("beginRaw"); - } - - - public void endRaw() { - showMethodWarning("endRaw"); - } - - - - ////////////////////////////////////////////////////////////// - - // WARNINGS and EXCEPTIONS - - // showWarning and showException inherited. - - - - ////////////////////////////////////////////////////////////// - - // RENDERER SUPPORT QUERIES - - - //public boolean displayable() // true - - - //public boolean is2D() // true - - - //public boolean is3D() // false - - - - ////////////////////////////////////////////////////////////// - - // PIMAGE METHODS - - - // getImage, setCache, getCache, removeCache, isModified, setModified - - - public void loadPixels() { - if ((pixels == null) || (pixels.length != width * height)) { - pixels = new int[width * height]; - } - //((BufferedImage) image).getRGB(0, 0, width, height, pixels, 0, width); - WritableRaster raster = ((BufferedImage) image).getRaster(); - raster.getDataElements(0, 0, width, height, pixels); - } - - - /** - * Update the pixels[] buffer to the PGraphics image. - *

    - * Unlike in PImage, where updatePixels() only requests that the - * update happens, in PGraphicsJava2D, this will happen immediately. - */ - public void updatePixels() { - //updatePixels(0, 0, width, height); - WritableRaster raster = ((BufferedImage) image).getRaster(); - raster.setDataElements(0, 0, width, height, pixels); - } - - - /** - * Update the pixels[] buffer to the PGraphics image. - *

    - * Unlike in PImage, where updatePixels() only requests that the - * update happens, in PGraphicsJava2D, this will happen immediately. - */ - public void updatePixels(int x, int y, int c, int d) { - //if ((x == 0) && (y == 0) && (c == width) && (d == height)) { - if ((x != 0) || (y != 0) || (c != width) || (d != height)) { - // Show a warning message, but continue anyway. - showVariationWarning("updatePixels(x, y, w, h)"); - } - updatePixels(); - } - - - public void resize(int wide, int high) { - showMethodWarning("resize"); - } - - - - ////////////////////////////////////////////////////////////// - - // GET/SET - - - static int getset[] = new int[1]; - - - public int get(int x, int y) { - if ((x < 0) || (y < 0) || (x >= width) || (y >= height)) return 0; - //return ((BufferedImage) image).getRGB(x, y); - WritableRaster raster = ((BufferedImage) image).getRaster(); - raster.getDataElements(x, y, getset); - return getset[0]; - } - - - //public PImage get(int x, int y, int w, int h) - - - public PImage getImpl(int x, int y, int w, int h) { - PImage output = new PImage(w, h); - output.parent = parent; - - // oops, the last parameter is the scan size of the *target* buffer - //((BufferedImage) image).getRGB(x, y, w, h, output.pixels, 0, w); - WritableRaster raster = ((BufferedImage) image).getRaster(); - raster.getDataElements(x, y, w, h, output.pixels); - - return output; - } - - - public PImage get() { - return get(0, 0, width, height); - } - - - public void set(int x, int y, int argb) { - if ((x < 0) || (y < 0) || (x >= width) || (y >= height)) return; -// ((BufferedImage) image).setRGB(x, y, argb); - getset[0] = argb; - WritableRaster raster = ((BufferedImage) image).getRaster(); - raster.setDataElements(x, y, getset); - } - - - protected void setImpl(int dx, int dy, int sx, int sy, int sw, int sh, - PImage src) { - WritableRaster raster = ((BufferedImage) image).getRaster(); - if ((sx == 0) && (sy == 0) && (sw == src.width) && (sh == src.height)) { - raster.setDataElements(dx, dy, src.width, src.height, src.pixels); - } else { - // TODO Optimize, incredibly inefficient to reallocate this much memory - PImage temp = src.get(sx, sy, sw, sh); - raster.setDataElements(dx, dy, temp.width, temp.height, temp.pixels); - } - } - - - - ////////////////////////////////////////////////////////////// - - // MASK - - - public void mask(int alpha[]) { - showMethodWarning("mask"); - } - - - public void mask(PImage alpha) { - showMethodWarning("mask"); - } - - - - ////////////////////////////////////////////////////////////// - - // FILTER - - // Because the PImage versions call loadPixels() and - // updatePixels(), no need to override anything here. - - - //public void filter(int kind) - - - //public void filter(int kind, float param) - - - - ////////////////////////////////////////////////////////////// - - // COPY - - - public void copy(int sx, int sy, int sw, int sh, - int dx, int dy, int dw, int dh) { - if ((sw != dw) || (sh != dh)) { - // use slow version if changing size - copy(this, sx, sy, sw, sh, dx, dy, dw, dh); - - } else { - dx = dx - sx; // java2d's "dx" is the delta, not dest - dy = dy - sy; - g2.copyArea(sx, sy, sw, sh, dx, dy); - } - } - - -// public void copy(PImage src, -// int sx1, int sy1, int sx2, int sy2, -// int dx1, int dy1, int dx2, int dy2) { -// loadPixels(); -// super.copy(src, sx1, sy1, sx2, sy2, dx1, dy1, dx2, dy2); -// updatePixels(); -// } - - - - ////////////////////////////////////////////////////////////// - - // BLEND - - -// static public int blendColor(int c1, int c2, int mode) - - -// public void blend(int sx, int sy, int sw, int sh, -// int dx, int dy, int dw, int dh, int mode) - - -// public void blend(PImage src, -// int sx, int sy, int sw, int sh, -// int dx, int dy, int dw, int dh, int mode) - - - - ////////////////////////////////////////////////////////////// - - // SAVE - - -// public void save(String filename) { -// loadPixels(); -// super.save(filename); -// } -} \ No newline at end of file diff --git a/core/src/processing/core/PImage.java b/core/src/processing/core/PImage.java deleted file mode 100644 index c9fa24780..000000000 --- a/core/src/processing/core/PImage.java +++ /dev/null @@ -1,2862 +0,0 @@ -/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */ - -/* - Part of the Processing project - http://processing.org - - Copyright (c) 2004-08 Ben Fry and Casey Reas - Copyright (c) 2001-04 Massachusetts Institute of Technology - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General - Public License along with this library; if not, write to the - Free Software Foundation, Inc., 59 Temple Place, Suite 330, - Boston, MA 02111-1307 USA -*/ - -package processing.core; - -import java.awt.image.*; -import java.io.*; -import java.util.HashMap; - -import javax.imageio.ImageIO; - - - - -/** - * Datatype for storing images. Processing can display .gif, .jpg, .tga, and .png images. Images may be displayed in 2D and 3D space. - * Before an image is used, it must be loaded with the loadImage() function. - * The PImage object contains fields for the width and height of the image, - * as well as an array called pixels[] which contains the values for every pixel in the image. - * A group of methods, described below, allow easy access to the image's pixels and alpha channel and simplify the process of compositing. - *

    Before using the pixels[] array, be sure to use the loadPixels() method on the image to make sure that the pixel data is properly loaded. - *

    To create a new image, use the createImage() function (do not use new PImage()). - * =advanced - * - * Storage class for pixel data. This is the base class for most image and - * pixel information, such as PGraphics and the video library classes. - *

    - * Code for copying, resizing, scaling, and blending contributed - * by toxi. - *

    - * - * @webref image - * @usage Web & Application - * @instanceName img any variable of type PImage - * @see processing.core.PApplet#loadImage(String) - * @see processing.core.PGraphics#imageMode(int) - * @see processing.core.PApplet#createImage(int, int) - */ -public class PImage implements PConstants, Cloneable { - - /** - * Format for this image, one of RGB, ARGB or ALPHA. - * note that RGB images still require 0xff in the high byte - * because of how they'll be manipulated by other functions - */ - public int format; - - /** - * Array containing the values for all the pixels in the image. These values are of the color datatype. - * This array is the size of the image, meaning if the image is 100x100 pixels, there will be 10000 values - * and if the window is 200x300 pixels, there will be 60000 values. - * The index value defines the position of a value within the array. - * For example, the statement color b = img.pixels[230] will set the variable b equal to the value at that location in the array. - * Before accessing this array, the data must loaded with the loadPixels() method. - * After the array data has been modified, the updatePixels() method must be run to update the changes. - * Without loadPixels(), running the code may (or will in future releases) result in a NullPointerException. - * @webref - * @brief Array containing the color of every pixel in the image - */ - public int[] pixels; - - /** - * The width of the image in units of pixels. - * @webref - * @brief Image width - */ - public int width; - /** - * The height of the image in units of pixels. - * @webref - * @brief Image height - */ - public int height; - - /** - * Path to parent object that will be used with save(). - * This prevents users from needing savePath() to use PImage.save(). - */ - public PApplet parent; - - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - - /** for subclasses that need to store info about the image */ - protected HashMap cacheMap; - - - /** modified portion of the image */ - protected boolean modified; - protected int mx1, my1, mx2, my2; - - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - - // private fields - private int fracU, ifU, fracV, ifV, u1, u2, v1, v2, sX, sY, iw, iw1, ih1; - private int ul, ll, ur, lr, cUL, cLL, cUR, cLR; - private int srcXOffset, srcYOffset; - private int r, g, b, a; - private int[] srcBuffer; - - // fixed point precision is limited to 15 bits!! - static final int PRECISIONB = 15; - static final int PRECISIONF = 1 << PRECISIONB; - static final int PREC_MAXVAL = PRECISIONF-1; - static final int PREC_ALPHA_SHIFT = 24-PRECISIONB; - static final int PREC_RED_SHIFT = 16-PRECISIONB; - - // internal kernel stuff for the gaussian blur filter - private int blurRadius; - private int blurKernelSize; - private int[] blurKernel; - private int[][] blurMult; - - - ////////////////////////////////////////////////////////////// - - - /** - * Create an empty image object, set its format to RGB. - * The pixel array is not allocated. - */ - public PImage() { - format = ARGB; // default to ARGB images for release 0116 -// cache = null; - } - - - /** - * Create a new RGB (alpha ignored) image of a specific size. - * All pixels are set to zero, meaning black, but since the - * alpha is zero, it will be transparent. - */ - public PImage(int width, int height) { - init(width, height, RGB); - - // toxi: is it maybe better to init the image with max alpha enabled? - //for(int i=0; i(); - cacheMap.put(parent, storage); - } - - - /** - * Get cache storage data for the specified renderer. Because each renderer - * will cache data in different formats, it's necessary to store cache data - * keyed by the renderer object. Otherwise, attempting to draw the same - * image to both a PGraphicsJava2D and a PGraphicsOpenGL will cause errors. - * @param parent The PGraphics object (or any object, really) associated - * @return data stored for the specified parent - */ - public Object getCache(Object parent) { - if (cacheMap == null) return null; - return cacheMap.get(parent); - } - - - /** - * Remove information associated with this renderer from the cache, if any. - * @param parent The PGraphics object whose cache data should be removed - */ - public void removeCache(Object parent) { - if (cacheMap != null) { - cacheMap.remove(parent); - } - } - - - - ////////////////////////////////////////////////////////////// - - // MARKING IMAGE AS MODIFIED / FOR USE w/ GET/SET - - - public boolean isModified() { // ignore - return modified; - } - - - public void setModified() { // ignore - modified = true; - } - - - public void setModified(boolean m) { // ignore - modified = m; - } - - - /** - * Loads the pixel data for the image into its pixels[] array. This function must always be called before reading from or writing to pixels[]. - *

    Certain renderers may or may not seem to require loadPixels() or updatePixels(). However, the rule is that any time you want to manipulate the pixels[] array, you must first call loadPixels(), and after changes have been made, call updatePixels(). Even if the renderer may not seem to use this function in the current Processing release, this will always be subject to change. - * =advanced - * Call this when you want to mess with the pixels[] array. - *

    - * For subclasses where the pixels[] buffer isn't set by default, - * this should copy all data into the pixels[] array - * - * @webref - * @brief Loads the pixel data for the image into its pixels[] array - */ - public void loadPixels() { // ignore - } - - public void updatePixels() { // ignore - updatePixelsImpl(0, 0, width, height); - } - - /** - * Updates the image with the data in its pixels[] array. Use in conjunction with loadPixels(). If you're only reading pixels from the array, there's no need to call updatePixels(). - *

    Certain renderers may or may not seem to require loadPixels() or updatePixels(). However, the rule is that any time you want to manipulate the pixels[] array, you must first call loadPixels(), and after changes have been made, call updatePixels(). Even if the renderer may not seem to use this function in the current Processing release, this will always be subject to change. - *

    Currently, none of the renderers use the additional parameters to updatePixels(), however this may be implemented in the future. - * =advanced - * Mark the pixels in this region as needing an update. - * This is not currently used by any of the renderers, however the api - * is structured this way in the hope of being able to use this to - * speed things up in the future. - * @webref - * @brief Updates the image with the data in its pixels[] array - * @param x - * @param y - * @param w - * @param h - */ - public void updatePixels(int x, int y, int w, int h) { // ignore -// if (imageMode == CORNER) { // x2, y2 are w/h -// x2 += x1; -// y2 += y1; -// -// } else if (imageMode == CENTER) { -// x1 -= x2 / 2; -// y1 -= y2 / 2; -// x2 += x1; -// y2 += y1; -// } - updatePixelsImpl(x, y, w, h); - } - - - protected void updatePixelsImpl(int x, int y, int w, int h) { - int x2 = x + w; - int y2 = y + h; - - if (!modified) { - mx1 = x; - mx2 = x2; - my1 = y; - my2 = y2; - modified = true; - - } else { - if (x < mx1) mx1 = x; - if (x > mx2) mx2 = x; - if (y < my1) my1 = y; - if (y > my2) my2 = y; - - if (x2 < mx1) mx1 = x2; - if (x2 > mx2) mx2 = x2; - if (y2 < my1) my1 = y2; - if (y2 > my2) my2 = y2; - } - } - - - - ////////////////////////////////////////////////////////////// - - // COPYING IMAGE DATA - - - /** - * Duplicate an image, returns new PImage object. - * The pixels[] array for the new object will be unique - * and recopied from the source image. This is implemented as an - * override of Object.clone(). We recommend using get() instead, - * because it prevents you from needing to catch the - * CloneNotSupportedException, and from doing a cast from the result. - */ - public Object clone() throws CloneNotSupportedException { // ignore - PImage c = (PImage) super.clone(); - - // super.clone() will only copy the reference to the pixels - // array, so this will do a proper duplication of it instead. - c.pixels = new int[width * height]; - System.arraycopy(pixels, 0, c.pixels, 0, pixels.length); - - // return the goods - return c; - } - - - /** - * Resize the image to a new width and height. To make the image scale proportionally, use 0 as the value for the wide or high parameter. - * - * @webref - * @brief Changes the size of an image to a new width and height - * @param wide the resized image width - * @param high the resized image height - * - * @see processing.core.PImage#get(int, int, int, int) - */ - public void resize(int wide, int high) { // ignore - // Make sure that the pixels[] array is valid - loadPixels(); - - if (wide <= 0 && high <= 0) { - width = 0; // Gimme a break, don't waste my time - height = 0; - pixels = new int[0]; - - } else { - if (wide == 0) { // Use height to determine relative size - float diff = (float) high / (float) height; - wide = (int) (width * diff); - } else if (high == 0) { // Use the width to determine relative size - float diff = (float) wide / (float) width; - high = (int) (height * diff); - } - PImage temp = new PImage(wide, high, this.format); - temp.copy(this, 0, 0, width, height, 0, 0, wide, high); - this.width = wide; - this.height = high; - this.pixels = temp.pixels; - } - // Mark the pixels array as altered - updatePixels(); - } - - - - ////////////////////////////////////////////////////////////// - - // GET/SET PIXELS - - - /** - * Returns an ARGB "color" type (a packed 32 bit int with the color. - * If the coordinate is outside the image, zero is returned - * (black, but completely transparent). - *

    - * If the image is in RGB format (i.e. on a PVideo object), - * the value will get its high bits set, just to avoid cases where - * they haven't been set already. - *

    - * If the image is in ALPHA format, this returns a white with its - * alpha value set. - *

    - * This function is included primarily for beginners. It is quite - * slow because it has to check to see if the x, y that was provided - * is inside the bounds, and then has to check to see what image - * type it is. If you want things to be more efficient, access the - * pixels[] array directly. - */ - public int get(int x, int y) { - if ((x < 0) || (y < 0) || (x >= width) || (y >= height)) return 0; - - switch (format) { - case RGB: - return pixels[y*width + x] | 0xff000000; - - case ARGB: - return pixels[y*width + x]; - - case ALPHA: - return (pixels[y*width + x] << 24) | 0xffffff; - } - return 0; - } - - - /** - * Reads the color of any pixel or grabs a group of pixels. If no parameters are specified, the entire image is returned. Get the value of one pixel by specifying an x,y coordinate. Get a section of the display window by specifing an additional width and height parameter. If the pixel requested is outside of the image window, black is returned. The numbers returned are scaled according to the current color ranges, but only RGB values are returned by this function. Even though you may have drawn a shape with colorMode(HSB), the numbers returned will be in RGB. - *

    Getting the color of a single pixel with get(x, y) is easy, but not as fast as grabbing the data directly from pixels[]. The equivalent statement to "get(x, y)" using pixels[] is "pixels[y*width+x]". Processing requires calling loadPixels() to load the display window data into the pixels[] array before getting the values. - *

    As of release 0149, this function ignores imageMode(). - * - * @webref - * @brief Reads the color of any pixel or grabs a rectangle of pixels - * @param x x-coordinate of the pixel - * @param y y-coordinate of the pixel - * @param w width of pixel rectangle to get - * @param h height of pixel rectangle to get - * - * @see processing.core.PImage#set(int, int, int) - * @see processing.core.PImage#pixels - * @see processing.core.PImage#copy(PImage, int, int, int, int, int, int, int, int) - */ - public PImage get(int x, int y, int w, int h) { - /* - if (imageMode == CORNERS) { // if CORNER, do nothing - //x2 += x1; y2 += y1; - // w/h are x2/y2 in this case, bring em down to size - w = (w - x); - h = (h - y); - } else if (imageMode == CENTER) { - x -= w/2; - y -= h/2; - } - */ - - if (x < 0) { - w += x; // clip off the left edge - x = 0; - } - if (y < 0) { - h += y; // clip off some of the height - y = 0; - } - - if (x + w > width) w = width - x; - if (y + h > height) h = height - y; - - return getImpl(x, y, w, h); - } - - - /** - * Internal function to actually handle getting a block of pixels that - * has already been properly cropped to a valid region. That is, x/y/w/h - * are guaranteed to be inside the image space, so the implementation can - * use the fastest possible pixel copying method. - */ - protected PImage getImpl(int x, int y, int w, int h) { - PImage newbie = new PImage(w, h, format); - newbie.parent = parent; - - int index = y*width + x; - int index2 = 0; - for (int row = y; row < y+h; row++) { - System.arraycopy(pixels, index, newbie.pixels, index2, w); - index += width; - index2 += w; - } - return newbie; - } - - - /** - * Returns a copy of this PImage. Equivalent to get(0, 0, width, height). - */ - public PImage get() { - try { - PImage clone = (PImage) clone(); - // don't want to pass this down to the others - // http://dev.processing.org/bugs/show_bug.cgi?id=1245 - clone.cacheMap = null; - return clone; - } catch (CloneNotSupportedException e) { - return null; - } - } - - - /** - * Changes the color of any pixel or writes an image directly into the display window. The x and y parameters specify the pixel to change and the color parameter specifies the color value. The color parameter is affected by the current color mode (the default is RGB values from 0 to 255). When setting an image, the x and y parameters define the coordinates for the upper-left corner of the image. - *

    Setting the color of a single pixel with set(x, y) is easy, but not as fast as putting the data directly into pixels[]. The equivalent statement to "set(x, y, #000000)" using pixels[] is "pixels[y*width+x] = #000000". You must call loadPixels() to load the display window data into the pixels[] array before setting the values and calling updatePixels() to update the window with any changes. - *

    As of release 1.0, this function ignores imageMode(). - *

    Due to what appears to be a bug in Apple's Java implementation, the point() and set() methods are extremely slow in some circumstances when used with the default renderer. Using P2D or P3D will fix the problem. Grouping many calls to point() or set() together can also help. (Bug 1094) - * =advanced - *

    As of release 0149, this function ignores imageMode(). - * - * @webref image:pixels - * @param x x-coordinate of the pixel - * @param y y-coordinate of the pixel - * @param c any value of the color datatype - */ - public void set(int x, int y, int c) { - if ((x < 0) || (y < 0) || (x >= width) || (y >= height)) return; - pixels[y*width + x] = c; - updatePixelsImpl(x, y, x+1, y+1); // slow? - } - - - /** - * Efficient method of drawing an image's pixels directly to this surface. - * No variations are employed, meaning that any scale, tint, or imageMode - * settings will be ignored. - */ - public void set(int x, int y, PImage src) { - int sx = 0; - int sy = 0; - int sw = src.width; - int sh = src.height; - -// if (imageMode == CENTER) { -// x -= src.width/2; -// y -= src.height/2; -// } - if (x < 0) { // off left edge - sx -= x; - sw += x; - x = 0; - } - if (y < 0) { // off top edge - sy -= y; - sh += y; - y = 0; - } - if (x + sw > width) { // off right edge - sw = width - x; - } - if (y + sh > height) { // off bottom edge - sh = height - y; - } - - // this could be nonexistant - if ((sw <= 0) || (sh <= 0)) return; - - setImpl(x, y, sx, sy, sw, sh, src); - } - - - /** - * Internal function to actually handle setting a block of pixels that - * has already been properly cropped from the image to a valid region. - */ - protected void setImpl(int dx, int dy, int sx, int sy, int sw, int sh, - PImage src) { - int srcOffset = sy * src.width + sx; - int dstOffset = dy * width + dx; - - for (int y = sy; y < sy + sh; y++) { - System.arraycopy(src.pixels, srcOffset, pixels, dstOffset, sw); - srcOffset += src.width; - dstOffset += width; - } - updatePixelsImpl(sx, sy, sx+sw, sy+sh); - } - - - - ////////////////////////////////////////////////////////////// - - // ALPHA CHANNEL - - - /** - * Set alpha channel for an image. Black colors in the source - * image will make the destination image completely transparent, - * and white will make things fully opaque. Gray values will - * be in-between steps. - *

    - * Strictly speaking the "blue" value from the source image is - * used as the alpha color. For a fully grayscale image, this - * is correct, but for a color image it's not 100% accurate. - * For a more accurate conversion, first use filter(GRAY) - * which will make the image into a "correct" grayscale by - * performing a proper luminance-based conversion. - * - * @param maskArray any array of Integer numbers used as the alpha channel, needs to be same length as the image's pixel array - */ - public void mask(int maskArray[]) { - loadPixels(); - // don't execute if mask image is different size - if (maskArray.length != pixels.length) { - throw new RuntimeException("The PImage used with mask() must be " + - "the same size as the applet."); - } - for (int i = 0; i < pixels.length; i++) { - pixels[i] = ((maskArray[i] & 0xff) << 24) | (pixels[i] & 0xffffff); - } - format = ARGB; - updatePixels(); - } - - - /** - * Masks part of an image from displaying by loading another image and using it as an alpha channel. - * This mask image should only contain grayscale data, but only the blue color channel is used. - * The mask image needs to be the same size as the image to which it is applied. - * In addition to using a mask image, an integer array containing the alpha channel data can be specified directly. - * This method is useful for creating dynamically generated alpha masks. - * This array must be of the same length as the target image's pixels array and should contain only grayscale data of values between 0-255. - * @webref - * @brief Masks part of the image from displaying - * @param maskImg any PImage object used as the alpha channel for "img", needs to be same size as "img" - */ - public void mask(PImage maskImg) { - maskImg.loadPixels(); - mask(maskImg.pixels); - } - - - - ////////////////////////////////////////////////////////////// - - // IMAGE FILTERS - public void filter(int kind) { - loadPixels(); - - switch (kind) { - case BLUR: - // TODO write basic low-pass filter blur here - // what does photoshop do on the edges with this guy? - // better yet.. why bother? just use gaussian with radius 1 - filter(BLUR, 1); - break; - - case GRAY: - if (format == ALPHA) { - // for an alpha image, convert it to an opaque grayscale - for (int i = 0; i < pixels.length; i++) { - int col = 255 - pixels[i]; - pixels[i] = 0xff000000 | (col << 16) | (col << 8) | col; - } - format = RGB; - - } else { - // Converts RGB image data into grayscale using - // weighted RGB components, and keeps alpha channel intact. - // [toxi 040115] - for (int i = 0; i < pixels.length; i++) { - int col = pixels[i]; - // luminance = 0.3*red + 0.59*green + 0.11*blue - // 0.30 * 256 = 77 - // 0.59 * 256 = 151 - // 0.11 * 256 = 28 - int lum = (77*(col>>16&0xff) + 151*(col>>8&0xff) + 28*(col&0xff))>>8; - pixels[i] = (col & ALPHA_MASK) | lum<<16 | lum<<8 | lum; - } - } - break; - - case INVERT: - for (int i = 0; i < pixels.length; i++) { - //pixels[i] = 0xff000000 | - pixels[i] ^= 0xffffff; - } - break; - - case POSTERIZE: - throw new RuntimeException("Use filter(POSTERIZE, int levels) " + - "instead of filter(POSTERIZE)"); - - case OPAQUE: - for (int i = 0; i < pixels.length; i++) { - pixels[i] |= 0xff000000; - } - format = RGB; - break; - - case THRESHOLD: - filter(THRESHOLD, 0.5f); - break; - - // [toxi20050728] added new filters - case ERODE: - dilate(true); - break; - - case DILATE: - dilate(false); - break; - } - updatePixels(); // mark as modified - } - - - /** - * Filters an image as defined by one of the following modes:

    THRESHOLD - converts the image to black and white pixels depending if they are above or below the threshold defined by the level parameter. The level must be between 0.0 (black) and 1.0(white). If no level is specified, 0.5 is used.

    GRAY - converts any colors in the image to grayscale equivalents

    INVERT - sets each pixel to its inverse value

    POSTERIZE - limits each channel of the image to the number of colors specified as the level parameter

    BLUR - executes a Guassian blur with the level parameter specifying the extent of the blurring. If no level parameter is used, the blur is equivalent to Guassian blur of radius 1.

    OPAQUE - sets the alpha channel to entirely opaque.

    ERODE - reduces the light areas with the amount defined by the level parameter.

    DILATE - increases the light areas with the amount defined by the level parameter - * =advanced - * Method to apply a variety of basic filters to this image. - *

    - *

      - *
    • filter(BLUR) provides a basic blur. - *
    • filter(GRAY) converts the image to grayscale based on luminance. - *
    • filter(INVERT) will invert the color components in the image. - *
    • filter(OPAQUE) set all the high bits in the image to opaque - *
    • filter(THRESHOLD) converts the image to black and white. - *
    • filter(DILATE) grow white/light areas - *
    • filter(ERODE) shrink white/light areas - *
    - * Luminance conversion code contributed by - * toxi - *

    - * Gaussian blur code contributed by - * Mario Klingemann - * - * @webref - * @brief Converts the image to grayscale or black and white - * @param kind Either THRESHOLD, GRAY, INVERT, POSTERIZE, BLUR, OPAQUE, ERODE, or DILATE - * @param param in the range from 0 to 1 - */ - public void filter(int kind, float param) { - loadPixels(); - - switch (kind) { - case BLUR: - if (format == ALPHA) - blurAlpha(param); - else if (format == ARGB) - blurARGB(param); - else - blurRGB(param); - break; - - case GRAY: - throw new RuntimeException("Use filter(GRAY) instead of " + - "filter(GRAY, param)"); - - case INVERT: - throw new RuntimeException("Use filter(INVERT) instead of " + - "filter(INVERT, param)"); - - case OPAQUE: - throw new RuntimeException("Use filter(OPAQUE) instead of " + - "filter(OPAQUE, param)"); - - case POSTERIZE: - int levels = (int)param; - if ((levels < 2) || (levels > 255)) { - throw new RuntimeException("Levels must be between 2 and 255 for " + - "filter(POSTERIZE, levels)"); - } - int levels1 = levels - 1; - for (int i = 0; i < pixels.length; i++) { - int rlevel = (pixels[i] >> 16) & 0xff; - int glevel = (pixels[i] >> 8) & 0xff; - int blevel = pixels[i] & 0xff; - rlevel = (((rlevel * levels) >> 8) * 255) / levels1; - glevel = (((glevel * levels) >> 8) * 255) / levels1; - blevel = (((blevel * levels) >> 8) * 255) / levels1; - pixels[i] = ((0xff000000 & pixels[i]) | - (rlevel << 16) | - (glevel << 8) | - blevel); - } - break; - - case THRESHOLD: // greater than or equal to the threshold - int thresh = (int) (param * 255); - for (int i = 0; i < pixels.length; i++) { - int max = Math.max((pixels[i] & RED_MASK) >> 16, - Math.max((pixels[i] & GREEN_MASK) >> 8, - (pixels[i] & BLUE_MASK))); - pixels[i] = (pixels[i] & ALPHA_MASK) | - ((max < thresh) ? 0x000000 : 0xffffff); - } - break; - - // [toxi20050728] added new filters - case ERODE: - throw new RuntimeException("Use filter(ERODE) instead of " + - "filter(ERODE, param)"); - case DILATE: - throw new RuntimeException("Use filter(DILATE) instead of " + - "filter(DILATE, param)"); - } - updatePixels(); // mark as modified - } - - - /** - * Optimized code for building the blur kernel. - * further optimized blur code (approx. 15% for radius=20) - * bigger speed gains for larger radii (~30%) - * added support for various image types (ALPHA, RGB, ARGB) - * [toxi 050728] - */ - protected void buildBlurKernel(float r) { - int radius = (int) (r * 3.5f); - radius = (radius < 1) ? 1 : ((radius < 248) ? radius : 248); - if (blurRadius != radius) { - blurRadius = radius; - blurKernelSize = 1 + blurRadius<<1; - blurKernel = new int[blurKernelSize]; - blurMult = new int[blurKernelSize][256]; - - int bk,bki; - int[] bm,bmi; - - for (int i = 1, radiusi = radius - 1; i < radius; i++) { - blurKernel[radius+i] = blurKernel[radiusi] = bki = radiusi * radiusi; - bm=blurMult[radius+i]; - bmi=blurMult[radiusi--]; - for (int j = 0; j < 256; j++) - bm[j] = bmi[j] = bki*j; - } - bk = blurKernel[radius] = radius * radius; - bm = blurMult[radius]; - for (int j = 0; j < 256; j++) - bm[j] = bk*j; - } - } - - - protected void blurAlpha(float r) { - int sum, cb; - int read, ri, ym, ymi, bk0; - int b2[] = new int[pixels.length]; - int yi = 0; - - buildBlurKernel(r); - - for (int y = 0; y < height; y++) { - for (int x = 0; x < width; x++) { - //cb = cg = cr = sum = 0; - cb = sum = 0; - read = x - blurRadius; - if (read<0) { - bk0=-read; - read=0; - } else { - if (read >= width) - break; - bk0=0; - } - for (int i = bk0; i < blurKernelSize; i++) { - if (read >= width) - break; - int c = pixels[read + yi]; - int[] bm=blurMult[i]; - cb += bm[c & BLUE_MASK]; - sum += blurKernel[i]; - read++; - } - ri = yi + x; - b2[ri] = cb / sum; - } - yi += width; - } - - yi = 0; - ym=-blurRadius; - ymi=ym*width; - - for (int y = 0; y < height; y++) { - for (int x = 0; x < width; x++) { - //cb = cg = cr = sum = 0; - cb = sum = 0; - if (ym<0) { - bk0 = ri = -ym; - read = x; - } else { - if (ym >= height) - break; - bk0 = 0; - ri = ym; - read = x + ymi; - } - for (int i = bk0; i < blurKernelSize; i++) { - if (ri >= height) - break; - int[] bm=blurMult[i]; - cb += bm[b2[read]]; - sum += blurKernel[i]; - ri++; - read += width; - } - pixels[x+yi] = (cb/sum); - } - yi += width; - ymi += width; - ym++; - } - } - - - protected void blurRGB(float r) { - int sum, cr, cg, cb; //, k; - int /*pixel,*/ read, ri, /*roff,*/ ym, ymi, /*riw,*/ bk0; - int r2[] = new int[pixels.length]; - int g2[] = new int[pixels.length]; - int b2[] = new int[pixels.length]; - int yi = 0; - - buildBlurKernel(r); - - for (int y = 0; y < height; y++) { - for (int x = 0; x < width; x++) { - cb = cg = cr = sum = 0; - read = x - blurRadius; - if (read<0) { - bk0=-read; - read=0; - } else { - if (read >= width) - break; - bk0=0; - } - for (int i = bk0; i < blurKernelSize; i++) { - if (read >= width) - break; - int c = pixels[read + yi]; - int[] bm=blurMult[i]; - cr += bm[(c & RED_MASK) >> 16]; - cg += bm[(c & GREEN_MASK) >> 8]; - cb += bm[c & BLUE_MASK]; - sum += blurKernel[i]; - read++; - } - ri = yi + x; - r2[ri] = cr / sum; - g2[ri] = cg / sum; - b2[ri] = cb / sum; - } - yi += width; - } - - yi = 0; - ym=-blurRadius; - ymi=ym*width; - - for (int y = 0; y < height; y++) { - for (int x = 0; x < width; x++) { - cb = cg = cr = sum = 0; - if (ym<0) { - bk0 = ri = -ym; - read = x; - } else { - if (ym >= height) - break; - bk0 = 0; - ri = ym; - read = x + ymi; - } - for (int i = bk0; i < blurKernelSize; i++) { - if (ri >= height) - break; - int[] bm=blurMult[i]; - cr += bm[r2[read]]; - cg += bm[g2[read]]; - cb += bm[b2[read]]; - sum += blurKernel[i]; - ri++; - read += width; - } - pixels[x+yi] = 0xff000000 | (cr/sum)<<16 | (cg/sum)<<8 | (cb/sum); - } - yi += width; - ymi += width; - ym++; - } - } - - - protected void blurARGB(float r) { - int sum, cr, cg, cb, ca; - int /*pixel,*/ read, ri, /*roff,*/ ym, ymi, /*riw,*/ bk0; - int wh = pixels.length; - int r2[] = new int[wh]; - int g2[] = new int[wh]; - int b2[] = new int[wh]; - int a2[] = new int[wh]; - int yi = 0; - - buildBlurKernel(r); - - for (int y = 0; y < height; y++) { - for (int x = 0; x < width; x++) { - cb = cg = cr = ca = sum = 0; - read = x - blurRadius; - if (read<0) { - bk0=-read; - read=0; - } else { - if (read >= width) - break; - bk0=0; - } - for (int i = bk0; i < blurKernelSize; i++) { - if (read >= width) - break; - int c = pixels[read + yi]; - int[] bm=blurMult[i]; - ca += bm[(c & ALPHA_MASK) >>> 24]; - cr += bm[(c & RED_MASK) >> 16]; - cg += bm[(c & GREEN_MASK) >> 8]; - cb += bm[c & BLUE_MASK]; - sum += blurKernel[i]; - read++; - } - ri = yi + x; - a2[ri] = ca / sum; - r2[ri] = cr / sum; - g2[ri] = cg / sum; - b2[ri] = cb / sum; - } - yi += width; - } - - yi = 0; - ym=-blurRadius; - ymi=ym*width; - - for (int y = 0; y < height; y++) { - for (int x = 0; x < width; x++) { - cb = cg = cr = ca = sum = 0; - if (ym<0) { - bk0 = ri = -ym; - read = x; - } else { - if (ym >= height) - break; - bk0 = 0; - ri = ym; - read = x + ymi; - } - for (int i = bk0; i < blurKernelSize; i++) { - if (ri >= height) - break; - int[] bm=blurMult[i]; - ca += bm[a2[read]]; - cr += bm[r2[read]]; - cg += bm[g2[read]]; - cb += bm[b2[read]]; - sum += blurKernel[i]; - ri++; - read += width; - } - pixels[x+yi] = (ca/sum)<<24 | (cr/sum)<<16 | (cg/sum)<<8 | (cb/sum); - } - yi += width; - ymi += width; - ym++; - } - } - - - /** - * Generic dilate/erode filter using luminance values - * as decision factor. [toxi 050728] - */ - protected void dilate(boolean isInverted) { - int currIdx=0; - int maxIdx=pixels.length; - int[] out=new int[maxIdx]; - - if (!isInverted) { - // erosion (grow light areas) - while (currIdx=maxRowIdx) - idxRight=currIdx; - if (idxUp<0) - idxUp=currIdx; - if (idxDown>=maxIdx) - idxDown=currIdx; - - int colUp=pixels[idxUp]; - int colLeft=pixels[idxLeft]; - int colDown=pixels[idxDown]; - int colRight=pixels[idxRight]; - - // compute luminance - int currLum = - 77*(colOrig>>16&0xff) + 151*(colOrig>>8&0xff) + 28*(colOrig&0xff); - int lumLeft = - 77*(colLeft>>16&0xff) + 151*(colLeft>>8&0xff) + 28*(colLeft&0xff); - int lumRight = - 77*(colRight>>16&0xff) + 151*(colRight>>8&0xff) + 28*(colRight&0xff); - int lumUp = - 77*(colUp>>16&0xff) + 151*(colUp>>8&0xff) + 28*(colUp&0xff); - int lumDown = - 77*(colDown>>16&0xff) + 151*(colDown>>8&0xff) + 28*(colDown&0xff); - - if (lumLeft>currLum) { - colOut=colLeft; - currLum=lumLeft; - } - if (lumRight>currLum) { - colOut=colRight; - currLum=lumRight; - } - if (lumUp>currLum) { - colOut=colUp; - currLum=lumUp; - } - if (lumDown>currLum) { - colOut=colDown; - currLum=lumDown; - } - out[currIdx++]=colOut; - } - } - } else { - // dilate (grow dark areas) - while (currIdx=maxRowIdx) - idxRight=currIdx; - if (idxUp<0) - idxUp=currIdx; - if (idxDown>=maxIdx) - idxDown=currIdx; - - int colUp=pixels[idxUp]; - int colLeft=pixels[idxLeft]; - int colDown=pixels[idxDown]; - int colRight=pixels[idxRight]; - - // compute luminance - int currLum = - 77*(colOrig>>16&0xff) + 151*(colOrig>>8&0xff) + 28*(colOrig&0xff); - int lumLeft = - 77*(colLeft>>16&0xff) + 151*(colLeft>>8&0xff) + 28*(colLeft&0xff); - int lumRight = - 77*(colRight>>16&0xff) + 151*(colRight>>8&0xff) + 28*(colRight&0xff); - int lumUp = - 77*(colUp>>16&0xff) + 151*(colUp>>8&0xff) + 28*(colUp&0xff); - int lumDown = - 77*(colDown>>16&0xff) + 151*(colDown>>8&0xff) + 28*(colDown&0xff); - - if (lumLeft
    As of release 0149, this function ignores imageMode(). - * - * @webref - * @brief Copies the entire image - * @param sx X coordinate of the source's upper left corner - * @param sy Y coordinate of the source's upper left corner - * @param sw source image width - * @param sh source image height - * @param dx X coordinate of the destination's upper left corner - * @param dy Y coordinate of the destination's upper left corner - * @param dw destination image width - * @param dh destination image height - * @param src an image variable referring to the source image. - * - * @see processing.core.PGraphics#alpha(int) - * @see processing.core.PImage#blend(PImage, int, int, int, int, int, int, int, int, int) - */ - public void copy(PImage src, - int sx, int sy, int sw, int sh, - int dx, int dy, int dw, int dh) { - blend(src, sx, sy, sw, sh, dx, dy, dw, dh, REPLACE); - } - - - - ////////////////////////////////////////////////////////////// - - // BLEND - - - /** - * Blend two colors based on a particular mode. - *

      - *
    • REPLACE - destination colour equals colour of source pixel: C = A. - * Sometimes called "Normal" or "Copy" in other software. - * - *
    • BLEND - linear interpolation of colours: - * C = A*factor + B - * - *
    • ADD - additive blending with white clip: - * C = min(A*factor + B, 255). - * Clipped to 0..255, Photoshop calls this "Linear Burn", - * and Director calls it "Add Pin". - * - *
    • SUBTRACT - substractive blend with black clip: - * C = max(B - A*factor, 0). - * Clipped to 0..255, Photoshop calls this "Linear Dodge", - * and Director calls it "Subtract Pin". - * - *
    • DARKEST - only the darkest colour succeeds: - * C = min(A*factor, B). - * Illustrator calls this "Darken". - * - *
    • LIGHTEST - only the lightest colour succeeds: - * C = max(A*factor, B). - * Illustrator calls this "Lighten". - * - *
    • DIFFERENCE - subtract colors from underlying image. - * - *
    • EXCLUSION - similar to DIFFERENCE, but less extreme. - * - *
    • MULTIPLY - Multiply the colors, result will always be darker. - * - *
    • SCREEN - Opposite multiply, uses inverse values of the colors. - * - *
    • OVERLAY - A mix of MULTIPLY and SCREEN. Multiplies dark values, - * and screens light values. - * - *
    • HARD_LIGHT - SCREEN when greater than 50% gray, MULTIPLY when lower. - * - *
    • SOFT_LIGHT - Mix of DARKEST and LIGHTEST. - * Works like OVERLAY, but not as harsh. - * - *
    • DODGE - Lightens light tones and increases contrast, ignores darks. - * Called "Color Dodge" in Illustrator and Photoshop. - * - *
    • BURN - Darker areas are applied, increasing contrast, ignores lights. - * Called "Color Burn" in Illustrator and Photoshop. - *
    - *

    A useful reference for blending modes and their algorithms can be - * found in the SVG - * specification.

    - *

    It is important to note that Processing uses "fast" code, not - * necessarily "correct" code. No biggie, most software does. A nitpicker - * can find numerous "off by 1 division" problems in the blend code where - * >>8 or >>7 is used when strictly speaking - * /255.0 or /127.0 should have been used.

    - *

    For instance, exclusion (not intended for real-time use) reads - * r1 + r2 - ((2 * r1 * r2) / 255) because 255 == 1.0 - * not 256 == 1.0. In other words, (255*255)>>8 is not - * the same as (255*255)/255. But for real-time use the shifts - * are preferrable, and the difference is insignificant for applications - * built with Processing.

    - */ - static public int blendColor(int c1, int c2, int mode) { - switch (mode) { - case REPLACE: return c2; - case BLEND: return blend_blend(c1, c2); - - case ADD: return blend_add_pin(c1, c2); - case SUBTRACT: return blend_sub_pin(c1, c2); - - case LIGHTEST: return blend_lightest(c1, c2); - case DARKEST: return blend_darkest(c1, c2); - - case DIFFERENCE: return blend_difference(c1, c2); - case EXCLUSION: return blend_exclusion(c1, c2); - - case MULTIPLY: return blend_multiply(c1, c2); - case SCREEN: return blend_screen(c1, c2); - - case HARD_LIGHT: return blend_hard_light(c1, c2); - case SOFT_LIGHT: return blend_soft_light(c1, c2); - case OVERLAY: return blend_overlay(c1, c2); - - case DODGE: return blend_dodge(c1, c2); - case BURN: return blend_burn(c1, c2); - } - return 0; - } - - - /** - * Blends one area of this image to another area. - * - * @see processing.core.PImage#blendColor(int,int,int) - */ - public void blend(int sx, int sy, int sw, int sh, - int dx, int dy, int dw, int dh, int mode) { - blend(this, sx, sy, sw, sh, dx, dy, dw, dh, mode); - } - - - /** - * Blends a region of pixels into the image specified by the img parameter. These copies utilize full alpha channel support and a choice of the following modes to blend the colors of source pixels (A) with the ones of pixels in the destination image (B):

    - * BLEND - linear interpolation of colours: C = A*factor + B

    - * ADD - additive blending with white clip: C = min(A*factor + B, 255)

    - * SUBTRACT - subtractive blending with black clip: C = max(B - A*factor, 0)

    - * DARKEST - only the darkest colour succeeds: C = min(A*factor, B)

    - * LIGHTEST - only the lightest colour succeeds: C = max(A*factor, B)

    - * DIFFERENCE - subtract colors from underlying image.

    - * EXCLUSION - similar to DIFFERENCE, but less extreme.

    - * MULTIPLY - Multiply the colors, result will always be darker.

    - * SCREEN - Opposite multiply, uses inverse values of the colors.

    - * OVERLAY - A mix of MULTIPLY and SCREEN. Multiplies dark values, and screens light values.

    - * HARD_LIGHT - SCREEN when greater than 50% gray, MULTIPLY when lower.

    - * SOFT_LIGHT - Mix of DARKEST and LIGHTEST. Works like OVERLAY, but not as harsh.

    - * DODGE - Lightens light tones and increases contrast, ignores darks. Called "Color Dodge" in Illustrator and Photoshop.

    - * BURN - Darker areas are applied, increasing contrast, ignores lights. Called "Color Burn" in Illustrator and Photoshop.

    - * All modes use the alpha information (highest byte) of source image pixels as the blending factor. If the source and destination regions are different sizes, the image will be automatically resized to match the destination size. If the srcImg parameter is not used, the display window is used as the source image.

    - * As of release 0149, this function ignores imageMode(). - * - * @webref - * @brief Copies a pixel or rectangle of pixels using different blending modes - * @param src an image variable referring to the source image - * @param sx X coordinate of the source's upper left corner - * @param sy Y coordinate of the source's upper left corner - * @param sw source image width - * @param sh source image height - * @param dx X coordinate of the destinations's upper left corner - * @param dy Y coordinate of the destinations's upper left corner - * @param dw destination image width - * @param dh destination image height - * @param mode Either BLEND, ADD, SUBTRACT, LIGHTEST, DARKEST, DIFFERENCE, EXCLUSION, MULTIPLY, SCREEN, OVERLAY, HARD_LIGHT, SOFT_LIGHT, DODGE, BURN - * - * @see processing.core.PGraphics#alpha(int) - * @see processing.core.PGraphics#copy(PImage, int, int, int, int, int, int, int, int) - * @see processing.core.PImage#blendColor(int,int,int) - */ - public void blend(PImage src, - int sx, int sy, int sw, int sh, - int dx, int dy, int dw, int dh, int mode) { - /* - if (imageMode == CORNER) { // if CORNERS, do nothing - sx2 += sx1; - sy2 += sy1; - dx2 += dx1; - dy2 += dy1; - - } else if (imageMode == CENTER) { - sx1 -= sx2 / 2f; - sy1 -= sy2 / 2f; - sx2 += sx1; - sy2 += sy1; - dx1 -= dx2 / 2f; - dy1 -= dy2 / 2f; - dx2 += dx1; - dy2 += dy1; - } - */ - int sx2 = sx + sw; - int sy2 = sy + sh; - int dx2 = dx + dw; - int dy2 = dy + dh; - - loadPixels(); - if (src == this) { - if (intersect(sx, sy, sx2, sy2, dx, dy, dx2, dy2)) { - blit_resize(get(sx, sy, sx2 - sx, sy2 - sy), - 0, 0, sx2 - sx - 1, sy2 - sy - 1, - pixels, width, height, dx, dy, dx2, dy2, mode); - } else { - // same as below, except skip the loadPixels() because it'd be redundant - blit_resize(src, sx, sy, sx2, sy2, - pixels, width, height, dx, dy, dx2, dy2, mode); - } - } else { - src.loadPixels(); - blit_resize(src, sx, sy, sx2, sy2, - pixels, width, height, dx, dy, dx2, dy2, mode); - //src.updatePixels(); - } - updatePixels(); - } - - - /** - * Check to see if two rectangles intersect one another - */ - private boolean intersect(int sx1, int sy1, int sx2, int sy2, - int dx1, int dy1, int dx2, int dy2) { - int sw = sx2 - sx1 + 1; - int sh = sy2 - sy1 + 1; - int dw = dx2 - dx1 + 1; - int dh = dy2 - dy1 + 1; - - if (dx1 < sx1) { - dw += dx1 - sx1; - if (dw > sw) { - dw = sw; - } - } else { - int w = sw + sx1 - dx1; - if (dw > w) { - dw = w; - } - } - if (dy1 < sy1) { - dh += dy1 - sy1; - if (dh > sh) { - dh = sh; - } - } else { - int h = sh + sy1 - dy1; - if (dh > h) { - dh = h; - } - } - return !(dw <= 0 || dh <= 0); - } - - - ////////////////////////////////////////////////////////////// - - - /** - * Internal blitter/resizer/copier from toxi. - * Uses bilinear filtering if smooth() has been enabled - * 'mode' determines the blending mode used in the process. - */ - private void blit_resize(PImage img, - int srcX1, int srcY1, int srcX2, int srcY2, - int[] destPixels, int screenW, int screenH, - int destX1, int destY1, int destX2, int destY2, - int mode) { - if (srcX1 < 0) srcX1 = 0; - if (srcY1 < 0) srcY1 = 0; - if (srcX2 >= img.width) srcX2 = img.width - 1; - if (srcY2 >= img.height) srcY2 = img.height - 1; - - int srcW = srcX2 - srcX1; - int srcH = srcY2 - srcY1; - int destW = destX2 - destX1; - int destH = destY2 - destY1; - - boolean smooth = true; // may as well go with the smoothing these days - - if (!smooth) { - srcW++; srcH++; - } - - if (destW <= 0 || destH <= 0 || - srcW <= 0 || srcH <= 0 || - destX1 >= screenW || destY1 >= screenH || - srcX1 >= img.width || srcY1 >= img.height) { - return; - } - - int dx = (int) (srcW / (float) destW * PRECISIONF); - int dy = (int) (srcH / (float) destH * PRECISIONF); - - srcXOffset = (int) (destX1 < 0 ? -destX1 * dx : srcX1 * PRECISIONF); - srcYOffset = (int) (destY1 < 0 ? -destY1 * dy : srcY1 * PRECISIONF); - - if (destX1 < 0) { - destW += destX1; - destX1 = 0; - } - if (destY1 < 0) { - destH += destY1; - destY1 = 0; - } - - destW = low(destW, screenW - destX1); - destH = low(destH, screenH - destY1); - - int destOffset = destY1 * screenW + destX1; - srcBuffer = img.pixels; - - if (smooth) { - // use bilinear filtering - iw = img.width; - iw1 = img.width - 1; - ih1 = img.height - 1; - - switch (mode) { - - case BLEND: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - // davbol - renamed old blend_multiply to blend_blend - destPixels[destOffset + x] = - blend_blend(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case ADD: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_add_pin(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case SUBTRACT: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_sub_pin(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case LIGHTEST: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_lightest(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case DARKEST: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_darkest(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case REPLACE: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = filter_bilinear(); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case DIFFERENCE: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_difference(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case EXCLUSION: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_exclusion(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case MULTIPLY: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_multiply(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case SCREEN: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_screen(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case OVERLAY: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_overlay(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case HARD_LIGHT: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_hard_light(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case SOFT_LIGHT: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_soft_light(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - // davbol - proposed 2007-01-09 - case DODGE: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_dodge(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case BURN: - for (int y = 0; y < destH; y++) { - filter_new_scanline(); - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_burn(destPixels[destOffset + x], filter_bilinear()); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - } - - } else { - // nearest neighbour scaling (++fast!) - switch (mode) { - - case BLEND: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - // davbol - renamed old blend_multiply to blend_blend - destPixels[destOffset + x] = - blend_blend(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case ADD: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_add_pin(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case SUBTRACT: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_sub_pin(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case LIGHTEST: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_lightest(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case DARKEST: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_darkest(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case REPLACE: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = srcBuffer[sY + (sX >> PRECISIONB)]; - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case DIFFERENCE: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_difference(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case EXCLUSION: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_exclusion(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case MULTIPLY: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_multiply(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case SCREEN: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_screen(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case OVERLAY: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_overlay(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case HARD_LIGHT: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_hard_light(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case SOFT_LIGHT: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_soft_light(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - // davbol - proposed 2007-01-09 - case DODGE: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_dodge(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - case BURN: - for (int y = 0; y < destH; y++) { - sX = srcXOffset; - sY = (srcYOffset >> PRECISIONB) * img.width; - for (int x = 0; x < destW; x++) { - destPixels[destOffset + x] = - blend_burn(destPixels[destOffset + x], - srcBuffer[sY + (sX >> PRECISIONB)]); - sX += dx; - } - destOffset += screenW; - srcYOffset += dy; - } - break; - - } - } - } - - - private void filter_new_scanline() { - sX = srcXOffset; - fracV = srcYOffset & PREC_MAXVAL; - ifV = PREC_MAXVAL - fracV; - v1 = (srcYOffset >> PRECISIONB) * iw; - v2 = low((srcYOffset >> PRECISIONB) + 1, ih1) * iw; - } - - - private int filter_bilinear() { - fracU = sX & PREC_MAXVAL; - ifU = PREC_MAXVAL - fracU; - ul = (ifU * ifV) >> PRECISIONB; - ll = (ifU * fracV) >> PRECISIONB; - ur = (fracU * ifV) >> PRECISIONB; - lr = (fracU * fracV) >> PRECISIONB; - u1 = (sX >> PRECISIONB); - u2 = low(u1 + 1, iw1); - - // get color values of the 4 neighbouring texels - cUL = srcBuffer[v1 + u1]; - cUR = srcBuffer[v1 + u2]; - cLL = srcBuffer[v2 + u1]; - cLR = srcBuffer[v2 + u2]; - - r = ((ul*((cUL&RED_MASK)>>16) + ll*((cLL&RED_MASK)>>16) + - ur*((cUR&RED_MASK)>>16) + lr*((cLR&RED_MASK)>>16)) - << PREC_RED_SHIFT) & RED_MASK; - - g = ((ul*(cUL&GREEN_MASK) + ll*(cLL&GREEN_MASK) + - ur*(cUR&GREEN_MASK) + lr*(cLR&GREEN_MASK)) - >>> PRECISIONB) & GREEN_MASK; - - b = (ul*(cUL&BLUE_MASK) + ll*(cLL&BLUE_MASK) + - ur*(cUR&BLUE_MASK) + lr*(cLR&BLUE_MASK)) - >>> PRECISIONB; - - a = ((ul*((cUL&ALPHA_MASK)>>>24) + ll*((cLL&ALPHA_MASK)>>>24) + - ur*((cUR&ALPHA_MASK)>>>24) + lr*((cLR&ALPHA_MASK)>>>24)) - << PREC_ALPHA_SHIFT) & ALPHA_MASK; - - return a | r | g | b; - } - - - - ////////////////////////////////////////////////////////////// - - // internal blending methods - - - private static int low(int a, int b) { - return (a < b) ? a : b; - } - - - private static int high(int a, int b) { - return (a > b) ? a : b; - } - - // davbol - added peg helper, equiv to constrain(n,0,255) - private static int peg(int n) { - return (n < 0) ? 0 : ((n > 255) ? 255 : n); - } - - private static int mix(int a, int b, int f) { - return a + (((b - a) * f) >> 8); - } - - - - ///////////////////////////////////////////////////////////// - - // BLEND MODE IMPLEMENTIONS - - - private static int blend_blend(int a, int b) { - int f = (b & ALPHA_MASK) >>> 24; - - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - mix(a & RED_MASK, b & RED_MASK, f) & RED_MASK | - mix(a & GREEN_MASK, b & GREEN_MASK, f) & GREEN_MASK | - mix(a & BLUE_MASK, b & BLUE_MASK, f)); - } - - - /** - * additive blend with clipping - */ - private static int blend_add_pin(int a, int b) { - int f = (b & ALPHA_MASK) >>> 24; - - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - low(((a & RED_MASK) + - ((b & RED_MASK) >> 8) * f), RED_MASK) & RED_MASK | - low(((a & GREEN_MASK) + - ((b & GREEN_MASK) >> 8) * f), GREEN_MASK) & GREEN_MASK | - low((a & BLUE_MASK) + - (((b & BLUE_MASK) * f) >> 8), BLUE_MASK)); - } - - - /** - * subtractive blend with clipping - */ - private static int blend_sub_pin(int a, int b) { - int f = (b & ALPHA_MASK) >>> 24; - - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - high(((a & RED_MASK) - ((b & RED_MASK) >> 8) * f), - GREEN_MASK) & RED_MASK | - high(((a & GREEN_MASK) - ((b & GREEN_MASK) >> 8) * f), - BLUE_MASK) & GREEN_MASK | - high((a & BLUE_MASK) - (((b & BLUE_MASK) * f) >> 8), 0)); - } - - - /** - * only returns the blended lightest colour - */ - private static int blend_lightest(int a, int b) { - int f = (b & ALPHA_MASK) >>> 24; - - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - high(a & RED_MASK, ((b & RED_MASK) >> 8) * f) & RED_MASK | - high(a & GREEN_MASK, ((b & GREEN_MASK) >> 8) * f) & GREEN_MASK | - high(a & BLUE_MASK, ((b & BLUE_MASK) * f) >> 8)); - } - - - /** - * only returns the blended darkest colour - */ - private static int blend_darkest(int a, int b) { - int f = (b & ALPHA_MASK) >>> 24; - - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - mix(a & RED_MASK, - low(a & RED_MASK, - ((b & RED_MASK) >> 8) * f), f) & RED_MASK | - mix(a & GREEN_MASK, - low(a & GREEN_MASK, - ((b & GREEN_MASK) >> 8) * f), f) & GREEN_MASK | - mix(a & BLUE_MASK, - low(a & BLUE_MASK, - ((b & BLUE_MASK) * f) >> 8), f)); - } - - - /** - * returns the absolute value of the difference of the input colors - * C = |A - B| - */ - private static int blend_difference(int a, int b) { - // setup (this portion will always be the same) - int f = (b & ALPHA_MASK) >>> 24; - int ar = (a & RED_MASK) >> 16; - int ag = (a & GREEN_MASK) >> 8; - int ab = (a & BLUE_MASK); - int br = (b & RED_MASK) >> 16; - int bg = (b & GREEN_MASK) >> 8; - int bb = (b & BLUE_MASK); - // formula: - int cr = (ar > br) ? (ar-br) : (br-ar); - int cg = (ag > bg) ? (ag-bg) : (bg-ag); - int cb = (ab > bb) ? (ab-bb) : (bb-ab); - // alpha blend (this portion will always be the same) - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - (peg(ar + (((cr - ar) * f) >> 8)) << 16) | - (peg(ag + (((cg - ag) * f) >> 8)) << 8) | - (peg(ab + (((cb - ab) * f) >> 8)) ) ); - } - - - /** - * Cousin of difference, algorithm used here is based on a Lingo version - * found here: http://www.mediamacros.com/item/item-1006687616/ - * (Not yet verified to be correct). - */ - private static int blend_exclusion(int a, int b) { - // setup (this portion will always be the same) - int f = (b & ALPHA_MASK) >>> 24; - int ar = (a & RED_MASK) >> 16; - int ag = (a & GREEN_MASK) >> 8; - int ab = (a & BLUE_MASK); - int br = (b & RED_MASK) >> 16; - int bg = (b & GREEN_MASK) >> 8; - int bb = (b & BLUE_MASK); - // formula: - int cr = ar + br - ((ar * br) >> 7); - int cg = ag + bg - ((ag * bg) >> 7); - int cb = ab + bb - ((ab * bb) >> 7); - // alpha blend (this portion will always be the same) - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - (peg(ar + (((cr - ar) * f) >> 8)) << 16) | - (peg(ag + (((cg - ag) * f) >> 8)) << 8) | - (peg(ab + (((cb - ab) * f) >> 8)) ) ); - } - - - /** - * returns the product of the input colors - * C = A * B - */ - private static int blend_multiply(int a, int b) { - // setup (this portion will always be the same) - int f = (b & ALPHA_MASK) >>> 24; - int ar = (a & RED_MASK) >> 16; - int ag = (a & GREEN_MASK) >> 8; - int ab = (a & BLUE_MASK); - int br = (b & RED_MASK) >> 16; - int bg = (b & GREEN_MASK) >> 8; - int bb = (b & BLUE_MASK); - // formula: - int cr = (ar * br) >> 8; - int cg = (ag * bg) >> 8; - int cb = (ab * bb) >> 8; - // alpha blend (this portion will always be the same) - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - (peg(ar + (((cr - ar) * f) >> 8)) << 16) | - (peg(ag + (((cg - ag) * f) >> 8)) << 8) | - (peg(ab + (((cb - ab) * f) >> 8)) ) ); - } - - - /** - * returns the inverse of the product of the inverses of the input colors - * (the inverse of multiply). C = 1 - (1-A) * (1-B) - */ - private static int blend_screen(int a, int b) { - // setup (this portion will always be the same) - int f = (b & ALPHA_MASK) >>> 24; - int ar = (a & RED_MASK) >> 16; - int ag = (a & GREEN_MASK) >> 8; - int ab = (a & BLUE_MASK); - int br = (b & RED_MASK) >> 16; - int bg = (b & GREEN_MASK) >> 8; - int bb = (b & BLUE_MASK); - // formula: - int cr = 255 - (((255 - ar) * (255 - br)) >> 8); - int cg = 255 - (((255 - ag) * (255 - bg)) >> 8); - int cb = 255 - (((255 - ab) * (255 - bb)) >> 8); - // alpha blend (this portion will always be the same) - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - (peg(ar + (((cr - ar) * f) >> 8)) << 16) | - (peg(ag + (((cg - ag) * f) >> 8)) << 8) | - (peg(ab + (((cb - ab) * f) >> 8)) ) ); - } - - - /** - * returns either multiply or screen for darker or lighter values of A - * (the inverse of hard light) - * C = - * A < 0.5 : 2 * A * B - * A >=0.5 : 1 - (2 * (255-A) * (255-B)) - */ - private static int blend_overlay(int a, int b) { - // setup (this portion will always be the same) - int f = (b & ALPHA_MASK) >>> 24; - int ar = (a & RED_MASK) >> 16; - int ag = (a & GREEN_MASK) >> 8; - int ab = (a & BLUE_MASK); - int br = (b & RED_MASK) >> 16; - int bg = (b & GREEN_MASK) >> 8; - int bb = (b & BLUE_MASK); - // formula: - int cr = (ar < 128) ? ((ar*br)>>7) : (255-(((255-ar)*(255-br))>>7)); - int cg = (ag < 128) ? ((ag*bg)>>7) : (255-(((255-ag)*(255-bg))>>7)); - int cb = (ab < 128) ? ((ab*bb)>>7) : (255-(((255-ab)*(255-bb))>>7)); - // alpha blend (this portion will always be the same) - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - (peg(ar + (((cr - ar) * f) >> 8)) << 16) | - (peg(ag + (((cg - ag) * f) >> 8)) << 8) | - (peg(ab + (((cb - ab) * f) >> 8)) ) ); - } - - - /** - * returns either multiply or screen for darker or lighter values of B - * (the inverse of overlay) - * C = - * B < 0.5 : 2 * A * B - * B >=0.5 : 1 - (2 * (255-A) * (255-B)) - */ - private static int blend_hard_light(int a, int b) { - // setup (this portion will always be the same) - int f = (b & ALPHA_MASK) >>> 24; - int ar = (a & RED_MASK) >> 16; - int ag = (a & GREEN_MASK) >> 8; - int ab = (a & BLUE_MASK); - int br = (b & RED_MASK) >> 16; - int bg = (b & GREEN_MASK) >> 8; - int bb = (b & BLUE_MASK); - // formula: - int cr = (br < 128) ? ((ar*br)>>7) : (255-(((255-ar)*(255-br))>>7)); - int cg = (bg < 128) ? ((ag*bg)>>7) : (255-(((255-ag)*(255-bg))>>7)); - int cb = (bb < 128) ? ((ab*bb)>>7) : (255-(((255-ab)*(255-bb))>>7)); - // alpha blend (this portion will always be the same) - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - (peg(ar + (((cr - ar) * f) >> 8)) << 16) | - (peg(ag + (((cg - ag) * f) >> 8)) << 8) | - (peg(ab + (((cb - ab) * f) >> 8)) ) ); - } - - - /** - * returns the inverse multiply plus screen, which simplifies to - * C = 2AB + A^2 - 2A^2B - */ - private static int blend_soft_light(int a, int b) { - // setup (this portion will always be the same) - int f = (b & ALPHA_MASK) >>> 24; - int ar = (a & RED_MASK) >> 16; - int ag = (a & GREEN_MASK) >> 8; - int ab = (a & BLUE_MASK); - int br = (b & RED_MASK) >> 16; - int bg = (b & GREEN_MASK) >> 8; - int bb = (b & BLUE_MASK); - // formula: - int cr = ((ar*br)>>7) + ((ar*ar)>>8) - ((ar*ar*br)>>15); - int cg = ((ag*bg)>>7) + ((ag*ag)>>8) - ((ag*ag*bg)>>15); - int cb = ((ab*bb)>>7) + ((ab*ab)>>8) - ((ab*ab*bb)>>15); - // alpha blend (this portion will always be the same) - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - (peg(ar + (((cr - ar) * f) >> 8)) << 16) | - (peg(ag + (((cg - ag) * f) >> 8)) << 8) | - (peg(ab + (((cb - ab) * f) >> 8)) ) ); - } - - - /** - * Returns the first (underlay) color divided by the inverse of - * the second (overlay) color. C = A / (255-B) - */ - private static int blend_dodge(int a, int b) { - // setup (this portion will always be the same) - int f = (b & ALPHA_MASK) >>> 24; - int ar = (a & RED_MASK) >> 16; - int ag = (a & GREEN_MASK) >> 8; - int ab = (a & BLUE_MASK); - int br = (b & RED_MASK) >> 16; - int bg = (b & GREEN_MASK) >> 8; - int bb = (b & BLUE_MASK); - // formula: - int cr = (br==255) ? 255 : peg((ar << 8) / (255 - br)); // division requires pre-peg()-ing - int cg = (bg==255) ? 255 : peg((ag << 8) / (255 - bg)); // " - int cb = (bb==255) ? 255 : peg((ab << 8) / (255 - bb)); // " - // alpha blend (this portion will always be the same) - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - (peg(ar + (((cr - ar) * f) >> 8)) << 16) | - (peg(ag + (((cg - ag) * f) >> 8)) << 8) | - (peg(ab + (((cb - ab) * f) >> 8)) ) ); - } - - - /** - * returns the inverse of the inverse of the first (underlay) color - * divided by the second (overlay) color. C = 255 - (255-A) / B - */ - private static int blend_burn(int a, int b) { - // setup (this portion will always be the same) - int f = (b & ALPHA_MASK) >>> 24; - int ar = (a & RED_MASK) >> 16; - int ag = (a & GREEN_MASK) >> 8; - int ab = (a & BLUE_MASK); - int br = (b & RED_MASK) >> 16; - int bg = (b & GREEN_MASK) >> 8; - int bb = (b & BLUE_MASK); - // formula: - int cr = (br==0) ? 0 : 255 - peg(((255 - ar) << 8) / br); // division requires pre-peg()-ing - int cg = (bg==0) ? 0 : 255 - peg(((255 - ag) << 8) / bg); // " - int cb = (bb==0) ? 0 : 255 - peg(((255 - ab) << 8) / bb); // " - // alpha blend (this portion will always be the same) - return (low(((a & ALPHA_MASK) >>> 24) + f, 0xff) << 24 | - (peg(ar + (((cr - ar) * f) >> 8)) << 16) | - (peg(ag + (((cg - ag) * f) >> 8)) << 8) | - (peg(ab + (((cb - ab) * f) >> 8)) ) ); - } - - - ////////////////////////////////////////////////////////////// - - // FILE I/O - - - static byte TIFF_HEADER[] = { - 77, 77, 0, 42, 0, 0, 0, 8, 0, 9, 0, -2, 0, 4, 0, 0, 0, 1, 0, 0, - 0, 0, 1, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 3, 0, 0, 0, 1, - 0, 0, 0, 0, 1, 2, 0, 3, 0, 0, 0, 3, 0, 0, 0, 122, 1, 6, 0, 3, 0, - 0, 0, 1, 0, 2, 0, 0, 1, 17, 0, 4, 0, 0, 0, 1, 0, 0, 3, 0, 1, 21, - 0, 3, 0, 0, 0, 1, 0, 3, 0, 0, 1, 22, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, - 1, 23, 0, 4, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8, 0, 8 - }; - - - static final String TIFF_ERROR = - "Error: Processing can only read its own TIFF files."; - - static protected PImage loadTIFF(byte tiff[]) { - if ((tiff[42] != tiff[102]) || // width/height in both places - (tiff[43] != tiff[103])) { - System.err.println(TIFF_ERROR); - return null; - } - - int width = - ((tiff[30] & 0xff) << 8) | (tiff[31] & 0xff); - int height = - ((tiff[42] & 0xff) << 8) | (tiff[43] & 0xff); - - int count = - ((tiff[114] & 0xff) << 24) | - ((tiff[115] & 0xff) << 16) | - ((tiff[116] & 0xff) << 8) | - (tiff[117] & 0xff); - if (count != width * height * 3) { - System.err.println(TIFF_ERROR + " (" + width + ", " + height +")"); - return null; - } - - // check the rest of the header - for (int i = 0; i < TIFF_HEADER.length; i++) { - if ((i == 30) || (i == 31) || (i == 42) || (i == 43) || - (i == 102) || (i == 103) || - (i == 114) || (i == 115) || (i == 116) || (i == 117)) continue; - - if (tiff[i] != TIFF_HEADER[i]) { - System.err.println(TIFF_ERROR + " (" + i + ")"); - return null; - } - } - - PImage outgoing = new PImage(width, height, RGB); - int index = 768; - count /= 3; - for (int i = 0; i < count; i++) { - outgoing.pixels[i] = - 0xFF000000 | - (tiff[index++] & 0xff) << 16 | - (tiff[index++] & 0xff) << 8 | - (tiff[index++] & 0xff); - } - return outgoing; - } - - - protected boolean saveTIFF(OutputStream output) { - // shutting off the warning, people can figure this out themselves - /* - if (format != RGB) { - System.err.println("Warning: only RGB information is saved with " + - ".tif files. Use .tga or .png for ARGB images and others."); - } - */ - try { - byte tiff[] = new byte[768]; - System.arraycopy(TIFF_HEADER, 0, tiff, 0, TIFF_HEADER.length); - - tiff[30] = (byte) ((width >> 8) & 0xff); - tiff[31] = (byte) ((width) & 0xff); - tiff[42] = tiff[102] = (byte) ((height >> 8) & 0xff); - tiff[43] = tiff[103] = (byte) ((height) & 0xff); - - int count = width*height*3; - tiff[114] = (byte) ((count >> 24) & 0xff); - tiff[115] = (byte) ((count >> 16) & 0xff); - tiff[116] = (byte) ((count >> 8) & 0xff); - tiff[117] = (byte) ((count) & 0xff); - - // spew the header to the disk - output.write(tiff); - - for (int i = 0; i < pixels.length; i++) { - output.write((pixels[i] >> 16) & 0xff); - output.write((pixels[i] >> 8) & 0xff); - output.write(pixels[i] & 0xff); - } - output.flush(); - return true; - - } catch (IOException e) { - e.printStackTrace(); - } - return false; - } - - - /** - * Creates a Targa32 formatted byte sequence of specified - * pixel buffer using RLE compression. - *

    - * Also figured out how to avoid parsing the image upside-down - * (there's a header flag to set the image origin to top-left) - *

    - * Starting with revision 0092, the format setting is taken into account: - *
      - *
    • ALPHA images written as 8bit grayscale (uses lowest byte) - *
    • RGB → 24 bits - *
    • ARGB → 32 bits - *
    - * All versions are RLE compressed. - *

    - * Contributed by toxi 8-10 May 2005, based on this RLE - * specification - */ - protected boolean saveTGA(OutputStream output) { - byte header[] = new byte[18]; - - if (format == ALPHA) { // save ALPHA images as 8bit grayscale - header[2] = 0x0B; - header[16] = 0x08; - header[17] = 0x28; - - } else if (format == RGB) { - header[2] = 0x0A; - header[16] = 24; - header[17] = 0x20; - - } else if (format == ARGB) { - header[2] = 0x0A; - header[16] = 32; - header[17] = 0x28; - - } else { - throw new RuntimeException("Image format not recognized inside save()"); - } - // set image dimensions lo-hi byte order - header[12] = (byte) (width & 0xff); - header[13] = (byte) (width >> 8); - header[14] = (byte) (height & 0xff); - header[15] = (byte) (height >> 8); - - try { - output.write(header); - - int maxLen = height * width; - int index = 0; - int col; //, prevCol; - int[] currChunk = new int[128]; - - // 8bit image exporter is in separate loop - // to avoid excessive conditionals... - if (format == ALPHA) { - while (index < maxLen) { - boolean isRLE = false; - int rle = 1; - currChunk[0] = col = pixels[index] & 0xff; - while (index + rle < maxLen) { - if (col != (pixels[index + rle]&0xff) || rle == 128) { - isRLE = (rle > 1); - break; - } - rle++; - } - if (isRLE) { - output.write(0x80 | (rle - 1)); - output.write(col); - - } else { - rle = 1; - while (index + rle < maxLen) { - int cscan = pixels[index + rle] & 0xff; - if ((col != cscan && rle < 128) || rle < 3) { - currChunk[rle] = col = cscan; - } else { - if (col == cscan) rle -= 2; - break; - } - rle++; - } - output.write(rle - 1); - for (int i = 0; i < rle; i++) output.write(currChunk[i]); - } - index += rle; - } - } else { // export 24/32 bit TARGA - while (index < maxLen) { - boolean isRLE = false; - currChunk[0] = col = pixels[index]; - int rle = 1; - // try to find repeating bytes (min. len = 2 pixels) - // maximum chunk size is 128 pixels - while (index + rle < maxLen) { - if (col != pixels[index + rle] || rle == 128) { - isRLE = (rle > 1); // set flag for RLE chunk - break; - } - rle++; - } - if (isRLE) { - output.write(128 | (rle - 1)); - output.write(col & 0xff); - output.write(col >> 8 & 0xff); - output.write(col >> 16 & 0xff); - if (format == ARGB) output.write(col >>> 24 & 0xff); - - } else { // not RLE - rle = 1; - while (index + rle < maxLen) { - if ((col != pixels[index + rle] && rle < 128) || rle < 3) { - currChunk[rle] = col = pixels[index + rle]; - } else { - // check if the exit condition was the start of - // a repeating colour - if (col == pixels[index + rle]) rle -= 2; - break; - } - rle++; - } - // write uncompressed chunk - output.write(rle - 1); - if (format == ARGB) { - for (int i = 0; i < rle; i++) { - col = currChunk[i]; - output.write(col & 0xff); - output.write(col >> 8 & 0xff); - output.write(col >> 16 & 0xff); - output.write(col >>> 24 & 0xff); - } - } else { - for (int i = 0; i < rle; i++) { - col = currChunk[i]; - output.write(col & 0xff); - output.write(col >> 8 & 0xff); - output.write(col >> 16 & 0xff); - } - } - } - index += rle; - } - } - output.flush(); - return true; - - } catch (IOException e) { - e.printStackTrace(); - return false; - } - } - - - /** - * Use ImageIO functions from Java 1.4 and later to handle image save. - * Various formats are supported, typically jpeg, png, bmp, and wbmp. - * To get a list of the supported formats for writing, use:
    - * println(javax.imageio.ImageIO.getReaderFormatNames()) - */ - protected void saveImageIO(String path) throws IOException { - try { - BufferedImage bimage = - new BufferedImage(width, height, (format == ARGB) ? - BufferedImage.TYPE_INT_ARGB : - BufferedImage.TYPE_INT_RGB); - /* - Class bufferedImageClass = - Class.forName("java.awt.image.BufferedImage"); - Constructor bufferedImageConstructor = - bufferedImageClass.getConstructor(new Class[] { - Integer.TYPE, - Integer.TYPE, - Integer.TYPE }); - Field typeIntRgbField = bufferedImageClass.getField("TYPE_INT_RGB"); - int typeIntRgb = typeIntRgbField.getInt(typeIntRgbField); - Field typeIntArgbField = bufferedImageClass.getField("TYPE_INT_ARGB"); - int typeIntArgb = typeIntArgbField.getInt(typeIntArgbField); - Object bimage = - bufferedImageConstructor.newInstance(new Object[] { - new Integer(width), - new Integer(height), - new Integer((format == ARGB) ? typeIntArgb : typeIntRgb) - }); - */ - - bimage.setRGB(0, 0, width, height, pixels, 0, width); - /* - Method setRgbMethod = - bufferedImageClass.getMethod("setRGB", new Class[] { - Integer.TYPE, Integer.TYPE, - Integer.TYPE, Integer.TYPE, - pixels.getClass(), - Integer.TYPE, Integer.TYPE - }); - setRgbMethod.invoke(bimage, new Object[] { - new Integer(0), new Integer(0), - new Integer(width), new Integer(height), - pixels, new Integer(0), new Integer(width) - }); - */ - - File file = new File(path); - String extension = path.substring(path.lastIndexOf('.') + 1); - - ImageIO.write(bimage, extension, file); - /* - Class renderedImageClass = - Class.forName("java.awt.image.RenderedImage"); - Class ioClass = Class.forName("javax.imageio.ImageIO"); - Method writeMethod = - ioClass.getMethod("write", new Class[] { - renderedImageClass, String.class, File.class - }); - writeMethod.invoke(null, new Object[] { bimage, extension, file }); - */ - - } catch (Exception e) { - e.printStackTrace(); - throw new IOException("image save failed."); - } - } - - - protected String[] saveImageFormats; - - /** - * Saves the image into a file. Images are saved in TIFF, TARGA, JPEG, and PNG format depending on the extension within the filename parameter. - * For example, "image.tif" will have a TIFF image and "image.png" will save a PNG image. - * If no extension is included in the filename, the image will save in TIFF format and .tif will be added to the name. - * These files are saved to the sketch's folder, which may be opened by selecting "Show sketch folder" from the "Sketch" menu. - * It is not possible to use save() while running the program in a web browser.

    - * To save an image created within the code, rather than through loading, it's necessary to make the image with the createImage() - * function so it is aware of the location of the program and can therefore save the file to the right place. - * See the createImage() reference for more information. - * - * =advanced - * Save this image to disk. - *

    - * As of revision 0100, this function requires an absolute path, - * in order to avoid confusion. To save inside the sketch folder, - * use the function savePath() from PApplet, or use saveFrame() instead. - * As of revision 0116, savePath() is not needed if this object has been - * created (as recommended) via createImage() or createGraphics() or - * one of its neighbors. - *

    - * As of revision 0115, when using Java 1.4 and later, you can write - * to several formats besides tga and tiff. If Java 1.4 is installed - * and the extension used is supported (usually png, jpg, jpeg, bmp, - * and tiff), then those methods will be used to write the image. - * To get a list of the supported formats for writing, use:
    - * println(javax.imageio.ImageIO.getReaderFormatNames()) - *

    - * To use the original built-in image writers, use .tga or .tif as the - * extension, or don't include an extension. When no extension is used, - * the extension .tif will be added to the file name. - *

    - * The ImageIO API claims to support wbmp files, however they probably - * require a black and white image. Basic testing produced a zero-length - * file with no error. - * - * @webref - * @brief Saves the image to a TIFF, TARGA, PNG, or JPEG file - * @param filename a sequence of letters and numbers - */ - public void save(String filename) { // ignore - boolean success = false; - - File file = new File(filename); - if (!file.isAbsolute()) { - if (parent != null) { - //file = new File(parent.savePath(filename)); - filename = parent.savePath(filename); - } else { - String msg = "PImage.save() requires an absolute path. " + - "Use createImage(), or pass savePath() to save()."; - PGraphics.showException(msg); - } - } - - // Make sure the pixel data is ready to go - loadPixels(); - - try { - OutputStream os = null; - - if (saveImageFormats == null) { - saveImageFormats = javax.imageio.ImageIO.getWriterFormatNames(); - } - if (saveImageFormats != null) { - for (int i = 0; i < saveImageFormats.length; i++) { - if (filename.endsWith("." + saveImageFormats[i])) { - saveImageIO(filename); - return; - } - } - } - - if (filename.toLowerCase().endsWith(".tga")) { - os = new BufferedOutputStream(new FileOutputStream(filename), 32768); - success = saveTGA(os); //, pixels, width, height, format); - - } else { - if (!filename.toLowerCase().endsWith(".tif") && - !filename.toLowerCase().endsWith(".tiff")) { - // if no .tif extension, add it.. - filename += ".tif"; - } - os = new BufferedOutputStream(new FileOutputStream(filename), 32768); - success = saveTIFF(os); //, pixels, width, height); - } - os.flush(); - os.close(); - - } catch (IOException e) { - //System.err.println("Error while saving image."); - e.printStackTrace(); - success = false; - } - if (!success) { - throw new RuntimeException("Error while saving image."); - } - } -} - diff --git a/core/src/processing/core/PLine.java b/core/src/processing/core/PLine.java deleted file mode 100644 index a18afda9c..000000000 --- a/core/src/processing/core/PLine.java +++ /dev/null @@ -1,1278 +0,0 @@ -/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */ - -/* - Part of the Processing project - http://processing.org - - Copyright (c) 2004-07 Ben Fry and Casey Reas - Copyright (c) 2001-04 Massachusetts Institute of Technology - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General - Public License along with this library; if not, write to the - Free Software Foundation, Inc., 59 Temple Place, Suite 330, - Boston, MA 02111-1307 USA - */ - -package processing.core; - - -/** - * Code for rendering lines with P2D and P3D. - * @author rocha - * @author fry - */ -public class PLine implements PConstants -{ - private int[] m_pixels; - private float[] m_zbuffer; - //private int[] m_stencil; - - private int m_index; - - static final int R_COLOR = 0x1; - static final int R_ALPHA = 0x2; - static final int R_SPATIAL = 0x8; - static final int R_THICK = 0x4; - static final int R_SMOOTH = 0x10; - - private int SCREEN_WIDTH; - private int SCREEN_HEIGHT; - private int SCREEN_WIDTH1; - private int SCREEN_HEIGHT1; - - public boolean INTERPOLATE_RGB; - public boolean INTERPOLATE_ALPHA; - public boolean INTERPOLATE_Z; - public boolean INTERPOLATE_THICK; - - // antialias - private boolean SMOOTH; - - // blender - //private boolean BLENDER; - - // stroke color - private int m_stroke; - - // draw flags - public int m_drawFlags; - - // vertex coordinates - private float[] x_array; - private float[] y_array; - private float[] z_array; - - // vertex intensity - private float[] r_array; - private float[] g_array; - private float[] b_array; - private float[] a_array; - - // vertex offsets - private int o0; - private int o1; - - // start values - private float m_r0; - private float m_g0; - private float m_b0; - private float m_a0; - private float m_z0; - - // deltas - private float dz; - - // rgba deltas - private float dr; - private float dg; - private float db; - private float da; - - private PGraphics parent; - - - public PLine(PGraphics g) { - INTERPOLATE_Z = false; - - x_array = new float[2]; - y_array = new float[2]; - z_array = new float[2]; - r_array = new float[2]; - g_array = new float[2]; - b_array = new float[2]; - a_array = new float[2]; - - this.parent = g; - } - - - public void reset() { - // reset these in case PGraphics was resized - SCREEN_WIDTH = parent.width; - SCREEN_HEIGHT = parent.height; - SCREEN_WIDTH1 = SCREEN_WIDTH-1; - SCREEN_HEIGHT1 = SCREEN_HEIGHT-1; - - m_pixels = parent.pixels; - //m_stencil = parent.stencil; - if (parent instanceof PGraphics3D) { - m_zbuffer = ((PGraphics3D) parent).zbuffer; - } - - // other things to reset - - INTERPOLATE_RGB = false; - INTERPOLATE_ALPHA = false; - //INTERPOLATE_Z = false; - m_drawFlags = 0; - m_index = 0; - //BLENDER = false; - } - - - public void setVertices(float x0, float y0, float z0, - float x1, float y1, float z1) { - // [rocha] fixed z drawing, so whenever a line turns on - // z interpolation, all the lines are z interpolated - if (z0 != z1 || z0 != 0.0f || z1 != 0.0f || INTERPOLATE_Z) { - INTERPOLATE_Z = true; - m_drawFlags |= R_SPATIAL; - } else { - INTERPOLATE_Z = false; - m_drawFlags &= ~R_SPATIAL; - } - - z_array[0] = z0; - z_array[1] = z1; - - x_array[0] = x0; - x_array[1] = x1; - - y_array[0] = y0; - y_array[1] = y1; - } - - - public void setIntensities(float r0, float g0, float b0, float a0, - float r1, float g1, float b1, float a1) { - a_array[0] = (a0 * 253f + 1.0f) * 65536f; - a_array[1] = (a1 * 253f + 1.0f) * 65536f; - - // check if we need alpha or not? - if ((a0 != 1.0f) || (a1 != 1.0f)) { - INTERPOLATE_ALPHA = true; - m_drawFlags |= R_ALPHA; - } else { - INTERPOLATE_ALPHA = false; - m_drawFlags &= ~R_ALPHA; - } - - // extra scaling added to prevent color "overflood" due to rounding errors - r_array[0] = (r0 * 253f + 1.0f) * 65536f; - r_array[1] = (r1 * 253f + 1.0f) * 65536f; - - g_array[0] = (g0 * 253f + 1.0f) * 65536f; - g_array[1] = (g1 * 253f + 1.0f) * 65536f; - - b_array[0] = (b0 * 253f + 1.0f) * 65536f; - b_array[1] = (b1 * 253f + 1.0f) * 65536f; - - // check if we need to interpolate the intensity values - if (r0 != r1) { - INTERPOLATE_RGB = true; - m_drawFlags |= R_COLOR; - - } else if (g0 != g1) { - INTERPOLATE_RGB = true; - m_drawFlags |= R_COLOR; - - } else if (b0 != b1) { - INTERPOLATE_RGB = true; - m_drawFlags |= R_COLOR; - - } else { - // when plain we use the stroke color of the first vertex - m_stroke = 0xFF000000 | - ((int)(255*r0) << 16) | ((int)(255*g0) << 8) | (int)(255*b0); - INTERPOLATE_RGB = false; - m_drawFlags &= ~R_COLOR; - } - } - - - public void setIndex(int index) { - m_index = index; - //BLENDER = false; - if (m_index != -1) { - //BLENDER = true; - } else { - m_index = 0; - } - } - - - public void draw() { - int xi; - int yi; - int length; - boolean visible = true; - - if (parent.smooth) { - SMOOTH = true; - m_drawFlags |= R_SMOOTH; - - } else { - SMOOTH = false; - m_drawFlags &= ~R_SMOOTH; - } - - /* - // line hack - if (parent.hints[DISABLE_FLYING_POO]) { - float nwidth2 = -SCREEN_WIDTH; - float nheight2 = -SCREEN_HEIGHT; - float width2 = SCREEN_WIDTH * 2; - float height2 = SCREEN_HEIGHT * 2; - if ((x_array[1] < nwidth2) || - (x_array[1] > width2) || - (x_array[0] < nwidth2) || - (x_array[0] > width2) || - (y_array[1] < nheight2) || - (y_array[1] > height2) || - (y_array[0] < nheight2) || - (y_array[0] > height2)) { - return; // this is a bad line - } - } - */ - - /////////////////////////////////////// - // line clipping - visible = lineClipping(); - if (!visible) { - return; - } - - /////////////////////////////////////// - // calculate line values - int shortLen; - int longLen; - boolean yLonger; - int dt; - - yLonger = false; - - // HACK for drawing lines left-to-right for rev 0069 - // some kind of bug exists with the line-stepping algorithm - // that causes strange patterns in the anti-aliasing. - // [040228 fry] - // - // swap rgba as well as the coords.. oops - // [040712 fry] - // - if (x_array[1] < x_array[0]) { - float t; - - t = x_array[1]; x_array[1] = x_array[0]; x_array[0] = t; - t = y_array[1]; y_array[1] = y_array[0]; y_array[0] = t; - t = z_array[1]; z_array[1] = z_array[0]; z_array[0] = t; - - t = r_array[1]; r_array[1] = r_array[0]; r_array[0] = t; - t = g_array[1]; g_array[1] = g_array[0]; g_array[0] = t; - t = b_array[1]; b_array[1] = b_array[0]; b_array[0] = t; - t = a_array[1]; a_array[1] = a_array[0]; a_array[0] = t; - } - - // important - don't change the casts - // is needed this way for line drawing algorithm - longLen = (int)x_array[1] - (int)x_array[0]; - shortLen = (int)y_array[1] - (int)y_array[0]; - - if (Math.abs(shortLen) > Math.abs(longLen)) { - int swap = shortLen; - shortLen = longLen; - longLen = swap; - yLonger = true; - } - - // now we sort points so longLen is always positive - // and we always start drawing from x[0], y[0] - if (longLen < 0) { - // swap order - o0 = 1; - o1 = 0; - - xi = (int) x_array[1]; - yi = (int) y_array[1]; - - length = -longLen; - - } else { - o0 = 0; - o1 = 1; - - xi = (int) x_array[0]; - yi = (int) y_array[0]; - - length = longLen; - } - - // calculate dt - if (length == 0) { - dt = 0; - } else { - dt = (shortLen << 16) / longLen; - } - - m_r0 = r_array[o0]; - m_g0 = g_array[o0]; - m_b0 = b_array[o0]; - - if (INTERPOLATE_RGB) { - dr = (r_array[o1] - r_array[o0]) / length; - dg = (g_array[o1] - g_array[o0]) / length; - db = (b_array[o1] - b_array[o0]) / length; - } else { - dr = 0; - dg = 0; - db = 0; - } - - m_a0 = a_array[o0]; - - if (INTERPOLATE_ALPHA) { - da = (a_array[o1] - a_array[o0]) / length; - } else { - da = 0; - } - - m_z0 = z_array[o0]; - //z0 += -0.001f; // [rocha] ugly fix for z buffer precision - - if (INTERPOLATE_Z) { - dz = (z_array[o1] - z_array[o0]) / length; - } else { - dz = 0; - } - - // draw thin points - if (length == 0) { - if (INTERPOLATE_ALPHA) { - drawPoint_alpha(xi, yi); - } else { - drawPoint(xi, yi); - } - return; - } - - /* - // draw antialias polygon lines for non stroked polygons - if (BLENDER && SMOOTH) { - // fix for endpoints not being drawn - // [rocha] - drawPoint_alpha((int)x_array[0], (int)x_array[0]); - drawPoint_alpha((int)x_array[1], (int)x_array[1]); - - drawline_blender(x_array[0], y_array[0], x_array[1], y_array[1]); - return; - } - */ - - // draw normal strokes - if (SMOOTH) { -// if ((m_drawFlags & R_SPATIAL) != 0) { -// drawLine_smooth_spatial(xi, yi, dt, length, yLonger); -// } else { - drawLine_smooth(xi, yi, dt, length, yLonger); -// } - - } else { - if (m_drawFlags == 0) { - drawLine_plain(xi, yi, dt, length, yLonger); - - } else if (m_drawFlags == R_ALPHA) { - drawLine_plain_alpha(xi, yi, dt, length, yLonger); - - } else if (m_drawFlags == R_COLOR) { - drawLine_color(xi, yi, dt, length, yLonger); - - } else if (m_drawFlags == (R_COLOR + R_ALPHA)) { - drawLine_color_alpha(xi, yi, dt, length, yLonger); - - } else if (m_drawFlags == R_SPATIAL) { - drawLine_plain_spatial(xi, yi, dt, length, yLonger); - - } else if (m_drawFlags == (R_SPATIAL + R_ALPHA)) { - drawLine_plain_alpha_spatial(xi, yi, dt, length, yLonger); - - } else if (m_drawFlags == (R_SPATIAL + R_COLOR)) { - drawLine_color_spatial(xi, yi, dt, length, yLonger); - - } else if (m_drawFlags == (R_SPATIAL + R_COLOR + R_ALPHA)) { - drawLine_color_alpha_spatial(xi, yi, dt, length, yLonger); - } - } - } - - - public boolean lineClipping() { - // new cohen-sutherland clipping code, as old one was buggy [toxi] - // get the "dips" for the points to clip - int code1 = lineClipCode(x_array[0], y_array[0]); - int code2 = lineClipCode(x_array[1], y_array[1]); - int dip = code1 | code2; - - if ((code1 & code2)!=0) { - - return false; - - } else if (dip != 0) { - - // now calculate the clipped points - float a0 = 0, a1 = 1, a = 0; - - for (int i = 0; i < 4; i++) { - if (((dip>>i)%2)==1){ - a = lineSlope(x_array[0], y_array[0], x_array[1], y_array[1], i+1); - if (((code1 >> i) % 2) == 1) { - a0 = (a>a0)?a:a0; // max(a,a0) - } else { - a1 = (a a1) { - return false; - } else { - float xt = x_array[0]; - float yt = y_array[0]; - - x_array[0] = xt + a0 * (x_array[1] - xt); - y_array[0] = yt + a0 * (y_array[1] - yt); - x_array[1] = xt + a1 * (x_array[1] - xt); - y_array[1] = yt + a1 * (y_array[1] - yt); - - // interpolate remaining parameters - if (INTERPOLATE_RGB) { - float t = r_array[0]; - r_array[0] = t + a0 * (r_array[1] - t); - r_array[1] = t + a1 * (r_array[1] - t); - t = g_array[0]; - g_array[0] = t + a0 * (g_array[1] - t); - g_array[1] = t + a1 * (g_array[1] - t); - t = b_array[0]; - b_array[0] = t + a0 * (b_array[1] - t); - b_array[1] = t + a1 * (b_array[1] - t); - } - - if (INTERPOLATE_ALPHA) { - float t = a_array[0]; - a_array[0] = t + a0 * (a_array[1] - t); - a_array[1] = t + a1 * (a_array[1] - t); - } - } - } - return true; - } - - - private int lineClipCode(float xi, float yi) { - int xmin = 0; - int ymin = 0; - int xmax = SCREEN_WIDTH1; - int ymax = SCREEN_HEIGHT1; - - //return ((yi < ymin ? 8 : 0) | (yi > ymax ? 4 : 0) | - // (xi < xmin ? 2 : 0) | (xi > xmax ? 1 : 0)); - //(int) added by ewjordan 6/13/07 because otherwise we sometimes clip last pixel when it should actually be displayed. - //Currently the min values are okay because values less than 0 should not be rendered; however, bear in mind that - //(int) casts towards zero, so without this clipping, values between -1+eps and +1-eps would all be rendered as 0. - return ((yi < ymin ? 8 : 0) | ((int)yi > ymax ? 4 : 0) | - (xi < xmin ? 2 : 0) | ((int)xi > xmax ? 1 : 0)); - } - - - private float lineSlope(float x1, float y1, float x2, float y2, int border) { - int xmin = 0; - int ymin = 0; - int xmax = SCREEN_WIDTH1; - int ymax = SCREEN_HEIGHT1; - - switch (border) { - case 4: return (ymin-y1)/(y2-y1); - case 3: return (ymax-y1)/(y2-y1); - case 2: return (xmin-x1)/(x2-x1); - case 1: return (xmax-x1)/(x2-x1); - } - return -1f; - } - - - private void drawPoint(int x0, int y0) { - float iz = m_z0; - int offset = y0 * SCREEN_WIDTH + x0; - - if (m_zbuffer == null) { - m_pixels[offset] = m_stroke; - - } else { - if (iz <= m_zbuffer[offset]) { - m_pixels[offset] = m_stroke; - m_zbuffer[offset] = iz; - } - } - } - - - private void drawPoint_alpha(int x0, int y0) { - int ia = (int) a_array[0]; - int pr = m_stroke & 0xFF0000; - int pg = m_stroke & 0xFF00; - int pb = m_stroke & 0xFF; - float iz = m_z0; - int offset = y0 * SCREEN_WIDTH + x0; - - if ((m_zbuffer == null) || iz <= m_zbuffer[offset]) { - int alpha = ia >> 16; - int r0 = m_pixels[offset]; - int g0 = r0 & 0xFF00; - int b0 = r0 & 0xFF; - r0 &= 0xFF0000; - - r0 = r0 + (((pr - r0) * alpha) >> 8); - g0 = g0 + (((pg - g0) * alpha) >> 8); - b0 = b0 + (((pb - b0) * alpha) >> 8); - - m_pixels[offset] = 0xFF000000 | - (r0 & 0xFF0000) | (g0 & 0xFF00) | (b0 & 0xFF); - if (m_zbuffer != null) m_zbuffer[offset] = iz; - } - } - - - private void drawLine_plain(int x0, int y0, int dt, - int length, boolean vertical) { - // new "extremely fast" line code - // adapted from http://www.edepot.com/linee.html - // first version modified by [toxi] - // simplified by [rocha] - // length must be >= 0 - - //assert length>=0:length; - - int offset = 0; - - if (vertical) { - // vertical - length += y0; - for (int j = 0x8000 + (x0<<16); y0 <= length; ++y0) { - offset = y0 * SCREEN_WIDTH + (j>>16); - m_pixels[offset] = m_stroke; - if (m_zbuffer != null) m_zbuffer[offset] = m_z0; - j+=dt; - } - - } else { - // horizontal - length += x0; - for (int j = 0x8000 + (y0<<16); x0 <= length; ++x0) { - offset = (j>>16) * SCREEN_WIDTH + x0; - m_pixels[offset] = m_stroke; - if (m_zbuffer != null) m_zbuffer[offset] = m_z0; - j+=dt; - } - } - } - - - private void drawLine_plain_alpha(int x0, int y0, int dt, - int length, boolean vertical) { - int offset = 0; - - int pr = m_stroke & 0xFF0000; - int pg = m_stroke & 0xFF00; - int pb = m_stroke & 0xFF; - - int ia = (int) (m_a0); - - if (vertical) { - length += y0; - for (int j = 0x8000 + (x0<<16); y0 <= length; ++y0) { - offset = y0 * SCREEN_WIDTH + (j>>16); - - int alpha = ia >> 16; - int r0 = m_pixels[offset]; - int g0 = r0 & 0xFF00; - int b0 = r0 & 0xFF; - r0 &= 0xFF0000; - r0 = r0 + (((pr - r0) * alpha) >> 8); - g0 = g0 + (((pg - g0) * alpha) >> 8); - b0 = b0 + (((pb - b0) * alpha) >> 8); - - m_pixels[offset] = 0xFF000000 | - (r0 & 0xFF0000) | (g0 & 0xFF00) | (b0 & 0xFF); - //m_zbuffer[offset] = m_z0; // don't set zbuffer w/ alpha lines - - ia += da; - j += dt; - } - - } else { // horizontal - length += x0; - for (int j = 0x8000 + (y0<<16); x0 <= length; ++x0) { - offset = (j>>16) * SCREEN_WIDTH + x0; - - int alpha = ia >> 16; - int r0 = m_pixels[offset]; - int g0 = r0 & 0xFF00; - int b0 = r0 & 0xFF; - r0&=0xFF0000; - r0 = r0 + (((pr - r0) * alpha) >> 8); - g0 = g0 + (((pg - g0) * alpha) >> 8); - b0 = b0 + (((pb - b0) * alpha) >> 8); - - m_pixels[offset] = 0xFF000000 | - (r0 & 0xFF0000) | (g0 & 0xFF00) | (b0 & 0xFF); - //m_zbuffer[offset] = m_z0; // no zbuffer w/ alpha lines - - ia += da; - j += dt; - } - } - } - - - private void drawLine_color(int x0, int y0, int dt, - int length, boolean vertical) { - int offset = 0; - - int ir = (int) m_r0; - int ig = (int) m_g0; - int ib = (int) m_b0; - - if (vertical) { - length += y0; - for (int j = 0x8000 + (x0<<16); y0 <= length; ++y0) { - offset = y0 * SCREEN_WIDTH + (j>>16); - m_pixels[offset] = 0xFF000000 | - ((ir & 0xFF0000) | ((ig >> 8) & 0xFF00) | (ib >> 16)); - if (m_zbuffer != null) m_zbuffer[offset] = m_z0; - ir += dr; - ig += dg; - ib += db; - j +=dt; - } - - } else { // horizontal - length += x0; - for (int j = 0x8000 + (y0<<16); x0 <= length; ++x0) { - offset = (j>>16) * SCREEN_WIDTH + x0; - m_pixels[offset] = 0xFF000000 | - ((ir & 0xFF0000) | ((ig >> 8) & 0xFF00) | (ib >> 16)); - if (m_zbuffer != null) m_zbuffer[offset] = m_z0; - ir += dr; - ig += dg; - ib += db; - j += dt; - } - } - } - - - private void drawLine_color_alpha(int x0, int y0, int dt, - int length, boolean vertical) { - int offset = 0; - - int ir = (int) m_r0; - int ig = (int) m_g0; - int ib = (int) m_b0; - int ia = (int) m_a0; - - if (vertical) { - length += y0; - for (int j = 0x8000 + (x0<<16); y0 <= length; ++y0) { - offset = y0 * SCREEN_WIDTH + (j>>16); - - int pr = ir & 0xFF0000; - int pg = (ig >> 8) & 0xFF00; - int pb = (ib >> 16); - - int r0 = m_pixels[offset]; - int g0 = r0 & 0xFF00; - int b0 = r0 & 0xFF; - r0&=0xFF0000; - - int alpha = ia >> 16; - - r0 = r0 + (((pr - r0) * alpha) >> 8); - g0 = g0 + (((pg - g0) * alpha) >> 8); - b0 = b0 + (((pb - b0) * alpha) >> 8); - - m_pixels[offset] = 0xFF000000 | - (r0 & 0xFF0000) | (g0 & 0xFF00) | (b0 & 0xFF); - if (m_zbuffer != null) m_zbuffer[offset] = m_z0; - - ir+= dr; - ig+= dg; - ib+= db; - ia+= da; - j+=dt; - } - - } else { // horizontal - length += x0; - for (int j = 0x8000 + (y0<<16); x0 <= length; ++x0) { - offset = (j>>16) * SCREEN_WIDTH + x0; - - int pr = ir & 0xFF0000; - int pg = (ig >> 8) & 0xFF00; - int pb = (ib >> 16); - - int r0 = m_pixels[offset]; - int g0 = r0 & 0xFF00; - int b0 = r0 & 0xFF; - r0&=0xFF0000; - - int alpha = ia >> 16; - - r0 = r0 + (((pr - r0) * alpha) >> 8); - g0 = g0 + (((pg - g0) * alpha) >> 8); - b0 = b0 + (((pb - b0) * alpha) >> 8); - - m_pixels[offset] = 0xFF000000 | - (r0 & 0xFF0000) | (g0 & 0xFF00) | (b0 & 0xFF); - if (m_zbuffer != null) m_zbuffer[offset] = m_z0; - - ir+= dr; - ig+= dg; - ib+= db; - ia+= da; - j+=dt; - } - } - } - - - private void drawLine_plain_spatial(int x0, int y0, int dt, - int length, boolean vertical) { - int offset = 0; - float iz = m_z0; - - if (vertical) { - length += y0; - for (int j = 0x8000 + (x0<<16); y0 <= length; ++y0) { - offset = y0 * SCREEN_WIDTH + (j>>16); - if (offset < m_pixels.length) { - if (iz <= m_zbuffer[offset]) { - m_pixels[offset] = m_stroke; - m_zbuffer[offset] = iz; - } - } - iz+=dz; - j+=dt; - } - - } else { // horizontal - length += x0; - for (int j = 0x8000 + (y0<<16); x0 <= length; ++x0) { - offset = (j>>16) * SCREEN_WIDTH + x0; - if (offset < m_pixels.length) { - if (iz <= m_zbuffer[offset]) { - m_pixels[offset] = m_stroke; - m_zbuffer[offset] = iz; - } - } - iz+=dz; - j+=dt; - } - } - } - - - private void drawLine_plain_alpha_spatial(int x0, int y0, int dt, - int length, boolean vertical) { - int offset = 0; - float iz = m_z0; - - int pr = m_stroke & 0xFF0000; - int pg = m_stroke & 0xFF00; - int pb = m_stroke & 0xFF; - - int ia = (int) m_a0; - - if (vertical) { - length += y0; - for (int j = 0x8000 + (x0<<16); y0 <= length; ++y0) { - offset = y0 * SCREEN_WIDTH + (j>>16); - if (offset < m_pixels.length) { - if (iz <= m_zbuffer[offset]) { - int alpha = ia >> 16; - int r0 = m_pixels[offset]; - int g0 = r0 & 0xFF00; - int b0 = r0 & 0xFF; - r0 &= 0xFF0000; - r0 = r0 + (((pr - r0) * alpha) >> 8); - g0 = g0 + (((pg - g0) * alpha) >> 8); - b0 = b0 + (((pb - b0) * alpha) >> 8); - - m_pixels[offset] = 0xFF000000 | - (r0 & 0xFF0000) | (g0 & 0xFF00) | (b0 & 0xFF); - m_zbuffer[offset] = iz; - } - } - iz +=dz; - ia += da; - j += dt; - } - - } else { // horizontal - length += x0; - for (int j = 0x8000 + (y0<<16); x0 <= length; ++x0) { - offset = (j>>16) * SCREEN_WIDTH + x0; - - if (offset < m_pixels.length) { - if (iz <= m_zbuffer[offset]) { - int alpha = ia >> 16; - int r0 = m_pixels[offset]; - int g0 = r0 & 0xFF00; - int b0 = r0 & 0xFF; - r0&=0xFF0000; - r0 = r0 + (((pr - r0) * alpha) >> 8); - g0 = g0 + (((pg - g0) * alpha) >> 8); - b0 = b0 + (((pb - b0) * alpha) >> 8); - - m_pixels[offset] = 0xFF000000 | - (r0 & 0xFF0000) | (g0 & 0xFF00) | (b0 & 0xFF); - m_zbuffer[offset] = iz; - } - } - iz += dz; - ia += da; - j += dt; - } - } - } - - - private void drawLine_color_spatial(int x0, int y0, int dt, - int length, boolean vertical) { - int offset = 0; - float iz = m_z0; - - int ir = (int) m_r0; - int ig = (int) m_g0; - int ib = (int) m_b0; - - if (vertical) { - length += y0; - for (int j = 0x8000 + (x0<<16); y0 <= length; ++y0) { - offset = y0 * SCREEN_WIDTH + (j>>16); - - if (iz <= m_zbuffer[offset]) { - m_pixels[offset] = 0xFF000000 | - ((ir & 0xFF0000) | ((ig >> 8) & 0xFF00) | (ib >> 16)); - m_zbuffer[offset] = iz; - } - iz +=dz; - ir += dr; - ig += dg; - ib += db; - j += dt; - } - } else { // horizontal - length += x0; - for (int j = 0x8000 + (y0<<16); x0 <= length; ++x0) { - offset = (j>>16) * SCREEN_WIDTH + x0; - if (iz <= m_zbuffer[offset]) { - m_pixels[offset] = 0xFF000000 | - ((ir & 0xFF0000) | ((ig >> 8) & 0xFF00) | (ib >> 16)); - m_zbuffer[offset] = iz; - } - iz += dz; - ir += dr; - ig += dg; - ib += db; - j += dt; - } - return; - } - } - - - private void drawLine_color_alpha_spatial(int x0, int y0, int dt, - int length, boolean vertical) { - int offset = 0; - float iz = m_z0; - - int ir = (int) m_r0; - int ig = (int) m_g0; - int ib = (int) m_b0; - int ia = (int) m_a0; - - if (vertical) { - length += y0; - for (int j = 0x8000 + (x0<<16); y0 <= length; ++y0) { - offset = y0 * SCREEN_WIDTH + (j>>16); - - if (iz <= m_zbuffer[offset]) { - int pr = ir & 0xFF0000; - int pg = (ig >> 8) & 0xFF00; - int pb = (ib >> 16); - - int r0 = m_pixels[offset]; - int g0 = r0 & 0xFF00; - int b0 = r0 & 0xFF; - r0&=0xFF0000; - - int alpha = ia >> 16; - - r0 = r0 + (((pr - r0) * alpha) >> 8); - g0 = g0 + (((pg - g0) * alpha) >> 8); - b0 = b0 + (((pb - b0) * alpha) >> 8); - - m_pixels[offset] = 0xFF000000 | - (r0 & 0xFF0000) | (g0 & 0xFF00) | (b0 & 0xFF); - m_zbuffer[offset] = iz; - } - iz+=dz; - ir+= dr; - ig+= dg; - ib+= db; - ia+= da; - j+=dt; - } - - } else { // horizontal - length += x0; - for (int j = 0x8000 + (y0<<16); x0 <= length; ++x0) { - offset = (j>>16) * SCREEN_WIDTH + x0; - - if (iz <= m_zbuffer[offset]) { - int pr = ir & 0xFF0000; - int pg = (ig >> 8) & 0xFF00; - int pb = (ib >> 16); - - int r0 = m_pixels[offset]; - int g0 = r0 & 0xFF00; - int b0 = r0 & 0xFF; - r0 &= 0xFF0000; - - int alpha = ia >> 16; - - r0 = r0 + (((pr - r0) * alpha) >> 8); - g0 = g0 + (((pg - g0) * alpha) >> 8); - b0 = b0 + (((pb - b0) * alpha) >> 8); - - m_pixels[offset] = 0xFF000000 | - (r0 & 0xFF0000) | (g0 & 0xFF00) | (b0 & 0xFF); - m_zbuffer[offset] = iz; - } - iz += dz; - ir += dr; - ig += dg; - ib += db; - ia += da; - j += dt; - } - } - } - - - private void drawLine_smooth(int x0, int y0, int dt, - int length, boolean vertical) { - int xi, yi; // these must be >=32 bits - int offset = 0; - int temp; - int end; - - float iz = m_z0; - - int ir = (int) m_r0; - int ig = (int) m_g0; - int ib = (int) m_b0; - int ia = (int) m_a0; - - if (vertical) { - xi = x0 << 16; - yi = y0 << 16; - - end = length + y0; - - while ((yi >> 16) < end) { - - offset = (yi>>16) * SCREEN_WIDTH + (xi>>16); - - int pr = ir & 0xFF0000; - int pg = (ig >> 8) & 0xFF00; - int pb = (ib >> 16); - - if ((m_zbuffer == null) || (iz <= m_zbuffer[offset])) { - int alpha = (((~xi >> 8) & 0xFF) * (ia >> 16)) >> 8; - - int r0 = m_pixels[offset]; - int g0 = r0 & 0xFF00; - int b0 = r0 & 0xFF; - r0&=0xFF0000; - - r0 = r0 + (((pr - r0) * alpha) >> 8); - g0 = g0 + (((pg - g0) * alpha) >> 8); - b0 = b0 + (((pb - b0) * alpha) >> 8); - - m_pixels[offset] = 0xFF000000 | - (r0 & 0xFF0000) | (g0 & 0xFF00) | (b0 & 0xFF); - if (m_zbuffer != null) m_zbuffer[offset] = iz; - } - - // this if() makes things slow. there should be a better way to check - // if the second pixel is within the image array [rocha] - temp = ((xi>>16)+1); - if (temp >= SCREEN_WIDTH) { - xi += dt; - yi += (1 << 16); - continue; - } - - offset = (yi>>16) * SCREEN_WIDTH + temp; - - if ((m_zbuffer == null) || (iz <= m_zbuffer[offset])) { - int alpha = (((xi >> 8) & 0xFF) * (ia >> 16)) >> 8; - - int r0 = m_pixels[offset]; - int g0 = r0 & 0xFF00; - int b0 = r0 & 0xFF; - r0 &= 0xFF0000; - - r0 = r0 + (((pr - r0) * alpha) >> 8); - g0 = g0 + (((pg - g0) * alpha) >> 8); - b0 = b0 + (((pb - b0) * alpha) >> 8); - - m_pixels[offset] = 0xFF000000 | - (r0 & 0xFF0000) | (g0 & 0xFF00) | (b0 & 0xFF); - if (m_zbuffer != null) m_zbuffer[offset] = iz; - } - - xi += dt; - yi += (1 << 16); - - iz+=dz; - ir+= dr; - ig+= dg; - ib+= db; - ia+= da; - } - - } else { // horizontal - xi = x0 << 16; - yi = y0 << 16; - end = length + x0; - - while ((xi >> 16) < end) { - offset = (yi>>16) * SCREEN_WIDTH + (xi>>16); - - int pr = ir & 0xFF0000; - int pg = (ig >> 8) & 0xFF00; - int pb = (ib >> 16); - - if ((m_zbuffer == null) || (iz <= m_zbuffer[offset])) { - int alpha = (((~yi >> 8) & 0xFF) * (ia >> 16)) >> 8; - - int r0 = m_pixels[offset]; - int g0 = r0 & 0xFF00; - int b0 = r0 & 0xFF; - r0 &= 0xFF0000; - - r0 = r0 + (((pr - r0) * alpha) >> 8); - g0 = g0 + (((pg - g0) * alpha) >> 8); - b0 = b0 + (((pb - b0) * alpha) >> 8); - - m_pixels[offset] = 0xFF000000 | - (r0 & 0xFF0000) | (g0 & 0xFF00) | (b0 & 0xFF); - if (m_zbuffer != null) m_zbuffer[offset] = iz; - } - - // see above [rocha] - temp = ((yi>>16)+1); - if (temp >= SCREEN_HEIGHT) { - xi += (1 << 16); - yi += dt; - continue; - } - - offset = temp * SCREEN_WIDTH + (xi>>16); - - if ((m_zbuffer == null) || (iz <= m_zbuffer[offset])) { - int alpha = (((yi >> 8) & 0xFF) * (ia >> 16)) >> 8; - - int r0 = m_pixels[offset]; - int g0 = r0 & 0xFF00; - int b0 = r0 & 0xFF; - r0&=0xFF0000; - - r0 = r0 + (((pr - r0) * alpha) >> 8); - g0 = g0 + (((pg - g0) * alpha) >> 8); - b0 = b0 + (((pb - b0) * alpha) >> 8); - - m_pixels[offset] = 0xFF000000 | - (r0 & 0xFF0000) | (g0 & 0xFF00) | (b0 & 0xFF); - if (m_zbuffer != null) m_zbuffer[offset] = iz; - } - - xi += (1 << 16); - yi += dt; - - iz += dz; - ir += dr; - ig += dg; - ib += db; - ia += da; - } - } - } - - - /* - void drawLine_smooth(int x0, int y0, int dt, - int length, boolean vertical) { - int xi, yi; // these must be >=32 bits - int offset = 0; - int temp; - int end; - - int ir = (int) m_r0; - int ig = (int) m_g0; - int ib = (int) m_b0; - int ia = (int) m_a0; - - if (vertical) { - xi = x0 << 16; - yi = y0 << 16; - - end = length + y0; - - while ((yi >> 16) < end) { - offset = (yi>>16) * SCREEN_WIDTH + (xi>>16); - - int pr = ir & 0xFF0000; - int pg = (ig >> 8) & 0xFF00; - int pb = (ib >> 16); - - int alpha = (((~xi >> 8) & 0xFF) * (ia >> 16)) >> 8; - - int r0 = m_pixels[offset]; - int g0 = r0 & 0xFF00; - int b0 = r0 & 0xFF; - r0 &= 0xFF0000; - - r0 = r0 + (((pr - r0) * alpha) >> 8); - g0 = g0 + (((pg - g0) * alpha) >> 8); - b0 = b0 + (((pb - b0) * alpha) >> 8); - - m_pixels[offset] = 0xFF000000 | - (r0 & 0xFF0000) | (g0 & 0xFF00) | (b0 & 0xFF); - - // this if() makes things slow. there should be a better way to check - // if the second pixel is within the image array [rocha] - temp = ((xi>>16)+1); - if (temp >= SCREEN_WIDTH) { - xi += dt; - yi += (1 << 16); - continue; - } - - offset = (yi>>16) * SCREEN_WIDTH + temp; - - alpha = (((xi >> 8) & 0xFF) * (ia >> 16)) >> 8; - - r0 = m_pixels[offset]; - g0 = r0 & 0xFF00; - b0 = r0 & 0xFF; - r0 &= 0xFF0000; - - r0 = r0 + (((pr - r0) * alpha) >> 8); - g0 = g0 + (((pg - g0) * alpha) >> 8); - b0 = b0 + (((pb - b0) * alpha) >> 8); - - m_pixels[offset] = 0xFF000000 | - (r0 & 0xFF0000) | (g0 & 0xFF00) | (b0 & 0xFF); - - xi += dt; - yi += (1 << 16); - - ir += dr; - ig += dg; - ib += db; - ia += da; - } - - } else { // horizontal - xi = x0 << 16; - yi = y0 << 16; - end = length + x0; - - while ((xi >> 16) < end) { - offset = (yi>>16) * SCREEN_WIDTH + (xi>>16); - - int pr = ir & 0xFF0000; - int pg = (ig >> 8) & 0xFF00; - int pb = (ib >> 16); - - int alpha = (((~yi >> 8) & 0xFF) * (ia >> 16)) >> 8; - - int r0 = m_pixels[offset]; - int g0 = r0 & 0xFF00; - int b0 = r0 & 0xFF; - r0 &= 0xFF0000; - - r0 = r0 + (((pr - r0) * alpha) >> 8); - g0 = g0 + (((pg - g0) * alpha) >> 8); - b0 = b0 + (((pb - b0) * alpha) >> 8); - - m_pixels[offset] = 0xFF000000 | - (r0 & 0xFF0000) | (g0 & 0xFF00) | (b0 & 0xFF); - - // see above [rocha] - temp = ((yi>>16)+1); - if (temp >= SCREEN_HEIGHT) { - xi += (1 << 16); - yi += dt; - continue; - } - - offset = temp * SCREEN_WIDTH + (xi>>16); - - alpha = (((yi >> 8) & 0xFF) * (ia >> 16)) >> 8; - - r0 = m_pixels[offset]; - g0 = r0 & 0xFF00; - b0 = r0 & 0xFF; - r0 &= 0xFF0000; - - r0 = r0 + (((pr - r0) * alpha) >> 8); - g0 = g0 + (((pg - g0) * alpha) >> 8); - b0 = b0 + (((pb - b0) * alpha) >> 8); - - m_pixels[offset] = 0xFF000000 | - (r0 & 0xFF0000) | (g0 & 0xFF00) | (b0 & 0xFF); - - xi += (1 << 16); - yi += dt; - - ir+= dr; - ig+= dg; - ib+= db; - ia+= da; - } - } - } - */ -} diff --git a/core/src/processing/core/PMatrix.java b/core/src/processing/core/PMatrix.java deleted file mode 100644 index aac9c0625..000000000 --- a/core/src/processing/core/PMatrix.java +++ /dev/null @@ -1,150 +0,0 @@ -/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */ - -/* - Part of the Processing project - http://processing.org - - Copyright (c) 2005-08 Ben Fry and Casey Reas - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General - Public License along with this library; if not, write to the - Free Software Foundation, Inc., 59 Temple Place, Suite 330, - Boston, MA 02111-1307 USA -*/ - -package processing.core; - - -public interface PMatrix { - - public void reset(); - - /** - * Returns a copy of this PMatrix. - */ - public PMatrix get(); - - /** - * Copies the matrix contents into a float array. - * If target is null (or not the correct size), a new array will be created. - */ - public float[] get(float[] target); - - - public void set(PMatrix src); - - public void set(float[] source); - - public void set(float m00, float m01, float m02, - float m10, float m11, float m12); - - public void set(float m00, float m01, float m02, float m03, - float m10, float m11, float m12, float m13, - float m20, float m21, float m22, float m23, - float m30, float m31, float m32, float m33); - - - public void translate(float tx, float ty); - - public void translate(float tx, float ty, float tz); - - public void rotate(float angle); - - public void rotateX(float angle); - - public void rotateY(float angle); - - public void rotateZ(float angle); - - public void rotate(float angle, float v0, float v1, float v2); - - public void scale(float s); - - public void scale(float sx, float sy); - - public void scale(float x, float y, float z); - - public void skewX(float angle); - - public void skewY(float angle); - - /** - * Multiply this matrix by another. - */ - public void apply(PMatrix source); - - public void apply(PMatrix2D source); - - public void apply(PMatrix3D source); - - public void apply(float n00, float n01, float n02, - float n10, float n11, float n12); - - public void apply(float n00, float n01, float n02, float n03, - float n10, float n11, float n12, float n13, - float n20, float n21, float n22, float n23, - float n30, float n31, float n32, float n33); - - /** - * Apply another matrix to the left of this one. - */ - public void preApply(PMatrix2D left); - - public void preApply(PMatrix3D left); - - public void preApply(float n00, float n01, float n02, - float n10, float n11, float n12); - - public void preApply(float n00, float n01, float n02, float n03, - float n10, float n11, float n12, float n13, - float n20, float n21, float n22, float n23, - float n30, float n31, float n32, float n33); - - - /** - * Multiply a PVector by this matrix. - */ - public PVector mult(PVector source, PVector target); - - - /** - * Multiply a multi-element vector against this matrix. - */ - public float[] mult(float[] source, float[] target); - - -// public float multX(float x, float y); -// public float multY(float x, float y); - -// public float multX(float x, float y, float z); -// public float multY(float x, float y, float z); -// public float multZ(float x, float y, float z); - - - /** - * Transpose this matrix. - */ - public void transpose(); - - - /** - * Invert this matrix. - * @return true if successful - */ - public boolean invert(); - - - /** - * @return the determinant of the matrix - */ - public float determinant(); -} \ No newline at end of file diff --git a/core/src/processing/core/PMatrix2D.java b/core/src/processing/core/PMatrix2D.java deleted file mode 100644 index fad4d0fa8..000000000 --- a/core/src/processing/core/PMatrix2D.java +++ /dev/null @@ -1,450 +0,0 @@ -/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */ - -/* - Part of the Processing project - http://processing.org - - Copyright (c) 2005-08 Ben Fry and Casey Reas - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General - Public License along with this library; if not, write to the - Free Software Foundation, Inc., 59 Temple Place, Suite 330, - Boston, MA 02111-1307 USA -*/ - -package processing.core; - - -/** - * 3x2 affine matrix implementation. - */ -public class PMatrix2D implements PMatrix { - - public float m00, m01, m02; - public float m10, m11, m12; - - - public PMatrix2D() { - reset(); - } - - - public PMatrix2D(float m00, float m01, float m02, - float m10, float m11, float m12) { - set(m00, m01, m02, - m10, m11, m12); - } - - - public PMatrix2D(PMatrix matrix) { - set(matrix); - } - - - public void reset() { - set(1, 0, 0, - 0, 1, 0); - } - - - /** - * Returns a copy of this PMatrix. - */ - public PMatrix2D get() { - PMatrix2D outgoing = new PMatrix2D(); - outgoing.set(this); - return outgoing; - } - - - /** - * Copies the matrix contents into a 6 entry float array. - * If target is null (or not the correct size), a new array will be created. - */ - public float[] get(float[] target) { - if ((target == null) || (target.length != 6)) { - target = new float[6]; - } - target[0] = m00; - target[1] = m01; - target[2] = m02; - - target[3] = m10; - target[4] = m11; - target[5] = m12; - - return target; - } - - - public void set(PMatrix matrix) { - if (matrix instanceof PMatrix2D) { - PMatrix2D src = (PMatrix2D) matrix; - set(src.m00, src.m01, src.m02, - src.m10, src.m11, src.m12); - } else { - throw new IllegalArgumentException("PMatrix2D.set() only accepts PMatrix2D objects."); - } - } - - - public void set(PMatrix3D src) { - } - - - public void set(float[] source) { - m00 = source[0]; - m01 = source[1]; - m02 = source[2]; - - m10 = source[3]; - m11 = source[4]; - m12 = source[5]; - } - - - public void set(float m00, float m01, float m02, - float m10, float m11, float m12) { - this.m00 = m00; this.m01 = m01; this.m02 = m02; - this.m10 = m10; this.m11 = m11; this.m12 = m12; - } - - - public void set(float m00, float m01, float m02, float m03, - float m10, float m11, float m12, float m13, - float m20, float m21, float m22, float m23, - float m30, float m31, float m32, float m33) { - - } - - - public void translate(float tx, float ty) { - m02 = tx*m00 + ty*m01 + m02; - m12 = tx*m10 + ty*m11 + m12; - } - - - public void translate(float x, float y, float z) { - throw new IllegalArgumentException("Cannot use translate(x, y, z) on a PMatrix2D."); - } - - - // Implementation roughly based on AffineTransform. - public void rotate(float angle) { - float s = sin(angle); - float c = cos(angle); - - float temp1 = m00; - float temp2 = m01; - m00 = c * temp1 + s * temp2; - m01 = -s * temp1 + c * temp2; - temp1 = m10; - temp2 = m11; - m10 = c * temp1 + s * temp2; - m11 = -s * temp1 + c * temp2; - } - - - public void rotateX(float angle) { - throw new IllegalArgumentException("Cannot use rotateX() on a PMatrix2D."); - } - - - public void rotateY(float angle) { - throw new IllegalArgumentException("Cannot use rotateY() on a PMatrix2D."); - } - - - public void rotateZ(float angle) { - rotate(angle); - } - - - public void rotate(float angle, float v0, float v1, float v2) { - throw new IllegalArgumentException("Cannot use this version of rotate() on a PMatrix2D."); - } - - - public void scale(float s) { - scale(s, s); - } - - - public void scale(float sx, float sy) { - m00 *= sx; m01 *= sy; - m10 *= sx; m11 *= sy; - } - - - public void scale(float x, float y, float z) { - throw new IllegalArgumentException("Cannot use this version of scale() on a PMatrix2D."); - } - - - public void skewX(float angle) { - apply(1, 0, 1, angle, 0, 0); - } - - - public void skewY(float angle) { - apply(1, 0, 1, 0, angle, 0); - } - - - public void apply(PMatrix source) { - if (source instanceof PMatrix2D) { - apply((PMatrix2D) source); - } else if (source instanceof PMatrix3D) { - apply((PMatrix3D) source); - } - } - - - public void apply(PMatrix2D source) { - apply(source.m00, source.m01, source.m02, - source.m10, source.m11, source.m12); - } - - - public void apply(PMatrix3D source) { - throw new IllegalArgumentException("Cannot use apply(PMatrix3D) on a PMatrix2D."); - } - - - public void apply(float n00, float n01, float n02, - float n10, float n11, float n12) { - float t0 = m00; - float t1 = m01; - m00 = n00 * t0 + n10 * t1; - m01 = n01 * t0 + n11 * t1; - m02 += n02 * t0 + n12 * t1; - - t0 = m10; - t1 = m11; - m10 = n00 * t0 + n10 * t1; - m11 = n01 * t0 + n11 * t1; - m12 += n02 * t0 + n12 * t1; - } - - - public void apply(float n00, float n01, float n02, float n03, - float n10, float n11, float n12, float n13, - float n20, float n21, float n22, float n23, - float n30, float n31, float n32, float n33) { - throw new IllegalArgumentException("Cannot use this version of apply() on a PMatrix2D."); - } - - - /** - * Apply another matrix to the left of this one. - */ - public void preApply(PMatrix2D left) { - preApply(left.m00, left.m01, left.m02, - left.m10, left.m11, left.m12); - } - - - public void preApply(PMatrix3D left) { - throw new IllegalArgumentException("Cannot use preApply(PMatrix3D) on a PMatrix2D."); - } - - - public void preApply(float n00, float n01, float n02, - float n10, float n11, float n12) { - float t0 = m02; - float t1 = m12; - n02 += t0 * n00 + t1 * n01; - n12 += t0 * n10 + t1 * n11; - - m02 = n02; - m12 = n12; - - t0 = m00; - t1 = m10; - m00 = t0 * n00 + t1 * n01; - m10 = t0 * n10 + t1 * n11; - - t0 = m01; - t1 = m11; - m01 = t0 * n00 + t1 * n01; - m11 = t0 * n10 + t1 * n11; - } - - - public void preApply(float n00, float n01, float n02, float n03, - float n10, float n11, float n12, float n13, - float n20, float n21, float n22, float n23, - float n30, float n31, float n32, float n33) { - throw new IllegalArgumentException("Cannot use this version of preApply() on a PMatrix2D."); - } - - - ////////////////////////////////////////////////////////////// - - - /** - * Multiply the x and y coordinates of a PVector against this matrix. - */ - public PVector mult(PVector source, PVector target) { - if (target == null) { - target = new PVector(); - } - target.x = m00*source.x + m01*source.y + m02; - target.y = m10*source.x + m11*source.y + m12; - return target; - } - - - /** - * Multiply a two element vector against this matrix. - * If out is null or not length four, a new float array will be returned. - * The values for vec and out can be the same (though that's less efficient). - */ - public float[] mult(float vec[], float out[]) { - if (out == null || out.length != 2) { - out = new float[2]; - } - - if (vec == out) { - float tx = m00*vec[0] + m01*vec[1] + m02; - float ty = m10*vec[0] + m11*vec[1] + m12; - - out[0] = tx; - out[1] = ty; - - } else { - out[0] = m00*vec[0] + m01*vec[1] + m02; - out[1] = m10*vec[0] + m11*vec[1] + m12; - } - - return out; - } - - - public float multX(float x, float y) { - return m00*x + m01*y + m02; - } - - - public float multY(float x, float y) { - return m10*x + m11*y + m12; - } - - - /** - * Transpose this matrix. - */ - public void transpose() { - } - - - /** - * Invert this matrix. Implementation stolen from OpenJDK. - * @return true if successful - */ - public boolean invert() { - float determinant = determinant(); - if (Math.abs(determinant) <= Float.MIN_VALUE) { - return false; - } - - float t00 = m00; - float t01 = m01; - float t02 = m02; - float t10 = m10; - float t11 = m11; - float t12 = m12; - - m00 = t11 / determinant; - m10 = -t10 / determinant; - m01 = -t01 / determinant; - m11 = t00 / determinant; - m02 = (t01 * t12 - t11 * t02) / determinant; - m12 = (t10 * t02 - t00 * t12) / determinant; - - return true; - } - - - /** - * @return the determinant of the matrix - */ - public float determinant() { - return m00 * m11 - m01 * m10; - } - - - ////////////////////////////////////////////////////////////// - - - public void print() { - int big = (int) abs(max(PApplet.max(abs(m00), abs(m01), abs(m02)), - PApplet.max(abs(m10), abs(m11), abs(m12)))); - - int digits = 1; - if (Float.isNaN(big) || Float.isInfinite(big)) { // avoid infinite loop - digits = 5; - } else { - while ((big /= 10) != 0) digits++; // cheap log() - } - - System.out.println(PApplet.nfs(m00, digits, 4) + " " + - PApplet.nfs(m01, digits, 4) + " " + - PApplet.nfs(m02, digits, 4)); - - System.out.println(PApplet.nfs(m10, digits, 4) + " " + - PApplet.nfs(m11, digits, 4) + " " + - PApplet.nfs(m12, digits, 4)); - - System.out.println(); - } - - - ////////////////////////////////////////////////////////////// - - // TODO these need to be added as regular API, but the naming and - // implementation needs to be improved first. (e.g. actually keeping track - // of whether the matrix is in fact identity internally.) - - - protected boolean isIdentity() { - return ((m00 == 1) && (m01 == 0) && (m02 == 0) && - (m10 == 0) && (m11 == 1) && (m12 == 0)); - } - - - // TODO make this more efficient, or move into PMatrix2D - protected boolean isWarped() { - return ((m00 != 1) || (m01 != 0) && - (m10 != 0) || (m11 != 1)); - } - - - ////////////////////////////////////////////////////////////// - - - private final float max(float a, float b) { - return (a > b) ? a : b; - } - - private final float abs(float a) { - return (a < 0) ? -a : a; - } - - private final float sin(float angle) { - return (float)Math.sin(angle); - } - - private final float cos(float angle) { - return (float)Math.cos(angle); - } -} diff --git a/core/src/processing/core/PMatrix3D.java b/core/src/processing/core/PMatrix3D.java deleted file mode 100644 index 25d9fd11d..000000000 --- a/core/src/processing/core/PMatrix3D.java +++ /dev/null @@ -1,782 +0,0 @@ -/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */ - -/* - Part of the Processing project - http://processing.org - - Copyright (c) 2005-08 Ben Fry and Casey Reas - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General - Public License along with this library; if not, write to the - Free Software Foundation, Inc., 59 Temple Place, Suite 330, - Boston, MA 02111-1307 USA -*/ - -package processing.core; - - -/** - * 4x4 matrix implementation. - */ -public final class PMatrix3D implements PMatrix /*, PConstants*/ { - - public float m00, m01, m02, m03; - public float m10, m11, m12, m13; - public float m20, m21, m22, m23; - public float m30, m31, m32, m33; - - - // locally allocated version to avoid creating new memory - protected PMatrix3D inverseCopy; - - - public PMatrix3D() { - reset(); - } - - - public PMatrix3D(float m00, float m01, float m02, - float m10, float m11, float m12) { - set(m00, m01, m02, 0, - m10, m11, m12, 0, - 0, 0, 1, 0, - 0, 0, 0, 1); - } - - - public PMatrix3D(float m00, float m01, float m02, float m03, - float m10, float m11, float m12, float m13, - float m20, float m21, float m22, float m23, - float m30, float m31, float m32, float m33) { - set(m00, m01, m02, m03, - m10, m11, m12, m13, - m20, m21, m22, m23, - m30, m31, m32, m33); - } - - - public PMatrix3D(PMatrix matrix) { - set(matrix); - } - - - public void reset() { - set(1, 0, 0, 0, - 0, 1, 0, 0, - 0, 0, 1, 0, - 0, 0, 0, 1); - } - - - /** - * Returns a copy of this PMatrix. - */ - public PMatrix3D get() { - PMatrix3D outgoing = new PMatrix3D(); - outgoing.set(this); - return outgoing; - } - - - /** - * Copies the matrix contents into a 16 entry float array. - * If target is null (or not the correct size), a new array will be created. - */ - public float[] get(float[] target) { - if ((target == null) || (target.length != 16)) { - target = new float[16]; - } - target[0] = m00; - target[1] = m01; - target[2] = m02; - target[3] = m03; - - target[4] = m10; - target[5] = m11; - target[6] = m12; - target[7] = m13; - - target[8] = m20; - target[9] = m21; - target[10] = m22; - target[11] = m23; - - target[12] = m30; - target[13] = m31; - target[14] = m32; - target[15] = m33; - - return target; - } - - - public void set(PMatrix matrix) { - if (matrix instanceof PMatrix3D) { - PMatrix3D src = (PMatrix3D) matrix; - set(src.m00, src.m01, src.m02, src.m03, - src.m10, src.m11, src.m12, src.m13, - src.m20, src.m21, src.m22, src.m23, - src.m30, src.m31, src.m32, src.m33); - } else { - PMatrix2D src = (PMatrix2D) matrix; - set(src.m00, src.m01, 0, src.m02, - src.m10, src.m11, 0, src.m12, - 0, 0, 1, 0, - 0, 0, 0, 1); - } - } - - - public void set(float[] source) { - if (source.length == 6) { - set(source[0], source[1], source[2], - source[3], source[4], source[5]); - - } else if (source.length == 16) { - m00 = source[0]; - m01 = source[1]; - m02 = source[2]; - m03 = source[3]; - - m10 = source[4]; - m11 = source[5]; - m12 = source[6]; - m13 = source[7]; - - m20 = source[8]; - m21 = source[9]; - m22 = source[10]; - m23 = source[11]; - - m30 = source[12]; - m31 = source[13]; - m32 = source[14]; - m33 = source[15]; - } - } - - - public void set(float m00, float m01, float m02, - float m10, float m11, float m12) { - set(m00, m01, 0, m02, - m10, m11, 0, m12, - 0, 0, 1, 0, - 0, 0, 0, 1); - } - - - public void set(float m00, float m01, float m02, float m03, - float m10, float m11, float m12, float m13, - float m20, float m21, float m22, float m23, - float m30, float m31, float m32, float m33) { - this.m00 = m00; this.m01 = m01; this.m02 = m02; this.m03 = m03; - this.m10 = m10; this.m11 = m11; this.m12 = m12; this.m13 = m13; - this.m20 = m20; this.m21 = m21; this.m22 = m22; this.m23 = m23; - this.m30 = m30; this.m31 = m31; this.m32 = m32; this.m33 = m33; - } - - - public void translate(float tx, float ty) { - translate(tx, ty, 0); - } - -// public void invTranslate(float tx, float ty) { -// invTranslate(tx, ty, 0); -// } - - - public void translate(float tx, float ty, float tz) { - m03 += tx*m00 + ty*m01 + tz*m02; - m13 += tx*m10 + ty*m11 + tz*m12; - m23 += tx*m20 + ty*m21 + tz*m22; - m33 += tx*m30 + ty*m31 + tz*m32; - } - - - public void rotate(float angle) { - rotateZ(angle); - } - - - public void rotateX(float angle) { - float c = cos(angle); - float s = sin(angle); - apply(1, 0, 0, 0, 0, c, -s, 0, 0, s, c, 0, 0, 0, 0, 1); - } - - - public void rotateY(float angle) { - float c = cos(angle); - float s = sin(angle); - apply(c, 0, s, 0, 0, 1, 0, 0, -s, 0, c, 0, 0, 0, 0, 1); - } - - - public void rotateZ(float angle) { - float c = cos(angle); - float s = sin(angle); - apply(c, -s, 0, 0, s, c, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); - } - - - public void rotate(float angle, float v0, float v1, float v2) { - // TODO should make sure this vector is normalized - - float c = cos(angle); - float s = sin(angle); - float t = 1.0f - c; - - apply((t*v0*v0) + c, (t*v0*v1) - (s*v2), (t*v0*v2) + (s*v1), 0, - (t*v0*v1) + (s*v2), (t*v1*v1) + c, (t*v1*v2) - (s*v0), 0, - (t*v0*v2) - (s*v1), (t*v1*v2) + (s*v0), (t*v2*v2) + c, 0, - 0, 0, 0, 1); - } - - - public void scale(float s) { - //apply(s, 0, 0, 0, 0, s, 0, 0, 0, 0, s, 0, 0, 0, 0, 1); - scale(s, s, s); - } - - - public void scale(float sx, float sy) { - //apply(sx, 0, 0, 0, 0, sy, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); - scale(sx, sy, 1); - } - - - public void scale(float x, float y, float z) { - //apply(x, 0, 0, 0, 0, y, 0, 0, 0, 0, z, 0, 0, 0, 0, 1); - m00 *= x; m01 *= y; m02 *= z; - m10 *= x; m11 *= y; m12 *= z; - m20 *= x; m21 *= y; m22 *= z; - m30 *= x; m31 *= y; m32 *= z; - } - - - public void skewX(float angle) { - float t = (float) Math.tan(angle); - apply(1, t, 0, 0, - 0, 1, 0, 0, - 0, 0, 1, 0, - 0, 0, 0, 1); - } - - - public void skewY(float angle) { - float t = (float) Math.tan(angle); - apply(1, 0, 0, 0, - t, 1, 0, 0, - 0, 0, 1, 0, - 0, 0, 0, 1); - } - - - public void apply(PMatrix source) { - if (source instanceof PMatrix2D) { - apply((PMatrix2D) source); - } else if (source instanceof PMatrix3D) { - apply((PMatrix3D) source); - } - } - - - public void apply(PMatrix2D source) { - apply(source.m00, source.m01, 0, source.m02, - source.m10, source.m11, 0, source.m12, - 0, 0, 1, 0, - 0, 0, 0, 1); - } - - - public void apply(PMatrix3D source) { - apply(source.m00, source.m01, source.m02, source.m03, - source.m10, source.m11, source.m12, source.m13, - source.m20, source.m21, source.m22, source.m23, - source.m30, source.m31, source.m32, source.m33); - } - - - public void apply(float n00, float n01, float n02, - float n10, float n11, float n12) { - apply(n00, n01, 0, n02, - n10, n11, 0, n12, - 0, 0, 1, 0, - 0, 0, 0, 1); - } - - - public void apply(float n00, float n01, float n02, float n03, - float n10, float n11, float n12, float n13, - float n20, float n21, float n22, float n23, - float n30, float n31, float n32, float n33) { - - float r00 = m00*n00 + m01*n10 + m02*n20 + m03*n30; - float r01 = m00*n01 + m01*n11 + m02*n21 + m03*n31; - float r02 = m00*n02 + m01*n12 + m02*n22 + m03*n32; - float r03 = m00*n03 + m01*n13 + m02*n23 + m03*n33; - - float r10 = m10*n00 + m11*n10 + m12*n20 + m13*n30; - float r11 = m10*n01 + m11*n11 + m12*n21 + m13*n31; - float r12 = m10*n02 + m11*n12 + m12*n22 + m13*n32; - float r13 = m10*n03 + m11*n13 + m12*n23 + m13*n33; - - float r20 = m20*n00 + m21*n10 + m22*n20 + m23*n30; - float r21 = m20*n01 + m21*n11 + m22*n21 + m23*n31; - float r22 = m20*n02 + m21*n12 + m22*n22 + m23*n32; - float r23 = m20*n03 + m21*n13 + m22*n23 + m23*n33; - - float r30 = m30*n00 + m31*n10 + m32*n20 + m33*n30; - float r31 = m30*n01 + m31*n11 + m32*n21 + m33*n31; - float r32 = m30*n02 + m31*n12 + m32*n22 + m33*n32; - float r33 = m30*n03 + m31*n13 + m32*n23 + m33*n33; - - m00 = r00; m01 = r01; m02 = r02; m03 = r03; - m10 = r10; m11 = r11; m12 = r12; m13 = r13; - m20 = r20; m21 = r21; m22 = r22; m23 = r23; - m30 = r30; m31 = r31; m32 = r32; m33 = r33; - } - - - public void preApply(PMatrix2D left) { - preApply(left.m00, left.m01, 0, left.m02, - left.m10, left.m11, 0, left.m12, - 0, 0, 1, 0, - 0, 0, 0, 1); - } - - - /** - * Apply another matrix to the left of this one. - */ - public void preApply(PMatrix3D left) { - preApply(left.m00, left.m01, left.m02, left.m03, - left.m10, left.m11, left.m12, left.m13, - left.m20, left.m21, left.m22, left.m23, - left.m30, left.m31, left.m32, left.m33); - } - - - public void preApply(float n00, float n01, float n02, - float n10, float n11, float n12) { - preApply(n00, n01, 0, n02, - n10, n11, 0, n12, - 0, 0, 1, 0, - 0, 0, 0, 1); - } - - - public void preApply(float n00, float n01, float n02, float n03, - float n10, float n11, float n12, float n13, - float n20, float n21, float n22, float n23, - float n30, float n31, float n32, float n33) { - - float r00 = n00*m00 + n01*m10 + n02*m20 + n03*m30; - float r01 = n00*m01 + n01*m11 + n02*m21 + n03*m31; - float r02 = n00*m02 + n01*m12 + n02*m22 + n03*m32; - float r03 = n00*m03 + n01*m13 + n02*m23 + n03*m33; - - float r10 = n10*m00 + n11*m10 + n12*m20 + n13*m30; - float r11 = n10*m01 + n11*m11 + n12*m21 + n13*m31; - float r12 = n10*m02 + n11*m12 + n12*m22 + n13*m32; - float r13 = n10*m03 + n11*m13 + n12*m23 + n13*m33; - - float r20 = n20*m00 + n21*m10 + n22*m20 + n23*m30; - float r21 = n20*m01 + n21*m11 + n22*m21 + n23*m31; - float r22 = n20*m02 + n21*m12 + n22*m22 + n23*m32; - float r23 = n20*m03 + n21*m13 + n22*m23 + n23*m33; - - float r30 = n30*m00 + n31*m10 + n32*m20 + n33*m30; - float r31 = n30*m01 + n31*m11 + n32*m21 + n33*m31; - float r32 = n30*m02 + n31*m12 + n32*m22 + n33*m32; - float r33 = n30*m03 + n31*m13 + n32*m23 + n33*m33; - - m00 = r00; m01 = r01; m02 = r02; m03 = r03; - m10 = r10; m11 = r11; m12 = r12; m13 = r13; - m20 = r20; m21 = r21; m22 = r22; m23 = r23; - m30 = r30; m31 = r31; m32 = r32; m33 = r33; - } - - - ////////////////////////////////////////////////////////////// - - - public PVector mult(PVector source, PVector target) { - if (target == null) { - target = new PVector(); - } - target.x = m00*source.x + m01*source.y + m02*source.z + m03; - target.y = m10*source.x + m11*source.y + m12*source.z + m13; - target.z = m20*source.x + m21*source.y + m22*source.z + m23; -// float tw = m30*source.x + m31*source.y + m32*source.z + m33; -// if (tw != 0 && tw != 1) { -// target.div(tw); -// } - return target; - } - - - /* - public PVector cmult(PVector source, PVector target) { - if (target == null) { - target = new PVector(); - } - target.x = m00*source.x + m10*source.y + m20*source.z + m30; - target.y = m01*source.x + m11*source.y + m21*source.z + m31; - target.z = m02*source.x + m12*source.y + m22*source.z + m32; - float tw = m03*source.x + m13*source.y + m23*source.z + m33; - if (tw != 0 && tw != 1) { - target.div(tw); - } - return target; - } - */ - - - /** - * Multiply a three or four element vector against this matrix. If out is - * null or not length 3 or 4, a new float array (length 3) will be returned. - */ - public float[] mult(float[] source, float[] target) { - if (target == null || target.length < 3) { - target = new float[3]; - } - if (source == target) { - throw new RuntimeException("The source and target vectors used in " + - "PMatrix3D.mult() cannot be identical."); - } - if (target.length == 3) { - target[0] = m00*source[0] + m01*source[1] + m02*source[2] + m03; - target[1] = m10*source[0] + m11*source[1] + m12*source[2] + m13; - target[2] = m20*source[0] + m21*source[1] + m22*source[2] + m23; - //float w = m30*source[0] + m31*source[1] + m32*source[2] + m33; - //if (w != 0 && w != 1) { - // target[0] /= w; target[1] /= w; target[2] /= w; - //} - } else if (target.length > 3) { - target[0] = m00*source[0] + m01*source[1] + m02*source[2] + m03*source[3]; - target[1] = m10*source[0] + m11*source[1] + m12*source[2] + m13*source[3]; - target[2] = m20*source[0] + m21*source[1] + m22*source[2] + m23*source[3]; - target[3] = m30*source[0] + m31*source[1] + m32*source[2] + m33*source[3]; - } - return target; - } - - - public float multX(float x, float y) { - return m00*x + m01*y + m03; - } - - - public float multY(float x, float y) { - return m10*x + m11*y + m13; - } - - - public float multX(float x, float y, float z) { - return m00*x + m01*y + m02*z + m03; - } - - - public float multY(float x, float y, float z) { - return m10*x + m11*y + m12*z + m13; - } - - - public float multZ(float x, float y, float z) { - return m20*x + m21*y + m22*z + m23; - } - - - public float multW(float x, float y, float z) { - return m30*x + m31*y + m32*z + m33; - } - - - public float multX(float x, float y, float z, float w) { - return m00*x + m01*y + m02*z + m03*w; - } - - - public float multY(float x, float y, float z, float w) { - return m10*x + m11*y + m12*z + m13*w; - } - - - public float multZ(float x, float y, float z, float w) { - return m20*x + m21*y + m22*z + m23*w; - } - - - public float multW(float x, float y, float z, float w) { - return m30*x + m31*y + m32*z + m33*w; - } - - - /** - * Transpose this matrix. - */ - public void transpose() { - float temp; - temp = m01; m01 = m10; m10 = temp; - temp = m02; m02 = m20; m20 = temp; - temp = m03; m03 = m30; m30 = temp; - temp = m12; m12 = m21; m21 = temp; - temp = m13; m13 = m31; m31 = temp; - temp = m23; m23 = m32; m32 = temp; - } - - - /** - * Invert this matrix. - * @return true if successful - */ - public boolean invert() { - float determinant = determinant(); - if (determinant == 0) { - return false; - } - - // first row - float t00 = determinant3x3(m11, m12, m13, m21, m22, m23, m31, m32, m33); - float t01 = -determinant3x3(m10, m12, m13, m20, m22, m23, m30, m32, m33); - float t02 = determinant3x3(m10, m11, m13, m20, m21, m23, m30, m31, m33); - float t03 = -determinant3x3(m10, m11, m12, m20, m21, m22, m30, m31, m32); - - // second row - float t10 = -determinant3x3(m01, m02, m03, m21, m22, m23, m31, m32, m33); - float t11 = determinant3x3(m00, m02, m03, m20, m22, m23, m30, m32, m33); - float t12 = -determinant3x3(m00, m01, m03, m20, m21, m23, m30, m31, m33); - float t13 = determinant3x3(m00, m01, m02, m20, m21, m22, m30, m31, m32); - - // third row - float t20 = determinant3x3(m01, m02, m03, m11, m12, m13, m31, m32, m33); - float t21 = -determinant3x3(m00, m02, m03, m10, m12, m13, m30, m32, m33); - float t22 = determinant3x3(m00, m01, m03, m10, m11, m13, m30, m31, m33); - float t23 = -determinant3x3(m00, m01, m02, m10, m11, m12, m30, m31, m32); - - // fourth row - float t30 = -determinant3x3(m01, m02, m03, m11, m12, m13, m21, m22, m23); - float t31 = determinant3x3(m00, m02, m03, m10, m12, m13, m20, m22, m23); - float t32 = -determinant3x3(m00, m01, m03, m10, m11, m13, m20, m21, m23); - float t33 = determinant3x3(m00, m01, m02, m10, m11, m12, m20, m21, m22); - - // transpose and divide by the determinant - m00 = t00 / determinant; - m01 = t10 / determinant; - m02 = t20 / determinant; - m03 = t30 / determinant; - - m10 = t01 / determinant; - m11 = t11 / determinant; - m12 = t21 / determinant; - m13 = t31 / determinant; - - m20 = t02 / determinant; - m21 = t12 / determinant; - m22 = t22 / determinant; - m23 = t32 / determinant; - - m30 = t03 / determinant; - m31 = t13 / determinant; - m32 = t23 / determinant; - m33 = t33 / determinant; - - return true; - } - - - /** - * Calculate the determinant of a 3x3 matrix. - * @return result - */ - private float determinant3x3(float t00, float t01, float t02, - float t10, float t11, float t12, - float t20, float t21, float t22) { - return (t00 * (t11 * t22 - t12 * t21) + - t01 * (t12 * t20 - t10 * t22) + - t02 * (t10 * t21 - t11 * t20)); - } - - - /** - * @return the determinant of the matrix - */ - public float determinant() { - float f = - m00 - * ((m11 * m22 * m33 + m12 * m23 * m31 + m13 * m21 * m32) - - m13 * m22 * m31 - - m11 * m23 * m32 - - m12 * m21 * m33); - f -= m01 - * ((m10 * m22 * m33 + m12 * m23 * m30 + m13 * m20 * m32) - - m13 * m22 * m30 - - m10 * m23 * m32 - - m12 * m20 * m33); - f += m02 - * ((m10 * m21 * m33 + m11 * m23 * m30 + m13 * m20 * m31) - - m13 * m21 * m30 - - m10 * m23 * m31 - - m11 * m20 * m33); - f -= m03 - * ((m10 * m21 * m32 + m11 * m22 * m30 + m12 * m20 * m31) - - m12 * m21 * m30 - - m10 * m22 * m31 - - m11 * m20 * m32); - return f; - } - - - ////////////////////////////////////////////////////////////// - - // REVERSE VERSIONS OF MATRIX OPERATIONS - - // These functions should not be used, as they will be removed in the future. - - - protected void invTranslate(float tx, float ty, float tz) { - preApply(1, 0, 0, -tx, - 0, 1, 0, -ty, - 0, 0, 1, -tz, - 0, 0, 0, 1); - } - - - protected void invRotateX(float angle) { - float c = cos(-angle); - float s = sin(-angle); - preApply(1, 0, 0, 0, 0, c, -s, 0, 0, s, c, 0, 0, 0, 0, 1); - } - - - protected void invRotateY(float angle) { - float c = cos(-angle); - float s = sin(-angle); - preApply(c, 0, s, 0, 0, 1, 0, 0, -s, 0, c, 0, 0, 0, 0, 1); - } - - - protected void invRotateZ(float angle) { - float c = cos(-angle); - float s = sin(-angle); - preApply(c, -s, 0, 0, s, c, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); - } - - - protected void invRotate(float angle, float v0, float v1, float v2) { - //TODO should make sure this vector is normalized - - float c = cos(-angle); - float s = sin(-angle); - float t = 1.0f - c; - - preApply((t*v0*v0) + c, (t*v0*v1) - (s*v2), (t*v0*v2) + (s*v1), 0, - (t*v0*v1) + (s*v2), (t*v1*v1) + c, (t*v1*v2) - (s*v0), 0, - (t*v0*v2) - (s*v1), (t*v1*v2) + (s*v0), (t*v2*v2) + c, 0, - 0, 0, 0, 1); - } - - - protected void invScale(float x, float y, float z) { - preApply(1/x, 0, 0, 0, 0, 1/y, 0, 0, 0, 0, 1/z, 0, 0, 0, 0, 1); - } - - - protected boolean invApply(float n00, float n01, float n02, float n03, - float n10, float n11, float n12, float n13, - float n20, float n21, float n22, float n23, - float n30, float n31, float n32, float n33) { - if (inverseCopy == null) { - inverseCopy = new PMatrix3D(); - } - inverseCopy.set(n00, n01, n02, n03, - n10, n11, n12, n13, - n20, n21, n22, n23, - n30, n31, n32, n33); - if (!inverseCopy.invert()) { - return false; - } - preApply(inverseCopy); - return true; - } - - - ////////////////////////////////////////////////////////////// - - - public void print() { - /* - System.out.println(m00 + " " + m01 + " " + m02 + " " + m03 + "\n" + - m10 + " " + m11 + " " + m12 + " " + m13 + "\n" + - m20 + " " + m21 + " " + m22 + " " + m23 + "\n" + - m30 + " " + m31 + " " + m32 + " " + m33 + "\n"); - */ - int big = (int) Math.abs(max(max(max(max(abs(m00), abs(m01)), - max(abs(m02), abs(m03))), - max(max(abs(m10), abs(m11)), - max(abs(m12), abs(m13)))), - max(max(max(abs(m20), abs(m21)), - max(abs(m22), abs(m23))), - max(max(abs(m30), abs(m31)), - max(abs(m32), abs(m33)))))); - - int digits = 1; - if (Float.isNaN(big) || Float.isInfinite(big)) { // avoid infinite loop - digits = 5; - } else { - while ((big /= 10) != 0) digits++; // cheap log() - } - - System.out.println(PApplet.nfs(m00, digits, 4) + " " + - PApplet.nfs(m01, digits, 4) + " " + - PApplet.nfs(m02, digits, 4) + " " + - PApplet.nfs(m03, digits, 4)); - - System.out.println(PApplet.nfs(m10, digits, 4) + " " + - PApplet.nfs(m11, digits, 4) + " " + - PApplet.nfs(m12, digits, 4) + " " + - PApplet.nfs(m13, digits, 4)); - - System.out.println(PApplet.nfs(m20, digits, 4) + " " + - PApplet.nfs(m21, digits, 4) + " " + - PApplet.nfs(m22, digits, 4) + " " + - PApplet.nfs(m23, digits, 4)); - - System.out.println(PApplet.nfs(m30, digits, 4) + " " + - PApplet.nfs(m31, digits, 4) + " " + - PApplet.nfs(m32, digits, 4) + " " + - PApplet.nfs(m33, digits, 4)); - - System.out.println(); - } - - - ////////////////////////////////////////////////////////////// - - - private final float max(float a, float b) { - return (a > b) ? a : b; - } - - private final float abs(float a) { - return (a < 0) ? -a : a; - } - - private final float sin(float angle) { - return (float) Math.sin(angle); - } - - private final float cos(float angle) { - return (float) Math.cos(angle); - } -} diff --git a/core/src/processing/core/PPolygon.java b/core/src/processing/core/PPolygon.java deleted file mode 100644 index 0651fbe2d..000000000 --- a/core/src/processing/core/PPolygon.java +++ /dev/null @@ -1,701 +0,0 @@ -/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */ - -/* - Part of the Processing project - http://processing.org - - Copyright (c) 2004-08 Ben Fry and Casey Reas - Copyright (c) 2001-04 Massachusetts Institute of Technology - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General - Public License along with this library; if not, write to the - Free Software Foundation, Inc., 59 Temple Place, Suite 330, - Boston, MA 02111-1307 USA -*/ - -package processing.core; - - -/** - * Z-buffer polygon rendering object used by PGraphics2D. - */ -public class PPolygon implements PConstants { - - static final int DEFAULT_SIZE = 64; // this is needed for spheres - float vertices[][] = new float[DEFAULT_SIZE][VERTEX_FIELD_COUNT]; - int vertexCount; - - float r[] = new float[DEFAULT_SIZE]; // storage used by incrementalize - float dr[] = new float[DEFAULT_SIZE]; - float l[] = new float[DEFAULT_SIZE]; // more storage for incrementalize - float dl[] = new float[DEFAULT_SIZE]; - float sp[] = new float[DEFAULT_SIZE]; // temporary storage for scanline - float sdp[] = new float[DEFAULT_SIZE]; - - protected boolean interpX; - protected boolean interpUV; // is this necessary? could just check timage != null - protected boolean interpARGB; - - private int rgba; - private int r2, g2, b2, a2, a2orig; - - PGraphics parent; - int[] pixels; - // the parent's width/height, - // or if smooth is enabled, parent's w/h scaled - // up by the smooth dimension - int width, height; - int width1, height1; - - PImage timage; - int[] tpixels; - int theight, twidth; - int theight1, twidth1; - int tformat; - - // for anti-aliasing - static final int SUBXRES = 8; - static final int SUBXRES1 = 7; - static final int SUBYRES = 8; - static final int SUBYRES1 = 7; - static final int MAX_COVERAGE = SUBXRES * SUBYRES; - - boolean smooth; - int firstModY; - int lastModY; - int lastY; - int aaleft[] = new int[SUBYRES]; - int aaright[] = new int[SUBYRES]; - int aaleftmin, aarightmin; - int aaleftmax, aarightmax; - int aaleftfull, aarightfull; - - final private int MODYRES(int y) { - return (y & SUBYRES1); - } - - - public PPolygon(PGraphics iparent) { - parent = iparent; - reset(0); - } - - - protected void reset(int count) { - vertexCount = count; - interpX = true; -// interpZ = true; - interpUV = false; - interpARGB = true; - timage = null; - } - - - protected float[] nextVertex() { - if (vertexCount == vertices.length) { - float temp[][] = new float[vertexCount<<1][VERTEX_FIELD_COUNT]; - System.arraycopy(vertices, 0, temp, 0, vertexCount); - vertices = temp; - - r = new float[vertices.length]; - dr = new float[vertices.length]; - l = new float[vertices.length]; - dl = new float[vertices.length]; - sp = new float[vertices.length]; - sdp = new float[vertices.length]; - } - return vertices[vertexCount++]; // returns v[0], sets vc to 1 - } - - - /** - * Return true if this vertex is redundant. If so, will also - * decrement the vertex count. - */ - /* - public boolean redundantVertex(float x, float y, float z) { - // because vertexCount will be 2 when setting vertex[1] - if (vertexCount < 2) return false; - - // vertexCount-1 is the current vertex that would be used - // vertexCount-2 would be the previous feller - if ((Math.abs(vertices[vertexCount-2][MX] - x) < EPSILON) && - (Math.abs(vertices[vertexCount-2][MY] - y) < EPSILON) && - (Math.abs(vertices[vertexCount-2][MZ] - z) < EPSILON)) { - vertexCount--; - return true; - } - return false; - } - */ - - - protected void texture(PImage image) { - this.timage = image; - - if (image != null) { - this.tpixels = image.pixels; - this.twidth = image.width; - this.theight = image.height; - this.tformat = image.format; - - twidth1 = twidth - 1; - theight1 = theight - 1; - interpUV = true; - - } else { - interpUV = false; - } - } - - - protected void renderPolygon(float[][] v, int count) { - vertices = v; - vertexCount = count; - - if (r.length < vertexCount) { - r = new float[vertexCount]; // storage used by incrementalize - dr = new float[vertexCount]; - l = new float[vertexCount]; // more storage for incrementalize - dl = new float[vertexCount]; - sp = new float[vertexCount]; // temporary storage for scanline - sdp = new float[vertexCount]; - } - - render(); - checkExpand(); - } - - - protected void renderTriangle(float[] v1, float[] v2, float[] v3) { - // Calling code will have already done reset(3). - // Can't do it here otherwise would nuke any texture settings. - - vertices[0] = v1; - vertices[1] = v2; - vertices[2] = v3; - - render(); - checkExpand(); - } - - - protected void checkExpand() { - if (smooth) { - for (int i = 0; i < vertexCount; i++) { - vertices[i][TX] /= SUBXRES; - vertices[i][TY] /= SUBYRES; - } - } - } - - - protected void render() { - if (vertexCount < 3) return; - - // these may have changed due to a resize() - // so they should be refreshed here - pixels = parent.pixels; - //zbuffer = parent.zbuffer; - -// noDepthTest = parent.hints[DISABLE_DEPTH_TEST]; - smooth = parent.smooth; - - // by default, text turns on smooth for the textures - // themselves. but this should be shut off if the hint - // for DISABLE_TEXT_SMOOTH is set. -// texture_smooth = true; - - width = smooth ? parent.width*SUBXRES : parent.width; - height = smooth ? parent.height*SUBYRES : parent.height; - - width1 = width - 1; - height1 = height - 1; - - if (!interpARGB) { - r2 = (int) (vertices[0][R] * 255); - g2 = (int) (vertices[0][G] * 255); - b2 = (int) (vertices[0][B] * 255); - a2 = (int) (vertices[0][A] * 255); - a2orig = a2; // save an extra copy - rgba = 0xff000000 | (r2 << 16) | (g2 << 8) | b2; - } - - for (int i = 0; i < vertexCount; i++) { - r[i] = 0; dr[i] = 0; l[i] = 0; dl[i] = 0; - } - - /* - // hack to not make polygons fly into the screen - if (parent.hints[DISABLE_FLYING_POO]) { - float nwidth2 = -width * 2; - float nheight2 = -height * 2; - float width2 = width * 2; - float height2 = height * 2; - for (int i = 0; i < vertexCount; i++) { - if ((vertices[i][TX] < nwidth2) || - (vertices[i][TX] > width2) || - (vertices[i][TY] < nheight2) || - (vertices[i][TY] > height2)) { - return; // this is a bad poly - } - } - } - */ - -// for (int i = 0; i < 4; i++) { -// System.out.println(vertices[i][R] + " " + vertices[i][G] + " " + vertices[i][B]); -// } -// System.out.println(); - - if (smooth) { - for (int i = 0; i < vertexCount; i++) { - vertices[i][TX] *= SUBXRES; - vertices[i][TY] *= SUBYRES; - } - firstModY = -1; - } - - // find top vertex (y is zero at top, higher downwards) - int topi = 0; - float ymin = vertices[0][TY]; - float ymax = vertices[0][TY]; // fry 031001 - for (int i = 1; i < vertexCount; i++) { - if (vertices[i][TY] < ymin) { - ymin = vertices[i][TY]; - topi = i; - } - if (vertices[i][TY] > ymax) { - ymax = vertices[i][TY]; - } - } - - // the last row is an exceptional case, because there won't - // necessarily be 8 rows of subpixel lines that will force - // the final line to render. so instead, the algo keeps track - // of the lastY (in subpixel resolution) that will be rendered - // and that will force a scanline to happen the same as - // every eighth in the other situations - //lastY = -1; // fry 031001 - lastY = (int) (ymax - 0.5f); // global to class bc used by other fxns - - int lefti = topi; // li, index of left vertex - int righti = topi; // ri, index of right vertex - int y = (int) (ymin + 0.5f); // current scan line - int lefty = y - 1; // lower end of left edge - int righty = y - 1; // lower end of right edge - - interpX = true; - - int remaining = vertexCount; - - // scan in y, activating new edges on left & right - // as scan line passes over new vertices - while (remaining > 0) { - // advance left edge? - while ((lefty <= y) && (remaining > 0)) { - remaining--; - // step ccw down left side - int i = (lefti != 0) ? (lefti-1) : (vertexCount-1); - incrementalizeY(vertices[lefti], vertices[i], l, dl, y); - lefty = (int) (vertices[i][TY] + 0.5f); - lefti = i; - } - - // advance right edge? - while ((righty <= y) && (remaining > 0)) { - remaining--; - // step cw down right edge - int i = (righti != vertexCount-1) ? (righti + 1) : 0; - incrementalizeY(vertices[righti], vertices[i], r, dr, y); - righty = (int) (vertices[i][TY] + 0.5f); - righti = i; - } - - // do scanlines till end of l or r edge - while (y < lefty && y < righty) { - // this doesn't work because it's not always set here - //if (remaining == 0) { - //lastY = (lefty < righty) ? lefty-1 : righty-1; - //System.out.println("lastY is " + lastY); - //} - - if ((y >= 0) && (y < height)) { - //try { // hopefully this bug is fixed - if (l[TX] <= r[TX]) scanline(y, l, r); - else scanline(y, r, l); - //} catch (ArrayIndexOutOfBoundsException e) { - //e.printStackTrace(); - //} - } - y++; - // this increment probably needs to be different - // UV and RGB shouldn't be incremented until line is emitted - increment(l, dl); - increment(r, dr); - } - } - //if (smooth) { - //System.out.println("y/lasty/lastmody = " + y + " " + lastY + " " + lastModY); - //} - } - - - private void scanline(int y, float l[], float r[]) { - //System.out.println("scanline " + y); - for (int i = 0; i < vertexCount; i++) { // should be moved later - sp[i] = 0; sdp[i] = 0; - } - - // this rounding doesn't seem to be relevant with smooth - int lx = (int) (l[TX] + 0.49999f); // ceil(l[TX]-.5); - if (lx < 0) lx = 0; - int rx = (int) (r[TX] - 0.5f); - if (rx > width1) rx = width1; - - if (lx > rx) return; - - if (smooth) { - int mody = MODYRES(y); - - aaleft[mody] = lx; - aaright[mody] = rx; - - if (firstModY == -1) { - firstModY = mody; - aaleftmin = lx; aaleftmax = lx; - aarightmin = rx; aarightmax = rx; - - } else { - if (aaleftmin > aaleft[mody]) aaleftmin = aaleft[mody]; - if (aaleftmax < aaleft[mody]) aaleftmax = aaleft[mody]; - if (aarightmin > aaright[mody]) aarightmin = aaright[mody]; - if (aarightmax < aaright[mody]) aarightmax = aaright[mody]; - } - - lastModY = mody; // moved up here (before the return) 031001 - // not the eighth (or lastY) line, so not scanning this time - if ((mody != SUBYRES1) && (y != lastY)) return; - //lastModY = mody; // eeK! this was missing - //return; - - //if (y == lastY) { - //System.out.println("y is lasty"); - //} - //lastModY = mody; - aaleftfull = aaleftmax/SUBXRES + 1; - aarightfull = aarightmin/SUBXRES - 1; - } - - // this is the setup, based on lx - incrementalizeX(l, r, sp, sdp, lx); - - // scan in x, generating pixels - // using parent.width to get actual pixel index - // rather than scaled by smooth factor - int offset = smooth ? parent.width * (y / SUBYRES) : parent.width*y; - - int truelx = 0, truerx = 0; - if (smooth) { - truelx = lx / SUBXRES; - truerx = (rx + SUBXRES1) / SUBXRES; - - lx = aaleftmin / SUBXRES; - rx = (aarightmax + SUBXRES1) / SUBXRES; - if (lx < 0) lx = 0; - if (rx > parent.width1) rx = parent.width1; - } - - interpX = false; - int tr, tg, tb, ta; - -// System.out.println("P2D interp uv " + interpUV + " " + -// vertices[2][U] + " " + vertices[2][V]); - for (int x = lx; x <= rx; x++) { - // map texture based on U, V coords in sp[U] and sp[V] - if (interpUV) { - int tu = (int) (sp[U] * twidth); - int tv = (int) (sp[V] * theight); - - if (tu > twidth1) tu = twidth1; - if (tv > theight1) tv = theight1; - if (tu < 0) tu = 0; - if (tv < 0) tv = 0; - - int txy = tv*twidth + tu; - - int tuf1 = (int) (255f * (sp[U]*twidth - (float)tu)); - int tvf1 = (int) (255f * (sp[V]*theight - (float)tv)); - - // the closer sp[U or V] is to the decimal being zero - // the more coverage it should get of the original pixel - int tuf = 255 - tuf1; - int tvf = 255 - tvf1; - - // this code sucks! filled with bugs and slow as hell! - int pixel00 = tpixels[txy]; - int pixel01 = (tv < theight1) ? - tpixels[txy + twidth] : tpixels[txy]; - int pixel10 = (tu < twidth1) ? - tpixels[txy + 1] : tpixels[txy]; - int pixel11 = ((tv < theight1) && (tu < twidth1)) ? - tpixels[txy + twidth + 1] : tpixels[txy]; - - int p00, p01, p10, p11; - int px0, px1; //, pxy; - - - // calculate alpha component (ta) - - if (tformat == ALPHA) { - px0 = (pixel00*tuf + pixel10*tuf1) >> 8; - px1 = (pixel01*tuf + pixel11*tuf1) >> 8; - ta = (((px0*tvf + px1*tvf1) >> 8) * - (interpARGB ? ((int) (sp[A]*255)) : a2orig)) >> 8; - - } else if (tformat == ARGB) { - p00 = (pixel00 >> 24) & 0xff; - p01 = (pixel01 >> 24) & 0xff; - p10 = (pixel10 >> 24) & 0xff; - p11 = (pixel11 >> 24) & 0xff; - - px0 = (p00*tuf + p10*tuf1) >> 8; - px1 = (p01*tuf + p11*tuf1) >> 8; - ta = (((px0*tvf + px1*tvf1) >> 8) * - (interpARGB ? ((int) (sp[A]*255)) : a2orig)) >> 8; - - } else { // RGB image, no alpha - ta = interpARGB ? ((int) (sp[A]*255)) : a2orig; - } - - // calculate r,g,b components (tr, tg, tb) - - if ((tformat == RGB) || (tformat == ARGB)) { - p00 = (pixel00 >> 16) & 0xff; // red - p01 = (pixel01 >> 16) & 0xff; - p10 = (pixel10 >> 16) & 0xff; - p11 = (pixel11 >> 16) & 0xff; - - px0 = (p00*tuf + p10*tuf1) >> 8; - px1 = (p01*tuf + p11*tuf1) >> 8; - tr = (((px0*tvf + px1*tvf1) >> 8) * - (interpARGB ? ((int) (sp[R]*255)) : r2)) >> 8; - - p00 = (pixel00 >> 8) & 0xff; // green - p01 = (pixel01 >> 8) & 0xff; - p10 = (pixel10 >> 8) & 0xff; - p11 = (pixel11 >> 8) & 0xff; - - px0 = (p00*tuf + p10*tuf1) >> 8; - px1 = (p01*tuf + p11*tuf1) >> 8; - tg = (((px0*tvf + px1*tvf1) >> 8) * - (interpARGB ? ((int) (sp[G]*255)) : g2)) >> 8; - - p00 = pixel00 & 0xff; // blue - p01 = pixel01 & 0xff; - p10 = pixel10 & 0xff; - p11 = pixel11 & 0xff; - - px0 = (p00*tuf + p10*tuf1) >> 8; - px1 = (p01*tuf + p11*tuf1) >> 8; - tb = (((px0*tvf + px1*tvf1) >> 8) * - (interpARGB ? ((int) (sp[B]*255)) : b2)) >> 8; - - } else { // alpha image, only use current fill color - if (interpARGB) { - tr = (int) (sp[R] * 255); - tg = (int) (sp[G] * 255); - tb = (int) (sp[B] * 255); - - } else { - tr = r2; - tg = g2; - tb = b2; - } - } - - int weight = smooth ? coverage(x) : 255; - if (weight != 255) ta = ta*weight >> 8; - - if ((ta == 254) || (ta == 255)) { // if (ta & 0xf8) would be good - // no need to blend - pixels[offset+x] = 0xff000000 | (tr << 16) | (tg << 8) | tb; - - } else { - // blend with pixel on screen - int a1 = 255-ta; - int r1 = (pixels[offset+x] >> 16) & 0xff; - int g1 = (pixels[offset+x] >> 8) & 0xff; - int b1 = (pixels[offset+x]) & 0xff; - - pixels[offset+x] = 0xff000000 | - (((tr*ta + r1*a1) >> 8) << 16) | - ((tg*ta + g1*a1) & 0xff00) | - ((tb*ta + b1*a1) >> 8); - } - - } else { // no image applied - int weight = smooth ? coverage(x) : 255; - - if (interpARGB) { - r2 = (int) (sp[R] * 255); - g2 = (int) (sp[G] * 255); - b2 = (int) (sp[B] * 255); - if (sp[A] != 1) weight = (weight * ((int) (sp[A] * 255))) >> 8; - if (weight == 255) { - rgba = 0xff000000 | (r2 << 16) | (g2 << 8) | b2; - } - } else { - if (a2orig != 255) weight = (weight * a2orig) >> 8; - } - - if (weight == 255) { - // no blend, no aa, just the rgba - pixels[offset+x] = rgba; - //zbuffer[offset+x] = sp[Z]; - - } else { - int r1 = (pixels[offset+x] >> 16) & 0xff; - int g1 = (pixels[offset+x] >> 8) & 0xff; - int b1 = (pixels[offset+x]) & 0xff; - a2 = weight; - - int a1 = 255 - a2; - pixels[offset+x] = (0xff000000 | - ((r1*a1 + r2*a2) >> 8) << 16 | - // use & instead of >> and << below - ((g1*a1 + g2*a2) >> 8) << 8 | - ((b1*a1 + b2*a2) >> 8)); - } - } - - // if smooth enabled, don't increment values - // for the pixel in the stretch out version - // of the scanline used to get smooth edges. - if (!smooth || ((x >= truelx) && (x <= truerx))) { - increment(sp, sdp); - } - } - firstModY = -1; - interpX = true; - } - - - // x is in screen, not huge 8x coordinates - private int coverage(int x) { - if ((x >= aaleftfull) && (x <= aarightfull) && - // important since not all SUBYRES lines may have been covered - (firstModY == 0) && (lastModY == SUBYRES1)) { - return 255; - } - - int pixelLeft = x*SUBXRES; // huh? - int pixelRight = pixelLeft + 8; - - int amt = 0; - for (int i = firstModY; i <= lastModY; i++) { - if ((aaleft[i] > pixelRight) || (aaright[i] < pixelLeft)) { - continue; - } - // does this need a +1 ? - amt += ((aaright[i] < pixelRight ? aaright[i] : pixelRight) - - (aaleft[i] > pixelLeft ? aaleft[i] : pixelLeft)); - } - amt <<= 2; - return (amt == 256) ? 255 : amt; - } - - - private void incrementalizeY(float p1[], float p2[], - float p[], float dp[], int y) { - float delta = p2[TY] - p1[TY]; - if (delta == 0) delta = 1; - float fraction = y + 0.5f - p1[TY]; - - if (interpX) { - dp[TX] = (p2[TX] - p1[TX]) / delta; - p[TX] = p1[TX] + dp[TX] * fraction; - } - - if (interpARGB) { - dp[R] = (p2[R] - p1[R]) / delta; - dp[G] = (p2[G] - p1[G]) / delta; - dp[B] = (p2[B] - p1[B]) / delta; - dp[A] = (p2[A] - p1[A]) / delta; - p[R] = p1[R] + dp[R] * fraction; - p[G] = p1[G] + dp[G] * fraction; - p[B] = p1[B] + dp[B] * fraction; - p[A] = p1[A] + dp[A] * fraction; - } - - if (interpUV) { - dp[U] = (p2[U] - p1[U]) / delta; - dp[V] = (p2[V] - p1[V]) / delta; - - p[U] = p1[U] + dp[U] * fraction; - p[V] = p1[V] + dp[V] * fraction; - } - } - - - private void incrementalizeX(float p1[], float p2[], - float p[], float dp[], int x) { - float delta = p2[TX] - p1[TX]; - if (delta == 0) delta = 1; - float fraction = x + 0.5f - p1[TX]; - if (smooth) { - delta /= SUBXRES; - fraction /= SUBXRES; - } - - if (interpX) { - dp[TX] = (p2[TX] - p1[TX]) / delta; - p[TX] = p1[TX] + dp[TX] * fraction; - } - - if (interpARGB) { - dp[R] = (p2[R] - p1[R]) / delta; - dp[G] = (p2[G] - p1[G]) / delta; - dp[B] = (p2[B] - p1[B]) / delta; - dp[A] = (p2[A] - p1[A]) / delta; - p[R] = p1[R] + dp[R] * fraction; - p[G] = p1[G] + dp[G] * fraction; - p[B] = p1[B] + dp[B] * fraction; - p[A] = p1[A] + dp[A] * fraction; - } - - if (interpUV) { - dp[U] = (p2[U] - p1[U]) / delta; - dp[V] = (p2[V] - p1[V]) / delta; - - p[U] = p1[U] + dp[U] * fraction; - p[V] = p1[V] + dp[V] * fraction; - } - } - - - private void increment(float p[], float dp[]) { - if (interpX) p[TX] += dp[TX]; - - if (interpARGB) { - p[R] += dp[R]; - p[G] += dp[G]; - p[B] += dp[B]; - p[A] += dp[A]; - } - - if (interpUV) { - p[U] += dp[U]; - p[V] += dp[V]; - } - } -} diff --git a/core/src/processing/core/PShape.java b/core/src/processing/core/PShape.java deleted file mode 100644 index a1a5fb99e..000000000 --- a/core/src/processing/core/PShape.java +++ /dev/null @@ -1,955 +0,0 @@ -/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */ - -/* - Part of the Processing project - http://processing.org - - Copyright (c) 2006-08 Ben Fry and Casey Reas - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General - Public License along with this library; if not, write to the - Free Software Foundation, Inc., 59 Temple Place, Suite 330, - Boston, MA 02111-1307 USA -*/ - -package processing.core; - -import java.util.HashMap; - -import processing.core.PApplet; - - -/** - * Datatype for storing shapes. Processing can currently load and display SVG (Scalable Vector Graphics) shapes. - * Before a shape is used, it must be loaded with the loadShape() function. The shape() function is used to draw the shape to the display window. - * The PShape object contain a group of methods, linked below, that can operate on the shape data. - *

    The loadShape() method supports SVG files created with Inkscape and Adobe Illustrator. - * It is not a full SVG implementation, but offers some straightforward support for handling vector data. - * =advanced - * - * In-progress class to handle shape data, currently to be considered of - * alpha or beta quality. Major structural work may be performed on this class - * after the release of Processing 1.0. Such changes may include: - * - *

      - *
    • addition of proper accessors to read shape vertex and coloring data - * (this is the second most important part of having a PShape class after all). - *
    • a means of creating PShape objects ala beginShape() and endShape(). - *
    • load(), update(), and cache methods ala PImage, so that shapes can - * have renderer-specific optimizations, such as vertex arrays in OpenGL. - *
    • splitting this class into multiple classes to handle different - * varieties of shape data (primitives vs collections of vertices vs paths) - *
    • change of package declaration, for instance moving the code into - * package processing.shape (if the code grows too much). - *
    - * - *

    For the time being, this class and its shape() and loadShape() friends in - * PApplet exist as placeholders for more exciting things to come. If you'd - * like to work with this class, make a subclass (see how PShapeSVG works) - * and you can play with its internal methods all you like.

    - * - *

    Library developers are encouraged to create PShape objects when loading - * shape data, so that they can eventually hook into the bounty that will be - * the PShape interface, and the ease of loadShape() and shape().

    - * - * @webref Shape - * @usage Web & Application - * @see PApplet#shape(PShape) - * @see PApplet#loadShape(String) - * @see PApplet#shapeMode(int) - * @instanceName sh any variable of type PShape - */ -public class PShape implements PConstants { - - protected String name; - protected HashMap nameTable; - - /** Generic, only draws its child objects. */ - static public final int GROUP = 0; - /** A line, ellipse, arc, image, etc. */ - static public final int PRIMITIVE = 1; - /** A series of vertex, curveVertex, and bezierVertex calls. */ - static public final int PATH = 2; - /** Collections of vertices created with beginShape(). */ - static public final int GEOMETRY = 3; - /** The shape type, one of GROUP, PRIMITIVE, PATH, or GEOMETRY. */ - protected int family; - - /** ELLIPSE, LINE, QUAD; TRIANGLE_FAN, QUAD_STRIP; etc. */ - protected int kind; - - protected PMatrix matrix; - - /** Texture or image data associated with this shape. */ - protected PImage image; - - // boundary box of this shape - //protected float x; - //protected float y; - //protected float width; - //protected float height; - /** - * The width of the PShape document. - * @webref - * @brief Shape document width - */ - public float width; - /** - * The width of the PShape document. - * @webref - * @brief Shape document height - */ - public float height; - - // set to false if the object is hidden in the layers palette - protected boolean visible = true; - - protected boolean stroke; - protected int strokeColor; - protected float strokeWeight; // default is 1 - protected int strokeCap; - protected int strokeJoin; - - protected boolean fill; - protected int fillColor; - - /** Temporary toggle for whether styles should be honored. */ - protected boolean style = true; - - /** For primitive shapes in particular, parms like x/y/w/h or x1/y1/x2/y2. */ - protected float[] params; - - protected int vertexCount; - /** - * When drawing POLYGON shapes, the second param is an array of length - * VERTEX_FIELD_COUNT. When drawing PATH shapes, the second param has only - * two variables. - */ - protected float[][] vertices; - - static public final int VERTEX = 0; - static public final int BEZIER_VERTEX = 1; - static public final int CURVE_VERTEX = 2; - static public final int BREAK = 3; - /** Array of VERTEX, BEZIER_VERTEX, and CURVE_VERTEXT calls. */ - protected int vertexCodeCount; - protected int[] vertexCodes; - /** True if this is a closed path. */ - protected boolean close; - - // should this be called vertices (consistent with PGraphics internals) - // or does that hurt flexibility? - - protected PShape parent; - protected int childCount; - protected PShape[] children; - - // POINTS, LINES, xLINE_STRIP, xLINE_LOOP - // TRIANGLES, TRIANGLE_STRIP, TRIANGLE_FAN - // QUADS, QUAD_STRIP - // xPOLYGON -// static final int PATH = 1; // POLYGON, LINE_LOOP, LINE_STRIP -// static final int GROUP = 2; - - // how to handle rectmode/ellipsemode? - // are they bitshifted into the constant? - // CORNER, CORNERS, CENTER, (CENTER_RADIUS?) -// static final int RECT = 3; // could just be QUAD, but would be x1/y1/x2/y2 -// static final int ELLIPSE = 4; -// -// static final int VERTEX = 7; -// static final int CURVE = 5; -// static final int BEZIER = 6; - - - // fill and stroke functions will need a pointer to the parent - // PGraphics object.. may need some kind of createShape() fxn - // or maybe the values are stored until draw() is called? - - // attaching images is very tricky.. it's a different type of data - - // material parameters will be thrown out, - // except those currently supported (kinds of lights) - - // pivot point for transformations -// public float px; -// public float py; - - - public PShape() { - this.family = GROUP; - } - - - public PShape(int family) { - this.family = family; - } - - - public void setName(String name) { - this.name = name; - } - - - public String getName() { - return name; - } - - /** - * Returns a boolean value "true" if the image is set to be visible, "false" if not. This is modified with the setVisible() parameter. - *

    The visibility of a shape is usually controlled by whatever program created the SVG file. - * For instance, this parameter is controlled by showing or hiding the shape in the layers palette in Adobe Illustrator. - * - * @webref - * @brief Returns a boolean value "true" if the image is set to be visible, "false" if not - */ - public boolean isVisible() { - return visible; - } - - /** - * Sets the shape to be visible or invisible. This is determined by the value of the visible parameter. - *

    The visibility of a shape is usually controlled by whatever program created the SVG file. - * For instance, this parameter is controlled by showing or hiding the shape in the layers palette in Adobe Illustrator. - * @param visible "false" makes the shape invisible and "true" makes it visible - * @webref - * @brief Sets the shape to be visible or invisible - */ - public void setVisible(boolean visible) { - this.visible = visible; - } - - - /** - * Disables the shape's style data and uses Processing's current styles. Styles include attributes such as colors, stroke weight, and stroke joints. - * =advanced - * Overrides this shape's style information and uses PGraphics styles and - * colors. Identical to ignoreStyles(true). Also disables styles for all - * child shapes. - * @webref - * @brief Disables the shape's style data and uses Processing styles - */ - public void disableStyle() { - style = false; - - for (int i = 0; i < childCount; i++) { - children[i].disableStyle(); - } - } - - - /** - * Enables the shape's style data and ignores Processing's current styles. Styles include attributes such as colors, stroke weight, and stroke joints. - * @webref - * @brief Enables the shape's style data and ignores the Processing styles - */ - public void enableStyle() { - style = true; - - for (int i = 0; i < childCount; i++) { - children[i].enableStyle(); - } - } - - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - -// protected void checkBounds() { -// if (width == 0 || height == 0) { -// // calculate bounds here (also take kids into account) -// width = 1; -// height = 1; -// } -// } - - - /** - * Get the width of the drawing area (not necessarily the shape boundary). - */ - public float getWidth() { - //checkBounds(); - return width; - } - - - /** - * Get the height of the drawing area (not necessarily the shape boundary). - */ - public float getHeight() { - //checkBounds(); - return height; - } - - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - - /* - boolean strokeSaved; - int strokeColorSaved; - float strokeWeightSaved; - int strokeCapSaved; - int strokeJoinSaved; - - boolean fillSaved; - int fillColorSaved; - - int rectModeSaved; - int ellipseModeSaved; - int shapeModeSaved; - */ - - - protected void pre(PGraphics g) { - if (matrix != null) { - g.pushMatrix(); - g.applyMatrix(matrix); - } - - /* - strokeSaved = g.stroke; - strokeColorSaved = g.strokeColor; - strokeWeightSaved = g.strokeWeight; - strokeCapSaved = g.strokeCap; - strokeJoinSaved = g.strokeJoin; - - fillSaved = g.fill; - fillColorSaved = g.fillColor; - - rectModeSaved = g.rectMode; - ellipseModeSaved = g.ellipseMode; - shapeModeSaved = g.shapeMode; - */ - if (style) { - g.pushStyle(); - styles(g); - } - } - - - protected void styles(PGraphics g) { - // should not be necessary because using only the int version of color - //parent.colorMode(PConstants.RGB, 255); - - if (stroke) { - g.stroke(strokeColor); - g.strokeWeight(strokeWeight); - g.strokeCap(strokeCap); - g.strokeJoin(strokeJoin); - } else { - g.noStroke(); - } - - if (fill) { - //System.out.println("filling " + PApplet.hex(fillColor)); - g.fill(fillColor); - } else { - g.noFill(); - } - } - - - public void post(PGraphics g) { -// for (int i = 0; i < childCount; i++) { -// children[i].draw(g); -// } - - /* - // TODO this is not sufficient, since not saving fillR et al. - g.stroke = strokeSaved; - g.strokeColor = strokeColorSaved; - g.strokeWeight = strokeWeightSaved; - g.strokeCap = strokeCapSaved; - g.strokeJoin = strokeJoinSaved; - - g.fill = fillSaved; - g.fillColor = fillColorSaved; - - g.ellipseMode = ellipseModeSaved; - */ - - if (matrix != null) { - g.popMatrix(); - } - - if (style) { - g.popStyle(); - } - } - - - /** - * Called by the following (the shape() command adds the g) - * PShape s = loadShapes("blah.svg"); - * shape(s); - */ - public void draw(PGraphics g) { - if (visible) { - pre(g); - drawImpl(g); - post(g); - } - } - - - /** - * Draws the SVG document. - */ - public void drawImpl(PGraphics g) { - //System.out.println("drawing " + family); - if (family == GROUP) { - drawGroup(g); - } else if (family == PRIMITIVE) { - drawPrimitive(g); - } else if (family == GEOMETRY) { - drawGeometry(g); - } else if (family == PATH) { - drawPath(g); - } - } - - - protected void drawGroup(PGraphics g) { - for (int i = 0; i < childCount; i++) { - children[i].draw(g); - } - } - - - protected void drawPrimitive(PGraphics g) { - if (kind == POINT) { - g.point(params[0], params[1]); - - } else if (kind == LINE) { - if (params.length == 4) { // 2D - g.line(params[0], params[1], - params[2], params[3]); - } else { // 3D - g.line(params[0], params[1], params[2], - params[3], params[4], params[5]); - } - - } else if (kind == TRIANGLE) { - g.triangle(params[0], params[1], - params[2], params[3], - params[4], params[5]); - - } else if (kind == QUAD) { - g.quad(params[0], params[1], - params[2], params[3], - params[4], params[5], - params[6], params[7]); - - } else if (kind == RECT) { - if (image != null) { - g.imageMode(CORNER); - g.image(image, params[0], params[1], params[2], params[3]); - } else { - g.rectMode(CORNER); - g.rect(params[0], params[1], params[2], params[3]); - } - - } else if (kind == ELLIPSE) { - g.ellipseMode(CORNER); - g.ellipse(params[0], params[1], params[2], params[3]); - - } else if (kind == ARC) { - g.ellipseMode(CORNER); - g.arc(params[0], params[1], params[2], params[3], params[4], params[5]); - - } else if (kind == BOX) { - if (params.length == 1) { - g.box(params[0]); - } else { - g.box(params[0], params[1], params[2]); - } - - } else if (kind == SPHERE) { - g.sphere(params[0]); - } - } - - - protected void drawGeometry(PGraphics g) { - g.beginShape(kind); - if (style) { - for (int i = 0; i < vertexCount; i++) { - g.vertex(vertices[i]); - } - } else { - for (int i = 0; i < vertexCount; i++) { - float[] vert = vertices[i]; - if (vert[PGraphics.Z] == 0) { - g.vertex(vert[X], vert[Y]); - } else { - g.vertex(vert[X], vert[Y], vert[Z]); - } - } - } - g.endShape(); - } - - - /* - protected void drawPath(PGraphics g) { - g.beginShape(); - for (int j = 0; j < childCount; j++) { - if (j > 0) g.breakShape(); - int count = children[j].vertexCount; - float[][] vert = children[j].vertices; - int[] code = children[j].vertexCodes; - - for (int i = 0; i < count; i++) { - if (style) { - if (children[j].fill) { - g.fill(vert[i][R], vert[i][G], vert[i][B]); - } else { - g.noFill(); - } - if (children[j].stroke) { - g.stroke(vert[i][R], vert[i][G], vert[i][B]); - } else { - g.noStroke(); - } - } - g.edge(vert[i][EDGE] == 1); - - if (code[i] == VERTEX) { - g.vertex(vert[i]); - - } else if (code[i] == BEZIER_VERTEX) { - float z0 = vert[i+0][Z]; - float z1 = vert[i+1][Z]; - float z2 = vert[i+2][Z]; - if (z0 == 0 && z1 == 0 && z2 == 0) { - g.bezierVertex(vert[i+0][X], vert[i+0][Y], z0, - vert[i+1][X], vert[i+1][Y], z1, - vert[i+2][X], vert[i+2][Y], z2); - } else { - g.bezierVertex(vert[i+0][X], vert[i+0][Y], - vert[i+1][X], vert[i+1][Y], - vert[i+2][X], vert[i+2][Y]); - } - } else if (code[i] == CURVE_VERTEX) { - float z = vert[i][Z]; - if (z == 0) { - g.curveVertex(vert[i][X], vert[i][Y]); - } else { - g.curveVertex(vert[i][X], vert[i][Y], z); - } - } - } - } - g.endShape(); - } - */ - - - protected void drawPath(PGraphics g) { - // Paths might be empty (go figure) - // http://dev.processing.org/bugs/show_bug.cgi?id=982 - if (vertices == null) return; - - g.beginShape(); - - if (vertexCodeCount == 0) { // each point is a simple vertex - if (vertices[0].length == 2) { // drawing 2D vertices - for (int i = 0; i < vertexCount; i++) { - g.vertex(vertices[i][X], vertices[i][Y]); - } - } else { // drawing 3D vertices - for (int i = 0; i < vertexCount; i++) { - g.vertex(vertices[i][X], vertices[i][Y], vertices[i][Z]); - } - } - - } else { // coded set of vertices - int index = 0; - - if (vertices[0].length == 2) { // drawing a 2D path - for (int j = 0; j < vertexCodeCount; j++) { - switch (vertexCodes[j]) { - - case VERTEX: - g.vertex(vertices[index][X], vertices[index][Y]); - index++; - break; - - case BEZIER_VERTEX: - g.bezierVertex(vertices[index+0][X], vertices[index+0][Y], - vertices[index+1][X], vertices[index+1][Y], - vertices[index+2][X], vertices[index+2][Y]); - index += 3; - break; - - case CURVE_VERTEX: - g.curveVertex(vertices[index][X], vertices[index][Y]); - index++; - - case BREAK: - g.breakShape(); - } - } - } else { // drawing a 3D path - for (int j = 0; j < vertexCodeCount; j++) { - switch (vertexCodes[j]) { - - case VERTEX: - g.vertex(vertices[index][X], vertices[index][Y], vertices[index][Z]); - index++; - break; - - case BEZIER_VERTEX: - g.bezierVertex(vertices[index+0][X], vertices[index+0][Y], vertices[index+0][Z], - vertices[index+1][X], vertices[index+1][Y], vertices[index+1][Z], - vertices[index+2][X], vertices[index+2][Y], vertices[index+2][Z]); - index += 3; - break; - - case CURVE_VERTEX: - g.curveVertex(vertices[index][X], vertices[index][Y], vertices[index][Z]); - index++; - - case BREAK: - g.breakShape(); - } - } - } - } - g.endShape(close ? CLOSE : OPEN); - } - - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - - public int getChildCount() { - return childCount; - } - - /** - * - * @param index the layer position of the shape to get - */ - public PShape getChild(int index) { - return children[index]; - } - - /** - * Extracts a child shape from a parent shape. Specify the name of the shape with the target parameter. - * The shape is returned as a PShape object, or null is returned if there is an error. - * @param target the name of the shape to get - * @webref - * @brief Returns a child element of a shape as a PShape object - */ - public PShape getChild(String target) { - if (name != null && name.equals(target)) { - return this; - } - if (nameTable != null) { - PShape found = nameTable.get(target); - if (found != null) return found; - } - for (int i = 0; i < childCount; i++) { - PShape found = children[i].getChild(target); - if (found != null) return found; - } - return null; - } - - - /** - * Same as getChild(name), except that it first walks all the way up the - * hierarchy to the farthest parent, so that children can be found anywhere. - */ - public PShape findChild(String target) { - if (parent == null) { - return getChild(target); - - } else { - return parent.findChild(target); - } - } - - - // can't be just 'add' because that suggests additive geometry - public void addChild(PShape who) { - if (children == null) { - children = new PShape[1]; - } - if (childCount == children.length) { - children = (PShape[]) PApplet.expand(children); - } - children[childCount++] = who; - who.parent = this; - - if (who.getName() != null) { - addName(who.getName(), who); - } - } - - - /** - * Add a shape to the name lookup table. - */ - protected void addName(String nom, PShape shape) { - if (parent != null) { - parent.addName(nom, shape); - } else { - if (nameTable == null) { - nameTable = new HashMap(); - } - nameTable.put(nom, shape); - } - } - - -// public PShape createGroup() { -// PShape group = new PShape(); -// group.kind = GROUP; -// addChild(group); -// return group; -// } - - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - - // translate, rotate, scale, apply (no push/pop) - // these each call matrix.translate, etc - // if matrix is null when one is called, - // it is created and set to identity - - public void translate(float tx, float ty) { - checkMatrix(2); - matrix.translate(tx, ty); - } - - /** - * Specifies an amount to displace the shape. The x parameter specifies left/right translation, the y parameter specifies up/down translation, and the z parameter specifies translations toward/away from the screen. Subsequent calls to the method accumulates the effect. For example, calling translate(50, 0) and then translate(20, 0) is the same as translate(70, 0). This transformation is applied directly to the shape, it's not refreshed each time draw() is run. - *

    Using this method with the z parameter requires using the P3D or OPENGL parameter in combination with size. - * @webref - * @param tx left/right translation - * @param ty up/down translation - * @param tz forward/back translation - * @brief Displaces the shape - */ - public void translate(float tx, float ty, float tz) { - checkMatrix(3); - matrix.translate(tx, ty, 0); - } - - /** - * Rotates a shape around the x-axis the amount specified by the angle parameter. Angles should be specified in radians (values from 0 to TWO_PI) or converted to radians with the radians() method. - *

    Shapes are always rotated around the upper-left corner of their bounding box. Positive numbers rotate objects in a clockwise direction. - * Subsequent calls to the method accumulates the effect. For example, calling rotateX(HALF_PI) and then rotateX(HALF_PI) is the same as rotateX(PI). - * This transformation is applied directly to the shape, it's not refreshed each time draw() is run. - *

    This method requires a 3D renderer. You need to pass P3D or OPENGL as a third parameter into the size() method as shown in the example above. - * @param angle angle of rotation specified in radians - * @webref - * @brief Rotates the shape around the x-axis - */ - public void rotateX(float angle) { - rotate(angle, 1, 0, 0); - } - - /** - * Rotates a shape around the y-axis the amount specified by the angle parameter. Angles should be specified in radians (values from 0 to TWO_PI) or converted to radians with the radians() method. - *

    Shapes are always rotated around the upper-left corner of their bounding box. Positive numbers rotate objects in a clockwise direction. - * Subsequent calls to the method accumulates the effect. For example, calling rotateY(HALF_PI) and then rotateY(HALF_PI) is the same as rotateY(PI). - * This transformation is applied directly to the shape, it's not refreshed each time draw() is run. - *

    This method requires a 3D renderer. You need to pass P3D or OPENGL as a third parameter into the size() method as shown in the example above. - * @param angle angle of rotation specified in radians - * @webref - * @brief Rotates the shape around the y-axis - */ - public void rotateY(float angle) { - rotate(angle, 0, 1, 0); - } - - - /** - * Rotates a shape around the z-axis the amount specified by the angle parameter. Angles should be specified in radians (values from 0 to TWO_PI) or converted to radians with the radians() method. - *

    Shapes are always rotated around the upper-left corner of their bounding box. Positive numbers rotate objects in a clockwise direction. - * Subsequent calls to the method accumulates the effect. For example, calling rotateZ(HALF_PI) and then rotateZ(HALF_PI) is the same as rotateZ(PI). - * This transformation is applied directly to the shape, it's not refreshed each time draw() is run. - *

    This method requires a 3D renderer. You need to pass P3D or OPENGL as a third parameter into the size() method as shown in the example above. - * @param angle angle of rotation specified in radians - * @webref - * @brief Rotates the shape around the z-axis - */ - public void rotateZ(float angle) { - rotate(angle, 0, 0, 1); - } - - /** - * Rotates a shape the amount specified by the angle parameter. Angles should be specified in radians (values from 0 to TWO_PI) or converted to radians with the radians() method. - *

    Shapes are always rotated around the upper-left corner of their bounding box. Positive numbers rotate objects in a clockwise direction. - * Transformations apply to everything that happens after and subsequent calls to the method accumulates the effect. - * For example, calling rotate(HALF_PI) and then rotate(HALF_PI) is the same as rotate(PI). - * This transformation is applied directly to the shape, it's not refreshed each time draw() is run. - * @param angle angle of rotation specified in radians - * @webref - * @brief Rotates the shape - */ - public void rotate(float angle) { - checkMatrix(2); // at least 2... - matrix.rotate(angle); - } - - - public void rotate(float angle, float v0, float v1, float v2) { - checkMatrix(3); - matrix.rotate(angle, v0, v1, v2); - } - - - // - - /** - * @param s percentage to scale the object - */ - public void scale(float s) { - checkMatrix(2); // at least 2... - matrix.scale(s); - } - - - public void scale(float x, float y) { - checkMatrix(2); - matrix.scale(x, y); - } - - - /** - * Increases or decreases the size of a shape by expanding and contracting vertices. Shapes always scale from the relative origin of their bounding box. - * Scale values are specified as decimal percentages. For example, the method call scale(2.0) increases the dimension of a shape by 200%. - * Subsequent calls to the method multiply the effect. For example, calling scale(2.0) and then scale(1.5) is the same as scale(3.0). - * This transformation is applied directly to the shape, it's not refreshed each time draw() is run. - *

    Using this fuction with the z parameter requires passing P3D or OPENGL into the size() parameter. - * @param x percentage to scale the object in the x-axis - * @param y percentage to scale the object in the y-axis - * @param z percentage to scale the object in the z-axis - * @webref - * @brief Increases and decreases the size of a shape - */ - public void scale(float x, float y, float z) { - checkMatrix(3); - matrix.scale(x, y, z); - } - - - // - - - public void resetMatrix() { - checkMatrix(2); - matrix.reset(); - } - - - public void applyMatrix(PMatrix source) { - if (source instanceof PMatrix2D) { - applyMatrix((PMatrix2D) source); - } else if (source instanceof PMatrix3D) { - applyMatrix((PMatrix3D) source); - } - } - - - public void applyMatrix(PMatrix2D source) { - applyMatrix(source.m00, source.m01, 0, source.m02, - source.m10, source.m11, 0, source.m12, - 0, 0, 1, 0, - 0, 0, 0, 1); - } - - - public void applyMatrix(float n00, float n01, float n02, - float n10, float n11, float n12) { - checkMatrix(2); - matrix.apply(n00, n01, n02, 0, - n10, n11, n12, 0, - 0, 0, 1, 0, - 0, 0, 0, 1); - } - - - public void apply(PMatrix3D source) { - applyMatrix(source.m00, source.m01, source.m02, source.m03, - source.m10, source.m11, source.m12, source.m13, - source.m20, source.m21, source.m22, source.m23, - source.m30, source.m31, source.m32, source.m33); - } - - - public void applyMatrix(float n00, float n01, float n02, float n03, - float n10, float n11, float n12, float n13, - float n20, float n21, float n22, float n23, - float n30, float n31, float n32, float n33) { - checkMatrix(3); - matrix.apply(n00, n01, n02, n03, - n10, n11, n12, n13, - n20, n21, n22, n23, - n30, n31, n32, n33); - } - - - // - - - /** - * Make sure that the shape's matrix is 1) not null, and 2) has a matrix - * that can handle at least the specified number of dimensions. - */ - protected void checkMatrix(int dimensions) { - if (matrix == null) { - if (dimensions == 2) { - matrix = new PMatrix2D(); - } else { - matrix = new PMatrix3D(); - } - } else if (dimensions == 3 && (matrix instanceof PMatrix2D)) { - // time for an upgrayedd for a double dose of my pimpin' - matrix = new PMatrix3D(matrix); - } - } - - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - - /** - * Center the shape based on its bounding box. Can't assume - * that the bounding box is 0, 0, width, height. Common case will be - * opening a letter size document in Illustrator, and drawing something - * in the middle, then reading it in as an svg file. - * This will also need to flip the y axis (scale(1, -1)) in cases - * like Adobe Illustrator where the coordinates start at the bottom. - */ -// public void center() { -// } - - - /** - * Set the pivot point for all transformations. - */ -// public void pivot(float x, float y) { -// px = x; -// py = y; -// } - - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - -} \ No newline at end of file diff --git a/core/src/processing/core/PShapeSVG.java b/core/src/processing/core/PShapeSVG.java deleted file mode 100644 index 0bbf2c51a..000000000 --- a/core/src/processing/core/PShapeSVG.java +++ /dev/null @@ -1,1473 +0,0 @@ -package processing.core; - -import java.awt.Paint; -import java.awt.PaintContext; -import java.awt.Rectangle; -import java.awt.RenderingHints; -import java.awt.geom.AffineTransform; -import java.awt.geom.Point2D; -import java.awt.geom.Rectangle2D; -import java.awt.image.ColorModel; -import java.awt.image.Raster; -import java.awt.image.WritableRaster; -import java.util.HashMap; - -import processing.xml.XMLElement; - - -/** - * SVG stands for Scalable Vector Graphics, a portable graphics format. It is - * a vector format so it allows for infinite resolution and relatively small - * file sizes. Most modern media software can view SVG files, including Adobe - * products, Firefox, etc. Illustrator and Inkscape can edit SVG files. - *

    - * We have no intention of turning this into a full-featured SVG library. - * The goal of this project is a basic shape importer that is small enough - * to be included with applets, meaning that its download size should be - * in the neighborhood of 25-30k. Starting with release 0149, this library - * has been incorporated into the core via the loadShape() command, because - * vector shape data is just as important as the image data from loadImage(). - *

    - * For more sophisticated import/export, consider the - * Batik - * library from the Apache Software Foundation. Future improvements to this - * library may focus on this properly supporting a specific subset of SVG, - * for instance the simpler SVG profiles known as - * SVG Tiny or Basic, - * although we still would not support the interactivity options. - * - *


    - * - * A minimal example program using SVG: - * (assuming a working moo.svg is in your data folder) - * - *

    - * PShape moo;
    - *
    - * void setup() {
    - *   size(400, 400);
    - *   moo = loadShape("moo.svg");
    - * }
    - * void draw() {
    - *   background(255);
    - *   shape(moo, mouseX, mouseY);
    - * }
    - * 
    - * - * This code is based on the Candy library written by Michael Chang, which was - * later revised and expanded for use as a Processing core library by Ben Fry. - * Thanks to Ricard Marxer Pinon for help with better Inkscape support in 0154. - * - *


    - * - * Late October 2008 revisions from ricardmp, incorporated by fry (0154) - *

      - *
    • Better style attribute handling, enabling better Inkscape support. - *
    - * - * October 2008 revisions by fry (Processing 0149, pre-1.0) - *
      - *
    • Candy is no longer a separate library, and is instead part of core. - *
    • Loading now works through loadShape() - *
    • Shapes are now drawn using the new PGraphics shape() method. - *
    - * - * August 2008 revisions by fry (Processing 0149) - *
      - *
    • Major changes to rework around PShape. - *
    • Now implementing more of the "transform" attribute. - *
    - * - * February 2008 revisions by fry (Processing 0136) - *
      - *
    • Added support for quadratic curves in paths (Q, q, T, and t operators) - *
    • Support for reading SVG font data (though not rendering it yet) - *
    - * - * Revisions for "Candy 2" November 2006 by fry - *
      - *
    • Switch to the new processing.xml library - *
    • Several bug fixes for parsing of shape data - *
    • Support for linear and radial gradients - *
    • Support for additional types of shapes - *
    • Added compound shapes (shapes with interior points) - *
    • Added methods to get shapes from an internal table - *
    - * - * Revision 10/31/06 by flux - *
      - *
    • Now properly supports Processing 0118 - *
    • Fixed a bunch of things for Casey's students and general buggity. - *
    • Will now properly draw #FFFFFFFF colors (were being represented as -1) - *
    • SVGs without tags are now properly caught and loaded - *
    • Added a method customStyle() for overriding SVG colors/styles - *
    • Added a method SVGStyle() to go back to using SVG colors/styles - *
    - * - * Some SVG objects and features may not yet be supported. - * Here is a partial list of non-included features - *
      - *
    • Rounded rectangles - *
    • Drop shadow objects - *
    • Typography - *
    • Layers added for Candy 2 - *
    • Patterns - *
    • Embedded images - *
    - * - * For those interested, the SVG specification can be found - * here. - */ -public class PShapeSVG extends PShape { - XMLElement element; - - float opacity; - float strokeOpacity; - float fillOpacity; - - - Gradient strokeGradient; - Paint strokeGradientPaint; - String strokeName; // id of another object, gradients only? - - Gradient fillGradient; - Paint fillGradientPaint; - String fillName; // id of another object - - - /** - * Initializes a new SVG Object with the given filename. - */ - public PShapeSVG(PApplet parent, String filename) { - // this will grab the root document, starting - // the xml version and initial comments are ignored - this(new XMLElement(parent, filename)); - } - - - /** - * Initializes a new SVG Object from the given XMLElement. - */ - public PShapeSVG(XMLElement svg) { - this(null, svg); - - if (!svg.getName().equals("svg")) { - throw new RuntimeException("root is not , it's <" + svg.getName() + ">"); - } - - // not proper parsing of the viewBox, but will cover us for cases where - // the width and height of the object is not specified - String viewBoxStr = svg.getStringAttribute("viewBox"); - if (viewBoxStr != null) { - int[] viewBox = PApplet.parseInt(PApplet.splitTokens(viewBoxStr)); - width = viewBox[2]; - height = viewBox[3]; - } - - // TODO if viewbox is not same as width/height, then use it to scale - // the original objects. for now, viewbox only used when width/height - // are empty values (which by the spec means w/h of "100%" - String unitWidth = svg.getStringAttribute("width"); - String unitHeight = svg.getStringAttribute("height"); - if (unitWidth != null) { - width = parseUnitSize(unitWidth); - height = parseUnitSize(unitHeight); - } else { - if ((width == 0) || (height == 0)) { - //throw new RuntimeException("width/height not specified"); - PGraphics.showWarning("The width and/or height is not " + - "readable in the tag of this file."); - // For the spec, the default is 100% and 100%. For purposes - // here, insert a dummy value because this is prolly just a - // font or something for which the w/h doesn't matter. - width = 1; - height = 1; - } - } - - //root = new Group(null, svg); - parseChildren(svg); // ? - } - - - public PShapeSVG(PShapeSVG parent, XMLElement properties) { - //super(GROUP); - - if (parent == null) { - // set values to their defaults according to the SVG spec - stroke = false; - strokeColor = 0xff000000; - strokeWeight = 1; - strokeCap = PConstants.SQUARE; // equivalent to BUTT in svg spec - strokeJoin = PConstants.MITER; - strokeGradient = null; - strokeGradientPaint = null; - strokeName = null; - - fill = true; - fillColor = 0xff000000; - fillGradient = null; - fillGradientPaint = null; - fillName = null; - - //hasTransform = false; - //transformation = null; //new float[] { 1, 0, 0, 1, 0, 0 }; - - strokeOpacity = 1; - fillOpacity = 1; - opacity = 1; - - } else { - stroke = parent.stroke; - strokeColor = parent.strokeColor; - strokeWeight = parent.strokeWeight; - strokeCap = parent.strokeCap; - strokeJoin = parent.strokeJoin; - strokeGradient = parent.strokeGradient; - strokeGradientPaint = parent.strokeGradientPaint; - strokeName = parent.strokeName; - - fill = parent.fill; - fillColor = parent.fillColor; - fillGradient = parent.fillGradient; - fillGradientPaint = parent.fillGradientPaint; - fillName = parent.fillName; - - //hasTransform = parent.hasTransform; - //transformation = parent.transformation; - - opacity = parent.opacity; - } - - element = properties; - name = properties.getStringAttribute("id"); - - String displayStr = properties.getStringAttribute("display", "inline"); - visible = !displayStr.equals("none"); - - String transformStr = properties.getStringAttribute("transform"); - if (transformStr != null) { - matrix = parseMatrix(transformStr); - } - - parseColors(properties); - parseChildren(properties); - } - - - protected void parseChildren(XMLElement graphics) { - XMLElement[] elements = graphics.getChildren(); - children = new PShape[elements.length]; - childCount = 0; - - for (XMLElement elem : elements) { - PShape kid = parseChild(elem); - if (kid != null) { - addChild(kid); - } - } - } - - - /** - * Parse a child XML element. - * Override this method to add parsing for more SVG elements. - */ - protected PShape parseChild(XMLElement elem) { - String name = elem.getName(); - PShapeSVG shape = null; - - if (name.equals("g")) { - //return new BaseObject(this, elem); - shape = new PShapeSVG(this, elem); - - } else if (name.equals("defs")) { - // generally this will contain gradient info, so may - // as well just throw it into a group element for parsing - //return new BaseObject(this, elem); - shape = new PShapeSVG(this, elem); - - } else if (name.equals("line")) { - //return new Line(this, elem); - //return new BaseObject(this, elem, LINE); - shape = new PShapeSVG(this, elem); - shape.parseLine(); - - } else if (name.equals("circle")) { - //return new BaseObject(this, elem, ELLIPSE); - shape = new PShapeSVG(this, elem); - shape.parseEllipse(true); - - } else if (name.equals("ellipse")) { - //return new BaseObject(this, elem, ELLIPSE); - shape = new PShapeSVG(this, elem); - shape.parseEllipse(false); - - } else if (name.equals("rect")) { - //return new BaseObject(this, elem, RECT); - shape = new PShapeSVG(this, elem); - shape.parseRect(); - - } else if (name.equals("polygon")) { - //return new BaseObject(this, elem, POLYGON); - shape = new PShapeSVG(this, elem); - shape.parsePoly(true); - - } else if (name.equals("polyline")) { - //return new BaseObject(this, elem, POLYGON); - shape = new PShapeSVG(this, elem); - shape.parsePoly(false); - - } else if (name.equals("path")) { - //return new BaseObject(this, elem, PATH); - shape = new PShapeSVG(this, elem); - shape.parsePath(); - - } else if (name.equals("radialGradient")) { - return new RadialGradient(this, elem); - - } else if (name.equals("linearGradient")) { - return new LinearGradient(this, elem); - - } else if (name.equals("text")) { - PGraphics.showWarning("Text in SVG files is not currently supported, " + - "convert text to outlines instead."); - - } else if (name.equals("filter")) { - PGraphics.showWarning("Filters are not supported."); - - } else if (name.equals("mask")) { - PGraphics.showWarning("Masks are not supported."); - - } else { - PGraphics.showWarning("Ignoring <" + name + "> tag."); - } - return shape; - } - - - protected void parseLine() { - kind = LINE; - family = PRIMITIVE; - params = new float[] { - element.getFloatAttribute("x1"), - element.getFloatAttribute("y1"), - element.getFloatAttribute("x2"), - element.getFloatAttribute("y2"), - }; - // x = params[0]; - // y = params[1]; - // width = params[2]; - // height = params[3]; - } - - - /** - * Handles parsing ellipse and circle tags. - * @param circle true if this is a circle and not an ellipse - */ - protected void parseEllipse(boolean circle) { - kind = ELLIPSE; - family = PRIMITIVE; - params = new float[4]; - - params[0] = element.getFloatAttribute("cx"); - params[1] = element.getFloatAttribute("cy"); - - float rx, ry; - if (circle) { - rx = ry = element.getFloatAttribute("r"); - } else { - rx = element.getFloatAttribute("rx"); - ry = element.getFloatAttribute("ry"); - } - params[0] -= rx; - params[1] -= ry; - - params[2] = rx*2; - params[3] = ry*2; - } - - - protected void parseRect() { - kind = RECT; - family = PRIMITIVE; - params = new float[] { - element.getFloatAttribute("x"), - element.getFloatAttribute("y"), - element.getFloatAttribute("width"), - element.getFloatAttribute("height"), - }; - } - - - /** - * Parse a polyline or polygon from an SVG file. - * @param close true if shape is closed (polygon), false if not (polyline) - */ - protected void parsePoly(boolean close) { - family = PATH; - this.close = close; - - String pointsAttr = element.getStringAttribute("points"); - if (pointsAttr != null) { - String[] pointsBuffer = PApplet.splitTokens(pointsAttr); - vertexCount = pointsBuffer.length; - vertices = new float[vertexCount][2]; - for (int i = 0; i < vertexCount; i++) { - String pb[] = PApplet.split(pointsBuffer[i], ','); - vertices[i][X] = Float.valueOf(pb[0]).floatValue(); - vertices[i][Y] = Float.valueOf(pb[1]).floatValue(); - } - } - } - - - protected void parsePath() { - family = PATH; - kind = 0; - - String pathData = element.getStringAttribute("d"); - if (pathData == null) return; - char[] pathDataChars = pathData.toCharArray(); - - StringBuffer pathBuffer = new StringBuffer(); - boolean lastSeparate = false; - - for (int i = 0; i < pathDataChars.length; i++) { - char c = pathDataChars[i]; - boolean separate = false; - - if (c == 'M' || c == 'm' || - c == 'L' || c == 'l' || - c == 'H' || c == 'h' || - c == 'V' || c == 'v' || - c == 'C' || c == 'c' || // beziers - c == 'S' || c == 's' || - c == 'Q' || c == 'q' || // quadratic beziers - c == 'T' || c == 't' || - c == 'Z' || c == 'z' || // closepath - c == ',') { - separate = true; - if (i != 0) { - pathBuffer.append("|"); - } - } - if (c == 'Z' || c == 'z') { - separate = false; - } - if (c == '-' && !lastSeparate) { - // allow for 'e' notation in numbers, e.g. 2.10e-9 - // http://dev.processing.org/bugs/show_bug.cgi?id=1408 - if (i == 0 || pathDataChars[i-1] != 'e') { - pathBuffer.append("|"); - } - } - if (c != ',') { - pathBuffer.append(c); //"" + pathDataBuffer.charAt(i)); - } - if (separate && c != ',' && c != '-') { - pathBuffer.append("|"); - } - lastSeparate = separate; - } - - // use whitespace constant to get rid of extra spaces and CR or LF - String[] pathDataKeys = - PApplet.splitTokens(pathBuffer.toString(), "|" + WHITESPACE); - vertices = new float[pathDataKeys.length][2]; - vertexCodes = new int[pathDataKeys.length]; - - float cx = 0; - float cy = 0; - - int i = 0; - while (i < pathDataKeys.length) { - char c = pathDataKeys[i].charAt(0); - switch (c) { - - case 'M': // M - move to (absolute) - cx = PApplet.parseFloat(pathDataKeys[i + 1]); - cy = PApplet.parseFloat(pathDataKeys[i + 2]); - parsePathMoveto(cx, cy); - i += 3; - break; - - case 'm': // m - move to (relative) - cx = cx + PApplet.parseFloat(pathDataKeys[i + 1]); - cy = cy + PApplet.parseFloat(pathDataKeys[i + 2]); - parsePathMoveto(cx, cy); - i += 3; - break; - - case 'L': - cx = PApplet.parseFloat(pathDataKeys[i + 1]); - cy = PApplet.parseFloat(pathDataKeys[i + 2]); - parsePathLineto(cx, cy); - i += 3; - break; - - case 'l': - cx = cx + PApplet.parseFloat(pathDataKeys[i + 1]); - cy = cy + PApplet.parseFloat(pathDataKeys[i + 2]); - parsePathLineto(cx, cy); - i += 3; - break; - - // horizontal lineto absolute - case 'H': - cx = PApplet.parseFloat(pathDataKeys[i + 1]); - parsePathLineto(cx, cy); - i += 2; - break; - - // horizontal lineto relative - case 'h': - cx = cx + PApplet.parseFloat(pathDataKeys[i + 1]); - parsePathLineto(cx, cy); - i += 2; - break; - - case 'V': - cy = PApplet.parseFloat(pathDataKeys[i + 1]); - parsePathLineto(cx, cy); - i += 2; - break; - - case 'v': - cy = cy + PApplet.parseFloat(pathDataKeys[i + 1]); - parsePathLineto(cx, cy); - i += 2; - break; - - // C - curve to (absolute) - case 'C': { - float ctrlX1 = PApplet.parseFloat(pathDataKeys[i + 1]); - float ctrlY1 = PApplet.parseFloat(pathDataKeys[i + 2]); - float ctrlX2 = PApplet.parseFloat(pathDataKeys[i + 3]); - float ctrlY2 = PApplet.parseFloat(pathDataKeys[i + 4]); - float endX = PApplet.parseFloat(pathDataKeys[i + 5]); - float endY = PApplet.parseFloat(pathDataKeys[i + 6]); - parsePathCurveto(ctrlX1, ctrlY1, ctrlX2, ctrlY2, endX, endY); - cx = endX; - cy = endY; - i += 7; - } - break; - - // c - curve to (relative) - case 'c': { - float ctrlX1 = cx + PApplet.parseFloat(pathDataKeys[i + 1]); - float ctrlY1 = cy + PApplet.parseFloat(pathDataKeys[i + 2]); - float ctrlX2 = cx + PApplet.parseFloat(pathDataKeys[i + 3]); - float ctrlY2 = cy + PApplet.parseFloat(pathDataKeys[i + 4]); - float endX = cx + PApplet.parseFloat(pathDataKeys[i + 5]); - float endY = cy + PApplet.parseFloat(pathDataKeys[i + 6]); - parsePathCurveto(ctrlX1, ctrlY1, ctrlX2, ctrlY2, endX, endY); - cx = endX; - cy = endY; - i += 7; - } - break; - - // S - curve to shorthand (absolute) - case 'S': { - float ppx = vertices[vertexCount-2][X]; - float ppy = vertices[vertexCount-2][Y]; - float px = vertices[vertexCount-1][X]; - float py = vertices[vertexCount-1][Y]; - float ctrlX1 = px + (px - ppx); - float ctrlY1 = py + (py - ppy); - float ctrlX2 = PApplet.parseFloat(pathDataKeys[i + 1]); - float ctrlY2 = PApplet.parseFloat(pathDataKeys[i + 2]); - float endX = PApplet.parseFloat(pathDataKeys[i + 3]); - float endY = PApplet.parseFloat(pathDataKeys[i + 4]); - parsePathCurveto(ctrlX1, ctrlY1, ctrlX2, ctrlY2, endX, endY); - cx = endX; - cy = endY; - i += 5; - } - break; - - // s - curve to shorthand (relative) - case 's': { - float ppx = vertices[vertexCount-2][X]; - float ppy = vertices[vertexCount-2][Y]; - float px = vertices[vertexCount-1][X]; - float py = vertices[vertexCount-1][Y]; - float ctrlX1 = px + (px - ppx); - float ctrlY1 = py + (py - ppy); - float ctrlX2 = cx + PApplet.parseFloat(pathDataKeys[i + 1]); - float ctrlY2 = cy + PApplet.parseFloat(pathDataKeys[i + 2]); - float endX = cx + PApplet.parseFloat(pathDataKeys[i + 3]); - float endY = cy + PApplet.parseFloat(pathDataKeys[i + 4]); - parsePathCurveto(ctrlX1, ctrlY1, ctrlX2, ctrlY2, endX, endY); - cx = endX; - cy = endY; - i += 5; - } - break; - - // Q - quadratic curve to (absolute) - case 'Q': { - float ctrlX = PApplet.parseFloat(pathDataKeys[i + 1]); - float ctrlY = PApplet.parseFloat(pathDataKeys[i + 2]); - float endX = PApplet.parseFloat(pathDataKeys[i + 3]); - float endY = PApplet.parseFloat(pathDataKeys[i + 4]); - parsePathQuadto(cx, cy, ctrlX, ctrlY, endX, endY); - cx = endX; - cy = endY; - i += 5; - } - break; - - // q - quadratic curve to (relative) - case 'q': { - float ctrlX = cx + PApplet.parseFloat(pathDataKeys[i + 1]); - float ctrlY = cy + PApplet.parseFloat(pathDataKeys[i + 2]); - float endX = cx + PApplet.parseFloat(pathDataKeys[i + 3]); - float endY = cy + PApplet.parseFloat(pathDataKeys[i + 4]); - parsePathQuadto(cx, cy, ctrlX, ctrlY, endX, endY); - cx = endX; - cy = endY; - i += 5; - } - break; - - // T - quadratic curve to shorthand (absolute) - // The control point is assumed to be the reflection of the - // control point on the previous command relative to the - // current point. (If there is no previous command or if the - // previous command was not a Q, q, T or t, assume the control - // point is coincident with the current point.) - case 'T': { - float ppx = vertices[vertexCount-2][X]; - float ppy = vertices[vertexCount-2][Y]; - float px = vertices[vertexCount-1][X]; - float py = vertices[vertexCount-1][Y]; - float ctrlX = px + (px - ppx); - float ctrlY = py + (py - ppy); - float endX = PApplet.parseFloat(pathDataKeys[i + 1]); - float endY = PApplet.parseFloat(pathDataKeys[i + 2]); - parsePathQuadto(cx, cy, ctrlX, ctrlY, endX, endY); - cx = endX; - cy = endY; - i += 3; - } - break; - - // t - quadratic curve to shorthand (relative) - case 't': { - float ppx = vertices[vertexCount-2][X]; - float ppy = vertices[vertexCount-2][Y]; - float px = vertices[vertexCount-1][X]; - float py = vertices[vertexCount-1][Y]; - float ctrlX = px + (px - ppx); - float ctrlY = py + (py - ppy); - float endX = cx + PApplet.parseFloat(pathDataKeys[i + 1]); - float endY = cy + PApplet.parseFloat(pathDataKeys[i + 2]); - parsePathQuadto(cx, cy, ctrlX, ctrlY, endX, endY); - cx = endX; - cy = endY; - i += 3; - } - break; - - case 'Z': - case 'z': - close = true; - i++; - break; - - default: - String parsed = - PApplet.join(PApplet.subset(pathDataKeys, 0, i), ","); - String unparsed = - PApplet.join(PApplet.subset(pathDataKeys, i), ","); - System.err.println("parsed: " + parsed); - System.err.println("unparsed: " + unparsed); - if (pathDataKeys[i].equals("a") || pathDataKeys[i].equals("A")) { - String msg = "Sorry, elliptical arc support for SVG files " + - "is not yet implemented (See bug #996 for details)"; - throw new RuntimeException(msg); - } - throw new RuntimeException("shape command not handled: " + pathDataKeys[i]); - } - } - } - - -// private void parsePathCheck(int num) { -// if (vertexCount + num-1 >= vertices.length) { -// //vertices = (float[][]) PApplet.expand(vertices); -// float[][] temp = new float[vertexCount << 1][2]; -// System.arraycopy(vertices, 0, temp, 0, vertexCount); -// vertices = temp; -// } -// } - - private void parsePathVertex(float x, float y) { - if (vertexCount == vertices.length) { - //vertices = (float[][]) PApplet.expand(vertices); - float[][] temp = new float[vertexCount << 1][2]; - System.arraycopy(vertices, 0, temp, 0, vertexCount); - vertices = temp; - } - vertices[vertexCount][X] = x; - vertices[vertexCount][Y] = y; - vertexCount++; - } - - - private void parsePathCode(int what) { - if (vertexCodeCount == vertexCodes.length) { - vertexCodes = PApplet.expand(vertexCodes); - } - vertexCodes[vertexCodeCount++] = what; - } - - - private void parsePathMoveto(float px, float py) { - if (vertexCount > 0) { - parsePathCode(BREAK); - } - parsePathCode(VERTEX); - parsePathVertex(px, py); - } - - - private void parsePathLineto(float px, float py) { - parsePathCode(VERTEX); - parsePathVertex(px, py); - } - - - private void parsePathCurveto(float x1, float y1, - float x2, float y2, - float x3, float y3) { - parsePathCode(BEZIER_VERTEX); - parsePathVertex(x1, y1); - parsePathVertex(x2, y2); - parsePathVertex(x3, y3); - } - - private void parsePathQuadto(float x1, float y1, - float cx, float cy, - float x2, float y2) { - parsePathCode(BEZIER_VERTEX); - // x1/y1 already covered by last moveto, lineto, or curveto - parsePathVertex(x1 + ((cx-x1)*2/3.0f), y1 + ((cy-y1)*2/3.0f)); - parsePathVertex(x2 + ((cx-x2)*2/3.0f), y2 + ((cy-y2)*2/3.0f)); - parsePathVertex(x2, y2); - } - - - /** - * Parse the specified SVG matrix into a PMatrix2D. Note that PMatrix2D - * is rotated relative to the SVG definition, so parameters are rearranged - * here. More about the transformation matrices in - * this section - * of the SVG documentation. - * @param matrixStr text of the matrix param. - * @return a good old-fashioned PMatrix2D - */ - static protected PMatrix2D parseMatrix(String matrixStr) { - String[] pieces = PApplet.match(matrixStr, "\\s*(\\w+)\\((.*)\\)"); - if (pieces == null) { - System.err.println("Could not parse transform " + matrixStr); - return null; - } - float[] m = PApplet.parseFloat(PApplet.splitTokens(pieces[2], ", ")); - if (pieces[1].equals("matrix")) { - return new PMatrix2D(m[0], m[2], m[4], m[1], m[3], m[5]); - - } else if (pieces[1].equals("translate")) { - float tx = m[0]; - float ty = (m.length == 2) ? m[1] : m[0]; - //return new float[] { 1, 0, tx, 0, 1, ty }; - return new PMatrix2D(1, 0, tx, 0, 1, ty); - - } else if (pieces[1].equals("scale")) { - float sx = m[0]; - float sy = (m.length == 2) ? m[1] : m[0]; - //return new float[] { sx, 0, 0, 0, sy, 0 }; - return new PMatrix2D(sx, 0, 0, 0, sy, 0); - - } else if (pieces[1].equals("rotate")) { - float angle = m[0]; - - if (m.length == 1) { - float c = PApplet.cos(angle); - float s = PApplet.sin(angle); - // SVG version is cos(a) sin(a) -sin(a) cos(a) 0 0 - return new PMatrix2D(c, -s, 0, s, c, 0); - - } else if (m.length == 3) { - PMatrix2D mat = new PMatrix2D(0, 1, m[1], 1, 0, m[2]); - mat.rotate(m[0]); - mat.translate(-m[1], -m[2]); - return mat; //.get(null); - } - - } else if (pieces[1].equals("skewX")) { - return new PMatrix2D(1, 0, 1, PApplet.tan(m[0]), 0, 0); - - } else if (pieces[1].equals("skewY")) { - return new PMatrix2D(1, 0, 1, 0, PApplet.tan(m[0]), 0); - } - return null; - } - - - protected void parseColors(XMLElement properties) { - if (properties.hasAttribute("opacity")) { - String opacityText = properties.getStringAttribute("opacity"); - setOpacity(opacityText); - } - - if (properties.hasAttribute("stroke")) { - String strokeText = properties.getStringAttribute("stroke"); - setStroke(strokeText); - } - - if (properties.hasAttribute("stroke-width")) { - // if NaN (i.e. if it's 'inherit') then default back to the inherit setting - String lineweight = properties.getStringAttribute("stroke-width"); - setStrokeWeight(lineweight); - } - - if (properties.hasAttribute("stroke-linejoin")) { - String linejoin = properties.getStringAttribute("stroke-linejoin"); - setStrokeJoin(linejoin); - } - - if (properties.hasAttribute("stroke-linecap")) { - String linecap = properties.getStringAttribute("stroke-linecap"); - setStrokeCap(linecap); - } - - - // fill defaults to black (though stroke defaults to "none") - // http://www.w3.org/TR/SVG/painting.html#FillProperties - if (properties.hasAttribute("fill")) { - String fillText = properties.getStringAttribute("fill"); - setFill(fillText); - - } - - if (properties.hasAttribute("style")) { - String styleText = properties.getStringAttribute("style"); - String[] styleTokens = PApplet.splitTokens(styleText, ";"); - - //PApplet.println(styleTokens); - for (int i = 0; i < styleTokens.length; i++) { - String[] tokens = PApplet.splitTokens(styleTokens[i], ":"); - //PApplet.println(tokens); - - tokens[0] = PApplet.trim(tokens[0]); - - if (tokens[0].equals("fill")) { - setFill(tokens[1]); - - } else if(tokens[0].equals("fill-opacity")) { - setFillOpacity(tokens[1]); - - } else if(tokens[0].equals("stroke")) { - setStroke(tokens[1]); - - } else if(tokens[0].equals("stroke-width")) { - setStrokeWeight(tokens[1]); - - } else if(tokens[0].equals("stroke-linecap")) { - setStrokeCap(tokens[1]); - - } else if(tokens[0].equals("stroke-linejoin")) { - setStrokeJoin(tokens[1]); - - } else if(tokens[0].equals("stroke-opacity")) { - setStrokeOpacity(tokens[1]); - - } else if(tokens[0].equals("opacity")) { - setOpacity(tokens[1]); - - } else { - // Other attributes are not yet implemented - } - } - } - } - - void setOpacity(String opacityText) { - opacity = PApplet.parseFloat(opacityText); - strokeColor = ((int) (opacity * 255)) << 24 | strokeColor & 0xFFFFFF; - fillColor = ((int) (opacity * 255)) << 24 | fillColor & 0xFFFFFF; - } - - void setStrokeWeight(String lineweight) { - strokeWeight = PApplet.parseFloat(lineweight); - } - - void setStrokeOpacity(String opacityText) { - strokeOpacity = PApplet.parseFloat(opacityText); - strokeColor = ((int) (strokeOpacity * 255)) << 24 | strokeColor & 0xFFFFFF; - } - - void setStroke(String strokeText) { - int opacityMask = strokeColor & 0xFF000000; - if (strokeText.equals("none")) { - stroke = false; - } else if (strokeText.startsWith("#")) { - stroke = true; - strokeColor = opacityMask | - (Integer.parseInt(strokeText.substring(1), 16)) & 0xFFFFFF; - } else if (strokeText.startsWith("rgb")) { - stroke = true; - strokeColor = opacityMask | parseRGB(strokeText); - } else if (strokeText.startsWith("url(#")) { - strokeName = strokeText.substring(5, strokeText.length() - 1); - Object strokeObject = findChild(strokeName); - if (strokeObject instanceof Gradient) { - strokeGradient = (Gradient) strokeObject; - strokeGradientPaint = calcGradientPaint(strokeGradient); //, opacity); - } else { - System.err.println("url " + strokeName + " refers to unexpected data"); - } - } - } - - void setStrokeJoin(String linejoin) { - if (linejoin.equals("inherit")) { - // do nothing, will inherit automatically - - } else if (linejoin.equals("miter")) { - strokeJoin = PConstants.MITER; - - } else if (linejoin.equals("round")) { - strokeJoin = PConstants.ROUND; - - } else if (linejoin.equals("bevel")) { - strokeJoin = PConstants.BEVEL; - } - } - - void setStrokeCap(String linecap) { - if (linecap.equals("inherit")) { - // do nothing, will inherit automatically - - } else if (linecap.equals("butt")) { - strokeCap = PConstants.SQUARE; - - } else if (linecap.equals("round")) { - strokeCap = PConstants.ROUND; - - } else if (linecap.equals("square")) { - strokeCap = PConstants.PROJECT; - } - } - - void setFillOpacity(String opacityText) { - fillOpacity = PApplet.parseFloat(opacityText); - fillColor = ((int) (fillOpacity * 255)) << 24 | fillColor & 0xFFFFFF; - } - - void setFill(String fillText) { - int opacityMask = fillColor & 0xFF000000; - if (fillText.equals("none")) { - fill = false; - } else if (fillText.startsWith("#")) { - fill = true; - fillColor = opacityMask | - (Integer.parseInt(fillText.substring(1), 16)) & 0xFFFFFF; - //System.out.println("hex for fill is " + PApplet.hex(fillColor)); - } else if (fillText.startsWith("rgb")) { - fill = true; - fillColor = opacityMask | parseRGB(fillText); - } else if (fillText.startsWith("url(#")) { - fillName = fillText.substring(5, fillText.length() - 1); - //PApplet.println("looking for " + fillName); - Object fillObject = findChild(fillName); - //PApplet.println("found " + fillObject); - if (fillObject instanceof Gradient) { - fill = true; - fillGradient = (Gradient) fillObject; - fillGradientPaint = calcGradientPaint(fillGradient); //, opacity); - //PApplet.println("got filla " + fillObject); - } else { - System.err.println("url " + fillName + " refers to unexpected data"); - } - } - } - - - static protected int parseRGB(String what) { - int leftParen = what.indexOf('(') + 1; - int rightParen = what.indexOf(')'); - String sub = what.substring(leftParen, rightParen); - int[] values = PApplet.parseInt(PApplet.splitTokens(sub, ", ")); - return (values[0] << 16) | (values[1] << 8) | (values[2]); - } - - - static protected HashMap parseStyleAttributes(String style) { - HashMap table = new HashMap(); - String[] pieces = style.split(";"); - for (int i = 0; i < pieces.length; i++) { - String[] parts = pieces[i].split(":"); - table.put(parts[0], parts[1]); - } - return table; - } - - - /** - * Parse a size that may have a suffix for its units. - * Ignoring cases where this could also be a percentage. - * The units spec: - *
      - *
    • "1pt" equals "1.25px" (and therefore 1.25 user units) - *
    • "1pc" equals "15px" (and therefore 15 user units) - *
    • "1mm" would be "3.543307px" (3.543307 user units) - *
    • "1cm" equals "35.43307px" (and therefore 35.43307 user units) - *
    • "1in" equals "90px" (and therefore 90 user units) - *
    - */ - static protected float parseUnitSize(String text) { - int len = text.length() - 2; - - if (text.endsWith("pt")) { - return PApplet.parseFloat(text.substring(0, len)) * 1.25f; - } else if (text.endsWith("pc")) { - return PApplet.parseFloat(text.substring(0, len)) * 15; - } else if (text.endsWith("mm")) { - return PApplet.parseFloat(text.substring(0, len)) * 3.543307f; - } else if (text.endsWith("cm")) { - return PApplet.parseFloat(text.substring(0, len)) * 35.43307f; - } else if (text.endsWith("in")) { - return PApplet.parseFloat(text.substring(0, len)) * 90; - } else if (text.endsWith("px")) { - return PApplet.parseFloat(text.substring(0, len)); - } else { - return PApplet.parseFloat(text); - } - } - - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - - static class Gradient extends PShapeSVG { - AffineTransform transform; - - float[] offset; - int[] color; - int count; - - public Gradient(PShapeSVG parent, XMLElement properties) { - super(parent, properties); - - XMLElement elements[] = properties.getChildren(); - offset = new float[elements.length]; - color = new int[elements.length]; - - // - for (int i = 0; i < elements.length; i++) { - XMLElement elem = elements[i]; - String name = elem.getName(); - if (name.equals("stop")) { - offset[count] = elem.getFloatAttribute("offset"); - String style = elem.getStringAttribute("style"); - HashMap styles = parseStyleAttributes(style); - - String colorStr = styles.get("stop-color"); - if (colorStr == null) colorStr = "#000000"; - String opacityStr = styles.get("stop-opacity"); - if (opacityStr == null) opacityStr = "1"; - int tupacity = (int) (PApplet.parseFloat(opacityStr) * 255); - color[count] = (tupacity << 24) | - Integer.parseInt(colorStr.substring(1), 16); - count++; - } - } - offset = PApplet.subset(offset, 0, count); - color = PApplet.subset(color, 0, count); - } - } - - - class LinearGradient extends Gradient { - float x1, y1, x2, y2; - - public LinearGradient(PShapeSVG parent, XMLElement properties) { - super(parent, properties); - - this.x1 = properties.getFloatAttribute("x1"); - this.y1 = properties.getFloatAttribute("y1"); - this.x2 = properties.getFloatAttribute("x2"); - this.y2 = properties.getFloatAttribute("y2"); - - String transformStr = - properties.getStringAttribute("gradientTransform"); - - if (transformStr != null) { - float t[] = parseMatrix(transformStr).get(null); - this.transform = new AffineTransform(t[0], t[3], t[1], t[4], t[2], t[5]); - - Point2D t1 = transform.transform(new Point2D.Float(x1, y1), null); - Point2D t2 = transform.transform(new Point2D.Float(x2, y2), null); - - this.x1 = (float) t1.getX(); - this.y1 = (float) t1.getY(); - this.x2 = (float) t2.getX(); - this.y2 = (float) t2.getY(); - } - } - } - - - class RadialGradient extends Gradient { - float cx, cy, r; - - public RadialGradient(PShapeSVG parent, XMLElement properties) { - super(parent, properties); - - this.cx = properties.getFloatAttribute("cx"); - this.cy = properties.getFloatAttribute("cy"); - this.r = properties.getFloatAttribute("r"); - - String transformStr = - properties.getStringAttribute("gradientTransform"); - - if (transformStr != null) { - float t[] = parseMatrix(transformStr).get(null); - this.transform = new AffineTransform(t[0], t[3], t[1], t[4], t[2], t[5]); - - Point2D t1 = transform.transform(new Point2D.Float(cx, cy), null); - Point2D t2 = transform.transform(new Point2D.Float(cx + r, cy), null); - - this.cx = (float) t1.getX(); - this.cy = (float) t1.getY(); - this.r = (float) (t2.getX() - t1.getX()); - } - } - } - - - - class LinearGradientPaint implements Paint { - float x1, y1, x2, y2; - float[] offset; - int[] color; - int count; - float opacity; - - public LinearGradientPaint(float x1, float y1, float x2, float y2, - float[] offset, int[] color, int count, - float opacity) { - this.x1 = x1; - this.y1 = y1; - this.x2 = x2; - this.y2 = y2; - this.offset = offset; - this.color = color; - this.count = count; - this.opacity = opacity; - } - - public PaintContext createContext(ColorModel cm, - Rectangle deviceBounds, Rectangle2D userBounds, - AffineTransform xform, RenderingHints hints) { - Point2D t1 = xform.transform(new Point2D.Float(x1, y1), null); - Point2D t2 = xform.transform(new Point2D.Float(x2, y2), null); - return new LinearGradientContext((float) t1.getX(), (float) t1.getY(), - (float) t2.getX(), (float) t2.getY()); - } - - public int getTransparency() { - return TRANSLUCENT; // why not.. rather than checking each color - } - - public class LinearGradientContext implements PaintContext { - int ACCURACY = 2; - float tx1, ty1, tx2, ty2; - - public LinearGradientContext(float tx1, float ty1, float tx2, float ty2) { - this.tx1 = tx1; - this.ty1 = ty1; - this.tx2 = tx2; - this.ty2 = ty2; - } - - public void dispose() { } - - public ColorModel getColorModel() { return ColorModel.getRGBdefault(); } - - public Raster getRaster(int x, int y, int w, int h) { - WritableRaster raster = - getColorModel().createCompatibleWritableRaster(w, h); - - int[] data = new int[w * h * 4]; - - // make normalized version of base vector - float nx = tx2 - tx1; - float ny = ty2 - ty1; - float len = (float) Math.sqrt(nx*nx + ny*ny); - if (len != 0) { - nx /= len; - ny /= len; - } - - int span = (int) PApplet.dist(tx1, ty1, tx2, ty2) * ACCURACY; - if (span <= 0) { - //System.err.println("span is too small"); - // annoying edge case where the gradient isn't legit - int index = 0; - for (int j = 0; j < h; j++) { - for (int i = 0; i < w; i++) { - data[index++] = 0; - data[index++] = 0; - data[index++] = 0; - data[index++] = 255; - } - } - - } else { - int[][] interp = new int[span][4]; - int prev = 0; - for (int i = 1; i < count; i++) { - int c0 = color[i-1]; - int c1 = color[i]; - int last = (int) (offset[i] * (span-1)); - //System.out.println("last is " + last); - for (int j = prev; j <= last; j++) { - float btwn = PApplet.norm(j, prev, last); - interp[j][0] = (int) PApplet.lerp((c0 >> 16) & 0xff, (c1 >> 16) & 0xff, btwn); - interp[j][1] = (int) PApplet.lerp((c0 >> 8) & 0xff, (c1 >> 8) & 0xff, btwn); - interp[j][2] = (int) PApplet.lerp(c0 & 0xff, c1 & 0xff, btwn); - interp[j][3] = (int) (PApplet.lerp((c0 >> 24) & 0xff, (c1 >> 24) & 0xff, btwn) * opacity); - //System.out.println(j + " " + interp[j][0] + " " + interp[j][1] + " " + interp[j][2]); - } - prev = last; - } - - int index = 0; - for (int j = 0; j < h; j++) { - for (int i = 0; i < w; i++) { - //float distance = 0; //PApplet.dist(cx, cy, x + i, y + j); - //int which = PApplet.min((int) (distance * ACCURACY), interp.length-1); - float px = (x + i) - tx1; - float py = (y + j) - ty1; - // distance up the line is the dot product of the normalized - // vector of the gradient start/stop by the point being tested - int which = (int) ((px*nx + py*ny) * ACCURACY); - if (which < 0) which = 0; - if (which > interp.length-1) which = interp.length-1; - //if (which > 138) System.out.println("grabbing " + which); - - data[index++] = interp[which][0]; - data[index++] = interp[which][1]; - data[index++] = interp[which][2]; - data[index++] = interp[which][3]; - } - } - } - raster.setPixels(0, 0, w, h, data); - - return raster; - } - } - } - - - class RadialGradientPaint implements Paint { - float cx, cy, radius; - float[] offset; - int[] color; - int count; - float opacity; - - public RadialGradientPaint(float cx, float cy, float radius, - float[] offset, int[] color, int count, - float opacity) { - this.cx = cx; - this.cy = cy; - this.radius = radius; - this.offset = offset; - this.color = color; - this.count = count; - this.opacity = opacity; - } - - public PaintContext createContext(ColorModel cm, - Rectangle deviceBounds, Rectangle2D userBounds, - AffineTransform xform, RenderingHints hints) { - return new RadialGradientContext(); - } - - public int getTransparency() { - return TRANSLUCENT; - } - - public class RadialGradientContext implements PaintContext { - int ACCURACY = 5; - - public void dispose() {} - - public ColorModel getColorModel() { return ColorModel.getRGBdefault(); } - - public Raster getRaster(int x, int y, int w, int h) { - WritableRaster raster = - getColorModel().createCompatibleWritableRaster(w, h); - - int span = (int) radius * ACCURACY; - int[][] interp = new int[span][4]; - int prev = 0; - for (int i = 1; i < count; i++) { - int c0 = color[i-1]; - int c1 = color[i]; - int last = (int) (offset[i] * (span - 1)); - for (int j = prev; j <= last; j++) { - float btwn = PApplet.norm(j, prev, last); - interp[j][0] = (int) PApplet.lerp((c0 >> 16) & 0xff, (c1 >> 16) & 0xff, btwn); - interp[j][1] = (int) PApplet.lerp((c0 >> 8) & 0xff, (c1 >> 8) & 0xff, btwn); - interp[j][2] = (int) PApplet.lerp(c0 & 0xff, c1 & 0xff, btwn); - interp[j][3] = (int) (PApplet.lerp((c0 >> 24) & 0xff, (c1 >> 24) & 0xff, btwn) * opacity); - } - prev = last; - } - - int[] data = new int[w * h * 4]; - int index = 0; - for (int j = 0; j < h; j++) { - for (int i = 0; i < w; i++) { - float distance = PApplet.dist(cx, cy, x + i, y + j); - int which = PApplet.min((int) (distance * ACCURACY), interp.length-1); - - data[index++] = interp[which][0]; - data[index++] = interp[which][1]; - data[index++] = interp[which][2]; - data[index++] = interp[which][3]; - } - } - raster.setPixels(0, 0, w, h, data); - - return raster; - } - } - } - - - protected Paint calcGradientPaint(Gradient gradient) { - if (gradient instanceof LinearGradient) { - LinearGradient grad = (LinearGradient) gradient; - return new LinearGradientPaint(grad.x1, grad.y1, grad.x2, grad.y2, - grad.offset, grad.color, grad.count, - opacity); - - } else if (gradient instanceof RadialGradient) { - RadialGradient grad = (RadialGradient) gradient; - return new RadialGradientPaint(grad.cx, grad.cy, grad.r, - grad.offset, grad.color, grad.count, - opacity); - } - return null; - } - - -// protected Paint calcGradientPaint(Gradient gradient, -// float x1, float y1, float x2, float y2) { -// if (gradient instanceof LinearGradient) { -// LinearGradient grad = (LinearGradient) gradient; -// return new LinearGradientPaint(x1, y1, x2, y2, -// grad.offset, grad.color, grad.count, -// opacity); -// } -// throw new RuntimeException("Not a linear gradient."); -// } - - -// protected Paint calcGradientPaint(Gradient gradient, -// float cx, float cy, float r) { -// if (gradient instanceof RadialGradient) { -// RadialGradient grad = (RadialGradient) gradient; -// return new RadialGradientPaint(cx, cy, r, -// grad.offset, grad.color, grad.count, -// opacity); -// } -// throw new RuntimeException("Not a radial gradient."); -// } - - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - - protected void styles(PGraphics g) { - super.styles(g); - - if (g instanceof PGraphicsJava2D) { - PGraphicsJava2D p2d = (PGraphicsJava2D) g; - - if (strokeGradient != null) { - p2d.strokeGradient = true; - p2d.strokeGradientObject = strokeGradientPaint; - } else { - // need to shut off, in case parent object has a gradient applied - //p2d.strokeGradient = false; - } - if (fillGradient != null) { - p2d.fillGradient = true; - p2d.fillGradientObject = fillGradientPaint; - } else { - // need to shut off, in case parent object has a gradient applied - //p2d.fillGradient = false; - } - } - } - - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - - //public void drawImpl(PGraphics g) { - // do nothing - //} - - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - - /** - * Get a particular element based on its SVG ID. When editing SVG by hand, - * this is the id="" tag on any SVG element. When editing from Illustrator, - * these IDs can be edited by expanding the layers palette. The names used - * in the layers palette, both for the layers or the shapes and groups - * beneath them can be used here. - *
    -   * // This code grabs "Layer 3" and the shapes beneath it.
    -   * SVG layer3 = svg.getChild("Layer 3");
    -   * 
    - */ - public PShape getChild(String name) { - PShape found = super.getChild(name); - if (found == null) { - // Otherwise try with underscores instead of spaces - // (this is how Illustrator handles spaces in the layer names). - found = super.getChild(name.replace(' ', '_')); - } - // Set bounding box based on the parent bounding box - if (found != null) { -// found.x = this.x; -// found.y = this.y; - found.width = this.width; - found.height = this.height; - } - return found; - } - - - /** - * Prints out the SVG document. Useful for parsing. - */ - public void print() { - PApplet.println(element.toString()); - } -} diff --git a/core/src/processing/core/PSmoothTriangle.java b/core/src/processing/core/PSmoothTriangle.java deleted file mode 100644 index ba692fefd..000000000 --- a/core/src/processing/core/PSmoothTriangle.java +++ /dev/null @@ -1,968 +0,0 @@ -/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */ - -/* - Part of the Processing project - http://processing.org - - Copyright (c) 2004-08 Ben Fry and Casey Reas - Copyright (c) 2001-04 Massachusetts Institute of Technology - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General - Public License along with this library; if not, write to the - Free Software Foundation, Inc., 59 Temple Place, Suite 330, - Boston, MA 02111-1307 USA -*/ - -package processing.core; - - -/** - * Smoothed triangle renderer for P3D. - * - * Based off of the PPolygon class in old versions of Processing. - * Name and location of this class will change in a future release. - */ -public class PSmoothTriangle implements PConstants { - - // really this is "debug" but.. - private static final boolean EWJORDAN = false; - private static final boolean FRY = false; - - // identical to the constants from PGraphics - - static final int X = 0; // transformed xyzw - static final int Y = 1; // formerly SX SY SZ - static final int Z = 2; - - static final int R = 3; // actual rgb, after lighting - static final int G = 4; // fill stored here, transform in place - static final int B = 5; - static final int A = 6; - - static final int U = 7; // texture - static final int V = 8; - - static final int DEFAULT_SIZE = 64; // this is needed for spheres - float vertices[][] = new float[DEFAULT_SIZE][PGraphics.VERTEX_FIELD_COUNT]; - int vertexCount; - - - // after some fiddling, this seems to produce the best results - static final int ZBUFFER_MIN_COVERAGE = 204; - - float r[] = new float[DEFAULT_SIZE]; // storage used by incrementalize - float dr[] = new float[DEFAULT_SIZE]; - float l[] = new float[DEFAULT_SIZE]; // more storage for incrementalize - float dl[] = new float[DEFAULT_SIZE]; - float sp[] = new float[DEFAULT_SIZE]; // temporary storage for scanline - float sdp[] = new float[DEFAULT_SIZE]; - - // color and xyz are always interpolated - boolean interpX; - boolean interpZ; - boolean interpUV; // is this necessary? could just check timage != null - boolean interpARGB; - - int rgba; - int r2, g2, b2, a2, a2orig; - - boolean noDepthTest; - - PGraphics3D parent; - int pixels[]; - float[] zbuffer; - - // the parent's width/height, - // or if smooth is enabled, parent's w/h scaled - // up by the smooth dimension - int width, height; - int width1, height1; - - PImage timage; - int tpixels[]; - int theight, twidth; - int theight1, twidth1; - int tformat; - - // temp fix to behave like SMOOTH_IMAGES - // TODO ewjordan: can probably remove this variable - boolean texture_smooth; - - // for anti-aliasing - static final int SUBXRES = 8; - static final int SUBXRES1 = 7; - static final int SUBYRES = 8; - static final int SUBYRES1 = 7; - static final int MAX_COVERAGE = SUBXRES * SUBYRES; - - boolean smooth; - int firstModY; - int lastModY; - int lastY; - int aaleft[] = new int[SUBYRES]; - int aaright[] = new int[SUBYRES]; - int aaleftmin, aarightmin; - int aaleftmax, aarightmax; - int aaleftfull, aarightfull; - - /* Variables needed for accurate texturing. */ - //private PMatrix textureMatrix = new PMatrix3D(); - private float[] camX = new float[3]; - private float[] camY = new float[3]; - private float[] camZ = new float[3]; - private float ax,ay,az; - private float bx,by,bz; - private float cx,cy,cz; - private float nearPlaneWidth, nearPlaneHeight, nearPlaneDepth; - //private float newax, newbx, newcx; - private float xmult, ymult; - - - final private int MODYRES(int y) { - return (y & SUBYRES1); - } - - - public PSmoothTriangle(PGraphics3D iparent) { - parent = iparent; - reset(0); - } - - - public void reset(int count) { - vertexCount = count; - interpX = true; - interpZ = true; - interpUV = false; - interpARGB = true; - timage = null; - } - - - public float[] nextVertex() { - if (vertexCount == vertices.length) { - //parent.message(CHATTER, "re-allocating for " + - // (vertexCount*2) + " vertices"); - float temp[][] = new float[vertexCount<<1][PGraphics.VERTEX_FIELD_COUNT]; - System.arraycopy(vertices, 0, temp, 0, vertexCount); - vertices = temp; - - r = new float[vertices.length]; - dr = new float[vertices.length]; - l = new float[vertices.length]; - dl = new float[vertices.length]; - sp = new float[vertices.length]; - sdp = new float[vertices.length]; - } - return vertices[vertexCount++]; // returns v[0], sets vc to 1 - } - - - public void texture(PImage image) { - this.timage = image; - this.tpixels = image.pixels; - this.twidth = image.width; - this.theight = image.height; - this.tformat = image.format; - - twidth1 = twidth - 1; - theight1 = theight - 1; - interpUV = true; - } - - public void render() { - if (vertexCount < 3) return; - - smooth = true;//TODO - // these may have changed due to a resize() - // so they should be refreshed here - pixels = parent.pixels; - zbuffer = parent.zbuffer; - - noDepthTest = false;//parent.hints[DISABLE_DEPTH_TEST]; - - // In 0148+, should always be true if this code is called at all - //smooth = parent.smooth; - - // by default, text turns on smooth for the textures - // themselves. but this should be shut off if the hint - // for DISABLE_TEXT_SMOOTH is set. - texture_smooth = true; - - width = smooth ? parent.width*SUBXRES : parent.width; - height = smooth ? parent.height*SUBYRES : parent.height; - - width1 = width - 1; - height1 = height - 1; - - if (!interpARGB) { - r2 = (int) (vertices[0][R] * 255); - g2 = (int) (vertices[0][G] * 255); - b2 = (int) (vertices[0][B] * 255); - a2 = (int) (vertices[0][A] * 255); - a2orig = a2; // save an extra copy - rgba = 0xff000000 | (r2 << 16) | (g2 << 8) | b2; - } - - for (int i = 0; i < vertexCount; i++) { - r[i] = 0; dr[i] = 0; l[i] = 0; dl[i] = 0; - } - - if (smooth) { - for (int i = 0; i < vertexCount; i++) { - vertices[i][X] *= SUBXRES; - vertices[i][Y] *= SUBYRES; - } - firstModY = -1; - } - - // find top vertex (y is zero at top, higher downwards) - int topi = 0; - float ymin = vertices[0][Y]; - float ymax = vertices[0][Y]; // fry 031001 - for (int i = 1; i < vertexCount; i++) { - if (vertices[i][Y] < ymin) { - ymin = vertices[i][Y]; - topi = i; - } - if (vertices[i][Y] > ymax) ymax = vertices[i][Y]; - } - - // the last row is an exceptional case, because there won't - // necessarily be 8 rows of subpixel lines that will force - // the final line to render. so instead, the algo keeps track - // of the lastY (in subpixel resolution) that will be rendered - // and that will force a scanline to happen the same as - // every eighth in the other situations - //lastY = -1; // fry 031001 - lastY = (int) (ymax - 0.5f); // global to class bc used by other fxns - - int lefti = topi; // li, index of left vertex - int righti = topi; // ri, index of right vertex - int y = (int) (ymin + 0.5f); // current scan line - int lefty = y - 1; // lower end of left edge - int righty = y - 1; // lower end of right edge - - interpX = true; - - int remaining = vertexCount; - - // scan in y, activating new edges on left & right - // as scan line passes over new vertices - while (remaining > 0) { - // advance left edge? - while ((lefty <= y) && (remaining > 0)) { - remaining--; - // step ccw down left side - int i = (lefti != 0) ? (lefti-1) : (vertexCount-1); - incrementalize_y(vertices[lefti], vertices[i], l, dl, y); - lefty = (int) (vertices[i][Y] + 0.5f); - lefti = i; - } - - // advance right edge? - while ((righty <= y) && (remaining > 0)) { - remaining--; - // step cw down right edge - int i = (righti != vertexCount-1) ? (righti + 1) : 0; - incrementalize_y(vertices[righti], vertices[i], r, dr, y); - righty = (int) (vertices[i][Y] + 0.5f); - righti = i; - } - - // do scanlines till end of l or r edge - while (y < lefty && y < righty) { - // this doesn't work because it's not always set here - //if (remaining == 0) { - //lastY = (lefty < righty) ? lefty-1 : righty-1; - //System.out.println("lastY is " + lastY); - //} - - if ((y >= 0) && (y < height)) { - //try { // hopefully this bug is fixed - if (l[X] <= r[X]) scanline(y, l, r); - else scanline(y, r, l); - //} catch (ArrayIndexOutOfBoundsException e) { - //e.printStackTrace(); - //} - } - y++; - // this increment probably needs to be different - // UV and RGB shouldn't be incremented until line is emitted - increment(l, dl); - increment(r, dr); - } - } - //if (smooth) { - //System.out.println("y/lasty/lastmody = " + y + " " + lastY + " " + lastModY); - //} - } - - - public void unexpand() { - if (smooth) { - for (int i = 0; i < vertexCount; i++) { - vertices[i][X] /= SUBXRES; - vertices[i][Y] /= SUBYRES; - } - } - } - - - private void scanline(int y, float l[], float r[]) { - //System.out.println("scanline " + y); - for (int i = 0; i < vertexCount; i++) { // should be moved later - sp[i] = 0; sdp[i] = 0; - } - - // this rounding doesn't seem to be relevant with smooth - int lx = (int) (l[X] + 0.49999f); // ceil(l[X]-.5); - if (lx < 0) lx = 0; - int rx = (int) (r[X] - 0.5f); - if (rx > width1) rx = width1; - - if (lx > rx) return; - - if (smooth) { - int mody = MODYRES(y); - - aaleft[mody] = lx; - aaright[mody] = rx; - - if (firstModY == -1) { - firstModY = mody; - aaleftmin = lx; aaleftmax = lx; - aarightmin = rx; aarightmax = rx; - - } else { - if (aaleftmin > aaleft[mody]) aaleftmin = aaleft[mody]; - if (aaleftmax < aaleft[mody]) aaleftmax = aaleft[mody]; - if (aarightmin > aaright[mody]) aarightmin = aaright[mody]; - if (aarightmax < aaright[mody]) aarightmax = aaright[mody]; - } - - lastModY = mody; // moved up here (before the return) 031001 - // not the eighth (or lastY) line, so not scanning this time - if ((mody != SUBYRES1) && (y != lastY)) return; - //lastModY = mody; // eeK! this was missing - //return; - - //if (y == lastY) { - //System.out.println("y is lasty"); - //} - //lastModY = mody; - aaleftfull = aaleftmax/SUBXRES + 1; - aarightfull = aarightmin/SUBXRES - 1; - } - - // this is the setup, based on lx - incrementalize_x(l, r, sp, sdp, lx); - //System.out.println(l[V] + " " + r[V] + " " +sp[V] + " " +sdp[V]); - - // scan in x, generating pixels - // using parent.width to get actual pixel index - // rather than scaled by smooth factor - int offset = smooth ? parent.width * (y / SUBYRES) : parent.width*y; - - int truelx = 0, truerx = 0; - if (smooth) { - truelx = lx / SUBXRES; - truerx = (rx + SUBXRES1) / SUBXRES; - - lx = aaleftmin / SUBXRES; - rx = (aarightmax + SUBXRES1) / SUBXRES; - if (lx < 0) lx = 0; - if (rx > parent.width1) rx = parent.width1; - } - -// System.out.println("P3D interp uv " + interpUV + " " + -// vertices[2][U] + " " + vertices[2][V]); - - interpX = false; - int tr, tg, tb, ta; - //System.out.println("lx: "+lx + "\nrx: "+rx); - for (int x = lx; x <= rx; x++) { - - // added == because things on same plane weren't replacing each other - // makes for strangeness in 3D [ewj: yup!], but totally necessary for 2D - //if (noDepthTest || (sp[Z] < zbuffer[offset+x])) { - if (noDepthTest || (sp[Z] <= zbuffer[offset+x])) { - //if (true) { - - // map texture based on U, V coords in sp[U] and sp[V] - if (interpUV) { - int tu = (int)sp[U]; - int tv = (int)sp[V]; - - if (tu > twidth1) tu = twidth1; - if (tv > theight1) tv = theight1; - if (tu < 0) tu = 0; - if (tv < 0) tv = 0; - - int txy = tv*twidth + tu; - //System.out.println("tu: "+tu+" ; tv: "+tv+" ; txy: "+txy); - float[] uv = new float[2]; - txy = getTextureIndex(x, y*1.0f/SUBYRES, uv); - // txy = getTextureIndex(x* 1.0f/SUBXRES, y*1.0f/SUBYRES, uv); - - tu = (int)uv[0]; tv = (int)uv[1]; - // if (tu > twidth1) tu = twidth1; - // if (tv > theight1) tv = theight1; - // if (tu < 0) tu = 0; - // if (tv < 0) tv = 0; - txy = twidth*tv + tu; - // if (EWJORDAN) System.out.println("x/y/txy:"+x + " " + y + " " +txy); - //PApplet.println(sp); - - //smooth = true; - if (smooth || texture_smooth) { - //if (FRY) System.out.println("sp u v = " + sp[U] + " " + sp[V]); - //System.out.println("sp u v = " + sp[U] + " " + sp[V]); - // tuf1/tvf1 is the amount of coverage for the adjacent - // pixel, which is the decimal percentage. - // int tuf1 = (int) (255f * (sp[U] - (float)tu)); - // int tvf1 = (int) (255f * (sp[V] - (float)tv)); - - int tuf1 = (int) (255f * (uv[0] - tu)); - int tvf1 = (int) (255f * (uv[1] - tv)); - - // the closer sp[U or V] is to the decimal being zero - // the more coverage it should get of the original pixel - int tuf = 255 - tuf1; - int tvf = 255 - tvf1; - - // this code sucks! filled with bugs and slow as hell! - int pixel00 = tpixels[txy]; - int pixel01 = (tv < theight1) ? tpixels[txy + twidth] : tpixels[txy]; - int pixel10 = (tu < twidth1) ? tpixels[txy + 1] : tpixels[txy]; - int pixel11 = ((tv < theight1) && (tu < twidth1)) ? tpixels[txy + twidth + 1] : tpixels[txy]; - //System.out.println("1: "+pixel00); - //check - int p00, p01, p10, p11; - int px0, px1; //, pxy; - - if (tformat == ALPHA) { - px0 = (pixel00*tuf + pixel10*tuf1) >> 8; - px1 = (pixel01*tuf + pixel11*tuf1) >> 8; - ta = (((px0*tvf + px1*tvf1) >> 8) * - (interpARGB ? ((int) (sp[A]*255)) : a2orig)) >> 8; - } else if (tformat == ARGB) { - p00 = (pixel00 >> 24) & 0xff; - p01 = (pixel01 >> 24) & 0xff; - p10 = (pixel10 >> 24) & 0xff; - p11 = (pixel11 >> 24) & 0xff; - - px0 = (p00*tuf + p10*tuf1) >> 8; - px1 = (p01*tuf + p11*tuf1) >> 8; - ta = (((px0*tvf + px1*tvf1) >> 8) * - (interpARGB ? ((int) (sp[A]*255)) : a2orig)) >> 8; - } else { // RGB image, no alpha - //ACCTEX: Getting here when smooth is on - ta = interpARGB ? ((int) (sp[A]*255)) : a2orig; - //System.out.println("4: "+ta + " " +interpARGB + " " + sp[A] + " " + a2orig); - //check - } - - if ((tformat == RGB) || (tformat == ARGB)) { - p00 = (pixel00 >> 16) & 0xff; // red - p01 = (pixel01 >> 16) & 0xff; - p10 = (pixel10 >> 16) & 0xff; - p11 = (pixel11 >> 16) & 0xff; - - px0 = (p00*tuf + p10*tuf1) >> 8; - px1 = (p01*tuf + p11*tuf1) >> 8; - tr = (((px0*tvf + px1*tvf1) >> 8) * (interpARGB ? ((int) (sp[R]*255)) : r2)) >> 8; - - p00 = (pixel00 >> 8) & 0xff; // green - p01 = (pixel01 >> 8) & 0xff; - p10 = (pixel10 >> 8) & 0xff; - p11 = (pixel11 >> 8) & 0xff; - - px0 = (p00*tuf + p10*tuf1) >> 8; - px1 = (p01*tuf + p11*tuf1) >> 8; - tg = (((px0*tvf + px1*tvf1) >> 8) * (interpARGB ? ((int) (sp[G]*255)) : g2)) >> 8; - - - p00 = pixel00 & 0xff; // blue - p01 = pixel01 & 0xff; - p10 = pixel10 & 0xff; - p11 = pixel11 & 0xff; - - px0 = (p00*tuf + p10*tuf1) >> 8; - px1 = (p01*tuf + p11*tuf1) >> 8; - tb = (((px0*tvf + px1*tvf1) >> 8) * (interpARGB ? ((int) (sp[B]*255)) : b2)) >> 8; - //System.out.println("5: "+tr + " " + tg + " " +tb); - //check - } else { // alpha image, only use current fill color - if (interpARGB) { - tr = (int) (sp[R] * 255); - tg = (int) (sp[G] * 255); - tb = (int) (sp[B] * 255); - } else { - tr = r2; - tg = g2; - tb = b2; - } - } - - // get coverage for pixel if smooth - // checks smooth again here because of - // hints[SMOOTH_IMAGES] used up above - int weight = smooth ? coverage(x) : 255; - if (weight != 255) ta = (ta*weight) >> 8; - //System.out.println(ta); - //System.out.println("8"); - //check - } else { // no smooth, just get the pixels - int tpixel = tpixels[txy]; - // TODO i doubt splitting these guys really gets us - // all that much speed.. is it worth it? - if (tformat == ALPHA) { - ta = tpixel; - if (interpARGB) { - tr = (int) (sp[R]*255); - tg = (int) (sp[G]*255); - tb = (int) (sp[B]*255); - if (sp[A] != 1) { - ta = (((int) (sp[A]*255)) * ta) >> 8; - } - } else { - tr = r2; - tg = g2; - tb = b2; - ta = (a2orig * ta) >> 8; - } - - } else { // RGB or ARGB - ta = (tformat == RGB) ? 255 : (tpixel >> 24) & 0xff; - if (interpARGB) { - tr = (((int) (sp[R]*255)) * ((tpixel >> 16) & 0xff)) >> 8; - tg = (((int) (sp[G]*255)) * ((tpixel >> 8) & 0xff)) >> 8; - tb = (((int) (sp[B]*255)) * ((tpixel) & 0xff)) >> 8; - ta = (((int) (sp[A]*255)) * ta) >> 8; - } else { - tr = (r2 * ((tpixel >> 16) & 0xff)) >> 8; - tg = (g2 * ((tpixel >> 8) & 0xff)) >> 8; - tb = (b2 * ((tpixel) & 0xff)) >> 8; - ta = (a2orig * ta) >> 8; - } - } - } - - if ((ta == 254) || (ta == 255)) { // if (ta & 0xf8) would be good - // no need to blend - pixels[offset+x] = 0xff000000 | (tr << 16) | (tg << 8) | tb; - zbuffer[offset+x] = sp[Z]; - } else { - // blend with pixel on screen - int a1 = 255-ta; - int r1 = (pixels[offset+x] >> 16) & 0xff; - int g1 = (pixels[offset+x] >> 8) & 0xff; - int b1 = (pixels[offset+x]) & 0xff; - - - pixels[offset+x] = - 0xff000000 | - (((tr*ta + r1*a1) >> 8) << 16) | - ((tg*ta + g1*a1) & 0xff00) | - ((tb*ta + b1*a1) >> 8); - - //System.out.println("17"); - //check - if (ta > ZBUFFER_MIN_COVERAGE) zbuffer[offset+x] = sp[Z]; - } - - //System.out.println("18"); - //check - } else { // no image applied - int weight = smooth ? coverage(x) : 255; - - if (interpARGB) { - r2 = (int) (sp[R] * 255); - g2 = (int) (sp[G] * 255); - b2 = (int) (sp[B] * 255); - if (sp[A] != 1) weight = (weight * ((int) (sp[A] * 255))) >> 8; - if (weight == 255) { - rgba = 0xff000000 | (r2 << 16) | (g2 << 8) | b2; - } - } else { - if (a2orig != 255) weight = (weight * a2orig) >> 8; - } - - if (weight == 255) { - // no blend, no aa, just the rgba - pixels[offset+x] = rgba; - zbuffer[offset+x] = sp[Z]; - - } else { - int r1 = (pixels[offset+x] >> 16) & 0xff; - int g1 = (pixels[offset+x] >> 8) & 0xff; - int b1 = (pixels[offset+x]) & 0xff; - a2 = weight; - - int a1 = 255 - a2; - pixels[offset+x] = (0xff000000 | - ((r1*a1 + r2*a2) >> 8) << 16 | - // use & instead of >> and << below - ((g1*a1 + g2*a2) >> 8) << 8 | - ((b1*a1 + b2*a2) >> 8)); - - if (a2 > ZBUFFER_MIN_COVERAGE) zbuffer[offset+x] = sp[Z]; - } - } - } - // if smooth enabled, don't increment values - // for the pixel in the stretch out version - // of the scanline used to get smooth edges. - if (!smooth || ((x >= truelx) && (x <= truerx))) { - //if (!smooth) - increment(sp, sdp); - } - } - firstModY = -1; - interpX = true; - } - - - // x is in screen, not huge 8x coordinates - private int coverage(int x) { - if ((x >= aaleftfull) && (x <= aarightfull) && - // important since not all SUBYRES lines may have been covered - (firstModY == 0) && (lastModY == SUBYRES1)) { - return 255; - } - - int pixelLeft = x*SUBXRES; // huh? - int pixelRight = pixelLeft + 8; - - int amt = 0; - for (int i = firstModY; i <= lastModY; i++) { - if ((aaleft[i] > pixelRight) || (aaright[i] < pixelLeft)) { - continue; - } - // does this need a +1 ? - amt += ((aaright[i] < pixelRight ? aaright[i] : pixelRight) - - (aaleft[i] > pixelLeft ? aaleft[i] : pixelLeft)); - } - amt <<= 2; - return (amt == 256) ? 255 : amt; - } - - - private void incrementalize_y(float p1[], float p2[], - float p[], float dp[], int y) { - float delta = p2[Y] - p1[Y]; - if (delta == 0) delta = 1; - float fraction = y + 0.5f - p1[Y]; - - if (interpX) { - dp[X] = (p2[X] - p1[X]) / delta; - p[X] = p1[X] + dp[X] * fraction; - } - if (interpZ) { - dp[Z] = (p2[Z] - p1[Z]) / delta; - p[Z] = p1[Z] + dp[Z] * fraction; - } - - if (interpARGB) { - dp[R] = (p2[R] - p1[R]) / delta; - dp[G] = (p2[G] - p1[G]) / delta; - dp[B] = (p2[B] - p1[B]) / delta; - dp[A] = (p2[A] - p1[A]) / delta; - p[R] = p1[R] + dp[R] * fraction; - p[G] = p1[G] + dp[G] * fraction; - p[B] = p1[B] + dp[B] * fraction; - p[A] = p1[A] + dp[A] * fraction; - } - - if (interpUV) { - dp[U] = (p2[U] - p1[U]) / delta; - dp[V] = (p2[V] - p1[V]) / delta; - - //if (smooth) { - //p[U] = p1[U]; //+ dp[U] * fraction; - //p[V] = p1[V]; //+ dp[V] * fraction; - - //} else { - p[U] = p1[U] + dp[U] * fraction; - p[V] = p1[V] + dp[V] * fraction; - //} - if (FRY) System.out.println("inc y p[U] p[V] = " + p[U] + " " + p[V]); - } - } - - //incrementalize_x(l, r, sp, sdp, lx); - private void incrementalize_x(float p1[], float p2[], - float p[], float dp[], int x) { - float delta = p2[X] - p1[X]; - if (delta == 0) delta = 1; - float fraction = x + 0.5f - p1[X]; - if (smooth) { - delta /= SUBXRES; - fraction /= SUBXRES; - } - - if (interpX) { - dp[X] = (p2[X] - p1[X]) / delta; - p[X] = p1[X] + dp[X] * fraction; - } - if (interpZ) { - dp[Z] = (p2[Z] - p1[Z]) / delta; - p[Z] = p1[Z] + dp[Z] * fraction; - //System.out.println(p2[Z]+" " +p1[Z]+" " +dp[Z]); - } - - if (interpARGB) { - dp[R] = (p2[R] - p1[R]) / delta; - dp[G] = (p2[G] - p1[G]) / delta; - dp[B] = (p2[B] - p1[B]) / delta; - dp[A] = (p2[A] - p1[A]) / delta; - p[R] = p1[R] + dp[R] * fraction; - p[G] = p1[G] + dp[G] * fraction; - p[B] = p1[B] + dp[B] * fraction; - p[A] = p1[A] + dp[A] * fraction; - } - - if (interpUV) { - if (FRY) System.out.println("delta, frac = " + delta + ", " + fraction); - dp[U] = (p2[U] - p1[U]) / delta; - dp[V] = (p2[V] - p1[V]) / delta; - - //if (smooth) { - //p[U] = p1[U]; - // offset for the damage that will be done by the - // 8 consecutive calls to scanline - // agh.. this won't work b/c not always 8 calls before render - // maybe lastModY - firstModY + 1 instead? - if (FRY) System.out.println("before inc x p[V] = " + p[V] + " " + p1[V] + " " + p2[V]); - //p[V] = p1[V] - SUBXRES1 * fraction; - - //} else { - p[U] = p1[U] + dp[U] * fraction; - p[V] = p1[V] + dp[V] * fraction; - //} - } - } - - private void increment(float p[], float dp[]) { - if (interpX) p[X] += dp[X]; - if (interpZ) p[Z] += dp[Z]; - - if (interpARGB) { - p[R] += dp[R]; - p[G] += dp[G]; - p[B] += dp[B]; - p[A] += dp[A]; - } - - if (interpUV) { - if (FRY) System.out.println("increment() " + p[V] + " " + dp[V]); - p[U] += dp[U]; - p[V] += dp[V]; - } - } - - - /** - * Pass camera-space coordinates for the triangle. - * Needed to render if hint(ENABLE_ACCURATE_TEXTURES) enabled. - * Generally this will not need to be called manually, - * currently called from PGraphics3D.render_triangles() - */ - public void setCamVertices(float x0, float y0, float z0, - float x1, float y1, float z1, - float x2, float y2, float z2) { - camX[0] = x0; - camX[1] = x1; - camX[2] = x2; - - camY[0] = y0; - camY[1] = y1; - camY[2] = y2; - - camZ[0] = z0; - camZ[1] = z1; - camZ[2] = z2; - } - - public void setVertices(float x0, float y0, float z0, - float x1, float y1, float z1, - float x2, float y2, float z2) { - vertices[0][X] = x0; - vertices[1][X] = x1; - vertices[2][X] = x2; - - vertices[0][Y] = y0; - vertices[1][Y] = y1; - vertices[2][Y] = y2; - - vertices[0][Z] = z0; - vertices[1][Z] = z1; - vertices[2][Z] = z2; - } - - - - /** - * Precompute a bunch of variables needed to perform - * texture mapping. - * @return True unless texture mapping is degenerate - */ - boolean precomputeAccurateTexturing() { - int o0 = 0; - int o1 = 1; - int o2 = 2; - - PMatrix3D myMatrix = new PMatrix3D(vertices[o0][U], vertices[o0][V], 1, 0, - vertices[o1][U], vertices[o1][V], 1, 0, - vertices[o2][U], vertices[o2][V], 1, 0, - 0, 0, 0, 1); - - // A 3x3 inversion would be more efficient here, - // given that the fourth r/c are unity - boolean invertSuccess = myMatrix.invert();// = myMatrix.invert(); - - // If the matrix inversion had trouble, let the caller know. - // Note that this does not catch everything that could go wrong - // here, like if the renderer is in ortho() mode (which really - // must be caught in PGraphics3D instead of here). - if (!invertSuccess) return false; - - float m00, m01, m02, m10, m11, m12, m20, m21, m22; - m00 = myMatrix.m00*camX[o0]+myMatrix.m01*camX[o1]+myMatrix.m02*camX[o2]; - m01 = myMatrix.m10*camX[o0]+myMatrix.m11*camX[o1]+myMatrix.m12*camX[o2]; - m02 = myMatrix.m20*camX[o0]+myMatrix.m21*camX[o1]+myMatrix.m22*camX[o2]; - m10 = myMatrix.m00*camY[o0]+myMatrix.m01*camY[o1]+myMatrix.m02*camY[o2]; - m11 = myMatrix.m10*camY[o0]+myMatrix.m11*camY[o1]+myMatrix.m12*camY[o2]; - m12 = myMatrix.m20*camY[o0]+myMatrix.m21*camY[o1]+myMatrix.m22*camY[o2]; - m20 = -(myMatrix.m00*camZ[o0]+myMatrix.m01*camZ[o1]+myMatrix.m02*camZ[o2]); - m21 = -(myMatrix.m10*camZ[o0]+myMatrix.m11*camZ[o1]+myMatrix.m12*camZ[o2]); - m22 = -(myMatrix.m20*camZ[o0]+myMatrix.m21*camZ[o1]+myMatrix.m22*camZ[o2]); - - float px = m02; - float py = m12; - float pz = m22; - - float TEX_WIDTH = this.twidth; - float TEX_HEIGHT = this.theight; - - float resultT0x = m00*TEX_WIDTH+m02; - float resultT0y = m10*TEX_WIDTH+m12; - float resultT0z = m20*TEX_WIDTH+m22; - float result0Tx = m01*TEX_HEIGHT+m02; - float result0Ty = m11*TEX_HEIGHT+m12; - float result0Tz = m21*TEX_HEIGHT+m22; - float mx = resultT0x-m02; - float my = resultT0y-m12; - float mz = resultT0z-m22; - float nx = result0Tx-m02; - float ny = result0Ty-m12; - float nz = result0Tz-m22; - - //avec = p x n - ax = (py*nz-pz*ny)*TEX_WIDTH; //F_TEX_WIDTH/HEIGHT? - ay = (pz*nx-px*nz)*TEX_WIDTH; - az = (px*ny-py*nx)*TEX_WIDTH; - //bvec = m x p - bx = (my*pz-mz*py)*TEX_HEIGHT; - by = (mz*px-mx*pz)*TEX_HEIGHT; - bz = (mx*py-my*px)*TEX_HEIGHT; - //cvec = n x m - cx = ny*mz-nz*my; - cy = nz*mx-nx*mz; - cz = nx*my-ny*mx; - - //System.out.println("a/b/c: "+ax+" " + ay + " " + az + " " + bx + " " + by + " " + bz + " " + cx + " " + cy + " " + cz); - - nearPlaneWidth = (parent.rightScreen-parent.leftScreen); - nearPlaneHeight = (parent.topScreen-parent.bottomScreen); - nearPlaneDepth = parent.nearPlane; - - // one pixel width in nearPlane coordinates - xmult = nearPlaneWidth / parent.width; - ymult = nearPlaneHeight / parent.height; - // Extra scalings to map screen plane units to pixel units -// newax = ax*xmult; -// newbx = bx*xmult; -// newcx = cx*xmult; - - - // System.out.println("nearplane: "+ nearPlaneWidth + " " + nearPlaneHeight + " " + nearPlaneDepth); - // System.out.println("mults: "+ xmult + " " + ymult); - // System.out.println("news: "+ newax + " " + newbx + " " + newcx); - return true; - } - - /** - * Get the texture map location based on the current screen - * coordinates. Assumes precomputeAccurateTexturing() has - * been called already for this texture mapping. - * @param sx - * @param sy - * @return - */ - private int getTextureIndex(float sx, float sy, float[] uv) { - if (EWJORDAN) System.out.println("Getting texel at "+sx + ", "+sy); - //System.out.println("Screen: "+ sx + " " + sy); - sx = xmult*(sx-(parent.width/2.0f) +.5f);//+.5f) - sy = ymult*(sy-(parent.height/2.0f)+.5f);//+.5f) - //sx /= SUBXRES; - //sy /= SUBYRES; - float sz = nearPlaneDepth; - float a = sx * ax + sy * ay + sz * az; - float b = sx * bx + sy * by + sz * bz; - float c = sx * cx + sy * cy + sz * cz; - int u = (int)(a / c); - int v = (int)(b / c); - uv[0] = a / c; - uv[1] = b / c; - if (uv[0] < 0) { - uv[0] = u = 0; - } - if (uv[1] < 0) { - uv[1] = v = 0; - } - if (uv[0] >= twidth) { - uv[0] = twidth-1; - u = twidth-1; - } - if (uv[1] >= theight) { - uv[1] = theight-1; - v = theight-1; - } - int result = v*twidth + u; - //System.out.println("a/b/c: "+a + " " + b + " " + c); - //System.out.println("cx/y/z: "+cx + " " + cy + " " + cz); - //if (result < 0) result = 0; - //if (result >= timage.pixels.length-2) result = timage.pixels.length - 2; - if (EWJORDAN) System.out.println("Got texel "+result); - return result; - } - - - public void setIntensities(float ar, float ag, float ab, float aa, - float br, float bg, float bb, float ba, - float cr, float cg, float cb, float ca) { - vertices[0][R] = ar; - vertices[0][G] = ag; - vertices[0][B] = ab; - vertices[0][A] = aa; - vertices[1][R] = br; - vertices[1][G] = bg; - vertices[1][B] = bb; - vertices[1][A] = ba; - vertices[2][R] = cr; - vertices[2][G] = cg; - vertices[2][B] = cb; - vertices[2][A] = ca; - } -} diff --git a/core/src/processing/core/PStyle.java b/core/src/processing/core/PStyle.java deleted file mode 100644 index ccea03a42..000000000 --- a/core/src/processing/core/PStyle.java +++ /dev/null @@ -1,61 +0,0 @@ -/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */ - -/* - Part of the Processing project - http://processing.org - - Copyright (c) 2008 Ben Fry and Casey Reas - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General - Public License along with this library; if not, write to the - Free Software Foundation, Inc., 59 Temple Place, Suite 330, - Boston, MA 02111-1307 USA -*/ - -package processing.core; - - -public class PStyle implements PConstants { - public int imageMode; - public int rectMode; - public int ellipseMode; - public int shapeMode; - - public int colorMode; - public float colorModeX; - public float colorModeY; - public float colorModeZ; - public float colorModeA; - - public boolean tint; - public int tintColor; - public boolean fill; - public int fillColor; - public boolean stroke; - public int strokeColor; - public float strokeWeight; - public int strokeCap; - public int strokeJoin; - - // TODO these fellas are inconsistent, and may need to go elsewhere - public float ambientR, ambientG, ambientB; - public float specularR, specularG, specularB; - public float emissiveR, emissiveG, emissiveB; - public float shininess; - - public PFont textFont; - public int textAlign; - public int textAlignY; - public int textMode; - public float textSize; - public float textLeading; -} diff --git a/core/src/processing/core/PTriangle.java b/core/src/processing/core/PTriangle.java deleted file mode 100644 index 97c4fed2e..000000000 --- a/core/src/processing/core/PTriangle.java +++ /dev/null @@ -1,3850 +0,0 @@ -/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */ - -/* - Part of the Processing project - http://processing.org - - Copyright (c) 2004-07 Ben Fry and Casey Reas - Copyright (c) 2001-04 Massachusetts Institute of Technology - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General - Public License along with this library; if not, write to the - Free Software Foundation, Inc., 59 Temple Place, Suite 330, - Boston, MA 02111-1307 USA - */ - -package processing.core; - -/** - * Handles rendering of single (tesselated) triangles in 3D. - *

    - * Originally written by sami (www.sumea.com) - */ -public class PTriangle implements PConstants -{ - static final float PIXEL_CENTER = 0.5f; // for polygon aa - - static final int R_GOURAUD = 0x1; - static final int R_TEXTURE8 = 0x2; - static final int R_TEXTURE24 = 0x4; - static final int R_TEXTURE32 = 0x8; - static final int R_ALPHA = 0x10; - - private int[] m_pixels; - private int[] m_texture; - //private int[] m_stencil; - private float[] m_zbuffer; - - private int SCREEN_WIDTH; - private int SCREEN_HEIGHT; - //private int SCREEN_WIDTH1; - //private int SCREEN_HEIGHT1; - - private int TEX_WIDTH; - private int TEX_HEIGHT; - private float F_TEX_WIDTH; - private float F_TEX_HEIGHT; - - public boolean INTERPOLATE_UV; - public boolean INTERPOLATE_RGB; - public boolean INTERPOLATE_ALPHA; - - // the power of 2 that tells how many pixels to interpolate - // for between exactly computed texture coordinates - private static final int DEFAULT_INTERP_POWER = 3; - private static int TEX_INTERP_POWER = DEFAULT_INTERP_POWER; - - // Vertex coordinates - private float[] x_array; - private float[] y_array; - private float[] z_array; - - private float[] camX; - private float[] camY; - private float[] camZ; - - // U,V coordinates - private float[] u_array; - private float[] v_array; - - // Vertex Intensity - private float[] r_array; - private float[] g_array; - private float[] b_array; - private float[] a_array; - - // vertex offsets - private int o0; - private int o1; - private int o2; - - /* rgb & a */ - private float r0; - private float r1; - private float r2; - private float g0; - private float g1; - private float g2; - private float b0; - private float b1; - private float b2; - private float a0; - private float a1; - private float a2; - - /* accurate texture uv coordinates */ - private float u0; - private float u1; - private float u2; - private float v0; - private float v1; - private float v2; - - /* deltas */ - //private float dx0; - //private float dx1; - private float dx2; - private float dy0; - private float dy1; - private float dy2; - private float dz0; - //private float dz1; - private float dz2; - - /* texture deltas */ - private float du0; - //private float du1; - private float du2; - private float dv0; - //private float dv1; - private float dv2; - - /* rgba deltas */ - private float dr0; - //private float dr1; - private float dr2; - private float dg0; - //private float dg1; - private float dg2; - private float db0; - //private float db1; - private float db2; - private float da0; - //private float da1; - private float da2; - - /* */ - private float uleft; - private float vleft; - private float uleftadd; - private float vleftadd; - - /* polyedge positions & adds */ - private float xleft; - private float xrght; - private float xadd1; - private float xadd2; - private float zleft; - private float zleftadd; - - /* rgba positions & adds */ - private float rleft; - private float gleft; - private float bleft; - private float aleft; - private float rleftadd; - private float gleftadd; - private float bleftadd; - private float aleftadd; - - /* other somewhat useful variables :) */ - private float dta; - //private float dta2; - private float temp; - private float width; - - /* integer poly UV adds */ - private int iuadd; - private int ivadd; - private int iradd; - private int igadd; - private int ibadd; - private int iaadd; - private float izadd; - - /* fill color */ - private int m_fill; - - /* draw flags */ - public int m_drawFlags; - - /* current poly number */ -// private int m_index; - - /** */ - private PGraphics3D parent; - - private boolean noDepthTest; - //private boolean argbSurface; - - /** */ - private boolean m_culling; - - /** */ - private boolean m_singleRight; - - /** - * True if using bilinear interpolation for textures. - * Always set to true. If this is ever changed (maybe with a hint()?) - * will need to write code for texture8/24/32 et al that will handle mixing - * the m_fill color in with the texture color. - */ - private boolean m_bilinear = true; // always set to true - - - // Vectors needed in accurate texture code - // We store them as class members to avoid too much code duplication - private float ax,ay,az; - private float bx,by,bz; - private float cx,cy,cz; - private float nearPlaneWidth; - private float nearPlaneHeight; - private float nearPlaneDepth; - private float xmult; - private float ymult; - // optimization vars...not pretty, but save a couple mults per pixel - private float newax,newbx,newcx; - // are we currently drawing the first piece of the triangle, - // or have we already done so? - private boolean firstSegment; - - - public PTriangle(PGraphics3D g) { - x_array = new float[3]; - y_array = new float[3]; - z_array = new float[3]; - u_array = new float[3]; - v_array = new float[3]; - r_array = new float[3]; - g_array = new float[3]; - b_array = new float[3]; - a_array = new float[3]; - - camX = new float[3]; - camY = new float[3]; - camZ = new float[3]; - - this.parent = g; - reset(); - } - - - /** - * Resets polygon attributes - */ - public void reset() { - // reset these in case PGraphics was resized - - SCREEN_WIDTH = parent.width; - SCREEN_HEIGHT = parent.height; - //SCREEN_WIDTH1 = SCREEN_WIDTH-1; - //SCREEN_HEIGHT1 = SCREEN_HEIGHT-1; - - m_pixels = parent.pixels; -// m_stencil = parent.stencil; - m_zbuffer = parent.zbuffer; - - noDepthTest = parent.hints[DISABLE_DEPTH_TEST]; - //argbSurface = parent.format == PConstants.ARGB; - - // other things to reset - - INTERPOLATE_UV = false; - INTERPOLATE_RGB = false; - INTERPOLATE_ALPHA = false; - //m_tImage = null; - m_texture = null; - m_drawFlags = 0; - } - - - /** - * Sets backface culling on/off - */ - public void setCulling(boolean tf) { - m_culling = tf; - } - - - /** - * Sets vertex coordinates for the triangle - */ - public void setVertices(float x0, float y0, float z0, - float x1, float y1, float z1, - float x2, float y2, float z2) { - x_array[0] = x0; - x_array[1] = x1; - x_array[2] = x2; - - y_array[0] = y0; - y_array[1] = y1; - y_array[2] = y2; - - z_array[0] = z0; - z_array[1] = z1; - z_array[2] = z2; - } - - - /** - * Pass camera-space coordinates for the triangle. - * Needed to render if hint(ENABLE_ACCURATE_TEXTURES) enabled. - * Generally this will not need to be called manually, - * currently called from PGraphics3D.render_triangles() - */ - public void setCamVertices(float x0, float y0, float z0, - float x1, float y1, float z1, - float x2, float y2, float z2) { - camX[0] = x0; - camX[1] = x1; - camX[2] = x2; - - camY[0] = y0; - camY[1] = y1; - camY[2] = y2; - - camZ[0] = z0; - camZ[1] = z1; - camZ[2] = z2; - } - - - /** - * Sets the UV coordinates of the texture - */ - public void setUV(float u0, float v0, - float u1, float v1, - float u2, float v2) { - // sets & scales uv texture coordinates to center of the pixel - u_array[0] = (u0 * F_TEX_WIDTH + 0.5f) * 65536f; - u_array[1] = (u1 * F_TEX_WIDTH + 0.5f) * 65536f; - u_array[2] = (u2 * F_TEX_WIDTH + 0.5f) * 65536f; - v_array[0] = (v0 * F_TEX_HEIGHT + 0.5f) * 65536f; - v_array[1] = (v1 * F_TEX_HEIGHT + 0.5f) * 65536f; - v_array[2] = (v2 * F_TEX_HEIGHT + 0.5f) * 65536f; - } - - - /** - * Sets vertex intensities in 0xRRGGBBAA format - */ - public void setIntensities(float r0, float g0, float b0, float a0, - float r1, float g1, float b1, float a1, - float r2, float g2, float b2, float a2) { - // Check if we need alpha or not? - if ((a0 != 1.0f) || (a1 != 1.0f) || (a2 != 1.0f)) { - INTERPOLATE_ALPHA = true; - a_array[0] = (a0 * 253f + 1.0f) * 65536f; - a_array[1] = (a1 * 253f + 1.0f) * 65536f; - a_array[2] = (a2 * 253f + 1.0f) * 65536f; - m_drawFlags|=R_ALPHA; - } else { - INTERPOLATE_ALPHA = false; - m_drawFlags&=~R_ALPHA; - } - - // Check if we need to interpolate the intensity values - if ((r0 != r1) || (r1 != r2)) { - INTERPOLATE_RGB = true; - m_drawFlags |= R_GOURAUD; - } else if ((g0 != g1) || (g1 != g2)) { - INTERPOLATE_RGB = true; - m_drawFlags |= R_GOURAUD; - } else if ((b0 != b1) || (b1 != b2)) { - INTERPOLATE_RGB = true; - m_drawFlags |= R_GOURAUD; - } else { - //m_fill = parent.filli; - m_drawFlags &=~ R_GOURAUD; - } - - // push values to arrays.. some extra scaling is added - // to prevent possible color "overflood" due to rounding errors - r_array[0] = (r0 * 253f + 1.0f) * 65536f; - r_array[1] = (r1 * 253f + 1.0f) * 65536f; - r_array[2] = (r2 * 253f + 1.0f) * 65536f; - - g_array[0] = (g0 * 253f + 1.0f) * 65536f; - g_array[1] = (g1 * 253f + 1.0f) * 65536f; - g_array[2] = (g2 * 253f + 1.0f) * 65536f; - - b_array[0] = (b0 * 253f + 1.0f) * 65536f; - b_array[1] = (b1 * 253f + 1.0f) * 65536f; - b_array[2] = (b2 * 253f + 1.0f) * 65536f; - - // for plain triangles - m_fill = 0xFF000000 | - ((int)(255*r0) << 16) | ((int)(255*g0) << 8) | (int)(255*b0); - } - - - /** - * Sets texture image used for the polygon - */ - public void setTexture(PImage image) { - //m_tImage = image; - m_texture = image.pixels; - TEX_WIDTH = image.width; - TEX_HEIGHT = image.height; - F_TEX_WIDTH = TEX_WIDTH-1; - F_TEX_HEIGHT = TEX_HEIGHT-1; - INTERPOLATE_UV = true; - - if (image.format == ARGB) { - m_drawFlags |= R_TEXTURE32; - } else if (image.format == RGB) { - m_drawFlags |= R_TEXTURE24; - } else if (image.format == ALPHA) { - m_drawFlags |= R_TEXTURE8; - } - } - - - /** - * - */ - public void setUV(float[] u, float[] v) { - if (m_bilinear) { - // sets & scales uv texture coordinates to edges of pixels - u_array[0] = (u[0] * F_TEX_WIDTH) * 65500f; - u_array[1] = (u[1] * F_TEX_WIDTH) * 65500f; - u_array[2] = (u[2] * F_TEX_WIDTH) * 65500f; - v_array[0] = (v[0] * F_TEX_HEIGHT) * 65500f; - v_array[1] = (v[1] * F_TEX_HEIGHT) * 65500f; - v_array[2] = (v[2] * F_TEX_HEIGHT) * 65500f; - } else { - // sets & scales uv texture coordinates to center of the pixel - u_array[0] = (u[0] * TEX_WIDTH) * 65500f; - u_array[1] = (u[1] * TEX_WIDTH) * 65500f; - u_array[2] = (u[2] * TEX_WIDTH) * 65500f; - v_array[0] = (v[0] * TEX_HEIGHT) * 65500f; - v_array[1] = (v[1] * TEX_HEIGHT) * 65500f; - v_array[2] = (v[2] * TEX_HEIGHT) * 65500f; - } - } - - -// public void setIndex(int index) { -// m_index = index; -// } - - - /** - * Renders the polygon - */ - public void render() { - float x0, x1, x2; - float z0, z1, z2; - - float y0 = y_array[0]; - float y1 = y_array[1]; - float y2 = y_array[2]; - - //System.out.println(PApplet.hex(m_drawFlags)); - - // For accurate texture interpolation, need to mark whether - // we've already pre-calculated for the triangle - firstSegment = true; - - // do backface culling? - if (m_culling) { - x0 = x_array[0]; - if ((x_array[2]-x0)*(y1-y0) < (x_array[1]-x0)*(y2-y0)) - return; - } - - /* get vertex order from top -> down */ - if (y0 < y1) { - if (y2 < y1) { - if (y2 < y0) { // 2,0,1 - o0 = 2; - o1 = 0; - o2 = 1; - } else { // 0,2,1 - o0 = 0; - o1 = 2; - o2 = 1; - } - } else { // 0,1,2 - o0 = 0; - o1 = 1; - o2 = 2; - } - } else { - if (y2 > y1) { - if (y2 < y0) { // 1,2,0 - o0 = 1; - o1 = 2; - o2 = 0; - } else { // 1,0,2 - o0 = 1; - o1 = 0; - o2 = 2; - } - } else { // 2,1,0 - o0 = 2; - o1 = 1; - o2 = 0; - } - } - - /** - * o0 = "top" vertex offset - * o1 = "mid" vertex offset - * o2 = "bot" vertex offset - */ - - y0 = y_array[o0]; - int yi0 = (int) (y0 + PIXEL_CENTER); - if (yi0 > SCREEN_HEIGHT) { - return; - } else if (yi0 < 0) { - yi0 = 0; - } - - y2 = y_array[o2]; - int yi2 = (int) (y2 + PIXEL_CENTER); - if (yi2 < 0) { - return; - } else if (yi2 > SCREEN_HEIGHT) { - yi2 = SCREEN_HEIGHT; - } - - // Does the poly actually cross a scanline? - if (yi2 > yi0) { - x0 = x_array[o0]; - x1 = x_array[o1]; - x2 = x_array[o2]; - - // get mid Y and clip it - y1 = y_array[o1]; - int yi1 = (int) (y1 + PIXEL_CENTER); - if (yi1 < 0) - yi1 = 0; - if (yi1 > SCREEN_HEIGHT) - yi1 = SCREEN_HEIGHT; - - // calculate deltas etc. - dx2 = x2 - x0; - dy0 = y1 - y0; - dy2 = y2 - y0; - xadd2 = dx2 / dy2; // xadd for "single" edge - temp = dy0 / dy2; - width = temp * dx2 + x0 - x1; - - // calculate alpha blend interpolation - if (INTERPOLATE_ALPHA) { - a0 = a_array[o0]; - a1 = a_array[o1]; - a2 = a_array[o2]; - da0 = a1-a0; - da2 = a2-a0; - iaadd = (int) ((temp * da2 - da0) / width); // alpha add - } - - // calculate intensity interpolation - if (INTERPOLATE_RGB) { - r0 = r_array[o0]; - r1 = r_array[o1]; - r2 = r_array[o2]; - - g0 = g_array[o0]; - g1 = g_array[o1]; - g2 = g_array[o2]; - - b0 = b_array[o0]; - b1 = b_array[o1]; - b2 = b_array[o2]; - - dr0 = r1-r0; - dg0 = g1-g0; - db0 = b1-b0; - - dr2 = r2-r0; - dg2 = g2-g0; - db2 = b2-b0; - - iradd = (int) ((temp * dr2 - dr0) / width); // r add - igadd = (int) ((temp * dg2 - dg0) / width); // g add - ibadd = (int) ((temp * db2 - db0) / width); // b add - } - - // calculate UV interpolation - if (INTERPOLATE_UV) { - u0 = u_array[o0]; - u1 = u_array[o1]; - u2 = u_array[o2]; - v0 = v_array[o0]; - v1 = v_array[o1]; - v2 = v_array[o2]; - du0 = u1-u0; - dv0 = v1-v0; - du2 = u2-u0; - dv2 = v2-v0; - iuadd = (int) ((temp * du2 - du0) / width); // u add - ivadd = (int) ((temp * dv2 - dv0) / width); // v add - } - - z0 = z_array[o0]; - z1 = z_array[o1]; - z2 = z_array[o2]; - dz0 = z1-z0; - dz2 = z2-z0; - izadd = (temp * dz2 - dz0) / width; - - // draw the upper poly segment if it's visible - if (yi1 > yi0) { - dta = (yi0 + PIXEL_CENTER) - y0; - xadd1 = (x1 - x0) / dy0; - - // we can determine which side is "single" side - // by comparing left/right edge adds - if (xadd2 > xadd1) { - xleft = x0 + dta * xadd1; - xrght = x0 + dta * xadd2; - zleftadd = dz0 / dy0; - zleft = dta*zleftadd+z0; - - if (INTERPOLATE_UV) { - uleftadd = du0 / dy0; - vleftadd = dv0 / dy0; - uleft = dta*uleftadd+u0; - vleft = dta*vleftadd+v0; - } - - if (INTERPOLATE_RGB) { - rleftadd = dr0 / dy0; - gleftadd = dg0 / dy0; - bleftadd = db0 / dy0; - rleft = dta*rleftadd+r0; - gleft = dta*gleftadd+g0; - bleft = dta*bleftadd+b0; - } - - if (INTERPOLATE_ALPHA) { - aleftadd = da0 / dy0; - aleft = dta*aleftadd+a0; - - if (m_drawFlags == R_ALPHA) { - drawsegment_plain_alpha(xadd1,xadd2, yi0,yi1); - } else if (m_drawFlags == (R_GOURAUD + R_ALPHA)) { - drawsegment_gouraud_alpha(xadd1,xadd2, yi0,yi1); - } else if (m_drawFlags == (R_TEXTURE8 + R_ALPHA)) { - drawsegment_texture8_alpha(xadd1,xadd2, yi0,yi1); - } else if (m_drawFlags == (R_TEXTURE24 + R_ALPHA)) { - drawsegment_texture24_alpha(xadd1,xadd2, yi0,yi1); - } else if (m_drawFlags == (R_TEXTURE32 + R_ALPHA)) { - drawsegment_texture32_alpha(xadd1,xadd2, yi0,yi1); - } else if (m_drawFlags == (R_GOURAUD + R_TEXTURE8 + R_ALPHA)) { - drawsegment_gouraud_texture8_alpha(xadd1,xadd2, yi0,yi1); - } else if (m_drawFlags == (R_GOURAUD + R_TEXTURE24 + R_ALPHA)) { - drawsegment_gouraud_texture24_alpha(xadd1,xadd2, yi0,yi1); - } else if (m_drawFlags == (R_GOURAUD + R_TEXTURE32 + R_ALPHA)) { - drawsegment_gouraud_texture32_alpha(xadd1,xadd2, yi0,yi1); - } - } else { - if (m_drawFlags == 0) { - drawsegment_plain(xadd1,xadd2, yi0,yi1); - } else if (m_drawFlags == R_GOURAUD) { - drawsegment_gouraud(xadd1,xadd2, yi0,yi1); - } else if (m_drawFlags == R_TEXTURE8) { - drawsegment_texture8(xadd1,xadd2, yi0,yi1); - } else if (m_drawFlags == R_TEXTURE24) { - drawsegment_texture24(xadd1,xadd2, yi0,yi1); - } else if (m_drawFlags == R_TEXTURE32) { - drawsegment_texture32(xadd1,xadd2, yi0,yi1); - } else if (m_drawFlags == (R_GOURAUD + R_TEXTURE8)) { - drawsegment_gouraud_texture8(xadd1,xadd2, yi0,yi1); - } else if (m_drawFlags == (R_GOURAUD + R_TEXTURE24)) { - drawsegment_gouraud_texture24(xadd1,xadd2, yi0,yi1); - } else if (m_drawFlags == (R_GOURAUD + R_TEXTURE32)) { - drawsegment_gouraud_texture32(xadd1,xadd2, yi0,yi1); - } - } - m_singleRight = true; - } else { - xleft = x0 + dta * xadd2; - xrght = x0 + dta * xadd1; - zleftadd = dz2 / dy2; - zleft = dta*zleftadd+z0; - // - if (INTERPOLATE_UV) { - uleftadd = du2 / dy2; - vleftadd = dv2 / dy2; - uleft = dta*uleftadd+u0; - vleft = dta*vleftadd+v0; - } - - // - if (INTERPOLATE_RGB) { - rleftadd = dr2 / dy2; - gleftadd = dg2 / dy2; - bleftadd = db2 / dy2; - rleft = dta*rleftadd+r0; - gleft = dta*gleftadd+g0; - bleft = dta*bleftadd+b0; - } - - - if (INTERPOLATE_ALPHA) { - aleftadd = da2 / dy2; - aleft = dta*aleftadd+a0; - - if (m_drawFlags == R_ALPHA) { - drawsegment_plain_alpha(xadd2, xadd1, yi0,yi1); - } else if (m_drawFlags == (R_GOURAUD + R_ALPHA)) { - drawsegment_gouraud_alpha(xadd2, xadd1, yi0,yi1); - } else if (m_drawFlags == (R_TEXTURE8 + R_ALPHA)) { - drawsegment_texture8_alpha(xadd2, xadd1, yi0,yi1); - } else if (m_drawFlags == (R_TEXTURE24 + R_ALPHA)) { - drawsegment_texture24_alpha(xadd2, xadd1, yi0,yi1); - } else if (m_drawFlags == (R_TEXTURE32 + R_ALPHA)) { - drawsegment_texture32_alpha(xadd2, xadd1, yi0,yi1); - } else if (m_drawFlags == (R_GOURAUD + R_TEXTURE8 + R_ALPHA)) { - drawsegment_gouraud_texture8_alpha(xadd2, xadd1, yi0,yi1); - } else if (m_drawFlags == (R_GOURAUD + R_TEXTURE24 + R_ALPHA)) { - drawsegment_gouraud_texture24_alpha(xadd2, xadd1, yi0,yi1); - } else if (m_drawFlags == (R_GOURAUD + R_TEXTURE32 + R_ALPHA)) { - drawsegment_gouraud_texture32_alpha(xadd2, xadd1, yi0,yi1); - } - } else { - if (m_drawFlags == 0) { - drawsegment_plain(xadd2, xadd1, yi0,yi1); - } else if (m_drawFlags == R_GOURAUD) { - drawsegment_gouraud(xadd2, xadd1, yi0,yi1); - } else if (m_drawFlags == R_TEXTURE8) { - drawsegment_texture8(xadd2, xadd1, yi0,yi1); - } else if (m_drawFlags == R_TEXTURE24) { - drawsegment_texture24(xadd2, xadd1, yi0,yi1); - } else if (m_drawFlags == R_TEXTURE32) { - drawsegment_texture32(xadd2, xadd1, yi0,yi1); - } else if (m_drawFlags == (R_GOURAUD + R_TEXTURE8)) { - drawsegment_gouraud_texture8(xadd2, xadd1, yi0,yi1); - } else if (m_drawFlags == (R_GOURAUD + R_TEXTURE24)) { - drawsegment_gouraud_texture24(xadd2, xadd1, yi0,yi1); - } else if (m_drawFlags == (R_GOURAUD + R_TEXTURE32)) { - drawsegment_gouraud_texture32(xadd2, xadd1, yi0,yi1); - } - } - m_singleRight = false; - } - - // if bottom segment height is zero, return - if (yi2 == yi1) return; - - // calculate xadd 1 - dy1 = y2 - y1; - xadd1 = (x2 - x1) / dy1; - - } else { - // top seg height was zero, calculate & clip single edge X - dy1 = y2 - y1; - xadd1 = (x2 - x1) / dy1; - - // which edge is left? - if (xadd2 < xadd1) { - xrght = ((yi1 + PIXEL_CENTER) - y0) * xadd2 + x0; - m_singleRight = true; - } else { - dta = (yi1 + PIXEL_CENTER) - y0; - xleft = dta * xadd2 + x0; - zleftadd = dz2 / dy2; - zleft = dta * zleftadd + z0; - - if (INTERPOLATE_UV) { - uleftadd = du2 / dy2; - vleftadd = dv2 / dy2; - uleft = dta * uleftadd + u0; - vleft = dta * vleftadd + v0; - } - - if (INTERPOLATE_RGB) { - rleftadd = dr2 / dy2; - gleftadd = dg2 / dy2; - bleftadd = db2 / dy2; - rleft = dta * rleftadd + r0; - gleft = dta * gleftadd + g0; - bleft = dta * bleftadd + b0; - } - - // - if (INTERPOLATE_ALPHA) { - aleftadd = da2 / dy2; - aleft = dta * aleftadd + a0; - } - m_singleRight = false; - } - } - - // draw the lower segment - if (m_singleRight) { - dta = (yi1 + PIXEL_CENTER) - y1; - xleft = dta * xadd1 + x1; - zleftadd = (z2 - z1) / dy1; - zleft = dta * zleftadd + z1; - - if (INTERPOLATE_UV) { - uleftadd = (u2 - u1) / dy1; - vleftadd = (v2 - v1) / dy1; - uleft = dta * uleftadd + u1; - vleft = dta * vleftadd + v1; - } - - if (INTERPOLATE_RGB) { - rleftadd = (r2 - r1) / dy1; - gleftadd = (g2 - g1) / dy1; - bleftadd = (b2 - b1) / dy1; - rleft = dta * rleftadd + r1; - gleft = dta * gleftadd + g1; - bleft = dta * bleftadd + b1; - } - - if (INTERPOLATE_ALPHA) { - aleftadd = (a2 - a1) / dy1; - aleft = dta * aleftadd + a1; - - if (m_drawFlags == R_ALPHA) { - drawsegment_plain_alpha(xadd1, xadd2, yi1,yi2); - } else if (m_drawFlags == (R_GOURAUD + R_ALPHA)) { - drawsegment_gouraud_alpha(xadd1, xadd2, yi1,yi2); - } else if (m_drawFlags == (R_TEXTURE8 + R_ALPHA)) { - drawsegment_texture8_alpha(xadd1, xadd2, yi1,yi2); - } else if (m_drawFlags == (R_TEXTURE24 + R_ALPHA)) { - drawsegment_texture24_alpha(xadd1, xadd2, yi1,yi2); - } else if (m_drawFlags == (R_TEXTURE32 + R_ALPHA)) { - drawsegment_texture32_alpha(xadd1, xadd2, yi1,yi2); - } else if (m_drawFlags == (R_GOURAUD + R_TEXTURE8 + R_ALPHA)) { - drawsegment_gouraud_texture8_alpha(xadd1, xadd2, yi1,yi2); - } else if (m_drawFlags == (R_GOURAUD + R_TEXTURE24 + R_ALPHA)) { - drawsegment_gouraud_texture24_alpha(xadd1, xadd2, yi1,yi2); - } else if (m_drawFlags == (R_GOURAUD + R_TEXTURE32 + R_ALPHA)) { - drawsegment_gouraud_texture32_alpha(xadd1, xadd2, yi1,yi2); - } - } else { - if (m_drawFlags == 0) { - drawsegment_plain(xadd1, xadd2, yi1,yi2); - } else if (m_drawFlags == R_GOURAUD) { - drawsegment_gouraud(xadd1, xadd2, yi1,yi2); - } else if (m_drawFlags == R_TEXTURE8) { - drawsegment_texture8(xadd1, xadd2, yi1,yi2); - } else if (m_drawFlags == R_TEXTURE24) { - drawsegment_texture24(xadd1, xadd2, yi1,yi2); - } else if (m_drawFlags == R_TEXTURE32) { - drawsegment_texture32(xadd1, xadd2, yi1,yi2); - } else if (m_drawFlags == (R_GOURAUD + R_TEXTURE8)) { - drawsegment_gouraud_texture8(xadd1, xadd2, yi1,yi2); - } else if (m_drawFlags == (R_GOURAUD + R_TEXTURE24)) { - drawsegment_gouraud_texture24(xadd1, xadd2, yi1,yi2); - } else if (m_drawFlags == (R_GOURAUD + R_TEXTURE32)) { - drawsegment_gouraud_texture32(xadd1, xadd2, yi1,yi2); - } - } - } else { - xrght = ((yi1 + PIXEL_CENTER)- y1) * xadd1 + x1; - - if (INTERPOLATE_ALPHA) { - if (m_drawFlags == R_ALPHA) { - drawsegment_plain_alpha(xadd2, xadd1, yi1,yi2); - } else if (m_drawFlags == (R_GOURAUD + R_ALPHA)) { - drawsegment_gouraud_alpha(xadd2, xadd1, yi1,yi2); - } else if (m_drawFlags == (R_TEXTURE8 + R_ALPHA)) { - drawsegment_texture8_alpha(xadd2, xadd1, yi1,yi2); - } else if (m_drawFlags == (R_TEXTURE24 + R_ALPHA)) { - drawsegment_texture24_alpha(xadd2, xadd1, yi1,yi2); - } else if (m_drawFlags == (R_TEXTURE32 + R_ALPHA)) { - drawsegment_texture32_alpha(xadd2, xadd1, yi1,yi2); - } else if (m_drawFlags == (R_GOURAUD + R_TEXTURE8 + R_ALPHA)) { - drawsegment_gouraud_texture8_alpha(xadd2, xadd1, yi1,yi2); - } else if (m_drawFlags == (R_GOURAUD + R_TEXTURE24 + R_ALPHA)) { - drawsegment_gouraud_texture24_alpha(xadd2, xadd1, yi1,yi2); - } else if (m_drawFlags == (R_GOURAUD + R_TEXTURE32 + R_ALPHA)) { - drawsegment_gouraud_texture32_alpha(xadd2, xadd1, yi1,yi2); - } - } else { - if (m_drawFlags == 0) { - drawsegment_plain(xadd2, xadd1, yi1,yi2); - } else if (m_drawFlags == R_GOURAUD) { - drawsegment_gouraud(xadd2, xadd1, yi1,yi2); - } else if (m_drawFlags == R_TEXTURE8) { - drawsegment_texture8(xadd2, xadd1, yi1,yi2); - } else if (m_drawFlags == R_TEXTURE24) { - drawsegment_texture24(xadd2, xadd1, yi1,yi2); - } else if (m_drawFlags == R_TEXTURE32) { - drawsegment_texture32(xadd2, xadd1, yi1,yi2); - } else if (m_drawFlags == (R_GOURAUD + R_TEXTURE8)) { - drawsegment_gouraud_texture8(xadd2, xadd1, yi1,yi2); - } else if (m_drawFlags == (R_GOURAUD + R_TEXTURE24)) { - drawsegment_gouraud_texture24(xadd2, xadd1, yi1,yi2); - } else if (m_drawFlags == (R_GOURAUD + R_TEXTURE32)) { - drawsegment_gouraud_texture32(xadd2, xadd1, yi1,yi2); - } - } - } - } - } - - - /** - * Accurate texturing code by ewjordan@gmail.com, April 14, 2007 - * The getColorFromTexture() function should be inlined and optimized - * so that most of the heavy lifting happens outside the per-pixel loop. - * The unoptimized generic algorithm looks like this (unless noted, - * all of these variables are vectors, so the actual code will look messier): - * - * p = camera space vector where u == 0, v == 0; - * m = vector from p to location where u == TEX_WIDTH; - * n = vector from p to location where v == TEX_HEIGHT; - * - * A = p cross n; - * B = m cross p; - * C = n cross m; - * A *= texture.width; - * B *= texture.height; - * - * for (scanlines in triangle){ - * float a = S * A; - * float b = S * B; - * float c = S * C; - * for (pixels in scanline){ - * int u = a/c; - * int v = b/c; - * color = texture[v * texture.width + u]; - * a += A.x; - * b += B.x; - * c += C.x; - * } - * } - * - * We don't use this exact algorithm here, however, because of the extra - * overhead from the divides. Instead we compute the exact u and v (labelled - * iu and iv in the code) at the start of each scanline and we perform a - * linear interpolation for every linearInterpLength = 1 << TEX_INTERP_POWER - * pixels. This means that we only perform the true calculation once in a - * while, and the rest of the time the algorithm functions exactly as in the - * fast inaccurate case, at least in theory. In practice, even if we set - * linearInterpLength very high we still incur some speed penalty due to the - * preprocessing that must take place per-scanline. A similar method could - * be applied per scanline to avoid this, but it would only be worthwhile in - * the case that we never compute more than one exact calculation per - * scanline. If we want something like this, however, it would be best to - * create another mode of calculation called "constant-z" interpolation, - * which could be used for things like floors and ceilings where the - * distance from the camera plane never changes over the course of a - * scanline. We could also add the vertical analogue for drawing vertical - * walls. In any case, these are not critical as the current algorithm runs - * fairly well, perhaps ~10% slower than the default perspective-less one. - */ - - /** - * Solve for camera space coordinates of critical texture points and - * set up per-triangle variables for accurate texturing. - * Sets all class variables relevant to accurate texture computation - * Should be called once per triangle - checks firstSegment to see if - * we've already called. - */ - private boolean precomputeAccurateTexturing() { - // rescale u/v_array values when inverting matrix and performing other calcs - float myFact = 65500.0f; - float myFact2 = 65500.0f; - - //Matrix inversion to find affine transform between (u,v,(1)) -> (x,y,z) - - // OPTIMIZE: There should be a way to avoid the inversion here, which is - // quite expensive (~150 mults). Also it might crap out due to loss of - // precision depending on the scaling of the u/v_arrays. Nothing clever - // currently happens if the inversion fails, since this means the - // transformation is degenerate - we just pass false back to the caller - // and let it handle the situation. [There is no good solution to this - // case from within this function, since the way the calculation proceeds - // presumes a non-degenerate transformation matrix between camera space - // and uv space] - - // Obvious optimization: if the vertices are actually at the appropriate - // texture coordinates (e.g. (0,0), (TEX_WIDTH,0), and (0,TEX_HEIGHT)) - // then we can immediately return the right solution without the inversion. - // This is fairly common, so could speed up many cases of drawing. - // [not implemented] - - // Furthermore, we could cache the p,resultT0,result0T vectors in the - // triangle's basis, since we could then do a look-up and generate the - // resulting coordinates very simply. This would include the above - // optimization as a special case - we could pre-populate the cache with - // special cases like that and dynamically add more. The idea here is that - // most people simply paste textures onto triangles and move the triangles - // from frame to frame, so any per-triangle-per-frame code is likely - // wasted effort. [not implemented] - - // Note: o0, o1, and o2 vary depending on view angle to triangle, - // but p, n, and m should not depend on ordering differences - - if (firstSegment){ - PMatrix3D myMatrix = - new PMatrix3D(u_array[o0]/myFact, v_array[o0]/myFact2, 1, 0, - u_array[o1]/myFact, v_array[o1]/myFact2, 1, 0, - u_array[o2]/myFact, v_array[o2]/myFact2, 1, 0, - 0, 0, 0, 1); - // A 3x3 inversion would be more efficient here, - // given that the fourth r/c are unity - myMatrix.invert(); - // if the matrix inversion had trouble, let the caller know - if (myMatrix == null) return false; - - float m00, m01, m02, m10, m11, m12, m20, m21, m22; - m00 = myMatrix.m00*camX[o0]+myMatrix.m01*camX[o1]+myMatrix.m02*camX[o2]; - m01 = myMatrix.m10*camX[o0]+myMatrix.m11*camX[o1]+myMatrix.m12*camX[o2]; - m02 = myMatrix.m20*camX[o0]+myMatrix.m21*camX[o1]+myMatrix.m22*camX[o2]; - m10 = myMatrix.m00*camY[o0]+myMatrix.m01*camY[o1]+myMatrix.m02*camY[o2]; - m11 = myMatrix.m10*camY[o0]+myMatrix.m11*camY[o1]+myMatrix.m12*camY[o2]; - m12 = myMatrix.m20*camY[o0]+myMatrix.m21*camY[o1]+myMatrix.m22*camY[o2]; - m20 = -(myMatrix.m00*camZ[o0]+myMatrix.m01*camZ[o1]+myMatrix.m02*camZ[o2]); - m21 = -(myMatrix.m10*camZ[o0]+myMatrix.m11*camZ[o1]+myMatrix.m12*camZ[o2]); - m22 = -(myMatrix.m20*camZ[o0]+myMatrix.m21*camZ[o1]+myMatrix.m22*camZ[o2]); - - float px = m02; - float py = m12; - float pz = m22; - // Bugfix: possibly we should use F_TEX_WIDTH/HEIGHT instead? - // Seems to read off end of array in that case, though... - float resultT0x = m00*TEX_WIDTH+m02; - float resultT0y = m10*TEX_WIDTH+m12; - float resultT0z = m20*TEX_WIDTH+m22; - float result0Tx = m01*TEX_HEIGHT+m02; - float result0Ty = m11*TEX_HEIGHT+m12; - float result0Tz = m21*TEX_HEIGHT+m22; - float mx = resultT0x-m02; - float my = resultT0y-m12; - float mz = resultT0z-m22; - float nx = result0Tx-m02; - float ny = result0Ty-m12; - float nz = result0Tz-m22; - - //avec = p x n - ax = (py*nz-pz*ny)*TEX_WIDTH; //F_TEX_WIDTH/HEIGHT? - ay = (pz*nx-px*nz)*TEX_WIDTH; - az = (px*ny-py*nx)*TEX_WIDTH; - //bvec = m x p - bx = (my*pz-mz*py)*TEX_HEIGHT; - by = (mz*px-mx*pz)*TEX_HEIGHT; - bz = (mx*py-my*px)*TEX_HEIGHT; - //cvec = n x m - cx = ny*mz-nz*my; - cy = nz*mx-nx*mz; - cz = nx*my-ny*mx; - } - - nearPlaneWidth = parent.rightScreen-parent.leftScreen; - nearPlaneHeight = parent.topScreen-parent.bottomScreen; - nearPlaneDepth = parent.nearPlane; - // one pixel width in nearPlane coordinates - xmult = nearPlaneWidth / SCREEN_WIDTH; - ymult = nearPlaneHeight / SCREEN_HEIGHT; - // Extra scalings to map screen plane units to pixel units - newax = ax*xmult; - newbx = bx*xmult; - newcx = cx*xmult; - return true; - } - - - /** - * Set the power of two used for linear interpolation of texture coordinates. - * A true texture coordinate is computed every 2^pwr pixels along a scanline. - */ - static public void setInterpPower(int pwr) { - //Currently must be invoked from P5 as PTriangle.setInterpPower(...) - TEX_INTERP_POWER = pwr; - } - - - /** - * Plain color - */ - private void drawsegment_plain(float leftadd, - float rghtadd, - int ytop, - int ybottom) { - ytop *= SCREEN_WIDTH; - ybottom *= SCREEN_WIDTH; -// int f = m_fill; -// int p = m_index; - - while (ytop < ybottom) { - int xstart = (int) (xleft + PIXEL_CENTER); - if (xstart < 0) - xstart = 0; - - int xend = (int) (xrght + PIXEL_CENTER); - if (xend > SCREEN_WIDTH) - xend = SCREEN_WIDTH; - - float xdiff = (xstart + PIXEL_CENTER) - xleft; - float iz = izadd * xdiff + zleft; - xstart+=ytop; - xend+=ytop; - - for ( ; xstart < xend; xstart++ ) { - if (noDepthTest || (iz <= m_zbuffer[xstart])) { - m_zbuffer[xstart] = iz; - m_pixels[xstart] = m_fill; -// m_stencil[xstart] = p; - } - iz+=izadd; - } - - ytop+=SCREEN_WIDTH; - xleft+=leftadd; - xrght+=rghtadd; - zleft+=zleftadd; - } - } - - - /** - * Plain color, interpolated alpha - */ - private void drawsegment_plain_alpha(float leftadd, - float rghtadd, - int ytop, - int ybottom) { - ytop *= SCREEN_WIDTH; - ybottom *= SCREEN_WIDTH; - - int pr = m_fill & 0xFF0000; - int pg = m_fill & 0xFF00; - int pb = m_fill & 0xFF; - -// int p = m_index; - float iaf = iaadd; - - while (ytop < ybottom) { - int xstart = (int) (xleft + PIXEL_CENTER); - if (xstart < 0) - xstart = 0; - - int xend = (int) (xrght + PIXEL_CENTER); - if (xend > SCREEN_WIDTH) - xend = SCREEN_WIDTH; - - float xdiff = (xstart + PIXEL_CENTER) - xleft; - float iz = izadd * xdiff + zleft; - int ia = (int) (iaf * xdiff + aleft); - xstart += ytop; - xend += ytop; - - //int ma0 = 0xFF000000; - - for ( ; xstart < xend; xstart++ ) { - if (noDepthTest || (iz <= m_zbuffer[xstart])) { - // don't set zbuffer when not fully opaque - //m_zbuffer[xstart] = iz; - - int alpha = ia >> 16; - int mr0 = m_pixels[xstart]; - /* - if (argbSurface) { - ma0 = (((mr0 >>> 24) * alpha) << 16) & 0xFF000000; - if (ma0 == 0) ma0 = alpha << 24; - } - */ - int mg0 = mr0 & 0xFF00; - int mb0 = mr0 & 0xFF; - mr0 &= 0xFF0000; - - mr0 = mr0 + (((pr - mr0) * alpha) >> 8); - mg0 = mg0 + (((pg - mg0) * alpha) >> 8); - mb0 = mb0 + (((pb - mb0) * alpha) >> 8); - - m_pixels[xstart] = 0xFF000000 | - (mr0 & 0xFF0000) | (mg0 & 0xFF00) | (mb0 & 0xFF); - -// m_stencil[xstart] = p; - } - iz += izadd; - ia += iaadd; - } - ytop += SCREEN_WIDTH; - xleft += leftadd; - xrght += rghtadd; - zleft += zleftadd; - } - } - - - /** - * RGB gouraud - */ - private void drawsegment_gouraud(float leftadd, - float rghtadd, - int ytop, - int ybottom) { - float irf = iradd; - float igf = igadd; - float ibf = ibadd; - - ytop *= SCREEN_WIDTH; - ybottom *= SCREEN_WIDTH; -// int p = m_index; - - while (ytop < ybottom) { - int xstart = (int) (xleft + PIXEL_CENTER); - if (xstart < 0) - xstart = 0; - - int xend = (int) (xrght + PIXEL_CENTER); - if (xend > SCREEN_WIDTH) - xend = SCREEN_WIDTH; - - float xdiff = (xstart + PIXEL_CENTER) - xleft; - int ir = (int) (irf * xdiff + rleft); - int ig = (int) (igf * xdiff + gleft); - int ib = (int) (ibf * xdiff + bleft); - float iz = izadd * xdiff + zleft; - - xstart+=ytop; - xend+=ytop; - - for ( ; xstart < xend; xstart++ ) { - if (noDepthTest || (iz <= m_zbuffer[xstart])) { - m_zbuffer[xstart] = iz; - m_pixels[xstart] = 0xFF000000 | - ((ir & 0xFF0000) | ((ig >> 8) & 0xFF00) | (ib >> 16)); -// m_stencil[xstart] = p; - } - - ir+=iradd; - ig+=igadd; - ib+=ibadd; - iz+=izadd; - } - - ytop+=SCREEN_WIDTH; - xleft+=leftadd; - xrght+=rghtadd; - rleft+=rleftadd; - gleft+=gleftadd; - bleft+=bleftadd; - zleft+=zleftadd; - } - } - - - /** - * RGB gouraud + interpolated alpha - */ - private void drawsegment_gouraud_alpha(float leftadd, - float rghtadd, - int ytop, - int ybottom) { - ytop *= SCREEN_WIDTH; - ybottom *= SCREEN_WIDTH; -// int p = m_index; - - float irf = iradd; - float igf = igadd; - float ibf = ibadd; - float iaf = iaadd; - - while (ytop < ybottom) { - int xstart = (int) (xleft + PIXEL_CENTER); - if (xstart < 0) - xstart = 0; - int xend = (int) (xrght + PIXEL_CENTER); - if (xend > SCREEN_WIDTH) - xend = SCREEN_WIDTH; - float xdiff = (xstart + PIXEL_CENTER) - xleft; - - int ir = (int) (irf * xdiff + rleft); - int ig = (int) (igf * xdiff + gleft); - int ib = (int) (ibf * xdiff + bleft); - int ia = (int) (iaf * xdiff + aleft); - float iz = izadd * xdiff + zleft; - - xstart+=ytop; - xend+=ytop; - - for ( ; xstart < xend; xstart++ ) { - if (noDepthTest || (iz <= m_zbuffer[xstart])) { - //m_zbuffer[xstart] = iz; - - // - int red = (ir & 0xFF0000); - int grn = (ig >> 8) & 0xFF00; - int blu = (ib >> 16); - - // get buffer pixels - int bb = m_pixels[xstart]; - int br = (bb & 0xFF0000); // 0x00FF0000 - int bg = (bb & 0xFF00); // 0x0000FF00 - bb = (bb & 0xFF); // 0x000000FF - - // blend alpha - int al = ia >> 16; - - // - m_pixels[xstart] = 0xFF000000 | - ((br + (((red - br) * al) >> 8)) & 0xFF0000) | - ((bg + (((grn - bg) * al) >> 8)) & 0xFF00) | - ((bb + (((blu - bb) * al) >> 8)) & 0xFF); -// m_stencil[xstart] = p; - } - - // - ir+=iradd; - ig+=igadd; - ib+=ibadd; - ia+=iaadd; - iz+=izadd; - } - - ytop+=SCREEN_WIDTH; - xleft+=leftadd; - xrght+=rghtadd; - rleft+=rleftadd; - gleft+=gleftadd; - bleft+=bleftadd; - aleft+=aleftadd; - zleft+=zleftadd; - } - } - - - /** - * 8-bit plain texture - */ - - //THIS IS MESSED UP, NEED TO GRAB ORIGINAL VERSION!!! - private void drawsegment_texture8(float leftadd, - float rghtadd, - int ytop, - int ybottom) { - // Accurate texture mode added - comments stripped from dupe code, - // see drawsegment_texture24() for details - int ypixel = ytop; - int lastRowStart = m_texture.length - TEX_WIDTH - 2; - boolean accurateMode = parent.hints[ENABLE_ACCURATE_TEXTURES]; - float screenx = 0; float screeny = 0; float screenz = 0; - float a = 0; float b = 0; float c = 0; - int linearInterpPower = TEX_INTERP_POWER; - int linearInterpLength = 1 << linearInterpPower; - if (accurateMode) { - // see if the precomputation goes well, if so finish the setup - if (precomputeAccurateTexturing()) { - newax *= linearInterpLength; - newbx *= linearInterpLength; - newcx *= linearInterpLength; - screenz = nearPlaneDepth; - firstSegment = false; - } else{ - // if the matrix inversion screwed up, revert to normal rendering - // (something is degenerate) - accurateMode = false; - } - } - ytop *= SCREEN_WIDTH; - ybottom *= SCREEN_WIDTH; -// int p = m_index; - - float iuf = iuadd; - float ivf = ivadd; - - int red = m_fill & 0xFF0000; - int grn = m_fill & 0xFF00; - int blu = m_fill & 0xFF; - - while (ytop < ybottom) { - int xstart = (int) (xleft + PIXEL_CENTER); - if (xstart < 0) - xstart = 0; - - int xpixel = xstart;//accurate mode - - int xend = (int) (xrght + PIXEL_CENTER); - if (xend > SCREEN_WIDTH) - xend = SCREEN_WIDTH; - - float xdiff = (xstart + PIXEL_CENTER) - xleft; - int iu = (int) (iuf * xdiff + uleft); - int iv = (int) (ivf * xdiff + vleft); - float iz = izadd * xdiff + zleft; - - xstart+=ytop; - xend+=ytop; - - if (accurateMode){ - screenx = xmult*(xpixel+.5f-(SCREEN_WIDTH/2.0f)); - screeny = ymult*(ypixel+.5f-(SCREEN_HEIGHT/2.0f)); - a = screenx*ax+screeny*ay+screenz*az; - b = screenx*bx+screeny*by+screenz*bz; - c = screenx*cx+screeny*cy+screenz*cz; - } - boolean goingIn = ( (newcx > 0) == (c > 0) )?false:true; - int interpCounter = 0; - int deltaU = 0; int deltaV = 0; - float fu = 0; float fv = 0; - float oldfu = 0; float oldfv = 0; - - if (accurateMode && goingIn) { - int rightOffset = (xend-xstart-1)%linearInterpLength; - int leftOffset = linearInterpLength-rightOffset; - float rightOffset2 = rightOffset / ((float)linearInterpLength); - float leftOffset2 = leftOffset / ((float)linearInterpLength); - interpCounter = leftOffset; - float ao = a-leftOffset2*newax; - float bo = b-leftOffset2*newbx; - float co = c-leftOffset2*newcx; - float oneoverc = 65536.0f/co; - oldfu = (ao*oneoverc); oldfv = (bo*oneoverc); - a += rightOffset2*newax; - b += rightOffset2*newbx; - c += rightOffset2*newcx; - oneoverc = 65536.0f/c; - fu = a*oneoverc; fv = b*oneoverc; - deltaU = ((int)(fu - oldfu)) >> linearInterpPower; - deltaV = ((int)(fv - oldfv)) >> linearInterpPower; - iu = ( (int)oldfu )+(leftOffset-1)*deltaU; - iv = ( (int)oldfv )+(leftOffset-1)*deltaV; //another "off-by-one" hack - } else { - float preoneoverc = 65536.0f/c; - fu = (a*preoneoverc); - fv = (b*preoneoverc); - } - - for ( ; xstart < xend; xstart++ ) { - if (accurateMode) { - if (interpCounter == linearInterpLength) interpCounter = 0; - if (interpCounter == 0){ - a += newax; - b += newbx; - c += newcx; - float oneoverc = 65536.0f/c; - oldfu = fu; oldfv = fv; - fu = (a*oneoverc); fv = (b*oneoverc); - iu = (int)oldfu; iv = (int)oldfv; - deltaU = ((int)(fu - oldfu)) >> linearInterpPower; - deltaV = ((int)(fv - oldfv)) >> linearInterpPower; - } else { - iu += deltaU; - iv += deltaV; - } - interpCounter++; - } - // try-catch just in case pixel offset it out of range - try { - if (noDepthTest || (iz <= m_zbuffer[xstart])) { - //m_zbuffer[xstart] = iz; - - int al0; - if (m_bilinear) { - int ofs = (iv >> 16) * TEX_WIDTH + (iu >> 16); - int iui = iu & 0xFFFF; - al0 = m_texture[ofs] & 0xFF; - int al1 = m_texture[ofs + 1] & 0xFF; - if (ofs < lastRowStart) ofs+=TEX_WIDTH; - int al2 = m_texture[ofs] & 0xFF; - int al3 = m_texture[ofs + 1] & 0xFF; - al0 = al0 + (((al1-al0) * iui) >> 16); - al2 = al2 + (((al3-al2) * iui) >> 16); - al0 = al0 + (((al2-al0) * (iv & 0xFFFF)) >> 16); - } else { - al0 = m_texture[(iv >> 16) * TEX_WIDTH + (iu >> 16)] & 0xFF; - } - - int br = m_pixels[xstart]; - int bg = (br & 0xFF00); - int bb = (br & 0xFF); - br = (br & 0xFF0000); - m_pixels[xstart] = 0xFF000000 | - ((br + (((red - br) * al0) >> 8)) & 0xFF0000) | - ((bg + (((grn - bg) * al0) >> 8)) & 0xFF00) | - ((bb + (((blu - bb) * al0) >> 8)) & 0xFF); -// m_stencil[xstart] = p; - } - } - catch (Exception e) { - } - xpixel++;//accurate mode - if (!accurateMode){ - iu+=iuadd; - iv+=ivadd; - } - iz+=izadd; - } - ypixel++;//accurate mode - ytop+=SCREEN_WIDTH; - xleft+=leftadd; - xrght+=rghtadd; - uleft+=uleftadd; - vleft+=vleftadd; - zleft+=zleftadd; - } - } - - - - /** - * 8-bit texutre + alpha - */ - private void drawsegment_texture8_alpha(float leftadd, - float rghtadd, - int ytop, - int ybottom) { - // Accurate texture mode added - comments stripped from dupe code, - // see drawsegment_texture24() for details - - int ypixel = ytop; - int lastRowStart = m_texture.length - TEX_WIDTH - 2; - boolean accurateMode = parent.hints[ENABLE_ACCURATE_TEXTURES]; - float screenx = 0; float screeny = 0; float screenz = 0; - float a = 0; float b = 0; float c = 0; - int linearInterpPower = TEX_INTERP_POWER; - int linearInterpLength = 1 << linearInterpPower; - if (accurateMode) { - // see if the precomputation goes well, if so finish the setup - if (precomputeAccurateTexturing()) { - newax *= linearInterpLength; - newbx *= linearInterpLength; - newcx *= linearInterpLength; - screenz = nearPlaneDepth; - firstSegment = false; - } else { - // if the matrix inversion screwed up, - // revert to normal rendering (something is degenerate) - accurateMode = false; - } - } - ytop*=SCREEN_WIDTH; - ybottom*=SCREEN_WIDTH; -// int p = m_index; - - float iuf = iuadd; - float ivf = ivadd; - float iaf = iaadd; - - int red = m_fill & 0xFF0000; - int grn = m_fill & 0xFF00; - int blu = m_fill & 0xFF; - - while (ytop < ybottom) { - int xstart = (int) (xleft + PIXEL_CENTER); - if (xstart < 0) - xstart = 0; - - int xpixel = xstart;//accurate mode - - int xend = (int) (xrght + PIXEL_CENTER); - if (xend > SCREEN_WIDTH) - xend = SCREEN_WIDTH; - - float xdiff = (xstart + PIXEL_CENTER) - xleft; - int iu = (int) (iuf * xdiff + uleft); - int iv = (int) (ivf * xdiff + vleft); - int ia = (int) (iaf * xdiff + aleft); - float iz = izadd * xdiff + zleft; - - xstart+=ytop; - xend+=ytop; - - if (accurateMode){ - screenx = xmult*(xpixel+.5f-(SCREEN_WIDTH/2.0f)); - screeny = ymult*(ypixel+.5f-(SCREEN_HEIGHT/2.0f)); - a = screenx*ax+screeny*ay+screenz*az; - b = screenx*bx+screeny*by+screenz*bz; - c = screenx*cx+screeny*cy+screenz*cz; - } - boolean goingIn = ( (newcx > 0) == (c > 0) )?false:true; - int interpCounter = 0; - int deltaU = 0; int deltaV = 0; - float fu = 0; float fv = 0; - float oldfu = 0; float oldfv = 0; - - if (accurateMode&&goingIn){ - int rightOffset = (xend-xstart-1)%linearInterpLength; - int leftOffset = linearInterpLength-rightOffset; - float rightOffset2 = rightOffset / ((float)linearInterpLength); - float leftOffset2 = leftOffset / ((float)linearInterpLength); - interpCounter = leftOffset; - float ao = a-leftOffset2*newax; - float bo = b-leftOffset2*newbx; - float co = c-leftOffset2*newcx; - float oneoverc = 65536.0f/co; - oldfu = (ao*oneoverc); oldfv = (bo*oneoverc); - a += rightOffset2*newax; - b += rightOffset2*newbx; - c += rightOffset2*newcx; - oneoverc = 65536.0f/c; - fu = a*oneoverc; fv = b*oneoverc; - deltaU = ((int)(fu - oldfu)) >> linearInterpPower; - deltaV = ((int)(fv - oldfv)) >> linearInterpPower; - iu = ( (int)oldfu )+(leftOffset-1)*deltaU; iv = ( (int)oldfv )+(leftOffset-1)*deltaV; //another "off-by-one" hack - } else{ - float preoneoverc = 65536.0f/c; - fu = (a*preoneoverc); - fv = (b*preoneoverc); - } - - - for ( ; xstart < xend; xstart++ ) { - if(accurateMode){ - if (interpCounter == linearInterpLength) interpCounter = 0; - if (interpCounter == 0){ - a += newax; - b += newbx; - c += newcx; - float oneoverc = 65536.0f/c; - oldfu = fu; oldfv = fv; - fu = (a*oneoverc); fv = (b*oneoverc); - iu = (int)oldfu; iv = (int)oldfv; - deltaU = ((int)(fu - oldfu)) >> linearInterpPower; - deltaV = ((int)(fv - oldfv)) >> linearInterpPower; - } else{ - iu += deltaU; - iv += deltaV; - } - interpCounter++; - } - // try-catch just in case pixel offset it out of range - try - { - if (noDepthTest || (iz <= m_zbuffer[xstart])) { - //m_zbuffer[xstart] = iz; - - int al0; - if (m_bilinear) { - int ofs = (iv >> 16) * TEX_WIDTH + (iu >> 16); - int iui = iu & 0xFFFF; - al0 = m_texture[ofs] & 0xFF; - int al1 = m_texture[ofs + 1] & 0xFF; - if (ofs < lastRowStart) ofs+=TEX_WIDTH; - int al2 = m_texture[ofs] & 0xFF; - int al3 = m_texture[ofs + 1] & 0xFF; - al0 = al0 + (((al1-al0) * iui) >> 16); - al2 = al2 + (((al3-al2) * iui) >> 16); - al0 = al0 + (((al2-al0) * (iv & 0xFFFF)) >> 16); - } else { - al0 = m_texture[(iv >> 16) * TEX_WIDTH + (iu >> 16)] & 0xFF; - } - al0 = (al0 * (ia >> 16)) >> 8; - - int br = m_pixels[xstart]; - int bg = (br & 0xFF00); - int bb = (br & 0xFF); - br = (br & 0xFF0000); - m_pixels[xstart] = 0xFF000000 | - ((br + (((red - br) * al0) >> 8)) & 0xFF0000) | - ((bg + (((grn - bg) * al0) >> 8)) & 0xFF00) | - ((bb + (((blu - bb) * al0) >> 8)) & 0xFF); -// m_stencil[xstart] = p; - } - } - catch (Exception e) { - } - xpixel++;//accurate mode - if (!accurateMode){ - iu+=iuadd; - iv+=ivadd; - } - iz+=izadd; - ia+=iaadd; - } - ypixel++;//accurate mode - ytop+=SCREEN_WIDTH; - xleft+=leftadd; - xrght+=rghtadd; - uleft+=uleftadd; - vleft+=vleftadd; - zleft+=zleftadd; - aleft+=aleftadd; - } - } - - /** - * Plain 24-bit texture - */ - private void drawsegment_texture24(float leftadd, - float rghtadd, - int ytop, - int ybottom) { - ytop *= SCREEN_WIDTH; - ybottom *= SCREEN_WIDTH; -// int p = m_index; - float iuf = iuadd; - float ivf = ivadd; - - boolean tint = (m_fill & 0xFFFFFF) != 0xFFFFFF; - int rtint = (m_fill >> 16) & 0xff; - int gtint = (m_fill >> 8) & 0xff; - int btint = m_fill & 0xFF; - - int ypixel = ytop/SCREEN_WIDTH;//ACCTEX - int lastRowStart = m_texture.length - TEX_WIDTH - 2;//If we're past this index, we can't shift down a row w/o throwing an exception - // int exCount = 0;//counter for exceptions caught - boolean accurateMode = parent.hints[ENABLE_ACCURATE_TEXTURES]; //bring this local since it will be accessed often - float screenx = 0; float screeny = 0; float screenz = 0; - float a = 0; float b = 0; float c = 0; - - //Interpolation length of 16 tends to look good except at a small angle; 8 looks okay then, except for the - //above issue. When viewing close to flat, as high as 32 is often acceptable. Could add dynamic interpolation - //settings based on triangle angle - currently we just pick a value and leave it (by default I have the - //power set at 3, so every 8 pixels a true coordinate is calculated, which seems a decent compromise). - - int linearInterpPower = TEX_INTERP_POWER; - int linearInterpLength = 1 << linearInterpPower; - if (accurateMode){ - if(precomputeAccurateTexturing()){ //see if the precomputation goes well, if so finish the setup - newax *= linearInterpLength; - newbx *= linearInterpLength; - newcx *= linearInterpLength; - screenz = nearPlaneDepth; - firstSegment = false; - } else{ - accurateMode = false; //if the matrix inversion gave us garbage, revert to normal rendering (something is degenerate) - } - } - - - while (ytop < ybottom) {//scanline loop - int xstart = (int) (xleft + PIXEL_CENTER); - if (xstart < 0){ xstart = 0; } - - int xpixel = xstart;//accurate mode - - int xend = (int) (xrght + PIXEL_CENTER); - if (xend > SCREEN_WIDTH){ xend = SCREEN_WIDTH; } - float xdiff = (xstart + PIXEL_CENTER) - xleft; - int iu = (int) (iuf * xdiff + uleft); - int iv = (int) (ivf * xdiff + vleft); - float iz = izadd * xdiff + zleft; - xstart+=ytop; - xend+=ytop; - - if (accurateMode){ - //off by one (half, I guess) hack, w/o it the first rows are outside the texture - maybe a mistake somewhere? - screenx = xmult*(xpixel+.5f-(SCREEN_WIDTH/2.0f)); - screeny = ymult*(ypixel+.5f-(SCREEN_HEIGHT/2.0f)); - a = screenx*ax+screeny*ay+screenz*az;//OPT - some of this could be brought out of the y-loop since - b = screenx*bx+screeny*by+screenz*bz;//xpixel and ypixel just increment by the same numbers each iteration. - c = screenx*cx+screeny*cy+screenz*cz;//Probably not a big bottleneck, though. - } - - //Figure out whether triangle is going further into the screen or not as we move along scanline - boolean goingIn = ( (newcx > 0) == (c > 0) )?false:true; - - //Set up linear interpolation between calculated texture points - int interpCounter = 0; - int deltaU = 0; int deltaV = 0; - //float fdeltaU = 0; float fdeltaV = 0;//vars for floating point interpolating version of algorithm - //float fiu = 0; float fiv = 0; - float fu = 0; float fv = 0; - float oldfu = 0; float oldfv = 0; - - - //Bugfix (done): it's a Really Bad Thing to interpolate along a scanline when the triangle goes deeper into the screen, - //because if the angle is severe enough the last control point for interpolation may cross the vanishing - //point. This leads to some pretty nasty artifacts, and ideally we should scan from right to left if the - //triangle is better served that way, or (what we do now) precompute the offset that we'll need so that we end up - //with a control point exactly at the furthest edge of the triangle. - - if (accurateMode&&goingIn){ - //IMPORTANT!!! Results are horrid without this hack! - //If polygon goes into the screen along scan line, we want to match the control point to the furthest point drawn - //since the control points are less meaningful the closer you are to the vanishing point. - //We'll do this by making the first control point lie before the start of the scanline (safe since it's closer to us) - - int rightOffset = (xend-xstart-1)%linearInterpLength; //"off by one" hack...probably means there's a small bug somewhere - int leftOffset = linearInterpLength-rightOffset; - float rightOffset2 = rightOffset / ((float)linearInterpLength); - float leftOffset2 = leftOffset / ((float)linearInterpLength); - interpCounter = leftOffset; - - //Take step to control point to the left of start pixel - float ao = a-leftOffset2*newax; - float bo = b-leftOffset2*newbx; - float co = c-leftOffset2*newcx; - float oneoverc = 65536.0f/co; - oldfu = (ao*oneoverc); oldfv = (bo*oneoverc); - - //Now step to right control point - a += rightOffset2*newax; - b += rightOffset2*newbx; - c += rightOffset2*newcx; - oneoverc = 65536.0f/c; - fu = a*oneoverc; fv = b*oneoverc; - - //Get deltas for interpolation - deltaU = ((int)(fu - oldfu)) >> linearInterpPower; - deltaV = ((int)(fv - oldfv)) >> linearInterpPower; - iu = ( (int)oldfu )+(leftOffset-1)*deltaU; iv = ( (int)oldfv )+(leftOffset-1)*deltaV; //another "off-by-one" hack - } else{ - //Otherwise the left edge is further, and we pin the first control point to it - float preoneoverc = 65536.0f/c; - fu = (a*preoneoverc); - fv = (b*preoneoverc); - } - - for ( ; xstart < xend; xstart++ ) {//pixel loop - keep trim, can execute thousands of times per frame - //boolean drawBlack = false; //used to display control points - if(accurateMode){ - /* //Non-interpolating algorithm - slowest version, calculates exact coordinate for each pixel, - //and casts from float->int - float oneoverc = 65536.0f/c; //a bit faster to pre-divide for next two steps - iu = (int)(a*oneoverc); - iv = (int)(b*oneoverc); - a += newax; - b += newbx; - c += newcx; - */ - - //Float while calculating, int while interpolating - if (interpCounter == linearInterpLength) interpCounter = 0; - if (interpCounter == 0){ - //drawBlack = true; - a += newax; - b += newbx; - c += newcx; - float oneoverc = 65536.0f/c; - oldfu = fu; oldfv = fv; - fu = (a*oneoverc); fv = (b*oneoverc); - iu = (int)oldfu; iv = (int)oldfv; //ints are used for interpolation, not actual computation - deltaU = ((int)(fu - oldfu)) >> linearInterpPower; - deltaV = ((int)(fv - oldfv)) >> linearInterpPower; - } else{ //race through using linear interpolation if we're not at a control point - iu += deltaU; - iv += deltaV; - } - interpCounter++; - - /* //Floating point interpolating version - slower than int thanks to casts during interpolation steps - if (interpCounter == 0) { - interpCounter = linearInterpLength; - a += newax; - b += newbx; - c += newcx; - float oneoverc = 65536.0f/c; - oldfu = fu; - oldfv = fv; - fu = (a*oneoverc); - fv = (b*oneoverc); - //oldu = u; oldv = v; - fiu = oldfu; - fiv = oldfv; - fdeltaU = (fu-oldfu)/linearInterpLength; - fdeltaV = (fv-oldfv)/linearInterpLength; - } - else{ - fiu += fdeltaU; - fiv += fdeltaV; - } - interpCounter--; - iu = (int)(fiu); iv = (int)(fiv);*/ - - } - - // try-catch just in case pixel offset is out of range - try{ - if (noDepthTest || (iz <= m_zbuffer[xstart])) { - m_zbuffer[xstart] = iz; - if (m_bilinear) { - //We could (should?) add bounds checking on iu and iv here (keep in mind the 16 bit shift!). - //This would also be the place to add looping texture mode (bounds check == clamped). - //For looping/clamped textures, we'd also need to change PGraphics.textureVertex() to remove - //the texture range check there (it constrains normalized texture coordinates from 0->1). - - int ofs = (iv >> 16) * TEX_WIDTH + (iu >> 16); - int iui = (iu & 0xFFFF) >> 9; - int ivi = (iv & 0xFFFF) >> 9; - - //if(ofs < 0) { ofs += TEX_WIDTH; } - //if(ofs > m_texture.length-2) {ofs -= TEX_WIDTH; } - - // get texture pixels - int pix0 = m_texture[ofs]; - int pix1 = m_texture[ofs + 1]; - if (ofs < lastRowStart) ofs+=TEX_WIDTH; //quick hack to thwart exceptions - int pix2 = m_texture[ofs]; - int pix3 = m_texture[ofs + 1]; - - // red - int red0 = (pix0 & 0xFF0000); - int red2 = (pix2 & 0xFF0000); - int up = red0 + ((((pix1 & 0xFF0000) - red0) * iui) >> 7); - int dn = red2 + ((((pix3 & 0xFF0000) - red2) * iui) >> 7); - int red = up + (((dn-up) * ivi) >> 7); - if (tint) red = ((red * rtint) >> 8) & 0xFF0000; - - // grn - red0 = (pix0 & 0xFF00); - red2 = (pix2 & 0xFF00); - up = red0 + ((((pix1 & 0xFF00) - red0) * iui) >> 7); - dn = red2 + ((((pix3 & 0xFF00) - red2) * iui) >> 7); - int grn = up + (((dn-up) * ivi) >> 7); - if (tint) grn = ((grn * gtint) >> 8) & 0xFF00; - - // blu - red0 = (pix0 & 0xFF); - red2 = (pix2 & 0xFF); - up = red0 + ((((pix1 & 0xFF) - red0) * iui) >> 7); - dn = red2 + ((((pix3 & 0xFF) - red2) * iui) >> 7); - int blu = up + (((dn-up) * ivi) >> 7); - if (tint) blu = ((blu * btint) >> 8) & 0xFF; - - //m_pixels[xstart] = (red & 0xFF0000) | (grn & 0xFF00) | (blu & 0xFF); - m_pixels[xstart] = 0xFF000000 | - (red & 0xFF0000) | (grn & 0xFF00) | (blu & 0xFF); - - } else { - m_pixels[xstart] = m_texture[(iv >> 16) * TEX_WIDTH + (iu >> 16)]; - } -// m_stencil[xstart] = p; - } - } catch (Exception e) {/*exCount++;*/} - iz+=izadd; - xpixel++;//accurate mode - if (!accurateMode){ - iu+=iuadd; - iv+=ivadd; - } - } - ypixel++; //accurate mode - ytop+=SCREEN_WIDTH; - xleft+=leftadd; - xrght+=rghtadd; - zleft+=zleftadd; - uleft+=uleftadd; - vleft+=vleftadd; - } - //if (exCount>0) System.out.println(exCount+" exceptions in this segment"); - } - - - /** - * Alpha 24-bit texture - */ - private void drawsegment_texture24_alpha(float leftadd, - float rghtadd, - int ytop, - int ybottom) { - //Accurate texture mode added - comments stripped from dupe code, see drawsegment_texture24() for details - int ypixel = ytop; - int lastRowStart = m_texture.length - TEX_WIDTH - 2; - boolean accurateMode = parent.hints[ENABLE_ACCURATE_TEXTURES]; - float screenx = 0; float screeny = 0; float screenz = 0; - float a = 0; float b = 0; float c = 0; - int linearInterpPower = TEX_INTERP_POWER; - int linearInterpLength = 1 << linearInterpPower; - if (accurateMode){ - if(precomputeAccurateTexturing()){ //see if the precomputation goes well, if so finish the setup - newax *= linearInterpLength; - newbx *= linearInterpLength; - newcx *= linearInterpLength; - screenz = nearPlaneDepth; - firstSegment = false; - } else{ - accurateMode = false; //if the matrix inversion screwed up, revert to normal rendering (something is degenerate) - } - } - - boolean tint = (m_fill & 0xFFFFFF) != 0xFFFFFF; - int rtint = (m_fill >> 16) & 0xff; - int gtint = (m_fill >> 8) & 0xff; - int btint = m_fill & 0xFF; - - ytop *= SCREEN_WIDTH; - ybottom *= SCREEN_WIDTH; -// int p = m_index; - - float iuf = iuadd; - float ivf = ivadd; - float iaf = iaadd; - - while (ytop < ybottom) { - int xstart = (int) (xleft + PIXEL_CENTER); - if (xstart < 0) - xstart = 0; - - int xpixel = xstart;//accurate mode - - int xend = (int) (xrght + PIXEL_CENTER); - if (xend > SCREEN_WIDTH) - xend = SCREEN_WIDTH; - - float xdiff = (xstart + PIXEL_CENTER) - xleft; - int iu = (int) (iuf * xdiff + uleft); - int iv = (int) (ivf * xdiff + vleft); - int ia = (int) (iaf * xdiff + aleft); - float iz = izadd * xdiff + zleft; - - xstart+=ytop; - xend+=ytop; - - if (accurateMode){ - screenx = xmult*(xpixel+.5f-(SCREEN_WIDTH/2.0f)); - screeny = ymult*(ypixel+.5f-(SCREEN_HEIGHT/2.0f)); - a = screenx*ax+screeny*ay+screenz*az; - b = screenx*bx+screeny*by+screenz*bz; - c = screenx*cx+screeny*cy+screenz*cz; - } - boolean goingIn = ( (newcx > 0) == (c > 0) )?false:true; - int interpCounter = 0; - int deltaU = 0; int deltaV = 0; - float fu = 0; float fv = 0; - float oldfu = 0; float oldfv = 0; - - if (accurateMode&&goingIn){ - int rightOffset = (xend-xstart-1)%linearInterpLength; - int leftOffset = linearInterpLength-rightOffset; - float rightOffset2 = rightOffset / ((float)linearInterpLength); - float leftOffset2 = leftOffset / ((float)linearInterpLength); - interpCounter = leftOffset; - float ao = a-leftOffset2*newax; - float bo = b-leftOffset2*newbx; - float co = c-leftOffset2*newcx; - float oneoverc = 65536.0f/co; - oldfu = (ao*oneoverc); oldfv = (bo*oneoverc); - a += rightOffset2*newax; - b += rightOffset2*newbx; - c += rightOffset2*newcx; - oneoverc = 65536.0f/c; - fu = a*oneoverc; fv = b*oneoverc; - deltaU = ((int)(fu - oldfu)) >> linearInterpPower; - deltaV = ((int)(fv - oldfv)) >> linearInterpPower; - iu = ( (int)oldfu )+(leftOffset-1)*deltaU; iv = ( (int)oldfv )+(leftOffset-1)*deltaV; //another "off-by-one" hack - } else{ - float preoneoverc = 65536.0f/c; - fu = (a*preoneoverc); - fv = (b*preoneoverc); - } - - - for ( ; xstart < xend; xstart++ ) { - if(accurateMode){ - if (interpCounter == linearInterpLength) interpCounter = 0; - if (interpCounter == 0){ - a += newax; - b += newbx; - c += newcx; - float oneoverc = 65536.0f/c; - oldfu = fu; oldfv = fv; - fu = (a*oneoverc); fv = (b*oneoverc); - iu = (int)oldfu; iv = (int)oldfv; - deltaU = ((int)(fu - oldfu)) >> linearInterpPower; - deltaV = ((int)(fv - oldfv)) >> linearInterpPower; - } else{ - iu += deltaU; - iv += deltaV; - } - interpCounter++; - } - - try { - if (noDepthTest || (iz <= m_zbuffer[xstart])) { - //m_zbuffer[xstart] = iz; - - // get alpha - int al = ia >> 16; - - if (m_bilinear) { - int ofs = (iv >> 16) * TEX_WIDTH + (iu >> 16); - int iui = (iu & 0xFFFF) >> 9; - int ivi = (iv & 0xFFFF) >> 9; - - // get texture pixels - int pix0 = m_texture[ofs]; - int pix1 = m_texture[ofs + 1]; - if (ofs < lastRowStart) ofs+=TEX_WIDTH; - int pix2 = m_texture[ofs]; - int pix3 = m_texture[ofs + 1]; - - // red - int red0 = (pix0 & 0xFF0000); - int red2 = (pix2 & 0xFF0000); - int up = red0 + ((((pix1 & 0xFF0000) - red0) * iui) >> 7); - int dn = red2 + ((((pix3 & 0xFF0000) - red2) * iui) >> 7); - int red = up + (((dn-up) * ivi) >> 7); - if (tint) red = ((red * rtint) >> 8) & 0xFF0000; - - // grn - red0 = (pix0 & 0xFF00); - red2 = (pix2 & 0xFF00); - up = red0 + ((((pix1 & 0xFF00) - red0) * iui) >> 7); - dn = red2 + ((((pix3 & 0xFF00) - red2) * iui) >> 7); - int grn = up + (((dn-up) * ivi) >> 7); - if (tint) grn = ((grn * gtint) >> 8) & 0xFF00; - - // blu - red0 = (pix0 & 0xFF); - red2 = (pix2 & 0xFF); - up = red0 + ((((pix1 & 0xFF) - red0) * iui) >> 7); - dn = red2 + ((((pix3 & 0xFF) - red2) * iui) >> 7); - int blu = up + (((dn-up) * ivi) >> 7); - if (tint) blu = ((blu * btint) >> 8) & 0xFF; - - // get buffer pixels - int bb = m_pixels[xstart]; - int br = (bb & 0xFF0000); // 0x00FF0000 - int bg = (bb & 0xFF00); // 0x0000FF00 - bb = (bb & 0xFF); // 0x000000FF - m_pixels[xstart] = 0xFF000000 | - ((br + (((red - br) * al) >> 8)) & 0xFF0000) | - ((bg + (((grn - bg) * al) >> 8)) & 0xFF00) | - ((bb + (((blu - bb) * al) >> 8)) & 0xFF); - - } else { - int red = m_texture[(iv >> 16) * TEX_WIDTH + (iu >> 16)]; - int grn = red & 0xFF00; - int blu = red & 0xFF; - red&=0xFF0000; - - // get buffer pixels - int bb = m_pixels[xstart]; - int br = (bb & 0xFF0000); // 0x00FF0000 - int bg = (bb & 0xFF00); // 0x0000FF00 - bb = (bb & 0xFF); // 0x000000FF - m_pixels[xstart] = 0xFF000000 | - ((br + (((red - br) * al) >> 8)) & 0xFF0000) | - ((bg + (((grn - bg) * al) >> 8)) & 0xFF00) | - ((bb + (((blu - bb) * al) >> 8)) & 0xFF); - } -// m_stencil[xstart] = p; - } - } catch (Exception e) { } - - xpixel++; // accurate mode - if (!accurateMode){ - iu += iuadd; - iv += ivadd; - } - ia+=iaadd; - iz+=izadd; - } - ypixel++; // accurate mode - - ytop+=SCREEN_WIDTH; - - xleft+=leftadd; - xrght+=rghtadd; - uleft+=uleftadd; - vleft+=vleftadd; - zleft+=zleftadd; - aleft+=aleftadd; - } - } - - /** - * Plain 32-bit texutre - */ - private void drawsegment_texture32(float leftadd, - float rghtadd, - int ytop, - int ybottom) { - //Accurate texture mode added - comments stripped from dupe code, see drawsegment_texture24() for details - int ypixel = ytop; - int lastRowStart = m_texture.length - TEX_WIDTH - 2; - boolean accurateMode = parent.hints[ENABLE_ACCURATE_TEXTURES]; - float screenx = 0; float screeny = 0; float screenz = 0; - float a = 0; float b = 0; float c = 0; - int linearInterpPower = TEX_INTERP_POWER; - int linearInterpLength = 1 << linearInterpPower; - if (accurateMode){ - if(precomputeAccurateTexturing()){ //see if the precomputation goes well, if so finish the setup - newax *= linearInterpLength; - newbx *= linearInterpLength; - newcx *= linearInterpLength; - screenz = nearPlaneDepth; - firstSegment = false; - } else{ - accurateMode = false; //if the matrix inversion screwed up, revert to normal rendering (something is degenerate) - } - } - - ytop*=SCREEN_WIDTH; - ybottom*=SCREEN_WIDTH; -// int p = m_index; - - boolean tint = m_fill != 0xFFFFFFFF; - int rtint = (m_fill >> 16) & 0xff; - int gtint = (m_fill >> 8) & 0xff; - int btint = m_fill & 0xFF; - - float iuf = iuadd; - float ivf = ivadd; - - while (ytop < ybottom) { - int xstart = (int) (xleft + PIXEL_CENTER); - if (xstart < 0) - xstart = 0; - - int xpixel = xstart;//accurate mode - - int xend = (int) (xrght + PIXEL_CENTER); - if (xend > SCREEN_WIDTH) - xend = SCREEN_WIDTH; - - float xdiff = (xstart + PIXEL_CENTER) - xleft; - int iu = (int) (iuf * xdiff + uleft); - int iv = (int) (ivf * xdiff + vleft); - float iz = izadd * xdiff + zleft; - - xstart+=ytop; - xend+=ytop; - - if (accurateMode){ - screenx = xmult*(xpixel+.5f-(SCREEN_WIDTH/2.0f)); - screeny = ymult*(ypixel+.5f-(SCREEN_HEIGHT/2.0f)); - a = screenx*ax+screeny*ay+screenz*az; - b = screenx*bx+screeny*by+screenz*bz; - c = screenx*cx+screeny*cy+screenz*cz; - } - boolean goingIn = ( (newcx > 0) == (c > 0) )?false:true; - int interpCounter = 0; - int deltaU = 0; int deltaV = 0; - float fu = 0; float fv = 0; - float oldfu = 0; float oldfv = 0; - - if (accurateMode&&goingIn){ - int rightOffset = (xend-xstart-1)%linearInterpLength; - int leftOffset = linearInterpLength-rightOffset; - float rightOffset2 = rightOffset / ((float)linearInterpLength); - float leftOffset2 = leftOffset / ((float)linearInterpLength); - interpCounter = leftOffset; - float ao = a-leftOffset2*newax; - float bo = b-leftOffset2*newbx; - float co = c-leftOffset2*newcx; - float oneoverc = 65536.0f/co; - oldfu = (ao*oneoverc); oldfv = (bo*oneoverc); - a += rightOffset2*newax; - b += rightOffset2*newbx; - c += rightOffset2*newcx; - oneoverc = 65536.0f/c; - fu = a*oneoverc; fv = b*oneoverc; - deltaU = ((int)(fu - oldfu)) >> linearInterpPower; - deltaV = ((int)(fv - oldfv)) >> linearInterpPower; - iu = ( (int)oldfu )+(leftOffset-1)*deltaU; iv = ( (int)oldfv )+(leftOffset-1)*deltaV; //another "off-by-one" hack - } else{ - float preoneoverc = 65536.0f/c; - fu = (a*preoneoverc); - fv = (b*preoneoverc); - } - - - for ( ; xstart < xend; xstart++ ) { - if(accurateMode){ - if (interpCounter == linearInterpLength) interpCounter = 0; - if (interpCounter == 0){ - a += newax; - b += newbx; - c += newcx; - float oneoverc = 65536.0f/c; - oldfu = fu; oldfv = fv; - fu = (a*oneoverc); fv = (b*oneoverc); - iu = (int)oldfu; iv = (int)oldfv; - deltaU = ((int)(fu - oldfu)) >> linearInterpPower; - deltaV = ((int)(fv - oldfv)) >> linearInterpPower; - } else{ - iu += deltaU; - iv += deltaV; - } - interpCounter++; - } - - // try-catch just in case pixel offset it out of range - try { - if (noDepthTest || (iz <= m_zbuffer[xstart])) { - //m_zbuffer[xstart] = iz; - - if (m_bilinear) { - int ofs = (iv >> 16) * TEX_WIDTH + (iu >> 16); - int iui = (iu & 0xFFFF) >> 9; - int ivi = (iv & 0xFFFF) >> 9; - - // get texture pixels - int pix0 = m_texture[ofs]; - int pix1 = m_texture[ofs + 1]; - if (ofs < lastRowStart) ofs+=TEX_WIDTH; - int pix2 = m_texture[ofs]; - int pix3 = m_texture[ofs + 1]; - - // red - int red0 = (pix0 & 0xFF0000); - int red2 = (pix2 & 0xFF0000); - int up = red0 + ((((pix1 & 0xFF0000) - red0) * iui) >> 7); - int dn = red2 + ((((pix3 & 0xFF0000) - red2) * iui) >> 7); - int red = up + (((dn-up) * ivi) >> 7); - if (tint) red = ((red * rtint) >> 8) & 0xFF0000; - - // grn - red0 = (pix0 & 0xFF00); - red2 = (pix2 & 0xFF00); - up = red0 + ((((pix1 & 0xFF00) - red0) * iui) >> 7); - dn = red2 + ((((pix3 & 0xFF00) - red2) * iui) >> 7); - int grn = up + (((dn-up) * ivi) >> 7); - if (tint) grn = ((grn * gtint) >> 8) & 0xFF00; - - // blu - red0 = (pix0 & 0xFF); - red2 = (pix2 & 0xFF); - up = red0 + ((((pix1 & 0xFF) - red0) * iui) >> 7); - dn = red2 + ((((pix3 & 0xFF) - red2) * iui) >> 7); - int blu = up + (((dn-up) * ivi) >> 7); - if (tint) blu = ((blu * btint) >> 8) & 0xFF; - - // alpha - pix0>>>=24; - pix2>>>=24; - up = pix0 + ((((pix1 >>> 24) - pix0) * iui) >> 7); - dn = pix2 + ((((pix3 >>> 24) - pix2) * iui) >> 7); - int al = up + (((dn-up) * ivi) >> 7); - - // get buffer pixels - int bb = m_pixels[xstart]; - int br = (bb & 0xFF0000); // 0x00FF0000 - int bg = (bb & 0xFF00); // 0x0000FF00 - bb = (bb & 0xFF); // 0x000000FF - m_pixels[xstart] = 0xFF000000 | - ((br + (((red - br) * al) >> 8)) & 0xFF0000) | - ((bg + (((grn - bg) * al) >> 8)) & 0xFF00) | - ((bb + (((blu - bb) * al) >> 8)) & 0xFF); - } else { - int red = m_texture[(iv >> 16) * TEX_WIDTH + (iu >> 16)]; - int al = red >>> 24; - int grn = red & 0xFF00; - int blu = red & 0xFF; - red&=0xFF0000; - - // get buffer pixels - int bb = m_pixels[xstart]; - int br = (bb & 0xFF0000); // 0x00FF0000 - int bg = (bb & 0xFF00); // 0x0000FF00 - bb = (bb & 0xFF); // 0x000000FF - m_pixels[xstart] = 0xFF000000 | - ((br + (((red - br) * al) >> 8)) & 0xFF0000) | - ((bg + (((grn - bg) * al) >> 8)) & 0xFF00) | - ((bb + (((blu - bb) * al) >> 8)) & 0xFF); - } -// m_stencil[xstart] = p; - } - } catch (Exception e) { } - xpixel++;//accurate mode - if (!accurateMode){ - iu+=iuadd; - iv+=ivadd; - } - iz+=izadd; - } - ypixel++;//accurate mode - - ytop+=SCREEN_WIDTH; - - xleft+=leftadd; - xrght+=rghtadd; - uleft+=uleftadd; - vleft+=vleftadd; - zleft+=zleftadd; - aleft+=aleftadd; - } - - - } - - /** - * Alpha 32-bit texutre - */ - private void drawsegment_texture32_alpha(float leftadd, - float rghtadd, - int ytop, - int ybottom) { - //Accurate texture mode added - comments stripped from dupe code, see drawsegment_texture24() for details - int ypixel = ytop; - int lastRowStart = m_texture.length - TEX_WIDTH - 2; - boolean accurateMode = parent.hints[ENABLE_ACCURATE_TEXTURES]; - float screenx = 0; float screeny = 0; float screenz = 0; - float a = 0; float b = 0; float c = 0; - int linearInterpPower = TEX_INTERP_POWER; - int linearInterpLength = 1 << linearInterpPower; - if (accurateMode){ - if(precomputeAccurateTexturing()){ //see if the precomputation goes well, if so finish the setup - newax *= linearInterpLength; - newbx *= linearInterpLength; - newcx *= linearInterpLength; - screenz = nearPlaneDepth; - firstSegment = false; - } else{ - accurateMode = false; //if the matrix inversion screwed up, revert to normal rendering (something is degenerate) - } - } - - ytop *= SCREEN_WIDTH; - ybottom *= SCREEN_WIDTH; -// int p = m_index; - - boolean tint = (m_fill & 0xFFFFFF) != 0xFFFFFF; - int rtint = (m_fill >> 16) & 0xff; - int gtint = (m_fill >> 8) & 0xff; - int btint = m_fill & 0xFF; - - float iuf = iuadd; - float ivf = ivadd; - float iaf = iaadd; - - while (ytop < ybottom) { - int xstart = (int) (xleft + PIXEL_CENTER); - if (xstart < 0) - xstart = 0; - - int xpixel = xstart;//accurate mode - - int xend = (int) (xrght + PIXEL_CENTER); - if (xend > SCREEN_WIDTH) - xend = SCREEN_WIDTH; - - float xdiff = (xstart + PIXEL_CENTER) - xleft; - int iu = (int) (iuf * xdiff + uleft); - int iv = (int) (ivf * xdiff + vleft); - int ia = (int) (iaf * xdiff + aleft); - float iz = izadd * xdiff + zleft; - - xstart+=ytop; - xend+=ytop; - - if (accurateMode){ - screenx = xmult*(xpixel+.5f-(SCREEN_WIDTH/2.0f)); - screeny = ymult*(ypixel+.5f-(SCREEN_HEIGHT/2.0f)); - a = screenx*ax+screeny*ay+screenz*az; - b = screenx*bx+screeny*by+screenz*bz; - c = screenx*cx+screeny*cy+screenz*cz; - } - boolean goingIn = ( (newcx > 0) == (c > 0) )?false:true; - int interpCounter = 0; - int deltaU = 0; int deltaV = 0; - float fu = 0; float fv = 0; - float oldfu = 0; float oldfv = 0; - - if (accurateMode&&goingIn){ - int rightOffset = (xend-xstart-1)%linearInterpLength; - int leftOffset = linearInterpLength-rightOffset; - float rightOffset2 = rightOffset / ((float)linearInterpLength); - float leftOffset2 = leftOffset / ((float)linearInterpLength); - interpCounter = leftOffset; - float ao = a-leftOffset2*newax; - float bo = b-leftOffset2*newbx; - float co = c-leftOffset2*newcx; - float oneoverc = 65536.0f/co; - oldfu = (ao*oneoverc); oldfv = (bo*oneoverc); - a += rightOffset2*newax; - b += rightOffset2*newbx; - c += rightOffset2*newcx; - oneoverc = 65536.0f/c; - fu = a*oneoverc; fv = b*oneoverc; - deltaU = ((int)(fu - oldfu)) >> linearInterpPower; - deltaV = ((int)(fv - oldfv)) >> linearInterpPower; - iu = ( (int)oldfu )+(leftOffset-1)*deltaU; iv = ( (int)oldfv )+(leftOffset-1)*deltaV; //another "off-by-one" hack - } else{ - float preoneoverc = 65536.0f/c; - fu = (a*preoneoverc); - fv = (b*preoneoverc); - } - - for ( ; xstart < xend; xstart++ ) { - if(accurateMode){ - if (interpCounter == linearInterpLength) interpCounter = 0; - if (interpCounter == 0){ - a += newax; - b += newbx; - c += newcx; - float oneoverc = 65536.0f/c; - oldfu = fu; oldfv = fv; - fu = (a*oneoverc); fv = (b*oneoverc); - iu = (int)oldfu; iv = (int)oldfv; - deltaU = ((int)(fu - oldfu)) >> linearInterpPower; - deltaV = ((int)(fv - oldfv)) >> linearInterpPower; - } else{ - iu += deltaU; - iv += deltaV; - } - interpCounter++; - } - - // try-catch just in case pixel offset it out of range - try { - if (noDepthTest || (iz <= m_zbuffer[xstart])) { - //m_zbuffer[xstart] = iz; - - // get alpha - int al = ia >> 16; - - if (m_bilinear) { - int ofs = (iv >> 16) * TEX_WIDTH + (iu >> 16); - int iui = (iu & 0xFFFF) >> 9; - int ivi = (iv & 0xFFFF) >> 9; - - // get texture pixels - int pix0 = m_texture[ofs]; - int pix1 = m_texture[ofs + 1]; - if (ofs < lastRowStart) ofs+=TEX_WIDTH; - int pix2 = m_texture[ofs]; - int pix3 = m_texture[ofs + 1]; - - // red - int red0 = (pix0 & 0xFF0000); - int red2 = (pix2 & 0xFF0000); - int up = red0 + ((((pix1 & 0xFF0000) - red0) * iui) >> 7); - int dn = red2 + ((((pix3 & 0xFF0000) - red2) * iui) >> 7); - int red = up + (((dn-up) * ivi) >> 7); - if (tint) red = ((red * rtint) >> 8) & 0xFF0000; - - // grn - red0 = (pix0 & 0xFF00); - red2 = (pix2 & 0xFF00); - up = red0 + ((((pix1 & 0xFF00) - red0) * iui) >> 7); - dn = red2 + ((((pix3 & 0xFF00) - red2) * iui) >> 7); - int grn = up + (((dn-up) * ivi) >> 7); - if (tint) grn = ((grn * gtint) >> 8) & 0xFF00; - - // blu - red0 = (pix0 & 0xFF); - red2 = (pix2 & 0xFF); - up = red0 + ((((pix1 & 0xFF) - red0) * iui) >> 7); - dn = red2 + ((((pix3 & 0xFF) - red2) * iui) >> 7); - int blu = up + (((dn-up) * ivi) >> 7); - if (tint) blu = ((blu * btint) >> 8) & 0xFF; - - // alpha - pix0>>>=24; - pix2>>>=24; - up = pix0 + ((((pix1 >>> 24) - pix0) * iui) >> 7); - dn = pix2 + ((((pix3 >>> 24) - pix2) * iui) >> 7); - al = al * (up + (((dn-up) * ivi) >> 7)) >> 8; - - // get buffer pixels - int bb = m_pixels[xstart]; - int br = (bb & 0xFF0000); // 0x00FF0000 - int bg = (bb & 0xFF00); // 0x0000FF00 - bb = (bb & 0xFF); // 0x000000FF - m_pixels[xstart] = 0xFF000000 | - ((br + (((red - br) * al) >> 8)) & 0xFF0000) | - ((bg + (((grn - bg) * al) >> 8)) & 0xFF00) | - ((bb + (((blu - bb) * al) >> 8)) & 0xFF); - } else { - int red = m_texture[(iv >> 16) * TEX_WIDTH + (iu >> 16)]; - al = al * (red >>> 24) >> 8; - int grn = red & 0xFF00; - int blu = red & 0xFF; - red&=0xFF0000; - - // get buffer pixels - int bb = m_pixels[xstart]; - int br = (bb & 0xFF0000); // 0x00FF0000 - int bg = (bb & 0xFF00); // 0x0000FF00 - bb = (bb & 0xFF); // 0x000000FF - m_pixels[xstart] = 0xFF000000 | - ((br + (((red - br) * al) >> 8)) & 0xFF0000) | - ((bg + (((grn - bg) * al) >> 8)) & 0xFF00) | - ((bb + (((blu - bb) * al) >> 8)) & 0xFF); - } -// m_stencil[xstart] = p; - } - } catch (Exception e) { } - - xpixel++;//accurate mode - if (!accurateMode){ - iu+=iuadd; - iv+=ivadd; - } - ia+=iaadd; - iz+=izadd; - } - ypixel++;//accurate mode - - ytop+=SCREEN_WIDTH; - - xleft+=leftadd; - xrght+=rghtadd; - uleft+=uleftadd; - vleft+=vleftadd; - zleft+=zleftadd; - aleft+=aleftadd; - } - - - } - - - /** - * Gouraud blended with 8-bit alpha texture - */ - private void drawsegment_gouraud_texture8(float leftadd, - float rghtadd, - int ytop, - int ybottom) { - //Accurate texture mode added - comments stripped from dupe code, see drawsegment_texture24() for details - int ypixel = ytop; - int lastRowStart = m_texture.length - TEX_WIDTH - 2; - boolean accurateMode = parent.hints[ENABLE_ACCURATE_TEXTURES]; - float screenx = 0; float screeny = 0; float screenz = 0; - float a = 0; float b = 0; float c = 0; - int linearInterpPower = TEX_INTERP_POWER; - int linearInterpLength = 1 << linearInterpPower; - if (accurateMode){ - if(precomputeAccurateTexturing()){ //see if the precomputation goes well, if so finish the setup - newax *= linearInterpLength; - newbx *= linearInterpLength; - newcx *= linearInterpLength; - screenz = nearPlaneDepth; - firstSegment = false; - } else{ - accurateMode = false; //if the matrix inversion screwed up, revert to normal rendering (something is degenerate) - } - } - - ytop *= SCREEN_WIDTH; - ybottom *= SCREEN_WIDTH; -// int p = m_index; - - float iuf = iuadd; - float ivf = ivadd; - float irf = iradd; - float igf = igadd; - float ibf = ibadd; - - while (ytop < ybottom) { - int xstart = (int) (xleft + PIXEL_CENTER); - if (xstart < 0) - xstart = 0; - - int xpixel = xstart;//accurate mode - - int xend = (int) (xrght + PIXEL_CENTER); - if (xend > SCREEN_WIDTH) - xend = SCREEN_WIDTH; - float xdiff = (xstart + PIXEL_CENTER) - xleft; - - int iu = (int) (iuf * xdiff + uleft); - int iv = (int) (ivf * xdiff + vleft); - int ir = (int) (irf * xdiff + rleft); - int ig = (int) (igf * xdiff + gleft); - int ib = (int) (ibf * xdiff + bleft); - float iz = izadd * xdiff + zleft; - - xstart+=ytop; - xend+=ytop; - - if (accurateMode){ - screenx = xmult*(xpixel+.5f-(SCREEN_WIDTH/2.0f)); - screeny = ymult*(ypixel+.5f-(SCREEN_HEIGHT/2.0f)); - a = screenx*ax+screeny*ay+screenz*az; - b = screenx*bx+screeny*by+screenz*bz; - c = screenx*cx+screeny*cy+screenz*cz; - } - boolean goingIn = ( (newcx > 0) == (c > 0) )?false:true; - int interpCounter = 0; - int deltaU = 0; int deltaV = 0; - float fu = 0; float fv = 0; - float oldfu = 0; float oldfv = 0; - - if (accurateMode&&goingIn){ - int rightOffset = (xend-xstart-1)%linearInterpLength; - int leftOffset = linearInterpLength-rightOffset; - float rightOffset2 = rightOffset / ((float)linearInterpLength); - float leftOffset2 = leftOffset / ((float)linearInterpLength); - interpCounter = leftOffset; - float ao = a-leftOffset2*newax; - float bo = b-leftOffset2*newbx; - float co = c-leftOffset2*newcx; - float oneoverc = 65536.0f/co; - oldfu = (ao*oneoverc); oldfv = (bo*oneoverc); - a += rightOffset2*newax; - b += rightOffset2*newbx; - c += rightOffset2*newcx; - oneoverc = 65536.0f/c; - fu = a*oneoverc; fv = b*oneoverc; - deltaU = ((int)(fu - oldfu)) >> linearInterpPower; - deltaV = ((int)(fv - oldfv)) >> linearInterpPower; - iu = ( (int)oldfu )+(leftOffset-1)*deltaU; iv = ( (int)oldfv )+(leftOffset-1)*deltaV; //another "off-by-one" hack - } else{ - float preoneoverc = 65536.0f/c; - fu = (a*preoneoverc); - fv = (b*preoneoverc); - } - - - for ( ; xstart < xend; xstart++ ) { - if(accurateMode){ - if (interpCounter == linearInterpLength) interpCounter = 0; - if (interpCounter == 0){ - a += newax; - b += newbx; - c += newcx; - float oneoverc = 65536.0f/c; - oldfu = fu; oldfv = fv; - fu = (a*oneoverc); fv = (b*oneoverc); - iu = (int)oldfu; iv = (int)oldfv; - deltaU = ((int)(fu - oldfu)) >> linearInterpPower; - deltaV = ((int)(fv - oldfv)) >> linearInterpPower; - } else{ - iu += deltaU; - iv += deltaV; - } - interpCounter++; - } - - try - { - if (noDepthTest || (iz <= m_zbuffer[xstart])) { - //m_zbuffer[xstart] = iz; - - int al0; - if (m_bilinear) { - int ofs = (iv >> 16) * TEX_WIDTH + (iu >> 16); - int iui = iu & 0xFFFF; - al0 = m_texture[ofs] & 0xFF; - int al1 = m_texture[ofs + 1] & 0xFF; - if (ofs < lastRowStart) ofs+=TEX_WIDTH; - int al2 = m_texture[ofs] & 0xFF; - int al3 = m_texture[ofs + 1] & 0xFF; - al0 = al0 + (((al1-al0) * iui) >> 16); - al2 = al2 + (((al3-al2) * iui) >> 16); - al0 = al0 + (((al2-al0) * (iv & 0xFFFF)) >> 16); - } else { - al0 = m_texture[(iv >> 16) * TEX_WIDTH + (iu >> 16)] & 0xFF; - } - - // get RGB colors - int red = ir & 0xFF0000; - int grn = (ig >> 8) & 0xFF00; - int blu = (ib >> 16); - - // get buffer pixels - int bb = m_pixels[xstart]; - int br = (bb & 0xFF0000); // 0x00FF0000 - int bg = (bb & 0xFF00); // 0x0000FF00 - bb = (bb & 0xFF); // 0x000000FF - m_pixels[xstart] = 0xFF000000 | - ((br + (((red - br) * al0) >> 8)) & 0xFF0000) | - ((bg + (((grn - bg) * al0) >> 8)) & 0xFF00) | - ((bb + (((blu - bb) * al0) >> 8)) & 0xFF); - - // write stencil -// m_stencil[xstart] = p; - } - } - catch (Exception e) { - - } - - // - xpixel++;//accurate mode - if (!accurateMode){ - iu+=iuadd; - iv+=ivadd; - } - ir+=iradd; - ig+=igadd; - ib+=ibadd; - iz+=izadd; - } - ypixel++;//accurate mode - ytop+=SCREEN_WIDTH; - xleft+=leftadd; - xrght+=rghtadd; - - uleft+=uleftadd; - vleft+=vleftadd; - rleft+=rleftadd; - gleft+=gleftadd; - bleft+=bleftadd; - zleft+=zleftadd; - } - } - - - /** - * Texture multiplied with gouraud - */ - private void drawsegment_gouraud_texture8_alpha(float leftadd, - float rghtadd, - int ytop, - int ybottom) { - // Accurate texture mode added - comments stripped from dupe code, - // see drawsegment_texture24() for details - int ypixel = ytop; - int lastRowStart = m_texture.length - TEX_WIDTH - 2; - boolean accurateMode = parent.hints[ENABLE_ACCURATE_TEXTURES]; - float screenx = 0; float screeny = 0; float screenz = 0; - float a = 0; float b = 0; float c = 0; - int linearInterpPower = TEX_INTERP_POWER; - int linearInterpLength = 1 << linearInterpPower; - if (accurateMode) { - // see if the precomputation goes well, if so finish the setup - if (precomputeAccurateTexturing()) { - newax *= linearInterpLength; - newbx *= linearInterpLength; - newcx *= linearInterpLength; - screenz = nearPlaneDepth; - firstSegment = false; - } else{ - // if the matrix inversion screwed up, - // revert to normal rendering (something is degenerate) - accurateMode = false; - } - } - - ytop *= SCREEN_WIDTH; - ybottom *= SCREEN_WIDTH; -// int p = m_index; - - float iuf = iuadd; - float ivf = ivadd; - float irf = iradd; - float igf = igadd; - float ibf = ibadd; - float iaf = iaadd; - - while (ytop < ybottom) { - int xstart = (int) (xleft + PIXEL_CENTER); - if (xstart < 0) - xstart = 0; - - int xpixel = xstart;//accurate mode - - int xend = (int) (xrght + PIXEL_CENTER); - if (xend > SCREEN_WIDTH) - xend = SCREEN_WIDTH; - float xdiff = (xstart + PIXEL_CENTER) - xleft; - - int iu = (int) (iuf * xdiff + uleft); - int iv = (int) (ivf * xdiff + vleft); - int ir = (int) (irf * xdiff + rleft); - int ig = (int) (igf * xdiff + gleft); - int ib = (int) (ibf * xdiff + bleft); - int ia = (int) (iaf * xdiff + aleft); - float iz = izadd * xdiff + zleft; - - xstart+=ytop; - xend+=ytop; - - if (accurateMode){ - screenx = xmult*(xpixel+.5f-(SCREEN_WIDTH/2.0f)); - screeny = ymult*(ypixel+.5f-(SCREEN_HEIGHT/2.0f)); - a = screenx*ax+screeny*ay+screenz*az; - b = screenx*bx+screeny*by+screenz*bz; - c = screenx*cx+screeny*cy+screenz*cz; - } - boolean goingIn = ( (newcx > 0) == (c > 0) )?false:true; - int interpCounter = 0; - int deltaU = 0; int deltaV = 0; - float fu = 0; float fv = 0; - float oldfu = 0; float oldfv = 0; - - if (accurateMode&&goingIn){ - int rightOffset = (xend-xstart-1)%linearInterpLength; - int leftOffset = linearInterpLength-rightOffset; - float rightOffset2 = rightOffset / ((float)linearInterpLength); - float leftOffset2 = leftOffset / ((float)linearInterpLength); - interpCounter = leftOffset; - float ao = a-leftOffset2*newax; - float bo = b-leftOffset2*newbx; - float co = c-leftOffset2*newcx; - float oneoverc = 65536.0f/co; - oldfu = (ao*oneoverc); oldfv = (bo*oneoverc); - a += rightOffset2*newax; - b += rightOffset2*newbx; - c += rightOffset2*newcx; - oneoverc = 65536.0f/c; - fu = a*oneoverc; fv = b*oneoverc; - deltaU = ((int)(fu - oldfu)) >> linearInterpPower; - deltaV = ((int)(fv - oldfv)) >> linearInterpPower; - iu = ( (int)oldfu )+(leftOffset-1)*deltaU; iv = ( (int)oldfv )+(leftOffset-1)*deltaV; //another "off-by-one" hack - } else{ - float preoneoverc = 65536.0f/c; - fu = (a*preoneoverc); - fv = (b*preoneoverc); - } - - - for ( ; xstart < xend; xstart++ ) { - if(accurateMode){ - if (interpCounter == linearInterpLength) interpCounter = 0; - if (interpCounter == 0){ - a += newax; - b += newbx; - c += newcx; - float oneoverc = 65536.0f/c; - oldfu = fu; oldfv = fv; - fu = (a*oneoverc); fv = (b*oneoverc); - iu = (int)oldfu; iv = (int)oldfv; - deltaU = ((int)(fu - oldfu)) >> linearInterpPower; - deltaV = ((int)(fv - oldfv)) >> linearInterpPower; - } else{ - iu += deltaU; - iv += deltaV; - } - interpCounter++; - } - - try { - if (noDepthTest || (iz <= m_zbuffer[xstart])) { - //m_zbuffer[xstart] = iz; - - int al0; - if (m_bilinear) { - int ofs = (iv >> 16) * TEX_WIDTH + (iu >> 16); - int iui = iu & 0xFFFF; - al0 = m_texture[ofs] & 0xFF; - int al1 = m_texture[ofs + 1] & 0xFF; - if (ofs < lastRowStart) ofs+=TEX_WIDTH; - int al2 = m_texture[ofs] & 0xFF; - int al3 = m_texture[ofs + 1] & 0xFF; - al0 = al0 + (((al1-al0) * iui) >> 16); - al2 = al2 + (((al3-al2) * iui) >> 16); - al0 = al0 + (((al2-al0) * (iv & 0xFFFF)) >> 16); - } else { - al0 = m_texture[(iv >> 16) * TEX_WIDTH + (iu >> 16)] & 0xFF; - } - al0 = (al0 * (ia >> 16)) >> 8; - - // get RGB colors - int red = ir & 0xFF0000; - int grn = (ig >> 8) & 0xFF00; - int blu = (ib >> 16); - - // get buffer pixels - int bb = m_pixels[xstart]; - int br = (bb & 0xFF0000); // 0x00FF0000 - int bg = (bb & 0xFF00); // 0x0000FF00 - bb = (bb & 0xFF); // 0x000000FF - - m_pixels[xstart] = 0xFF000000 | - ((br + (((red - br) * al0) >> 8)) & 0xFF0000) | - ((bg + (((grn - bg) * al0) >> 8)) & 0xFF00) | - ((bb + (((blu - bb) * al0) >> 8)) & 0xFF); - - // write stencil -// m_stencil[xstart] = p; - } - } catch (Exception e) { } - - // - xpixel++;//accurate mode - if (!accurateMode){ - iu+=iuadd; - iv+=ivadd; - } - ir+=iradd; - ig+=igadd; - ib+=ibadd; - ia+=iaadd; - iz+=izadd; - } - ypixel++;//accurate mode - ytop+=SCREEN_WIDTH; - xleft+=leftadd; - xrght+=rghtadd; - uleft+=uleftadd; - vleft+=vleftadd; - rleft+=rleftadd; - gleft+=gleftadd; - bleft+=bleftadd; - aleft+=aleftadd; - zleft+=zleftadd; - } - } - - - /** - * Texture multiplied with gouraud - */ - private void drawsegment_gouraud_texture24(float leftadd, - float rghtadd, - int ytop, - int ybottom) { - //Accurate texture mode added - comments stripped from dupe code, see drawsegment_texture24() for details - int ypixel = ytop; - int lastRowStart = m_texture.length - TEX_WIDTH - 2; - boolean accurateMode = parent.hints[ENABLE_ACCURATE_TEXTURES]; - float screenx = 0; float screeny = 0; float screenz = 0; - float a = 0; float b = 0; float c = 0; - int linearInterpPower = TEX_INTERP_POWER; - int linearInterpLength = 1 << linearInterpPower; - if (accurateMode){ - if(precomputeAccurateTexturing()){ //see if the precomputation goes well, if so finish the setup - newax *= linearInterpLength; - newbx *= linearInterpLength; - newcx *= linearInterpLength; - screenz = nearPlaneDepth; - firstSegment = false; - } else{ - accurateMode = false; //if the matrix inversion screwed up, revert to normal rendering (something is degenerate) - } - } - - ytop *= SCREEN_WIDTH; - ybottom *= SCREEN_WIDTH; -// int p = m_index; - - float iuf = iuadd; - float ivf = ivadd; - float irf = iradd; - float igf = igadd; - float ibf = ibadd; - - while (ytop < ybottom) { - int xstart = (int) (xleft + PIXEL_CENTER); - if (xstart < 0) - xstart = 0; - - int xpixel = xstart;//accurate mode - - int xend = (int) (xrght + PIXEL_CENTER); - if (xend > SCREEN_WIDTH) - xend = SCREEN_WIDTH; - float xdiff = (xstart + PIXEL_CENTER) - xleft; - - int iu = (int) (iuf * xdiff + uleft); - int iv = (int) (ivf * xdiff + vleft); - int ir = (int) (irf * xdiff + rleft); - int ig = (int) (igf * xdiff + gleft); - int ib = (int) (ibf * xdiff + bleft); - float iz = izadd * xdiff + zleft; - - xstart+=ytop; - xend+=ytop; - - if (accurateMode){ - screenx = xmult*(xpixel+.5f-(SCREEN_WIDTH/2.0f)); - screeny = ymult*(ypixel+.5f-(SCREEN_HEIGHT/2.0f)); - a = screenx*ax+screeny*ay+screenz*az; - b = screenx*bx+screeny*by+screenz*bz; - c = screenx*cx+screeny*cy+screenz*cz; - } - boolean goingIn = ( (newcx > 0) == (c > 0) )?false:true; - int interpCounter = 0; - int deltaU = 0; int deltaV = 0; - float fu = 0; float fv = 0; - float oldfu = 0; float oldfv = 0; - - if (accurateMode&&goingIn){ - int rightOffset = (xend-xstart-1)%linearInterpLength; - int leftOffset = linearInterpLength-rightOffset; - float rightOffset2 = rightOffset / ((float)linearInterpLength); - float leftOffset2 = leftOffset / ((float)linearInterpLength); - interpCounter = leftOffset; - float ao = a-leftOffset2*newax; - float bo = b-leftOffset2*newbx; - float co = c-leftOffset2*newcx; - float oneoverc = 65536.0f/co; - oldfu = (ao*oneoverc); oldfv = (bo*oneoverc); - a += rightOffset2*newax; - b += rightOffset2*newbx; - c += rightOffset2*newcx; - oneoverc = 65536.0f/c; - fu = a*oneoverc; fv = b*oneoverc; - deltaU = ((int)(fu - oldfu)) >> linearInterpPower; - deltaV = ((int)(fv - oldfv)) >> linearInterpPower; - iu = ( (int)oldfu )+(leftOffset-1)*deltaU; iv = ( (int)oldfv )+(leftOffset-1)*deltaV; //another "off-by-one" hack - } else{ - float preoneoverc = 65536.0f/c; - fu = (a*preoneoverc); - fv = (b*preoneoverc); - } - - for ( ; xstart < xend; xstart++ ) { - if(accurateMode){ - if (interpCounter == linearInterpLength) interpCounter = 0; - if (interpCounter == 0){ - a += newax; - b += newbx; - c += newcx; - float oneoverc = 65536.0f/c; - oldfu = fu; oldfv = fv; - fu = (a*oneoverc); fv = (b*oneoverc); - iu = (int)oldfu; iv = (int)oldfv; - deltaU = ((int)(fu - oldfu)) >> linearInterpPower; - deltaV = ((int)(fv - oldfv)) >> linearInterpPower; - } else{ - iu += deltaU; - iv += deltaV; - } - interpCounter++; - } - - try { - if (noDepthTest || (iz <= m_zbuffer[xstart])) { - m_zbuffer[xstart] = iz; - - int red; - int grn; - int blu; - - if (m_bilinear) { - int ofs = (iv >> 16) * TEX_WIDTH + (iu >> 16); - int iui = (iu & 0xFFFF) >> 9; - int ivi = (iv & 0xFFFF) >> 9; - - // get texture pixels - int pix0 = m_texture[ofs]; - int pix1 = m_texture[ofs + 1]; - if (ofs < lastRowStart) ofs+=TEX_WIDTH; - int pix2 = m_texture[ofs]; - int pix3 = m_texture[ofs + 1]; - - // red - int red0 = (pix0 & 0xFF0000); - int red2 = (pix2 & 0xFF0000); - int up = red0 + ((((pix1 & 0xFF0000) - red0) * iui) >> 7); - int dn = red2 + ((((pix3 & 0xFF0000) - red2) * iui) >> 7); - red = up + (((dn-up) * ivi) >> 7); - - // grn - red0 = (pix0 & 0xFF00); - red2 = (pix2 & 0xFF00); - up = red0 + ((((pix1 & 0xFF00) - red0) * iui) >> 7); - dn = red2 + ((((pix3 & 0xFF00) - red2) * iui) >> 7); - grn = up + (((dn-up) * ivi) >> 7); - - // blu - red0 = (pix0 & 0xFF); - red2 = (pix2 & 0xFF); - up = red0 + ((((pix1 & 0xFF) - red0) * iui) >> 7); - dn = red2 + ((((pix3 & 0xFF) - red2) * iui) >> 7); - blu = up + (((dn-up) * ivi) >> 7); - } else { - // get texture pixel color - blu = m_texture[(iv >> 16) * TEX_WIDTH + (iu >> 16)]; - red = (blu & 0xFF0000); - grn = (blu & 0xFF00); - blu = blu & 0xFF; - } - - // - int r = (ir >> 16); - int g = (ig >> 16); - // oops, namespace collision with accurate - // texture vector b...sorry [ewjordan] - int bb2 = (ib >> 16); - - m_pixels[xstart] = 0xFF000000 | - ((((red * r) & 0xFF000000) | ((grn * g) & 0xFF0000) | (blu * bb2)) >> 8); -// m_stencil[xstart] = p; - } - } catch (Exception e) { } - - // - xpixel++;//accurate mode - if (!accurateMode){ - iu+=iuadd; - iv+=ivadd; - } - ir+=iradd; - ig+=igadd; - ib+=ibadd; - iz+=izadd; - } - ypixel++;//accurate mode - - ytop+=SCREEN_WIDTH; - xleft+=leftadd; - xrght+=rghtadd; - uleft+=uleftadd; - vleft+=vleftadd; - rleft+=rleftadd; - gleft+=gleftadd; - bleft+=bleftadd; - zleft+=zleftadd; - } - } - - - /** - * Gouraud*texture blended with interpolating alpha - */ - private void drawsegment_gouraud_texture24_alpha - ( - float leftadd, - float rghtadd, - int ytop, - int ybottom - ) { - - //Accurate texture mode added - comments stripped from dupe code, see drawsegment_texture24() for details - int ypixel = ytop; - int lastRowStart = m_texture.length - TEX_WIDTH - 2; - boolean accurateMode = parent.hints[ENABLE_ACCURATE_TEXTURES]; - float screenx = 0; float screeny = 0; float screenz = 0; - float a = 0; float b = 0; float c = 0; - int linearInterpPower = TEX_INTERP_POWER; - int linearInterpLength = 1 << linearInterpPower; - if (accurateMode){ - if(precomputeAccurateTexturing()){ //see if the precomputation goes well, if so finish the setup - newax *= linearInterpLength; - newbx *= linearInterpLength; - newcx *= linearInterpLength; - screenz = nearPlaneDepth; - firstSegment = false; - } else{ - accurateMode = false; //if the matrix inversion screwed up, revert to normal rendering (something is degenerate) - } - } - - ytop *= SCREEN_WIDTH; - ybottom *= SCREEN_WIDTH; -// int p = m_index; - - float iuf = iuadd; - float ivf = ivadd; - float irf = iradd; - float igf = igadd; - float ibf = ibadd; - float iaf = iaadd; - - while (ytop < ybottom) { - int xstart = (int) (xleft + PIXEL_CENTER); - if (xstart < 0) - xstart = 0; - - int xpixel = xstart;//accurate mode - - int xend = (int) (xrght + PIXEL_CENTER); - if (xend > SCREEN_WIDTH) - xend = SCREEN_WIDTH; - float xdiff = (xstart + PIXEL_CENTER) - xleft; - - int iu = (int) (iuf * xdiff + uleft); - int iv = (int) (ivf * xdiff + vleft); - int ir = (int) (irf * xdiff + rleft); - int ig = (int) (igf * xdiff + gleft); - int ib = (int) (ibf * xdiff + bleft); - int ia = (int) (iaf * xdiff + aleft); - float iz = izadd * xdiff + zleft; - - xstart+=ytop; - xend+=ytop; - - if (accurateMode){ - screenx = xmult*(xpixel+.5f-(SCREEN_WIDTH/2.0f)); - screeny = ymult*(ypixel+.5f-(SCREEN_HEIGHT/2.0f)); - a = screenx*ax+screeny*ay+screenz*az; - b = screenx*bx+screeny*by+screenz*bz; - c = screenx*cx+screeny*cy+screenz*cz; - } - boolean goingIn = ( (newcx > 0) == (c > 0) )?false:true; - int interpCounter = 0; - int deltaU = 0; int deltaV = 0; - float fu = 0; float fv = 0; - float oldfu = 0; float oldfv = 0; - - if (accurateMode&&goingIn){ - int rightOffset = (xend-xstart-1)%linearInterpLength; - int leftOffset = linearInterpLength-rightOffset; - float rightOffset2 = rightOffset / ((float)linearInterpLength); - float leftOffset2 = leftOffset / ((float)linearInterpLength); - interpCounter = leftOffset; - float ao = a-leftOffset2*newax; - float bo = b-leftOffset2*newbx; - float co = c-leftOffset2*newcx; - float oneoverc = 65536.0f/co; - oldfu = (ao*oneoverc); oldfv = (bo*oneoverc); - a += rightOffset2*newax; - b += rightOffset2*newbx; - c += rightOffset2*newcx; - oneoverc = 65536.0f/c; - fu = a*oneoverc; fv = b*oneoverc; - deltaU = ((int)(fu - oldfu)) >> linearInterpPower; - deltaV = ((int)(fv - oldfv)) >> linearInterpPower; - iu = ( (int)oldfu )+(leftOffset-1)*deltaU; iv = ( (int)oldfv )+(leftOffset-1)*deltaV; //another "off-by-one" hack - } else{ - float preoneoverc = 65536.0f/c; - fu = (a*preoneoverc); - fv = (b*preoneoverc); - } - - for ( ;xstart < xend; xstart++ ) { - if(accurateMode){ - if (interpCounter == linearInterpLength) interpCounter = 0; - if (interpCounter == 0){ - a += newax; - b += newbx; - c += newcx; - float oneoverc = 65536.0f/c; - oldfu = fu; oldfv = fv; - fu = (a*oneoverc); fv = (b*oneoverc); - iu = (int)oldfu; iv = (int)oldfv; - deltaU = ((int)(fu - oldfu)) >> linearInterpPower; - deltaV = ((int)(fv - oldfv)) >> linearInterpPower; - } else{ - iu += deltaU; - iv += deltaV; - } - interpCounter++; - } - - // get texture pixel color - try - { - //if (iz < m_zbuffer[xstart]) { - if (noDepthTest || (iz <= m_zbuffer[xstart])) { // [fry 041114] - //m_zbuffer[xstart] = iz; - - // blend - int al = ia >> 16; - - int red; - int grn; - int blu; - - if (m_bilinear) { - int ofs = (iv >> 16) * TEX_WIDTH + (iu >> 16); - int iui = (iu & 0xFFFF) >> 9; - int ivi = (iv & 0xFFFF) >> 9; - - // get texture pixels - int pix0 = m_texture[ofs]; - int pix1 = m_texture[ofs + 1]; - if (ofs < lastRowStart) ofs+=TEX_WIDTH; - int pix2 = m_texture[ofs]; - int pix3 = m_texture[ofs + 1]; - - // red - int red0 = (pix0 & 0xFF0000); - int red2 = (pix2 & 0xFF0000); - int up = red0 + ((((pix1 & 0xFF0000) - red0) * iui) >> 7); - int dn = red2 + ((((pix3 & 0xFF0000) - red2) * iui) >> 7); - red = (up + (((dn-up) * ivi) >> 7)) >> 16; - - // grn - red0 = (pix0 & 0xFF00); - red2 = (pix2 & 0xFF00); - up = red0 + ((((pix1 & 0xFF00) - red0) * iui) >> 7); - dn = red2 + ((((pix3 & 0xFF00) - red2) * iui) >> 7); - grn = (up + (((dn-up) * ivi) >> 7)) >> 8; - - // blu - red0 = (pix0 & 0xFF); - red2 = (pix2 & 0xFF); - up = red0 + ((((pix1 & 0xFF) - red0) * iui) >> 7); - dn = red2 + ((((pix3 & 0xFF) - red2) * iui) >> 7); - blu = up + (((dn-up) * ivi) >> 7); - } else { - blu = m_texture[(iv >> 16) * TEX_WIDTH + (iu >> 16)]; - red = (blu & 0xFF0000) >> 16; // 0 - 255 - grn = (blu & 0xFF00) >> 8; // 0 - 255 - blu = (blu & 0xFF); // 0 - 255 - } - - // multiply with gouraud color - red = (red * ir) >>> 8; // 0x00FF???? - grn = (grn * ig) >>> 16; // 0x0000FF?? - blu = (blu * ib) >>> 24; // 0x000000FF - - // get buffer pixels - int bb = m_pixels[xstart]; - int br = (bb & 0xFF0000); // 0x00FF0000 - int bg = (bb & 0xFF00); // 0x0000FF00 - bb = (bb & 0xFF); // 0x000000FF - - // - m_pixels[xstart] = 0xFF000000 | - ((br + (((red - br) * al) >> 8)) & 0xFF0000) | - ((bg + (((grn - bg) * al) >> 8)) & 0xFF00) | - ((bb + (((blu - bb) * al) >> 8)) & 0xFF); -// m_stencil[xstart] = p; - } - } - catch (Exception e) { - } - - // - xpixel++;//accurate mode - if (!accurateMode){ - iu+=iuadd; - iv+=ivadd; - } - ir+=iradd; - ig+=igadd; - ib+=ibadd; - ia+=iaadd; - iz+=izadd; - } - - ypixel++;//accurate mode - - ytop+=SCREEN_WIDTH; - xleft+=leftadd; - xrght+=rghtadd; - uleft+=uleftadd; - vleft+=vleftadd; - rleft+=rleftadd; - gleft+=gleftadd; - bleft+=bleftadd; - aleft+=aleftadd; - zleft+=zleftadd; - } - } - - - /** - * Gouraud*texture blended with interpolating alpha - */ - private void drawsegment_gouraud_texture32 - ( - float leftadd, - float rghtadd, - int ytop, - int ybottom - ) { - - //Accurate texture mode added - comments stripped from dupe code, see drawsegment_texture24() for details - int ypixel = ytop; - int lastRowStart = m_texture.length - TEX_WIDTH - 2; - boolean accurateMode = parent.hints[ENABLE_ACCURATE_TEXTURES]; - float screenx = 0; float screeny = 0; float screenz = 0; - float a = 0; float b = 0; float c = 0; - int linearInterpPower = TEX_INTERP_POWER; - int linearInterpLength = 1 << linearInterpPower; - if (accurateMode){ - if(precomputeAccurateTexturing()){ //see if the precomputation goes well, if so finish the setup - newax *= linearInterpLength; - newbx *= linearInterpLength; - newcx *= linearInterpLength; - screenz = nearPlaneDepth; - firstSegment = false; - } else{ - accurateMode = false; //if the matrix inversion screwed up, revert to normal rendering (something is degenerate) - } - } - - ytop*=SCREEN_WIDTH; - ybottom*=SCREEN_WIDTH; - //int p = m_index; - - float iuf = iuadd; - float ivf = ivadd; - float irf = iradd; - float igf = igadd; - float ibf = ibadd; - - while (ytop < ybottom) { - int xstart = (int) (xleft + PIXEL_CENTER); - if (xstart < 0) - xstart = 0; - - int xpixel = xstart;//accurate mode - - int xend = (int) (xrght + PIXEL_CENTER); - if (xend > SCREEN_WIDTH) - xend = SCREEN_WIDTH; - float xdiff = (xstart + PIXEL_CENTER) - xleft; - - int iu = (int) (iuf * xdiff + uleft); - int iv = (int) (ivf * xdiff + vleft); - int ir = (int) (irf * xdiff + rleft); - int ig = (int) (igf * xdiff + gleft); - int ib = (int) (ibf * xdiff + bleft); - float iz = izadd * xdiff + zleft; - - xstart+=ytop; - xend+=ytop; - if (accurateMode){ - screenx = xmult*(xpixel+.5f-(SCREEN_WIDTH/2.0f)); - screeny = ymult*(ypixel+.5f-(SCREEN_HEIGHT/2.0f)); - a = screenx*ax+screeny*ay+screenz*az; - b = screenx*bx+screeny*by+screenz*bz; - c = screenx*cx+screeny*cy+screenz*cz; - } - boolean goingIn = ( (newcx > 0) == (c > 0) )?false:true; - int interpCounter = 0; - int deltaU = 0; int deltaV = 0; - float fu = 0; float fv = 0; - float oldfu = 0; float oldfv = 0; - - if (accurateMode&&goingIn){ - int rightOffset = (xend-xstart-1)%linearInterpLength; - int leftOffset = linearInterpLength-rightOffset; - float rightOffset2 = rightOffset / ((float)linearInterpLength); - float leftOffset2 = leftOffset / ((float)linearInterpLength); - interpCounter = leftOffset; - float ao = a-leftOffset2*newax; - float bo = b-leftOffset2*newbx; - float co = c-leftOffset2*newcx; - float oneoverc = 65536.0f/co; - oldfu = (ao*oneoverc); oldfv = (bo*oneoverc); - a += rightOffset2*newax; - b += rightOffset2*newbx; - c += rightOffset2*newcx; - oneoverc = 65536.0f/c; - fu = a*oneoverc; fv = b*oneoverc; - deltaU = ((int)(fu - oldfu)) >> linearInterpPower; - deltaV = ((int)(fv - oldfv)) >> linearInterpPower; - iu = ( (int)oldfu )+(leftOffset-1)*deltaU; iv = ( (int)oldfv )+(leftOffset-1)*deltaV; //another "off-by-one" hack - } else{ - float preoneoverc = 65536.0f/c; - fu = (a*preoneoverc); - fv = (b*preoneoverc); - } - - - for ( ; xstart < xend; xstart++ ) { - if(accurateMode){ - if (interpCounter == linearInterpLength) interpCounter = 0; - if (interpCounter == 0){ - a += newax; - b += newbx; - c += newcx; - float oneoverc = 65536.0f/c; - oldfu = fu; oldfv = fv; - fu = (a*oneoverc); fv = (b*oneoverc); - iu = (int)oldfu; iv = (int)oldfv; - deltaU = ((int)(fu - oldfu)) >> linearInterpPower; - deltaV = ((int)(fv - oldfv)) >> linearInterpPower; - } else{ - iu += deltaU; - iv += deltaV; - } - interpCounter++; - } - - try { - if (noDepthTest || (iz <= m_zbuffer[xstart])) { - //m_zbuffer[xstart] = iz; - - int red; - int grn; - int blu; - int al; - - if (m_bilinear) { - int ofs = (iv >> 16) * TEX_WIDTH + (iu >> 16); - int iui = (iu & 0xFFFF) >> 9; - int ivi = (iv & 0xFFFF) >> 9; - - // get texture pixels - int pix0 = m_texture[ofs]; - int pix1 = m_texture[ofs + 1]; - if (ofs < lastRowStart) ofs+=TEX_WIDTH; - int pix2 = m_texture[ofs]; - int pix3 = m_texture[ofs + 1]; - - // red - int red0 = (pix0 & 0xFF0000); - int red2 = (pix2 & 0xFF0000); - int up = red0 + ((((pix1 & 0xFF0000) - red0) * iui) >> 7); - int dn = red2 + ((((pix3 & 0xFF0000) - red2) * iui) >> 7); - red = (up + (((dn-up) * ivi) >> 7)) >> 16; - - // grn - red0 = (pix0 & 0xFF00); - red2 = (pix2 & 0xFF00); - up = red0 + ((((pix1 & 0xFF00) - red0) * iui) >> 7); - dn = red2 + ((((pix3 & 0xFF00) - red2) * iui) >> 7); - grn = (up + (((dn-up) * ivi) >> 7)) >> 8; - - // blu - red0 = (pix0 & 0xFF); - red2 = (pix2 & 0xFF); - up = red0 + ((((pix1 & 0xFF) - red0) * iui) >> 7); - dn = red2 + ((((pix3 & 0xFF) - red2) * iui) >> 7); - blu = up + (((dn-up) * ivi) >> 7); - - // alpha - pix0>>>=24; - pix2>>>=24; - up = pix0 + ((((pix1 >>> 24) - pix0) * iui) >> 7); - dn = pix2 + ((((pix3 >>> 24) - pix2) * iui) >> 7); - al = up + (((dn-up) * ivi) >> 7); - } else { - // get texture pixel color - blu = m_texture[(iv >> 16) * TEX_WIDTH + (iu >> 16)]; - al = (blu >>> 24); - red = (blu & 0xFF0000) >> 16; - grn = (blu & 0xFF00) >> 8; - blu = blu & 0xFF; - } - - // multiply with gouraud color - red = (red * ir) >>> 8; // 0x00FF???? - grn = (grn * ig) >>> 16; // 0x0000FF?? - blu = (blu * ib) >>> 24; // 0x000000FF - - // get buffer pixels - int bb = m_pixels[xstart]; - int br = (bb & 0xFF0000); // 0x00FF0000 - int bg = (bb & 0xFF00); // 0x0000FF00 - bb = (bb & 0xFF); // 0x000000FF - - // - m_pixels[xstart] = 0xFF000000 | - ((br + (((red - br) * al) >> 8)) & 0xFF0000) | - ((bg + (((grn - bg) * al) >> 8)) & 0xFF00) | - ((bb + (((blu - bb) * al) >> 8)) & 0xFF); - } - } catch (Exception e) { } - - // - xpixel++;//accurate mode - if (!accurateMode){ - iu+=iuadd; - iv+=ivadd; - } - ir+=iradd; - ig+=igadd; - ib+=ibadd; - iz+=izadd; - } - ypixel++;//accurate mode - ytop+=SCREEN_WIDTH; - xleft+=leftadd; - xrght+=rghtadd; - uleft+=uleftadd; - vleft+=vleftadd; - rleft+=rleftadd; - gleft+=gleftadd; - bleft+=bleftadd; - zleft+=zleftadd; - } - } - - - /** - * Gouraud*texture blended with interpolating alpha - */ - private void drawsegment_gouraud_texture32_alpha - ( - float leftadd, - float rghtadd, - int ytop, - int ybottom - ) { - //Accurate texture mode added - comments stripped from dupe code, see drawsegment_texture24() for details - int ypixel = ytop; - int lastRowStart = m_texture.length - TEX_WIDTH - 2; - boolean accurateMode = parent.hints[ENABLE_ACCURATE_TEXTURES]; - float screenx = 0; float screeny = 0; float screenz = 0; - float a = 0; float b = 0; float c = 0; - int linearInterpPower = TEX_INTERP_POWER; - int linearInterpLength = 1 << linearInterpPower; - if (accurateMode){ - if(precomputeAccurateTexturing()){ //see if the precomputation goes well, if so finish the setup - newax *= linearInterpLength; - newbx *= linearInterpLength; - newcx *= linearInterpLength; - screenz = nearPlaneDepth; - firstSegment = false; - } else{ - accurateMode = false; //if the matrix inversion screwed up, revert to normal rendering (something is degenerate) - } - } - - ytop *= SCREEN_WIDTH; - ybottom *= SCREEN_WIDTH; -// int p = m_index; - - float iuf = iuadd; - float ivf = ivadd; - float irf = iradd; - float igf = igadd; - float ibf = ibadd; - float iaf = iaadd; - - while (ytop < ybottom) { - int xstart = (int) (xleft + PIXEL_CENTER); - if (xstart < 0) - xstart = 0; - - int xpixel = xstart;//accurate mode - - int xend = (int) (xrght + PIXEL_CENTER); - if (xend > SCREEN_WIDTH) - xend = SCREEN_WIDTH; - float xdiff = (xstart + PIXEL_CENTER) - xleft; - - int iu = (int) (iuf * xdiff + uleft); - int iv = (int) (ivf * xdiff + vleft); - int ir = (int) (irf * xdiff + rleft); - int ig = (int) (igf * xdiff + gleft); - int ib = (int) (ibf * xdiff + bleft); - int ia = (int) (iaf * xdiff + aleft); - float iz = izadd * xdiff + zleft; - - xstart+=ytop; - xend+=ytop; - if (accurateMode){ - screenx = xmult*(xpixel+.5f-(SCREEN_WIDTH/2.0f)); - screeny = ymult*(ypixel+.5f-(SCREEN_HEIGHT/2.0f)); - a = screenx*ax+screeny*ay+screenz*az; - b = screenx*bx+screeny*by+screenz*bz; - c = screenx*cx+screeny*cy+screenz*cz; - } - boolean goingIn = ( (newcx > 0) == (c > 0) )?false:true; - int interpCounter = 0; - int deltaU = 0; int deltaV = 0; - float fu = 0; float fv = 0; - float oldfu = 0; float oldfv = 0; - - if (accurateMode&&goingIn){ - int rightOffset = (xend-xstart-1)%linearInterpLength; - int leftOffset = linearInterpLength-rightOffset; - float rightOffset2 = rightOffset / ((float)linearInterpLength); - float leftOffset2 = leftOffset / ((float)linearInterpLength); - interpCounter = leftOffset; - float ao = a-leftOffset2*newax; - float bo = b-leftOffset2*newbx; - float co = c-leftOffset2*newcx; - float oneoverc = 65536.0f/co; - oldfu = (ao*oneoverc); oldfv = (bo*oneoverc); - a += rightOffset2*newax; - b += rightOffset2*newbx; - c += rightOffset2*newcx; - oneoverc = 65536.0f/c; - fu = a*oneoverc; fv = b*oneoverc; - deltaU = ((int)(fu - oldfu)) >> linearInterpPower; - deltaV = ((int)(fv - oldfv)) >> linearInterpPower; - iu = ( (int)oldfu )+(leftOffset-1)*deltaU; iv = ( (int)oldfv )+(leftOffset-1)*deltaV; //another "off-by-one" hack - } else{ - float preoneoverc = 65536.0f/c; - fu = (a*preoneoverc); - fv = (b*preoneoverc); - } - - for ( ;xstart < xend; xstart++ ) { - if(accurateMode){ - if (interpCounter == linearInterpLength) interpCounter = 0; - if (interpCounter == 0){ - a += newax; - b += newbx; - c += newcx; - float oneoverc = 65536.0f/c; - oldfu = fu; oldfv = fv; - fu = (a*oneoverc); fv = (b*oneoverc); - iu = (int)oldfu; iv = (int)oldfv; - deltaU = ((int)(fu - oldfu)) >> linearInterpPower; - deltaV = ((int)(fv - oldfv)) >> linearInterpPower; - } else{ - iu += deltaU; - iv += deltaV; - } - interpCounter++; - } - - // get texture pixel color - try { - //if (iz < m_zbuffer[xstart]) { - if (noDepthTest || (iz <= m_zbuffer[xstart])) { // [fry 041114] - //m_zbuffer[xstart] = iz; - - // blend - int al = ia >> 16; - - int red; - int grn; - int blu; - - if (m_bilinear) { - int ofs = (iv >> 16) * TEX_WIDTH + (iu >> 16); - int iui = (iu & 0xFFFF) >> 9; - int ivi = (iv & 0xFFFF) >> 9; - - // get texture pixels - int pix0 = m_texture[ofs]; - int pix1 = m_texture[ofs + 1]; - if (ofs < lastRowStart) ofs+=TEX_WIDTH; - int pix2 = m_texture[ofs]; - int pix3 = m_texture[ofs + 1]; - - // red - int red0 = (pix0 & 0xFF0000); - int red2 = (pix2 & 0xFF0000); - int up = red0 + ((((pix1 & 0xFF0000) - red0) * iui) >> 7); - int dn = red2 + ((((pix3 & 0xFF0000) - red2) * iui) >> 7); - red = (up + (((dn-up) * ivi) >> 7)) >> 16; - - // grn - red0 = (pix0 & 0xFF00); - red2 = (pix2 & 0xFF00); - up = red0 + ((((pix1 & 0xFF00) - red0) * iui) >> 7); - dn = red2 + ((((pix3 & 0xFF00) - red2) * iui) >> 7); - grn = (up + (((dn-up) * ivi) >> 7)) >> 8; - - // blu - red0 = (pix0 & 0xFF); - red2 = (pix2 & 0xFF); - up = red0 + ((((pix1 & 0xFF) - red0) * iui) >> 7); - dn = red2 + ((((pix3 & 0xFF) - red2) * iui) >> 7); - blu = up + (((dn-up) * ivi) >> 7); - - // alpha - pix0>>>=24; - pix2>>>=24; - up = pix0 + ((((pix1 >>> 24) - pix0) * iui) >> 7); - dn = pix2 + ((((pix3 >>> 24) - pix2) * iui) >> 7); - al = al * (up + (((dn-up) * ivi) >> 7)) >> 8; - } else { - blu = m_texture[(iv >> 16) * TEX_WIDTH + (iu >> 16)]; - al = al * (blu >>> 24) >> 8; - red = (blu & 0xFF0000) >> 16; // 0 - 255 - grn = (blu & 0xFF00) >> 8; // 0 - 255 - blu = (blu & 0xFF); // 0 - 255 - } - - // multiply with gouraud color - red = (red * ir) >>> 8; // 0x00FF???? - grn = (grn * ig) >>> 16; // 0x0000FF?? - blu = (blu * ib) >>> 24; // 0x000000FF - - // get buffer pixels - int bb = m_pixels[xstart]; - int br = (bb & 0xFF0000); // 0x00FF0000 - int bg = (bb & 0xFF00); // 0x0000FF00 - bb = (bb & 0xFF); // 0x000000FF - - // - m_pixels[xstart] = 0xFF000000 | - ((br + (((red - br) * al) >> 8)) & 0xFF0000) | - ((bg + (((grn - bg) * al) >> 8)) & 0xFF00) | - ((bb + (((blu - bb) * al) >> 8)) & 0xFF); -// m_stencil[xstart] = p; - } - } catch (Exception e) { } - - // - xpixel++;//accurate mode - if (!accurateMode){ - iu+=iuadd; - iv+=ivadd; - } - ir+=iradd; - ig+=igadd; - ib+=ibadd; - ia+=iaadd; - iz+=izadd; - } - ypixel++;//accurate mode - ytop+=SCREEN_WIDTH; - xleft+=leftadd; - xrght+=rghtadd; - uleft+=uleftadd; - vleft+=vleftadd; - rleft+=rleftadd; - gleft+=gleftadd; - bleft+=bleftadd; - aleft+=aleftadd; - zleft+=zleftadd; - } - } -} diff --git a/core/src/processing/core/PVector.java b/core/src/processing/core/PVector.java deleted file mode 100644 index 1fb4f1f76..000000000 --- a/core/src/processing/core/PVector.java +++ /dev/null @@ -1,565 +0,0 @@ -/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */ - -/* - Part of the Processing project - http://processing.org - - Copyright (c) 200X Dan Shiffman - Copyright (c) 2008 Ben Fry and Casey Reas - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General - Public License along with this library; if not, write to the - Free Software Foundation, Inc., 59 Temple Place, Suite 330, - Boston, MA 02111-1307 USA - */ - -package processing.core; - -/** - * A class to describe a two or three dimensional vector. - *

    - * The result of all functions are applied to the vector itself, with the - * exception of cross(), which returns a new PVector (or writes to a specified - * 'target' PVector). That is, add() will add the contents of one vector to - * this one. Using add() with additional parameters allows you to put the - * result into a new PVector. Functions that act on multiple vectors also - * include static versions. Because creating new objects can be computationally - * expensive, most functions include an optional 'target' PVector, so that a - * new PVector object is not created with each operation. - *

    - * Initially based on the Vector3D class by Dan Shiffman. - */ -public class PVector { - - /** The x component of the vector. */ - public float x; - - /** The y component of the vector. */ - public float y; - - /** The z component of the vector. */ - public float z; - - /** Array so that this can be temporarily used in an array context */ - protected float[] array; - - - /** - * Constructor for an empty vector: x, y, and z are set to 0. - */ - public PVector() { - } - - - /** - * Constructor for a 3D vector. - * - * @param x the x coordinate. - * @param y the y coordinate. - * @param z the y coordinate. - */ - public PVector(float x, float y, float z) { - this.x = x; - this.y = y; - this.z = z; - } - - - /** - * Constructor for a 2D vector: z coordinate is set to 0. - * - * @param x the x coordinate. - * @param y the y coordinate. - */ - public PVector(float x, float y) { - this.x = x; - this.y = y; - this.z = 0; - } - - - /** - * Set x, y, and z coordinates. - * - * @param x the x coordinate. - * @param y the y coordinate. - * @param z the z coordinate. - */ - public void set(float x, float y, float z) { - this.x = x; - this.y = y; - this.z = z; - } - - - /** - * Set x, y, and z coordinates from a Vector3D object. - * - * @param v the PVector object to be copied - */ - public void set(PVector v) { - x = v.x; - y = v.y; - z = v.z; - } - - - /** - * Set the x, y (and maybe z) coordinates using a float[] array as the source. - * @param source array to copy from - */ - public void set(float[] source) { - if (source.length >= 2) { - x = source[0]; - y = source[1]; - } - if (source.length >= 3) { - z = source[2]; - } - } - - - /** - * Get a copy of this vector. - */ - public PVector get() { - return new PVector(x, y, z); - } - - - public float[] get(float[] target) { - if (target == null) { - return new float[] { x, y, z }; - } - if (target.length >= 2) { - target[0] = x; - target[1] = y; - } - if (target.length >= 3) { - target[2] = z; - } - return target; - } - - - /** - * Calculate the magnitude (length) of the vector - * @return the magnitude of the vector - */ - public float mag() { - return (float) Math.sqrt(x*x + y*y + z*z); - } - - - /** - * Add a vector to this vector - * @param v the vector to be added - */ - public void add(PVector v) { - x += v.x; - y += v.y; - z += v.z; - } - - - public void add(float x, float y, float z) { - this.x += x; - this.y += y; - this.z += z; - } - - - /** - * Add two vectors - * @param v1 a vector - * @param v2 another vector - * @return a new vector that is the sum of v1 and v2 - */ - static public PVector add(PVector v1, PVector v2) { - return add(v1, v2, null); - } - - - /** - * Add two vectors into a target vector - * @param v1 a vector - * @param v2 another vector - * @param target the target vector (if null, a new vector will be created) - * @return a new vector that is the sum of v1 and v2 - */ - static public PVector add(PVector v1, PVector v2, PVector target) { - if (target == null) { - target = new PVector(v1.x + v2.x,v1.y + v2.y, v1.z + v2.z); - } else { - target.set(v1.x + v2.x, v1.y + v2.y, v1.z + v2.z); - } - return target; - } - - - /** - * Subtract a vector from this vector - * @param v the vector to be subtracted - */ - public void sub(PVector v) { - x -= v.x; - y -= v.y; - z -= v.z; - } - - - public void sub(float x, float y, float z) { - this.x -= x; - this.y -= y; - this.z -= z; - } - - - /** - * Subtract one vector from another - * @param v1 a vector - * @param v2 another vector - * @return a new vector that is v1 - v2 - */ - static public PVector sub(PVector v1, PVector v2) { - return sub(v1, v2, null); - } - - - static public PVector sub(PVector v1, PVector v2, PVector target) { - if (target == null) { - target = new PVector(v1.x - v2.x, v1.y - v2.y, v1.z - v2.z); - } else { - target.set(v1.x - v2.x, v1.y - v2.y, v1.z - v2.z); - } - return target; - } - - - /** - * Multiply this vector by a scalar - * @param n the value to multiply by - */ - public void mult(float n) { - x *= n; - y *= n; - z *= n; - } - - - /** - * Multiply a vector by a scalar - * @param v a vector - * @param n scalar - * @return a new vector that is v1 * n - */ - static public PVector mult(PVector v, float n) { - return mult(v, n, null); - } - - - /** - * Multiply a vector by a scalar, and write the result into a target PVector. - * @param v a vector - * @param n scalar - * @param target PVector to store the result - * @return the target vector, now set to v1 * n - */ - static public PVector mult(PVector v, float n, PVector target) { - if (target == null) { - target = new PVector(v.x*n, v.y*n, v.z*n); - } else { - target.set(v.x*n, v.y*n, v.z*n); - } - return target; - } - - - /** - * Multiply each element of one vector by the elements of another vector. - * @param v the vector to multiply by - */ - public void mult(PVector v) { - x *= v.x; - y *= v.y; - z *= v.z; - } - - - /** - * Multiply each element of one vector by the individual elements of another - * vector, and return the result as a new PVector. - */ - static public PVector mult(PVector v1, PVector v2) { - return mult(v1, v2, null); - } - - - /** - * Multiply each element of one vector by the individual elements of another - * vector, and write the result into a target vector. - * @param v1 the first vector - * @param v2 the second vector - * @param target PVector to store the result - */ - static public PVector mult(PVector v1, PVector v2, PVector target) { - if (target == null) { - target = new PVector(v1.x*v2.x, v1.y*v2.y, v1.z*v2.z); - } else { - target.set(v1.x*v2.x, v1.y*v2.y, v1.z*v2.z); - } - return target; - } - - - /** - * Divide this vector by a scalar - * @param n the value to divide by - */ - public void div(float n) { - x /= n; - y /= n; - z /= n; - } - - - /** - * Divide a vector by a scalar and return the result in a new vector. - * @param v a vector - * @param n scalar - * @return a new vector that is v1 / n - */ - static public PVector div(PVector v, float n) { - return div(v, n, null); - } - - - static public PVector div(PVector v, float n, PVector target) { - if (target == null) { - target = new PVector(v.x/n, v.y/n, v.z/n); - } else { - target.set(v.x/n, v.y/n, v.z/n); - } - return target; - } - - - /** - * Divide each element of one vector by the elements of another vector. - */ - public void div(PVector v) { - x /= v.x; - y /= v.y; - z /= v.z; - } - - - /** - * Multiply each element of one vector by the individual elements of another - * vector, and return the result as a new PVector. - */ - static public PVector div(PVector v1, PVector v2) { - return div(v1, v2, null); - } - - - /** - * Divide each element of one vector by the individual elements of another - * vector, and write the result into a target vector. - * @param v1 the first vector - * @param v2 the second vector - * @param target PVector to store the result - */ - static public PVector div(PVector v1, PVector v2, PVector target) { - if (target == null) { - target = new PVector(v1.x/v2.x, v1.y/v2.y, v1.z/v2.z); - } else { - target.set(v1.x/v2.x, v1.y/v2.y, v1.z/v2.z); - } - return target; - } - - - /** - * Calculate the Euclidean distance between two points (considering a point as a vector object) - * @param v another vector - * @return the Euclidean distance between - */ - public float dist(PVector v) { - float dx = x - v.x; - float dy = y - v.y; - float dz = z - v.z; - return (float) Math.sqrt(dx*dx + dy*dy + dz*dz); - } - - - /** - * Calculate the Euclidean distance between two points (considering a point as a vector object) - * @param v1 a vector - * @param v2 another vector - * @return the Euclidean distance between v1 and v2 - */ - static public float dist(PVector v1, PVector v2) { - float dx = v1.x - v2.x; - float dy = v1.y - v2.y; - float dz = v1.z - v2.z; - return (float) Math.sqrt(dx*dx + dy*dy + dz*dz); - } - - - /** - * Calculate the dot product with another vector - * @return the dot product - */ - public float dot(PVector v) { - return x*v.x + y*v.y + z*v.z; - } - - - public float dot(float x, float y, float z) { - return this.x*x + this.y*y + this.z*z; - } - - - static public float dot(PVector v1, PVector v2) { - return v1.x*v2.x + v1.y*v2.y + v1.z*v2.z; - } - - - /** - * Return a vector composed of the cross product between this and another. - */ - public PVector cross(PVector v) { - return cross(v, null); - } - - - /** - * Perform cross product between this and another vector, and store the - * result in 'target'. If target is null, a new vector is created. - */ - public PVector cross(PVector v, PVector target) { - float crossX = y * v.z - v.y * z; - float crossY = z * v.x - v.z * x; - float crossZ = x * v.y - v.x * y; - - if (target == null) { - target = new PVector(crossX, crossY, crossZ); - } else { - target.set(crossX, crossY, crossZ); - } - return target; - } - - - static public PVector cross(PVector v1, PVector v2, PVector target) { - float crossX = v1.y * v2.z - v2.y * v1.z; - float crossY = v1.z * v2.x - v2.z * v1.x; - float crossZ = v1.x * v2.y - v2.x * v1.y; - - if (target == null) { - target = new PVector(crossX, crossY, crossZ); - } else { - target.set(crossX, crossY, crossZ); - } - return target; - } - - - /** - * Normalize the vector to length 1 (make it a unit vector) - */ - public void normalize() { - float m = mag(); - if (m != 0 && m != 1) { - div(m); - } - } - - - /** - * Normalize this vector, storing the result in another vector. - * @param target Set to null to create a new vector - * @return a new vector (if target was null), or target - */ - public PVector normalize(PVector target) { - if (target == null) { - target = new PVector(); - } - float m = mag(); - if (m > 0) { - target.set(x/m, y/m, z/m); - } else { - target.set(x, y, z); - } - return target; - } - - - /** - * Limit the magnitude of this vector - * @param max the maximum length to limit this vector - */ - public void limit(float max) { - if (mag() > max) { - normalize(); - mult(max); - } - } - - - /** - * Calculate the angle of rotation for this vector (only 2D vectors) - * @return the angle of rotation - */ - public float heading2D() { - float angle = (float) Math.atan2(-y, x); - return -1*angle; - } - - - /** - * Calculate the angle between two vectors, using the dot product - * @param v1 a vector - * @param v2 another vector - * @return the angle between the vectors - */ - static public float angleBetween(PVector v1, PVector v2) { - double dot = v1.x * v2.x + v1.y * v2.y + v1.z * v2.z; - double v1mag = Math.sqrt(v1.x * v1.x + v1.y * v1.y + v1.z * v1.z); - double v2mag = Math.sqrt(v2.x * v2.x + v2.y * v2.y + v2.z * v2.z); - return (float) Math.acos(dot / (v1mag * v2mag)); - } - - - public String toString() { - return "[ " + x + ", " + y + ", " + z + " ]"; - } - - - /** - * Return a representation of this vector as a float array. This is only for - * temporary use. If used in any other fashion, the contents should be copied - * by using the get() command to copy into your own array. - */ - public float[] array() { - if (array == null) { - array = new float[3]; - } - array[0] = x; - array[1] = y; - array[2] = z; - return array; - } -} - - diff --git a/core/src/processing/xml/CDATAReader.java b/core/src/processing/xml/CDATAReader.java deleted file mode 100644 index 11b6849a7..000000000 --- a/core/src/processing/xml/CDATAReader.java +++ /dev/null @@ -1,193 +0,0 @@ -/* CDATAReader.java NanoXML/Java - * - * $Revision: 1.3 $ - * $Date: 2002/01/04 21:03:28 $ - * $Name: RELEASE_2_2_1 $ - * - * This file is part of NanoXML 2 for Java. - * Copyright (C) 2000-2002 Marc De Scheemaecker, All Rights Reserved. - * - * This software is provided 'as-is', without any express or implied warranty. - * In no event will the authors be held liable for any damages arising from the - * use of this software. - * - * Permission is granted to anyone to use this software for any purpose, - * including commercial applications, and to alter it and redistribute it - * freely, subject to the following restrictions: - * - * 1. The origin of this software must not be misrepresented; you must not - * claim that you wrote the original software. If you use this software in - * a product, an acknowledgment in the product documentation would be - * appreciated but is not required. - * - * 2. Altered source versions must be plainly marked as such, and must not be - * misrepresented as being the original software. - * - * 3. This notice may not be removed or altered from any source distribution. - */ - -package processing.xml; - - -import java.io.Reader; -import java.io.IOException; - - -/** - * This reader reads data from another reader until the end of a CDATA section - * (]]>) has been encountered. - * - * @author Marc De Scheemaecker - * @version $Name: RELEASE_2_2_1 $, $Revision: 1.3 $ - */ -class CDATAReader - extends Reader -{ - - /** - * The encapsulated reader. - */ - private StdXMLReader reader; - - - /** - * Saved char. - */ - private char savedChar; - - - /** - * True if the end of the stream has been reached. - */ - private boolean atEndOfData; - - - /** - * Creates the reader. - * - * @param reader the encapsulated reader - */ - CDATAReader(StdXMLReader reader) - { - this.reader = reader; - this.savedChar = 0; - this.atEndOfData = false; - } - - - /** - * Cleans up the object when it's destroyed. - */ - protected void finalize() - throws Throwable - { - this.reader = null; - super.finalize(); - } - - - /** - * Reads a block of data. - * - * @param buffer where to put the read data - * @param offset first position in buffer to put the data - * @param size maximum number of chars to read - * - * @return the number of chars read, or -1 if at EOF - * - * @throws java.io.IOException - * if an error occurred reading the data - */ - public int read(char[] buffer, - int offset, - int size) - throws IOException - { - int charsRead = 0; - - if (this.atEndOfData) { - return -1; - } - - if ((offset + size) > buffer.length) { - size = buffer.length - offset; - } - - while (charsRead < size) { - char ch = this.savedChar; - - if (ch == 0) { - ch = this.reader.read(); - } else { - this.savedChar = 0; - } - - if (ch == ']') { - char ch2 = this.reader.read(); - - if (ch2 == ']') { - char ch3 = this.reader.read(); - - if (ch3 == '>') { - this.atEndOfData = true; - break; - } - - this.savedChar = ch2; - this.reader.unread(ch3); - } else { - this.reader.unread(ch2); - } - } - buffer[charsRead] = ch; - charsRead++; - } - - if (charsRead == 0) { - charsRead = -1; - } - - return charsRead; - } - - - /** - * Skips remaining data and closes the stream. - * - * @throws java.io.IOException - * if an error occurred reading the data - */ - public void close() - throws IOException - { - while (! this.atEndOfData) { - char ch = this.savedChar; - - if (ch == 0) { - ch = this.reader.read(); - } else { - this.savedChar = 0; - } - - if (ch == ']') { - char ch2 = this.reader.read(); - - if (ch2 == ']') { - char ch3 = this.reader.read(); - - if (ch3 == '>') { - break; - } - - this.savedChar = ch2; - this.reader.unread(ch3); - } else { - this.reader.unread(ch2); - } - } - } - - this.atEndOfData = true; - } - -} diff --git a/core/src/processing/xml/ContentReader.java b/core/src/processing/xml/ContentReader.java deleted file mode 100644 index 66430c06b..000000000 --- a/core/src/processing/xml/ContentReader.java +++ /dev/null @@ -1,212 +0,0 @@ -/* ContentReader.java NanoXML/Java - * - * $Revision: 1.4 $ - * $Date: 2002/01/04 21:03:28 $ - * $Name: RELEASE_2_2_1 $ - * - * This file is part of NanoXML 2 for Java. - * Copyright (C) 2000-2002 Marc De Scheemaecker, All Rights Reserved. - * - * This software is provided 'as-is', without any express or implied warranty. - * In no event will the authors be held liable for any damages arising from the - * use of this software. - * - * Permission is granted to anyone to use this software for any purpose, - * including commercial applications, and to alter it and redistribute it - * freely, subject to the following restrictions: - * - * 1. The origin of this software must not be misrepresented; you must not - * claim that you wrote the original software. If you use this software in - * a product, an acknowledgment in the product documentation would be - * appreciated but is not required. - * - * 2. Altered source versions must be plainly marked as such, and must not be - * misrepresented as being the original software. - * - * 3. This notice may not be removed or altered from any source distribution. - */ - -package processing.xml; - - -import java.io.Reader; -import java.io.IOException; - - -/** - * This reader reads data from another reader until a new element has - * been encountered. - * - * @author Marc De Scheemaecker - * @version $Name: RELEASE_2_2_1 $, $Revision: 1.4 $ - */ -class ContentReader - extends Reader -{ - - /** - * The encapsulated reader. - */ - private StdXMLReader reader; - - - /** - * Buffer. - */ - private String buffer; - - - /** - * Pointer into the buffer. - */ - private int bufferIndex; - - - /** - * The entity resolver. - */ - private XMLEntityResolver resolver; - - - /** - * Creates the reader. - * - * @param reader the encapsulated reader - * @param resolver the entity resolver - * @param buffer data that has already been read from reader - */ - ContentReader(StdXMLReader reader, - XMLEntityResolver resolver, - String buffer) - { - this.reader = reader; - this.resolver = resolver; - this.buffer = buffer; - this.bufferIndex = 0; - } - - - /** - * Cleans up the object when it's destroyed. - */ - protected void finalize() - throws Throwable - { - this.reader = null; - this.resolver = null; - this.buffer = null; - super.finalize(); - } - - - /** - * Reads a block of data. - * - * @param outputBuffer where to put the read data - * @param offset first position in buffer to put the data - * @param size maximum number of chars to read - * - * @return the number of chars read, or -1 if at EOF - * - * @throws java.io.IOException - * if an error occurred reading the data - */ - public int read(char[] outputBuffer, - int offset, - int size) - throws IOException - { - try { - int charsRead = 0; - int bufferLength = this.buffer.length(); - - if ((offset + size) > outputBuffer.length) { - size = outputBuffer.length - offset; - } - - while (charsRead < size) { - String str = ""; - char ch; - - if (this.bufferIndex >= bufferLength) { - str = XMLUtil.read(this.reader, '&'); - ch = str.charAt(0); - } else { - ch = this.buffer.charAt(this.bufferIndex); - this.bufferIndex++; - outputBuffer[charsRead] = ch; - charsRead++; - continue; // don't interprete chars in the buffer - } - - if (ch == '<') { - this.reader.unread(ch); - break; - } - - if ((ch == '&') && (str.length() > 1)) { - if (str.charAt(1) == '#') { - ch = XMLUtil.processCharLiteral(str); - } else { - XMLUtil.processEntity(str, this.reader, this.resolver); - continue; - } - } - - outputBuffer[charsRead] = ch; - charsRead++; - } - - if (charsRead == 0) { - charsRead = -1; - } - - return charsRead; - } catch (XMLParseException e) { - throw new IOException(e.getMessage()); - } - } - - - /** - * Skips remaining data and closes the stream. - * - * @throws java.io.IOException - * if an error occurred reading the data - */ - public void close() - throws IOException - { - try { - int bufferLength = this.buffer.length(); - - for (;;) { - String str = ""; - char ch; - - if (this.bufferIndex >= bufferLength) { - str = XMLUtil.read(this.reader, '&'); - ch = str.charAt(0); - } else { - ch = this.buffer.charAt(this.bufferIndex); - this.bufferIndex++; - continue; // don't interprete chars in the buffer - } - - if (ch == '<') { - this.reader.unread(ch); - break; - } - - if ((ch == '&') && (str.length() > 1)) { - if (str.charAt(1) != '#') { - XMLUtil.processEntity(str, this.reader, this.resolver); - } - } - } - } catch (XMLParseException e) { - throw new IOException(e.getMessage()); - } - } - -} diff --git a/core/src/processing/xml/PIReader.java b/core/src/processing/xml/PIReader.java deleted file mode 100644 index d6a2bf298..000000000 --- a/core/src/processing/xml/PIReader.java +++ /dev/null @@ -1,157 +0,0 @@ -/* PIReader.java NanoXML/Java - * - * $Revision: 1.3 $ - * $Date: 2002/01/04 21:03:28 $ - * $Name: RELEASE_2_2_1 $ - * - * This file is part of NanoXML 2 for Java. - * Copyright (C) 2000-2002 Marc De Scheemaecker, All Rights Reserved. - * - * This software is provided 'as-is', without any express or implied warranty. - * In no event will the authors be held liable for any damages arising from the - * use of this software. - * - * Permission is granted to anyone to use this software for any purpose, - * including commercial applications, and to alter it and redistribute it - * freely, subject to the following restrictions: - * - * 1. The origin of this software must not be misrepresented; you must not - * claim that you wrote the original software. If you use this software in - * a product, an acknowledgment in the product documentation would be - * appreciated but is not required. - * - * 2. Altered source versions must be plainly marked as such, and must not be - * misrepresented as being the original software. - * - * 3. This notice may not be removed or altered from any source distribution. - */ - -package processing.xml; - - -import java.io.Reader; -import java.io.IOException; - - -/** - * This reader reads data from another reader until the end of a processing - * instruction (?>) has been encountered. - * - * @author Marc De Scheemaecker - * @version $Name: RELEASE_2_2_1 $, $Revision: 1.3 $ - */ -class PIReader - extends Reader -{ - - /** - * The encapsulated reader. - */ - private StdXMLReader reader; - - - /** - * True if the end of the stream has been reached. - */ - private boolean atEndOfData; - - - /** - * Creates the reader. - * - * @param reader the encapsulated reader - */ - PIReader(StdXMLReader reader) - { - this.reader = reader; - this.atEndOfData = false; - } - - - /** - * Cleans up the object when it's destroyed. - */ - protected void finalize() - throws Throwable - { - this.reader = null; - super.finalize(); - } - - - /** - * Reads a block of data. - * - * @param buffer where to put the read data - * @param offset first position in buffer to put the data - * @param size maximum number of chars to read - * - * @return the number of chars read, or -1 if at EOF - * - * @throws java.io.IOException - * if an error occurred reading the data - */ - public int read(char[] buffer, - int offset, - int size) - throws IOException - { - if (this.atEndOfData) { - return -1; - } - - int charsRead = 0; - - if ((offset + size) > buffer.length) { - size = buffer.length - offset; - } - - while (charsRead < size) { - char ch = this.reader.read(); - - if (ch == '?') { - char ch2 = this.reader.read(); - - if (ch2 == '>') { - this.atEndOfData = true; - break; - } - - this.reader.unread(ch2); - } - - buffer[charsRead] = ch; - charsRead++; - } - - if (charsRead == 0) { - charsRead = -1; - } - - return charsRead; - } - - - /** - * Skips remaining data and closes the stream. - * - * @throws java.io.IOException - * if an error occurred reading the data - */ - public void close() - throws IOException - { - while (! this.atEndOfData) { - char ch = this.reader.read(); - - if (ch == '?') { - char ch2 = this.reader.read(); - - if (ch2 == '>') { - this.atEndOfData = true; - } - } - } - } - -} diff --git a/core/src/processing/xml/StdXMLBuilder.java b/core/src/processing/xml/StdXMLBuilder.java deleted file mode 100644 index 54a223546..000000000 --- a/core/src/processing/xml/StdXMLBuilder.java +++ /dev/null @@ -1,356 +0,0 @@ -/* StdXMLBuilder.java NanoXML/Java - * - * $Revision: 1.3 $ - * $Date: 2002/01/04 21:03:28 $ - * $Name: RELEASE_2_2_1 $ - * - * This file is part of NanoXML 2 for Java. - * Copyright (C) 2000-2002 Marc De Scheemaecker, All Rights Reserved. - * - * This software is provided 'as-is', without any express or implied warranty. - * In no event will the authors be held liable for any damages arising from the - * use of this software. - * - * Permission is granted to anyone to use this software for any purpose, - * including commercial applications, and to alter it and redistribute it - * freely, subject to the following restrictions: - * - * 1. The origin of this software must not be misrepresented; you must not - * claim that you wrote the original software. If you use this software in - * a product, an acknowledgment in the product documentation would be - * appreciated but is not required. - * - * 2. Altered source versions must be plainly marked as such, and must not be - * misrepresented as being the original software. - * - * 3. This notice may not be removed or altered from any source distribution. - */ - -package processing.xml; - - -import java.io.IOException; -import java.io.Reader; -import java.util.Stack; - - -/** - * StdXMLBuilder is a concrete implementation of IXMLBuilder which creates a - * tree of IXMLElement from an XML data source. - * - * @see processing.xml.XMLElement - * - * @author Marc De Scheemaecker - * @version $Name: RELEASE_2_2_1 $, $Revision: 1.3 $ - */ -public class StdXMLBuilder -{ - - /** - * This stack contains the current element and its parents. - */ - private Stack stack; - - - /** - * The root element of the parsed XML tree. - */ - private XMLElement root; - - private XMLElement parent; - - /** - * Prototype element for creating the tree. - */ - //private XMLElement prototype; - - - /** - * Creates the builder. - */ - public StdXMLBuilder() - { - this.stack = null; - this.root = null; - //this(new XMLElement()); - } - - - public StdXMLBuilder(XMLElement parent) - { - this.parent = parent; - } - - - /** - * Creates the builder. - * - * @param prototype the prototype to use when building the tree. - */ -// public StdXMLBuilder(XMLElement prototype) -// { -// this.stack = null; -// this.root = null; -// this.prototype = prototype; -// } - - - /** - * Cleans up the object when it's destroyed. - */ - protected void finalize() - throws Throwable - { - //this.prototype = null; - this.root = null; - this.stack.clear(); - this.stack = null; - super.finalize(); - } - - - /** - * This method is called before the parser starts processing its input. - * - * @param systemID the system ID of the XML data source. - * @param lineNr the line on which the parsing starts. - */ - public void startBuilding(String systemID, - int lineNr) - { - this.stack = new Stack(); - this.root = null; - } - - - /** - * This method is called when a processing instruction is encountered. - * PIs with target "xml" are handled by the parser. - * - * @param target the PI target. - * @param reader to read the data from the PI. - */ - public void newProcessingInstruction(String target, - Reader reader) - { - // nothing to do - } - - - /** - * This method is called when a new XML element is encountered. - * - * @see #endElement - * - * @param name the name of the element. - * @param nsPrefix the prefix used to identify the namespace. If no - * namespace has been specified, this parameter is null. - * @param nsURI the URI associated with the namespace. If no - * namespace has been specified, or no URI is - * associated with nsPrefix, this parameter is null. - * @param systemID the system ID of the XML data source. - * @param lineNr the line in the source where the element starts. - */ - public void startElement(String name, - String nsPrefix, - String nsURI, - String systemID, - int lineNr) - { - String fullName = name; - - if (nsPrefix != null) { - fullName = nsPrefix + ':' + name; - } - - //XMLElement elt = this.prototype.createElement(fullName, nsURI, - // systemID, lineNr); - -// XMLElement elt = new XMLElement(fullName, nsURI, systemID, lineNr); -// -// if (this.stack.empty()) { -// this.root = elt; -// } else { -// XMLElement top = (XMLElement) this.stack.peek(); -// top.addChild(elt); -// } -// stack.push(elt); - - if (this.stack.empty()) { - //System.out.println("setting root"); - parent.set(fullName, nsURI, systemID, lineNr); - stack.push(parent); - root = parent; - } else { - XMLElement top = (XMLElement) this.stack.peek(); - //System.out.println("stack has " + top.getName()); - XMLElement elt = new XMLElement(fullName, nsURI, systemID, lineNr); - top.addChild(elt); - stack.push(elt); - } - } - - - /** - * This method is called when the attributes of an XML element have been - * processed. - * - * @see #startElement - * @see #addAttribute - * - * @param name the name of the element. - * @param nsPrefix the prefix used to identify the namespace. If no - * namespace has been specified, this parameter is null. - * @param nsURI the URI associated with the namespace. If no - * namespace has been specified, or no URI is - * associated with nsPrefix, this parameter is null. - */ - public void elementAttributesProcessed(String name, - String nsPrefix, - String nsURI) - { - // nothing to do - } - - - /** - * This method is called when the end of an XML elemnt is encountered. - * - * @see #startElement - * - * @param name the name of the element. - * @param nsPrefix the prefix used to identify the namespace. If no - * namespace has been specified, this parameter is null. - * @param nsURI the URI associated with the namespace. If no - * namespace has been specified, or no URI is - * associated with nsPrefix, this parameter is null. - */ - public void endElement(String name, - String nsPrefix, - String nsURI) - { - XMLElement elt = (XMLElement) this.stack.pop(); - - if (elt.getChildCount() == 1) { - XMLElement child = elt.getChildAtIndex(0); - - if (child.getLocalName() == null) { - elt.setContent(child.getContent()); - elt.removeChildAtIndex(0); - } - } - } - - - /** - * This method is called when a new attribute of an XML element is - * encountered. - * - * @param key the key (name) of the attribute. - * @param nsPrefix the prefix used to identify the namespace. If no - * namespace has been specified, this parameter is null. - * @param nsURI the URI associated with the namespace. If no - * namespace has been specified, or no URI is - * associated with nsPrefix, this parameter is null. - * @param value the value of the attribute. - * @param type the type of the attribute. If no type is known, - * "CDATA" is returned. - * - * @throws java.lang.Exception - * If an exception occurred while processing the event. - */ - public void addAttribute(String key, - String nsPrefix, - String nsURI, - String value, - String type) - throws Exception - { - String fullName = key; - - if (nsPrefix != null) { - fullName = nsPrefix + ':' + key; - } - - XMLElement top = (XMLElement) this.stack.peek(); - - if (top.hasAttribute(fullName)) { - throw new XMLParseException(top.getSystemID(), - top.getLineNr(), - "Duplicate attribute: " + key); - } - - if (nsPrefix != null) { - top.setAttribute(fullName, nsURI, value); - } else { - top.setAttribute(fullName, value); - } - } - - - /** - * This method is called when a PCDATA element is encountered. A Java - * reader is supplied from which you can read the data. The reader will - * only read the data of the element. You don't need to check for - * boundaries. If you don't read the full element, the rest of the data - * is skipped. You also don't have to care about entities; they are - * resolved by the parser. - * - * @param reader the Java reader from which you can retrieve the data. - * @param systemID the system ID of the XML data source. - * @param lineNr the line in the source where the element starts. - */ - public void addPCData(Reader reader, - String systemID, - int lineNr) - { - int bufSize = 2048; - int sizeRead = 0; - StringBuffer str = new StringBuffer(bufSize); - char[] buf = new char[bufSize]; - - for (;;) { - if (sizeRead >= bufSize) { - bufSize *= 2; - str.ensureCapacity(bufSize); - } - - int size; - - try { - size = reader.read(buf); - } catch (IOException e) { - break; - } - - if (size < 0) { - break; - } - - str.append(buf, 0, size); - sizeRead += size; - } - - //XMLElement elt = this.prototype.createElement(null, systemID, lineNr); - XMLElement elt = new XMLElement(null, null, systemID, lineNr); - elt.setContent(str.toString()); - - if (! this.stack.empty()) { - XMLElement top = (XMLElement) this.stack.peek(); - top.addChild(elt); - } - } - - - /** - * Returns the result of the building process. This method is called just - * before the parse method of StdXMLParser returns. - * - * @return the result of the building process. - */ - public Object getResult() - { - return this.root; - } - -} diff --git a/core/src/processing/xml/StdXMLParser.java b/core/src/processing/xml/StdXMLParser.java deleted file mode 100644 index da60bbb5d..000000000 --- a/core/src/processing/xml/StdXMLParser.java +++ /dev/null @@ -1,684 +0,0 @@ -/* StdXMLParser.java NanoXML/Java - * - * $Revision: 1.5 $ - * $Date: 2002/03/24 11:37:00 $ - * $Name: RELEASE_2_2_1 $ - * - * This file is part of NanoXML 2 for Java. - * Copyright (C) 2000-2002 Marc De Scheemaecker, All Rights Reserved. - * - * This software is provided 'as-is', without any express or implied warranty. - * In no event will the authors be held liable for any damages arising from the - * use of this software. - * - * Permission is granted to anyone to use this software for any purpose, - * including commercial applications, and to alter it and redistribute it - * freely, subject to the following restrictions: - * - * 1. The origin of this software must not be misrepresented; you must not - * claim that you wrote the original software. If you use this software in - * a product, an acknowledgment in the product documentation would be - * appreciated but is not required. - * - * 2. Altered source versions must be plainly marked as such, and must not be - * misrepresented as being the original software. - * - * 3. This notice may not be removed or altered from any source distribution. - */ - -package processing.xml; - - -import java.io.Reader; -import java.util.Enumeration; -import java.util.Properties; -import java.util.Vector; - - -/** - * StdXMLParser is the core parser of NanoXML. - * - * @author Marc De Scheemaecker - * @version $Name: RELEASE_2_2_1 $, $Revision: 1.5 $ - */ -public class StdXMLParser { - - /** - * The builder which creates the logical structure of the XML data. - */ - private StdXMLBuilder builder; - - - /** - * The reader from which the parser retrieves its data. - */ - private StdXMLReader reader; - - - /** - * The entity resolver. - */ - private XMLEntityResolver entityResolver; - - - /** - * The validator that will process entity references and validate the XML - * data. - */ - private XMLValidator validator; - - - /** - * Creates a new parser. - */ - public StdXMLParser() - { - this.builder = null; - this.validator = null; - this.reader = null; - this.entityResolver = new XMLEntityResolver(); - } - - - /** - * Cleans up the object when it's destroyed. - */ - protected void finalize() - throws Throwable - { - this.builder = null; - this.reader = null; - this.entityResolver = null; - this.validator = null; - super.finalize(); - } - - - /** - * Sets the builder which creates the logical structure of the XML data. - * - * @param builder the non-null builder - */ - public void setBuilder(StdXMLBuilder builder) - { - this.builder = builder; - } - - - /** - * Returns the builder which creates the logical structure of the XML data. - * - * @return the builder - */ - public StdXMLBuilder getBuilder() - { - return this.builder; - } - - - /** - * Sets the validator that validates the XML data. - * - * @param validator the non-null validator - */ - public void setValidator(XMLValidator validator) - { - this.validator = validator; - } - - - /** - * Returns the validator that validates the XML data. - * - * @return the validator - */ - public XMLValidator getValidator() - { - return this.validator; - } - - - /** - * Sets the entity resolver. - * - * @param resolver the non-null resolver - */ - public void setResolver(XMLEntityResolver resolver) - { - this.entityResolver = resolver; - } - - - /** - * Returns the entity resolver. - * - * @return the non-null resolver - */ - public XMLEntityResolver getResolver() - { - return this.entityResolver; - } - - - /** - * Sets the reader from which the parser retrieves its data. - * - * @param reader the reader - */ - public void setReader(StdXMLReader reader) - { - this.reader = reader; - } - - - /** - * Returns the reader from which the parser retrieves its data. - * - * @return the reader - */ - public StdXMLReader getReader() - { - return this.reader; - } - - - /** - * Parses the data and lets the builder create the logical data structure. - * - * @return the logical structure built by the builder - * - * @throws net.n3.nanoxml.XMLException - * if an error occurred reading or parsing the data - */ - public Object parse() - throws XMLException - { - try { - this.builder.startBuilding(this.reader.getSystemID(), - this.reader.getLineNr()); - this.scanData(); - return this.builder.getResult(); - } catch (XMLException e) { - throw e; - } catch (Exception e) { - throw new XMLException(e); - } - } - - - /** - * Scans the XML data for elements. - * - * @throws java.lang.Exception - * if something went wrong - */ - protected void scanData() throws Exception { - while ((! this.reader.atEOF()) && (this.builder.getResult() == null)) { - String str = XMLUtil.read(this.reader, '&'); - char ch = str.charAt(0); - if (ch == '&') { - XMLUtil.processEntity(str, this.reader, this.entityResolver); - continue; - } - - switch (ch) { - case '<': - this.scanSomeTag(false, // don't allow CDATA - null, // no default namespace - new Properties()); - break; - - case ' ': - case '\t': - case '\r': - case '\n': - // skip whitespace - break; - - default: - XMLUtil.errorInvalidInput(reader.getSystemID(), - reader.getLineNr(), - "`" + ch + "' (0x" - + Integer.toHexString((int) ch) - + ')'); - } - } - } - - - /** - * Scans an XML tag. - * - * @param allowCDATA true if CDATA sections are allowed at this point - * @param defaultNamespace the default namespace URI (or null) - * @param namespaces list of defined namespaces - * - * @throws java.lang.Exception - * if something went wrong - */ - protected void scanSomeTag(boolean allowCDATA, - String defaultNamespace, - Properties namespaces) - throws Exception - { - String str = XMLUtil.read(this.reader, '&'); - char ch = str.charAt(0); - - if (ch == '&') { - XMLUtil.errorUnexpectedEntity(reader.getSystemID(), - reader.getLineNr(), - str); - } - - switch (ch) { - case '?': - this.processPI(); - break; - - case '!': - this.processSpecialTag(allowCDATA); - break; - - default: - this.reader.unread(ch); - this.processElement(defaultNamespace, namespaces); - } - } - - - /** - * Processes a "processing instruction". - * - * @throws java.lang.Exception - * if something went wrong - */ - protected void processPI() - throws Exception - { - XMLUtil.skipWhitespace(this.reader, null); - String target = XMLUtil.scanIdentifier(this.reader); - XMLUtil.skipWhitespace(this.reader, null); - Reader r = new PIReader(this.reader); - - if (!target.equalsIgnoreCase("xml")) { - this.builder.newProcessingInstruction(target, r); - } - - r.close(); - } - - - /** - * Processes a tag that starts with a bang (<!...>). - * - * @param allowCDATA true if CDATA sections are allowed at this point - * - * @throws java.lang.Exception - * if something went wrong - */ - protected void processSpecialTag(boolean allowCDATA) - throws Exception - { - String str = XMLUtil.read(this.reader, '&'); - char ch = str.charAt(0); - - if (ch == '&') { - XMLUtil.errorUnexpectedEntity(reader.getSystemID(), - reader.getLineNr(), - str); - } - - switch (ch) { - case '[': - if (allowCDATA) { - this.processCDATA(); - } else { - XMLUtil.errorUnexpectedCDATA(reader.getSystemID(), - reader.getLineNr()); - } - - return; - - case 'D': - this.processDocType(); - return; - - case '-': - XMLUtil.skipComment(this.reader); - return; - } - } - - - /** - * Processes a CDATA section. - * - * @throws java.lang.Exception - * if something went wrong - */ - protected void processCDATA() throws Exception { - if (! XMLUtil.checkLiteral(this.reader, "CDATA[")) { - XMLUtil.errorExpectedInput(reader.getSystemID(), - reader.getLineNr(), - "') { - XMLUtil.errorExpectedInput(reader.getSystemID(), - reader.getLineNr(), - "`>'"); - } - - // TODO DTD checking is currently disabled, because it breaks - // applications that don't have access to a net connection - // (since it insists on going and checking out the DTD). - if (false) { - if (systemID != null) { - Reader r = this.reader.openStream(publicID.toString(), systemID); - this.reader.startNewStream(r); - this.reader.setSystemID(systemID); - this.reader.setPublicID(publicID.toString()); - this.validator.parseDTD(publicID.toString(), - this.reader, - this.entityResolver, - true); - } - } - } - - - /** - * Processes a regular element. - * - * @param defaultNamespace the default namespace URI (or null) - * @param namespaces list of defined namespaces - * - * @throws java.lang.Exception - * if something went wrong - */ - protected void processElement(String defaultNamespace, - Properties namespaces) - throws Exception - { - String fullName = XMLUtil.scanIdentifier(this.reader); - String name = fullName; - XMLUtil.skipWhitespace(this.reader, null); - String prefix = null; - int colonIndex = name.indexOf(':'); - - if (colonIndex > 0) { - prefix = name.substring(0, colonIndex); - name = name.substring(colonIndex + 1); - } - - Vector attrNames = new Vector(); - Vector attrValues = new Vector(); - Vector attrTypes = new Vector(); - - this.validator.elementStarted(fullName, - this.reader.getSystemID(), - this.reader.getLineNr()); - char ch; - - for (;;) { - ch = this.reader.read(); - - if ((ch == '/') || (ch == '>')) { - break; - } - - this.reader.unread(ch); - this.processAttribute(attrNames, attrValues, attrTypes); - XMLUtil.skipWhitespace(this.reader, null); - } - - Properties extraAttributes = new Properties(); - this.validator.elementAttributesProcessed(fullName, - extraAttributes, - this.reader.getSystemID(), - this.reader.getLineNr()); - Enumeration en = extraAttributes.keys(); - - while (en.hasMoreElements()) { - String key = (String) en.nextElement(); - String value = extraAttributes.getProperty(key); - attrNames.addElement(key); - attrValues.addElement(value); - attrTypes.addElement("CDATA"); - } - - for (int i = 0; i < attrNames.size(); i++) { - String key = (String) attrNames.elementAt(i); - String value = (String) attrValues.elementAt(i); - //String type = (String) attrTypes.elementAt(i); - - if (key.equals("xmlns")) { - defaultNamespace = value; - } else if (key.startsWith("xmlns:")) { - namespaces.put(key.substring(6), value); - } - } - - if (prefix == null) { - this.builder.startElement(name, prefix, defaultNamespace, - this.reader.getSystemID(), - this.reader.getLineNr()); - } else { - this.builder.startElement(name, prefix, - namespaces.getProperty(prefix), - this.reader.getSystemID(), - this.reader.getLineNr()); - } - - for (int i = 0; i < attrNames.size(); i++) { - String key = (String) attrNames.elementAt(i); - - if (key.startsWith("xmlns")) { - continue; - } - - String value = (String) attrValues.elementAt(i); - String type = (String) attrTypes.elementAt(i); - colonIndex = key.indexOf(':'); - - if (colonIndex > 0) { - String attPrefix = key.substring(0, colonIndex); - key = key.substring(colonIndex + 1); - this.builder.addAttribute(key, attPrefix, - namespaces.getProperty(attPrefix), - value, type); - } else { - this.builder.addAttribute(key, null, null, value, type); - } - } - - if (prefix == null) { - this.builder.elementAttributesProcessed(name, prefix, - defaultNamespace); - } else { - this.builder.elementAttributesProcessed(name, prefix, - namespaces - .getProperty(prefix)); - } - - if (ch == '/') { - if (this.reader.read() != '>') { - XMLUtil.errorExpectedInput(reader.getSystemID(), - reader.getLineNr(), - "`>'"); - } - - this.validator.elementEnded(name, - this.reader.getSystemID(), - this.reader.getLineNr()); - - if (prefix == null) { - this.builder.endElement(name, prefix, defaultNamespace); - } else { - this.builder.endElement(name, prefix, - namespaces.getProperty(prefix)); - } - - return; - } - - StringBuffer buffer = new StringBuffer(16); - - for (;;) { - buffer.setLength(0); - String str; - - for (;;) { - XMLUtil.skipWhitespace(this.reader, buffer); - str = XMLUtil.read(this.reader, '&'); - - if ((str.charAt(0) == '&') && (str.charAt(1) != '#')) { - XMLUtil.processEntity(str, this.reader, - this.entityResolver); - } else { - break; - } - } - - if (str.charAt(0) == '<') { - str = XMLUtil.read(this.reader, '\0'); - - if (str.charAt(0) == '/') { - XMLUtil.skipWhitespace(this.reader, null); - str = XMLUtil.scanIdentifier(this.reader); - - if (! str.equals(fullName)) { - XMLUtil.errorWrongClosingTag(reader.getSystemID(), - reader.getLineNr(), - name, str); - } - - XMLUtil.skipWhitespace(this.reader, null); - - if (this.reader.read() != '>') { - XMLUtil.errorClosingTagNotEmpty(reader.getSystemID(), - reader.getLineNr()); - } - - this.validator.elementEnded(fullName, - this.reader.getSystemID(), - this.reader.getLineNr()); - if (prefix == null) { - this.builder.endElement(name, prefix, defaultNamespace); - } else { - this.builder.endElement(name, prefix, - namespaces.getProperty(prefix)); - } - break; - } else { // <[^/] - this.reader.unread(str.charAt(0)); - this.scanSomeTag(true, //CDATA allowed - defaultNamespace, - (Properties) namespaces.clone()); - } - } else { // [^<] - if (str.charAt(0) == '&') { - ch = XMLUtil.processCharLiteral(str); - buffer.append(ch); - } else { - reader.unread(str.charAt(0)); - } - this.validator.PCDataAdded(this.reader.getSystemID(), - this.reader.getLineNr()); - Reader r = new ContentReader(this.reader, - this.entityResolver, - buffer.toString()); - this.builder.addPCData(r, this.reader.getSystemID(), - this.reader.getLineNr()); - r.close(); - } - } - } - - - /** - * Processes an attribute of an element. - * - * @param attrNames contains the names of the attributes. - * @param attrValues contains the values of the attributes. - * @param attrTypes contains the types of the attributes. - * - * @throws java.lang.Exception - * if something went wrong - */ - protected void processAttribute(Vector attrNames, - Vector attrValues, - Vector attrTypes) - throws Exception - { - String key = XMLUtil.scanIdentifier(this.reader); - XMLUtil.skipWhitespace(this.reader, null); - - if (! XMLUtil.read(this.reader, '&').equals("=")) { - XMLUtil.errorExpectedInput(reader.getSystemID(), - reader.getLineNr(), - "`='"); - } - - XMLUtil.skipWhitespace(this.reader, null); - String value = XMLUtil.scanString(this.reader, '&', - this.entityResolver); - attrNames.addElement(key); - attrValues.addElement(value); - attrTypes.addElement("CDATA"); - this.validator.attributeAdded(key, value, - this.reader.getSystemID(), - this.reader.getLineNr()); - } - -} diff --git a/core/src/processing/xml/StdXMLReader.java b/core/src/processing/xml/StdXMLReader.java deleted file mode 100644 index e2d97a580..000000000 --- a/core/src/processing/xml/StdXMLReader.java +++ /dev/null @@ -1,626 +0,0 @@ -/* StdXMLReader.java NanoXML/Java - * - * $Revision: 1.4 $ - * $Date: 2002/01/04 21:03:28 $ - * $Name: RELEASE_2_2_1 $ - * - * This file is part of NanoXML 2 for Java. - * Copyright (C) 2000-2002 Marc De Scheemaecker, All Rights Reserved. - * - * This software is provided 'as-is', without any express or implied warranty. - * In no event will the authors be held liable for any damages arising from the - * use of this software. - * - * Permission is granted to anyone to use this software for any purpose, - * including commercial applications, and to alter it and redistribute it - * freely, subject to the following restrictions: - * - * 1. The origin of this software must not be misrepresented; you must not - * claim that you wrote the original software. If you use this software in - * a product, an acknowledgment in the product documentation would be - * appreciated but is not required. - * - * 2. Altered source versions must be plainly marked as such, and must not be - * misrepresented as being the original software. - * - * 3. This notice may not be removed or altered from any source distribution. - */ - -package processing.xml; - - -import java.io.InputStream; -import java.io.InputStreamReader; -import java.io.IOException; -//import java.io.File; -import java.io.FileInputStream; -import java.io.FileNotFoundException; -import java.io.LineNumberReader; -import java.io.PushbackReader; -import java.io.PushbackInputStream; -import java.io.Reader; -import java.io.StringReader; -import java.io.UnsupportedEncodingException; -import java.net.MalformedURLException; -import java.net.URL; -import java.util.Stack; - - -/** - * StdXMLReader reads the data to be parsed. - * - * @author Marc De Scheemaecker - * @version $Name: RELEASE_2_2_1 $, $Revision: 1.4 $ - */ -public class StdXMLReader -{ - - /** - * A stacked reader. - * - * @author Marc De Scheemaecker - * @version $Name: RELEASE_2_2_1 $, $Revision: 1.4 $ - */ - private class StackedReader - { - - PushbackReader pbReader; - - LineNumberReader lineReader; - - URL systemId; - - String publicId; - - } - - - /** - * The stack of readers. - */ - private Stack readers; - - - /** - * The current push-back reader. - */ - private StackedReader currentReader; - - - /** - * Creates a new reader using a string as input. - * - * @param str the string containing the XML data - */ - public static StdXMLReader stringReader(String str) - { - return new StdXMLReader(new StringReader(str)); - } - - - /** - * Creates a new reader using a file as input. - * - * @param filename the name of the file containing the XML data - * - * @throws java.io.FileNotFoundException - * if the file could not be found - * @throws java.io.IOException - * if an I/O error occurred - */ - public static StdXMLReader fileReader(String filename) - throws FileNotFoundException, - IOException - { - StdXMLReader r = new StdXMLReader(new FileInputStream(filename)); - r.setSystemID(filename); - - for (int i = 0; i < r.readers.size(); i++) { - StackedReader sr = (StackedReader) r.readers.elementAt(i); - sr.systemId = r.currentReader.systemId; - } - - return r; - } - - - /** - * Initializes the reader from a system and public ID. - * - * @param publicID the public ID which may be null. - * @param systemID the non-null system ID. - * - * @throws MalformedURLException - * if the system ID does not contain a valid URL - * @throws FileNotFoundException - * if the system ID refers to a local file which does not exist - * @throws IOException - * if an error occurred opening the stream - */ - public StdXMLReader(String publicID, - String systemID) - throws MalformedURLException, - FileNotFoundException, - IOException - { - URL systemIDasURL = null; - - try { - systemIDasURL = new URL(systemID); - } catch (MalformedURLException e) { - systemID = "file:" + systemID; - - try { - systemIDasURL = new URL(systemID); - } catch (MalformedURLException e2) { - throw e; - } - } - - this.currentReader = new StackedReader(); - this.readers = new Stack(); - Reader reader = this.openStream(publicID, systemIDasURL.toString()); - this.currentReader.lineReader = new LineNumberReader(reader); - this.currentReader.pbReader - = new PushbackReader(this.currentReader.lineReader, 2); - } - - - /** - * Initializes the XML reader. - * - * @param reader the input for the XML data. - */ - public StdXMLReader(Reader reader) - { - this.currentReader = new StackedReader(); - this.readers = new Stack(); - this.currentReader.lineReader = new LineNumberReader(reader); - this.currentReader.pbReader - = new PushbackReader(this.currentReader.lineReader, 2); - this.currentReader.publicId = ""; - - try { - this.currentReader.systemId = new URL("file:."); - } catch (MalformedURLException e) { - // never happens - } - } - - - /** - * Cleans up the object when it's destroyed. - */ - protected void finalize() - throws Throwable - { - this.currentReader.lineReader = null; - this.currentReader.pbReader = null; - this.currentReader.systemId = null; - this.currentReader.publicId = null; - this.currentReader = null; - this.readers.clear(); - super.finalize(); - } - - - /** - * Scans the encoding from an <?xml...?> tag. - * - * @param str the first tag in the XML data. - * - * @return the encoding, or null if no encoding has been specified. - */ - protected String getEncoding(String str) - { - if (! str.startsWith("= 'a') - && (str.charAt(index) <= 'z')) { - key.append(str.charAt(index)); - index++; - } - - while ((index < str.length()) && (str.charAt(index) <= ' ')) { - index++; - } - - if ((index >= str.length()) || (str.charAt(index) != '=')) { - break; - } - - while ((index < str.length()) && (str.charAt(index) != '\'') - && (str.charAt(index) != '"')) { - index++; - } - - if (index >= str.length()) { - break; - } - - char delimiter = str.charAt(index); - index++; - int index2 = str.indexOf(delimiter, index); - - if (index2 < 0) { - break; - } - - if (key.toString().equals("encoding")) { - return str.substring(index, index2); - } - - index = index2 + 1; - } - - return null; - } - - - /** - * Converts a stream to a reader while detecting the encoding. - * - * @param stream the input for the XML data. - * @param charsRead buffer where to put characters that have been read - * - * @throws java.io.IOException - * if an I/O error occurred - */ - protected Reader stream2reader(InputStream stream, - StringBuffer charsRead) - throws IOException - { - PushbackInputStream pbstream = new PushbackInputStream(stream); - int b = pbstream.read(); - - switch (b) { - case 0x00: - case 0xFE: - case 0xFF: - pbstream.unread(b); - return new InputStreamReader(pbstream, "UTF-16"); - - case 0xEF: - for (int i = 0; i < 2; i++) { - pbstream.read(); - } - - return new InputStreamReader(pbstream, "UTF-8"); - - case 0x3C: - b = pbstream.read(); - charsRead.append('<'); - - while ((b > 0) && (b != 0x3E)) { - charsRead.append((char) b); - b = pbstream.read(); - } - - if (b > 0) { - charsRead.append((char) b); - } - - String encoding = this.getEncoding(charsRead.toString()); - - if (encoding == null) { - return new InputStreamReader(pbstream, "UTF-8"); - } - - charsRead.setLength(0); - - try { - return new InputStreamReader(pbstream, encoding); - } catch (UnsupportedEncodingException e) { - return new InputStreamReader(pbstream, "UTF-8"); - } - - default: - charsRead.append((char) b); - return new InputStreamReader(pbstream, "UTF-8"); - } - } - - - /** - * Initializes the XML reader. - * - * @param stream the input for the XML data. - * - * @throws java.io.IOException - * if an I/O error occurred - */ - public StdXMLReader(InputStream stream) - throws IOException - { - // unused? - //PushbackInputStream pbstream = new PushbackInputStream(stream); - StringBuffer charsRead = new StringBuffer(); - Reader reader = this.stream2reader(stream, charsRead); - this.currentReader = new StackedReader(); - this.readers = new Stack(); - this.currentReader.lineReader = new LineNumberReader(reader); - this.currentReader.pbReader - = new PushbackReader(this.currentReader.lineReader, 2); - this.currentReader.publicId = ""; - - try { - this.currentReader.systemId = new URL("file:."); - } catch (MalformedURLException e) { - // never happens - } - - this.startNewStream(new StringReader(charsRead.toString())); - } - - - /** - * Reads a character. - * - * @return the character - * - * @throws java.io.IOException - * if no character could be read - */ - public char read() - throws IOException - { - int ch = this.currentReader.pbReader.read(); - - while (ch < 0) { - if (this.readers.empty()) { - throw new IOException("Unexpected EOF"); - } - - this.currentReader.pbReader.close(); - this.currentReader = (StackedReader) this.readers.pop(); - ch = this.currentReader.pbReader.read(); - } - - return (char) ch; - } - - - /** - * Returns true if the current stream has no more characters left to be - * read. - * - * @throws java.io.IOException - * if an I/O error occurred - */ - public boolean atEOFOfCurrentStream() - throws IOException - { - int ch = this.currentReader.pbReader.read(); - - if (ch < 0) { - return true; - } else { - this.currentReader.pbReader.unread(ch); - return false; - } - } - - - /** - * Returns true if there are no more characters left to be read. - * - * @throws java.io.IOException - * if an I/O error occurred - */ - public boolean atEOF() - throws IOException - { - int ch = this.currentReader.pbReader.read(); - - while (ch < 0) { - if (this.readers.empty()) { - return true; - } - - this.currentReader.pbReader.close(); - this.currentReader = (StackedReader) this.readers.pop(); - ch = this.currentReader.pbReader.read(); - } - - this.currentReader.pbReader.unread(ch); - return false; - } - - - /** - * Pushes the last character read back to the stream. - * - * @param ch the character to push back. - * - * @throws java.io.IOException - * if an I/O error occurred - */ - public void unread(char ch) - throws IOException - { - this.currentReader.pbReader.unread(ch); - } - - - /** - * Opens a stream from a public and system ID. - * - * @param publicID the public ID, which may be null - * @param systemID the system ID, which is never null - * - * @throws java.net.MalformedURLException - * if the system ID does not contain a valid URL - * @throws java.io.FileNotFoundException - * if the system ID refers to a local file which does not exist - * @throws java.io.IOException - * if an error occurred opening the stream - */ - public Reader openStream(String publicID, - String systemID) - throws MalformedURLException, - FileNotFoundException, - IOException - { - URL url = new URL(this.currentReader.systemId, systemID); - - if (url.getRef() != null) { - String ref = url.getRef(); - - if (url.getFile().length() > 0) { - url = new URL(url.getProtocol(), url.getHost(), url.getPort(), - url.getFile()); - url = new URL("jar:" + url + '!' + ref); - } else { - url = StdXMLReader.class.getResource(ref); - } - } - - this.currentReader.publicId = publicID; - this.currentReader.systemId = url; - StringBuffer charsRead = new StringBuffer(); - Reader reader = this.stream2reader(url.openStream(), charsRead); - - if (charsRead.length() == 0) { - return reader; - } - - String charsReadStr = charsRead.toString(); - PushbackReader pbreader = new PushbackReader(reader, - charsReadStr.length()); - - for (int i = charsReadStr.length() - 1; i >= 0; i--) { - pbreader.unread(charsReadStr.charAt(i)); - } - - return pbreader; - } - - - /** - * Starts a new stream from a Java reader. The new stream is used - * temporary to read data from. If that stream is exhausted, control - * returns to the parent stream. - * - * @param reader the non-null reader to read the new data from - */ - public void startNewStream(Reader reader) - { - this.startNewStream(reader, false); - } - - - /** - * Starts a new stream from a Java reader. The new stream is used - * temporary to read data from. If that stream is exhausted, control - * returns to the parent stream. - * - * @param reader the non-null reader to read the new data from - * @param isInternalEntity true if the reader is produced by resolving - * an internal entity - */ - public void startNewStream(Reader reader, - boolean isInternalEntity) - { - StackedReader oldReader = this.currentReader; - this.readers.push(this.currentReader); - this.currentReader = new StackedReader(); - - if (isInternalEntity) { - this.currentReader.lineReader = null; - this.currentReader.pbReader = new PushbackReader(reader, 2); - } else { - this.currentReader.lineReader = new LineNumberReader(reader); - this.currentReader.pbReader - = new PushbackReader(this.currentReader.lineReader, 2); - } - - this.currentReader.systemId = oldReader.systemId; - this.currentReader.publicId = oldReader.publicId; - } - - - /** - * Returns the current "level" of the stream on the stack of streams. - */ - public int getStreamLevel() - { - return this.readers.size(); - } - - - /** - * Returns the line number of the data in the current stream. - */ - public int getLineNr() - { - if (this.currentReader.lineReader == null) { - StackedReader sr = (StackedReader) this.readers.peek(); - - if (sr.lineReader == null) { - return 0; - } else { - return sr.lineReader.getLineNumber() + 1; - } - } - - return this.currentReader.lineReader.getLineNumber() + 1; - } - - - /** - * Sets the system ID of the current stream. - * - * @param systemID the system ID - * - * @throws java.net.MalformedURLException - * if the system ID does not contain a valid URL - */ - public void setSystemID(String systemID) - throws MalformedURLException - { - this.currentReader.systemId = new URL(this.currentReader.systemId, - systemID); - } - - - /** - * Sets the public ID of the current stream. - * - * @param publicID the public ID - */ - public void setPublicID(String publicID) - { - this.currentReader.publicId = publicID; - } - - - /** - * Returns the current system ID. - */ - public String getSystemID() - { - return this.currentReader.systemId.toString(); - } - - - /** - * Returns the current public ID. - */ - public String getPublicID() - { - return this.currentReader.publicId; - } - -} diff --git a/core/src/processing/xml/XMLAttribute.java b/core/src/processing/xml/XMLAttribute.java deleted file mode 100644 index 759dd47fc..000000000 --- a/core/src/processing/xml/XMLAttribute.java +++ /dev/null @@ -1,153 +0,0 @@ -/* XMLAttribute.java NanoXML/Java - * - * $Revision: 1.4 $ - * $Date: 2002/01/04 21:03:29 $ - * $Name: RELEASE_2_2_1 $ - * - * This file is part of NanoXML 2 for Java. - * Copyright (C) 2000-2002 Marc De Scheemaecker, All Rights Reserved. - * - * This software is provided 'as-is', without any express or implied warranty. - * In no event will the authors be held liable for any damages arising from the - * use of this software. - * - * Permission is granted to anyone to use this software for any purpose, - * including commercial applications, and to alter it and redistribute it - * freely, subject to the following restrictions: - * - * 1. The origin of this software must not be misrepresented; you must not - * claim that you wrote the original software. If you use this software in - * a product, an acknowledgment in the product documentation would be - * appreciated but is not required. - * - * 2. Altered source versions must be plainly marked as such, and must not be - * misrepresented as being the original software. - * - * 3. This notice may not be removed or altered from any source distribution. - */ - -package processing.xml; - - -/** - * An attribute in an XML element. This is an internal class. - * - * @see net.n3.nanoxml.XMLElement - * - * @author Marc De Scheemaecker - * @version $Name: RELEASE_2_2_1 $, $Revision: 1.4 $ - */ -class XMLAttribute -{ - - /** - * The full name of the attribute. - */ - private String fullName; - - - /** - * The short name of the attribute. - */ - private String name; - - - /** - * The namespace URI of the attribute. - */ - private String namespace; - - - /** - * The value of the attribute. - */ - private String value; - - - /** - * The type of the attribute. - */ - private String type; - - - /** - * Creates a new attribute. - * - * @param fullName the non-null full name - * @param name the non-null short name - * @param namespace the namespace URI, which may be null - * @param value the value of the attribute - * @param type the type of the attribute - */ - XMLAttribute(String fullName, - String name, - String namespace, - String value, - String type) - { - this.fullName = fullName; - this.name = name; - this.namespace = namespace; - this.value = value; - this.type = type; - } - - - /** - * Returns the full name of the attribute. - */ - String getFullName() - { - return this.fullName; - } - - - /** - * Returns the short name of the attribute. - */ - String getName() - { - return this.name; - } - - - /** - * Returns the namespace of the attribute. - */ - String getNamespace() - { - return this.namespace; - } - - - /** - * Returns the value of the attribute. - */ - String getValue() - { - return this.value; - } - - - /** - * Sets the value of the attribute. - * - * @param value the new value. - */ - void setValue(String value) - { - this.value = value; - } - - - /** - * Returns the type of the attribute. - * - * @param type the new type. - */ - String getType() - { - return this.type; - } - -} diff --git a/core/src/processing/xml/XMLElement.java b/core/src/processing/xml/XMLElement.java deleted file mode 100644 index 1f1b28d9c..000000000 --- a/core/src/processing/xml/XMLElement.java +++ /dev/null @@ -1,1418 +0,0 @@ -/* XMLElement.java NanoXML/Java - * - * This file is part of NanoXML 2 for Java. - * Copyright (C) 2000-2002 Marc De Scheemaecker, All Rights Reserved. - * - * This software is provided 'as-is', without any express or implied warranty. - * In no event will the authors be held liable for any damages arising from the - * use of this software. - * - * Permission is granted to anyone to use this software for any purpose, - * including commercial applications, and to alter it and redistribute it - * freely, subject to the following restrictions: - * - * 1. The origin of this software must not be misrepresented; you must not - * claim that you wrote the original software. If you use this software in - * a product, an acknowledgment in the product documentation would be - * appreciated but is not required. - * - * 2. Altered source versions must be plainly marked as such, and must not be - * misrepresented as being the original software. - * - * 3. This notice may not be removed or altered from any source distribution. - */ - -package processing.xml; - -import java.io.*; -import java.util.*; - -import processing.core.PApplet; - - -/** - * XMLElement is a representation of an XML object. The object is able to parse XML code. The methods described here are the most basic. More are documented in the Developer's Reference. - *

    - * The encoding parameter inside XML files is ignored, only UTF-8 (or plain ASCII) are parsed properly. - * =advanced - * XMLElement is an XML element. This is the base class used for the - * Processing XML library, representing a single node of an XML tree. - * - * This code is based on a modified version of NanoXML by Marc De Scheemaecker. - * - * @author Marc De Scheemaecker - * @author processing.org - * - * @webref data:composite - * @usage Web & Application - * @instanceName xml any variable of type XMLElement - */ -public class XMLElement implements Serializable { - - /** - * No line number defined. - */ - public static final int NO_LINE = -1; - - - /** - * The parent element. - */ - private XMLElement parent; - - - /** - * The attributes of the element. - */ - private Vector attributes; - - - /** - * The child elements. - */ - private Vector children; - - - /** - * The name of the element. - */ - private String name; - - - /** - * The full name of the element. - */ - private String fullName; - - - /** - * The namespace URI. - */ - private String namespace; - - - /** - * The content of the element. - */ - private String content; - - - /** - * The system ID of the source data where this element is located. - */ - private String systemID; - - - /** - * The line in the source data where this element starts. - */ - private int lineNr; - - - /** - * Creates an empty element to be used for #PCDATA content. - * @nowebref - */ - public XMLElement() { - this(null, null, null, NO_LINE); - } - - - protected void set(String fullName, - String namespace, - String systemID, - int lineNr) { - this.fullName = fullName; - if (namespace == null) { - this.name = fullName; - } else { - int index = fullName.indexOf(':'); - if (index >= 0) { - this.name = fullName.substring(index + 1); - } else { - this.name = fullName; - } - } - this.namespace = namespace; - this.lineNr = lineNr; - this.systemID = systemID; - } - - - /** - * Creates an empty element. - * - * @param fullName the name of the element. - */ -// public XMLElement(String fullName) { -// this(fullName, null, null, NO_LINE); -// } - - - /** - * Creates an empty element. - * - * @param fullName the name of the element. - * @param systemID the system ID of the XML data where the element starts. - * @param lineNr the line in the XML data where the element starts. - */ -// public XMLElement(String fullName, -// String systemID, -// int lineNr) { -// this(fullName, null, systemID, lineNr); -// } - - - /** - * Creates an empty element. - * - * @param fullName the full name of the element - * @param namespace the namespace URI. - */ -// public XMLElement(String fullName, -// String namespace) { -// this(fullName, namespace, null, NO_LINE); -// } - - - /** - * Creates an empty element. - * - * @param fullName the full name of the element - * @param namespace the namespace URI. - * @param systemID the system ID of the XML data where the element starts. - * @param lineNr the line in the XML data where the element starts. - * @nowebref - */ - public XMLElement(String fullName, - String namespace, - String systemID, - int lineNr) { - this.attributes = new Vector(); - this.children = new Vector(8); - this.fullName = fullName; - if (namespace == null) { - this.name = fullName; - } else { - int index = fullName.indexOf(':'); - if (index >= 0) { - this.name = fullName.substring(index + 1); - } else { - this.name = fullName; - } - } - this.namespace = namespace; - this.content = null; - this.lineNr = lineNr; - this.systemID = systemID; - this.parent = null; - } - - - /** - * Begin parsing XML data passed in from a PApplet. This code - * wraps exception handling, for more advanced exception handling, - * use the constructor that takes a Reader or InputStream. - * @author processing.org - * @param filename name of the XML file to load - * @param parent typically use "this" - */ - public XMLElement(PApplet parent, String filename) { - this(); - parseFromReader(parent.createReader(filename)); - } - - /** - * @nowebref - */ - public XMLElement(Reader r) { - this(); - parseFromReader(r); - } - - /** - * @nowebref - */ - public XMLElement(String xml) { - this(); - parseFromReader(new StringReader(xml)); - } - - - protected void parseFromReader(Reader r) { - try { - StdXMLParser parser = new StdXMLParser(); - parser.setBuilder(new StdXMLBuilder(this)); - parser.setValidator(new XMLValidator()); - parser.setReader(new StdXMLReader(r)); - //System.out.println(parser.parse().getName()); - /*XMLElement xm = (XMLElement)*/ parser.parse(); - //System.out.println("xm name is " + xm.getName()); - //System.out.println(xm + " " + this); - //parser.parse(); - } catch (XMLException e) { - e.printStackTrace(); - } - } - - -// static public XMLElement parse(Reader r) { -// try { -// StdXMLParser parser = new StdXMLParser(); -// parser.setBuilder(new StdXMLBuilder()); -// parser.setValidator(new XMLValidator()); -// parser.setReader(new StdXMLReader(r)); -// return (XMLElement) parser.parse(); -// } catch (XMLException e) { -// e.printStackTrace(); -// return null; -// } -// } - - - /** - * Creates an element to be used for #PCDATA content. - */ - public XMLElement createPCDataElement() { - return new XMLElement(); - } - - - /** - * Creates an empty element. - * - * @param fullName the name of the element. - */ -// public XMLElement createElement(String fullName) { -// return new XMLElement(fullName); -// } - - - /** - * Creates an empty element. - * - * @param fullName the name of the element. - * @param systemID the system ID of the XML data where the element starts. - * @param lineNr the line in the XML data where the element starts. - */ -// public XMLElement createElement(String fullName, -// String systemID, -// int lineNr) { -// //return new XMLElement(fullName, systemID, lineNr); -// return new XMLElement(fullName, null, systemID, lineNr); -// } - - - /** - * Creates an empty element. - * - * @param fullName the full name of the element - * @param namespace the namespace URI. - */ - public XMLElement createElement(String fullName, - String namespace) { - //return new XMLElement(fullName, namespace); - return new XMLElement(fullName, namespace, null, NO_LINE); - } - - - /** - * Creates an empty element. - * - * @param fullName the full name of the element - * @param namespace the namespace URI. - * @param systemID the system ID of the XML data where the element starts. - * @param lineNr the line in the XML data where the element starts. - */ - public XMLElement createElement(String fullName, - String namespace, - String systemID, - int lineNr) { - return new XMLElement(fullName, namespace, systemID, lineNr); - } - - - /** - * Cleans up the object when it's destroyed. - */ - protected void finalize() throws Throwable { - this.attributes.clear(); - this.attributes = null; - this.children = null; - this.fullName = null; - this.name = null; - this.namespace = null; - this.content = null; - this.systemID = null; - this.parent = null; - super.finalize(); - } - - - /** - * Returns the parent element. This method returns null for the root - * element. - */ - public XMLElement getParent() { - return this.parent; - } - - - /** - * Returns the full name (i.e. the name including an eventual namespace - * prefix) of the element. - * - * @webref - * @brief Returns the name of the element. - * @return the name, or null if the element only contains #PCDATA. - */ - public String getName() { - return this.fullName; - } - - - /** - * Returns the name of the element. - * - * @return the name, or null if the element only contains #PCDATA. - */ - public String getLocalName() { - return this.name; - } - - - /** - * Returns the namespace of the element. - * - * @return the namespace, or null if no namespace is associated with the - * element. - */ - public String getNamespace() { - return this.namespace; - } - - - /** - * Sets the full name. This method also sets the short name and clears the - * namespace URI. - * - * @param name the non-null name. - */ - public void setName(String name) { - this.name = name; - this.fullName = name; - this.namespace = null; - } - - - /** - * Sets the name. - * - * @param fullName the non-null full name. - * @param namespace the namespace URI, which may be null. - */ - public void setName(String fullName, String namespace) { - int index = fullName.indexOf(':'); - if ((namespace == null) || (index < 0)) { - this.name = fullName; - } else { - this.name = fullName.substring(index + 1); - } - this.fullName = fullName; - this.namespace = namespace; - } - - - /** - * Adds a child element. - * - * @param child the non-null child to add. - */ - public void addChild(XMLElement child) { - if (child == null) { - throw new IllegalArgumentException("child must not be null"); - } - if ((child.getLocalName() == null) && (! this.children.isEmpty())) { - XMLElement lastChild = (XMLElement) this.children.lastElement(); - - if (lastChild.getLocalName() == null) { - lastChild.setContent(lastChild.getContent() - + child.getContent()); - return; - } - } - ((XMLElement)child).parent = this; - this.children.addElement(child); - } - - - /** - * Inserts a child element. - * - * @param child the non-null child to add. - * @param index where to put the child. - */ - public void insertChild(XMLElement child, int index) { - if (child == null) { - throw new IllegalArgumentException("child must not be null"); - } - if ((child.getLocalName() == null) && (! this.children.isEmpty())) { - XMLElement lastChild = (XMLElement) this.children.lastElement(); - if (lastChild.getLocalName() == null) { - lastChild.setContent(lastChild.getContent() - + child.getContent()); - return; - } - } - ((XMLElement) child).parent = this; - this.children.insertElementAt(child, index); - } - - - /** - * Removes a child element. - * - * @param child the non-null child to remove. - */ - public void removeChild(XMLElement child) { - if (child == null) { - throw new IllegalArgumentException("child must not be null"); - } - this.children.removeElement(child); - } - - - /** - * Removes the child located at a certain index. - * - * @param index the index of the child, where the first child has index 0. - */ - public void removeChildAtIndex(int index) { - this.children.removeElementAt(index); - } - - - /** - * Returns an enumeration of all child elements. - * - * @return the non-null enumeration - */ - public Enumeration enumerateChildren() { - return this.children.elements(); - } - - - /** - * Returns whether the element is a leaf element. - * - * @return true if the element has no children. - */ - public boolean isLeaf() { - return this.children.isEmpty(); - } - - - /** - * Returns whether the element has children. - * - * @return true if the element has children. - */ - public boolean hasChildren() { - return (! this.children.isEmpty()); - } - - - /** - * Returns the number of children for the element. - * - * @return the count. - * @webref - * @see processing.xml.XMLElement#getChild(int) - * @see processing.xml.XMLElement#getChildren(String) - */ - public int getChildCount() { - return this.children.size(); - } - - - /** - * Returns a vector containing all the child elements. - * - * @return the vector. - */ -// public Vector getChildren() { -// return this.children; -// } - - - /** - * Put the names of all children into an array. Same as looping through - * each child and calling getName() on each XMLElement. - */ - public String[] listChildren() { - int childCount = getChildCount(); - String[] outgoing = new String[childCount]; - for (int i = 0; i < childCount; i++) { - outgoing[i] = getChild(i).getName(); - } - return outgoing; - } - - - /** - * Returns an array containing all the child elements. - */ - public XMLElement[] getChildren() { - int childCount = getChildCount(); - XMLElement[] kids = new XMLElement[childCount]; - children.copyInto(kids); - return kids; - } - - - /** - * Quick accessor for an element at a particular index. - * @author processing.org - * @param index the element - */ - public XMLElement getChild(int index) { - return (XMLElement) children.elementAt(index); - } - - - /** - * Returns the child XMLElement as specified by the index parameter. The value of the index parameter must be less than the total number of children to avoid going out of the array storing the child elements. - * When the path parameter is specified, then it will return all children that match that path. The path is a series of elements and sub-elements, separated by slashes. - * - * @return the element - * @author processing.org - * - * @webref - * @see processing.xml.XMLElement#getChildCount() - * @see processing.xml.XMLElement#getChildren(String) - * @brief Get a child by its name or path. - * @param path path to a particular element - */ - public XMLElement getChild(String path) { - if (path.indexOf('/') != -1) { - return getChildRecursive(PApplet.split(path, '/'), 0); - } - int childCount = getChildCount(); - for (int i = 0; i < childCount; i++) { - XMLElement kid = getChild(i); - String kidName = kid.getName(); - if (kidName != null && kidName.equals(path)) { - return kid; - } - } - return null; - } - - - /** - * Internal helper function for getChild(String). - * @param items result of splitting the query on slashes - * @param offset where in the items[] array we're currently looking - * @return matching element or null if no match - * @author processing.org - */ - protected XMLElement getChildRecursive(String[] items, int offset) { - // if it's a number, do an index instead - if (Character.isDigit(items[offset].charAt(0))) { - XMLElement kid = getChild(Integer.parseInt(items[offset])); - if (offset == items.length-1) { - return kid; - } else { - return kid.getChildRecursive(items, offset+1); - } - } - int childCount = getChildCount(); - for (int i = 0; i < childCount; i++) { - XMLElement kid = getChild(i); - String kidName = kid.getName(); - if (kidName != null && kidName.equals(items[offset])) { - if (offset == items.length-1) { - return kid; - } else { - return kid.getChildRecursive(items, offset+1); - } - } - } - return null; - } - - - /** - * Returns the child at a specific index. - * - * @param index the index of the child - * - * @return the non-null child - * - * @throws java.lang.ArrayIndexOutOfBoundsException - * if the index is out of bounds. - */ - public XMLElement getChildAtIndex(int index) - throws ArrayIndexOutOfBoundsException { - return (XMLElement) this.children.elementAt(index); - } - - - /** - * Searches a child element. - * - * @param name the full name of the child to search for. - * - * @return the child element, or null if no such child was found. - */ -// public XMLElement getFirstChildNamed(String name) { -// Enumeration enum = this.children.elements(); -// while (enum.hasMoreElements()) { -// XMLElement child = (XMLElement) enum.nextElement(); -// String childName = child.getFullName(); -// if ((childName != null) && childName.equals(name)) { -// return child; -// } -// } -// return null; -// } - - - /** - * Searches a child element. - * - * @param name the name of the child to search for. - * @param namespace the namespace, which may be null. - * - * @return the child element, or null if no such child was found. - */ -// public XMLElement getFirstChildNamed(String name, -// String namespace) { -// Enumeration enum = this.children.elements(); -// while (enum.hasMoreElements()) { -// XMLElement child = (XMLElement) enum.nextElement(); -// String str = child.getName(); -// boolean found = (str != null) && (str.equals(name)); -// str = child.getNamespace(); -// if (str == null) { -// found &= (name == null); -// } else { -// found &= str.equals(namespace); -// } -// if (found) { -// return child; -// } -// } -// return null; -// } - - - /** - * Returns all of the children as an XMLElement array. - * When the path parameter is specified, then it will return all children that match that path. - * The path is a series of elements and sub-elements, separated by slashes. - * - * @param path element name or path/to/element - * @return array of child elements that match - * @author processing.org - * - * @webref - * @brief Returns all of the children as an XMLElement array. - * @see processing.xml.XMLElement#getChildCount() - * @see processing.xml.XMLElement#getChild(int) - */ - public XMLElement[] getChildren(String path) { - if (path.indexOf('/') != -1) { - return getChildrenRecursive(PApplet.split(path, '/'), 0); - } - // if it's a number, do an index instead - // (returns a single element array, since this will be a single match - if (Character.isDigit(path.charAt(0))) { - return new XMLElement[] { getChild(Integer.parseInt(path)) }; - } - int childCount = getChildCount(); - XMLElement[] matches = new XMLElement[childCount]; - int matchCount = 0; - for (int i = 0; i < childCount; i++) { - XMLElement kid = getChild(i); - String kidName = kid.getName(); - if (kidName != null && kidName.equals(path)) { - matches[matchCount++] = kid; - } - } - return (XMLElement[]) PApplet.subset(matches, 0, matchCount); - } - - - protected XMLElement[] getChildrenRecursive(String[] items, int offset) { - if (offset == items.length-1) { - return getChildren(items[offset]); - } - XMLElement[] matches = getChildren(items[offset]); - XMLElement[] outgoing = new XMLElement[0]; - for (int i = 0; i < matches.length; i++) { - XMLElement[] kidMatches = matches[i].getChildrenRecursive(items, offset+1); - outgoing = (XMLElement[]) PApplet.concat(outgoing, kidMatches); - } - return outgoing; - } - - - /** - * Returns a vector of all child elements named name. - * - * @param name the full name of the children to search for. - * - * @return the non-null vector of child elements. - */ -// public Vector getChildrenNamed(String name) { -// Vector result = new Vector(this.children.size()); -// Enumeration enum = this.children.elements(); -// while (enum.hasMoreElements()) { -// XMLElement child = (XMLElement) enum.nextElement(); -// String childName = child.getFullName(); -// if ((childName != null) && childName.equals(name)) { -// result.addElement(child); -// } -// } -// return result; -// } - - - /** - * Returns a vector of all child elements named name. - * - * @param name the name of the children to search for. - * @param namespace the namespace, which may be null. - * - * @return the non-null vector of child elements. - */ -// public Vector getChildrenNamed(String name, -// String namespace) { -// Vector result = new Vector(this.children.size()); -// Enumeration enum = this.children.elements(); -// while (enum.hasMoreElements()) { -// XMLElement child = (XMLElement) enum.nextElement(); -// String str = child.getName(); -// boolean found = (str != null) && (str.equals(name)); -// str = child.getNamespace(); -// if (str == null) { -// found &= (name == null); -// } else { -// found &= str.equals(namespace); -// } -// -// if (found) { -// result.addElement(child); -// } -// } -// return result; -// } - - - /** - * Searches an attribute. - * - * @param fullName the non-null full name of the attribute. - * - * @return the attribute, or null if the attribute does not exist. - */ - private XMLAttribute findAttribute(String fullName) { - Enumeration en = this.attributes.elements(); - while (en.hasMoreElements()) { - XMLAttribute attr = (XMLAttribute) en.nextElement(); - if (attr.getFullName().equals(fullName)) { - return attr; - } - } - return null; - } - - - /** - * Searches an attribute. - * - * @param name the non-null short name of the attribute. - * @param namespace the name space, which may be null. - * - * @return the attribute, or null if the attribute does not exist. - */ - private XMLAttribute findAttribute(String name, - String namespace) { - Enumeration en = this.attributes.elements(); - while (en.hasMoreElements()) { - XMLAttribute attr = (XMLAttribute) en.nextElement(); - boolean found = attr.getName().equals(name); - if (namespace == null) { - found &= (attr.getNamespace() == null); - } else { - found &= namespace.equals(attr.getNamespace()); - } - - if (found) { - return attr; - } - } - return null; - } - - - /** - * Returns the number of attributes. - */ - public int getAttributeCount() { - return this.attributes.size(); - } - - - /** - * Returns the value of an attribute. - * - * @param name the non-null name of the attribute. - * - * @return the value, or null if the attribute does not exist. - */ - public String getAttribute(String name) { - return this.getAttribute(name, null); - } - - - /** - * Returns the value of an attribute. - * - * @param name the non-null full name of the attribute. - * @param defaultValue the default value of the attribute. - * - * @return the value, or defaultValue if the attribute does not exist. - */ - public String getAttribute(String name, - String defaultValue) { - XMLAttribute attr = this.findAttribute(name); - if (attr == null) { - return defaultValue; - } else { - return attr.getValue(); - } - } - - - /** - * Returns the value of an attribute. - * - * @param name the non-null name of the attribute. - * @param namespace the namespace URI, which may be null. - * @param defaultValue the default value of the attribute. - * - * @return the value, or defaultValue if the attribute does not exist. - */ - public String getAttribute(String name, - String namespace, - String defaultValue) { - XMLAttribute attr = this.findAttribute(name, namespace); - if (attr == null) { - return defaultValue; - } else { - return attr.getValue(); - } - } - - - public String getStringAttribute(String name) { - return getAttribute(name); - } - - /** - * Returns a String attribute of the element. - * If the default parameter is used and the attribute doesn't exist, the default value is returned. - * When using the version of the method without the default parameter, if the attribute doesn't exist, the value 0 is returned. - * - * @webref - * @param name the name of the attribute - * @param default Value value returned if the attribute is not found - * - * @brief Returns a String attribute of the element. - */ - public String getStringAttribute(String name, String defaultValue) { - return getAttribute(name, defaultValue); - } - - - public String getStringAttribute(String name, - String namespace, - String defaultValue) { - return getAttribute(name, namespace, defaultValue); - } - - /** - * Returns an integer attribute of the element. - */ - public int getIntAttribute(String name) { - return getIntAttribute(name, 0); - } - - - /** - * Returns an integer attribute of the element. - * If the default parameter is used and the attribute doesn't exist, the default value is returned. - * When using the version of the method without the default parameter, if the attribute doesn't exist, the value 0 is returned. - * - * @param name the name of the attribute - * @param defaultValue value returned if the attribute is not found - * - * @webref - * @brief Returns an integer attribute of the element. - * @return the value, or defaultValue if the attribute does not exist. - */ - public int getIntAttribute(String name, - int defaultValue) { - String value = this.getAttribute(name, Integer.toString(defaultValue)); - return Integer.parseInt(value); - } - - - /** - * Returns the value of an attribute. - * - * @param name the non-null name of the attribute. - * @param namespace the namespace URI, which may be null. - * @param defaultValue the default value of the attribute. - * - * @return the value, or defaultValue if the attribute does not exist. - */ - public int getIntAttribute(String name, - String namespace, - int defaultValue) { - String value = this.getAttribute(name, namespace, - Integer.toString(defaultValue)); - return Integer.parseInt(value); - } - - - public float getFloatAttribute(String name) { - return getFloatAttribute(name, 0); - } - - - /** - * Returns a float attribute of the element. - * If the default parameter is used and the attribute doesn't exist, the default value is returned. - * When using the version of the method without the default parameter, if the attribute doesn't exist, the value 0 is returned. - * - * @param name the name of the attribute - * @param defaultValue value returned if the attribute is not found - * - * @return the value, or defaultValue if the attribute does not exist. - * - * @webref - * @brief Returns a float attribute of the element. - */ - public float getFloatAttribute(String name, - float defaultValue) { - String value = this.getAttribute(name, Float.toString(defaultValue)); - return Float.parseFloat(value); - } - - - /** - * Returns the value of an attribute. - * - * @param name the non-null name of the attribute. - * @param namespace the namespace URI, which may be null. - * @param defaultValue the default value of the attribute. - * - * @return the value, or defaultValue if the attribute does not exist. - * @nowebref - */ - public float getFloatAttribute(String name, - String namespace, - float defaultValue) { - String value = this.getAttribute(name, namespace, - Float.toString(defaultValue)); - return Float.parseFloat(value); - } - - - public double getDoubleAttribute(String name) { - return getDoubleAttribute(name, 0); - } - - - /** - * Returns the value of an attribute. - * - * @param name the non-null full name of the attribute. - * @param defaultValue the default value of the attribute. - * - * @return the value, or defaultValue if the attribute does not exist. - */ - public double getDoubleAttribute(String name, - double defaultValue) { - String value = this.getAttribute(name, Double.toString(defaultValue)); - return Double.parseDouble(value); - } - - - /** - * Returns the value of an attribute. - * - * @param name the non-null name of the attribute. - * @param namespace the namespace URI, which may be null. - * @param defaultValue the default value of the attribute. - * - * @return the value, or defaultValue if the attribute does not exist. - */ - public double getDoubleAttribute(String name, - String namespace, - double defaultValue) { - String value = this.getAttribute(name, namespace, - Double.toString(defaultValue)); - return Double.parseDouble(value); - } - - - /** - * Returns the type of an attribute. - * - * @param name the non-null full name of the attribute. - * - * @return the type, or null if the attribute does not exist. - */ - public String getAttributeType(String name) { - XMLAttribute attr = this.findAttribute(name); - if (attr == null) { - return null; - } else { - return attr.getType(); - } - } - - - /** - * Returns the namespace of an attribute. - * - * @param name the non-null full name of the attribute. - * - * @return the namespace, or null if there is none associated. - */ - public String getAttributeNamespace(String name) { - XMLAttribute attr = this.findAttribute(name); - if (attr == null) { - return null; - } else { - return attr.getNamespace(); - } - } - - - /** - * Returns the type of an attribute. - * - * @param name the non-null name of the attribute. - * @param namespace the namespace URI, which may be null. - * - * @return the type, or null if the attribute does not exist. - */ - public String getAttributeType(String name, - String namespace) { - XMLAttribute attr = this.findAttribute(name, namespace); - if (attr == null) { - return null; - } else { - return attr.getType(); - } - } - - - /** - * Sets an attribute. - * - * @param name the non-null full name of the attribute. - * @param value the non-null value of the attribute. - */ - public void setAttribute(String name, - String value) { - XMLAttribute attr = this.findAttribute(name); - if (attr == null) { - attr = new XMLAttribute(name, name, null, value, "CDATA"); - this.attributes.addElement(attr); - } else { - attr.setValue(value); - } - } - - - /** - * Sets an attribute. - * - * @param fullName the non-null full name of the attribute. - * @param namespace the namespace URI of the attribute, which may be null. - * @param value the non-null value of the attribute. - */ - public void setAttribute(String fullName, - String namespace, - String value) { - int index = fullName.indexOf(':'); - String vorname = fullName.substring(index + 1); - XMLAttribute attr = this.findAttribute(vorname, namespace); - if (attr == null) { - attr = new XMLAttribute(fullName, vorname, namespace, value, "CDATA"); - this.attributes.addElement(attr); - } else { - attr.setValue(value); - } - } - - - /** - * Removes an attribute. - * - * @param name the non-null name of the attribute. - */ - public void removeAttribute(String name) { - for (int i = 0; i < this.attributes.size(); i++) { - XMLAttribute attr = (XMLAttribute) this.attributes.elementAt(i); - if (attr.getFullName().equals(name)) { - this.attributes.removeElementAt(i); - return; - } - } - } - - - /** - * Removes an attribute. - * - * @param name the non-null name of the attribute. - * @param namespace the namespace URI of the attribute, which may be null. - */ - public void removeAttribute(String name, - String namespace) { - for (int i = 0; i < this.attributes.size(); i++) { - XMLAttribute attr = (XMLAttribute) this.attributes.elementAt(i); - boolean found = attr.getName().equals(name); - if (namespace == null) { - found &= (attr.getNamespace() == null); - } else { - found &= attr.getNamespace().equals(namespace); - } - - if (found) { - this.attributes.removeElementAt(i); - return; - } - } - } - - - /** - * Returns an enumeration of all attribute names. - * - * @return the non-null enumeration. - */ - public Enumeration enumerateAttributeNames() { - Vector result = new Vector(); - Enumeration en = this.attributes.elements(); - while (en.hasMoreElements()) { - XMLAttribute attr = (XMLAttribute) en.nextElement(); - result.addElement(attr.getFullName()); - } - return result.elements(); - } - - - /** - * Returns whether an attribute exists. - * - * @return true if the attribute exists. - */ - public boolean hasAttribute(String name) { - return this.findAttribute(name) != null; - } - - - /** - * Returns whether an attribute exists. - * - * @return true if the attribute exists. - */ - public boolean hasAttribute(String name, - String namespace) { - return this.findAttribute(name, namespace) != null; - } - - - /** - * Returns all attributes as a Properties object. - * - * @return the non-null set. - */ - public Properties getAttributes() { - Properties result = new Properties(); - Enumeration en = this.attributes.elements(); - while (en.hasMoreElements()) { - XMLAttribute attr = (XMLAttribute) en.nextElement(); - result.put(attr.getFullName(), attr.getValue()); - } - return result; - } - - - /** - * Returns all attributes in a specific namespace as a Properties object. - * - * @param namespace the namespace URI of the attributes, which may be null. - * - * @return the non-null set. - */ - public Properties getAttributesInNamespace(String namespace) { - Properties result = new Properties(); - Enumeration en = this.attributes.elements(); - while (en.hasMoreElements()) { - XMLAttribute attr = (XMLAttribute) en.nextElement(); - if (namespace == null) { - if (attr.getNamespace() == null) { - result.put(attr.getName(), attr.getValue()); - } - } else { - if (namespace.equals(attr.getNamespace())) { - result.put(attr.getName(), attr.getValue()); - } - } - } - return result; - } - - - /** - * Returns the system ID of the data where the element started. - * - * @return the system ID, or null if unknown. - * - * @see #getLineNr - */ - public String getSystemID() { - return this.systemID; - } - - - /** - * Returns the line number in the data where the element started. - * - * @return the line number, or NO_LINE if unknown. - * - * @see #NO_LINE - * @see #getSystemID - */ - public int getLineNr() { - return this.lineNr; - } - - - /** - * Returns the content of an element. If there is no such content, null is returned. - * =advanced - * Return the #PCDATA content of the element. If the element has a - * combination of #PCDATA content and child elements, the #PCDATA - * sections can be retrieved as unnamed child objects. In this case, - * this method returns null. - * - * @webref - * @brief Returns the content of an element - * @return the content. - */ - public String getContent() { - return this.content; - } - - - /** - * Sets the #PCDATA content. It is an error to call this method with a - * non-null value if there are child objects. - * - * @param content the (possibly null) content. - */ - public void setContent(String content) { - this.content = content; - } - - - /** - * Returns true if the element equals another element. - * - * @param rawElement the element to compare to - */ - public boolean equals(Object rawElement) { - try { - return this.equalsXMLElement((XMLElement) rawElement); - } catch (ClassCastException e) { - return false; - } - } - - - /** - * Returns true if the element equals another element. - * - * @param rawElement the element to compare to - */ - public boolean equalsXMLElement(XMLElement rawElement) { - if (! this.name.equals(rawElement.getLocalName())) { - return false; - } - if (this.attributes.size() != rawElement.getAttributeCount()) { - return false; - } - Enumeration en = this.attributes.elements(); - while (en.hasMoreElements()) { - XMLAttribute attr = (XMLAttribute) en.nextElement(); - if (! rawElement.hasAttribute(attr.getName(), attr.getNamespace())) { - return false; - } - String value = rawElement.getAttribute(attr.getName(), - attr.getNamespace(), - null); - if (! attr.getValue().equals(value)) { - return false; - } - String type = rawElement.getAttributeType(attr.getName(), - attr.getNamespace()); - if (! attr.getType().equals(type)) { - return false; - } - } - if (this.children.size() != rawElement.getChildCount()) { - return false; - } - for (int i = 0; i < this.children.size(); i++) { - XMLElement child1 = this.getChildAtIndex(i); - XMLElement child2 = rawElement.getChildAtIndex(i); - - if (! child1.equalsXMLElement(child2)) { - return false; - } - } - return true; - } - - - public String toString() { - return toString(true); - } - - - public String toString(boolean pretty) { - ByteArrayOutputStream baos = new ByteArrayOutputStream(); - OutputStreamWriter osw = new OutputStreamWriter(baos); - XMLWriter writer = new XMLWriter(osw); - try { - if (pretty) { - writer.write(this, true, 2, true); - } else { - writer.write(this, false, 0, true); - } - } catch (IOException e) { - e.printStackTrace(); - } - return baos.toString(); - } -} diff --git a/core/src/processing/xml/XMLEntityResolver.java b/core/src/processing/xml/XMLEntityResolver.java deleted file mode 100644 index f12c4c0d4..000000000 --- a/core/src/processing/xml/XMLEntityResolver.java +++ /dev/null @@ -1,173 +0,0 @@ -/* XMLEntityResolver.java NanoXML/Java - * - * $Revision: 1.4 $ - * $Date: 2002/01/04 21:03:29 $ - * $Name: RELEASE_2_2_1 $ - * - * This file is part of NanoXML 2 for Java. - * Copyright (C) 2000-2002 Marc De Scheemaecker, All Rights Reserved. - * - * This software is provided 'as-is', without any express or implied warranty. - * In no event will the authors be held liable for any damages arising from the - * use of this software. - * - * Permission is granted to anyone to use this software for any purpose, - * including commercial applications, and to alter it and redistribute it - * freely, subject to the following restrictions: - * - * 1. The origin of this software must not be misrepresented; you must not - * claim that you wrote the original software. If you use this software in - * a product, an acknowledgment in the product documentation would be - * appreciated but is not required. - * - * 2. Altered source versions must be plainly marked as such, and must not be - * misrepresented as being the original software. - * - * 3. This notice may not be removed or altered from any source distribution. - */ - -package processing.xml; - - -import java.util.Hashtable; -import java.io.Reader; -import java.io.StringReader; - - -/** - * An XMLEntityResolver resolves entities. - * - * @author Marc De Scheemaecker - * @version $Name: RELEASE_2_2_1 $, $Revision: 1.4 $ - */ -public class XMLEntityResolver -{ - - /** - * The entities. - */ - private Hashtable entities; - - - /** - * Initializes the resolver. - */ - public XMLEntityResolver() - { - this.entities = new Hashtable(); - this.entities.put("amp", "&"); - this.entities.put("quot", """); - this.entities.put("apos", "'"); - this.entities.put("lt", "<"); - this.entities.put("gt", ">"); - } - - - /** - * Cleans up the object when it's destroyed. - */ - protected void finalize() - throws Throwable - { - this.entities.clear(); - this.entities = null; - super.finalize(); - } - - - /** - * Adds an internal entity. - * - * @param name the name of the entity. - * @param value the value of the entity. - */ - public void addInternalEntity(String name, - String value) - { - if (! this.entities.containsKey(name)) { - this.entities.put(name, value); - } - } - - - /** - * Adds an external entity. - * - * @param name the name of the entity. - * @param publicID the public ID of the entity, which may be null. - * @param systemID the system ID of the entity. - */ - public void addExternalEntity(String name, - String publicID, - String systemID) - { - if (! this.entities.containsKey(name)) { - this.entities.put(name, new String[] { publicID, systemID } ); - } - } - - - /** - * Returns a Java reader containing the value of an entity. - * - * @param xmlReader the current XML reader - * @param name the name of the entity. - * - * @return the reader, or null if the entity could not be resolved. - */ - public Reader getEntity(StdXMLReader xmlReader, - String name) - throws XMLParseException - { - Object obj = this.entities.get(name); - - if (obj == null) { - return null; - } else if (obj instanceof java.lang.String) { - return new StringReader((String)obj); - } else { - String[] id = (String[]) obj; - return this.openExternalEntity(xmlReader, id[0], id[1]); - } - } - - - /** - * Returns true if an entity is external. - * - * @param name the name of the entity. - */ - public boolean isExternalEntity(String name) - { - Object obj = this.entities.get(name); - return ! (obj instanceof java.lang.String); - } - - - /** - * Opens an external entity. - * - * @param xmlReader the current XML reader - * @param publicID the public ID, which may be null - * @param systemID the system ID - * - * @return the reader, or null if the reader could not be created/opened - */ - protected Reader openExternalEntity(StdXMLReader xmlReader, - String publicID, - String systemID) - throws XMLParseException - { - String parentSystemID = xmlReader.getSystemID(); - - try { - return xmlReader.openStream(publicID, systemID); - } catch (Exception e) { - throw new XMLParseException(parentSystemID, - xmlReader.getLineNr(), - "Could not open external entity " - + "at system ID: " + systemID); - } - } - -} diff --git a/core/src/processing/xml/XMLException.java b/core/src/processing/xml/XMLException.java deleted file mode 100644 index 8515d481a..000000000 --- a/core/src/processing/xml/XMLException.java +++ /dev/null @@ -1,286 +0,0 @@ -/* XMLException.java NanoXML/Java - * - * $Revision: 1.4 $ - * $Date: 2002/01/04 21:03:29 $ - * $Name: RELEASE_2_2_1 $ - * - * This file is part of NanoXML 2 for Java. - * Copyright (C) 2000-2002 Marc De Scheemaecker, All Rights Reserved. - * - * This software is provided 'as-is', without any express or implied warranty. - * In no event will the authors be held liable for any damages arising from the - * use of this software. - * - * Permission is granted to anyone to use this software for any purpose, - * including commercial applications, and to alter it and redistribute it - * freely, subject to the following restrictions: - * - * 1. The origin of this software must not be misrepresented; you must not - * claim that you wrote the original software. If you use this software in - * a product, an acknowledgment in the product documentation would be - * appreciated but is not required. - * - * 2. Altered source versions must be plainly marked as such, and must not be - * misrepresented as being the original software. - * - * 3. This notice may not be removed or altered from any source distribution. - */ - -package processing.xml; - -import java.io.PrintStream; -import java.io.PrintWriter; - - -/** - * An XMLException is thrown when an exception occurred while processing the - * XML data. - * - * @author Marc De Scheemaecker - * @version $Name: RELEASE_2_2_1 $, $Revision: 1.4 $ - */ -public class XMLException - extends Exception -{ - - /** - * The message of the exception. - */ - private String msg; - - - /** - * The system ID of the XML data where the exception occurred. - */ - private String systemID; - - - /** - * The line number in the XML data where the exception occurred. - */ - private int lineNr; - - - /** - * Encapsulated exception. - */ - private Exception encapsulatedException; - - - /** - * Creates a new exception. - * - * @param msg the message of the exception. - */ - public XMLException(String msg) - { - this(null, -1, null, msg, false); - } - - - /** - * Creates a new exception. - * - * @param e the encapsulated exception. - */ - public XMLException(Exception e) - { - this(null, -1, e, "Nested Exception", false); - } - - - /** - * Creates a new exception. - * - * @param systemID the system ID of the XML data where the exception - * occurred - * @param lineNr the line number in the XML data where the exception - * occurred. - * @param e the encapsulated exception. - */ - public XMLException(String systemID, - int lineNr, - Exception e) - { - this(systemID, lineNr, e, "Nested Exception", true); - } - - - /** - * Creates a new exception. - * - * @param systemID the system ID of the XML data where the exception - * occurred - * @param lineNr the line number in the XML data where the exception - * occurred. - * @param msg the message of the exception. - */ - public XMLException(String systemID, - int lineNr, - String msg) - { - this(systemID, lineNr, null, msg, true); - } - - - /** - * Creates a new exception. - * - * @param systemID the system ID from where the data came - * @param lineNr the line number in the XML data where the exception - * occurred. - * @param e the encapsulated exception. - * @param msg the message of the exception. - * @param reportParams true if the systemID, lineNr and e params need to be - * appended to the message - */ - public XMLException(String systemID, - int lineNr, - Exception e, - String msg, - boolean reportParams) - { - super(XMLException.buildMessage(systemID, lineNr, e, msg, - reportParams)); - this.systemID = systemID; - this.lineNr = lineNr; - this.encapsulatedException = e; - this.msg = XMLException.buildMessage(systemID, lineNr, e, msg, - reportParams); - } - - - /** - * Builds the exception message - * - * @param systemID the system ID from where the data came - * @param lineNr the line number in the XML data where the exception - * occurred. - * @param e the encapsulated exception. - * @param msg the message of the exception. - * @param reportParams true if the systemID, lineNr and e params need to be - * appended to the message - */ - private static String buildMessage(String systemID, - int lineNr, - Exception e, - String msg, - boolean reportParams) - { - String str = msg; - - if (reportParams) { - if (systemID != null) { - str += ", SystemID='" + systemID + "'"; - } - - if (lineNr >= 0) { - str += ", Line=" + lineNr; - } - - if (e != null) { - str += ", Exception: " + e; - } - } - - return str; - } - - - /** - * Cleans up the object when it's destroyed. - */ - protected void finalize() - throws Throwable - { - this.systemID = null; - this.encapsulatedException = null; - super.finalize(); - } - - - /** - * Returns the system ID of the XML data where the exception occurred. - * If there is no system ID known, null is returned. - */ - public String getSystemID() - { - return this.systemID; - } - - - /** - * Returns the line number in the XML data where the exception occurred. - * If there is no line number known, -1 is returned. - */ - public int getLineNr() - { - return this.lineNr; - } - - - /** - * Returns the encapsulated exception, or null if no exception is - * encapsulated. - */ - public Exception getException() - { - return this.encapsulatedException; - } - - - /** - * Dumps the exception stack to a print writer. - * - * @param writer the print writer - */ - public void printStackTrace(PrintWriter writer) - { - super.printStackTrace(writer); - - if (this.encapsulatedException != null) { - writer.println("*** Nested Exception:"); - this.encapsulatedException.printStackTrace(writer); - } - } - - - /** - * Dumps the exception stack to an output stream. - * - * @param stream the output stream - */ - public void printStackTrace(PrintStream stream) - { - super.printStackTrace(stream); - - if (this.encapsulatedException != null) { - stream.println("*** Nested Exception:"); - this.encapsulatedException.printStackTrace(stream); - } - } - - - /** - * Dumps the exception stack to System.err. - */ - public void printStackTrace() - { - super.printStackTrace(); - - if (this.encapsulatedException != null) { - System.err.println("*** Nested Exception:"); - this.encapsulatedException.printStackTrace(); - } - } - - - /** - * Returns a string representation of the exception. - */ - public String toString() - { - return this.msg; - } - -} diff --git a/core/src/processing/xml/XMLParseException.java b/core/src/processing/xml/XMLParseException.java deleted file mode 100644 index aa7915d94..000000000 --- a/core/src/processing/xml/XMLParseException.java +++ /dev/null @@ -1,69 +0,0 @@ -/* XMLParseException.java NanoXML/Java - * - * $Revision: 1.3 $ - * $Date: 2002/01/04 21:03:29 $ - * $Name: RELEASE_2_2_1 $ - * - * This file is part of NanoXML 2 for Java. - * Copyright (C) 2000-2002 Marc De Scheemaecker, All Rights Reserved. - * - * This software is provided 'as-is', without any express or implied warranty. - * In no event will the authors be held liable for any damages arising from the - * use of this software. - * - * Permission is granted to anyone to use this software for any purpose, - * including commercial applications, and to alter it and redistribute it - * freely, subject to the following restrictions: - * - * 1. The origin of this software must not be misrepresented; you must not - * claim that you wrote the original software. If you use this software in - * a product, an acknowledgment in the product documentation would be - * appreciated but is not required. - * - * 2. Altered source versions must be plainly marked as such, and must not be - * misrepresented as being the original software. - * - * 3. This notice may not be removed or altered from any source distribution. - */ - -package processing.xml; - - -/** - * An XMLParseException is thrown when the XML passed to the XML parser is not - * well-formed. - * - * @author Marc De Scheemaecker - * @version $Name: RELEASE_2_2_1 $, $Revision: 1.3 $ - */ -public class XMLParseException - extends XMLException -{ - - /** - * Creates a new exception. - * - * @param msg the message of the exception. - */ - public XMLParseException(String msg) - { - super(msg); - } - - - /** - * Creates a new exception. - * - * @param systemID the system ID from where the data came - * @param lineNr the line number in the XML data where the exception - * occurred. - * @param msg the message of the exception. - */ - public XMLParseException(String systemID, - int lineNr, - String msg) - { - super(systemID, lineNr, null, msg, true); - } - -} diff --git a/core/src/processing/xml/XMLUtil.java b/core/src/processing/xml/XMLUtil.java deleted file mode 100644 index 6adad79be..000000000 --- a/core/src/processing/xml/XMLUtil.java +++ /dev/null @@ -1,758 +0,0 @@ -/* XMLUtil.java NanoXML/Java - * - * $Revision: 1.5 $ - * $Date: 2002/02/03 21:19:38 $ - * $Name: RELEASE_2_2_1 $ - * - * This file is part of NanoXML 2 for Java. - * Copyright (C) 2000-2002 Marc De Scheemaecker, All Rights Reserved. - * - * This software is provided 'as-is', without any express or implied warranty. - * In no event will the authors be held liable for any damages arising from the - * use of this software. - * - * Permission is granted to anyone to use this software for any purpose, - * including commercial applications, and to alter it and redistribute it - * freely, subject to the following restrictions: - * - * 1. The origin of this software must not be misrepresented; you must not - * claim that you wrote the original software. If you use this software in - * a product, an acknowledgment in the product documentation would be - * appreciated but is not required. - * - * 2. Altered source versions must be plainly marked as such, and must not be - * misrepresented as being the original software. - * - * 3. This notice may not be removed or altered from any source distribution. - */ - -package processing.xml; - - -import java.io.IOException; -import java.io.Reader; - - -/** - * Utility methods for NanoXML. - * - * @author Marc De Scheemaecker - * @version $Name: RELEASE_2_2_1 $, $Revision: 1.5 $ - */ -class XMLUtil -{ - - /** - * Skips the remainder of a comment. - * It is assumed that <!- is already read. - * - * @param reader the reader - * - * @throws java.io.IOException - * if an error occurred reading the data - */ - static void skipComment(StdXMLReader reader) - throws IOException, - XMLParseException - { - if (reader.read() != '-') { - XMLUtil.errorExpectedInput(reader.getSystemID(), - reader.getLineNr(), - "?}$i@JO-Hcc_Vy$~&wGu~dYF<8-n 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

    W!ow7o1zw?!ZeT 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

    HO0~y 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

    t3^NsUMq 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 E0IHJ2)c^nh literal 0 HcmV?d00001 diff --git a/arduino-core/lib/jsch-0.1.50.jar b/arduino-core/lib/jsch-0.1.50.jar new file mode 100644 index 0000000000000000000000000000000000000000..33bbd370c56eba1ad5dcbe42235b26b0336d46d4 GIT binary patch literal 254408 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

    ^>%S5xL#vvaV+z22=_3f-!u>~_H~L)b0i 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 L-TxBQKGOdH$elbg literal 0 HcmV?d00001 diff --git a/arduino-core/lib/jsch.LICENSE.BSD.txt b/arduino-core/lib/jsch.LICENSE.BSD.txt new file mode 100644 index 000000000..66a089aa2 --- /dev/null +++ b/arduino-core/lib/jsch.LICENSE.BSD.txt @@ -0,0 +1 @@ +http://www.jcraft.com/jsch/LICENSE.txt diff --git a/arduino-core/lib/jssc-2.8.0.jar b/arduino-core/lib/jssc-2.8.0.jar new file mode 100644 index 0000000000000000000000000000000000000000..d2b5c070aa930c06e653db0bcae7eab9c5ca4f7d GIT binary patch literal 153562 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 + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/arduino-core/lib/jssc.LICENSE.LGPL.txt b/arduino-core/lib/jssc.LICENSE.LGPL.txt new file mode 100644 index 000000000..65c5ca88a --- /dev/null +++ b/arduino-core/lib/jssc.LICENSE.LGPL.txt @@ -0,0 +1,165 @@ + GNU LESSER GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + + This version of the GNU Lesser General Public License incorporates +the terms and conditions of version 3 of the GNU General Public +License, supplemented by the additional permissions listed below. + + 0. Additional Definitions. + + As used herein, "this License" refers to version 3 of the GNU Lesser +General Public License, and the "GNU GPL" refers to version 3 of the GNU +General Public License. + + "The Library" refers to a covered work governed by this License, +other than an Application or a Combined Work as defined below. + + An "Application" is any work that makes use of an interface provided +by the Library, but which is not otherwise based on the Library. +Defining a subclass of a class defined by the Library is deemed a mode +of using an interface provided by the Library. + + A "Combined Work" is a work produced by combining or linking an +Application with the Library. The particular version of the Library +with which the Combined Work was made is also called the "Linked +Version". + + The "Minimal Corresponding Source" for a Combined Work means the +Corresponding Source for the Combined Work, excluding any source code +for portions of the Combined Work that, considered in isolation, are +based on the Application, and not on the Linked Version. + + The "Corresponding Application Code" for a Combined Work means the +object code and/or source code for the Application, including any data +and utility programs needed for reproducing the Combined Work from the +Application, but excluding the System Libraries of the Combined Work. + + 1. Exception to Section 3 of the GNU GPL. + + You may convey a covered work under sections 3 and 4 of this License +without being bound by section 3 of the GNU GPL. + + 2. Conveying Modified Versions. + + If you modify a copy of the Library, and, in your modifications, a +facility refers to a function or data to be supplied by an Application +that uses the facility (other than as an argument passed when the +facility is invoked), then you may convey a copy of the modified +version: + + a) under this License, provided that you make a good faith effort to + ensure that, in the event an Application does not supply the + function or data, the facility still operates, and performs + whatever part of its purpose remains meaningful, or + + b) under the GNU GPL, with none of the additional permissions of + this License applicable to that copy. + + 3. Object Code Incorporating Material from Library Header Files. + + The object code form of an Application may incorporate material from +a header file that is part of the Library. You may convey such object +code under terms of your choice, provided that, if the incorporated +material is not limited to numerical parameters, data structure +layouts and accessors, or small macros, inline functions and templates +(ten or fewer lines in length), you do both of the following: + + a) Give prominent notice with each copy of the object code that the + Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the object code with a copy of the GNU GPL and this license + document. + + 4. Combined Works. + + You may convey a Combined Work under terms of your choice that, +taken together, effectively do not restrict modification of the +portions of the Library contained in the Combined Work and reverse +engineering for debugging such modifications, if you also do each of +the following: + + a) Give prominent notice with each copy of the Combined Work that + the Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the Combined Work with a copy of the GNU GPL and this license + document. + + c) For a Combined Work that displays copyright notices during + execution, include the copyright notice for the Library among + these notices, as well as a reference directing the user to the + copies of the GNU GPL and this license document. + + d) Do one of the following: + + 0) Convey the Minimal Corresponding Source under the terms of this + License, and the Corresponding Application Code in a form + suitable for, and under terms that permit, the user to + recombine or relink the Application with a modified version of + the Linked Version to produce a modified Combined Work, in the + manner specified by section 6 of the GNU GPL for conveying + Corresponding Source. + + 1) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (a) uses at run time + a copy of the Library already present on the user's computer + system, and (b) will operate properly with a modified version + of the Library that is interface-compatible with the Linked + Version. + + e) Provide Installation Information, but only if you would otherwise + be required to provide such information under section 6 of the + GNU GPL, and only to the extent that such information is + necessary to install and execute a modified version of the + Combined Work produced by recombining or relinking the + Application with a modified version of the Linked Version. (If + you use option 4d0, the Installation Information must accompany + the Minimal Corresponding Source and Corresponding Application + Code. If you use option 4d1, you must provide the Installation + Information in the manner specified by section 6 of the GNU GPL + for conveying Corresponding Source.) + + 5. Combined Libraries. + + You may place library facilities that are a work based on the +Library side by side in a single library together with other library +facilities that are not Applications and are not covered by this +License, and convey such a combined library under terms of your +choice, if you do both of the following: + + a) Accompany the combined library with a copy of the same work based + on the Library, uncombined with any other library facilities, + conveyed under the terms of this License. + + b) Give prominent notice with the combined library that part of it + is a work based on the Library, and explaining where to find the + accompanying uncombined form of the same work. + + 6. Revised Versions of the GNU Lesser General Public License. + + The Free Software Foundation may publish revised and/or new versions +of the GNU Lesser General Public License from time to time. Such new +versions will be similar in spirit to the present version, but may +differ in detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the +Library as you received it specifies that a certain numbered version +of the GNU Lesser General Public License "or any later version" +applies to it, you have the option of following the terms and +conditions either of that published version or of any later version +published by the Free Software Foundation. If the Library as you +received it does not specify a version number of the GNU Lesser +General Public License, you may choose any version of the GNU Lesser +General Public License ever published by the Free Software Foundation. + + If the Library as you received it specifies that a proxy can decide +whether future versions of the GNU Lesser General Public License shall +apply, that proxy's public statement of acceptance of any version is +permanent authorization for you to choose that version for the +Library. diff --git a/app/src/cc/arduino/packages/BoardPort.java b/arduino-core/src/cc/arduino/packages/BoardPort.java similarity index 100% rename from app/src/cc/arduino/packages/BoardPort.java rename to arduino-core/src/cc/arduino/packages/BoardPort.java diff --git a/app/src/cc/arduino/packages/Discovery.java b/arduino-core/src/cc/arduino/packages/Discovery.java similarity index 100% rename from app/src/cc/arduino/packages/Discovery.java rename to arduino-core/src/cc/arduino/packages/Discovery.java diff --git a/app/src/cc/arduino/packages/DiscoveryManager.java b/arduino-core/src/cc/arduino/packages/DiscoveryManager.java similarity index 100% rename from app/src/cc/arduino/packages/DiscoveryManager.java rename to arduino-core/src/cc/arduino/packages/DiscoveryManager.java diff --git a/app/src/cc/arduino/packages/Uploader.java b/arduino-core/src/cc/arduino/packages/Uploader.java similarity index 100% rename from app/src/cc/arduino/packages/Uploader.java rename to arduino-core/src/cc/arduino/packages/Uploader.java diff --git a/app/src/cc/arduino/packages/UploaderFactory.java b/arduino-core/src/cc/arduino/packages/UploaderFactory.java similarity index 100% rename from app/src/cc/arduino/packages/UploaderFactory.java rename to arduino-core/src/cc/arduino/packages/UploaderFactory.java diff --git a/app/src/cc/arduino/packages/discoverers/NetworkDiscovery.java b/arduino-core/src/cc/arduino/packages/discoverers/NetworkDiscovery.java similarity index 100% rename from app/src/cc/arduino/packages/discoverers/NetworkDiscovery.java rename to arduino-core/src/cc/arduino/packages/discoverers/NetworkDiscovery.java diff --git a/app/src/cc/arduino/packages/discoverers/SerialDiscovery.java b/arduino-core/src/cc/arduino/packages/discoverers/SerialDiscovery.java similarity index 100% rename from app/src/cc/arduino/packages/discoverers/SerialDiscovery.java rename to arduino-core/src/cc/arduino/packages/discoverers/SerialDiscovery.java diff --git a/app/src/cc/arduino/packages/discoverers/network/NetworkChecker.java b/arduino-core/src/cc/arduino/packages/discoverers/network/NetworkChecker.java similarity index 100% rename from app/src/cc/arduino/packages/discoverers/network/NetworkChecker.java rename to arduino-core/src/cc/arduino/packages/discoverers/network/NetworkChecker.java diff --git a/app/src/cc/arduino/packages/discoverers/network/NetworkTopologyListener.java b/arduino-core/src/cc/arduino/packages/discoverers/network/NetworkTopologyListener.java similarity index 100% rename from app/src/cc/arduino/packages/discoverers/network/NetworkTopologyListener.java rename to arduino-core/src/cc/arduino/packages/discoverers/network/NetworkTopologyListener.java diff --git a/app/src/cc/arduino/packages/ssh/NoInteractionUserInfo.java b/arduino-core/src/cc/arduino/packages/ssh/NoInteractionUserInfo.java similarity index 100% rename from app/src/cc/arduino/packages/ssh/NoInteractionUserInfo.java rename to arduino-core/src/cc/arduino/packages/ssh/NoInteractionUserInfo.java diff --git a/app/src/cc/arduino/packages/ssh/SCP.java b/arduino-core/src/cc/arduino/packages/ssh/SCP.java similarity index 100% rename from app/src/cc/arduino/packages/ssh/SCP.java rename to arduino-core/src/cc/arduino/packages/ssh/SCP.java diff --git a/app/src/cc/arduino/packages/ssh/SSH.java b/arduino-core/src/cc/arduino/packages/ssh/SSH.java similarity index 100% rename from app/src/cc/arduino/packages/ssh/SSH.java rename to arduino-core/src/cc/arduino/packages/ssh/SSH.java diff --git a/app/src/cc/arduino/packages/ssh/SSHClientSetupChainRing.java b/arduino-core/src/cc/arduino/packages/ssh/SSHClientSetupChainRing.java similarity index 100% rename from app/src/cc/arduino/packages/ssh/SSHClientSetupChainRing.java rename to arduino-core/src/cc/arduino/packages/ssh/SSHClientSetupChainRing.java diff --git a/app/src/cc/arduino/packages/ssh/SSHConfigFileSetup.java b/arduino-core/src/cc/arduino/packages/ssh/SSHConfigFileSetup.java similarity index 100% rename from app/src/cc/arduino/packages/ssh/SSHConfigFileSetup.java rename to arduino-core/src/cc/arduino/packages/ssh/SSHConfigFileSetup.java diff --git a/app/src/cc/arduino/packages/ssh/SSHPwdSetup.java b/arduino-core/src/cc/arduino/packages/ssh/SSHPwdSetup.java similarity index 100% rename from app/src/cc/arduino/packages/ssh/SSHPwdSetup.java rename to arduino-core/src/cc/arduino/packages/ssh/SSHPwdSetup.java diff --git a/app/src/cc/arduino/packages/uploaders/SSHUploader.java b/arduino-core/src/cc/arduino/packages/uploaders/SSHUploader.java similarity index 100% rename from app/src/cc/arduino/packages/uploaders/SSHUploader.java rename to arduino-core/src/cc/arduino/packages/uploaders/SSHUploader.java diff --git a/app/src/cc/arduino/packages/uploaders/SerialUploader.java b/arduino-core/src/cc/arduino/packages/uploaders/SerialUploader.java similarity index 100% rename from app/src/cc/arduino/packages/uploaders/SerialUploader.java rename to arduino-core/src/cc/arduino/packages/uploaders/SerialUploader.java diff --git a/app/src/processing/app/BaseNoGui.java b/arduino-core/src/processing/app/BaseNoGui.java similarity index 100% rename from app/src/processing/app/BaseNoGui.java rename to arduino-core/src/processing/app/BaseNoGui.java diff --git a/app/src/processing/app/I18n.java b/arduino-core/src/processing/app/I18n.java similarity index 100% rename from app/src/processing/app/I18n.java rename to arduino-core/src/processing/app/I18n.java diff --git a/app/src/processing/app/Platform.java b/arduino-core/src/processing/app/Platform.java similarity index 100% rename from app/src/processing/app/Platform.java rename to arduino-core/src/processing/app/Platform.java diff --git a/app/src/processing/app/PreferencesData.java b/arduino-core/src/processing/app/PreferencesData.java similarity index 100% rename from app/src/processing/app/PreferencesData.java rename to arduino-core/src/processing/app/PreferencesData.java diff --git a/app/src/processing/app/Serial.java b/arduino-core/src/processing/app/Serial.java similarity index 100% rename from app/src/processing/app/Serial.java rename to arduino-core/src/processing/app/Serial.java diff --git a/app/src/processing/app/SerialException.java b/arduino-core/src/processing/app/SerialException.java similarity index 100% rename from app/src/processing/app/SerialException.java rename to arduino-core/src/processing/app/SerialException.java diff --git a/app/src/processing/app/SerialNotFoundException.java b/arduino-core/src/processing/app/SerialNotFoundException.java similarity index 100% rename from app/src/processing/app/SerialNotFoundException.java rename to arduino-core/src/processing/app/SerialNotFoundException.java diff --git a/app/src/processing/app/SerialPortList.java b/arduino-core/src/processing/app/SerialPortList.java similarity index 100% rename from app/src/processing/app/SerialPortList.java rename to arduino-core/src/processing/app/SerialPortList.java diff --git a/app/src/processing/app/SketchCode.java b/arduino-core/src/processing/app/SketchCode.java similarity index 100% rename from app/src/processing/app/SketchCode.java rename to arduino-core/src/processing/app/SketchCode.java diff --git a/app/src/processing/app/SketchData.java b/arduino-core/src/processing/app/SketchData.java similarity index 100% rename from app/src/processing/app/SketchData.java rename to arduino-core/src/processing/app/SketchData.java diff --git a/app/src/processing/app/debug/Compiler.java b/arduino-core/src/processing/app/debug/Compiler.java similarity index 100% rename from app/src/processing/app/debug/Compiler.java rename to arduino-core/src/processing/app/debug/Compiler.java diff --git a/app/src/processing/app/debug/MessageConsumer.java b/arduino-core/src/processing/app/debug/MessageConsumer.java similarity index 100% rename from app/src/processing/app/debug/MessageConsumer.java rename to arduino-core/src/processing/app/debug/MessageConsumer.java diff --git a/app/src/processing/app/debug/MessageSiphon.java b/arduino-core/src/processing/app/debug/MessageSiphon.java similarity index 100% rename from app/src/processing/app/debug/MessageSiphon.java rename to arduino-core/src/processing/app/debug/MessageSiphon.java diff --git a/app/src/processing/app/debug/RunnerException.java b/arduino-core/src/processing/app/debug/RunnerException.java similarity index 100% rename from app/src/processing/app/debug/RunnerException.java rename to arduino-core/src/processing/app/debug/RunnerException.java diff --git a/app/src/processing/app/debug/Sizer.java b/arduino-core/src/processing/app/debug/Sizer.java similarity index 100% rename from app/src/processing/app/debug/Sizer.java rename to arduino-core/src/processing/app/debug/Sizer.java diff --git a/app/src/processing/app/debug/TargetBoard.java b/arduino-core/src/processing/app/debug/TargetBoard.java similarity index 100% rename from app/src/processing/app/debug/TargetBoard.java rename to arduino-core/src/processing/app/debug/TargetBoard.java diff --git a/app/src/processing/app/debug/TargetPackage.java b/arduino-core/src/processing/app/debug/TargetPackage.java similarity index 100% rename from app/src/processing/app/debug/TargetPackage.java rename to arduino-core/src/processing/app/debug/TargetPackage.java diff --git a/app/src/processing/app/debug/TargetPlatform.java b/arduino-core/src/processing/app/debug/TargetPlatform.java similarity index 100% rename from app/src/processing/app/debug/TargetPlatform.java rename to arduino-core/src/processing/app/debug/TargetPlatform.java diff --git a/app/src/processing/app/debug/TargetPlatformException.java b/arduino-core/src/processing/app/debug/TargetPlatformException.java similarity index 100% rename from app/src/processing/app/debug/TargetPlatformException.java rename to arduino-core/src/processing/app/debug/TargetPlatformException.java diff --git a/app/src/processing/app/helpers/BasicUserNotifier.java b/arduino-core/src/processing/app/helpers/BasicUserNotifier.java similarity index 100% rename from app/src/processing/app/helpers/BasicUserNotifier.java rename to arduino-core/src/processing/app/helpers/BasicUserNotifier.java diff --git a/app/src/processing/app/helpers/CommandlineParser.java b/arduino-core/src/processing/app/helpers/CommandlineParser.java similarity index 100% rename from app/src/processing/app/helpers/CommandlineParser.java rename to arduino-core/src/processing/app/helpers/CommandlineParser.java diff --git a/app/src/processing/app/helpers/FileUtils.java b/arduino-core/src/processing/app/helpers/FileUtils.java similarity index 100% rename from app/src/processing/app/helpers/FileUtils.java rename to arduino-core/src/processing/app/helpers/FileUtils.java diff --git a/app/src/processing/app/helpers/NetUtils.java b/arduino-core/src/processing/app/helpers/NetUtils.java similarity index 100% rename from app/src/processing/app/helpers/NetUtils.java rename to arduino-core/src/processing/app/helpers/NetUtils.java diff --git a/app/src/processing/app/helpers/OSUtils.java b/arduino-core/src/processing/app/helpers/OSUtils.java similarity index 100% rename from app/src/processing/app/helpers/OSUtils.java rename to arduino-core/src/processing/app/helpers/OSUtils.java diff --git a/app/src/processing/app/helpers/PreferencesHelper.java b/arduino-core/src/processing/app/helpers/PreferencesHelper.java similarity index 100% rename from app/src/processing/app/helpers/PreferencesHelper.java rename to arduino-core/src/processing/app/helpers/PreferencesHelper.java diff --git a/app/src/processing/app/helpers/PreferencesMap.java b/arduino-core/src/processing/app/helpers/PreferencesMap.java similarity index 100% rename from app/src/processing/app/helpers/PreferencesMap.java rename to arduino-core/src/processing/app/helpers/PreferencesMap.java diff --git a/app/src/processing/app/helpers/PreferencesMapException.java b/arduino-core/src/processing/app/helpers/PreferencesMapException.java similarity index 100% rename from app/src/processing/app/helpers/PreferencesMapException.java rename to arduino-core/src/processing/app/helpers/PreferencesMapException.java diff --git a/app/src/processing/app/helpers/ProcessUtils.java b/arduino-core/src/processing/app/helpers/ProcessUtils.java similarity index 100% rename from app/src/processing/app/helpers/ProcessUtils.java rename to arduino-core/src/processing/app/helpers/ProcessUtils.java diff --git a/app/src/processing/app/helpers/StringReplacer.java b/arduino-core/src/processing/app/helpers/StringReplacer.java similarity index 100% rename from app/src/processing/app/helpers/StringReplacer.java rename to arduino-core/src/processing/app/helpers/StringReplacer.java diff --git a/app/src/processing/app/helpers/StringUtils.java b/arduino-core/src/processing/app/helpers/StringUtils.java similarity index 100% rename from app/src/processing/app/helpers/StringUtils.java rename to arduino-core/src/processing/app/helpers/StringUtils.java diff --git a/app/src/processing/app/helpers/UserNotifier.java b/arduino-core/src/processing/app/helpers/UserNotifier.java similarity index 100% rename from app/src/processing/app/helpers/UserNotifier.java rename to arduino-core/src/processing/app/helpers/UserNotifier.java diff --git a/app/src/processing/app/helpers/filefilters/OnlyDirs.java b/arduino-core/src/processing/app/helpers/filefilters/OnlyDirs.java similarity index 100% rename from app/src/processing/app/helpers/filefilters/OnlyDirs.java rename to arduino-core/src/processing/app/helpers/filefilters/OnlyDirs.java diff --git a/app/src/processing/app/helpers/filefilters/OnlyFilesWithExtension.java b/arduino-core/src/processing/app/helpers/filefilters/OnlyFilesWithExtension.java similarity index 100% rename from app/src/processing/app/helpers/filefilters/OnlyFilesWithExtension.java rename to arduino-core/src/processing/app/helpers/filefilters/OnlyFilesWithExtension.java diff --git a/app/src/processing/app/i18n/README.md b/arduino-core/src/processing/app/i18n/README.md similarity index 100% rename from app/src/processing/app/i18n/README.md rename to arduino-core/src/processing/app/i18n/README.md diff --git a/app/src/processing/app/i18n/Resources_an.po b/arduino-core/src/processing/app/i18n/Resources_an.po similarity index 100% rename from app/src/processing/app/i18n/Resources_an.po rename to arduino-core/src/processing/app/i18n/Resources_an.po diff --git a/app/src/processing/app/i18n/Resources_an.properties b/arduino-core/src/processing/app/i18n/Resources_an.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_an.properties rename to arduino-core/src/processing/app/i18n/Resources_an.properties diff --git a/app/src/processing/app/i18n/Resources_ar.po b/arduino-core/src/processing/app/i18n/Resources_ar.po similarity index 100% rename from app/src/processing/app/i18n/Resources_ar.po rename to arduino-core/src/processing/app/i18n/Resources_ar.po diff --git a/app/src/processing/app/i18n/Resources_ar.properties b/arduino-core/src/processing/app/i18n/Resources_ar.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_ar.properties rename to arduino-core/src/processing/app/i18n/Resources_ar.properties diff --git a/app/src/processing/app/i18n/Resources_ast.po b/arduino-core/src/processing/app/i18n/Resources_ast.po similarity index 100% rename from app/src/processing/app/i18n/Resources_ast.po rename to arduino-core/src/processing/app/i18n/Resources_ast.po diff --git a/app/src/processing/app/i18n/Resources_ast.properties b/arduino-core/src/processing/app/i18n/Resources_ast.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_ast.properties rename to arduino-core/src/processing/app/i18n/Resources_ast.properties diff --git a/app/src/processing/app/i18n/Resources_be.po b/arduino-core/src/processing/app/i18n/Resources_be.po similarity index 100% rename from app/src/processing/app/i18n/Resources_be.po rename to arduino-core/src/processing/app/i18n/Resources_be.po diff --git a/app/src/processing/app/i18n/Resources_be.properties b/arduino-core/src/processing/app/i18n/Resources_be.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_be.properties rename to arduino-core/src/processing/app/i18n/Resources_be.properties diff --git a/app/src/processing/app/i18n/Resources_bg.po b/arduino-core/src/processing/app/i18n/Resources_bg.po similarity index 100% rename from app/src/processing/app/i18n/Resources_bg.po rename to arduino-core/src/processing/app/i18n/Resources_bg.po diff --git a/app/src/processing/app/i18n/Resources_bg.properties b/arduino-core/src/processing/app/i18n/Resources_bg.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_bg.properties rename to arduino-core/src/processing/app/i18n/Resources_bg.properties diff --git a/app/src/processing/app/i18n/Resources_bs.po b/arduino-core/src/processing/app/i18n/Resources_bs.po similarity index 100% rename from app/src/processing/app/i18n/Resources_bs.po rename to arduino-core/src/processing/app/i18n/Resources_bs.po diff --git a/app/src/processing/app/i18n/Resources_bs.properties b/arduino-core/src/processing/app/i18n/Resources_bs.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_bs.properties rename to arduino-core/src/processing/app/i18n/Resources_bs.properties diff --git a/app/src/processing/app/i18n/Resources_ca.po b/arduino-core/src/processing/app/i18n/Resources_ca.po similarity index 100% rename from app/src/processing/app/i18n/Resources_ca.po rename to arduino-core/src/processing/app/i18n/Resources_ca.po diff --git a/app/src/processing/app/i18n/Resources_ca.properties b/arduino-core/src/processing/app/i18n/Resources_ca.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_ca.properties rename to arduino-core/src/processing/app/i18n/Resources_ca.properties diff --git a/app/src/processing/app/i18n/Resources_cs_CZ.po b/arduino-core/src/processing/app/i18n/Resources_cs_CZ.po similarity index 100% rename from app/src/processing/app/i18n/Resources_cs_CZ.po rename to arduino-core/src/processing/app/i18n/Resources_cs_CZ.po diff --git a/app/src/processing/app/i18n/Resources_cs_CZ.properties b/arduino-core/src/processing/app/i18n/Resources_cs_CZ.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_cs_CZ.properties rename to arduino-core/src/processing/app/i18n/Resources_cs_CZ.properties diff --git a/app/src/processing/app/i18n/Resources_da_DK.po b/arduino-core/src/processing/app/i18n/Resources_da_DK.po similarity index 100% rename from app/src/processing/app/i18n/Resources_da_DK.po rename to arduino-core/src/processing/app/i18n/Resources_da_DK.po diff --git a/app/src/processing/app/i18n/Resources_da_DK.properties b/arduino-core/src/processing/app/i18n/Resources_da_DK.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_da_DK.properties rename to arduino-core/src/processing/app/i18n/Resources_da_DK.properties diff --git a/app/src/processing/app/i18n/Resources_de_DE.po b/arduino-core/src/processing/app/i18n/Resources_de_DE.po similarity index 100% rename from app/src/processing/app/i18n/Resources_de_DE.po rename to arduino-core/src/processing/app/i18n/Resources_de_DE.po diff --git a/app/src/processing/app/i18n/Resources_de_DE.properties b/arduino-core/src/processing/app/i18n/Resources_de_DE.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_de_DE.properties rename to arduino-core/src/processing/app/i18n/Resources_de_DE.properties diff --git a/app/src/processing/app/i18n/Resources_el_GR.po b/arduino-core/src/processing/app/i18n/Resources_el_GR.po similarity index 100% rename from app/src/processing/app/i18n/Resources_el_GR.po rename to arduino-core/src/processing/app/i18n/Resources_el_GR.po diff --git a/app/src/processing/app/i18n/Resources_el_GR.properties b/arduino-core/src/processing/app/i18n/Resources_el_GR.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_el_GR.properties rename to arduino-core/src/processing/app/i18n/Resources_el_GR.properties diff --git a/app/src/processing/app/i18n/Resources_en.po b/arduino-core/src/processing/app/i18n/Resources_en.po similarity index 100% rename from app/src/processing/app/i18n/Resources_en.po rename to arduino-core/src/processing/app/i18n/Resources_en.po diff --git a/app/src/processing/app/i18n/Resources_en.properties b/arduino-core/src/processing/app/i18n/Resources_en.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_en.properties rename to arduino-core/src/processing/app/i18n/Resources_en.properties diff --git a/app/src/processing/app/i18n/Resources_en_GB.po b/arduino-core/src/processing/app/i18n/Resources_en_GB.po similarity index 100% rename from app/src/processing/app/i18n/Resources_en_GB.po rename to arduino-core/src/processing/app/i18n/Resources_en_GB.po diff --git a/app/src/processing/app/i18n/Resources_en_GB.properties b/arduino-core/src/processing/app/i18n/Resources_en_GB.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_en_GB.properties rename to arduino-core/src/processing/app/i18n/Resources_en_GB.properties diff --git a/app/src/processing/app/i18n/Resources_es.po b/arduino-core/src/processing/app/i18n/Resources_es.po similarity index 100% rename from app/src/processing/app/i18n/Resources_es.po rename to arduino-core/src/processing/app/i18n/Resources_es.po diff --git a/app/src/processing/app/i18n/Resources_es.properties b/arduino-core/src/processing/app/i18n/Resources_es.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_es.properties rename to arduino-core/src/processing/app/i18n/Resources_es.properties diff --git a/app/src/processing/app/i18n/Resources_et.po b/arduino-core/src/processing/app/i18n/Resources_et.po similarity index 100% rename from app/src/processing/app/i18n/Resources_et.po rename to arduino-core/src/processing/app/i18n/Resources_et.po diff --git a/app/src/processing/app/i18n/Resources_et.properties b/arduino-core/src/processing/app/i18n/Resources_et.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_et.properties rename to arduino-core/src/processing/app/i18n/Resources_et.properties diff --git a/app/src/processing/app/i18n/Resources_et_EE.po b/arduino-core/src/processing/app/i18n/Resources_et_EE.po similarity index 100% rename from app/src/processing/app/i18n/Resources_et_EE.po rename to arduino-core/src/processing/app/i18n/Resources_et_EE.po diff --git a/app/src/processing/app/i18n/Resources_et_EE.properties b/arduino-core/src/processing/app/i18n/Resources_et_EE.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_et_EE.properties rename to arduino-core/src/processing/app/i18n/Resources_et_EE.properties diff --git a/app/src/processing/app/i18n/Resources_fa.po b/arduino-core/src/processing/app/i18n/Resources_fa.po similarity index 100% rename from app/src/processing/app/i18n/Resources_fa.po rename to arduino-core/src/processing/app/i18n/Resources_fa.po diff --git a/app/src/processing/app/i18n/Resources_fa.properties b/arduino-core/src/processing/app/i18n/Resources_fa.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_fa.properties rename to arduino-core/src/processing/app/i18n/Resources_fa.properties diff --git a/app/src/processing/app/i18n/Resources_fi.po b/arduino-core/src/processing/app/i18n/Resources_fi.po similarity index 100% rename from app/src/processing/app/i18n/Resources_fi.po rename to arduino-core/src/processing/app/i18n/Resources_fi.po diff --git a/app/src/processing/app/i18n/Resources_fi.properties b/arduino-core/src/processing/app/i18n/Resources_fi.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_fi.properties rename to arduino-core/src/processing/app/i18n/Resources_fi.properties diff --git a/app/src/processing/app/i18n/Resources_fil.po b/arduino-core/src/processing/app/i18n/Resources_fil.po similarity index 100% rename from app/src/processing/app/i18n/Resources_fil.po rename to arduino-core/src/processing/app/i18n/Resources_fil.po diff --git a/app/src/processing/app/i18n/Resources_fil.properties b/arduino-core/src/processing/app/i18n/Resources_fil.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_fil.properties rename to arduino-core/src/processing/app/i18n/Resources_fil.properties diff --git a/app/src/processing/app/i18n/Resources_fr.po b/arduino-core/src/processing/app/i18n/Resources_fr.po similarity index 100% rename from app/src/processing/app/i18n/Resources_fr.po rename to arduino-core/src/processing/app/i18n/Resources_fr.po diff --git a/app/src/processing/app/i18n/Resources_fr.properties b/arduino-core/src/processing/app/i18n/Resources_fr.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_fr.properties rename to arduino-core/src/processing/app/i18n/Resources_fr.properties diff --git a/app/src/processing/app/i18n/Resources_fr_CA.po b/arduino-core/src/processing/app/i18n/Resources_fr_CA.po similarity index 100% rename from app/src/processing/app/i18n/Resources_fr_CA.po rename to arduino-core/src/processing/app/i18n/Resources_fr_CA.po diff --git a/app/src/processing/app/i18n/Resources_fr_CA.properties b/arduino-core/src/processing/app/i18n/Resources_fr_CA.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_fr_CA.properties rename to arduino-core/src/processing/app/i18n/Resources_fr_CA.properties diff --git a/app/src/processing/app/i18n/Resources_gl.po b/arduino-core/src/processing/app/i18n/Resources_gl.po similarity index 100% rename from app/src/processing/app/i18n/Resources_gl.po rename to arduino-core/src/processing/app/i18n/Resources_gl.po diff --git a/app/src/processing/app/i18n/Resources_gl.properties b/arduino-core/src/processing/app/i18n/Resources_gl.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_gl.properties rename to arduino-core/src/processing/app/i18n/Resources_gl.properties diff --git a/app/src/processing/app/i18n/Resources_hi.po b/arduino-core/src/processing/app/i18n/Resources_hi.po similarity index 100% rename from app/src/processing/app/i18n/Resources_hi.po rename to arduino-core/src/processing/app/i18n/Resources_hi.po diff --git a/app/src/processing/app/i18n/Resources_hi.properties b/arduino-core/src/processing/app/i18n/Resources_hi.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_hi.properties rename to arduino-core/src/processing/app/i18n/Resources_hi.properties diff --git a/app/src/processing/app/i18n/Resources_hr_HR.po b/arduino-core/src/processing/app/i18n/Resources_hr_HR.po similarity index 100% rename from app/src/processing/app/i18n/Resources_hr_HR.po rename to arduino-core/src/processing/app/i18n/Resources_hr_HR.po diff --git a/app/src/processing/app/i18n/Resources_hr_HR.properties b/arduino-core/src/processing/app/i18n/Resources_hr_HR.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_hr_HR.properties rename to arduino-core/src/processing/app/i18n/Resources_hr_HR.properties diff --git a/app/src/processing/app/i18n/Resources_hu.po b/arduino-core/src/processing/app/i18n/Resources_hu.po similarity index 100% rename from app/src/processing/app/i18n/Resources_hu.po rename to arduino-core/src/processing/app/i18n/Resources_hu.po diff --git a/app/src/processing/app/i18n/Resources_hu.properties b/arduino-core/src/processing/app/i18n/Resources_hu.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_hu.properties rename to arduino-core/src/processing/app/i18n/Resources_hu.properties diff --git a/app/src/processing/app/i18n/Resources_hy.po b/arduino-core/src/processing/app/i18n/Resources_hy.po similarity index 100% rename from app/src/processing/app/i18n/Resources_hy.po rename to arduino-core/src/processing/app/i18n/Resources_hy.po diff --git a/app/src/processing/app/i18n/Resources_hy.properties b/arduino-core/src/processing/app/i18n/Resources_hy.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_hy.properties rename to arduino-core/src/processing/app/i18n/Resources_hy.properties diff --git a/app/src/processing/app/i18n/Resources_in.po b/arduino-core/src/processing/app/i18n/Resources_in.po similarity index 100% rename from app/src/processing/app/i18n/Resources_in.po rename to arduino-core/src/processing/app/i18n/Resources_in.po diff --git a/app/src/processing/app/i18n/Resources_in.properties b/arduino-core/src/processing/app/i18n/Resources_in.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_in.properties rename to arduino-core/src/processing/app/i18n/Resources_in.properties diff --git a/app/src/processing/app/i18n/Resources_it_IT.po b/arduino-core/src/processing/app/i18n/Resources_it_IT.po similarity index 100% rename from app/src/processing/app/i18n/Resources_it_IT.po rename to arduino-core/src/processing/app/i18n/Resources_it_IT.po diff --git a/app/src/processing/app/i18n/Resources_it_IT.properties b/arduino-core/src/processing/app/i18n/Resources_it_IT.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_it_IT.properties rename to arduino-core/src/processing/app/i18n/Resources_it_IT.properties diff --git a/app/src/processing/app/i18n/Resources_iw.po b/arduino-core/src/processing/app/i18n/Resources_iw.po similarity index 100% rename from app/src/processing/app/i18n/Resources_iw.po rename to arduino-core/src/processing/app/i18n/Resources_iw.po diff --git a/app/src/processing/app/i18n/Resources_iw.properties b/arduino-core/src/processing/app/i18n/Resources_iw.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_iw.properties rename to arduino-core/src/processing/app/i18n/Resources_iw.properties diff --git a/app/src/processing/app/i18n/Resources_ja_JP.po b/arduino-core/src/processing/app/i18n/Resources_ja_JP.po similarity index 100% rename from app/src/processing/app/i18n/Resources_ja_JP.po rename to arduino-core/src/processing/app/i18n/Resources_ja_JP.po diff --git a/app/src/processing/app/i18n/Resources_ja_JP.properties b/arduino-core/src/processing/app/i18n/Resources_ja_JP.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_ja_JP.properties rename to arduino-core/src/processing/app/i18n/Resources_ja_JP.properties diff --git a/app/src/processing/app/i18n/Resources_ka_GE.po b/arduino-core/src/processing/app/i18n/Resources_ka_GE.po similarity index 100% rename from app/src/processing/app/i18n/Resources_ka_GE.po rename to arduino-core/src/processing/app/i18n/Resources_ka_GE.po diff --git a/app/src/processing/app/i18n/Resources_ka_GE.properties b/arduino-core/src/processing/app/i18n/Resources_ka_GE.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_ka_GE.properties rename to arduino-core/src/processing/app/i18n/Resources_ka_GE.properties diff --git a/app/src/processing/app/i18n/Resources_ko_KR.po b/arduino-core/src/processing/app/i18n/Resources_ko_KR.po similarity index 100% rename from app/src/processing/app/i18n/Resources_ko_KR.po rename to arduino-core/src/processing/app/i18n/Resources_ko_KR.po diff --git a/app/src/processing/app/i18n/Resources_ko_KR.properties b/arduino-core/src/processing/app/i18n/Resources_ko_KR.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_ko_KR.properties rename to arduino-core/src/processing/app/i18n/Resources_ko_KR.properties diff --git a/app/src/processing/app/i18n/Resources_lt_LT.po b/arduino-core/src/processing/app/i18n/Resources_lt_LT.po similarity index 100% rename from app/src/processing/app/i18n/Resources_lt_LT.po rename to arduino-core/src/processing/app/i18n/Resources_lt_LT.po diff --git a/app/src/processing/app/i18n/Resources_lt_LT.properties b/arduino-core/src/processing/app/i18n/Resources_lt_LT.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_lt_LT.properties rename to arduino-core/src/processing/app/i18n/Resources_lt_LT.properties diff --git a/app/src/processing/app/i18n/Resources_lv_LV.po b/arduino-core/src/processing/app/i18n/Resources_lv_LV.po similarity index 100% rename from app/src/processing/app/i18n/Resources_lv_LV.po rename to arduino-core/src/processing/app/i18n/Resources_lv_LV.po diff --git a/app/src/processing/app/i18n/Resources_lv_LV.properties b/arduino-core/src/processing/app/i18n/Resources_lv_LV.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_lv_LV.properties rename to arduino-core/src/processing/app/i18n/Resources_lv_LV.properties diff --git a/app/src/processing/app/i18n/Resources_mr.po b/arduino-core/src/processing/app/i18n/Resources_mr.po similarity index 100% rename from app/src/processing/app/i18n/Resources_mr.po rename to arduino-core/src/processing/app/i18n/Resources_mr.po diff --git a/app/src/processing/app/i18n/Resources_mr.properties b/arduino-core/src/processing/app/i18n/Resources_mr.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_mr.properties rename to arduino-core/src/processing/app/i18n/Resources_mr.properties diff --git a/app/src/processing/app/i18n/Resources_my_MM.po b/arduino-core/src/processing/app/i18n/Resources_my_MM.po similarity index 100% rename from app/src/processing/app/i18n/Resources_my_MM.po rename to arduino-core/src/processing/app/i18n/Resources_my_MM.po diff --git a/app/src/processing/app/i18n/Resources_my_MM.properties b/arduino-core/src/processing/app/i18n/Resources_my_MM.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_my_MM.properties rename to arduino-core/src/processing/app/i18n/Resources_my_MM.properties diff --git a/app/src/processing/app/i18n/Resources_nb_NO.po b/arduino-core/src/processing/app/i18n/Resources_nb_NO.po similarity index 100% rename from app/src/processing/app/i18n/Resources_nb_NO.po rename to arduino-core/src/processing/app/i18n/Resources_nb_NO.po diff --git a/app/src/processing/app/i18n/Resources_nb_NO.properties b/arduino-core/src/processing/app/i18n/Resources_nb_NO.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_nb_NO.properties rename to arduino-core/src/processing/app/i18n/Resources_nb_NO.properties diff --git a/app/src/processing/app/i18n/Resources_ne.po b/arduino-core/src/processing/app/i18n/Resources_ne.po similarity index 100% rename from app/src/processing/app/i18n/Resources_ne.po rename to arduino-core/src/processing/app/i18n/Resources_ne.po diff --git a/app/src/processing/app/i18n/Resources_ne.properties b/arduino-core/src/processing/app/i18n/Resources_ne.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_ne.properties rename to arduino-core/src/processing/app/i18n/Resources_ne.properties diff --git a/app/src/processing/app/i18n/Resources_nl.po b/arduino-core/src/processing/app/i18n/Resources_nl.po similarity index 100% rename from app/src/processing/app/i18n/Resources_nl.po rename to arduino-core/src/processing/app/i18n/Resources_nl.po diff --git a/app/src/processing/app/i18n/Resources_nl.properties b/arduino-core/src/processing/app/i18n/Resources_nl.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_nl.properties rename to arduino-core/src/processing/app/i18n/Resources_nl.properties diff --git a/app/src/processing/app/i18n/Resources_nl_NL.po b/arduino-core/src/processing/app/i18n/Resources_nl_NL.po similarity index 100% rename from app/src/processing/app/i18n/Resources_nl_NL.po rename to arduino-core/src/processing/app/i18n/Resources_nl_NL.po diff --git a/app/src/processing/app/i18n/Resources_nl_NL.properties b/arduino-core/src/processing/app/i18n/Resources_nl_NL.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_nl_NL.properties rename to arduino-core/src/processing/app/i18n/Resources_nl_NL.properties diff --git a/app/src/processing/app/i18n/Resources_pl.po b/arduino-core/src/processing/app/i18n/Resources_pl.po similarity index 100% rename from app/src/processing/app/i18n/Resources_pl.po rename to arduino-core/src/processing/app/i18n/Resources_pl.po diff --git a/app/src/processing/app/i18n/Resources_pl.properties b/arduino-core/src/processing/app/i18n/Resources_pl.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_pl.properties rename to arduino-core/src/processing/app/i18n/Resources_pl.properties diff --git a/app/src/processing/app/i18n/Resources_pt.po b/arduino-core/src/processing/app/i18n/Resources_pt.po similarity index 100% rename from app/src/processing/app/i18n/Resources_pt.po rename to arduino-core/src/processing/app/i18n/Resources_pt.po diff --git a/app/src/processing/app/i18n/Resources_pt.properties b/arduino-core/src/processing/app/i18n/Resources_pt.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_pt.properties rename to arduino-core/src/processing/app/i18n/Resources_pt.properties diff --git a/app/src/processing/app/i18n/Resources_pt_BR.po b/arduino-core/src/processing/app/i18n/Resources_pt_BR.po similarity index 100% rename from app/src/processing/app/i18n/Resources_pt_BR.po rename to arduino-core/src/processing/app/i18n/Resources_pt_BR.po diff --git a/app/src/processing/app/i18n/Resources_pt_BR.properties b/arduino-core/src/processing/app/i18n/Resources_pt_BR.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_pt_BR.properties rename to arduino-core/src/processing/app/i18n/Resources_pt_BR.properties diff --git a/app/src/processing/app/i18n/Resources_pt_PT.po b/arduino-core/src/processing/app/i18n/Resources_pt_PT.po similarity index 100% rename from app/src/processing/app/i18n/Resources_pt_PT.po rename to arduino-core/src/processing/app/i18n/Resources_pt_PT.po diff --git a/app/src/processing/app/i18n/Resources_pt_PT.properties b/arduino-core/src/processing/app/i18n/Resources_pt_PT.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_pt_PT.properties rename to arduino-core/src/processing/app/i18n/Resources_pt_PT.properties diff --git a/app/src/processing/app/i18n/Resources_ro.po b/arduino-core/src/processing/app/i18n/Resources_ro.po similarity index 100% rename from app/src/processing/app/i18n/Resources_ro.po rename to arduino-core/src/processing/app/i18n/Resources_ro.po diff --git a/app/src/processing/app/i18n/Resources_ro.properties b/arduino-core/src/processing/app/i18n/Resources_ro.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_ro.properties rename to arduino-core/src/processing/app/i18n/Resources_ro.properties diff --git a/app/src/processing/app/i18n/Resources_ru.po b/arduino-core/src/processing/app/i18n/Resources_ru.po similarity index 100% rename from app/src/processing/app/i18n/Resources_ru.po rename to arduino-core/src/processing/app/i18n/Resources_ru.po diff --git a/app/src/processing/app/i18n/Resources_ru.properties b/arduino-core/src/processing/app/i18n/Resources_ru.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_ru.properties rename to arduino-core/src/processing/app/i18n/Resources_ru.properties diff --git a/app/src/processing/app/i18n/Resources_sl_SI.po b/arduino-core/src/processing/app/i18n/Resources_sl_SI.po similarity index 100% rename from app/src/processing/app/i18n/Resources_sl_SI.po rename to arduino-core/src/processing/app/i18n/Resources_sl_SI.po diff --git a/app/src/processing/app/i18n/Resources_sl_SI.properties b/arduino-core/src/processing/app/i18n/Resources_sl_SI.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_sl_SI.properties rename to arduino-core/src/processing/app/i18n/Resources_sl_SI.properties diff --git a/app/src/processing/app/i18n/Resources_sq.po b/arduino-core/src/processing/app/i18n/Resources_sq.po similarity index 100% rename from app/src/processing/app/i18n/Resources_sq.po rename to arduino-core/src/processing/app/i18n/Resources_sq.po diff --git a/app/src/processing/app/i18n/Resources_sq.properties b/arduino-core/src/processing/app/i18n/Resources_sq.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_sq.properties rename to arduino-core/src/processing/app/i18n/Resources_sq.properties diff --git a/app/src/processing/app/i18n/Resources_sv.po b/arduino-core/src/processing/app/i18n/Resources_sv.po similarity index 100% rename from app/src/processing/app/i18n/Resources_sv.po rename to arduino-core/src/processing/app/i18n/Resources_sv.po diff --git a/app/src/processing/app/i18n/Resources_sv.properties b/arduino-core/src/processing/app/i18n/Resources_sv.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_sv.properties rename to arduino-core/src/processing/app/i18n/Resources_sv.properties diff --git a/app/src/processing/app/i18n/Resources_ta.po b/arduino-core/src/processing/app/i18n/Resources_ta.po similarity index 100% rename from app/src/processing/app/i18n/Resources_ta.po rename to arduino-core/src/processing/app/i18n/Resources_ta.po diff --git a/app/src/processing/app/i18n/Resources_ta.properties b/arduino-core/src/processing/app/i18n/Resources_ta.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_ta.properties rename to arduino-core/src/processing/app/i18n/Resources_ta.properties diff --git a/app/src/processing/app/i18n/Resources_tr.po b/arduino-core/src/processing/app/i18n/Resources_tr.po similarity index 100% rename from app/src/processing/app/i18n/Resources_tr.po rename to arduino-core/src/processing/app/i18n/Resources_tr.po diff --git a/app/src/processing/app/i18n/Resources_tr.properties b/arduino-core/src/processing/app/i18n/Resources_tr.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_tr.properties rename to arduino-core/src/processing/app/i18n/Resources_tr.properties diff --git a/app/src/processing/app/i18n/Resources_uk.po b/arduino-core/src/processing/app/i18n/Resources_uk.po similarity index 100% rename from app/src/processing/app/i18n/Resources_uk.po rename to arduino-core/src/processing/app/i18n/Resources_uk.po diff --git a/app/src/processing/app/i18n/Resources_uk.properties b/arduino-core/src/processing/app/i18n/Resources_uk.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_uk.properties rename to arduino-core/src/processing/app/i18n/Resources_uk.properties diff --git a/app/src/processing/app/i18n/Resources_vi.po b/arduino-core/src/processing/app/i18n/Resources_vi.po similarity index 100% rename from app/src/processing/app/i18n/Resources_vi.po rename to arduino-core/src/processing/app/i18n/Resources_vi.po diff --git a/app/src/processing/app/i18n/Resources_vi.properties b/arduino-core/src/processing/app/i18n/Resources_vi.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_vi.properties rename to arduino-core/src/processing/app/i18n/Resources_vi.properties diff --git a/app/src/processing/app/i18n/Resources_zh_CN.po b/arduino-core/src/processing/app/i18n/Resources_zh_CN.po similarity index 100% rename from app/src/processing/app/i18n/Resources_zh_CN.po rename to arduino-core/src/processing/app/i18n/Resources_zh_CN.po diff --git a/app/src/processing/app/i18n/Resources_zh_CN.properties b/arduino-core/src/processing/app/i18n/Resources_zh_CN.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_zh_CN.properties rename to arduino-core/src/processing/app/i18n/Resources_zh_CN.properties diff --git a/app/src/processing/app/i18n/Resources_zh_HK.po b/arduino-core/src/processing/app/i18n/Resources_zh_HK.po similarity index 100% rename from app/src/processing/app/i18n/Resources_zh_HK.po rename to arduino-core/src/processing/app/i18n/Resources_zh_HK.po diff --git a/app/src/processing/app/i18n/Resources_zh_HK.properties b/arduino-core/src/processing/app/i18n/Resources_zh_HK.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_zh_HK.properties rename to arduino-core/src/processing/app/i18n/Resources_zh_HK.properties diff --git a/app/src/processing/app/i18n/Resources_zh_TW.Big5.po b/arduino-core/src/processing/app/i18n/Resources_zh_TW.Big5.po similarity index 100% rename from app/src/processing/app/i18n/Resources_zh_TW.Big5.po rename to arduino-core/src/processing/app/i18n/Resources_zh_TW.Big5.po diff --git a/app/src/processing/app/i18n/Resources_zh_TW.Big5.properties b/arduino-core/src/processing/app/i18n/Resources_zh_TW.Big5.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_zh_TW.Big5.properties rename to arduino-core/src/processing/app/i18n/Resources_zh_TW.Big5.properties diff --git a/app/src/processing/app/i18n/Resources_zh_TW.po b/arduino-core/src/processing/app/i18n/Resources_zh_TW.po similarity index 100% rename from app/src/processing/app/i18n/Resources_zh_TW.po rename to arduino-core/src/processing/app/i18n/Resources_zh_TW.po diff --git a/app/src/processing/app/i18n/Resources_zh_TW.properties b/arduino-core/src/processing/app/i18n/Resources_zh_TW.properties similarity index 100% rename from app/src/processing/app/i18n/Resources_zh_TW.properties rename to arduino-core/src/processing/app/i18n/Resources_zh_TW.properties diff --git a/app/src/processing/app/i18n/pull.sh b/arduino-core/src/processing/app/i18n/pull.sh similarity index 100% rename from app/src/processing/app/i18n/pull.sh rename to arduino-core/src/processing/app/i18n/pull.sh diff --git a/app/src/processing/app/i18n/push.sh b/arduino-core/src/processing/app/i18n/push.sh similarity index 100% rename from app/src/processing/app/i18n/push.sh rename to arduino-core/src/processing/app/i18n/push.sh diff --git a/app/src/processing/app/i18n/python/.gitignore b/arduino-core/src/processing/app/i18n/python/.gitignore similarity index 100% rename from app/src/processing/app/i18n/python/.gitignore rename to arduino-core/src/processing/app/i18n/python/.gitignore diff --git a/app/src/processing/app/i18n/python/pull.py b/arduino-core/src/processing/app/i18n/python/pull.py similarity index 100% rename from app/src/processing/app/i18n/python/pull.py rename to arduino-core/src/processing/app/i18n/python/pull.py diff --git a/app/src/processing/app/i18n/python/push.py b/arduino-core/src/processing/app/i18n/python/push.py similarity index 100% rename from app/src/processing/app/i18n/python/push.py rename to arduino-core/src/processing/app/i18n/python/push.py diff --git a/app/src/processing/app/i18n/python/requests/__init__.py b/arduino-core/src/processing/app/i18n/python/requests/__init__.py similarity index 100% rename from app/src/processing/app/i18n/python/requests/__init__.py rename to arduino-core/src/processing/app/i18n/python/requests/__init__.py diff --git a/app/src/processing/app/i18n/python/requests/adapters.py b/arduino-core/src/processing/app/i18n/python/requests/adapters.py similarity index 100% rename from app/src/processing/app/i18n/python/requests/adapters.py rename to arduino-core/src/processing/app/i18n/python/requests/adapters.py diff --git a/app/src/processing/app/i18n/python/requests/api.py b/arduino-core/src/processing/app/i18n/python/requests/api.py similarity index 100% rename from app/src/processing/app/i18n/python/requests/api.py rename to arduino-core/src/processing/app/i18n/python/requests/api.py diff --git a/app/src/processing/app/i18n/python/requests/auth.py b/arduino-core/src/processing/app/i18n/python/requests/auth.py similarity index 100% rename from app/src/processing/app/i18n/python/requests/auth.py rename to arduino-core/src/processing/app/i18n/python/requests/auth.py diff --git a/app/src/processing/app/i18n/python/requests/cacert.pem b/arduino-core/src/processing/app/i18n/python/requests/cacert.pem similarity index 100% rename from app/src/processing/app/i18n/python/requests/cacert.pem rename to arduino-core/src/processing/app/i18n/python/requests/cacert.pem diff --git a/app/src/processing/app/i18n/python/requests/certs.py b/arduino-core/src/processing/app/i18n/python/requests/certs.py similarity index 100% rename from app/src/processing/app/i18n/python/requests/certs.py rename to arduino-core/src/processing/app/i18n/python/requests/certs.py diff --git a/app/src/processing/app/i18n/python/requests/compat.py b/arduino-core/src/processing/app/i18n/python/requests/compat.py similarity index 100% rename from app/src/processing/app/i18n/python/requests/compat.py rename to arduino-core/src/processing/app/i18n/python/requests/compat.py diff --git a/app/src/processing/app/i18n/python/requests/cookies.py b/arduino-core/src/processing/app/i18n/python/requests/cookies.py similarity index 100% rename from app/src/processing/app/i18n/python/requests/cookies.py rename to arduino-core/src/processing/app/i18n/python/requests/cookies.py diff --git a/app/src/processing/app/i18n/python/requests/exceptions.py b/arduino-core/src/processing/app/i18n/python/requests/exceptions.py similarity index 100% rename from app/src/processing/app/i18n/python/requests/exceptions.py rename to arduino-core/src/processing/app/i18n/python/requests/exceptions.py diff --git a/app/src/processing/app/i18n/python/requests/hooks.py b/arduino-core/src/processing/app/i18n/python/requests/hooks.py similarity index 100% rename from app/src/processing/app/i18n/python/requests/hooks.py rename to arduino-core/src/processing/app/i18n/python/requests/hooks.py diff --git a/app/src/processing/app/i18n/python/requests/models.py b/arduino-core/src/processing/app/i18n/python/requests/models.py similarity index 100% rename from app/src/processing/app/i18n/python/requests/models.py rename to arduino-core/src/processing/app/i18n/python/requests/models.py diff --git a/app/src/processing/app/i18n/python/requests/packages/__init__.py b/arduino-core/src/processing/app/i18n/python/requests/packages/__init__.py similarity index 100% rename from app/src/processing/app/i18n/python/requests/packages/__init__.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/__init__.py diff --git a/app/src/processing/app/i18n/python/requests/packages/charade/__init__.py b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/__init__.py similarity index 97% rename from app/src/processing/app/i18n/python/requests/packages/charade/__init__.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/charade/__init__.py index 5d580b3da..26378d453 100644 --- a/app/src/processing/app/i18n/python/requests/packages/charade/__init__.py +++ b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/__init__.py @@ -1,27 +1,27 @@ -######################## BEGIN LICENSE BLOCK ######################## -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -__version__ = "1.0.1" - - -def detect(aBuf): - from . import universaldetector - u = universaldetector.UniversalDetector() - u.reset() - u.feed(aBuf) - u.close() - return u.result +######################## BEGIN LICENSE BLOCK ######################## +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +__version__ = "1.0.1" + + +def detect(aBuf): + from . import universaldetector + u = universaldetector.UniversalDetector() + u.reset() + u.feed(aBuf) + u.close() + return u.result diff --git a/app/src/processing/app/i18n/python/requests/packages/charade/big5freq.py b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/big5freq.py similarity index 100% rename from app/src/processing/app/i18n/python/requests/packages/charade/big5freq.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/charade/big5freq.py diff --git a/app/src/processing/app/i18n/python/requests/packages/charade/big5prober.py b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/big5prober.py similarity index 97% rename from app/src/processing/app/i18n/python/requests/packages/charade/big5prober.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/charade/big5prober.py index 7382f7c5d..becce81e5 100644 --- a/app/src/processing/app/i18n/python/requests/packages/charade/big5prober.py +++ b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/big5prober.py @@ -1,42 +1,42 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is Mozilla Communicator client code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from .mbcharsetprober import MultiByteCharSetProber -from .codingstatemachine import CodingStateMachine -from .chardistribution import Big5DistributionAnalysis -from .mbcssm import Big5SMModel - - -class Big5Prober(MultiByteCharSetProber): - def __init__(self): - MultiByteCharSetProber.__init__(self) - self._mCodingSM = CodingStateMachine(Big5SMModel) - self._mDistributionAnalyzer = Big5DistributionAnalysis() - self.reset() - - def get_charset_name(self): - return "Big5" +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .mbcharsetprober import MultiByteCharSetProber +from .codingstatemachine import CodingStateMachine +from .chardistribution import Big5DistributionAnalysis +from .mbcssm import Big5SMModel + + +class Big5Prober(MultiByteCharSetProber): + def __init__(self): + MultiByteCharSetProber.__init__(self) + self._mCodingSM = CodingStateMachine(Big5SMModel) + self._mDistributionAnalyzer = Big5DistributionAnalysis() + self.reset() + + def get_charset_name(self): + return "Big5" diff --git a/app/src/processing/app/i18n/python/requests/packages/charade/chardistribution.py b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/chardistribution.py similarity index 97% rename from app/src/processing/app/i18n/python/requests/packages/charade/chardistribution.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/charade/chardistribution.py index 981bd1a53..253408f28 100644 --- a/app/src/processing/app/i18n/python/requests/packages/charade/chardistribution.py +++ b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/chardistribution.py @@ -1,230 +1,230 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is Mozilla Communicator client code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from .euctwfreq import (EUCTWCharToFreqOrder, EUCTW_TABLE_SIZE, - EUCTW_TYPICAL_DISTRIBUTION_RATIO) -from .euckrfreq import (EUCKRCharToFreqOrder, EUCKR_TABLE_SIZE, - EUCKR_TYPICAL_DISTRIBUTION_RATIO) -from .gb2312freq import (GB2312CharToFreqOrder, GB2312_TABLE_SIZE, - GB2312_TYPICAL_DISTRIBUTION_RATIO) -from .big5freq import (Big5CharToFreqOrder, BIG5_TABLE_SIZE, - BIG5_TYPICAL_DISTRIBUTION_RATIO) -from .jisfreq import (JISCharToFreqOrder, JIS_TABLE_SIZE, - JIS_TYPICAL_DISTRIBUTION_RATIO) -from .compat import wrap_ord - -ENOUGH_DATA_THRESHOLD = 1024 -SURE_YES = 0.99 -SURE_NO = 0.01 - - -class CharDistributionAnalysis: - def __init__(self): - # Mapping table to get frequency order from char order (get from - # GetOrder()) - self._mCharToFreqOrder = None - self._mTableSize = None # Size of above table - # This is a constant value which varies from language to language, - # used in calculating confidence. See - # http://www.mozilla.org/projects/intl/UniversalCharsetDetection.html - # for further detail. - self._mTypicalDistributionRatio = None - self.reset() - - def reset(self): - """reset analyser, clear any state""" - # If this flag is set to True, detection is done and conclusion has - # been made - self._mDone = False - self._mTotalChars = 0 # Total characters encountered - # The number of characters whose frequency order is less than 512 - self._mFreqChars = 0 - - def feed(self, aBuf, aCharLen): - """feed a character with known length""" - if aCharLen == 2: - # we only care about 2-bytes character in our distribution analysis - order = self.get_order(aBuf) - else: - order = -1 - if order >= 0: - self._mTotalChars += 1 - # order is valid - if order < self._mTableSize: - if 512 > self._mCharToFreqOrder[order]: - self._mFreqChars += 1 - - def get_confidence(self): - """return confidence based on existing data""" - # if we didn't receive any character in our consideration range, - # return negative answer - if self._mTotalChars <= 0: - return SURE_NO - - if self._mTotalChars != self._mFreqChars: - r = (self._mFreqChars / ((self._mTotalChars - self._mFreqChars) - * self._mTypicalDistributionRatio)) - if r < SURE_YES: - return r - - # normalize confidence (we don't want to be 100% sure) - return SURE_YES - - def got_enough_data(self): - # It is not necessary to receive all data to draw conclusion. - # For charset detection, certain amount of data is enough - return self._mTotalChars > ENOUGH_DATA_THRESHOLD - - def get_order(self, aBuf): - # We do not handle characters based on the original encoding string, - # but convert this encoding string to a number, here called order. - # This allows multiple encodings of a language to share one frequency - # table. - return -1 - - -class EUCTWDistributionAnalysis(CharDistributionAnalysis): - def __init__(self): - CharDistributionAnalysis.__init__(self) - self._mCharToFreqOrder = EUCTWCharToFreqOrder - self._mTableSize = EUCTW_TABLE_SIZE - self._mTypicalDistributionRatio = EUCTW_TYPICAL_DISTRIBUTION_RATIO - - def get_order(self, aBuf): - # for euc-TW encoding, we are interested - # first byte range: 0xc4 -- 0xfe - # second byte range: 0xa1 -- 0xfe - # no validation needed here. State machine has done that - first_char = wrap_ord(aBuf[0]) - if first_char >= 0xC4: - return 94 * (first_char - 0xC4) + wrap_ord(aBuf[1]) - 0xA1 - else: - return -1 - - -class EUCKRDistributionAnalysis(CharDistributionAnalysis): - def __init__(self): - CharDistributionAnalysis.__init__(self) - self._mCharToFreqOrder = EUCKRCharToFreqOrder - self._mTableSize = EUCKR_TABLE_SIZE - self._mTypicalDistributionRatio = EUCKR_TYPICAL_DISTRIBUTION_RATIO - - def get_order(self, aBuf): - # for euc-KR encoding, we are interested - # first byte range: 0xb0 -- 0xfe - # second byte range: 0xa1 -- 0xfe - # no validation needed here. State machine has done that - first_char = wrap_ord(aBuf[0]) - if first_char >= 0xB0: - return 94 * (first_char - 0xB0) + wrap_ord(aBuf[1]) - 0xA1 - else: - return -1 - - -class GB2312DistributionAnalysis(CharDistributionAnalysis): - def __init__(self): - CharDistributionAnalysis.__init__(self) - self._mCharToFreqOrder = GB2312CharToFreqOrder - self._mTableSize = GB2312_TABLE_SIZE - self._mTypicalDistributionRatio = GB2312_TYPICAL_DISTRIBUTION_RATIO - - def get_order(self, aBuf): - # for GB2312 encoding, we are interested - # first byte range: 0xb0 -- 0xfe - # second byte range: 0xa1 -- 0xfe - # no validation needed here. State machine has done that - first_char, second_char = wrap_ord(aBuf[0]), wrap_ord(aBuf[1]) - if (first_char >= 0xB0) and (second_char >= 0xA1): - return 94 * (first_char - 0xB0) + second_char - 0xA1 - else: - return -1 - - -class Big5DistributionAnalysis(CharDistributionAnalysis): - def __init__(self): - CharDistributionAnalysis.__init__(self) - self._mCharToFreqOrder = Big5CharToFreqOrder - self._mTableSize = BIG5_TABLE_SIZE - self._mTypicalDistributionRatio = BIG5_TYPICAL_DISTRIBUTION_RATIO - - def get_order(self, aBuf): - # for big5 encoding, we are interested - # first byte range: 0xa4 -- 0xfe - # second byte range: 0x40 -- 0x7e , 0xa1 -- 0xfe - # no validation needed here. State machine has done that - first_char, second_char = wrap_ord(aBuf[0]), wrap_ord(aBuf[1]) - if first_char >= 0xA4: - if second_char >= 0xA1: - return 157 * (first_char - 0xA4) + second_char - 0xA1 + 63 - else: - return 157 * (first_char - 0xA4) + second_char - 0x40 - else: - return -1 - - -class SJISDistributionAnalysis(CharDistributionAnalysis): - def __init__(self): - CharDistributionAnalysis.__init__(self) - self._mCharToFreqOrder = JISCharToFreqOrder - self._mTableSize = JIS_TABLE_SIZE - self._mTypicalDistributionRatio = JIS_TYPICAL_DISTRIBUTION_RATIO - - def get_order(self, aBuf): - # for sjis encoding, we are interested - # first byte range: 0x81 -- 0x9f , 0xe0 -- 0xfe - # second byte range: 0x40 -- 0x7e, 0x81 -- oxfe - # no validation needed here. State machine has done that - first_char, second_char = wrap_ord(aBuf[0]), wrap_ord(aBuf[1]) - if (first_char >= 0x81) and (first_char <= 0x9F): - order = 188 * (first_char - 0x81) - elif (first_char >= 0xE0) and (first_char <= 0xEF): - order = 188 * (first_char - 0xE0 + 31) - else: - return -1 - order = order + second_char - 0x40 - if second_char > 0x7F: - order = -1 - return order - - -class EUCJPDistributionAnalysis(CharDistributionAnalysis): - def __init__(self): - CharDistributionAnalysis.__init__(self) - self._mCharToFreqOrder = JISCharToFreqOrder - self._mTableSize = JIS_TABLE_SIZE - self._mTypicalDistributionRatio = JIS_TYPICAL_DISTRIBUTION_RATIO - - def get_order(self, aBuf): - # for euc-JP encoding, we are interested - # first byte range: 0xa0 -- 0xfe - # second byte range: 0xa1 -- 0xfe - # no validation needed here. State machine has done that - char = wrap_ord(aBuf[0]) - if char >= 0xA0: - return 94 * (char - 0xA1) + wrap_ord(aBuf[1]) - 0xa1 - else: - return -1 +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .euctwfreq import (EUCTWCharToFreqOrder, EUCTW_TABLE_SIZE, + EUCTW_TYPICAL_DISTRIBUTION_RATIO) +from .euckrfreq import (EUCKRCharToFreqOrder, EUCKR_TABLE_SIZE, + EUCKR_TYPICAL_DISTRIBUTION_RATIO) +from .gb2312freq import (GB2312CharToFreqOrder, GB2312_TABLE_SIZE, + GB2312_TYPICAL_DISTRIBUTION_RATIO) +from .big5freq import (Big5CharToFreqOrder, BIG5_TABLE_SIZE, + BIG5_TYPICAL_DISTRIBUTION_RATIO) +from .jisfreq import (JISCharToFreqOrder, JIS_TABLE_SIZE, + JIS_TYPICAL_DISTRIBUTION_RATIO) +from .compat import wrap_ord + +ENOUGH_DATA_THRESHOLD = 1024 +SURE_YES = 0.99 +SURE_NO = 0.01 + + +class CharDistributionAnalysis: + def __init__(self): + # Mapping table to get frequency order from char order (get from + # GetOrder()) + self._mCharToFreqOrder = None + self._mTableSize = None # Size of above table + # This is a constant value which varies from language to language, + # used in calculating confidence. See + # http://www.mozilla.org/projects/intl/UniversalCharsetDetection.html + # for further detail. + self._mTypicalDistributionRatio = None + self.reset() + + def reset(self): + """reset analyser, clear any state""" + # If this flag is set to True, detection is done and conclusion has + # been made + self._mDone = False + self._mTotalChars = 0 # Total characters encountered + # The number of characters whose frequency order is less than 512 + self._mFreqChars = 0 + + def feed(self, aBuf, aCharLen): + """feed a character with known length""" + if aCharLen == 2: + # we only care about 2-bytes character in our distribution analysis + order = self.get_order(aBuf) + else: + order = -1 + if order >= 0: + self._mTotalChars += 1 + # order is valid + if order < self._mTableSize: + if 512 > self._mCharToFreqOrder[order]: + self._mFreqChars += 1 + + def get_confidence(self): + """return confidence based on existing data""" + # if we didn't receive any character in our consideration range, + # return negative answer + if self._mTotalChars <= 0: + return SURE_NO + + if self._mTotalChars != self._mFreqChars: + r = (self._mFreqChars / ((self._mTotalChars - self._mFreqChars) + * self._mTypicalDistributionRatio)) + if r < SURE_YES: + return r + + # normalize confidence (we don't want to be 100% sure) + return SURE_YES + + def got_enough_data(self): + # It is not necessary to receive all data to draw conclusion. + # For charset detection, certain amount of data is enough + return self._mTotalChars > ENOUGH_DATA_THRESHOLD + + def get_order(self, aBuf): + # We do not handle characters based on the original encoding string, + # but convert this encoding string to a number, here called order. + # This allows multiple encodings of a language to share one frequency + # table. + return -1 + + +class EUCTWDistributionAnalysis(CharDistributionAnalysis): + def __init__(self): + CharDistributionAnalysis.__init__(self) + self._mCharToFreqOrder = EUCTWCharToFreqOrder + self._mTableSize = EUCTW_TABLE_SIZE + self._mTypicalDistributionRatio = EUCTW_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, aBuf): + # for euc-TW encoding, we are interested + # first byte range: 0xc4 -- 0xfe + # second byte range: 0xa1 -- 0xfe + # no validation needed here. State machine has done that + first_char = wrap_ord(aBuf[0]) + if first_char >= 0xC4: + return 94 * (first_char - 0xC4) + wrap_ord(aBuf[1]) - 0xA1 + else: + return -1 + + +class EUCKRDistributionAnalysis(CharDistributionAnalysis): + def __init__(self): + CharDistributionAnalysis.__init__(self) + self._mCharToFreqOrder = EUCKRCharToFreqOrder + self._mTableSize = EUCKR_TABLE_SIZE + self._mTypicalDistributionRatio = EUCKR_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, aBuf): + # for euc-KR encoding, we are interested + # first byte range: 0xb0 -- 0xfe + # second byte range: 0xa1 -- 0xfe + # no validation needed here. State machine has done that + first_char = wrap_ord(aBuf[0]) + if first_char >= 0xB0: + return 94 * (first_char - 0xB0) + wrap_ord(aBuf[1]) - 0xA1 + else: + return -1 + + +class GB2312DistributionAnalysis(CharDistributionAnalysis): + def __init__(self): + CharDistributionAnalysis.__init__(self) + self._mCharToFreqOrder = GB2312CharToFreqOrder + self._mTableSize = GB2312_TABLE_SIZE + self._mTypicalDistributionRatio = GB2312_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, aBuf): + # for GB2312 encoding, we are interested + # first byte range: 0xb0 -- 0xfe + # second byte range: 0xa1 -- 0xfe + # no validation needed here. State machine has done that + first_char, second_char = wrap_ord(aBuf[0]), wrap_ord(aBuf[1]) + if (first_char >= 0xB0) and (second_char >= 0xA1): + return 94 * (first_char - 0xB0) + second_char - 0xA1 + else: + return -1 + + +class Big5DistributionAnalysis(CharDistributionAnalysis): + def __init__(self): + CharDistributionAnalysis.__init__(self) + self._mCharToFreqOrder = Big5CharToFreqOrder + self._mTableSize = BIG5_TABLE_SIZE + self._mTypicalDistributionRatio = BIG5_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, aBuf): + # for big5 encoding, we are interested + # first byte range: 0xa4 -- 0xfe + # second byte range: 0x40 -- 0x7e , 0xa1 -- 0xfe + # no validation needed here. State machine has done that + first_char, second_char = wrap_ord(aBuf[0]), wrap_ord(aBuf[1]) + if first_char >= 0xA4: + if second_char >= 0xA1: + return 157 * (first_char - 0xA4) + second_char - 0xA1 + 63 + else: + return 157 * (first_char - 0xA4) + second_char - 0x40 + else: + return -1 + + +class SJISDistributionAnalysis(CharDistributionAnalysis): + def __init__(self): + CharDistributionAnalysis.__init__(self) + self._mCharToFreqOrder = JISCharToFreqOrder + self._mTableSize = JIS_TABLE_SIZE + self._mTypicalDistributionRatio = JIS_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, aBuf): + # for sjis encoding, we are interested + # first byte range: 0x81 -- 0x9f , 0xe0 -- 0xfe + # second byte range: 0x40 -- 0x7e, 0x81 -- oxfe + # no validation needed here. State machine has done that + first_char, second_char = wrap_ord(aBuf[0]), wrap_ord(aBuf[1]) + if (first_char >= 0x81) and (first_char <= 0x9F): + order = 188 * (first_char - 0x81) + elif (first_char >= 0xE0) and (first_char <= 0xEF): + order = 188 * (first_char - 0xE0 + 31) + else: + return -1 + order = order + second_char - 0x40 + if second_char > 0x7F: + order = -1 + return order + + +class EUCJPDistributionAnalysis(CharDistributionAnalysis): + def __init__(self): + CharDistributionAnalysis.__init__(self) + self._mCharToFreqOrder = JISCharToFreqOrder + self._mTableSize = JIS_TABLE_SIZE + self._mTypicalDistributionRatio = JIS_TYPICAL_DISTRIBUTION_RATIO + + def get_order(self, aBuf): + # for euc-JP encoding, we are interested + # first byte range: 0xa0 -- 0xfe + # second byte range: 0xa1 -- 0xfe + # no validation needed here. State machine has done that + char = wrap_ord(aBuf[0]) + if char >= 0xA0: + return 94 * (char - 0xA1) + wrap_ord(aBuf[1]) - 0xa1 + else: + return -1 diff --git a/app/src/processing/app/i18n/python/requests/packages/charade/charsetgroupprober.py b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/charsetgroupprober.py similarity index 97% rename from app/src/processing/app/i18n/python/requests/packages/charade/charsetgroupprober.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/charade/charsetgroupprober.py index 295965474..85e7a1c67 100644 --- a/app/src/processing/app/i18n/python/requests/packages/charade/charsetgroupprober.py +++ b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/charsetgroupprober.py @@ -1,106 +1,106 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is Mozilla Communicator client code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from . import constants -import sys -from .charsetprober import CharSetProber - - -class CharSetGroupProber(CharSetProber): - def __init__(self): - CharSetProber.__init__(self) - self._mActiveNum = 0 - self._mProbers = [] - self._mBestGuessProber = None - - def reset(self): - CharSetProber.reset(self) - self._mActiveNum = 0 - for prober in self._mProbers: - if prober: - prober.reset() - prober.active = True - self._mActiveNum += 1 - self._mBestGuessProber = None - - def get_charset_name(self): - if not self._mBestGuessProber: - self.get_confidence() - if not self._mBestGuessProber: - return None -# self._mBestGuessProber = self._mProbers[0] - return self._mBestGuessProber.get_charset_name() - - def feed(self, aBuf): - for prober in self._mProbers: - if not prober: - continue - if not prober.active: - continue - st = prober.feed(aBuf) - if not st: - continue - if st == constants.eFoundIt: - self._mBestGuessProber = prober - return self.get_state() - elif st == constants.eNotMe: - prober.active = False - self._mActiveNum -= 1 - if self._mActiveNum <= 0: - self._mState = constants.eNotMe - return self.get_state() - return self.get_state() - - def get_confidence(self): - st = self.get_state() - if st == constants.eFoundIt: - return 0.99 - elif st == constants.eNotMe: - return 0.01 - bestConf = 0.0 - self._mBestGuessProber = None - for prober in self._mProbers: - if not prober: - continue - if not prober.active: - if constants._debug: - sys.stderr.write(prober.get_charset_name() - + ' not active\n') - continue - cf = prober.get_confidence() - if constants._debug: - sys.stderr.write('%s confidence = %s\n' % - (prober.get_charset_name(), cf)) - if bestConf < cf: - bestConf = cf - self._mBestGuessProber = prober - if not self._mBestGuessProber: - return 0.0 - return bestConf -# else: -# self._mBestGuessProber = self._mProbers[0] -# return self._mBestGuessProber.get_confidence() +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from . import constants +import sys +from .charsetprober import CharSetProber + + +class CharSetGroupProber(CharSetProber): + def __init__(self): + CharSetProber.__init__(self) + self._mActiveNum = 0 + self._mProbers = [] + self._mBestGuessProber = None + + def reset(self): + CharSetProber.reset(self) + self._mActiveNum = 0 + for prober in self._mProbers: + if prober: + prober.reset() + prober.active = True + self._mActiveNum += 1 + self._mBestGuessProber = None + + def get_charset_name(self): + if not self._mBestGuessProber: + self.get_confidence() + if not self._mBestGuessProber: + return None +# self._mBestGuessProber = self._mProbers[0] + return self._mBestGuessProber.get_charset_name() + + def feed(self, aBuf): + for prober in self._mProbers: + if not prober: + continue + if not prober.active: + continue + st = prober.feed(aBuf) + if not st: + continue + if st == constants.eFoundIt: + self._mBestGuessProber = prober + return self.get_state() + elif st == constants.eNotMe: + prober.active = False + self._mActiveNum -= 1 + if self._mActiveNum <= 0: + self._mState = constants.eNotMe + return self.get_state() + return self.get_state() + + def get_confidence(self): + st = self.get_state() + if st == constants.eFoundIt: + return 0.99 + elif st == constants.eNotMe: + return 0.01 + bestConf = 0.0 + self._mBestGuessProber = None + for prober in self._mProbers: + if not prober: + continue + if not prober.active: + if constants._debug: + sys.stderr.write(prober.get_charset_name() + + ' not active\n') + continue + cf = prober.get_confidence() + if constants._debug: + sys.stderr.write('%s confidence = %s\n' % + (prober.get_charset_name(), cf)) + if bestConf < cf: + bestConf = cf + self._mBestGuessProber = prober + if not self._mBestGuessProber: + return 0.0 + return bestConf +# else: +# self._mBestGuessProber = self._mProbers[0] +# return self._mBestGuessProber.get_confidence() diff --git a/app/src/processing/app/i18n/python/requests/packages/charade/charsetprober.py b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/charsetprober.py similarity index 100% rename from app/src/processing/app/i18n/python/requests/packages/charade/charsetprober.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/charade/charsetprober.py diff --git a/app/src/processing/app/i18n/python/requests/packages/charade/codingstatemachine.py b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/codingstatemachine.py similarity index 97% rename from app/src/processing/app/i18n/python/requests/packages/charade/codingstatemachine.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/charade/codingstatemachine.py index 1bda9ff16..8dd8c9179 100644 --- a/app/src/processing/app/i18n/python/requests/packages/charade/codingstatemachine.py +++ b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/codingstatemachine.py @@ -1,61 +1,61 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is mozilla.org code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from .constants import eStart -from .compat import wrap_ord - - -class CodingStateMachine: - def __init__(self, sm): - self._mModel = sm - self._mCurrentBytePos = 0 - self._mCurrentCharLen = 0 - self.reset() - - def reset(self): - self._mCurrentState = eStart - - def next_state(self, c): - # for each byte we get its class - # if it is first byte, we also get byte length - # PY3K: aBuf is a byte stream, so c is an int, not a byte - byteCls = self._mModel['classTable'][wrap_ord(c)] - if self._mCurrentState == eStart: - self._mCurrentBytePos = 0 - self._mCurrentCharLen = self._mModel['charLenTable'][byteCls] - # from byte's class and stateTable, we get its next state - curr_state = (self._mCurrentState * self._mModel['classFactor'] - + byteCls) - self._mCurrentState = self._mModel['stateTable'][curr_state] - self._mCurrentBytePos += 1 - return self._mCurrentState - - def get_current_charlen(self): - return self._mCurrentCharLen - - def get_coding_state_machine(self): - return self._mModel['name'] +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .constants import eStart +from .compat import wrap_ord + + +class CodingStateMachine: + def __init__(self, sm): + self._mModel = sm + self._mCurrentBytePos = 0 + self._mCurrentCharLen = 0 + self.reset() + + def reset(self): + self._mCurrentState = eStart + + def next_state(self, c): + # for each byte we get its class + # if it is first byte, we also get byte length + # PY3K: aBuf is a byte stream, so c is an int, not a byte + byteCls = self._mModel['classTable'][wrap_ord(c)] + if self._mCurrentState == eStart: + self._mCurrentBytePos = 0 + self._mCurrentCharLen = self._mModel['charLenTable'][byteCls] + # from byte's class and stateTable, we get its next state + curr_state = (self._mCurrentState * self._mModel['classFactor'] + + byteCls) + self._mCurrentState = self._mModel['stateTable'][curr_state] + self._mCurrentBytePos += 1 + return self._mCurrentState + + def get_current_charlen(self): + return self._mCurrentCharLen + + def get_coding_state_machine(self): + return self._mModel['name'] diff --git a/app/src/processing/app/i18n/python/requests/packages/charade/compat.py b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/compat.py similarity index 100% rename from app/src/processing/app/i18n/python/requests/packages/charade/compat.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/charade/compat.py diff --git a/app/src/processing/app/i18n/python/requests/packages/charade/constants.py b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/constants.py similarity index 97% rename from app/src/processing/app/i18n/python/requests/packages/charade/constants.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/charade/constants.py index a3d27de25..e4d148b3c 100644 --- a/app/src/processing/app/i18n/python/requests/packages/charade/constants.py +++ b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/constants.py @@ -1,39 +1,39 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is Mozilla Universal charset detector code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 2001 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# Shy Shalom - original C code -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -_debug = 0 - -eDetecting = 0 -eFoundIt = 1 -eNotMe = 2 - -eStart = 0 -eError = 1 -eItsMe = 2 - -SHORTCUT_THRESHOLD = 0.95 +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +_debug = 0 + +eDetecting = 0 +eFoundIt = 1 +eNotMe = 2 + +eStart = 0 +eError = 1 +eItsMe = 2 + +SHORTCUT_THRESHOLD = 0.95 diff --git a/app/src/processing/app/i18n/python/requests/packages/charade/escprober.py b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/escprober.py similarity index 97% rename from app/src/processing/app/i18n/python/requests/packages/charade/escprober.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/charade/escprober.py index 0063935ce..80a844ff3 100644 --- a/app/src/processing/app/i18n/python/requests/packages/charade/escprober.py +++ b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/escprober.py @@ -1,86 +1,86 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is mozilla.org code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from . import constants -from .escsm import (HZSMModel, ISO2022CNSMModel, ISO2022JPSMModel, - ISO2022KRSMModel) -from .charsetprober import CharSetProber -from .codingstatemachine import CodingStateMachine -from .compat import wrap_ord - - -class EscCharSetProber(CharSetProber): - def __init__(self): - CharSetProber.__init__(self) - self._mCodingSM = [ - CodingStateMachine(HZSMModel), - CodingStateMachine(ISO2022CNSMModel), - CodingStateMachine(ISO2022JPSMModel), - CodingStateMachine(ISO2022KRSMModel) - ] - self.reset() - - def reset(self): - CharSetProber.reset(self) - for codingSM in self._mCodingSM: - if not codingSM: - continue - codingSM.active = True - codingSM.reset() - self._mActiveSM = len(self._mCodingSM) - self._mDetectedCharset = None - - def get_charset_name(self): - return self._mDetectedCharset - - def get_confidence(self): - if self._mDetectedCharset: - return 0.99 - else: - return 0.00 - - def feed(self, aBuf): - for c in aBuf: - # PY3K: aBuf is a byte array, so c is an int, not a byte - for codingSM in self._mCodingSM: - if not codingSM: - continue - if not codingSM.active: - continue - codingState = codingSM.next_state(wrap_ord(c)) - if codingState == constants.eError: - codingSM.active = False - self._mActiveSM -= 1 - if self._mActiveSM <= 0: - self._mState = constants.eNotMe - return self.get_state() - elif codingState == constants.eItsMe: - self._mState = constants.eFoundIt - self._mDetectedCharset = codingSM.get_coding_state_machine() # nopep8 - return self.get_state() - - return self.get_state() +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from . import constants +from .escsm import (HZSMModel, ISO2022CNSMModel, ISO2022JPSMModel, + ISO2022KRSMModel) +from .charsetprober import CharSetProber +from .codingstatemachine import CodingStateMachine +from .compat import wrap_ord + + +class EscCharSetProber(CharSetProber): + def __init__(self): + CharSetProber.__init__(self) + self._mCodingSM = [ + CodingStateMachine(HZSMModel), + CodingStateMachine(ISO2022CNSMModel), + CodingStateMachine(ISO2022JPSMModel), + CodingStateMachine(ISO2022KRSMModel) + ] + self.reset() + + def reset(self): + CharSetProber.reset(self) + for codingSM in self._mCodingSM: + if not codingSM: + continue + codingSM.active = True + codingSM.reset() + self._mActiveSM = len(self._mCodingSM) + self._mDetectedCharset = None + + def get_charset_name(self): + return self._mDetectedCharset + + def get_confidence(self): + if self._mDetectedCharset: + return 0.99 + else: + return 0.00 + + def feed(self, aBuf): + for c in aBuf: + # PY3K: aBuf is a byte array, so c is an int, not a byte + for codingSM in self._mCodingSM: + if not codingSM: + continue + if not codingSM.active: + continue + codingState = codingSM.next_state(wrap_ord(c)) + if codingState == constants.eError: + codingSM.active = False + self._mActiveSM -= 1 + if self._mActiveSM <= 0: + self._mState = constants.eNotMe + return self.get_state() + elif codingState == constants.eItsMe: + self._mState = constants.eFoundIt + self._mDetectedCharset = codingSM.get_coding_state_machine() # nopep8 + return self.get_state() + + return self.get_state() diff --git a/app/src/processing/app/i18n/python/requests/packages/charade/escsm.py b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/escsm.py similarity index 97% rename from app/src/processing/app/i18n/python/requests/packages/charade/escsm.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/charade/escsm.py index 1cf3aa6db..bd302b4c6 100644 --- a/app/src/processing/app/i18n/python/requests/packages/charade/escsm.py +++ b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/escsm.py @@ -1,242 +1,242 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is mozilla.org code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from .constants import eStart, eError, eItsMe - -HZ_cls = ( -1,0,0,0,0,0,0,0, # 00 - 07 -0,0,0,0,0,0,0,0, # 08 - 0f -0,0,0,0,0,0,0,0, # 10 - 17 -0,0,0,1,0,0,0,0, # 18 - 1f -0,0,0,0,0,0,0,0, # 20 - 27 -0,0,0,0,0,0,0,0, # 28 - 2f -0,0,0,0,0,0,0,0, # 30 - 37 -0,0,0,0,0,0,0,0, # 38 - 3f -0,0,0,0,0,0,0,0, # 40 - 47 -0,0,0,0,0,0,0,0, # 48 - 4f -0,0,0,0,0,0,0,0, # 50 - 57 -0,0,0,0,0,0,0,0, # 58 - 5f -0,0,0,0,0,0,0,0, # 60 - 67 -0,0,0,0,0,0,0,0, # 68 - 6f -0,0,0,0,0,0,0,0, # 70 - 77 -0,0,0,4,0,5,2,0, # 78 - 7f -1,1,1,1,1,1,1,1, # 80 - 87 -1,1,1,1,1,1,1,1, # 88 - 8f -1,1,1,1,1,1,1,1, # 90 - 97 -1,1,1,1,1,1,1,1, # 98 - 9f -1,1,1,1,1,1,1,1, # a0 - a7 -1,1,1,1,1,1,1,1, # a8 - af -1,1,1,1,1,1,1,1, # b0 - b7 -1,1,1,1,1,1,1,1, # b8 - bf -1,1,1,1,1,1,1,1, # c0 - c7 -1,1,1,1,1,1,1,1, # c8 - cf -1,1,1,1,1,1,1,1, # d0 - d7 -1,1,1,1,1,1,1,1, # d8 - df -1,1,1,1,1,1,1,1, # e0 - e7 -1,1,1,1,1,1,1,1, # e8 - ef -1,1,1,1,1,1,1,1, # f0 - f7 -1,1,1,1,1,1,1,1, # f8 - ff -) - -HZ_st = ( -eStart,eError, 3,eStart,eStart,eStart,eError,eError,# 00-07 -eError,eError,eError,eError,eItsMe,eItsMe,eItsMe,eItsMe,# 08-0f -eItsMe,eItsMe,eError,eError,eStart,eStart, 4,eError,# 10-17 - 5,eError, 6,eError, 5, 5, 4,eError,# 18-1f - 4,eError, 4, 4, 4,eError, 4,eError,# 20-27 - 4,eItsMe,eStart,eStart,eStart,eStart,eStart,eStart,# 28-2f -) - -HZCharLenTable = (0, 0, 0, 0, 0, 0) - -HZSMModel = {'classTable': HZ_cls, - 'classFactor': 6, - 'stateTable': HZ_st, - 'charLenTable': HZCharLenTable, - 'name': "HZ-GB-2312"} - -ISO2022CN_cls = ( -2,0,0,0,0,0,0,0, # 00 - 07 -0,0,0,0,0,0,0,0, # 08 - 0f -0,0,0,0,0,0,0,0, # 10 - 17 -0,0,0,1,0,0,0,0, # 18 - 1f -0,0,0,0,0,0,0,0, # 20 - 27 -0,3,0,0,0,0,0,0, # 28 - 2f -0,0,0,0,0,0,0,0, # 30 - 37 -0,0,0,0,0,0,0,0, # 38 - 3f -0,0,0,4,0,0,0,0, # 40 - 47 -0,0,0,0,0,0,0,0, # 48 - 4f -0,0,0,0,0,0,0,0, # 50 - 57 -0,0,0,0,0,0,0,0, # 58 - 5f -0,0,0,0,0,0,0,0, # 60 - 67 -0,0,0,0,0,0,0,0, # 68 - 6f -0,0,0,0,0,0,0,0, # 70 - 77 -0,0,0,0,0,0,0,0, # 78 - 7f -2,2,2,2,2,2,2,2, # 80 - 87 -2,2,2,2,2,2,2,2, # 88 - 8f -2,2,2,2,2,2,2,2, # 90 - 97 -2,2,2,2,2,2,2,2, # 98 - 9f -2,2,2,2,2,2,2,2, # a0 - a7 -2,2,2,2,2,2,2,2, # a8 - af -2,2,2,2,2,2,2,2, # b0 - b7 -2,2,2,2,2,2,2,2, # b8 - bf -2,2,2,2,2,2,2,2, # c0 - c7 -2,2,2,2,2,2,2,2, # c8 - cf -2,2,2,2,2,2,2,2, # d0 - d7 -2,2,2,2,2,2,2,2, # d8 - df -2,2,2,2,2,2,2,2, # e0 - e7 -2,2,2,2,2,2,2,2, # e8 - ef -2,2,2,2,2,2,2,2, # f0 - f7 -2,2,2,2,2,2,2,2, # f8 - ff -) - -ISO2022CN_st = ( -eStart, 3,eError,eStart,eStart,eStart,eStart,eStart,# 00-07 -eStart,eError,eError,eError,eError,eError,eError,eError,# 08-0f -eError,eError,eItsMe,eItsMe,eItsMe,eItsMe,eItsMe,eItsMe,# 10-17 -eItsMe,eItsMe,eItsMe,eError,eError,eError, 4,eError,# 18-1f -eError,eError,eError,eItsMe,eError,eError,eError,eError,# 20-27 - 5, 6,eError,eError,eError,eError,eError,eError,# 28-2f -eError,eError,eError,eItsMe,eError,eError,eError,eError,# 30-37 -eError,eError,eError,eError,eError,eItsMe,eError,eStart,# 38-3f -) - -ISO2022CNCharLenTable = (0, 0, 0, 0, 0, 0, 0, 0, 0) - -ISO2022CNSMModel = {'classTable': ISO2022CN_cls, - 'classFactor': 9, - 'stateTable': ISO2022CN_st, - 'charLenTable': ISO2022CNCharLenTable, - 'name': "ISO-2022-CN"} - -ISO2022JP_cls = ( -2,0,0,0,0,0,0,0, # 00 - 07 -0,0,0,0,0,0,2,2, # 08 - 0f -0,0,0,0,0,0,0,0, # 10 - 17 -0,0,0,1,0,0,0,0, # 18 - 1f -0,0,0,0,7,0,0,0, # 20 - 27 -3,0,0,0,0,0,0,0, # 28 - 2f -0,0,0,0,0,0,0,0, # 30 - 37 -0,0,0,0,0,0,0,0, # 38 - 3f -6,0,4,0,8,0,0,0, # 40 - 47 -0,9,5,0,0,0,0,0, # 48 - 4f -0,0,0,0,0,0,0,0, # 50 - 57 -0,0,0,0,0,0,0,0, # 58 - 5f -0,0,0,0,0,0,0,0, # 60 - 67 -0,0,0,0,0,0,0,0, # 68 - 6f -0,0,0,0,0,0,0,0, # 70 - 77 -0,0,0,0,0,0,0,0, # 78 - 7f -2,2,2,2,2,2,2,2, # 80 - 87 -2,2,2,2,2,2,2,2, # 88 - 8f -2,2,2,2,2,2,2,2, # 90 - 97 -2,2,2,2,2,2,2,2, # 98 - 9f -2,2,2,2,2,2,2,2, # a0 - a7 -2,2,2,2,2,2,2,2, # a8 - af -2,2,2,2,2,2,2,2, # b0 - b7 -2,2,2,2,2,2,2,2, # b8 - bf -2,2,2,2,2,2,2,2, # c0 - c7 -2,2,2,2,2,2,2,2, # c8 - cf -2,2,2,2,2,2,2,2, # d0 - d7 -2,2,2,2,2,2,2,2, # d8 - df -2,2,2,2,2,2,2,2, # e0 - e7 -2,2,2,2,2,2,2,2, # e8 - ef -2,2,2,2,2,2,2,2, # f0 - f7 -2,2,2,2,2,2,2,2, # f8 - ff -) - -ISO2022JP_st = ( -eStart, 3,eError,eStart,eStart,eStart,eStart,eStart,# 00-07 -eStart,eStart,eError,eError,eError,eError,eError,eError,# 08-0f -eError,eError,eError,eError,eItsMe,eItsMe,eItsMe,eItsMe,# 10-17 -eItsMe,eItsMe,eItsMe,eItsMe,eItsMe,eItsMe,eError,eError,# 18-1f -eError, 5,eError,eError,eError, 4,eError,eError,# 20-27 -eError,eError,eError, 6,eItsMe,eError,eItsMe,eError,# 28-2f -eError,eError,eError,eError,eError,eError,eItsMe,eItsMe,# 30-37 -eError,eError,eError,eItsMe,eError,eError,eError,eError,# 38-3f -eError,eError,eError,eError,eItsMe,eError,eStart,eStart,# 40-47 -) - -ISO2022JPCharLenTable = (0, 0, 0, 0, 0, 0, 0, 0, 0, 0) - -ISO2022JPSMModel = {'classTable': ISO2022JP_cls, - 'classFactor': 10, - 'stateTable': ISO2022JP_st, - 'charLenTable': ISO2022JPCharLenTable, - 'name': "ISO-2022-JP"} - -ISO2022KR_cls = ( -2,0,0,0,0,0,0,0, # 00 - 07 -0,0,0,0,0,0,0,0, # 08 - 0f -0,0,0,0,0,0,0,0, # 10 - 17 -0,0,0,1,0,0,0,0, # 18 - 1f -0,0,0,0,3,0,0,0, # 20 - 27 -0,4,0,0,0,0,0,0, # 28 - 2f -0,0,0,0,0,0,0,0, # 30 - 37 -0,0,0,0,0,0,0,0, # 38 - 3f -0,0,0,5,0,0,0,0, # 40 - 47 -0,0,0,0,0,0,0,0, # 48 - 4f -0,0,0,0,0,0,0,0, # 50 - 57 -0,0,0,0,0,0,0,0, # 58 - 5f -0,0,0,0,0,0,0,0, # 60 - 67 -0,0,0,0,0,0,0,0, # 68 - 6f -0,0,0,0,0,0,0,0, # 70 - 77 -0,0,0,0,0,0,0,0, # 78 - 7f -2,2,2,2,2,2,2,2, # 80 - 87 -2,2,2,2,2,2,2,2, # 88 - 8f -2,2,2,2,2,2,2,2, # 90 - 97 -2,2,2,2,2,2,2,2, # 98 - 9f -2,2,2,2,2,2,2,2, # a0 - a7 -2,2,2,2,2,2,2,2, # a8 - af -2,2,2,2,2,2,2,2, # b0 - b7 -2,2,2,2,2,2,2,2, # b8 - bf -2,2,2,2,2,2,2,2, # c0 - c7 -2,2,2,2,2,2,2,2, # c8 - cf -2,2,2,2,2,2,2,2, # d0 - d7 -2,2,2,2,2,2,2,2, # d8 - df -2,2,2,2,2,2,2,2, # e0 - e7 -2,2,2,2,2,2,2,2, # e8 - ef -2,2,2,2,2,2,2,2, # f0 - f7 -2,2,2,2,2,2,2,2, # f8 - ff -) - -ISO2022KR_st = ( -eStart, 3,eError,eStart,eStart,eStart,eError,eError,# 00-07 -eError,eError,eError,eError,eItsMe,eItsMe,eItsMe,eItsMe,# 08-0f -eItsMe,eItsMe,eError,eError,eError, 4,eError,eError,# 10-17 -eError,eError,eError,eError, 5,eError,eError,eError,# 18-1f -eError,eError,eError,eItsMe,eStart,eStart,eStart,eStart,# 20-27 -) - -ISO2022KRCharLenTable = (0, 0, 0, 0, 0, 0) - -ISO2022KRSMModel = {'classTable': ISO2022KR_cls, - 'classFactor': 6, - 'stateTable': ISO2022KR_st, - 'charLenTable': ISO2022KRCharLenTable, - 'name': "ISO-2022-KR"} - -# flake8: noqa +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .constants import eStart, eError, eItsMe + +HZ_cls = ( +1,0,0,0,0,0,0,0, # 00 - 07 +0,0,0,0,0,0,0,0, # 08 - 0f +0,0,0,0,0,0,0,0, # 10 - 17 +0,0,0,1,0,0,0,0, # 18 - 1f +0,0,0,0,0,0,0,0, # 20 - 27 +0,0,0,0,0,0,0,0, # 28 - 2f +0,0,0,0,0,0,0,0, # 30 - 37 +0,0,0,0,0,0,0,0, # 38 - 3f +0,0,0,0,0,0,0,0, # 40 - 47 +0,0,0,0,0,0,0,0, # 48 - 4f +0,0,0,0,0,0,0,0, # 50 - 57 +0,0,0,0,0,0,0,0, # 58 - 5f +0,0,0,0,0,0,0,0, # 60 - 67 +0,0,0,0,0,0,0,0, # 68 - 6f +0,0,0,0,0,0,0,0, # 70 - 77 +0,0,0,4,0,5,2,0, # 78 - 7f +1,1,1,1,1,1,1,1, # 80 - 87 +1,1,1,1,1,1,1,1, # 88 - 8f +1,1,1,1,1,1,1,1, # 90 - 97 +1,1,1,1,1,1,1,1, # 98 - 9f +1,1,1,1,1,1,1,1, # a0 - a7 +1,1,1,1,1,1,1,1, # a8 - af +1,1,1,1,1,1,1,1, # b0 - b7 +1,1,1,1,1,1,1,1, # b8 - bf +1,1,1,1,1,1,1,1, # c0 - c7 +1,1,1,1,1,1,1,1, # c8 - cf +1,1,1,1,1,1,1,1, # d0 - d7 +1,1,1,1,1,1,1,1, # d8 - df +1,1,1,1,1,1,1,1, # e0 - e7 +1,1,1,1,1,1,1,1, # e8 - ef +1,1,1,1,1,1,1,1, # f0 - f7 +1,1,1,1,1,1,1,1, # f8 - ff +) + +HZ_st = ( +eStart,eError, 3,eStart,eStart,eStart,eError,eError,# 00-07 +eError,eError,eError,eError,eItsMe,eItsMe,eItsMe,eItsMe,# 08-0f +eItsMe,eItsMe,eError,eError,eStart,eStart, 4,eError,# 10-17 + 5,eError, 6,eError, 5, 5, 4,eError,# 18-1f + 4,eError, 4, 4, 4,eError, 4,eError,# 20-27 + 4,eItsMe,eStart,eStart,eStart,eStart,eStart,eStart,# 28-2f +) + +HZCharLenTable = (0, 0, 0, 0, 0, 0) + +HZSMModel = {'classTable': HZ_cls, + 'classFactor': 6, + 'stateTable': HZ_st, + 'charLenTable': HZCharLenTable, + 'name': "HZ-GB-2312"} + +ISO2022CN_cls = ( +2,0,0,0,0,0,0,0, # 00 - 07 +0,0,0,0,0,0,0,0, # 08 - 0f +0,0,0,0,0,0,0,0, # 10 - 17 +0,0,0,1,0,0,0,0, # 18 - 1f +0,0,0,0,0,0,0,0, # 20 - 27 +0,3,0,0,0,0,0,0, # 28 - 2f +0,0,0,0,0,0,0,0, # 30 - 37 +0,0,0,0,0,0,0,0, # 38 - 3f +0,0,0,4,0,0,0,0, # 40 - 47 +0,0,0,0,0,0,0,0, # 48 - 4f +0,0,0,0,0,0,0,0, # 50 - 57 +0,0,0,0,0,0,0,0, # 58 - 5f +0,0,0,0,0,0,0,0, # 60 - 67 +0,0,0,0,0,0,0,0, # 68 - 6f +0,0,0,0,0,0,0,0, # 70 - 77 +0,0,0,0,0,0,0,0, # 78 - 7f +2,2,2,2,2,2,2,2, # 80 - 87 +2,2,2,2,2,2,2,2, # 88 - 8f +2,2,2,2,2,2,2,2, # 90 - 97 +2,2,2,2,2,2,2,2, # 98 - 9f +2,2,2,2,2,2,2,2, # a0 - a7 +2,2,2,2,2,2,2,2, # a8 - af +2,2,2,2,2,2,2,2, # b0 - b7 +2,2,2,2,2,2,2,2, # b8 - bf +2,2,2,2,2,2,2,2, # c0 - c7 +2,2,2,2,2,2,2,2, # c8 - cf +2,2,2,2,2,2,2,2, # d0 - d7 +2,2,2,2,2,2,2,2, # d8 - df +2,2,2,2,2,2,2,2, # e0 - e7 +2,2,2,2,2,2,2,2, # e8 - ef +2,2,2,2,2,2,2,2, # f0 - f7 +2,2,2,2,2,2,2,2, # f8 - ff +) + +ISO2022CN_st = ( +eStart, 3,eError,eStart,eStart,eStart,eStart,eStart,# 00-07 +eStart,eError,eError,eError,eError,eError,eError,eError,# 08-0f +eError,eError,eItsMe,eItsMe,eItsMe,eItsMe,eItsMe,eItsMe,# 10-17 +eItsMe,eItsMe,eItsMe,eError,eError,eError, 4,eError,# 18-1f +eError,eError,eError,eItsMe,eError,eError,eError,eError,# 20-27 + 5, 6,eError,eError,eError,eError,eError,eError,# 28-2f +eError,eError,eError,eItsMe,eError,eError,eError,eError,# 30-37 +eError,eError,eError,eError,eError,eItsMe,eError,eStart,# 38-3f +) + +ISO2022CNCharLenTable = (0, 0, 0, 0, 0, 0, 0, 0, 0) + +ISO2022CNSMModel = {'classTable': ISO2022CN_cls, + 'classFactor': 9, + 'stateTable': ISO2022CN_st, + 'charLenTable': ISO2022CNCharLenTable, + 'name': "ISO-2022-CN"} + +ISO2022JP_cls = ( +2,0,0,0,0,0,0,0, # 00 - 07 +0,0,0,0,0,0,2,2, # 08 - 0f +0,0,0,0,0,0,0,0, # 10 - 17 +0,0,0,1,0,0,0,0, # 18 - 1f +0,0,0,0,7,0,0,0, # 20 - 27 +3,0,0,0,0,0,0,0, # 28 - 2f +0,0,0,0,0,0,0,0, # 30 - 37 +0,0,0,0,0,0,0,0, # 38 - 3f +6,0,4,0,8,0,0,0, # 40 - 47 +0,9,5,0,0,0,0,0, # 48 - 4f +0,0,0,0,0,0,0,0, # 50 - 57 +0,0,0,0,0,0,0,0, # 58 - 5f +0,0,0,0,0,0,0,0, # 60 - 67 +0,0,0,0,0,0,0,0, # 68 - 6f +0,0,0,0,0,0,0,0, # 70 - 77 +0,0,0,0,0,0,0,0, # 78 - 7f +2,2,2,2,2,2,2,2, # 80 - 87 +2,2,2,2,2,2,2,2, # 88 - 8f +2,2,2,2,2,2,2,2, # 90 - 97 +2,2,2,2,2,2,2,2, # 98 - 9f +2,2,2,2,2,2,2,2, # a0 - a7 +2,2,2,2,2,2,2,2, # a8 - af +2,2,2,2,2,2,2,2, # b0 - b7 +2,2,2,2,2,2,2,2, # b8 - bf +2,2,2,2,2,2,2,2, # c0 - c7 +2,2,2,2,2,2,2,2, # c8 - cf +2,2,2,2,2,2,2,2, # d0 - d7 +2,2,2,2,2,2,2,2, # d8 - df +2,2,2,2,2,2,2,2, # e0 - e7 +2,2,2,2,2,2,2,2, # e8 - ef +2,2,2,2,2,2,2,2, # f0 - f7 +2,2,2,2,2,2,2,2, # f8 - ff +) + +ISO2022JP_st = ( +eStart, 3,eError,eStart,eStart,eStart,eStart,eStart,# 00-07 +eStart,eStart,eError,eError,eError,eError,eError,eError,# 08-0f +eError,eError,eError,eError,eItsMe,eItsMe,eItsMe,eItsMe,# 10-17 +eItsMe,eItsMe,eItsMe,eItsMe,eItsMe,eItsMe,eError,eError,# 18-1f +eError, 5,eError,eError,eError, 4,eError,eError,# 20-27 +eError,eError,eError, 6,eItsMe,eError,eItsMe,eError,# 28-2f +eError,eError,eError,eError,eError,eError,eItsMe,eItsMe,# 30-37 +eError,eError,eError,eItsMe,eError,eError,eError,eError,# 38-3f +eError,eError,eError,eError,eItsMe,eError,eStart,eStart,# 40-47 +) + +ISO2022JPCharLenTable = (0, 0, 0, 0, 0, 0, 0, 0, 0, 0) + +ISO2022JPSMModel = {'classTable': ISO2022JP_cls, + 'classFactor': 10, + 'stateTable': ISO2022JP_st, + 'charLenTable': ISO2022JPCharLenTable, + 'name': "ISO-2022-JP"} + +ISO2022KR_cls = ( +2,0,0,0,0,0,0,0, # 00 - 07 +0,0,0,0,0,0,0,0, # 08 - 0f +0,0,0,0,0,0,0,0, # 10 - 17 +0,0,0,1,0,0,0,0, # 18 - 1f +0,0,0,0,3,0,0,0, # 20 - 27 +0,4,0,0,0,0,0,0, # 28 - 2f +0,0,0,0,0,0,0,0, # 30 - 37 +0,0,0,0,0,0,0,0, # 38 - 3f +0,0,0,5,0,0,0,0, # 40 - 47 +0,0,0,0,0,0,0,0, # 48 - 4f +0,0,0,0,0,0,0,0, # 50 - 57 +0,0,0,0,0,0,0,0, # 58 - 5f +0,0,0,0,0,0,0,0, # 60 - 67 +0,0,0,0,0,0,0,0, # 68 - 6f +0,0,0,0,0,0,0,0, # 70 - 77 +0,0,0,0,0,0,0,0, # 78 - 7f +2,2,2,2,2,2,2,2, # 80 - 87 +2,2,2,2,2,2,2,2, # 88 - 8f +2,2,2,2,2,2,2,2, # 90 - 97 +2,2,2,2,2,2,2,2, # 98 - 9f +2,2,2,2,2,2,2,2, # a0 - a7 +2,2,2,2,2,2,2,2, # a8 - af +2,2,2,2,2,2,2,2, # b0 - b7 +2,2,2,2,2,2,2,2, # b8 - bf +2,2,2,2,2,2,2,2, # c0 - c7 +2,2,2,2,2,2,2,2, # c8 - cf +2,2,2,2,2,2,2,2, # d0 - d7 +2,2,2,2,2,2,2,2, # d8 - df +2,2,2,2,2,2,2,2, # e0 - e7 +2,2,2,2,2,2,2,2, # e8 - ef +2,2,2,2,2,2,2,2, # f0 - f7 +2,2,2,2,2,2,2,2, # f8 - ff +) + +ISO2022KR_st = ( +eStart, 3,eError,eStart,eStart,eStart,eError,eError,# 00-07 +eError,eError,eError,eError,eItsMe,eItsMe,eItsMe,eItsMe,# 08-0f +eItsMe,eItsMe,eError,eError,eError, 4,eError,eError,# 10-17 +eError,eError,eError,eError, 5,eError,eError,eError,# 18-1f +eError,eError,eError,eItsMe,eStart,eStart,eStart,eStart,# 20-27 +) + +ISO2022KRCharLenTable = (0, 0, 0, 0, 0, 0) + +ISO2022KRSMModel = {'classTable': ISO2022KR_cls, + 'classFactor': 6, + 'stateTable': ISO2022KR_st, + 'charLenTable': ISO2022KRCharLenTable, + 'name': "ISO-2022-KR"} + +# flake8: noqa diff --git a/app/src/processing/app/i18n/python/requests/packages/charade/eucjpprober.py b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/eucjpprober.py similarity index 97% rename from app/src/processing/app/i18n/python/requests/packages/charade/eucjpprober.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/charade/eucjpprober.py index d70cfbbb0..8e64fdcc2 100644 --- a/app/src/processing/app/i18n/python/requests/packages/charade/eucjpprober.py +++ b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/eucjpprober.py @@ -1,90 +1,90 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is mozilla.org code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -import sys -from . import constants -from .mbcharsetprober import MultiByteCharSetProber -from .codingstatemachine import CodingStateMachine -from .chardistribution import EUCJPDistributionAnalysis -from .jpcntx import EUCJPContextAnalysis -from .mbcssm import EUCJPSMModel - - -class EUCJPProber(MultiByteCharSetProber): - def __init__(self): - MultiByteCharSetProber.__init__(self) - self._mCodingSM = CodingStateMachine(EUCJPSMModel) - self._mDistributionAnalyzer = EUCJPDistributionAnalysis() - self._mContextAnalyzer = EUCJPContextAnalysis() - self.reset() - - def reset(self): - MultiByteCharSetProber.reset(self) - self._mContextAnalyzer.reset() - - def get_charset_name(self): - return "EUC-JP" - - def feed(self, aBuf): - aLen = len(aBuf) - for i in range(0, aLen): - # PY3K: aBuf is a byte array, so aBuf[i] is an int, not a byte - codingState = self._mCodingSM.next_state(aBuf[i]) - if codingState == constants.eError: - if constants._debug: - sys.stderr.write(self.get_charset_name() - + ' prober hit error at byte ' + str(i) - + '\n') - self._mState = constants.eNotMe - break - elif codingState == constants.eItsMe: - self._mState = constants.eFoundIt - break - elif codingState == constants.eStart: - charLen = self._mCodingSM.get_current_charlen() - if i == 0: - self._mLastChar[1] = aBuf[0] - self._mContextAnalyzer.feed(self._mLastChar, charLen) - self._mDistributionAnalyzer.feed(self._mLastChar, charLen) - else: - self._mContextAnalyzer.feed(aBuf[i - 1:i + 1], charLen) - self._mDistributionAnalyzer.feed(aBuf[i - 1:i + 1], - charLen) - - self._mLastChar[0] = aBuf[aLen - 1] - - if self.get_state() == constants.eDetecting: - if (self._mContextAnalyzer.got_enough_data() and - (self.get_confidence() > constants.SHORTCUT_THRESHOLD)): - self._mState = constants.eFoundIt - - return self.get_state() - - def get_confidence(self): - contxtCf = self._mContextAnalyzer.get_confidence() - distribCf = self._mDistributionAnalyzer.get_confidence() - return max(contxtCf, distribCf) +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +import sys +from . import constants +from .mbcharsetprober import MultiByteCharSetProber +from .codingstatemachine import CodingStateMachine +from .chardistribution import EUCJPDistributionAnalysis +from .jpcntx import EUCJPContextAnalysis +from .mbcssm import EUCJPSMModel + + +class EUCJPProber(MultiByteCharSetProber): + def __init__(self): + MultiByteCharSetProber.__init__(self) + self._mCodingSM = CodingStateMachine(EUCJPSMModel) + self._mDistributionAnalyzer = EUCJPDistributionAnalysis() + self._mContextAnalyzer = EUCJPContextAnalysis() + self.reset() + + def reset(self): + MultiByteCharSetProber.reset(self) + self._mContextAnalyzer.reset() + + def get_charset_name(self): + return "EUC-JP" + + def feed(self, aBuf): + aLen = len(aBuf) + for i in range(0, aLen): + # PY3K: aBuf is a byte array, so aBuf[i] is an int, not a byte + codingState = self._mCodingSM.next_state(aBuf[i]) + if codingState == constants.eError: + if constants._debug: + sys.stderr.write(self.get_charset_name() + + ' prober hit error at byte ' + str(i) + + '\n') + self._mState = constants.eNotMe + break + elif codingState == constants.eItsMe: + self._mState = constants.eFoundIt + break + elif codingState == constants.eStart: + charLen = self._mCodingSM.get_current_charlen() + if i == 0: + self._mLastChar[1] = aBuf[0] + self._mContextAnalyzer.feed(self._mLastChar, charLen) + self._mDistributionAnalyzer.feed(self._mLastChar, charLen) + else: + self._mContextAnalyzer.feed(aBuf[i - 1:i + 1], charLen) + self._mDistributionAnalyzer.feed(aBuf[i - 1:i + 1], + charLen) + + self._mLastChar[0] = aBuf[aLen - 1] + + if self.get_state() == constants.eDetecting: + if (self._mContextAnalyzer.got_enough_data() and + (self.get_confidence() > constants.SHORTCUT_THRESHOLD)): + self._mState = constants.eFoundIt + + return self.get_state() + + def get_confidence(self): + contxtCf = self._mContextAnalyzer.get_confidence() + distribCf = self._mDistributionAnalyzer.get_confidence() + return max(contxtCf, distribCf) diff --git a/app/src/processing/app/i18n/python/requests/packages/charade/euckrfreq.py b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/euckrfreq.py similarity index 100% rename from app/src/processing/app/i18n/python/requests/packages/charade/euckrfreq.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/charade/euckrfreq.py diff --git a/app/src/processing/app/i18n/python/requests/packages/charade/euckrprober.py b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/euckrprober.py similarity index 97% rename from app/src/processing/app/i18n/python/requests/packages/charade/euckrprober.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/charade/euckrprober.py index def3e4290..5982a46b6 100644 --- a/app/src/processing/app/i18n/python/requests/packages/charade/euckrprober.py +++ b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/euckrprober.py @@ -1,42 +1,42 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is mozilla.org code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from .mbcharsetprober import MultiByteCharSetProber -from .codingstatemachine import CodingStateMachine -from .chardistribution import EUCKRDistributionAnalysis -from .mbcssm import EUCKRSMModel - - -class EUCKRProber(MultiByteCharSetProber): - def __init__(self): - MultiByteCharSetProber.__init__(self) - self._mCodingSM = CodingStateMachine(EUCKRSMModel) - self._mDistributionAnalyzer = EUCKRDistributionAnalysis() - self.reset() - - def get_charset_name(self): - return "EUC-KR" +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .mbcharsetprober import MultiByteCharSetProber +from .codingstatemachine import CodingStateMachine +from .chardistribution import EUCKRDistributionAnalysis +from .mbcssm import EUCKRSMModel + + +class EUCKRProber(MultiByteCharSetProber): + def __init__(self): + MultiByteCharSetProber.__init__(self) + self._mCodingSM = CodingStateMachine(EUCKRSMModel) + self._mDistributionAnalyzer = EUCKRDistributionAnalysis() + self.reset() + + def get_charset_name(self): + return "EUC-KR" diff --git a/app/src/processing/app/i18n/python/requests/packages/charade/euctwfreq.py b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/euctwfreq.py similarity index 100% rename from app/src/processing/app/i18n/python/requests/packages/charade/euctwfreq.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/charade/euctwfreq.py diff --git a/app/src/processing/app/i18n/python/requests/packages/charade/euctwprober.py b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/euctwprober.py similarity index 97% rename from app/src/processing/app/i18n/python/requests/packages/charade/euctwprober.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/charade/euctwprober.py index e601adfdc..fe652fe37 100644 --- a/app/src/processing/app/i18n/python/requests/packages/charade/euctwprober.py +++ b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/euctwprober.py @@ -1,41 +1,41 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is mozilla.org code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from .mbcharsetprober import MultiByteCharSetProber -from .codingstatemachine import CodingStateMachine -from .chardistribution import EUCTWDistributionAnalysis -from .mbcssm import EUCTWSMModel - -class EUCTWProber(MultiByteCharSetProber): - def __init__(self): - MultiByteCharSetProber.__init__(self) - self._mCodingSM = CodingStateMachine(EUCTWSMModel) - self._mDistributionAnalyzer = EUCTWDistributionAnalysis() - self.reset() - - def get_charset_name(self): - return "EUC-TW" +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .mbcharsetprober import MultiByteCharSetProber +from .codingstatemachine import CodingStateMachine +from .chardistribution import EUCTWDistributionAnalysis +from .mbcssm import EUCTWSMModel + +class EUCTWProber(MultiByteCharSetProber): + def __init__(self): + MultiByteCharSetProber.__init__(self) + self._mCodingSM = CodingStateMachine(EUCTWSMModel) + self._mDistributionAnalyzer = EUCTWDistributionAnalysis() + self.reset() + + def get_charset_name(self): + return "EUC-TW" diff --git a/app/src/processing/app/i18n/python/requests/packages/charade/gb2312freq.py b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/gb2312freq.py similarity index 100% rename from app/src/processing/app/i18n/python/requests/packages/charade/gb2312freq.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/charade/gb2312freq.py diff --git a/app/src/processing/app/i18n/python/requests/packages/charade/gb2312prober.py b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/gb2312prober.py similarity index 97% rename from app/src/processing/app/i18n/python/requests/packages/charade/gb2312prober.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/charade/gb2312prober.py index 643fe2519..0325a2d86 100644 --- a/app/src/processing/app/i18n/python/requests/packages/charade/gb2312prober.py +++ b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/gb2312prober.py @@ -1,41 +1,41 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is mozilla.org code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from .mbcharsetprober import MultiByteCharSetProber -from .codingstatemachine import CodingStateMachine -from .chardistribution import GB2312DistributionAnalysis -from .mbcssm import GB2312SMModel - -class GB2312Prober(MultiByteCharSetProber): - def __init__(self): - MultiByteCharSetProber.__init__(self) - self._mCodingSM = CodingStateMachine(GB2312SMModel) - self._mDistributionAnalyzer = GB2312DistributionAnalysis() - self.reset() - - def get_charset_name(self): - return "GB2312" +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .mbcharsetprober import MultiByteCharSetProber +from .codingstatemachine import CodingStateMachine +from .chardistribution import GB2312DistributionAnalysis +from .mbcssm import GB2312SMModel + +class GB2312Prober(MultiByteCharSetProber): + def __init__(self): + MultiByteCharSetProber.__init__(self) + self._mCodingSM = CodingStateMachine(GB2312SMModel) + self._mDistributionAnalyzer = GB2312DistributionAnalysis() + self.reset() + + def get_charset_name(self): + return "GB2312" diff --git a/app/src/processing/app/i18n/python/requests/packages/charade/hebrewprober.py b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/hebrewprober.py similarity index 97% rename from app/src/processing/app/i18n/python/requests/packages/charade/hebrewprober.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/charade/hebrewprober.py index 90d171f30..ba225c5ef 100644 --- a/app/src/processing/app/i18n/python/requests/packages/charade/hebrewprober.py +++ b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/hebrewprober.py @@ -1,283 +1,283 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is Mozilla Universal charset detector code. -# -# The Initial Developer of the Original Code is -# Shy Shalom -# Portions created by the Initial Developer are Copyright (C) 2005 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from .charsetprober import CharSetProber -from .constants import eNotMe, eDetecting -from .compat import wrap_ord - -# This prober doesn't actually recognize a language or a charset. -# It is a helper prober for the use of the Hebrew model probers - -### General ideas of the Hebrew charset recognition ### -# -# Four main charsets exist in Hebrew: -# "ISO-8859-8" - Visual Hebrew -# "windows-1255" - Logical Hebrew -# "ISO-8859-8-I" - Logical Hebrew -# "x-mac-hebrew" - ?? Logical Hebrew ?? -# -# Both "ISO" charsets use a completely identical set of code points, whereas -# "windows-1255" and "x-mac-hebrew" are two different proper supersets of -# these code points. windows-1255 defines additional characters in the range -# 0x80-0x9F as some misc punctuation marks as well as some Hebrew-specific -# diacritics and additional 'Yiddish' ligature letters in the range 0xc0-0xd6. -# x-mac-hebrew defines similar additional code points but with a different -# mapping. -# -# As far as an average Hebrew text with no diacritics is concerned, all four -# charsets are identical with respect to code points. Meaning that for the -# main Hebrew alphabet, all four map the same values to all 27 Hebrew letters -# (including final letters). -# -# The dominant difference between these charsets is their directionality. -# "Visual" directionality means that the text is ordered as if the renderer is -# not aware of a BIDI rendering algorithm. The renderer sees the text and -# draws it from left to right. The text itself when ordered naturally is read -# backwards. A buffer of Visual Hebrew generally looks like so: -# "[last word of first line spelled backwards] [whole line ordered backwards -# and spelled backwards] [first word of first line spelled backwards] -# [end of line] [last word of second line] ... etc' " -# adding punctuation marks, numbers and English text to visual text is -# naturally also "visual" and from left to right. -# -# "Logical" directionality means the text is ordered "naturally" according to -# the order it is read. It is the responsibility of the renderer to display -# the text from right to left. A BIDI algorithm is used to place general -# punctuation marks, numbers and English text in the text. -# -# Texts in x-mac-hebrew are almost impossible to find on the Internet. From -# what little evidence I could find, it seems that its general directionality -# is Logical. -# -# To sum up all of the above, the Hebrew probing mechanism knows about two -# charsets: -# Visual Hebrew - "ISO-8859-8" - backwards text - Words and sentences are -# backwards while line order is natural. For charset recognition purposes -# the line order is unimportant (In fact, for this implementation, even -# word order is unimportant). -# Logical Hebrew - "windows-1255" - normal, naturally ordered text. -# -# "ISO-8859-8-I" is a subset of windows-1255 and doesn't need to be -# specifically identified. -# "x-mac-hebrew" is also identified as windows-1255. A text in x-mac-hebrew -# that contain special punctuation marks or diacritics is displayed with -# some unconverted characters showing as question marks. This problem might -# be corrected using another model prober for x-mac-hebrew. Due to the fact -# that x-mac-hebrew texts are so rare, writing another model prober isn't -# worth the effort and performance hit. -# -#### The Prober #### -# -# The prober is divided between two SBCharSetProbers and a HebrewProber, -# all of which are managed, created, fed data, inquired and deleted by the -# SBCSGroupProber. The two SBCharSetProbers identify that the text is in -# fact some kind of Hebrew, Logical or Visual. The final decision about which -# one is it is made by the HebrewProber by combining final-letter scores -# with the scores of the two SBCharSetProbers to produce a final answer. -# -# The SBCSGroupProber is responsible for stripping the original text of HTML -# tags, English characters, numbers, low-ASCII punctuation characters, spaces -# and new lines. It reduces any sequence of such characters to a single space. -# The buffer fed to each prober in the SBCS group prober is pure text in -# high-ASCII. -# The two SBCharSetProbers (model probers) share the same language model: -# Win1255Model. -# The first SBCharSetProber uses the model normally as any other -# SBCharSetProber does, to recognize windows-1255, upon which this model was -# built. The second SBCharSetProber is told to make the pair-of-letter -# lookup in the language model backwards. This in practice exactly simulates -# a visual Hebrew model using the windows-1255 logical Hebrew model. -# -# The HebrewProber is not using any language model. All it does is look for -# final-letter evidence suggesting the text is either logical Hebrew or visual -# Hebrew. Disjointed from the model probers, the results of the HebrewProber -# alone are meaningless. HebrewProber always returns 0.00 as confidence -# since it never identifies a charset by itself. Instead, the pointer to the -# HebrewProber is passed to the model probers as a helper "Name Prober". -# When the Group prober receives a positive identification from any prober, -# it asks for the name of the charset identified. If the prober queried is a -# Hebrew model prober, the model prober forwards the call to the -# HebrewProber to make the final decision. In the HebrewProber, the -# decision is made according to the final-letters scores maintained and Both -# model probers scores. The answer is returned in the form of the name of the -# charset identified, either "windows-1255" or "ISO-8859-8". - -# windows-1255 / ISO-8859-8 code points of interest -FINAL_KAF = 0xea -NORMAL_KAF = 0xeb -FINAL_MEM = 0xed -NORMAL_MEM = 0xee -FINAL_NUN = 0xef -NORMAL_NUN = 0xf0 -FINAL_PE = 0xf3 -NORMAL_PE = 0xf4 -FINAL_TSADI = 0xf5 -NORMAL_TSADI = 0xf6 - -# Minimum Visual vs Logical final letter score difference. -# If the difference is below this, don't rely solely on the final letter score -# distance. -MIN_FINAL_CHAR_DISTANCE = 5 - -# Minimum Visual vs Logical model score difference. -# If the difference is below this, don't rely at all on the model score -# distance. -MIN_MODEL_DISTANCE = 0.01 - -VISUAL_HEBREW_NAME = "ISO-8859-8" -LOGICAL_HEBREW_NAME = "windows-1255" - - -class HebrewProber(CharSetProber): - def __init__(self): - CharSetProber.__init__(self) - self._mLogicalProber = None - self._mVisualProber = None - self.reset() - - def reset(self): - self._mFinalCharLogicalScore = 0 - self._mFinalCharVisualScore = 0 - # The two last characters seen in the previous buffer, - # mPrev and mBeforePrev are initialized to space in order to simulate - # a word delimiter at the beginning of the data - self._mPrev = ' ' - self._mBeforePrev = ' ' - # These probers are owned by the group prober. - - def set_model_probers(self, logicalProber, visualProber): - self._mLogicalProber = logicalProber - self._mVisualProber = visualProber - - def is_final(self, c): - return wrap_ord(c) in [FINAL_KAF, FINAL_MEM, FINAL_NUN, FINAL_PE, - FINAL_TSADI] - - def is_non_final(self, c): - # The normal Tsadi is not a good Non-Final letter due to words like - # 'lechotet' (to chat) containing an apostrophe after the tsadi. This - # apostrophe is converted to a space in FilterWithoutEnglishLetters - # causing the Non-Final tsadi to appear at an end of a word even - # though this is not the case in the original text. - # The letters Pe and Kaf rarely display a related behavior of not being - # a good Non-Final letter. Words like 'Pop', 'Winamp' and 'Mubarak' - # for example legally end with a Non-Final Pe or Kaf. However, the - # benefit of these letters as Non-Final letters outweighs the damage - # since these words are quite rare. - return wrap_ord(c) in [NORMAL_KAF, NORMAL_MEM, NORMAL_NUN, NORMAL_PE] - - def feed(self, aBuf): - # Final letter analysis for logical-visual decision. - # Look for evidence that the received buffer is either logical Hebrew - # or visual Hebrew. - # The following cases are checked: - # 1) A word longer than 1 letter, ending with a final letter. This is - # an indication that the text is laid out "naturally" since the - # final letter really appears at the end. +1 for logical score. - # 2) A word longer than 1 letter, ending with a Non-Final letter. In - # normal Hebrew, words ending with Kaf, Mem, Nun, Pe or Tsadi, - # should not end with the Non-Final form of that letter. Exceptions - # to this rule are mentioned above in isNonFinal(). This is an - # indication that the text is laid out backwards. +1 for visual - # score - # 3) A word longer than 1 letter, starting with a final letter. Final - # letters should not appear at the beginning of a word. This is an - # indication that the text is laid out backwards. +1 for visual - # score. - # - # The visual score and logical score are accumulated throughout the - # text and are finally checked against each other in GetCharSetName(). - # No checking for final letters in the middle of words is done since - # that case is not an indication for either Logical or Visual text. - # - # We automatically filter out all 7-bit characters (replace them with - # spaces) so the word boundary detection works properly. [MAP] - - if self.get_state() == eNotMe: - # Both model probers say it's not them. No reason to continue. - return eNotMe - - aBuf = self.filter_high_bit_only(aBuf) - - for cur in aBuf: - if cur == ' ': - # We stand on a space - a word just ended - if self._mBeforePrev != ' ': - # next-to-last char was not a space so self._mPrev is not a - # 1 letter word - if self.is_final(self._mPrev): - # case (1) [-2:not space][-1:final letter][cur:space] - self._mFinalCharLogicalScore += 1 - elif self.is_non_final(self._mPrev): - # case (2) [-2:not space][-1:Non-Final letter][ - # cur:space] - self._mFinalCharVisualScore += 1 - else: - # Not standing on a space - if ((self._mBeforePrev == ' ') and - (self.is_final(self._mPrev)) and (cur != ' ')): - # case (3) [-2:space][-1:final letter][cur:not space] - self._mFinalCharVisualScore += 1 - self._mBeforePrev = self._mPrev - self._mPrev = cur - - # Forever detecting, till the end or until both model probers return - # eNotMe (handled above) - return eDetecting - - def get_charset_name(self): - # Make the decision: is it Logical or Visual? - # If the final letter score distance is dominant enough, rely on it. - finalsub = self._mFinalCharLogicalScore - self._mFinalCharVisualScore - if finalsub >= MIN_FINAL_CHAR_DISTANCE: - return LOGICAL_HEBREW_NAME - if finalsub <= -MIN_FINAL_CHAR_DISTANCE: - return VISUAL_HEBREW_NAME - - # It's not dominant enough, try to rely on the model scores instead. - modelsub = (self._mLogicalProber.get_confidence() - - self._mVisualProber.get_confidence()) - if modelsub > MIN_MODEL_DISTANCE: - return LOGICAL_HEBREW_NAME - if modelsub < -MIN_MODEL_DISTANCE: - return VISUAL_HEBREW_NAME - - # Still no good, back to final letter distance, maybe it'll save the - # day. - if finalsub < 0.0: - return VISUAL_HEBREW_NAME - - # (finalsub > 0 - Logical) or (don't know what to do) default to - # Logical. - return LOGICAL_HEBREW_NAME - - def get_state(self): - # Remain active as long as any of the model probers are active. - if (self._mLogicalProber.get_state() == eNotMe) and \ - (self._mVisualProber.get_state() == eNotMe): - return eNotMe - return eDetecting +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Shy Shalom +# Portions created by the Initial Developer are Copyright (C) 2005 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .charsetprober import CharSetProber +from .constants import eNotMe, eDetecting +from .compat import wrap_ord + +# This prober doesn't actually recognize a language or a charset. +# It is a helper prober for the use of the Hebrew model probers + +### General ideas of the Hebrew charset recognition ### +# +# Four main charsets exist in Hebrew: +# "ISO-8859-8" - Visual Hebrew +# "windows-1255" - Logical Hebrew +# "ISO-8859-8-I" - Logical Hebrew +# "x-mac-hebrew" - ?? Logical Hebrew ?? +# +# Both "ISO" charsets use a completely identical set of code points, whereas +# "windows-1255" and "x-mac-hebrew" are two different proper supersets of +# these code points. windows-1255 defines additional characters in the range +# 0x80-0x9F as some misc punctuation marks as well as some Hebrew-specific +# diacritics and additional 'Yiddish' ligature letters in the range 0xc0-0xd6. +# x-mac-hebrew defines similar additional code points but with a different +# mapping. +# +# As far as an average Hebrew text with no diacritics is concerned, all four +# charsets are identical with respect to code points. Meaning that for the +# main Hebrew alphabet, all four map the same values to all 27 Hebrew letters +# (including final letters). +# +# The dominant difference between these charsets is their directionality. +# "Visual" directionality means that the text is ordered as if the renderer is +# not aware of a BIDI rendering algorithm. The renderer sees the text and +# draws it from left to right. The text itself when ordered naturally is read +# backwards. A buffer of Visual Hebrew generally looks like so: +# "[last word of first line spelled backwards] [whole line ordered backwards +# and spelled backwards] [first word of first line spelled backwards] +# [end of line] [last word of second line] ... etc' " +# adding punctuation marks, numbers and English text to visual text is +# naturally also "visual" and from left to right. +# +# "Logical" directionality means the text is ordered "naturally" according to +# the order it is read. It is the responsibility of the renderer to display +# the text from right to left. A BIDI algorithm is used to place general +# punctuation marks, numbers and English text in the text. +# +# Texts in x-mac-hebrew are almost impossible to find on the Internet. From +# what little evidence I could find, it seems that its general directionality +# is Logical. +# +# To sum up all of the above, the Hebrew probing mechanism knows about two +# charsets: +# Visual Hebrew - "ISO-8859-8" - backwards text - Words and sentences are +# backwards while line order is natural. For charset recognition purposes +# the line order is unimportant (In fact, for this implementation, even +# word order is unimportant). +# Logical Hebrew - "windows-1255" - normal, naturally ordered text. +# +# "ISO-8859-8-I" is a subset of windows-1255 and doesn't need to be +# specifically identified. +# "x-mac-hebrew" is also identified as windows-1255. A text in x-mac-hebrew +# that contain special punctuation marks or diacritics is displayed with +# some unconverted characters showing as question marks. This problem might +# be corrected using another model prober for x-mac-hebrew. Due to the fact +# that x-mac-hebrew texts are so rare, writing another model prober isn't +# worth the effort and performance hit. +# +#### The Prober #### +# +# The prober is divided between two SBCharSetProbers and a HebrewProber, +# all of which are managed, created, fed data, inquired and deleted by the +# SBCSGroupProber. The two SBCharSetProbers identify that the text is in +# fact some kind of Hebrew, Logical or Visual. The final decision about which +# one is it is made by the HebrewProber by combining final-letter scores +# with the scores of the two SBCharSetProbers to produce a final answer. +# +# The SBCSGroupProber is responsible for stripping the original text of HTML +# tags, English characters, numbers, low-ASCII punctuation characters, spaces +# and new lines. It reduces any sequence of such characters to a single space. +# The buffer fed to each prober in the SBCS group prober is pure text in +# high-ASCII. +# The two SBCharSetProbers (model probers) share the same language model: +# Win1255Model. +# The first SBCharSetProber uses the model normally as any other +# SBCharSetProber does, to recognize windows-1255, upon which this model was +# built. The second SBCharSetProber is told to make the pair-of-letter +# lookup in the language model backwards. This in practice exactly simulates +# a visual Hebrew model using the windows-1255 logical Hebrew model. +# +# The HebrewProber is not using any language model. All it does is look for +# final-letter evidence suggesting the text is either logical Hebrew or visual +# Hebrew. Disjointed from the model probers, the results of the HebrewProber +# alone are meaningless. HebrewProber always returns 0.00 as confidence +# since it never identifies a charset by itself. Instead, the pointer to the +# HebrewProber is passed to the model probers as a helper "Name Prober". +# When the Group prober receives a positive identification from any prober, +# it asks for the name of the charset identified. If the prober queried is a +# Hebrew model prober, the model prober forwards the call to the +# HebrewProber to make the final decision. In the HebrewProber, the +# decision is made according to the final-letters scores maintained and Both +# model probers scores. The answer is returned in the form of the name of the +# charset identified, either "windows-1255" or "ISO-8859-8". + +# windows-1255 / ISO-8859-8 code points of interest +FINAL_KAF = 0xea +NORMAL_KAF = 0xeb +FINAL_MEM = 0xed +NORMAL_MEM = 0xee +FINAL_NUN = 0xef +NORMAL_NUN = 0xf0 +FINAL_PE = 0xf3 +NORMAL_PE = 0xf4 +FINAL_TSADI = 0xf5 +NORMAL_TSADI = 0xf6 + +# Minimum Visual vs Logical final letter score difference. +# If the difference is below this, don't rely solely on the final letter score +# distance. +MIN_FINAL_CHAR_DISTANCE = 5 + +# Minimum Visual vs Logical model score difference. +# If the difference is below this, don't rely at all on the model score +# distance. +MIN_MODEL_DISTANCE = 0.01 + +VISUAL_HEBREW_NAME = "ISO-8859-8" +LOGICAL_HEBREW_NAME = "windows-1255" + + +class HebrewProber(CharSetProber): + def __init__(self): + CharSetProber.__init__(self) + self._mLogicalProber = None + self._mVisualProber = None + self.reset() + + def reset(self): + self._mFinalCharLogicalScore = 0 + self._mFinalCharVisualScore = 0 + # The two last characters seen in the previous buffer, + # mPrev and mBeforePrev are initialized to space in order to simulate + # a word delimiter at the beginning of the data + self._mPrev = ' ' + self._mBeforePrev = ' ' + # These probers are owned by the group prober. + + def set_model_probers(self, logicalProber, visualProber): + self._mLogicalProber = logicalProber + self._mVisualProber = visualProber + + def is_final(self, c): + return wrap_ord(c) in [FINAL_KAF, FINAL_MEM, FINAL_NUN, FINAL_PE, + FINAL_TSADI] + + def is_non_final(self, c): + # The normal Tsadi is not a good Non-Final letter due to words like + # 'lechotet' (to chat) containing an apostrophe after the tsadi. This + # apostrophe is converted to a space in FilterWithoutEnglishLetters + # causing the Non-Final tsadi to appear at an end of a word even + # though this is not the case in the original text. + # The letters Pe and Kaf rarely display a related behavior of not being + # a good Non-Final letter. Words like 'Pop', 'Winamp' and 'Mubarak' + # for example legally end with a Non-Final Pe or Kaf. However, the + # benefit of these letters as Non-Final letters outweighs the damage + # since these words are quite rare. + return wrap_ord(c) in [NORMAL_KAF, NORMAL_MEM, NORMAL_NUN, NORMAL_PE] + + def feed(self, aBuf): + # Final letter analysis for logical-visual decision. + # Look for evidence that the received buffer is either logical Hebrew + # or visual Hebrew. + # The following cases are checked: + # 1) A word longer than 1 letter, ending with a final letter. This is + # an indication that the text is laid out "naturally" since the + # final letter really appears at the end. +1 for logical score. + # 2) A word longer than 1 letter, ending with a Non-Final letter. In + # normal Hebrew, words ending with Kaf, Mem, Nun, Pe or Tsadi, + # should not end with the Non-Final form of that letter. Exceptions + # to this rule are mentioned above in isNonFinal(). This is an + # indication that the text is laid out backwards. +1 for visual + # score + # 3) A word longer than 1 letter, starting with a final letter. Final + # letters should not appear at the beginning of a word. This is an + # indication that the text is laid out backwards. +1 for visual + # score. + # + # The visual score and logical score are accumulated throughout the + # text and are finally checked against each other in GetCharSetName(). + # No checking for final letters in the middle of words is done since + # that case is not an indication for either Logical or Visual text. + # + # We automatically filter out all 7-bit characters (replace them with + # spaces) so the word boundary detection works properly. [MAP] + + if self.get_state() == eNotMe: + # Both model probers say it's not them. No reason to continue. + return eNotMe + + aBuf = self.filter_high_bit_only(aBuf) + + for cur in aBuf: + if cur == ' ': + # We stand on a space - a word just ended + if self._mBeforePrev != ' ': + # next-to-last char was not a space so self._mPrev is not a + # 1 letter word + if self.is_final(self._mPrev): + # case (1) [-2:not space][-1:final letter][cur:space] + self._mFinalCharLogicalScore += 1 + elif self.is_non_final(self._mPrev): + # case (2) [-2:not space][-1:Non-Final letter][ + # cur:space] + self._mFinalCharVisualScore += 1 + else: + # Not standing on a space + if ((self._mBeforePrev == ' ') and + (self.is_final(self._mPrev)) and (cur != ' ')): + # case (3) [-2:space][-1:final letter][cur:not space] + self._mFinalCharVisualScore += 1 + self._mBeforePrev = self._mPrev + self._mPrev = cur + + # Forever detecting, till the end or until both model probers return + # eNotMe (handled above) + return eDetecting + + def get_charset_name(self): + # Make the decision: is it Logical or Visual? + # If the final letter score distance is dominant enough, rely on it. + finalsub = self._mFinalCharLogicalScore - self._mFinalCharVisualScore + if finalsub >= MIN_FINAL_CHAR_DISTANCE: + return LOGICAL_HEBREW_NAME + if finalsub <= -MIN_FINAL_CHAR_DISTANCE: + return VISUAL_HEBREW_NAME + + # It's not dominant enough, try to rely on the model scores instead. + modelsub = (self._mLogicalProber.get_confidence() + - self._mVisualProber.get_confidence()) + if modelsub > MIN_MODEL_DISTANCE: + return LOGICAL_HEBREW_NAME + if modelsub < -MIN_MODEL_DISTANCE: + return VISUAL_HEBREW_NAME + + # Still no good, back to final letter distance, maybe it'll save the + # day. + if finalsub < 0.0: + return VISUAL_HEBREW_NAME + + # (finalsub > 0 - Logical) or (don't know what to do) default to + # Logical. + return LOGICAL_HEBREW_NAME + + def get_state(self): + # Remain active as long as any of the model probers are active. + if (self._mLogicalProber.get_state() == eNotMe) and \ + (self._mVisualProber.get_state() == eNotMe): + return eNotMe + return eDetecting diff --git a/app/src/processing/app/i18n/python/requests/packages/charade/jisfreq.py b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/jisfreq.py similarity index 100% rename from app/src/processing/app/i18n/python/requests/packages/charade/jisfreq.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/charade/jisfreq.py diff --git a/app/src/processing/app/i18n/python/requests/packages/charade/jpcntx.py b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/jpcntx.py similarity index 98% rename from app/src/processing/app/i18n/python/requests/packages/charade/jpcntx.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/charade/jpcntx.py index b4e6af44a..f7f69ba4c 100644 --- a/app/src/processing/app/i18n/python/requests/packages/charade/jpcntx.py +++ b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/jpcntx.py @@ -1,219 +1,219 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is Mozilla Communicator client code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from .compat import wrap_ord - -NUM_OF_CATEGORY = 6 -DONT_KNOW = -1 -ENOUGH_REL_THRESHOLD = 100 -MAX_REL_THRESHOLD = 1000 -MINIMUM_DATA_THRESHOLD = 4 - -# This is hiragana 2-char sequence table, the number in each cell represents its frequency category -jp2CharContext = ( -(0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1), -(2,4,0,4,0,3,0,4,0,3,4,4,4,2,4,3,3,4,3,2,3,3,4,2,3,3,3,2,4,1,4,3,3,1,5,4,3,4,3,4,3,5,3,0,3,5,4,2,0,3,1,0,3,3,0,3,3,0,1,1,0,4,3,0,3,3,0,4,0,2,0,3,5,5,5,5,4,0,4,1,0,3,4), -(0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2), -(0,4,0,5,0,5,0,4,0,4,5,4,4,3,5,3,5,1,5,3,4,3,4,4,3,4,3,3,4,3,5,4,4,3,5,5,3,5,5,5,3,5,5,3,4,5,5,3,1,3,2,0,3,4,0,4,2,0,4,2,1,5,3,2,3,5,0,4,0,2,0,5,4,4,5,4,5,0,4,0,0,4,4), -(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), -(0,3,0,4,0,3,0,3,0,4,5,4,3,3,3,3,4,3,5,4,4,3,5,4,4,3,4,3,4,4,4,4,5,3,4,4,3,4,5,5,4,5,5,1,4,5,4,3,0,3,3,1,3,3,0,4,4,0,3,3,1,5,3,3,3,5,0,4,0,3,0,4,4,3,4,3,3,0,4,1,1,3,4), -(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), -(0,4,0,3,0,3,0,4,0,3,4,4,3,2,2,1,2,1,3,1,3,3,3,3,3,4,3,1,3,3,5,3,3,0,4,3,0,5,4,3,3,5,4,4,3,4,4,5,0,1,2,0,1,2,0,2,2,0,1,0,0,5,2,2,1,4,0,3,0,1,0,4,4,3,5,4,3,0,2,1,0,4,3), -(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), -(0,3,0,5,0,4,0,2,1,4,4,2,4,1,4,2,4,2,4,3,3,3,4,3,3,3,3,1,4,2,3,3,3,1,4,4,1,1,1,4,3,3,2,0,2,4,3,2,0,3,3,0,3,1,1,0,0,0,3,3,0,4,2,2,3,4,0,4,0,3,0,4,4,5,3,4,4,0,3,0,0,1,4), -(1,4,0,4,0,4,0,4,0,3,5,4,4,3,4,3,5,4,3,3,4,3,5,4,4,4,4,3,4,2,4,3,3,1,5,4,3,2,4,5,4,5,5,4,4,5,4,4,0,3,2,2,3,3,0,4,3,1,3,2,1,4,3,3,4,5,0,3,0,2,0,4,5,5,4,5,4,0,4,0,0,5,4), -(0,5,0,5,0,4,0,3,0,4,4,3,4,3,3,3,4,0,4,4,4,3,4,3,4,3,3,1,4,2,4,3,4,0,5,4,1,4,5,4,4,5,3,2,4,3,4,3,2,4,1,3,3,3,2,3,2,0,4,3,3,4,3,3,3,4,0,4,0,3,0,4,5,4,4,4,3,0,4,1,0,1,3), -(0,3,1,4,0,3,0,2,0,3,4,4,3,1,4,2,3,3,4,3,4,3,4,3,4,4,3,2,3,1,5,4,4,1,4,4,3,5,4,4,3,5,5,4,3,4,4,3,1,2,3,1,2,2,0,3,2,0,3,1,0,5,3,3,3,4,3,3,3,3,4,4,4,4,5,4,2,0,3,3,2,4,3), -(0,2,0,3,0,1,0,1,0,0,3,2,0,0,2,0,1,0,2,1,3,3,3,1,2,3,1,0,1,0,4,2,1,1,3,3,0,4,3,3,1,4,3,3,0,3,3,2,0,0,0,0,1,0,0,2,0,0,0,0,0,4,1,0,2,3,2,2,2,1,3,3,3,4,4,3,2,0,3,1,0,3,3), -(0,4,0,4,0,3,0,3,0,4,4,4,3,3,3,3,3,3,4,3,4,2,4,3,4,3,3,2,4,3,4,5,4,1,4,5,3,5,4,5,3,5,4,0,3,5,5,3,1,3,3,2,2,3,0,3,4,1,3,3,2,4,3,3,3,4,0,4,0,3,0,4,5,4,4,5,3,0,4,1,0,3,4), -(0,2,0,3,0,3,0,0,0,2,2,2,1,0,1,0,0,0,3,0,3,0,3,0,1,3,1,0,3,1,3,3,3,1,3,3,3,0,1,3,1,3,4,0,0,3,1,1,0,3,2,0,0,0,0,1,3,0,1,0,0,3,3,2,0,3,0,0,0,0,0,3,4,3,4,3,3,0,3,0,0,2,3), -(2,3,0,3,0,2,0,1,0,3,3,4,3,1,3,1,1,1,3,1,4,3,4,3,3,3,0,0,3,1,5,4,3,1,4,3,2,5,5,4,4,4,4,3,3,4,4,4,0,2,1,1,3,2,0,1,2,0,0,1,0,4,1,3,3,3,0,3,0,1,0,4,4,4,5,5,3,0,2,0,0,4,4), -(0,2,0,1,0,3,1,3,0,2,3,3,3,0,3,1,0,0,3,0,3,2,3,1,3,2,1,1,0,0,4,2,1,0,2,3,1,4,3,2,0,4,4,3,1,3,1,3,0,1,0,0,1,0,0,0,1,0,0,0,0,4,1,1,1,2,0,3,0,0,0,3,4,2,4,3,2,0,1,0,0,3,3), -(0,1,0,4,0,5,0,4,0,2,4,4,2,3,3,2,3,3,5,3,3,3,4,3,4,2,3,0,4,3,3,3,4,1,4,3,2,1,5,5,3,4,5,1,3,5,4,2,0,3,3,0,1,3,0,4,2,0,1,3,1,4,3,3,3,3,0,3,0,1,0,3,4,4,4,5,5,0,3,0,1,4,5), -(0,2,0,3,0,3,0,0,0,2,3,1,3,0,4,0,1,1,3,0,3,4,3,2,3,1,0,3,3,2,3,1,3,0,2,3,0,2,1,4,1,2,2,0,0,3,3,0,0,2,0,0,0,1,0,0,0,0,2,2,0,3,2,1,3,3,0,2,0,2,0,0,3,3,1,2,4,0,3,0,2,2,3), -(2,4,0,5,0,4,0,4,0,2,4,4,4,3,4,3,3,3,1,2,4,3,4,3,4,4,5,0,3,3,3,3,2,0,4,3,1,4,3,4,1,4,4,3,3,4,4,3,1,2,3,0,4,2,0,4,1,0,3,3,0,4,3,3,3,4,0,4,0,2,0,3,5,3,4,5,2,0,3,0,0,4,5), -(0,3,0,4,0,1,0,1,0,1,3,2,2,1,3,0,3,0,2,0,2,0,3,0,2,0,0,0,1,0,1,1,0,0,3,1,0,0,0,4,0,3,1,0,2,1,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,2,2,3,1,0,3,0,0,0,1,4,4,4,3,0,0,4,0,0,1,4), -(1,4,1,5,0,3,0,3,0,4,5,4,4,3,5,3,3,4,4,3,4,1,3,3,3,3,2,1,4,1,5,4,3,1,4,4,3,5,4,4,3,5,4,3,3,4,4,4,0,3,3,1,2,3,0,3,1,0,3,3,0,5,4,4,4,4,4,4,3,3,5,4,4,3,3,5,4,0,3,2,0,4,4), -(0,2,0,3,0,1,0,0,0,1,3,3,3,2,4,1,3,0,3,1,3,0,2,2,1,1,0,0,2,0,4,3,1,0,4,3,0,4,4,4,1,4,3,1,1,3,3,1,0,2,0,0,1,3,0,0,0,0,2,0,0,4,3,2,4,3,5,4,3,3,3,4,3,3,4,3,3,0,2,1,0,3,3), -(0,2,0,4,0,3,0,2,0,2,5,5,3,4,4,4,4,1,4,3,3,0,4,3,4,3,1,3,3,2,4,3,0,3,4,3,0,3,4,4,2,4,4,0,4,5,3,3,2,2,1,1,1,2,0,1,5,0,3,3,2,4,3,3,3,4,0,3,0,2,0,4,4,3,5,5,0,0,3,0,2,3,3), -(0,3,0,4,0,3,0,1,0,3,4,3,3,1,3,3,3,0,3,1,3,0,4,3,3,1,1,0,3,0,3,3,0,0,4,4,0,1,5,4,3,3,5,0,3,3,4,3,0,2,0,1,1,1,0,1,3,0,1,2,1,3,3,2,3,3,0,3,0,1,0,1,3,3,4,4,1,0,1,2,2,1,3), -(0,1,0,4,0,4,0,3,0,1,3,3,3,2,3,1,1,0,3,0,3,3,4,3,2,4,2,0,1,0,4,3,2,0,4,3,0,5,3,3,2,4,4,4,3,3,3,4,0,1,3,0,0,1,0,0,1,0,0,0,0,4,2,3,3,3,0,3,0,0,0,4,4,4,5,3,2,0,3,3,0,3,5), -(0,2,0,3,0,0,0,3,0,1,3,0,2,0,0,0,1,0,3,1,1,3,3,0,0,3,0,0,3,0,2,3,1,0,3,1,0,3,3,2,0,4,2,2,0,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,2,0,1,0,1,0,0,0,1,3,1,2,0,0,0,1,0,0,1,4), -(0,3,0,3,0,5,0,1,0,2,4,3,1,3,3,2,1,1,5,2,1,0,5,1,2,0,0,0,3,3,2,2,3,2,4,3,0,0,3,3,1,3,3,0,2,5,3,4,0,3,3,0,1,2,0,2,2,0,3,2,0,2,2,3,3,3,0,2,0,1,0,3,4,4,2,5,4,0,3,0,0,3,5), -(0,3,0,3,0,3,0,1,0,3,3,3,3,0,3,0,2,0,2,1,1,0,2,0,1,0,0,0,2,1,0,0,1,0,3,2,0,0,3,3,1,2,3,1,0,3,3,0,0,1,0,0,0,0,0,2,0,0,0,0,0,2,3,1,2,3,0,3,0,1,0,3,2,1,0,4,3,0,1,1,0,3,3), -(0,4,0,5,0,3,0,3,0,4,5,5,4,3,5,3,4,3,5,3,3,2,5,3,4,4,4,3,4,3,4,5,5,3,4,4,3,4,4,5,4,4,4,3,4,5,5,4,2,3,4,2,3,4,0,3,3,1,4,3,2,4,3,3,5,5,0,3,0,3,0,5,5,5,5,4,4,0,4,0,1,4,4), -(0,4,0,4,0,3,0,3,0,3,5,4,4,2,3,2,5,1,3,2,5,1,4,2,3,2,3,3,4,3,3,3,3,2,5,4,1,3,3,5,3,4,4,0,4,4,3,1,1,3,1,0,2,3,0,2,3,0,3,0,0,4,3,1,3,4,0,3,0,2,0,4,4,4,3,4,5,0,4,0,0,3,4), -(0,3,0,3,0,3,1,2,0,3,4,4,3,3,3,0,2,2,4,3,3,1,3,3,3,1,1,0,3,1,4,3,2,3,4,4,2,4,4,4,3,4,4,3,2,4,4,3,1,3,3,1,3,3,0,4,1,0,2,2,1,4,3,2,3,3,5,4,3,3,5,4,4,3,3,0,4,0,3,2,2,4,4), -(0,2,0,1,0,0,0,0,0,1,2,1,3,0,0,0,0,0,2,0,1,2,1,0,0,1,0,0,0,0,3,0,0,1,0,1,1,3,1,0,0,0,1,1,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,1,2,2,0,3,4,0,0,0,1,1,0,0,1,0,0,0,0,0,1,1), -(0,1,0,0,0,1,0,0,0,0,4,0,4,1,4,0,3,0,4,0,3,0,4,0,3,0,3,0,4,1,5,1,4,0,0,3,0,5,0,5,2,0,1,0,0,0,2,1,4,0,1,3,0,0,3,0,0,3,1,1,4,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0), -(1,4,0,5,0,3,0,2,0,3,5,4,4,3,4,3,5,3,4,3,3,0,4,3,3,3,3,3,3,2,4,4,3,1,3,4,4,5,4,4,3,4,4,1,3,5,4,3,3,3,1,2,2,3,3,1,3,1,3,3,3,5,3,3,4,5,0,3,0,3,0,3,4,3,4,4,3,0,3,0,2,4,3), -(0,1,0,4,0,0,0,0,0,1,4,0,4,1,4,2,4,0,3,0,1,0,1,0,0,0,0,0,2,0,3,1,1,1,0,3,0,0,0,1,2,1,0,0,1,1,1,1,0,1,0,0,0,1,0,0,3,0,0,0,0,3,2,0,2,2,0,1,0,0,0,2,3,2,3,3,0,0,0,0,2,1,0), -(0,5,1,5,0,3,0,3,0,5,4,4,5,1,5,3,3,0,4,3,4,3,5,3,4,3,3,2,4,3,4,3,3,0,3,3,1,4,4,3,4,4,4,3,4,5,5,3,2,3,1,1,3,3,1,3,1,1,3,3,2,4,5,3,3,5,0,4,0,3,0,4,4,3,5,3,3,0,3,4,0,4,3), -(0,5,0,5,0,3,0,2,0,4,4,3,5,2,4,3,3,3,4,4,4,3,5,3,5,3,3,1,4,0,4,3,3,0,3,3,0,4,4,4,4,5,4,3,3,5,5,3,2,3,1,2,3,2,0,1,0,0,3,2,2,4,4,3,1,5,0,4,0,3,0,4,3,1,3,2,1,0,3,3,0,3,3), -(0,4,0,5,0,5,0,4,0,4,5,5,5,3,4,3,3,2,5,4,4,3,5,3,5,3,4,0,4,3,4,4,3,2,4,4,3,4,5,4,4,5,5,0,3,5,5,4,1,3,3,2,3,3,1,3,1,0,4,3,1,4,4,3,4,5,0,4,0,2,0,4,3,4,4,3,3,0,4,0,0,5,5), -(0,4,0,4,0,5,0,1,1,3,3,4,4,3,4,1,3,0,5,1,3,0,3,1,3,1,1,0,3,0,3,3,4,0,4,3,0,4,4,4,3,4,4,0,3,5,4,1,0,3,0,0,2,3,0,3,1,0,3,1,0,3,2,1,3,5,0,3,0,1,0,3,2,3,3,4,4,0,2,2,0,4,4), -(2,4,0,5,0,4,0,3,0,4,5,5,4,3,5,3,5,3,5,3,5,2,5,3,4,3,3,4,3,4,5,3,2,1,5,4,3,2,3,4,5,3,4,1,2,5,4,3,0,3,3,0,3,2,0,2,3,0,4,1,0,3,4,3,3,5,0,3,0,1,0,4,5,5,5,4,3,0,4,2,0,3,5), -(0,5,0,4,0,4,0,2,0,5,4,3,4,3,4,3,3,3,4,3,4,2,5,3,5,3,4,1,4,3,4,4,4,0,3,5,0,4,4,4,4,5,3,1,3,4,5,3,3,3,3,3,3,3,0,2,2,0,3,3,2,4,3,3,3,5,3,4,1,3,3,5,3,2,0,0,0,0,4,3,1,3,3), -(0,1,0,3,0,3,0,1,0,1,3,3,3,2,3,3,3,0,3,0,0,0,3,1,3,0,0,0,2,2,2,3,0,0,3,2,0,1,2,4,1,3,3,0,0,3,3,3,0,1,0,0,2,1,0,0,3,0,3,1,0,3,0,0,1,3,0,2,0,1,0,3,3,1,3,3,0,0,1,1,0,3,3), -(0,2,0,3,0,2,1,4,0,2,2,3,1,1,3,1,1,0,2,0,3,1,2,3,1,3,0,0,1,0,4,3,2,3,3,3,1,4,2,3,3,3,3,1,0,3,1,4,0,1,1,0,1,2,0,1,1,0,1,1,0,3,1,3,2,2,0,1,0,0,0,2,3,3,3,1,0,0,0,0,0,2,3), -(0,5,0,4,0,5,0,2,0,4,5,5,3,3,4,3,3,1,5,4,4,2,4,4,4,3,4,2,4,3,5,5,4,3,3,4,3,3,5,5,4,5,5,1,3,4,5,3,1,4,3,1,3,3,0,3,3,1,4,3,1,4,5,3,3,5,0,4,0,3,0,5,3,3,1,4,3,0,4,0,1,5,3), -(0,5,0,5,0,4,0,2,0,4,4,3,4,3,3,3,3,3,5,4,4,4,4,4,4,5,3,3,5,2,4,4,4,3,4,4,3,3,4,4,5,5,3,3,4,3,4,3,3,4,3,3,3,3,1,2,2,1,4,3,3,5,4,4,3,4,0,4,0,3,0,4,4,4,4,4,1,0,4,2,0,2,4), -(0,4,0,4,0,3,0,1,0,3,5,2,3,0,3,0,2,1,4,2,3,3,4,1,4,3,3,2,4,1,3,3,3,0,3,3,0,0,3,3,3,5,3,3,3,3,3,2,0,2,0,0,2,0,0,2,0,0,1,0,0,3,1,2,2,3,0,3,0,2,0,4,4,3,3,4,1,0,3,0,0,2,4), -(0,0,0,4,0,0,0,0,0,0,1,0,1,0,2,0,0,0,0,0,1,0,2,0,1,0,0,0,0,0,3,1,3,0,3,2,0,0,0,1,0,3,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,2,0,0,0,0,0,0,2), -(0,2,1,3,0,2,0,2,0,3,3,3,3,1,3,1,3,3,3,3,3,3,4,2,2,1,2,1,4,0,4,3,1,3,3,3,2,4,3,5,4,3,3,3,3,3,3,3,0,1,3,0,2,0,0,1,0,0,1,0,0,4,2,0,2,3,0,3,3,0,3,3,4,2,3,1,4,0,1,2,0,2,3), -(0,3,0,3,0,1,0,3,0,2,3,3,3,0,3,1,2,0,3,3,2,3,3,2,3,2,3,1,3,0,4,3,2,0,3,3,1,4,3,3,2,3,4,3,1,3,3,1,1,0,1,1,0,1,0,1,0,1,0,0,0,4,1,1,0,3,0,3,1,0,2,3,3,3,3,3,1,0,0,2,0,3,3), -(0,0,0,0,0,0,0,0,0,0,3,0,2,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,3,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,2,3,0,0,0,0,0,0,0,0,3), -(0,2,0,3,1,3,0,3,0,2,3,3,3,1,3,1,3,1,3,1,3,3,3,1,3,0,2,3,1,1,4,3,3,2,3,3,1,2,2,4,1,3,3,0,1,4,2,3,0,1,3,0,3,0,0,1,3,0,2,0,0,3,3,2,1,3,0,3,0,2,0,3,4,4,4,3,1,0,3,0,0,3,3), -(0,2,0,1,0,2,0,0,0,1,3,2,2,1,3,0,1,1,3,0,3,2,3,1,2,0,2,0,1,1,3,3,3,0,3,3,1,1,2,3,2,3,3,1,2,3,2,0,0,1,0,0,0,0,0,0,3,0,1,0,0,2,1,2,1,3,0,3,0,0,0,3,4,4,4,3,2,0,2,0,0,2,4), -(0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,2,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,3,1,0,0,0,0,0,0,0,3), -(0,3,0,3,0,2,0,3,0,3,3,3,2,3,2,2,2,0,3,1,3,3,3,2,3,3,0,0,3,0,3,2,2,0,2,3,1,4,3,4,3,3,2,3,1,5,4,4,0,3,1,2,1,3,0,3,1,1,2,0,2,3,1,3,1,3,0,3,0,1,0,3,3,4,4,2,1,0,2,1,0,2,4), -(0,1,0,3,0,1,0,2,0,1,4,2,5,1,4,0,2,0,2,1,3,1,4,0,2,1,0,0,2,1,4,1,1,0,3,3,0,5,1,3,2,3,3,1,0,3,2,3,0,1,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,3,0,2,0,1,0,3,3,3,4,3,3,0,0,0,0,2,3), -(0,0,0,1,0,0,0,0,0,0,2,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,3), -(0,1,0,3,0,4,0,3,0,2,4,3,1,0,3,2,2,1,3,1,2,2,3,1,1,1,2,1,3,0,1,2,0,1,3,2,1,3,0,5,5,1,0,0,1,3,2,1,0,3,0,0,1,0,0,0,0,0,3,4,0,1,1,1,3,2,0,2,0,1,0,2,3,3,1,2,3,0,1,0,1,0,4), -(0,0,0,1,0,3,0,3,0,2,2,1,0,0,4,0,3,0,3,1,3,0,3,0,3,0,1,0,3,0,3,1,3,0,3,3,0,0,1,2,1,1,1,0,1,2,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,2,2,1,2,0,0,2,0,0,0,0,2,3,3,3,3,0,0,0,0,1,4), -(0,0,0,3,0,3,0,0,0,0,3,1,1,0,3,0,1,0,2,0,1,0,0,0,0,0,0,0,1,0,3,0,2,0,2,3,0,0,2,2,3,1,2,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,2,0,0,0,0,2,3), -(2,4,0,5,0,5,0,4,0,3,4,3,3,3,4,3,3,3,4,3,4,4,5,4,5,5,5,2,3,0,5,5,4,1,5,4,3,1,5,4,3,4,4,3,3,4,3,3,0,3,2,0,2,3,0,3,0,0,3,3,0,5,3,2,3,3,0,3,0,3,0,3,4,5,4,5,3,0,4,3,0,3,4), -(0,3,0,3,0,3,0,3,0,3,3,4,3,2,3,2,3,0,4,3,3,3,3,3,3,3,3,0,3,2,4,3,3,1,3,4,3,4,4,4,3,4,4,3,2,4,4,1,0,2,0,0,1,1,0,2,0,0,3,1,0,5,3,2,1,3,0,3,0,1,2,4,3,2,4,3,3,0,3,2,0,4,4), -(0,3,0,3,0,1,0,0,0,1,4,3,3,2,3,1,3,1,4,2,3,2,4,2,3,4,3,0,2,2,3,3,3,0,3,3,3,0,3,4,1,3,3,0,3,4,3,3,0,1,1,0,1,0,0,0,4,0,3,0,0,3,1,2,1,3,0,4,0,1,0,4,3,3,4,3,3,0,2,0,0,3,3), -(0,3,0,4,0,1,0,3,0,3,4,3,3,0,3,3,3,1,3,1,3,3,4,3,3,3,0,0,3,1,5,3,3,1,3,3,2,5,4,3,3,4,5,3,2,5,3,4,0,1,0,0,0,0,0,2,0,0,1,1,0,4,2,2,1,3,0,3,0,2,0,4,4,3,5,3,2,0,1,1,0,3,4), -(0,5,0,4,0,5,0,2,0,4,4,3,3,2,3,3,3,1,4,3,4,1,5,3,4,3,4,0,4,2,4,3,4,1,5,4,0,4,4,4,4,5,4,1,3,5,4,2,1,4,1,1,3,2,0,3,1,0,3,2,1,4,3,3,3,4,0,4,0,3,0,4,4,4,3,3,3,0,4,2,0,3,4), -(1,4,0,4,0,3,0,1,0,3,3,3,1,1,3,3,2,2,3,3,1,0,3,2,2,1,2,0,3,1,2,1,2,0,3,2,0,2,2,3,3,4,3,0,3,3,1,2,0,1,1,3,1,2,0,0,3,0,1,1,0,3,2,2,3,3,0,3,0,0,0,2,3,3,4,3,3,0,1,0,0,1,4), -(0,4,0,4,0,4,0,0,0,3,4,4,3,1,4,2,3,2,3,3,3,1,4,3,4,0,3,0,4,2,3,3,2,2,5,4,2,1,3,4,3,4,3,1,3,3,4,2,0,2,1,0,3,3,0,0,2,0,3,1,0,4,4,3,4,3,0,4,0,1,0,2,4,4,4,4,4,0,3,2,0,3,3), -(0,0,0,1,0,4,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,3,2,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2), -(0,2,0,3,0,4,0,4,0,1,3,3,3,0,4,0,2,1,2,1,1,1,2,0,3,1,1,0,1,0,3,1,0,0,3,3,2,0,1,1,0,0,0,0,0,1,0,2,0,2,2,0,3,1,0,0,1,0,1,1,0,1,2,0,3,0,0,0,0,1,0,0,3,3,4,3,1,0,1,0,3,0,2), -(0,0,0,3,0,5,0,0,0,0,1,0,2,0,3,1,0,1,3,0,0,0,2,0,0,0,1,0,0,0,1,1,0,0,4,0,0,0,2,3,0,1,4,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,3,0,0,0,0,0,3), -(0,2,0,5,0,5,0,1,0,2,4,3,3,2,5,1,3,2,3,3,3,0,4,1,2,0,3,0,4,0,2,2,1,1,5,3,0,0,1,4,2,3,2,0,3,3,3,2,0,2,4,1,1,2,0,1,1,0,3,1,0,1,3,1,2,3,0,2,0,0,0,1,3,5,4,4,4,0,3,0,0,1,3), -(0,4,0,5,0,4,0,4,0,4,5,4,3,3,4,3,3,3,4,3,4,4,5,3,4,5,4,2,4,2,3,4,3,1,4,4,1,3,5,4,4,5,5,4,4,5,5,5,2,3,3,1,4,3,1,3,3,0,3,3,1,4,3,4,4,4,0,3,0,4,0,3,3,4,4,5,0,0,4,3,0,4,5), -(0,4,0,4,0,3,0,3,0,3,4,4,4,3,3,2,4,3,4,3,4,3,5,3,4,3,2,1,4,2,4,4,3,1,3,4,2,4,5,5,3,4,5,4,1,5,4,3,0,3,2,2,3,2,1,3,1,0,3,3,3,5,3,3,3,5,4,4,2,3,3,4,3,3,3,2,1,0,3,2,1,4,3), -(0,4,0,5,0,4,0,3,0,3,5,5,3,2,4,3,4,0,5,4,4,1,4,4,4,3,3,3,4,3,5,5,2,3,3,4,1,2,5,5,3,5,5,2,3,5,5,4,0,3,2,0,3,3,1,1,5,1,4,1,0,4,3,2,3,5,0,4,0,3,0,5,4,3,4,3,0,0,4,1,0,4,4), -(1,3,0,4,0,2,0,2,0,2,5,5,3,3,3,3,3,0,4,2,3,4,4,4,3,4,0,0,3,4,5,4,3,3,3,3,2,5,5,4,5,5,5,4,3,5,5,5,1,3,1,0,1,0,0,3,2,0,4,2,0,5,2,3,2,4,1,3,0,3,0,4,5,4,5,4,3,0,4,2,0,5,4), -(0,3,0,4,0,5,0,3,0,3,4,4,3,2,3,2,3,3,3,3,3,2,4,3,3,2,2,0,3,3,3,3,3,1,3,3,3,0,4,4,3,4,4,1,1,4,4,2,0,3,1,0,1,1,0,4,1,0,2,3,1,3,3,1,3,4,0,3,0,1,0,3,1,3,0,0,1,0,2,0,0,4,4), -(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), -(0,3,0,3,0,2,0,3,0,1,5,4,3,3,3,1,4,2,1,2,3,4,4,2,4,4,5,0,3,1,4,3,4,0,4,3,3,3,2,3,2,5,3,4,3,2,2,3,0,0,3,0,2,1,0,1,2,0,0,0,0,2,1,1,3,1,0,2,0,4,0,3,4,4,4,5,2,0,2,0,0,1,3), -(0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,4,2,1,1,0,1,0,3,2,0,0,3,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,2,0,0,0,1,4,0,4,2,1,0,0,0,0,0,1), -(0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,3,1,0,0,0,2,0,2,1,0,0,1,2,1,0,1,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,3,1,0,0,0,0,0,1,0,0,2,1,0,0,0,0,0,0,0,0,2), -(0,4,0,4,0,4,0,3,0,4,4,3,4,2,4,3,2,0,4,4,4,3,5,3,5,3,3,2,4,2,4,3,4,3,1,4,0,2,3,4,4,4,3,3,3,4,4,4,3,4,1,3,4,3,2,1,2,1,3,3,3,4,4,3,3,5,0,4,0,3,0,4,3,3,3,2,1,0,3,0,0,3,3), -(0,4,0,3,0,3,0,3,0,3,5,5,3,3,3,3,4,3,4,3,3,3,4,4,4,3,3,3,3,4,3,5,3,3,1,3,2,4,5,5,5,5,4,3,4,5,5,3,2,2,3,3,3,3,2,3,3,1,2,3,2,4,3,3,3,4,0,4,0,2,0,4,3,2,2,1,2,0,3,0,0,4,1), -) - -class JapaneseContextAnalysis: - def __init__(self): - self.reset() - - def reset(self): - self._mTotalRel = 0 # total sequence received - # category counters, each interger counts sequence in its category - self._mRelSample = [0] * NUM_OF_CATEGORY - # if last byte in current buffer is not the last byte of a character, - # we need to know how many bytes to skip in next buffer - self._mNeedToSkipCharNum = 0 - self._mLastCharOrder = -1 # The order of previous char - # If this flag is set to True, detection is done and conclusion has - # been made - self._mDone = False - - def feed(self, aBuf, aLen): - if self._mDone: - return - - # The buffer we got is byte oriented, and a character may span in more than one - # buffers. In case the last one or two byte in last buffer is not - # complete, we record how many byte needed to complete that character - # and skip these bytes here. We can choose to record those bytes as - # well and analyse the character once it is complete, but since a - # character will not make much difference, by simply skipping - # this character will simply our logic and improve performance. - i = self._mNeedToSkipCharNum - while i < aLen: - order, charLen = self.get_order(aBuf[i:i + 2]) - i += charLen - if i > aLen: - self._mNeedToSkipCharNum = i - aLen - self._mLastCharOrder = -1 - else: - if (order != -1) and (self._mLastCharOrder != -1): - self._mTotalRel += 1 - if self._mTotalRel > MAX_REL_THRESHOLD: - self._mDone = True - break - self._mRelSample[jp2CharContext[self._mLastCharOrder][order]] += 1 - self._mLastCharOrder = order - - def got_enough_data(self): - return self._mTotalRel > ENOUGH_REL_THRESHOLD - - def get_confidence(self): - # This is just one way to calculate confidence. It works well for me. - if self._mTotalRel > MINIMUM_DATA_THRESHOLD: - return (self._mTotalRel - self._mRelSample[0]) / self._mTotalRel - else: - return DONT_KNOW - - def get_order(self, aBuf): - return -1, 1 - -class SJISContextAnalysis(JapaneseContextAnalysis): - def get_order(self, aBuf): - if not aBuf: - return -1, 1 - # find out current char's byte length - first_char = wrap_ord(aBuf[0]) - if ((0x81 <= first_char <= 0x9F) or (0xE0 <= first_char <= 0xFC)): - charLen = 2 - else: - charLen = 1 - - # return its order if it is hiragana - if len(aBuf) > 1: - second_char = wrap_ord(aBuf[1]) - if (first_char == 202) and (0x9F <= second_char <= 0xF1): - return second_char - 0x9F, charLen - - return -1, charLen - -class EUCJPContextAnalysis(JapaneseContextAnalysis): - def get_order(self, aBuf): - if not aBuf: - return -1, 1 - # find out current char's byte length - first_char = wrap_ord(aBuf[0]) - if (first_char == 0x8E) or (0xA1 <= first_char <= 0xFE): - charLen = 2 - elif first_char == 0x8F: - charLen = 3 - else: - charLen = 1 - - # return its order if it is hiragana - if len(aBuf) > 1: - second_char = wrap_ord(aBuf[1]) - if (first_char == 0xA4) and (0xA1 <= second_char <= 0xF3): - return second_char - 0xA1, charLen - - return -1, charLen - -# flake8: noqa +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .compat import wrap_ord + +NUM_OF_CATEGORY = 6 +DONT_KNOW = -1 +ENOUGH_REL_THRESHOLD = 100 +MAX_REL_THRESHOLD = 1000 +MINIMUM_DATA_THRESHOLD = 4 + +# This is hiragana 2-char sequence table, the number in each cell represents its frequency category +jp2CharContext = ( +(0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1), +(2,4,0,4,0,3,0,4,0,3,4,4,4,2,4,3,3,4,3,2,3,3,4,2,3,3,3,2,4,1,4,3,3,1,5,4,3,4,3,4,3,5,3,0,3,5,4,2,0,3,1,0,3,3,0,3,3,0,1,1,0,4,3,0,3,3,0,4,0,2,0,3,5,5,5,5,4,0,4,1,0,3,4), +(0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2), +(0,4,0,5,0,5,0,4,0,4,5,4,4,3,5,3,5,1,5,3,4,3,4,4,3,4,3,3,4,3,5,4,4,3,5,5,3,5,5,5,3,5,5,3,4,5,5,3,1,3,2,0,3,4,0,4,2,0,4,2,1,5,3,2,3,5,0,4,0,2,0,5,4,4,5,4,5,0,4,0,0,4,4), +(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), +(0,3,0,4,0,3,0,3,0,4,5,4,3,3,3,3,4,3,5,4,4,3,5,4,4,3,4,3,4,4,4,4,5,3,4,4,3,4,5,5,4,5,5,1,4,5,4,3,0,3,3,1,3,3,0,4,4,0,3,3,1,5,3,3,3,5,0,4,0,3,0,4,4,3,4,3,3,0,4,1,1,3,4), +(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), +(0,4,0,3,0,3,0,4,0,3,4,4,3,2,2,1,2,1,3,1,3,3,3,3,3,4,3,1,3,3,5,3,3,0,4,3,0,5,4,3,3,5,4,4,3,4,4,5,0,1,2,0,1,2,0,2,2,0,1,0,0,5,2,2,1,4,0,3,0,1,0,4,4,3,5,4,3,0,2,1,0,4,3), +(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), +(0,3,0,5,0,4,0,2,1,4,4,2,4,1,4,2,4,2,4,3,3,3,4,3,3,3,3,1,4,2,3,3,3,1,4,4,1,1,1,4,3,3,2,0,2,4,3,2,0,3,3,0,3,1,1,0,0,0,3,3,0,4,2,2,3,4,0,4,0,3,0,4,4,5,3,4,4,0,3,0,0,1,4), +(1,4,0,4,0,4,0,4,0,3,5,4,4,3,4,3,5,4,3,3,4,3,5,4,4,4,4,3,4,2,4,3,3,1,5,4,3,2,4,5,4,5,5,4,4,5,4,4,0,3,2,2,3,3,0,4,3,1,3,2,1,4,3,3,4,5,0,3,0,2,0,4,5,5,4,5,4,0,4,0,0,5,4), +(0,5,0,5,0,4,0,3,0,4,4,3,4,3,3,3,4,0,4,4,4,3,4,3,4,3,3,1,4,2,4,3,4,0,5,4,1,4,5,4,4,5,3,2,4,3,4,3,2,4,1,3,3,3,2,3,2,0,4,3,3,4,3,3,3,4,0,4,0,3,0,4,5,4,4,4,3,0,4,1,0,1,3), +(0,3,1,4,0,3,0,2,0,3,4,4,3,1,4,2,3,3,4,3,4,3,4,3,4,4,3,2,3,1,5,4,4,1,4,4,3,5,4,4,3,5,5,4,3,4,4,3,1,2,3,1,2,2,0,3,2,0,3,1,0,5,3,3,3,4,3,3,3,3,4,4,4,4,5,4,2,0,3,3,2,4,3), +(0,2,0,3,0,1,0,1,0,0,3,2,0,0,2,0,1,0,2,1,3,3,3,1,2,3,1,0,1,0,4,2,1,1,3,3,0,4,3,3,1,4,3,3,0,3,3,2,0,0,0,0,1,0,0,2,0,0,0,0,0,4,1,0,2,3,2,2,2,1,3,3,3,4,4,3,2,0,3,1,0,3,3), +(0,4,0,4,0,3,0,3,0,4,4,4,3,3,3,3,3,3,4,3,4,2,4,3,4,3,3,2,4,3,4,5,4,1,4,5,3,5,4,5,3,5,4,0,3,5,5,3,1,3,3,2,2,3,0,3,4,1,3,3,2,4,3,3,3,4,0,4,0,3,0,4,5,4,4,5,3,0,4,1,0,3,4), +(0,2,0,3,0,3,0,0,0,2,2,2,1,0,1,0,0,0,3,0,3,0,3,0,1,3,1,0,3,1,3,3,3,1,3,3,3,0,1,3,1,3,4,0,0,3,1,1,0,3,2,0,0,0,0,1,3,0,1,0,0,3,3,2,0,3,0,0,0,0,0,3,4,3,4,3,3,0,3,0,0,2,3), +(2,3,0,3,0,2,0,1,0,3,3,4,3,1,3,1,1,1,3,1,4,3,4,3,3,3,0,0,3,1,5,4,3,1,4,3,2,5,5,4,4,4,4,3,3,4,4,4,0,2,1,1,3,2,0,1,2,0,0,1,0,4,1,3,3,3,0,3,0,1,0,4,4,4,5,5,3,0,2,0,0,4,4), +(0,2,0,1,0,3,1,3,0,2,3,3,3,0,3,1,0,0,3,0,3,2,3,1,3,2,1,1,0,0,4,2,1,0,2,3,1,4,3,2,0,4,4,3,1,3,1,3,0,1,0,0,1,0,0,0,1,0,0,0,0,4,1,1,1,2,0,3,0,0,0,3,4,2,4,3,2,0,1,0,0,3,3), +(0,1,0,4,0,5,0,4,0,2,4,4,2,3,3,2,3,3,5,3,3,3,4,3,4,2,3,0,4,3,3,3,4,1,4,3,2,1,5,5,3,4,5,1,3,5,4,2,0,3,3,0,1,3,0,4,2,0,1,3,1,4,3,3,3,3,0,3,0,1,0,3,4,4,4,5,5,0,3,0,1,4,5), +(0,2,0,3,0,3,0,0,0,2,3,1,3,0,4,0,1,1,3,0,3,4,3,2,3,1,0,3,3,2,3,1,3,0,2,3,0,2,1,4,1,2,2,0,0,3,3,0,0,2,0,0,0,1,0,0,0,0,2,2,0,3,2,1,3,3,0,2,0,2,0,0,3,3,1,2,4,0,3,0,2,2,3), +(2,4,0,5,0,4,0,4,0,2,4,4,4,3,4,3,3,3,1,2,4,3,4,3,4,4,5,0,3,3,3,3,2,0,4,3,1,4,3,4,1,4,4,3,3,4,4,3,1,2,3,0,4,2,0,4,1,0,3,3,0,4,3,3,3,4,0,4,0,2,0,3,5,3,4,5,2,0,3,0,0,4,5), +(0,3,0,4,0,1,0,1,0,1,3,2,2,1,3,0,3,0,2,0,2,0,3,0,2,0,0,0,1,0,1,1,0,0,3,1,0,0,0,4,0,3,1,0,2,1,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,2,2,3,1,0,3,0,0,0,1,4,4,4,3,0,0,4,0,0,1,4), +(1,4,1,5,0,3,0,3,0,4,5,4,4,3,5,3,3,4,4,3,4,1,3,3,3,3,2,1,4,1,5,4,3,1,4,4,3,5,4,4,3,5,4,3,3,4,4,4,0,3,3,1,2,3,0,3,1,0,3,3,0,5,4,4,4,4,4,4,3,3,5,4,4,3,3,5,4,0,3,2,0,4,4), +(0,2,0,3,0,1,0,0,0,1,3,3,3,2,4,1,3,0,3,1,3,0,2,2,1,1,0,0,2,0,4,3,1,0,4,3,0,4,4,4,1,4,3,1,1,3,3,1,0,2,0,0,1,3,0,0,0,0,2,0,0,4,3,2,4,3,5,4,3,3,3,4,3,3,4,3,3,0,2,1,0,3,3), +(0,2,0,4,0,3,0,2,0,2,5,5,3,4,4,4,4,1,4,3,3,0,4,3,4,3,1,3,3,2,4,3,0,3,4,3,0,3,4,4,2,4,4,0,4,5,3,3,2,2,1,1,1,2,0,1,5,0,3,3,2,4,3,3,3,4,0,3,0,2,0,4,4,3,5,5,0,0,3,0,2,3,3), +(0,3,0,4,0,3,0,1,0,3,4,3,3,1,3,3,3,0,3,1,3,0,4,3,3,1,1,0,3,0,3,3,0,0,4,4,0,1,5,4,3,3,5,0,3,3,4,3,0,2,0,1,1,1,0,1,3,0,1,2,1,3,3,2,3,3,0,3,0,1,0,1,3,3,4,4,1,0,1,2,2,1,3), +(0,1,0,4,0,4,0,3,0,1,3,3,3,2,3,1,1,0,3,0,3,3,4,3,2,4,2,0,1,0,4,3,2,0,4,3,0,5,3,3,2,4,4,4,3,3,3,4,0,1,3,0,0,1,0,0,1,0,0,0,0,4,2,3,3,3,0,3,0,0,0,4,4,4,5,3,2,0,3,3,0,3,5), +(0,2,0,3,0,0,0,3,0,1,3,0,2,0,0,0,1,0,3,1,1,3,3,0,0,3,0,0,3,0,2,3,1,0,3,1,0,3,3,2,0,4,2,2,0,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,2,0,1,0,1,0,0,0,1,3,1,2,0,0,0,1,0,0,1,4), +(0,3,0,3,0,5,0,1,0,2,4,3,1,3,3,2,1,1,5,2,1,0,5,1,2,0,0,0,3,3,2,2,3,2,4,3,0,0,3,3,1,3,3,0,2,5,3,4,0,3,3,0,1,2,0,2,2,0,3,2,0,2,2,3,3,3,0,2,0,1,0,3,4,4,2,5,4,0,3,0,0,3,5), +(0,3,0,3,0,3,0,1,0,3,3,3,3,0,3,0,2,0,2,1,1,0,2,0,1,0,0,0,2,1,0,0,1,0,3,2,0,0,3,3,1,2,3,1,0,3,3,0,0,1,0,0,0,0,0,2,0,0,0,0,0,2,3,1,2,3,0,3,0,1,0,3,2,1,0,4,3,0,1,1,0,3,3), +(0,4,0,5,0,3,0,3,0,4,5,5,4,3,5,3,4,3,5,3,3,2,5,3,4,4,4,3,4,3,4,5,5,3,4,4,3,4,4,5,4,4,4,3,4,5,5,4,2,3,4,2,3,4,0,3,3,1,4,3,2,4,3,3,5,5,0,3,0,3,0,5,5,5,5,4,4,0,4,0,1,4,4), +(0,4,0,4,0,3,0,3,0,3,5,4,4,2,3,2,5,1,3,2,5,1,4,2,3,2,3,3,4,3,3,3,3,2,5,4,1,3,3,5,3,4,4,0,4,4,3,1,1,3,1,0,2,3,0,2,3,0,3,0,0,4,3,1,3,4,0,3,0,2,0,4,4,4,3,4,5,0,4,0,0,3,4), +(0,3,0,3,0,3,1,2,0,3,4,4,3,3,3,0,2,2,4,3,3,1,3,3,3,1,1,0,3,1,4,3,2,3,4,4,2,4,4,4,3,4,4,3,2,4,4,3,1,3,3,1,3,3,0,4,1,0,2,2,1,4,3,2,3,3,5,4,3,3,5,4,4,3,3,0,4,0,3,2,2,4,4), +(0,2,0,1,0,0,0,0,0,1,2,1,3,0,0,0,0,0,2,0,1,2,1,0,0,1,0,0,0,0,3,0,0,1,0,1,1,3,1,0,0,0,1,1,0,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,1,2,2,0,3,4,0,0,0,1,1,0,0,1,0,0,0,0,0,1,1), +(0,1,0,0,0,1,0,0,0,0,4,0,4,1,4,0,3,0,4,0,3,0,4,0,3,0,3,0,4,1,5,1,4,0,0,3,0,5,0,5,2,0,1,0,0,0,2,1,4,0,1,3,0,0,3,0,0,3,1,1,4,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0), +(1,4,0,5,0,3,0,2,0,3,5,4,4,3,4,3,5,3,4,3,3,0,4,3,3,3,3,3,3,2,4,4,3,1,3,4,4,5,4,4,3,4,4,1,3,5,4,3,3,3,1,2,2,3,3,1,3,1,3,3,3,5,3,3,4,5,0,3,0,3,0,3,4,3,4,4,3,0,3,0,2,4,3), +(0,1,0,4,0,0,0,0,0,1,4,0,4,1,4,2,4,0,3,0,1,0,1,0,0,0,0,0,2,0,3,1,1,1,0,3,0,0,0,1,2,1,0,0,1,1,1,1,0,1,0,0,0,1,0,0,3,0,0,0,0,3,2,0,2,2,0,1,0,0,0,2,3,2,3,3,0,0,0,0,2,1,0), +(0,5,1,5,0,3,0,3,0,5,4,4,5,1,5,3,3,0,4,3,4,3,5,3,4,3,3,2,4,3,4,3,3,0,3,3,1,4,4,3,4,4,4,3,4,5,5,3,2,3,1,1,3,3,1,3,1,1,3,3,2,4,5,3,3,5,0,4,0,3,0,4,4,3,5,3,3,0,3,4,0,4,3), +(0,5,0,5,0,3,0,2,0,4,4,3,5,2,4,3,3,3,4,4,4,3,5,3,5,3,3,1,4,0,4,3,3,0,3,3,0,4,4,4,4,5,4,3,3,5,5,3,2,3,1,2,3,2,0,1,0,0,3,2,2,4,4,3,1,5,0,4,0,3,0,4,3,1,3,2,1,0,3,3,0,3,3), +(0,4,0,5,0,5,0,4,0,4,5,5,5,3,4,3,3,2,5,4,4,3,5,3,5,3,4,0,4,3,4,4,3,2,4,4,3,4,5,4,4,5,5,0,3,5,5,4,1,3,3,2,3,3,1,3,1,0,4,3,1,4,4,3,4,5,0,4,0,2,0,4,3,4,4,3,3,0,4,0,0,5,5), +(0,4,0,4,0,5,0,1,1,3,3,4,4,3,4,1,3,0,5,1,3,0,3,1,3,1,1,0,3,0,3,3,4,0,4,3,0,4,4,4,3,4,4,0,3,5,4,1,0,3,0,0,2,3,0,3,1,0,3,1,0,3,2,1,3,5,0,3,0,1,0,3,2,3,3,4,4,0,2,2,0,4,4), +(2,4,0,5,0,4,0,3,0,4,5,5,4,3,5,3,5,3,5,3,5,2,5,3,4,3,3,4,3,4,5,3,2,1,5,4,3,2,3,4,5,3,4,1,2,5,4,3,0,3,3,0,3,2,0,2,3,0,4,1,0,3,4,3,3,5,0,3,0,1,0,4,5,5,5,4,3,0,4,2,0,3,5), +(0,5,0,4,0,4,0,2,0,5,4,3,4,3,4,3,3,3,4,3,4,2,5,3,5,3,4,1,4,3,4,4,4,0,3,5,0,4,4,4,4,5,3,1,3,4,5,3,3,3,3,3,3,3,0,2,2,0,3,3,2,4,3,3,3,5,3,4,1,3,3,5,3,2,0,0,0,0,4,3,1,3,3), +(0,1,0,3,0,3,0,1,0,1,3,3,3,2,3,3,3,0,3,0,0,0,3,1,3,0,0,0,2,2,2,3,0,0,3,2,0,1,2,4,1,3,3,0,0,3,3,3,0,1,0,0,2,1,0,0,3,0,3,1,0,3,0,0,1,3,0,2,0,1,0,3,3,1,3,3,0,0,1,1,0,3,3), +(0,2,0,3,0,2,1,4,0,2,2,3,1,1,3,1,1,0,2,0,3,1,2,3,1,3,0,0,1,0,4,3,2,3,3,3,1,4,2,3,3,3,3,1,0,3,1,4,0,1,1,0,1,2,0,1,1,0,1,1,0,3,1,3,2,2,0,1,0,0,0,2,3,3,3,1,0,0,0,0,0,2,3), +(0,5,0,4,0,5,0,2,0,4,5,5,3,3,4,3,3,1,5,4,4,2,4,4,4,3,4,2,4,3,5,5,4,3,3,4,3,3,5,5,4,5,5,1,3,4,5,3,1,4,3,1,3,3,0,3,3,1,4,3,1,4,5,3,3,5,0,4,0,3,0,5,3,3,1,4,3,0,4,0,1,5,3), +(0,5,0,5,0,4,0,2,0,4,4,3,4,3,3,3,3,3,5,4,4,4,4,4,4,5,3,3,5,2,4,4,4,3,4,4,3,3,4,4,5,5,3,3,4,3,4,3,3,4,3,3,3,3,1,2,2,1,4,3,3,5,4,4,3,4,0,4,0,3,0,4,4,4,4,4,1,0,4,2,0,2,4), +(0,4,0,4,0,3,0,1,0,3,5,2,3,0,3,0,2,1,4,2,3,3,4,1,4,3,3,2,4,1,3,3,3,0,3,3,0,0,3,3,3,5,3,3,3,3,3,2,0,2,0,0,2,0,0,2,0,0,1,0,0,3,1,2,2,3,0,3,0,2,0,4,4,3,3,4,1,0,3,0,0,2,4), +(0,0,0,4,0,0,0,0,0,0,1,0,1,0,2,0,0,0,0,0,1,0,2,0,1,0,0,0,0,0,3,1,3,0,3,2,0,0,0,1,0,3,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,2,0,0,0,0,0,0,2), +(0,2,1,3,0,2,0,2,0,3,3,3,3,1,3,1,3,3,3,3,3,3,4,2,2,1,2,1,4,0,4,3,1,3,3,3,2,4,3,5,4,3,3,3,3,3,3,3,0,1,3,0,2,0,0,1,0,0,1,0,0,4,2,0,2,3,0,3,3,0,3,3,4,2,3,1,4,0,1,2,0,2,3), +(0,3,0,3,0,1,0,3,0,2,3,3,3,0,3,1,2,0,3,3,2,3,3,2,3,2,3,1,3,0,4,3,2,0,3,3,1,4,3,3,2,3,4,3,1,3,3,1,1,0,1,1,0,1,0,1,0,1,0,0,0,4,1,1,0,3,0,3,1,0,2,3,3,3,3,3,1,0,0,2,0,3,3), +(0,0,0,0,0,0,0,0,0,0,3,0,2,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,0,3,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,2,3,0,0,0,0,0,0,0,0,3), +(0,2,0,3,1,3,0,3,0,2,3,3,3,1,3,1,3,1,3,1,3,3,3,1,3,0,2,3,1,1,4,3,3,2,3,3,1,2,2,4,1,3,3,0,1,4,2,3,0,1,3,0,3,0,0,1,3,0,2,0,0,3,3,2,1,3,0,3,0,2,0,3,4,4,4,3,1,0,3,0,0,3,3), +(0,2,0,1,0,2,0,0,0,1,3,2,2,1,3,0,1,1,3,0,3,2,3,1,2,0,2,0,1,1,3,3,3,0,3,3,1,1,2,3,2,3,3,1,2,3,2,0,0,1,0,0,0,0,0,0,3,0,1,0,0,2,1,2,1,3,0,3,0,0,0,3,4,4,4,3,2,0,2,0,0,2,4), +(0,0,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,2,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,3,1,0,0,0,0,0,0,0,3), +(0,3,0,3,0,2,0,3,0,3,3,3,2,3,2,2,2,0,3,1,3,3,3,2,3,3,0,0,3,0,3,2,2,0,2,3,1,4,3,4,3,3,2,3,1,5,4,4,0,3,1,2,1,3,0,3,1,1,2,0,2,3,1,3,1,3,0,3,0,1,0,3,3,4,4,2,1,0,2,1,0,2,4), +(0,1,0,3,0,1,0,2,0,1,4,2,5,1,4,0,2,0,2,1,3,1,4,0,2,1,0,0,2,1,4,1,1,0,3,3,0,5,1,3,2,3,3,1,0,3,2,3,0,1,0,0,0,0,0,0,1,0,0,0,0,4,0,1,0,3,0,2,0,1,0,3,3,3,4,3,3,0,0,0,0,2,3), +(0,0,0,1,0,0,0,0,0,0,2,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,3), +(0,1,0,3,0,4,0,3,0,2,4,3,1,0,3,2,2,1,3,1,2,2,3,1,1,1,2,1,3,0,1,2,0,1,3,2,1,3,0,5,5,1,0,0,1,3,2,1,0,3,0,0,1,0,0,0,0,0,3,4,0,1,1,1,3,2,0,2,0,1,0,2,3,3,1,2,3,0,1,0,1,0,4), +(0,0,0,1,0,3,0,3,0,2,2,1,0,0,4,0,3,0,3,1,3,0,3,0,3,0,1,0,3,0,3,1,3,0,3,3,0,0,1,2,1,1,1,0,1,2,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,2,2,1,2,0,0,2,0,0,0,0,2,3,3,3,3,0,0,0,0,1,4), +(0,0,0,3,0,3,0,0,0,0,3,1,1,0,3,0,1,0,2,0,1,0,0,0,0,0,0,0,1,0,3,0,2,0,2,3,0,0,2,2,3,1,2,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,2,0,0,0,0,2,3), +(2,4,0,5,0,5,0,4,0,3,4,3,3,3,4,3,3,3,4,3,4,4,5,4,5,5,5,2,3,0,5,5,4,1,5,4,3,1,5,4,3,4,4,3,3,4,3,3,0,3,2,0,2,3,0,3,0,0,3,3,0,5,3,2,3,3,0,3,0,3,0,3,4,5,4,5,3,0,4,3,0,3,4), +(0,3,0,3,0,3,0,3,0,3,3,4,3,2,3,2,3,0,4,3,3,3,3,3,3,3,3,0,3,2,4,3,3,1,3,4,3,4,4,4,3,4,4,3,2,4,4,1,0,2,0,0,1,1,0,2,0,0,3,1,0,5,3,2,1,3,0,3,0,1,2,4,3,2,4,3,3,0,3,2,0,4,4), +(0,3,0,3,0,1,0,0,0,1,4,3,3,2,3,1,3,1,4,2,3,2,4,2,3,4,3,0,2,2,3,3,3,0,3,3,3,0,3,4,1,3,3,0,3,4,3,3,0,1,1,0,1,0,0,0,4,0,3,0,0,3,1,2,1,3,0,4,0,1,0,4,3,3,4,3,3,0,2,0,0,3,3), +(0,3,0,4,0,1,0,3,0,3,4,3,3,0,3,3,3,1,3,1,3,3,4,3,3,3,0,0,3,1,5,3,3,1,3,3,2,5,4,3,3,4,5,3,2,5,3,4,0,1,0,0,0,0,0,2,0,0,1,1,0,4,2,2,1,3,0,3,0,2,0,4,4,3,5,3,2,0,1,1,0,3,4), +(0,5,0,4,0,5,0,2,0,4,4,3,3,2,3,3,3,1,4,3,4,1,5,3,4,3,4,0,4,2,4,3,4,1,5,4,0,4,4,4,4,5,4,1,3,5,4,2,1,4,1,1,3,2,0,3,1,0,3,2,1,4,3,3,3,4,0,4,0,3,0,4,4,4,3,3,3,0,4,2,0,3,4), +(1,4,0,4,0,3,0,1,0,3,3,3,1,1,3,3,2,2,3,3,1,0,3,2,2,1,2,0,3,1,2,1,2,0,3,2,0,2,2,3,3,4,3,0,3,3,1,2,0,1,1,3,1,2,0,0,3,0,1,1,0,3,2,2,3,3,0,3,0,0,0,2,3,3,4,3,3,0,1,0,0,1,4), +(0,4,0,4,0,4,0,0,0,3,4,4,3,1,4,2,3,2,3,3,3,1,4,3,4,0,3,0,4,2,3,3,2,2,5,4,2,1,3,4,3,4,3,1,3,3,4,2,0,2,1,0,3,3,0,0,2,0,3,1,0,4,4,3,4,3,0,4,0,1,0,2,4,4,4,4,4,0,3,2,0,3,3), +(0,0,0,1,0,4,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,3,2,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2), +(0,2,0,3,0,4,0,4,0,1,3,3,3,0,4,0,2,1,2,1,1,1,2,0,3,1,1,0,1,0,3,1,0,0,3,3,2,0,1,1,0,0,0,0,0,1,0,2,0,2,2,0,3,1,0,0,1,0,1,1,0,1,2,0,3,0,0,0,0,1,0,0,3,3,4,3,1,0,1,0,3,0,2), +(0,0,0,3,0,5,0,0,0,0,1,0,2,0,3,1,0,1,3,0,0,0,2,0,0,0,1,0,0,0,1,1,0,0,4,0,0,0,2,3,0,1,4,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,3,0,0,0,0,0,3), +(0,2,0,5,0,5,0,1,0,2,4,3,3,2,5,1,3,2,3,3,3,0,4,1,2,0,3,0,4,0,2,2,1,1,5,3,0,0,1,4,2,3,2,0,3,3,3,2,0,2,4,1,1,2,0,1,1,0,3,1,0,1,3,1,2,3,0,2,0,0,0,1,3,5,4,4,4,0,3,0,0,1,3), +(0,4,0,5,0,4,0,4,0,4,5,4,3,3,4,3,3,3,4,3,4,4,5,3,4,5,4,2,4,2,3,4,3,1,4,4,1,3,5,4,4,5,5,4,4,5,5,5,2,3,3,1,4,3,1,3,3,0,3,3,1,4,3,4,4,4,0,3,0,4,0,3,3,4,4,5,0,0,4,3,0,4,5), +(0,4,0,4,0,3,0,3,0,3,4,4,4,3,3,2,4,3,4,3,4,3,5,3,4,3,2,1,4,2,4,4,3,1,3,4,2,4,5,5,3,4,5,4,1,5,4,3,0,3,2,2,3,2,1,3,1,0,3,3,3,5,3,3,3,5,4,4,2,3,3,4,3,3,3,2,1,0,3,2,1,4,3), +(0,4,0,5,0,4,0,3,0,3,5,5,3,2,4,3,4,0,5,4,4,1,4,4,4,3,3,3,4,3,5,5,2,3,3,4,1,2,5,5,3,5,5,2,3,5,5,4,0,3,2,0,3,3,1,1,5,1,4,1,0,4,3,2,3,5,0,4,0,3,0,5,4,3,4,3,0,0,4,1,0,4,4), +(1,3,0,4,0,2,0,2,0,2,5,5,3,3,3,3,3,0,4,2,3,4,4,4,3,4,0,0,3,4,5,4,3,3,3,3,2,5,5,4,5,5,5,4,3,5,5,5,1,3,1,0,1,0,0,3,2,0,4,2,0,5,2,3,2,4,1,3,0,3,0,4,5,4,5,4,3,0,4,2,0,5,4), +(0,3,0,4,0,5,0,3,0,3,4,4,3,2,3,2,3,3,3,3,3,2,4,3,3,2,2,0,3,3,3,3,3,1,3,3,3,0,4,4,3,4,4,1,1,4,4,2,0,3,1,0,1,1,0,4,1,0,2,3,1,3,3,1,3,4,0,3,0,1,0,3,1,3,0,0,1,0,2,0,0,4,4), +(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0), +(0,3,0,3,0,2,0,3,0,1,5,4,3,3,3,1,4,2,1,2,3,4,4,2,4,4,5,0,3,1,4,3,4,0,4,3,3,3,2,3,2,5,3,4,3,2,2,3,0,0,3,0,2,1,0,1,2,0,0,0,0,2,1,1,3,1,0,2,0,4,0,3,4,4,4,5,2,0,2,0,0,1,3), +(0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,4,2,1,1,0,1,0,3,2,0,0,3,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,2,0,0,0,1,4,0,4,2,1,0,0,0,0,0,1), +(0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,3,1,0,0,0,2,0,2,1,0,0,1,2,1,0,1,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,3,1,0,0,0,0,0,1,0,0,2,1,0,0,0,0,0,0,0,0,2), +(0,4,0,4,0,4,0,3,0,4,4,3,4,2,4,3,2,0,4,4,4,3,5,3,5,3,3,2,4,2,4,3,4,3,1,4,0,2,3,4,4,4,3,3,3,4,4,4,3,4,1,3,4,3,2,1,2,1,3,3,3,4,4,3,3,5,0,4,0,3,0,4,3,3,3,2,1,0,3,0,0,3,3), +(0,4,0,3,0,3,0,3,0,3,5,5,3,3,3,3,4,3,4,3,3,3,4,4,4,3,3,3,3,4,3,5,3,3,1,3,2,4,5,5,5,5,4,3,4,5,5,3,2,2,3,3,3,3,2,3,3,1,2,3,2,4,3,3,3,4,0,4,0,2,0,4,3,2,2,1,2,0,3,0,0,4,1), +) + +class JapaneseContextAnalysis: + def __init__(self): + self.reset() + + def reset(self): + self._mTotalRel = 0 # total sequence received + # category counters, each interger counts sequence in its category + self._mRelSample = [0] * NUM_OF_CATEGORY + # if last byte in current buffer is not the last byte of a character, + # we need to know how many bytes to skip in next buffer + self._mNeedToSkipCharNum = 0 + self._mLastCharOrder = -1 # The order of previous char + # If this flag is set to True, detection is done and conclusion has + # been made + self._mDone = False + + def feed(self, aBuf, aLen): + if self._mDone: + return + + # The buffer we got is byte oriented, and a character may span in more than one + # buffers. In case the last one or two byte in last buffer is not + # complete, we record how many byte needed to complete that character + # and skip these bytes here. We can choose to record those bytes as + # well and analyse the character once it is complete, but since a + # character will not make much difference, by simply skipping + # this character will simply our logic and improve performance. + i = self._mNeedToSkipCharNum + while i < aLen: + order, charLen = self.get_order(aBuf[i:i + 2]) + i += charLen + if i > aLen: + self._mNeedToSkipCharNum = i - aLen + self._mLastCharOrder = -1 + else: + if (order != -1) and (self._mLastCharOrder != -1): + self._mTotalRel += 1 + if self._mTotalRel > MAX_REL_THRESHOLD: + self._mDone = True + break + self._mRelSample[jp2CharContext[self._mLastCharOrder][order]] += 1 + self._mLastCharOrder = order + + def got_enough_data(self): + return self._mTotalRel > ENOUGH_REL_THRESHOLD + + def get_confidence(self): + # This is just one way to calculate confidence. It works well for me. + if self._mTotalRel > MINIMUM_DATA_THRESHOLD: + return (self._mTotalRel - self._mRelSample[0]) / self._mTotalRel + else: + return DONT_KNOW + + def get_order(self, aBuf): + return -1, 1 + +class SJISContextAnalysis(JapaneseContextAnalysis): + def get_order(self, aBuf): + if not aBuf: + return -1, 1 + # find out current char's byte length + first_char = wrap_ord(aBuf[0]) + if ((0x81 <= first_char <= 0x9F) or (0xE0 <= first_char <= 0xFC)): + charLen = 2 + else: + charLen = 1 + + # return its order if it is hiragana + if len(aBuf) > 1: + second_char = wrap_ord(aBuf[1]) + if (first_char == 202) and (0x9F <= second_char <= 0xF1): + return second_char - 0x9F, charLen + + return -1, charLen + +class EUCJPContextAnalysis(JapaneseContextAnalysis): + def get_order(self, aBuf): + if not aBuf: + return -1, 1 + # find out current char's byte length + first_char = wrap_ord(aBuf[0]) + if (first_char == 0x8E) or (0xA1 <= first_char <= 0xFE): + charLen = 2 + elif first_char == 0x8F: + charLen = 3 + else: + charLen = 1 + + # return its order if it is hiragana + if len(aBuf) > 1: + second_char = wrap_ord(aBuf[1]) + if (first_char == 0xA4) and (0xA1 <= second_char <= 0xF3): + return second_char - 0xA1, charLen + + return -1, charLen + +# flake8: noqa diff --git a/app/src/processing/app/i18n/python/requests/packages/charade/langbulgarianmodel.py b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/langbulgarianmodel.py similarity index 98% rename from app/src/processing/app/i18n/python/requests/packages/charade/langbulgarianmodel.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/charade/langbulgarianmodel.py index ea5a60ba0..e5788fc64 100644 --- a/app/src/processing/app/i18n/python/requests/packages/charade/langbulgarianmodel.py +++ b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/langbulgarianmodel.py @@ -1,229 +1,229 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is Mozilla Communicator client code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -# 255: Control characters that usually does not exist in any text -# 254: Carriage/Return -# 253: symbol (punctuation) that does not belong to word -# 252: 0 - 9 - -# Character Mapping Table: -# this table is modified base on win1251BulgarianCharToOrderMap, so -# only number <64 is sure valid - -Latin5_BulgarianCharToOrderMap = ( -255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 -255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 -253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 -252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 -253, 77, 90, 99,100, 72,109,107,101, 79,185, 81,102, 76, 94, 82, # 40 -110,186,108, 91, 74,119, 84, 96,111,187,115,253,253,253,253,253, # 50 -253, 65, 69, 70, 66, 63, 68,112,103, 92,194,104, 95, 86, 87, 71, # 60 -116,195, 85, 93, 97,113,196,197,198,199,200,253,253,253,253,253, # 70 -194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209, # 80 -210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225, # 90 - 81,226,227,228,229,230,105,231,232,233,234,235,236, 45,237,238, # a0 - 31, 32, 35, 43, 37, 44, 55, 47, 40, 59, 33, 46, 38, 36, 41, 30, # b0 - 39, 28, 34, 51, 48, 49, 53, 50, 54, 57, 61,239, 67,240, 60, 56, # c0 - 1, 18, 9, 20, 11, 3, 23, 15, 2, 26, 12, 10, 14, 6, 4, 13, # d0 - 7, 8, 5, 19, 29, 25, 22, 21, 27, 24, 17, 75, 52,241, 42, 16, # e0 - 62,242,243,244, 58,245, 98,246,247,248,249,250,251, 91,252,253, # f0 -) - -win1251BulgarianCharToOrderMap = ( -255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 -255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 -253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 -252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 -253, 77, 90, 99,100, 72,109,107,101, 79,185, 81,102, 76, 94, 82, # 40 -110,186,108, 91, 74,119, 84, 96,111,187,115,253,253,253,253,253, # 50 -253, 65, 69, 70, 66, 63, 68,112,103, 92,194,104, 95, 86, 87, 71, # 60 -116,195, 85, 93, 97,113,196,197,198,199,200,253,253,253,253,253, # 70 -206,207,208,209,210,211,212,213,120,214,215,216,217,218,219,220, # 80 -221, 78, 64, 83,121, 98,117,105,222,223,224,225,226,227,228,229, # 90 - 88,230,231,232,233,122, 89,106,234,235,236,237,238, 45,239,240, # a0 - 73, 80,118,114,241,242,243,244,245, 62, 58,246,247,248,249,250, # b0 - 31, 32, 35, 43, 37, 44, 55, 47, 40, 59, 33, 46, 38, 36, 41, 30, # c0 - 39, 28, 34, 51, 48, 49, 53, 50, 54, 57, 61,251, 67,252, 60, 56, # d0 - 1, 18, 9, 20, 11, 3, 23, 15, 2, 26, 12, 10, 14, 6, 4, 13, # e0 - 7, 8, 5, 19, 29, 25, 22, 21, 27, 24, 17, 75, 52,253, 42, 16, # f0 -) - -# Model Table: -# total sequences: 100% -# first 512 sequences: 96.9392% -# first 1024 sequences:3.0618% -# rest sequences: 0.2992% -# negative sequences: 0.0020% -BulgarianLangModel = ( -0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,3,3,3,3,3,3,3,3,2,3,3,3,3,3, -3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,3,3,2,2,3,2,2,1,2,2, -3,1,3,3,2,3,3,3,3,3,3,3,3,3,3,3,3,0,3,3,3,3,3,3,3,3,3,3,0,3,0,1, -0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, -3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,3,2,3,3,3,3,3,3,3,3,0,3,1,0, -0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, -3,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,1,3,2,3,3,3,3,3,3,3,3,0,3,0,0, -0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,2,3,3,2,3,3,3,3,3,3,3,3,3,3,3,3,1,3,2,3,3,3,3,3,3,3,3,0,3,0,0, -0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,3,3,3,3,3,3,3,3,3,3,2,3,2,2,1,3,3,3,3,2,2,2,1,1,2,0,1,0,1,0,0, -0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1, -3,3,3,3,3,3,3,2,3,2,2,3,3,1,1,2,3,3,2,3,3,3,3,2,1,2,0,2,0,3,0,0, -0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1, -3,3,3,3,3,3,3,1,3,3,3,3,3,2,3,2,3,3,3,3,3,2,3,3,1,3,0,3,0,2,0,0, -0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1, -3,3,3,3,3,3,3,3,1,3,3,2,3,3,3,1,3,3,2,3,2,2,2,0,0,2,0,2,0,2,0,0, -0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1, -3,3,3,3,3,3,3,3,3,0,3,3,3,2,2,3,3,3,1,2,2,3,2,1,1,2,0,2,0,0,0,0, -1,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1, -3,3,3,3,3,3,3,2,3,3,1,2,3,2,2,2,3,3,3,3,3,2,2,3,1,2,0,2,1,2,0,0, -0,0,0,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1, -3,3,3,3,3,1,3,3,3,3,3,2,3,3,3,2,3,3,2,3,2,2,2,3,1,2,0,1,0,1,0,0, -0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1, -3,3,3,3,3,3,3,3,3,3,3,1,1,1,2,2,1,3,1,3,2,2,3,0,0,1,0,1,0,1,0,0, -0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1, -3,3,3,3,3,2,2,3,2,2,3,1,2,1,1,1,2,3,1,3,1,2,2,0,1,1,1,1,0,1,0,0, -0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1, -3,3,3,3,3,1,3,2,2,3,3,1,2,3,1,1,3,3,3,3,1,2,2,1,1,1,0,2,0,2,0,1, -0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1, -3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,1,2,2,3,3,3,2,2,1,1,2,0,2,0,1,0,0, -0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1, -3,0,1,2,1,3,3,2,3,3,3,3,3,2,3,2,1,0,3,1,2,1,2,1,2,3,2,1,0,1,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -1,1,1,2,3,3,3,3,3,3,3,3,3,3,3,3,0,0,3,1,3,3,2,3,3,2,2,2,0,1,0,0, -0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -2,3,3,3,3,0,3,3,3,3,3,2,1,1,2,1,3,3,0,3,1,1,1,1,3,2,0,1,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1, -3,3,2,2,2,3,3,3,3,3,3,3,3,3,3,3,1,1,3,1,3,3,2,3,2,2,2,3,0,2,0,0, -0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,3,3,3,3,2,3,3,2,2,3,2,1,1,1,1,1,3,1,3,1,1,0,0,0,1,0,0,0,1,0,0, -0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0, -3,3,3,3,3,2,3,2,0,3,2,0,3,0,2,0,0,2,1,3,1,0,0,1,0,0,0,1,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, -3,3,3,3,2,1,1,1,1,2,1,1,2,1,1,1,2,2,1,2,1,1,1,0,1,1,0,1,0,1,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1, -3,3,3,3,2,1,3,1,1,2,1,3,2,1,1,0,1,2,3,2,1,1,1,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -2,3,3,3,3,2,2,1,0,1,0,0,1,0,0,0,2,1,0,3,0,0,1,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, -3,3,3,2,3,2,3,3,1,3,2,1,1,1,2,1,1,2,1,3,0,1,0,0,0,1,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,1,1,2,2,3,3,2,3,2,2,2,3,1,2,2,1,1,2,1,1,2,2,0,1,1,0,1,0,2,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,3,3,3,2,1,3,1,0,2,2,1,3,2,1,0,0,2,0,2,0,1,0,0,0,0,0,0,0,1,0,0, -0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1, -3,3,3,3,3,3,1,2,0,2,3,1,2,3,2,0,1,3,1,2,1,1,1,0,0,1,0,0,2,2,2,3, -2,2,2,2,1,2,1,1,2,2,1,1,2,0,1,1,1,0,0,1,1,0,0,1,1,0,0,0,1,1,0,1, -3,3,3,3,3,2,1,2,2,1,2,0,2,0,1,0,1,2,1,2,1,1,0,0,0,1,0,1,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1, -3,3,2,3,3,1,1,3,1,0,3,2,1,0,0,0,1,2,0,2,0,1,0,0,0,1,0,1,2,1,2,2, -1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,2,1,1,1,0,0,0,0,0,1,1,0,0, -3,1,0,1,0,2,3,2,2,2,3,2,2,2,2,2,1,0,2,1,2,1,1,1,0,1,2,1,2,2,2,1, -1,1,2,2,2,2,1,2,1,1,0,1,2,1,2,2,2,1,1,1,0,1,1,1,1,2,0,1,0,0,0,0, -2,3,2,3,3,0,0,2,1,0,2,1,0,0,0,0,2,3,0,2,0,0,0,0,0,1,0,0,2,0,1,2, -2,1,2,1,2,2,1,1,1,2,1,1,1,0,1,2,2,1,1,1,1,1,0,1,1,1,0,0,1,2,0,0, -3,3,2,2,3,0,2,3,1,1,2,0,0,0,1,0,0,2,0,2,0,0,0,1,0,1,0,1,2,0,2,2, -1,1,1,1,2,1,0,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,0,0, -2,3,2,3,3,0,0,3,0,1,1,0,1,0,0,0,2,2,1,2,0,0,0,0,0,0,0,0,2,0,1,2, -2,2,1,1,1,1,1,2,2,2,1,0,2,0,1,0,1,0,0,1,0,1,0,0,1,0,0,0,0,1,0,0, -3,3,3,3,2,2,2,2,2,0,2,1,1,1,1,2,1,2,1,1,0,2,0,1,0,1,0,0,2,0,1,2, -1,1,1,1,1,1,1,2,2,1,1,0,2,0,1,0,2,0,0,1,1,1,0,0,2,0,0,0,1,1,0,0, -2,3,3,3,3,1,0,0,0,0,0,0,0,0,0,0,2,0,0,1,1,0,0,0,0,0,0,1,2,0,1,2, -2,2,2,1,1,2,1,1,2,2,2,1,2,0,1,1,1,1,1,1,0,1,1,1,1,0,0,1,1,1,0,0, -2,3,3,3,3,0,2,2,0,2,1,0,0,0,1,1,1,2,0,2,0,0,0,3,0,0,0,0,2,0,2,2, -1,1,1,2,1,2,1,1,2,2,2,1,2,0,1,1,1,0,1,1,1,1,0,2,1,0,0,0,1,1,0,0, -2,3,3,3,3,0,2,1,0,0,2,0,0,0,0,0,1,2,0,2,0,0,0,0,0,0,0,0,2,0,1,2, -1,1,1,2,1,1,1,1,2,2,2,0,1,0,1,1,1,0,0,1,1,1,0,0,1,0,0,0,0,1,0,0, -3,3,2,2,3,0,1,0,1,0,0,0,0,0,0,0,1,1,0,3,0,0,0,0,0,0,0,0,1,0,2,2, -1,1,1,1,1,2,1,1,2,2,1,2,2,1,0,1,1,1,1,1,0,1,0,0,1,0,0,0,1,1,0,0, -3,1,0,1,0,2,2,2,2,3,2,1,1,1,2,3,0,0,1,0,2,1,1,0,1,1,1,1,2,1,1,1, -1,2,2,1,2,1,2,2,1,1,0,1,2,1,2,2,1,1,1,0,0,1,1,1,2,1,0,1,0,0,0,0, -2,1,0,1,0,3,1,2,2,2,2,1,2,2,1,1,1,0,2,1,2,2,1,1,2,1,1,0,2,1,1,1, -1,2,2,2,2,2,2,2,1,2,0,1,1,0,2,1,1,1,1,1,0,0,1,1,1,1,0,1,0,0,0,0, -2,1,1,1,1,2,2,2,2,1,2,2,2,1,2,2,1,1,2,1,2,3,2,2,1,1,1,1,0,1,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -2,2,2,3,2,0,1,2,0,1,2,1,1,0,1,0,1,2,1,2,0,0,0,1,1,0,0,0,1,0,0,2, -1,1,0,0,1,1,0,1,1,1,1,0,2,0,1,1,1,0,0,1,1,0,0,0,0,1,0,0,0,1,0,0, -2,0,0,0,0,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1, -1,2,2,2,2,1,1,2,1,2,1,1,1,0,2,1,2,1,1,1,0,2,1,1,1,1,0,1,0,0,0,0, -3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0, -1,1,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -2,2,2,3,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0,0,0,1,0,1,2, -1,1,1,1,1,1,0,0,2,2,2,2,2,0,1,1,0,1,1,1,1,1,0,0,1,0,0,0,1,1,0,1, -2,3,1,2,1,0,1,1,0,2,2,2,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,1,2, -1,1,1,1,2,1,1,1,1,1,1,1,1,0,1,1,0,1,0,1,0,1,0,0,1,0,0,0,0,1,0,0, -2,2,2,2,2,0,0,2,0,0,2,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,2,0,2,2, -1,1,1,1,1,0,0,1,2,1,1,0,1,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0, -1,2,2,2,2,0,0,2,0,1,1,0,0,0,1,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,1,1, -0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0, -1,2,2,3,2,0,0,1,0,0,1,0,0,0,0,0,0,1,0,2,0,0,0,1,0,0,0,0,0,0,0,2, -1,1,0,0,1,0,0,0,1,1,0,0,1,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0, -2,1,2,2,2,1,2,1,2,2,1,1,2,1,1,1,0,1,1,1,1,2,0,1,0,1,1,1,1,0,1,1, -1,1,2,1,1,1,1,1,1,0,0,1,2,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0, -1,0,0,1,3,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -2,2,2,2,1,0,0,1,0,2,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,2,0,0,1, -0,2,0,1,0,0,1,1,2,0,1,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0, -1,2,2,2,2,0,1,1,0,2,1,0,1,1,1,0,0,1,0,2,0,1,0,0,0,0,0,0,0,0,0,1, -0,1,0,0,1,0,0,0,1,1,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0, -2,2,2,2,2,0,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1, -0,1,0,1,1,1,0,0,1,1,1,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0, -2,0,1,0,0,1,2,1,1,1,1,1,1,2,2,1,0,0,1,0,1,0,0,0,0,1,1,1,1,0,0,0, -1,1,2,1,1,1,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -2,2,1,2,1,0,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1, -0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -1,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0, -0,1,1,0,1,1,1,0,0,1,0,0,1,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0, -1,0,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,0,2,0,0,2,0,1,0,0,1,0,0,1, -1,1,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0, -1,1,1,1,1,1,1,2,0,0,0,0,0,0,2,1,0,1,1,0,0,1,1,1,0,1,0,0,0,0,0,0, -2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,0,1,1,1,1,1,0,1,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, -) - -Latin5BulgarianModel = { - 'charToOrderMap': Latin5_BulgarianCharToOrderMap, - 'precedenceMatrix': BulgarianLangModel, - 'mTypicalPositiveRatio': 0.969392, - 'keepEnglishLetter': False, - 'charsetName': "ISO-8859-5" -} - -Win1251BulgarianModel = { - 'charToOrderMap': win1251BulgarianCharToOrderMap, - 'precedenceMatrix': BulgarianLangModel, - 'mTypicalPositiveRatio': 0.969392, - 'keepEnglishLetter': False, - 'charsetName': "windows-1251" -} - - -# flake8: noqa +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +# 255: Control characters that usually does not exist in any text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 + +# Character Mapping Table: +# this table is modified base on win1251BulgarianCharToOrderMap, so +# only number <64 is sure valid + +Latin5_BulgarianCharToOrderMap = ( +255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 +255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 +253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 +252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 +253, 77, 90, 99,100, 72,109,107,101, 79,185, 81,102, 76, 94, 82, # 40 +110,186,108, 91, 74,119, 84, 96,111,187,115,253,253,253,253,253, # 50 +253, 65, 69, 70, 66, 63, 68,112,103, 92,194,104, 95, 86, 87, 71, # 60 +116,195, 85, 93, 97,113,196,197,198,199,200,253,253,253,253,253, # 70 +194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209, # 80 +210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225, # 90 + 81,226,227,228,229,230,105,231,232,233,234,235,236, 45,237,238, # a0 + 31, 32, 35, 43, 37, 44, 55, 47, 40, 59, 33, 46, 38, 36, 41, 30, # b0 + 39, 28, 34, 51, 48, 49, 53, 50, 54, 57, 61,239, 67,240, 60, 56, # c0 + 1, 18, 9, 20, 11, 3, 23, 15, 2, 26, 12, 10, 14, 6, 4, 13, # d0 + 7, 8, 5, 19, 29, 25, 22, 21, 27, 24, 17, 75, 52,241, 42, 16, # e0 + 62,242,243,244, 58,245, 98,246,247,248,249,250,251, 91,252,253, # f0 +) + +win1251BulgarianCharToOrderMap = ( +255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 +255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 +253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 +252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 +253, 77, 90, 99,100, 72,109,107,101, 79,185, 81,102, 76, 94, 82, # 40 +110,186,108, 91, 74,119, 84, 96,111,187,115,253,253,253,253,253, # 50 +253, 65, 69, 70, 66, 63, 68,112,103, 92,194,104, 95, 86, 87, 71, # 60 +116,195, 85, 93, 97,113,196,197,198,199,200,253,253,253,253,253, # 70 +206,207,208,209,210,211,212,213,120,214,215,216,217,218,219,220, # 80 +221, 78, 64, 83,121, 98,117,105,222,223,224,225,226,227,228,229, # 90 + 88,230,231,232,233,122, 89,106,234,235,236,237,238, 45,239,240, # a0 + 73, 80,118,114,241,242,243,244,245, 62, 58,246,247,248,249,250, # b0 + 31, 32, 35, 43, 37, 44, 55, 47, 40, 59, 33, 46, 38, 36, 41, 30, # c0 + 39, 28, 34, 51, 48, 49, 53, 50, 54, 57, 61,251, 67,252, 60, 56, # d0 + 1, 18, 9, 20, 11, 3, 23, 15, 2, 26, 12, 10, 14, 6, 4, 13, # e0 + 7, 8, 5, 19, 29, 25, 22, 21, 27, 24, 17, 75, 52,253, 42, 16, # f0 +) + +# Model Table: +# total sequences: 100% +# first 512 sequences: 96.9392% +# first 1024 sequences:3.0618% +# rest sequences: 0.2992% +# negative sequences: 0.0020% +BulgarianLangModel = ( +0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,3,3,3,3,3,3,3,3,2,3,3,3,3,3, +3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,3,3,2,2,3,2,2,1,2,2, +3,1,3,3,2,3,3,3,3,3,3,3,3,3,3,3,3,0,3,3,3,3,3,3,3,3,3,3,0,3,0,1, +0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, +3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,3,2,3,3,3,3,3,3,3,3,0,3,1,0, +0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, +3,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,1,3,2,3,3,3,3,3,3,3,3,0,3,0,0, +0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,2,3,3,2,3,3,3,3,3,3,3,3,3,3,3,3,1,3,2,3,3,3,3,3,3,3,3,0,3,0,0, +0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,3,3,3,3,3,3,2,3,2,2,1,3,3,3,3,2,2,2,1,1,2,0,1,0,1,0,0, +0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1, +3,3,3,3,3,3,3,2,3,2,2,3,3,1,1,2,3,3,2,3,3,3,3,2,1,2,0,2,0,3,0,0, +0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1, +3,3,3,3,3,3,3,1,3,3,3,3,3,2,3,2,3,3,3,3,3,2,3,3,1,3,0,3,0,2,0,0, +0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1, +3,3,3,3,3,3,3,3,1,3,3,2,3,3,3,1,3,3,2,3,2,2,2,0,0,2,0,2,0,2,0,0, +0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1, +3,3,3,3,3,3,3,3,3,0,3,3,3,2,2,3,3,3,1,2,2,3,2,1,1,2,0,2,0,0,0,0, +1,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1, +3,3,3,3,3,3,3,2,3,3,1,2,3,2,2,2,3,3,3,3,3,2,2,3,1,2,0,2,1,2,0,0, +0,0,0,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1, +3,3,3,3,3,1,3,3,3,3,3,2,3,3,3,2,3,3,2,3,2,2,2,3,1,2,0,1,0,1,0,0, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1, +3,3,3,3,3,3,3,3,3,3,3,1,1,1,2,2,1,3,1,3,2,2,3,0,0,1,0,1,0,1,0,0, +0,0,0,1,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1, +3,3,3,3,3,2,2,3,2,2,3,1,2,1,1,1,2,3,1,3,1,2,2,0,1,1,1,1,0,1,0,0, +0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1, +3,3,3,3,3,1,3,2,2,3,3,1,2,3,1,1,3,3,3,3,1,2,2,1,1,1,0,2,0,2,0,1, +0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1, +3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,1,2,2,3,3,3,2,2,1,1,2,0,2,0,1,0,0, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1, +3,0,1,2,1,3,3,2,3,3,3,3,3,2,3,2,1,0,3,1,2,1,2,1,2,3,2,1,0,1,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +1,1,1,2,3,3,3,3,3,3,3,3,3,3,3,3,0,0,3,1,3,3,2,3,3,2,2,2,0,1,0,0, +0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,3,3,3,3,0,3,3,3,3,3,2,1,1,2,1,3,3,0,3,1,1,1,1,3,2,0,1,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1, +3,3,2,2,2,3,3,3,3,3,3,3,3,3,3,3,1,1,3,1,3,3,2,3,2,2,2,3,0,2,0,0, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,2,3,3,2,2,3,2,1,1,1,1,1,3,1,3,1,1,0,0,0,1,0,0,0,1,0,0, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,2,3,2,0,3,2,0,3,0,2,0,0,2,1,3,1,0,0,1,0,0,0,1,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, +3,3,3,3,2,1,1,1,1,2,1,1,2,1,1,1,2,2,1,2,1,1,1,0,1,1,0,1,0,1,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1, +3,3,3,3,2,1,3,1,1,2,1,3,2,1,1,0,1,2,3,2,1,1,1,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,3,3,3,3,2,2,1,0,1,0,0,1,0,0,0,2,1,0,3,0,0,1,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, +3,3,3,2,3,2,3,3,1,3,2,1,1,1,2,1,1,2,1,3,0,1,0,0,0,1,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,1,1,2,2,3,3,2,3,2,2,2,3,1,2,2,1,1,2,1,1,2,2,0,1,1,0,1,0,2,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,3,2,1,3,1,0,2,2,1,3,2,1,0,0,2,0,2,0,1,0,0,0,0,0,0,0,1,0,0, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1, +3,3,3,3,3,3,1,2,0,2,3,1,2,3,2,0,1,3,1,2,1,1,1,0,0,1,0,0,2,2,2,3, +2,2,2,2,1,2,1,1,2,2,1,1,2,0,1,1,1,0,0,1,1,0,0,1,1,0,0,0,1,1,0,1, +3,3,3,3,3,2,1,2,2,1,2,0,2,0,1,0,1,2,1,2,1,1,0,0,0,1,0,1,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1, +3,3,2,3,3,1,1,3,1,0,3,2,1,0,0,0,1,2,0,2,0,1,0,0,0,1,0,1,2,1,2,2, +1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,2,1,1,1,0,0,0,0,0,1,1,0,0, +3,1,0,1,0,2,3,2,2,2,3,2,2,2,2,2,1,0,2,1,2,1,1,1,0,1,2,1,2,2,2,1, +1,1,2,2,2,2,1,2,1,1,0,1,2,1,2,2,2,1,1,1,0,1,1,1,1,2,0,1,0,0,0,0, +2,3,2,3,3,0,0,2,1,0,2,1,0,0,0,0,2,3,0,2,0,0,0,0,0,1,0,0,2,0,1,2, +2,1,2,1,2,2,1,1,1,2,1,1,1,0,1,2,2,1,1,1,1,1,0,1,1,1,0,0,1,2,0,0, +3,3,2,2,3,0,2,3,1,1,2,0,0,0,1,0,0,2,0,2,0,0,0,1,0,1,0,1,2,0,2,2, +1,1,1,1,2,1,0,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,0,0, +2,3,2,3,3,0,0,3,0,1,1,0,1,0,0,0,2,2,1,2,0,0,0,0,0,0,0,0,2,0,1,2, +2,2,1,1,1,1,1,2,2,2,1,0,2,0,1,0,1,0,0,1,0,1,0,0,1,0,0,0,0,1,0,0, +3,3,3,3,2,2,2,2,2,0,2,1,1,1,1,2,1,2,1,1,0,2,0,1,0,1,0,0,2,0,1,2, +1,1,1,1,1,1,1,2,2,1,1,0,2,0,1,0,2,0,0,1,1,1,0,0,2,0,0,0,1,1,0,0, +2,3,3,3,3,1,0,0,0,0,0,0,0,0,0,0,2,0,0,1,1,0,0,0,0,0,0,1,2,0,1,2, +2,2,2,1,1,2,1,1,2,2,2,1,2,0,1,1,1,1,1,1,0,1,1,1,1,0,0,1,1,1,0,0, +2,3,3,3,3,0,2,2,0,2,1,0,0,0,1,1,1,2,0,2,0,0,0,3,0,0,0,0,2,0,2,2, +1,1,1,2,1,2,1,1,2,2,2,1,2,0,1,1,1,0,1,1,1,1,0,2,1,0,0,0,1,1,0,0, +2,3,3,3,3,0,2,1,0,0,2,0,0,0,0,0,1,2,0,2,0,0,0,0,0,0,0,0,2,0,1,2, +1,1,1,2,1,1,1,1,2,2,2,0,1,0,1,1,1,0,0,1,1,1,0,0,1,0,0,0,0,1,0,0, +3,3,2,2,3,0,1,0,1,0,0,0,0,0,0,0,1,1,0,3,0,0,0,0,0,0,0,0,1,0,2,2, +1,1,1,1,1,2,1,1,2,2,1,2,2,1,0,1,1,1,1,1,0,1,0,0,1,0,0,0,1,1,0,0, +3,1,0,1,0,2,2,2,2,3,2,1,1,1,2,3,0,0,1,0,2,1,1,0,1,1,1,1,2,1,1,1, +1,2,2,1,2,1,2,2,1,1,0,1,2,1,2,2,1,1,1,0,0,1,1,1,2,1,0,1,0,0,0,0, +2,1,0,1,0,3,1,2,2,2,2,1,2,2,1,1,1,0,2,1,2,2,1,1,2,1,1,0,2,1,1,1, +1,2,2,2,2,2,2,2,1,2,0,1,1,0,2,1,1,1,1,1,0,0,1,1,1,1,0,1,0,0,0,0, +2,1,1,1,1,2,2,2,2,1,2,2,2,1,2,2,1,1,2,1,2,3,2,2,1,1,1,1,0,1,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,2,2,3,2,0,1,2,0,1,2,1,1,0,1,0,1,2,1,2,0,0,0,1,1,0,0,0,1,0,0,2, +1,1,0,0,1,1,0,1,1,1,1,0,2,0,1,1,1,0,0,1,1,0,0,0,0,1,0,0,0,1,0,0, +2,0,0,0,0,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1, +1,2,2,2,2,1,1,2,1,2,1,1,1,0,2,1,2,1,1,1,0,2,1,1,1,1,0,1,0,0,0,0, +3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0, +1,1,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,2,2,3,2,0,0,0,0,1,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0,0,0,1,0,1,2, +1,1,1,1,1,1,0,0,2,2,2,2,2,0,1,1,0,1,1,1,1,1,0,0,1,0,0,0,1,1,0,1, +2,3,1,2,1,0,1,1,0,2,2,2,0,0,1,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,1,2, +1,1,1,1,2,1,1,1,1,1,1,1,1,0,1,1,0,1,0,1,0,1,0,0,1,0,0,0,0,1,0,0, +2,2,2,2,2,0,0,2,0,0,2,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,2,0,2,2, +1,1,1,1,1,0,0,1,2,1,1,0,1,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0, +1,2,2,2,2,0,0,2,0,1,1,0,0,0,1,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,1,1, +0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0, +1,2,2,3,2,0,0,1,0,0,1,0,0,0,0,0,0,1,0,2,0,0,0,1,0,0,0,0,0,0,0,2, +1,1,0,0,1,0,0,0,1,1,0,0,1,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0, +2,1,2,2,2,1,2,1,2,2,1,1,2,1,1,1,0,1,1,1,1,2,0,1,0,1,1,1,1,0,1,1, +1,1,2,1,1,1,1,1,1,0,0,1,2,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0, +1,0,0,1,3,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,2,2,2,1,0,0,1,0,2,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,2,0,0,1, +0,2,0,1,0,0,1,1,2,0,1,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0, +1,2,2,2,2,0,1,1,0,2,1,0,1,1,1,0,0,1,0,2,0,1,0,0,0,0,0,0,0,0,0,1, +0,1,0,0,1,0,0,0,1,1,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0, +2,2,2,2,2,0,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1, +0,1,0,1,1,1,0,0,1,1,1,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0, +2,0,1,0,0,1,2,1,1,1,1,1,1,2,2,1,0,0,1,0,1,0,0,0,0,1,1,1,1,0,0,0, +1,1,2,1,1,1,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,2,1,2,1,0,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1, +0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +1,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0, +0,1,1,0,1,1,1,0,0,1,0,0,1,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0, +1,0,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,0,2,0,0,2,0,1,0,0,1,0,0,1, +1,1,0,0,1,1,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0, +1,1,1,1,1,1,1,2,0,0,0,0,0,0,2,1,0,1,1,0,0,1,1,1,0,1,0,0,0,0,0,0, +2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,0,1,1,1,1,1,0,1,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, +) + +Latin5BulgarianModel = { + 'charToOrderMap': Latin5_BulgarianCharToOrderMap, + 'precedenceMatrix': BulgarianLangModel, + 'mTypicalPositiveRatio': 0.969392, + 'keepEnglishLetter': False, + 'charsetName': "ISO-8859-5" +} + +Win1251BulgarianModel = { + 'charToOrderMap': win1251BulgarianCharToOrderMap, + 'precedenceMatrix': BulgarianLangModel, + 'mTypicalPositiveRatio': 0.969392, + 'keepEnglishLetter': False, + 'charsetName': "windows-1251" +} + + +# flake8: noqa diff --git a/app/src/processing/app/i18n/python/requests/packages/charade/langcyrillicmodel.py b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/langcyrillicmodel.py similarity index 98% rename from app/src/processing/app/i18n/python/requests/packages/charade/langcyrillicmodel.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/charade/langcyrillicmodel.py index 4b69c821c..f0b9af27f 100644 --- a/app/src/processing/app/i18n/python/requests/packages/charade/langcyrillicmodel.py +++ b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/langcyrillicmodel.py @@ -1,331 +1,331 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is Mozilla Communicator client code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from . import constants - -# KOI8-R language model -# Character Mapping Table: -KOI8R_CharToOrderMap = ( -255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 -255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 -253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 -252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 -253,142,143,144,145,146,147,148,149,150,151,152, 74,153, 75,154, # 40 -155,156,157,158,159,160,161,162,163,164,165,253,253,253,253,253, # 50 -253, 71,172, 66,173, 65,174, 76,175, 64,176,177, 77, 72,178, 69, # 60 - 67,179, 78, 73,180,181, 79,182,183,184,185,253,253,253,253,253, # 70 -191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206, # 80 -207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222, # 90 -223,224,225, 68,226,227,228,229,230,231,232,233,234,235,236,237, # a0 -238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253, # b0 - 27, 3, 21, 28, 13, 2, 39, 19, 26, 4, 23, 11, 8, 12, 5, 1, # c0 - 15, 16, 9, 7, 6, 14, 24, 10, 17, 18, 20, 25, 30, 29, 22, 54, # d0 - 59, 37, 44, 58, 41, 48, 53, 46, 55, 42, 60, 36, 49, 38, 31, 34, # e0 - 35, 43, 45, 32, 40, 52, 56, 33, 61, 62, 51, 57, 47, 63, 50, 70, # f0 -) - -win1251_CharToOrderMap = ( -255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 -255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 -253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 -252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 -253,142,143,144,145,146,147,148,149,150,151,152, 74,153, 75,154, # 40 -155,156,157,158,159,160,161,162,163,164,165,253,253,253,253,253, # 50 -253, 71,172, 66,173, 65,174, 76,175, 64,176,177, 77, 72,178, 69, # 60 - 67,179, 78, 73,180,181, 79,182,183,184,185,253,253,253,253,253, # 70 -191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206, -207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222, -223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238, -239,240,241,242,243,244,245,246, 68,247,248,249,250,251,252,253, - 37, 44, 33, 46, 41, 48, 56, 51, 42, 60, 36, 49, 38, 31, 34, 35, - 45, 32, 40, 52, 53, 55, 58, 50, 57, 63, 70, 62, 61, 47, 59, 43, - 3, 21, 10, 19, 13, 2, 24, 20, 4, 23, 11, 8, 12, 5, 1, 15, - 9, 7, 6, 14, 39, 26, 28, 22, 25, 29, 54, 18, 17, 30, 27, 16, -) - -latin5_CharToOrderMap = ( -255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 -255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 -253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 -252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 -253,142,143,144,145,146,147,148,149,150,151,152, 74,153, 75,154, # 40 -155,156,157,158,159,160,161,162,163,164,165,253,253,253,253,253, # 50 -253, 71,172, 66,173, 65,174, 76,175, 64,176,177, 77, 72,178, 69, # 60 - 67,179, 78, 73,180,181, 79,182,183,184,185,253,253,253,253,253, # 70 -191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206, -207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222, -223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238, - 37, 44, 33, 46, 41, 48, 56, 51, 42, 60, 36, 49, 38, 31, 34, 35, - 45, 32, 40, 52, 53, 55, 58, 50, 57, 63, 70, 62, 61, 47, 59, 43, - 3, 21, 10, 19, 13, 2, 24, 20, 4, 23, 11, 8, 12, 5, 1, 15, - 9, 7, 6, 14, 39, 26, 28, 22, 25, 29, 54, 18, 17, 30, 27, 16, -239, 68,240,241,242,243,244,245,246,247,248,249,250,251,252,255, -) - -macCyrillic_CharToOrderMap = ( -255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 -255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 -253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 -252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 -253,142,143,144,145,146,147,148,149,150,151,152, 74,153, 75,154, # 40 -155,156,157,158,159,160,161,162,163,164,165,253,253,253,253,253, # 50 -253, 71,172, 66,173, 65,174, 76,175, 64,176,177, 77, 72,178, 69, # 60 - 67,179, 78, 73,180,181, 79,182,183,184,185,253,253,253,253,253, # 70 - 37, 44, 33, 46, 41, 48, 56, 51, 42, 60, 36, 49, 38, 31, 34, 35, - 45, 32, 40, 52, 53, 55, 58, 50, 57, 63, 70, 62, 61, 47, 59, 43, -191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206, -207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222, -223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238, -239,240,241,242,243,244,245,246,247,248,249,250,251,252, 68, 16, - 3, 21, 10, 19, 13, 2, 24, 20, 4, 23, 11, 8, 12, 5, 1, 15, - 9, 7, 6, 14, 39, 26, 28, 22, 25, 29, 54, 18, 17, 30, 27,255, -) - -IBM855_CharToOrderMap = ( -255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 -255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 -253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 -252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 -253,142,143,144,145,146,147,148,149,150,151,152, 74,153, 75,154, # 40 -155,156,157,158,159,160,161,162,163,164,165,253,253,253,253,253, # 50 -253, 71,172, 66,173, 65,174, 76,175, 64,176,177, 77, 72,178, 69, # 60 - 67,179, 78, 73,180,181, 79,182,183,184,185,253,253,253,253,253, # 70 -191,192,193,194, 68,195,196,197,198,199,200,201,202,203,204,205, -206,207,208,209,210,211,212,213,214,215,216,217, 27, 59, 54, 70, - 3, 37, 21, 44, 28, 58, 13, 41, 2, 48, 39, 53, 19, 46,218,219, -220,221,222,223,224, 26, 55, 4, 42,225,226,227,228, 23, 60,229, -230,231,232,233,234,235, 11, 36,236,237,238,239,240,241,242,243, - 8, 49, 12, 38, 5, 31, 1, 34, 15,244,245,246,247, 35, 16,248, - 43, 9, 45, 7, 32, 6, 40, 14, 52, 24, 56, 10, 33, 17, 61,249, -250, 18, 62, 20, 51, 25, 57, 30, 47, 29, 63, 22, 50,251,252,255, -) - -IBM866_CharToOrderMap = ( -255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 -255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 -253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 -252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 -253,142,143,144,145,146,147,148,149,150,151,152, 74,153, 75,154, # 40 -155,156,157,158,159,160,161,162,163,164,165,253,253,253,253,253, # 50 -253, 71,172, 66,173, 65,174, 76,175, 64,176,177, 77, 72,178, 69, # 60 - 67,179, 78, 73,180,181, 79,182,183,184,185,253,253,253,253,253, # 70 - 37, 44, 33, 46, 41, 48, 56, 51, 42, 60, 36, 49, 38, 31, 34, 35, - 45, 32, 40, 52, 53, 55, 58, 50, 57, 63, 70, 62, 61, 47, 59, 43, - 3, 21, 10, 19, 13, 2, 24, 20, 4, 23, 11, 8, 12, 5, 1, 15, -191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206, -207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222, -223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238, - 9, 7, 6, 14, 39, 26, 28, 22, 25, 29, 54, 18, 17, 30, 27, 16, -239, 68,240,241,242,243,244,245,246,247,248,249,250,251,252,255, -) - -# Model Table: -# total sequences: 100% -# first 512 sequences: 97.6601% -# first 1024 sequences: 2.3389% -# rest sequences: 0.1237% -# negative sequences: 0.0009% -RussianLangModel = ( -0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,1,1,3,3,3,3,1,3,3,3,2,3,2,3,3, -3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,2,2,2,2,2,0,0,2, -3,3,3,2,3,3,3,3,3,3,3,3,3,3,2,3,3,0,0,3,3,3,3,3,3,3,3,3,2,3,2,0, -0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,3,3,2,2,3,3,3,3,3,3,3,3,3,2,3,3,0,0,3,3,3,3,3,3,3,3,2,3,3,1,0, -0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,2,3,2,3,3,3,3,3,3,3,3,3,3,3,3,3,0,0,3,3,3,3,3,3,3,3,3,3,3,2,1, -0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,3,3,0,0,3,3,3,3,3,3,3,3,3,3,3,2,1, -0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,3,3,3,3,3,3,3,2,2,2,3,1,3,3,1,3,3,3,3,2,2,3,0,2,2,2,3,3,2,1,0, -0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0, -3,3,3,3,3,3,2,3,3,3,3,3,2,2,3,2,3,3,3,2,1,2,2,0,1,2,2,2,2,2,2,0, -0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0, -3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,3,0,2,2,3,3,2,1,2,0, -0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0, -3,3,3,3,3,3,2,3,3,1,2,3,2,2,3,2,3,3,3,3,2,2,3,0,3,2,2,3,1,1,1,0, -0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,3,3,3,3,3,3,3,2,2,3,3,3,3,3,2,3,3,3,3,2,2,2,0,3,3,3,2,2,2,2,0, -0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,3,3,3,3,3,3,3,3,3,2,3,2,3,3,3,3,3,3,2,3,2,2,0,1,3,2,1,2,2,1,0, -0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0, -3,3,3,3,3,3,3,3,3,3,3,2,1,1,3,0,1,1,1,1,2,1,1,0,2,2,2,1,2,0,1,0, -0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,3,3,3,3,3,2,3,3,2,2,2,2,1,3,2,3,2,3,2,1,2,2,0,1,1,2,1,2,1,2,0, -0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,3,3,3,3,3,3,3,3,3,3,3,2,2,3,2,3,3,3,2,2,2,2,0,2,2,2,2,3,1,1,0, -0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0, -3,2,3,2,2,3,3,3,3,3,3,3,3,3,1,3,2,0,0,3,3,3,3,2,3,3,3,3,2,3,2,0, -0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -2,3,3,3,3,3,2,2,3,3,0,2,1,0,3,2,3,2,3,0,0,1,2,0,0,1,0,1,2,1,1,0, -0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,0,3,0,2,3,3,3,3,2,3,3,3,3,1,2,2,0,0,2,3,2,2,2,3,2,3,2,2,3,0,0, -0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,2,3,0,2,3,2,3,0,1,2,3,3,2,0,2,3,0,0,2,3,2,2,0,1,3,1,3,2,2,1,0, -0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,1,3,0,2,3,3,3,3,3,3,3,3,2,1,3,2,0,0,2,2,3,3,3,2,3,3,0,2,2,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,3,3,3,3,3,2,2,3,3,2,2,2,3,3,0,0,1,1,1,1,1,2,0,0,1,1,1,1,0,1,0, -0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,3,3,3,3,3,2,2,3,3,3,3,3,3,3,0,3,2,3,3,2,3,2,0,2,1,0,1,1,0,1,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0, -3,3,3,3,3,3,2,3,3,3,2,2,2,2,3,1,3,2,3,1,1,2,1,0,2,2,2,2,1,3,1,0, -0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0, -2,2,3,3,3,3,3,1,2,2,1,3,1,0,3,0,0,3,0,0,0,1,1,0,1,2,1,0,0,0,0,0, -0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,2,2,1,1,3,3,3,2,2,1,2,2,3,1,1,2,0,0,2,2,1,3,0,0,2,1,1,2,1,1,0, -0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,2,3,3,3,3,1,2,2,2,1,2,1,3,3,1,1,2,1,2,1,2,2,0,2,0,0,1,1,0,1,0, -0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -2,3,3,3,3,3,2,1,3,2,2,3,2,0,3,2,0,3,0,1,0,1,1,0,0,1,1,1,1,0,1,0, -0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,3,2,3,3,3,2,2,2,3,3,1,2,1,2,1,0,1,0,1,1,0,1,0,0,2,1,1,1,0,1,0, -0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0, -3,1,1,2,1,2,3,3,2,2,1,2,2,3,0,2,1,0,0,2,2,3,2,1,2,2,2,2,2,3,1,0, -0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,3,3,3,3,1,1,0,1,1,2,2,1,1,3,0,0,1,3,1,1,1,0,0,0,1,0,1,1,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -2,1,3,3,3,2,0,0,0,2,1,0,1,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -2,0,1,0,0,2,3,2,2,2,1,2,2,2,1,2,1,0,0,1,1,1,0,2,0,1,1,1,0,0,1,1, -1,0,0,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0, -2,3,3,3,3,0,0,0,0,1,0,0,0,0,3,0,1,2,1,0,0,0,0,0,0,0,1,1,0,0,1,1, -1,0,1,0,1,2,0,0,1,1,2,1,0,1,1,1,1,0,1,1,1,1,0,1,0,0,1,0,0,1,1,0, -2,2,3,2,2,2,3,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,1,1,1,0,2,1, -1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,0,1,1,1,0,1,1,0, -3,3,3,2,2,2,2,3,2,2,1,1,2,2,2,2,1,1,3,1,2,1,2,0,0,1,1,0,1,0,2,1, -1,1,1,1,1,2,1,0,1,1,1,1,0,1,0,0,1,1,0,0,1,0,1,0,0,1,0,0,0,1,1,0, -2,0,0,1,0,3,2,2,2,2,1,2,1,2,1,2,0,0,0,2,1,2,2,1,1,2,2,0,1,1,0,2, -1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,0,1,2,1,1,1,1,0,1,1,1,0,0,1,0,0,1, -1,3,2,2,2,1,1,1,2,3,0,0,0,0,2,0,2,2,1,0,0,0,0,0,0,1,0,0,0,0,1,1, -1,0,1,1,0,1,0,1,1,0,1,1,0,2,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,1,1,0, -2,3,2,3,2,1,2,2,2,2,1,0,0,0,2,0,0,1,1,0,0,0,0,0,0,0,1,1,0,0,2,1, -1,1,2,1,0,2,0,0,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0,1,0,0,0,0,0, -3,0,0,1,0,2,2,2,3,2,2,2,2,2,2,2,0,0,0,2,1,2,1,1,1,2,2,0,0,0,1,2, -1,1,1,1,1,0,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,1, -2,3,2,3,3,2,0,1,1,1,0,0,1,0,2,0,1,1,3,1,0,0,0,0,0,0,0,1,0,0,2,1, -1,1,1,1,1,1,1,0,1,0,1,1,1,1,0,1,1,1,0,0,1,1,0,1,0,0,0,0,0,0,1,0, -2,3,3,3,3,1,2,2,2,2,0,1,1,0,2,1,1,1,2,1,0,1,1,0,0,1,0,1,0,0,2,0, -0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -2,3,3,3,2,0,0,1,1,2,2,1,0,0,2,0,1,1,3,0,0,1,0,0,0,0,0,1,0,1,2,1, -1,1,2,0,1,1,1,0,1,0,1,1,0,1,0,1,1,1,1,0,1,0,0,0,0,0,0,1,0,1,1,0, -1,3,2,3,2,1,0,0,2,2,2,0,1,0,2,0,1,1,1,0,1,0,0,0,3,0,1,1,0,0,2,1, -1,1,1,0,1,1,0,0,0,0,1,1,0,1,0,0,2,1,1,0,1,0,0,0,1,0,1,0,0,1,1,0, -3,1,2,1,1,2,2,2,2,2,2,1,2,2,1,1,0,0,0,2,2,2,0,0,0,1,2,1,0,1,0,1, -2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,2,1,1,1,0,1,0,1,1,0,1,1,1,0,0,1, -3,0,0,0,0,2,0,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,0,1,0,1,1,0,0,1,0,1, -1,1,0,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,1, -1,3,3,2,2,0,0,0,2,2,0,0,0,1,2,0,1,1,2,0,0,0,0,0,0,0,0,1,0,0,2,1, -0,1,1,0,0,1,1,0,0,0,1,1,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0, -2,3,2,3,2,0,0,0,0,1,1,0,0,0,2,0,2,0,2,0,0,0,0,0,1,0,0,1,0,0,1,1, -1,1,2,0,1,2,1,0,1,1,2,1,1,1,1,1,2,1,1,0,1,0,0,1,1,1,1,1,0,1,1,0, -1,3,2,2,2,1,0,0,2,2,1,0,1,2,2,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,1, -0,0,1,1,0,1,1,0,0,1,1,0,1,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0, -1,0,0,1,0,2,3,1,2,2,2,2,2,2,1,1,0,0,0,1,0,1,0,2,1,1,1,0,0,0,0,1, -1,1,0,1,1,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0, -2,0,2,0,0,1,0,3,2,1,2,1,2,2,0,1,0,0,0,2,1,0,0,2,1,1,1,1,0,2,0,2, -2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,0,0,0,1,1,1,1,0,1,0,0,1, -1,2,2,2,2,1,0,0,1,0,0,0,0,0,2,0,1,1,1,1,0,0,0,0,1,0,1,2,0,0,2,0, -1,0,1,1,1,2,1,0,1,0,1,1,0,0,1,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,1,0, -2,1,2,2,2,0,3,0,1,1,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1, -0,0,0,1,1,1,0,0,1,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0, -1,2,2,3,2,2,0,0,1,1,2,0,1,2,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1, -0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,1,1,0, -2,2,1,1,2,1,2,2,2,2,2,1,2,2,0,1,0,0,0,1,2,2,2,1,2,1,1,1,1,1,2,1, -1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,0,1,1,0,0,1, -1,2,2,2,2,0,1,0,2,2,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0, -0,0,1,0,0,1,0,0,0,0,1,0,1,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0, -0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -1,2,2,2,2,0,0,0,2,2,2,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1, -0,1,1,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -1,2,2,2,2,0,0,0,0,1,0,0,1,1,2,0,0,0,0,1,0,1,0,0,1,0,0,2,0,0,0,1, -0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0, -1,2,2,2,1,1,2,0,2,1,1,1,1,0,2,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1, -0,0,1,0,1,1,0,0,0,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0, -1,0,2,1,2,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0, -0,0,1,0,1,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0, -1,0,0,0,0,2,0,1,2,1,0,1,1,1,0,1,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,1, -0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1, -2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, -1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0, -2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, -1,1,1,0,1,0,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0, -1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, -1,1,0,1,1,0,1,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,1,0,1,1,0,1,0,0,0, -0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0, -) - -Koi8rModel = { - 'charToOrderMap': KOI8R_CharToOrderMap, - 'precedenceMatrix': RussianLangModel, - 'mTypicalPositiveRatio': 0.976601, - 'keepEnglishLetter': False, - 'charsetName': "KOI8-R" -} - -Win1251CyrillicModel = { - 'charToOrderMap': win1251_CharToOrderMap, - 'precedenceMatrix': RussianLangModel, - 'mTypicalPositiveRatio': 0.976601, - 'keepEnglishLetter': False, - 'charsetName': "windows-1251" -} - -Latin5CyrillicModel = { - 'charToOrderMap': latin5_CharToOrderMap, - 'precedenceMatrix': RussianLangModel, - 'mTypicalPositiveRatio': 0.976601, - 'keepEnglishLetter': False, - 'charsetName': "ISO-8859-5" -} - -MacCyrillicModel = { - 'charToOrderMap': macCyrillic_CharToOrderMap, - 'precedenceMatrix': RussianLangModel, - 'mTypicalPositiveRatio': 0.976601, - 'keepEnglishLetter': False, - 'charsetName': "MacCyrillic" -}; - -Ibm866Model = { - 'charToOrderMap': IBM866_CharToOrderMap, - 'precedenceMatrix': RussianLangModel, - 'mTypicalPositiveRatio': 0.976601, - 'keepEnglishLetter': False, - 'charsetName': "IBM866" -} - -Ibm855Model = { - 'charToOrderMap': IBM855_CharToOrderMap, - 'precedenceMatrix': RussianLangModel, - 'mTypicalPositiveRatio': 0.976601, - 'keepEnglishLetter': False, - 'charsetName': "IBM855" -} - -# flake8: noqa +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from . import constants + +# KOI8-R language model +# Character Mapping Table: +KOI8R_CharToOrderMap = ( +255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 +255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 +253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 +252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 +253,142,143,144,145,146,147,148,149,150,151,152, 74,153, 75,154, # 40 +155,156,157,158,159,160,161,162,163,164,165,253,253,253,253,253, # 50 +253, 71,172, 66,173, 65,174, 76,175, 64,176,177, 77, 72,178, 69, # 60 + 67,179, 78, 73,180,181, 79,182,183,184,185,253,253,253,253,253, # 70 +191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206, # 80 +207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222, # 90 +223,224,225, 68,226,227,228,229,230,231,232,233,234,235,236,237, # a0 +238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253, # b0 + 27, 3, 21, 28, 13, 2, 39, 19, 26, 4, 23, 11, 8, 12, 5, 1, # c0 + 15, 16, 9, 7, 6, 14, 24, 10, 17, 18, 20, 25, 30, 29, 22, 54, # d0 + 59, 37, 44, 58, 41, 48, 53, 46, 55, 42, 60, 36, 49, 38, 31, 34, # e0 + 35, 43, 45, 32, 40, 52, 56, 33, 61, 62, 51, 57, 47, 63, 50, 70, # f0 +) + +win1251_CharToOrderMap = ( +255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 +255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 +253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 +252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 +253,142,143,144,145,146,147,148,149,150,151,152, 74,153, 75,154, # 40 +155,156,157,158,159,160,161,162,163,164,165,253,253,253,253,253, # 50 +253, 71,172, 66,173, 65,174, 76,175, 64,176,177, 77, 72,178, 69, # 60 + 67,179, 78, 73,180,181, 79,182,183,184,185,253,253,253,253,253, # 70 +191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206, +207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222, +223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238, +239,240,241,242,243,244,245,246, 68,247,248,249,250,251,252,253, + 37, 44, 33, 46, 41, 48, 56, 51, 42, 60, 36, 49, 38, 31, 34, 35, + 45, 32, 40, 52, 53, 55, 58, 50, 57, 63, 70, 62, 61, 47, 59, 43, + 3, 21, 10, 19, 13, 2, 24, 20, 4, 23, 11, 8, 12, 5, 1, 15, + 9, 7, 6, 14, 39, 26, 28, 22, 25, 29, 54, 18, 17, 30, 27, 16, +) + +latin5_CharToOrderMap = ( +255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 +255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 +253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 +252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 +253,142,143,144,145,146,147,148,149,150,151,152, 74,153, 75,154, # 40 +155,156,157,158,159,160,161,162,163,164,165,253,253,253,253,253, # 50 +253, 71,172, 66,173, 65,174, 76,175, 64,176,177, 77, 72,178, 69, # 60 + 67,179, 78, 73,180,181, 79,182,183,184,185,253,253,253,253,253, # 70 +191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206, +207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222, +223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238, + 37, 44, 33, 46, 41, 48, 56, 51, 42, 60, 36, 49, 38, 31, 34, 35, + 45, 32, 40, 52, 53, 55, 58, 50, 57, 63, 70, 62, 61, 47, 59, 43, + 3, 21, 10, 19, 13, 2, 24, 20, 4, 23, 11, 8, 12, 5, 1, 15, + 9, 7, 6, 14, 39, 26, 28, 22, 25, 29, 54, 18, 17, 30, 27, 16, +239, 68,240,241,242,243,244,245,246,247,248,249,250,251,252,255, +) + +macCyrillic_CharToOrderMap = ( +255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 +255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 +253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 +252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 +253,142,143,144,145,146,147,148,149,150,151,152, 74,153, 75,154, # 40 +155,156,157,158,159,160,161,162,163,164,165,253,253,253,253,253, # 50 +253, 71,172, 66,173, 65,174, 76,175, 64,176,177, 77, 72,178, 69, # 60 + 67,179, 78, 73,180,181, 79,182,183,184,185,253,253,253,253,253, # 70 + 37, 44, 33, 46, 41, 48, 56, 51, 42, 60, 36, 49, 38, 31, 34, 35, + 45, 32, 40, 52, 53, 55, 58, 50, 57, 63, 70, 62, 61, 47, 59, 43, +191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206, +207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222, +223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238, +239,240,241,242,243,244,245,246,247,248,249,250,251,252, 68, 16, + 3, 21, 10, 19, 13, 2, 24, 20, 4, 23, 11, 8, 12, 5, 1, 15, + 9, 7, 6, 14, 39, 26, 28, 22, 25, 29, 54, 18, 17, 30, 27,255, +) + +IBM855_CharToOrderMap = ( +255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 +255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 +253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 +252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 +253,142,143,144,145,146,147,148,149,150,151,152, 74,153, 75,154, # 40 +155,156,157,158,159,160,161,162,163,164,165,253,253,253,253,253, # 50 +253, 71,172, 66,173, 65,174, 76,175, 64,176,177, 77, 72,178, 69, # 60 + 67,179, 78, 73,180,181, 79,182,183,184,185,253,253,253,253,253, # 70 +191,192,193,194, 68,195,196,197,198,199,200,201,202,203,204,205, +206,207,208,209,210,211,212,213,214,215,216,217, 27, 59, 54, 70, + 3, 37, 21, 44, 28, 58, 13, 41, 2, 48, 39, 53, 19, 46,218,219, +220,221,222,223,224, 26, 55, 4, 42,225,226,227,228, 23, 60,229, +230,231,232,233,234,235, 11, 36,236,237,238,239,240,241,242,243, + 8, 49, 12, 38, 5, 31, 1, 34, 15,244,245,246,247, 35, 16,248, + 43, 9, 45, 7, 32, 6, 40, 14, 52, 24, 56, 10, 33, 17, 61,249, +250, 18, 62, 20, 51, 25, 57, 30, 47, 29, 63, 22, 50,251,252,255, +) + +IBM866_CharToOrderMap = ( +255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 +255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 +253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 +252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 +253,142,143,144,145,146,147,148,149,150,151,152, 74,153, 75,154, # 40 +155,156,157,158,159,160,161,162,163,164,165,253,253,253,253,253, # 50 +253, 71,172, 66,173, 65,174, 76,175, 64,176,177, 77, 72,178, 69, # 60 + 67,179, 78, 73,180,181, 79,182,183,184,185,253,253,253,253,253, # 70 + 37, 44, 33, 46, 41, 48, 56, 51, 42, 60, 36, 49, 38, 31, 34, 35, + 45, 32, 40, 52, 53, 55, 58, 50, 57, 63, 70, 62, 61, 47, 59, 43, + 3, 21, 10, 19, 13, 2, 24, 20, 4, 23, 11, 8, 12, 5, 1, 15, +191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206, +207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222, +223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238, + 9, 7, 6, 14, 39, 26, 28, 22, 25, 29, 54, 18, 17, 30, 27, 16, +239, 68,240,241,242,243,244,245,246,247,248,249,250,251,252,255, +) + +# Model Table: +# total sequences: 100% +# first 512 sequences: 97.6601% +# first 1024 sequences: 2.3389% +# rest sequences: 0.1237% +# negative sequences: 0.0009% +RussianLangModel = ( +0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,1,1,3,3,3,3,1,3,3,3,2,3,2,3,3, +3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,0,3,2,2,2,2,2,0,0,2, +3,3,3,2,3,3,3,3,3,3,3,3,3,3,2,3,3,0,0,3,3,3,3,3,3,3,3,3,2,3,2,0, +0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,2,2,3,3,3,3,3,3,3,3,3,2,3,3,0,0,3,3,3,3,3,3,3,3,2,3,3,1,0, +0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,2,3,2,3,3,3,3,3,3,3,3,3,3,3,3,3,0,0,3,3,3,3,3,3,3,3,3,3,3,2,1, +0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,3,3,0,0,3,3,3,3,3,3,3,3,3,3,3,2,1, +0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,3,3,3,2,2,2,3,1,3,3,1,3,3,3,3,2,2,3,0,2,2,2,3,3,2,1,0, +0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,3,2,3,3,3,3,3,2,2,3,2,3,3,3,2,1,2,2,0,1,2,2,2,2,2,2,0, +0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,3,0,2,2,3,3,2,1,2,0, +0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,3,2,3,3,1,2,3,2,2,3,2,3,3,3,3,2,2,3,0,3,2,2,3,1,1,1,0, +0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,3,3,3,2,2,3,3,3,3,3,2,3,3,3,3,2,2,2,0,3,3,3,2,2,2,2,0, +0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,3,3,3,3,3,2,3,2,3,3,3,3,3,3,2,3,2,2,0,1,3,2,1,2,2,1,0, +0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,3,3,3,3,3,3,2,1,1,3,0,1,1,1,1,2,1,1,0,2,2,2,1,2,0,1,0, +0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,3,2,3,3,2,2,2,2,1,3,2,3,2,3,2,1,2,2,0,1,1,2,1,2,1,2,0, +0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,3,3,3,3,3,3,3,2,2,3,2,3,3,3,2,2,2,2,0,2,2,2,2,3,1,1,0, +0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0, +3,2,3,2,2,3,3,3,3,3,3,3,3,3,1,3,2,0,0,3,3,3,3,2,3,3,3,3,2,3,2,0, +0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,3,3,3,3,3,2,2,3,3,0,2,1,0,3,2,3,2,3,0,0,1,2,0,0,1,0,1,2,1,1,0, +0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,0,3,0,2,3,3,3,3,2,3,3,3,3,1,2,2,0,0,2,3,2,2,2,3,2,3,2,2,3,0,0, +0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,2,3,0,2,3,2,3,0,1,2,3,3,2,0,2,3,0,0,2,3,2,2,0,1,3,1,3,2,2,1,0, +0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,1,3,0,2,3,3,3,3,3,3,3,3,2,1,3,2,0,0,2,2,3,3,3,2,3,3,0,2,2,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,3,2,2,3,3,2,2,2,3,3,0,0,1,1,1,1,1,2,0,0,1,1,1,1,0,1,0, +0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,3,2,2,3,3,3,3,3,3,3,0,3,2,3,3,2,3,2,0,2,1,0,1,1,0,1,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,3,2,3,3,3,2,2,2,2,3,1,3,2,3,1,1,2,1,0,2,2,2,2,1,3,1,0, +0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0, +2,2,3,3,3,3,3,1,2,2,1,3,1,0,3,0,0,3,0,0,0,1,1,0,1,2,1,0,0,0,0,0, +0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,2,2,1,1,3,3,3,2,2,1,2,2,3,1,1,2,0,0,2,2,1,3,0,0,2,1,1,2,1,1,0, +0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,2,3,3,3,3,1,2,2,2,1,2,1,3,3,1,1,2,1,2,1,2,2,0,2,0,0,1,1,0,1,0, +0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,3,3,3,3,3,2,1,3,2,2,3,2,0,3,2,0,3,0,1,0,1,1,0,0,1,1,1,1,0,1,0, +0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,2,3,3,3,2,2,2,3,3,1,2,1,2,1,0,1,0,1,1,0,1,0,0,2,1,1,1,0,1,0, +0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0, +3,1,1,2,1,2,3,3,2,2,1,2,2,3,0,2,1,0,0,2,2,3,2,1,2,2,2,2,2,3,1,0, +0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,1,1,0,1,1,2,2,1,1,3,0,0,1,3,1,1,1,0,0,0,1,0,1,1,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,1,3,3,3,2,0,0,0,2,1,0,1,0,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,0,1,0,0,2,3,2,2,2,1,2,2,2,1,2,1,0,0,1,1,1,0,2,0,1,1,1,0,0,1,1, +1,0,0,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0, +2,3,3,3,3,0,0,0,0,1,0,0,0,0,3,0,1,2,1,0,0,0,0,0,0,0,1,1,0,0,1,1, +1,0,1,0,1,2,0,0,1,1,2,1,0,1,1,1,1,0,1,1,1,1,0,1,0,0,1,0,0,1,1,0, +2,2,3,2,2,2,3,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,1,1,1,0,2,1, +1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,0,1,1,1,0,1,1,0, +3,3,3,2,2,2,2,3,2,2,1,1,2,2,2,2,1,1,3,1,2,1,2,0,0,1,1,0,1,0,2,1, +1,1,1,1,1,2,1,0,1,1,1,1,0,1,0,0,1,1,0,0,1,0,1,0,0,1,0,0,0,1,1,0, +2,0,0,1,0,3,2,2,2,2,1,2,1,2,1,2,0,0,0,2,1,2,2,1,1,2,2,0,1,1,0,2, +1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,0,1,2,1,1,1,1,0,1,1,1,0,0,1,0,0,1, +1,3,2,2,2,1,1,1,2,3,0,0,0,0,2,0,2,2,1,0,0,0,0,0,0,1,0,0,0,0,1,1, +1,0,1,1,0,1,0,1,1,0,1,1,0,2,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,1,1,0, +2,3,2,3,2,1,2,2,2,2,1,0,0,0,2,0,0,1,1,0,0,0,0,0,0,0,1,1,0,0,2,1, +1,1,2,1,0,2,0,0,1,0,1,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0,1,0,0,0,0,0, +3,0,0,1,0,2,2,2,3,2,2,2,2,2,2,2,0,0,0,2,1,2,1,1,1,2,2,0,0,0,1,2, +1,1,1,1,1,0,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,1, +2,3,2,3,3,2,0,1,1,1,0,0,1,0,2,0,1,1,3,1,0,0,0,0,0,0,0,1,0,0,2,1, +1,1,1,1,1,1,1,0,1,0,1,1,1,1,0,1,1,1,0,0,1,1,0,1,0,0,0,0,0,0,1,0, +2,3,3,3,3,1,2,2,2,2,0,1,1,0,2,1,1,1,2,1,0,1,1,0,0,1,0,1,0,0,2,0, +0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,3,3,3,2,0,0,1,1,2,2,1,0,0,2,0,1,1,3,0,0,1,0,0,0,0,0,1,0,1,2,1, +1,1,2,0,1,1,1,0,1,0,1,1,0,1,0,1,1,1,1,0,1,0,0,0,0,0,0,1,0,1,1,0, +1,3,2,3,2,1,0,0,2,2,2,0,1,0,2,0,1,1,1,0,1,0,0,0,3,0,1,1,0,0,2,1, +1,1,1,0,1,1,0,0,0,0,1,1,0,1,0,0,2,1,1,0,1,0,0,0,1,0,1,0,0,1,1,0, +3,1,2,1,1,2,2,2,2,2,2,1,2,2,1,1,0,0,0,2,2,2,0,0,0,1,2,1,0,1,0,1, +2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,2,1,1,1,0,1,0,1,1,0,1,1,1,0,0,1, +3,0,0,0,0,2,0,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,0,1,0,1,1,0,0,1,0,1, +1,1,0,0,1,0,0,0,1,0,1,1,0,0,1,0,1,0,1,0,0,0,0,1,0,0,0,1,0,0,0,1, +1,3,3,2,2,0,0,0,2,2,0,0,0,1,2,0,1,1,2,0,0,0,0,0,0,0,0,1,0,0,2,1, +0,1,1,0,0,1,1,0,0,0,1,1,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0, +2,3,2,3,2,0,0,0,0,1,1,0,0,0,2,0,2,0,2,0,0,0,0,0,1,0,0,1,0,0,1,1, +1,1,2,0,1,2,1,0,1,1,2,1,1,1,1,1,2,1,1,0,1,0,0,1,1,1,1,1,0,1,1,0, +1,3,2,2,2,1,0,0,2,2,1,0,1,2,2,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,1, +0,0,1,1,0,1,1,0,0,1,1,0,1,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0, +1,0,0,1,0,2,3,1,2,2,2,2,2,2,1,1,0,0,0,1,0,1,0,2,1,1,1,0,0,0,0,1, +1,1,0,1,1,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0, +2,0,2,0,0,1,0,3,2,1,2,1,2,2,0,1,0,0,0,2,1,0,0,2,1,1,1,1,0,2,0,2, +2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,0,0,0,1,1,1,1,0,1,0,0,1, +1,2,2,2,2,1,0,0,1,0,0,0,0,0,2,0,1,1,1,1,0,0,0,0,1,0,1,2,0,0,2,0, +1,0,1,1,1,2,1,0,1,0,1,1,0,0,1,0,1,1,1,0,1,0,0,0,1,0,0,1,0,1,1,0, +2,1,2,2,2,0,3,0,1,1,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1, +0,0,0,1,1,1,0,0,1,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0, +1,2,2,3,2,2,0,0,1,1,2,0,1,2,1,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1, +0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,1,1,0, +2,2,1,1,2,1,2,2,2,2,2,1,2,2,0,1,0,0,0,1,2,2,2,1,2,1,1,1,1,1,2,1, +1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,0,1,1,0,0,1, +1,2,2,2,2,0,1,0,2,2,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0, +0,0,1,0,0,1,0,0,0,0,1,0,1,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0, +0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +1,2,2,2,2,0,0,0,2,2,2,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1, +0,1,1,0,0,1,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +1,2,2,2,2,0,0,0,0,1,0,0,1,1,2,0,0,0,0,1,0,1,0,0,1,0,0,2,0,0,0,1, +0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0, +1,2,2,2,1,1,2,0,2,1,1,1,1,0,2,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1, +0,0,1,0,1,1,0,0,0,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0, +1,0,2,1,2,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0, +0,0,1,0,1,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0, +1,0,0,0,0,2,0,1,2,1,0,1,1,1,0,1,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,1, +0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1, +2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, +1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0, +2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, +1,1,1,0,1,0,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, +1,1,0,1,1,0,1,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,1,0,1,1,0,1,0,0,0, +0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0, +) + +Koi8rModel = { + 'charToOrderMap': KOI8R_CharToOrderMap, + 'precedenceMatrix': RussianLangModel, + 'mTypicalPositiveRatio': 0.976601, + 'keepEnglishLetter': False, + 'charsetName': "KOI8-R" +} + +Win1251CyrillicModel = { + 'charToOrderMap': win1251_CharToOrderMap, + 'precedenceMatrix': RussianLangModel, + 'mTypicalPositiveRatio': 0.976601, + 'keepEnglishLetter': False, + 'charsetName': "windows-1251" +} + +Latin5CyrillicModel = { + 'charToOrderMap': latin5_CharToOrderMap, + 'precedenceMatrix': RussianLangModel, + 'mTypicalPositiveRatio': 0.976601, + 'keepEnglishLetter': False, + 'charsetName': "ISO-8859-5" +} + +MacCyrillicModel = { + 'charToOrderMap': macCyrillic_CharToOrderMap, + 'precedenceMatrix': RussianLangModel, + 'mTypicalPositiveRatio': 0.976601, + 'keepEnglishLetter': False, + 'charsetName': "MacCyrillic" +}; + +Ibm866Model = { + 'charToOrderMap': IBM866_CharToOrderMap, + 'precedenceMatrix': RussianLangModel, + 'mTypicalPositiveRatio': 0.976601, + 'keepEnglishLetter': False, + 'charsetName': "IBM866" +} + +Ibm855Model = { + 'charToOrderMap': IBM855_CharToOrderMap, + 'precedenceMatrix': RussianLangModel, + 'mTypicalPositiveRatio': 0.976601, + 'keepEnglishLetter': False, + 'charsetName': "IBM855" +} + +# flake8: noqa diff --git a/app/src/processing/app/i18n/python/requests/packages/charade/langgreekmodel.py b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/langgreekmodel.py similarity index 98% rename from app/src/processing/app/i18n/python/requests/packages/charade/langgreekmodel.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/charade/langgreekmodel.py index 78e9ce601..891fe3420 100644 --- a/app/src/processing/app/i18n/python/requests/packages/charade/langgreekmodel.py +++ b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/langgreekmodel.py @@ -1,227 +1,227 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is Mozilla Communicator client code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from . import constants - -# 255: Control characters that usually does not exist in any text -# 254: Carriage/Return -# 253: symbol (punctuation) that does not belong to word -# 252: 0 - 9 - -# Character Mapping Table: -Latin7_CharToOrderMap = ( -255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 -255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 -253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 -252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 -253, 82,100,104, 94, 98,101,116,102,111,187,117, 92, 88,113, 85, # 40 - 79,118,105, 83, 67,114,119, 95, 99,109,188,253,253,253,253,253, # 50 -253, 72, 70, 80, 81, 60, 96, 93, 89, 68,120, 97, 77, 86, 69, 55, # 60 - 78,115, 65, 66, 58, 76,106,103, 87,107,112,253,253,253,253,253, # 70 -255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 80 -255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 90 -253,233, 90,253,253,253,253,253,253,253,253,253,253, 74,253,253, # a0 -253,253,253,253,247,248, 61, 36, 46, 71, 73,253, 54,253,108,123, # b0 -110, 31, 51, 43, 41, 34, 91, 40, 52, 47, 44, 53, 38, 49, 59, 39, # c0 - 35, 48,250, 37, 33, 45, 56, 50, 84, 57,120,121, 17, 18, 22, 15, # d0 -124, 1, 29, 20, 21, 3, 32, 13, 25, 5, 11, 16, 10, 6, 30, 4, # e0 - 9, 8, 14, 7, 2, 12, 28, 23, 42, 24, 64, 75, 19, 26, 27,253, # f0 -) - -win1253_CharToOrderMap = ( -255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 -255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 -253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 -252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 -253, 82,100,104, 94, 98,101,116,102,111,187,117, 92, 88,113, 85, # 40 - 79,118,105, 83, 67,114,119, 95, 99,109,188,253,253,253,253,253, # 50 -253, 72, 70, 80, 81, 60, 96, 93, 89, 68,120, 97, 77, 86, 69, 55, # 60 - 78,115, 65, 66, 58, 76,106,103, 87,107,112,253,253,253,253,253, # 70 -255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 80 -255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 90 -253,233, 61,253,253,253,253,253,253,253,253,253,253, 74,253,253, # a0 -253,253,253,253,247,253,253, 36, 46, 71, 73,253, 54,253,108,123, # b0 -110, 31, 51, 43, 41, 34, 91, 40, 52, 47, 44, 53, 38, 49, 59, 39, # c0 - 35, 48,250, 37, 33, 45, 56, 50, 84, 57,120,121, 17, 18, 22, 15, # d0 -124, 1, 29, 20, 21, 3, 32, 13, 25, 5, 11, 16, 10, 6, 30, 4, # e0 - 9, 8, 14, 7, 2, 12, 28, 23, 42, 24, 64, 75, 19, 26, 27,253, # f0 -) - -# Model Table: -# total sequences: 100% -# first 512 sequences: 98.2851% -# first 1024 sequences:1.7001% -# rest sequences: 0.0359% -# negative sequences: 0.0148% -GreekLangModel = ( -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,3,2,2,3,3,3,3,3,3,3,3,1,3,3,3,0,2,2,3,3,0,3,0,3,2,0,3,3,3,0, -3,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,3,3,3,3,3,0,3,3,0,3,2,3,3,0,3,2,3,3,3,0,0,3,0,3,0,3,3,2,0,0,0, -2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0, -0,2,3,2,2,3,3,3,3,3,3,3,3,0,3,3,3,3,0,2,3,3,0,3,3,3,3,2,3,3,3,0, -2,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,2,3,3,2,3,3,3,3,3,3,3,3,3,3,3,3,0,2,1,3,3,3,3,2,3,3,2,3,3,2,0, -0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,3,3,3,3,0,3,3,3,3,3,3,0,3,3,0,3,3,3,3,3,3,3,3,3,3,0,3,2,3,3,0, -2,0,1,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0, -0,3,3,3,3,3,2,3,0,0,0,0,3,3,0,3,1,3,3,3,0,3,3,0,3,3,3,3,0,0,0,0, -2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,3,3,3,3,3,0,3,0,3,3,3,3,3,0,3,2,2,2,3,0,2,3,3,3,3,3,2,3,3,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,3,3,3,3,3,3,2,2,2,3,3,3,3,0,3,1,3,3,3,3,2,3,3,3,3,3,3,3,2,2,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,3,3,3,3,3,2,0,3,0,0,0,3,3,2,3,3,3,3,3,0,0,3,2,3,0,2,3,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,3,0,3,3,3,3,0,0,3,3,0,2,3,0,3,0,3,3,3,0,0,3,0,3,0,2,2,3,3,0,0, -0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,3,3,3,3,3,2,0,3,2,3,3,3,3,0,3,3,3,3,3,0,3,3,2,3,2,3,3,2,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,3,3,2,3,2,3,3,3,3,3,3,0,2,3,2,3,2,2,2,3,2,3,3,2,3,0,2,2,2,3,0, -2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,3,0,0,0,3,3,3,2,3,3,0,0,3,0,3,0,0,0,3,2,0,3,0,3,0,0,2,0,2,0, -0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,3,3,3,3,0,3,3,3,3,3,3,0,3,3,0,3,0,0,0,3,3,0,3,3,3,0,0,1,2,3,0, -3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,3,3,3,3,3,2,0,0,3,2,2,3,3,0,3,3,3,3,3,2,1,3,0,3,2,3,3,2,1,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,3,3,0,2,3,3,3,3,3,3,0,0,3,0,3,0,0,0,3,3,0,3,2,3,0,0,3,3,3,0, -3,0,0,0,2,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,3,3,3,3,0,3,3,3,3,3,3,0,0,3,0,3,0,0,0,3,2,0,3,2,3,0,0,3,2,3,0, -2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,3,1,2,2,3,3,3,3,3,3,0,2,3,0,3,0,0,0,3,3,0,3,0,2,0,0,2,3,1,0, -2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,3,0,3,3,3,3,0,3,0,3,3,2,3,0,3,3,3,3,3,3,0,3,3,3,0,2,3,0,0,3,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,3,0,3,3,3,0,0,3,0,0,0,3,3,0,3,0,2,3,3,0,0,3,0,3,0,3,3,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,3,0,0,0,3,3,3,3,3,3,0,0,3,0,2,0,0,0,3,3,0,3,0,3,0,0,2,0,2,0, -0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,3,3,3,3,3,3,0,3,0,2,0,3,2,0,3,2,3,2,3,0,0,3,2,3,2,3,3,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,3,0,0,2,3,3,3,3,3,0,0,0,3,0,2,1,0,0,3,2,2,2,0,3,0,0,2,2,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,3,0,3,3,3,2,0,3,0,3,0,3,3,0,2,1,2,3,3,0,0,3,0,3,0,3,3,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,2,3,3,3,0,3,3,3,3,3,3,0,2,3,0,3,0,0,0,2,1,0,2,2,3,0,0,2,2,2,0, -0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,3,0,0,2,3,3,3,2,3,0,0,1,3,0,2,0,0,0,0,3,0,1,0,2,0,0,1,1,1,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,3,3,3,3,3,1,0,3,0,0,0,3,2,0,3,2,3,3,3,0,0,3,0,3,2,2,2,1,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,3,0,3,3,3,0,0,3,0,0,0,0,2,0,2,3,3,2,2,2,2,3,0,2,0,2,2,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,3,3,3,3,2,0,0,0,0,0,0,2,3,0,2,0,2,3,2,0,0,3,0,3,0,3,1,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,3,2,3,3,2,2,3,0,2,0,3,0,0,0,2,0,0,0,0,1,2,0,2,0,2,0, -0,2,0,2,0,2,2,0,0,1,0,2,2,2,0,2,2,2,0,2,2,2,0,0,2,0,0,1,0,0,0,0, -0,2,0,3,3,2,0,0,0,0,0,0,1,3,0,2,0,2,2,2,0,0,2,0,3,0,0,2,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,3,0,2,3,2,0,2,2,0,2,0,2,2,0,2,0,2,2,2,0,0,0,0,0,0,2,3,0,0,0,2, -0,1,2,0,0,0,0,2,2,0,0,0,2,1,0,2,2,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0, -0,0,2,1,0,2,3,2,2,3,2,3,2,0,0,3,3,3,0,0,3,2,0,0,0,1,1,0,2,0,2,2, -0,2,0,2,0,2,2,0,0,2,0,2,2,2,0,2,2,2,2,0,0,2,0,0,0,2,0,1,0,0,0,0, -0,3,0,3,3,2,2,0,3,0,0,0,2,2,0,2,2,2,1,2,0,0,1,2,2,0,0,3,0,0,0,2, -0,1,2,0,0,0,1,2,0,0,0,0,0,0,0,2,2,0,1,0,0,2,0,0,0,2,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,2,3,3,2,2,0,0,0,2,0,2,3,3,0,2,0,0,0,0,0,0,2,2,2,0,2,2,0,2,0,2, -0,2,2,0,0,2,2,2,2,1,0,0,2,2,0,2,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0, -0,2,0,3,2,3,0,0,0,3,0,0,2,2,0,2,0,2,2,2,0,0,2,0,0,0,0,0,0,0,0,2, -0,0,2,2,0,0,2,2,2,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,2,0,0,3,2,0,2,2,2,2,2,0,0,0,2,0,0,0,0,2,0,1,0,0,2,0,1,0,0,0, -0,2,2,2,0,2,2,0,1,2,0,2,2,2,0,2,2,2,2,1,2,2,0,0,2,0,0,0,0,0,0,0, -0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0, -0,2,0,2,0,2,2,0,0,0,0,1,2,1,0,0,2,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,3,2,3,0,0,2,0,0,0,2,2,0,2,0,0,0,1,0,0,2,0,2,0,2,2,0,0,0,0, -0,0,2,0,0,0,0,2,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0, -0,2,2,3,2,2,0,0,0,0,0,0,1,3,0,2,0,2,2,0,0,0,1,0,2,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,2,0,2,0,3,2,0,2,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, -0,0,2,0,0,0,0,1,1,0,0,2,1,2,0,2,2,0,1,0,0,1,0,0,0,2,0,0,0,0,0,0, -0,3,0,2,2,2,0,0,2,0,0,0,2,0,0,0,2,3,0,2,0,0,0,0,0,0,2,2,0,0,0,2, -0,1,2,0,0,0,1,2,2,1,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,2,1,2,0,2,2,0,2,0,0,2,0,0,0,0,1,2,1,0,2,1,0,0,0,0,0,0,0,0,0,0, -0,0,2,0,0,0,3,1,2,2,0,2,0,0,0,0,2,0,0,0,2,0,0,3,0,0,0,0,2,2,2,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,2,1,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,2, -0,2,2,0,0,2,2,2,2,2,0,1,2,0,0,0,2,2,0,1,0,2,0,0,2,2,0,0,0,0,0,0, -0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,2,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,2, -0,1,2,0,0,0,0,2,2,1,0,1,0,1,0,2,2,2,1,0,0,0,0,0,0,1,0,0,0,0,0,0, -0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,2,0,0,2,2,0,0,0,0,1,0,0,0,0,0,0,2, -0,2,2,0,0,0,0,2,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0, -0,2,2,2,2,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,1, -0,0,2,0,0,0,0,1,2,0,0,0,0,0,0,2,2,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0, -0,2,0,2,2,2,0,0,2,0,0,0,0,0,0,0,2,2,2,0,0,0,2,0,0,0,0,0,0,0,0,2, -0,0,1,0,0,0,0,2,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0, -0,3,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,2, -0,0,2,0,0,0,0,2,2,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,2,0,2,2,1,0,0,0,0,0,0,2,0,0,2,0,2,2,2,0,0,0,0,0,0,2,0,0,0,0,2, -0,0,2,0,0,2,0,2,2,0,0,0,0,2,0,2,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0, -0,0,3,0,0,0,2,2,0,2,2,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0, -0,2,2,2,2,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1, -0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,2,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0, -0,2,0,0,0,2,0,0,0,0,0,1,0,0,0,0,2,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,2,0,0,0, -0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,2,0,2,0,0,0, -0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,2,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -) - -Latin7GreekModel = { - 'charToOrderMap': Latin7_CharToOrderMap, - 'precedenceMatrix': GreekLangModel, - 'mTypicalPositiveRatio': 0.982851, - 'keepEnglishLetter': False, - 'charsetName': "ISO-8859-7" -} - -Win1253GreekModel = { - 'charToOrderMap': win1253_CharToOrderMap, - 'precedenceMatrix': GreekLangModel, - 'mTypicalPositiveRatio': 0.982851, - 'keepEnglishLetter': False, - 'charsetName': "windows-1253" -} - -# flake8: noqa +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from . import constants + +# 255: Control characters that usually does not exist in any text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 + +# Character Mapping Table: +Latin7_CharToOrderMap = ( +255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 +255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 +253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 +252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 +253, 82,100,104, 94, 98,101,116,102,111,187,117, 92, 88,113, 85, # 40 + 79,118,105, 83, 67,114,119, 95, 99,109,188,253,253,253,253,253, # 50 +253, 72, 70, 80, 81, 60, 96, 93, 89, 68,120, 97, 77, 86, 69, 55, # 60 + 78,115, 65, 66, 58, 76,106,103, 87,107,112,253,253,253,253,253, # 70 +255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 80 +255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 90 +253,233, 90,253,253,253,253,253,253,253,253,253,253, 74,253,253, # a0 +253,253,253,253,247,248, 61, 36, 46, 71, 73,253, 54,253,108,123, # b0 +110, 31, 51, 43, 41, 34, 91, 40, 52, 47, 44, 53, 38, 49, 59, 39, # c0 + 35, 48,250, 37, 33, 45, 56, 50, 84, 57,120,121, 17, 18, 22, 15, # d0 +124, 1, 29, 20, 21, 3, 32, 13, 25, 5, 11, 16, 10, 6, 30, 4, # e0 + 9, 8, 14, 7, 2, 12, 28, 23, 42, 24, 64, 75, 19, 26, 27,253, # f0 +) + +win1253_CharToOrderMap = ( +255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 +255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 +253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 +252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 +253, 82,100,104, 94, 98,101,116,102,111,187,117, 92, 88,113, 85, # 40 + 79,118,105, 83, 67,114,119, 95, 99,109,188,253,253,253,253,253, # 50 +253, 72, 70, 80, 81, 60, 96, 93, 89, 68,120, 97, 77, 86, 69, 55, # 60 + 78,115, 65, 66, 58, 76,106,103, 87,107,112,253,253,253,253,253, # 70 +255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 80 +255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 90 +253,233, 61,253,253,253,253,253,253,253,253,253,253, 74,253,253, # a0 +253,253,253,253,247,253,253, 36, 46, 71, 73,253, 54,253,108,123, # b0 +110, 31, 51, 43, 41, 34, 91, 40, 52, 47, 44, 53, 38, 49, 59, 39, # c0 + 35, 48,250, 37, 33, 45, 56, 50, 84, 57,120,121, 17, 18, 22, 15, # d0 +124, 1, 29, 20, 21, 3, 32, 13, 25, 5, 11, 16, 10, 6, 30, 4, # e0 + 9, 8, 14, 7, 2, 12, 28, 23, 42, 24, 64, 75, 19, 26, 27,253, # f0 +) + +# Model Table: +# total sequences: 100% +# first 512 sequences: 98.2851% +# first 1024 sequences:1.7001% +# rest sequences: 0.0359% +# negative sequences: 0.0148% +GreekLangModel = ( +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,3,2,2,3,3,3,3,3,3,3,3,1,3,3,3,0,2,2,3,3,0,3,0,3,2,0,3,3,3,0, +3,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,3,3,3,3,3,0,3,3,0,3,2,3,3,0,3,2,3,3,3,0,0,3,0,3,0,3,3,2,0,0,0, +2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0, +0,2,3,2,2,3,3,3,3,3,3,3,3,0,3,3,3,3,0,2,3,3,0,3,3,3,3,2,3,3,3,0, +2,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,2,3,3,2,3,3,3,3,3,3,3,3,3,3,3,3,0,2,1,3,3,3,3,2,3,3,2,3,3,2,0, +0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,3,3,3,3,0,3,3,3,3,3,3,0,3,3,0,3,3,3,3,3,3,3,3,3,3,0,3,2,3,3,0, +2,0,1,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0, +0,3,3,3,3,3,2,3,0,0,0,0,3,3,0,3,1,3,3,3,0,3,3,0,3,3,3,3,0,0,0,0, +2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,3,3,3,3,3,0,3,0,3,3,3,3,3,0,3,2,2,2,3,0,2,3,3,3,3,3,2,3,3,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,3,3,3,3,3,3,2,2,2,3,3,3,3,0,3,1,3,3,3,3,2,3,3,3,3,3,3,3,2,2,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,3,3,3,3,3,2,0,3,0,0,0,3,3,2,3,3,3,3,3,0,0,3,2,3,0,2,3,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,3,0,3,3,3,3,0,0,3,3,0,2,3,0,3,0,3,3,3,0,0,3,0,3,0,2,2,3,3,0,0, +0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,3,3,3,3,3,2,0,3,2,3,3,3,3,0,3,3,3,3,3,0,3,3,2,3,2,3,3,2,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,3,3,2,3,2,3,3,3,3,3,3,0,2,3,2,3,2,2,2,3,2,3,3,2,3,0,2,2,2,3,0, +2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,3,0,0,0,3,3,3,2,3,3,0,0,3,0,3,0,0,0,3,2,0,3,0,3,0,0,2,0,2,0, +0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,3,3,3,3,0,3,3,3,3,3,3,0,3,3,0,3,0,0,0,3,3,0,3,3,3,0,0,1,2,3,0, +3,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,3,3,3,3,3,2,0,0,3,2,2,3,3,0,3,3,3,3,3,2,1,3,0,3,2,3,3,2,1,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,3,3,0,2,3,3,3,3,3,3,0,0,3,0,3,0,0,0,3,3,0,3,2,3,0,0,3,3,3,0, +3,0,0,0,2,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,3,3,3,3,0,3,3,3,3,3,3,0,0,3,0,3,0,0,0,3,2,0,3,2,3,0,0,3,2,3,0, +2,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,3,1,2,2,3,3,3,3,3,3,0,2,3,0,3,0,0,0,3,3,0,3,0,2,0,0,2,3,1,0, +2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,3,0,3,3,3,3,0,3,0,3,3,2,3,0,3,3,3,3,3,3,0,3,3,3,0,2,3,0,0,3,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,3,0,3,3,3,0,0,3,0,0,0,3,3,0,3,0,2,3,3,0,0,3,0,3,0,3,3,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,3,0,0,0,3,3,3,3,3,3,0,0,3,0,2,0,0,0,3,3,0,3,0,3,0,0,2,0,2,0, +0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,3,3,3,3,3,3,0,3,0,2,0,3,2,0,3,2,3,2,3,0,0,3,2,3,2,3,3,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,3,0,0,2,3,3,3,3,3,0,0,0,3,0,2,1,0,0,3,2,2,2,0,3,0,0,2,2,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,3,0,3,3,3,2,0,3,0,3,0,3,3,0,2,1,2,3,3,0,0,3,0,3,0,3,3,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,2,3,3,3,0,3,3,3,3,3,3,0,2,3,0,3,0,0,0,2,1,0,2,2,3,0,0,2,2,2,0, +0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,3,0,0,2,3,3,3,2,3,0,0,1,3,0,2,0,0,0,0,3,0,1,0,2,0,0,1,1,1,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,3,3,3,3,3,1,0,3,0,0,0,3,2,0,3,2,3,3,3,0,0,3,0,3,2,2,2,1,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,3,0,3,3,3,0,0,3,0,0,0,0,2,0,2,3,3,2,2,2,2,3,0,2,0,2,2,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,3,3,3,3,2,0,0,0,0,0,0,2,3,0,2,0,2,3,2,0,0,3,0,3,0,3,1,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,3,2,3,3,2,2,3,0,2,0,3,0,0,0,2,0,0,0,0,1,2,0,2,0,2,0, +0,2,0,2,0,2,2,0,0,1,0,2,2,2,0,2,2,2,0,2,2,2,0,0,2,0,0,1,0,0,0,0, +0,2,0,3,3,2,0,0,0,0,0,0,1,3,0,2,0,2,2,2,0,0,2,0,3,0,0,2,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,3,0,2,3,2,0,2,2,0,2,0,2,2,0,2,0,2,2,2,0,0,0,0,0,0,2,3,0,0,0,2, +0,1,2,0,0,0,0,2,2,0,0,0,2,1,0,2,2,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0, +0,0,2,1,0,2,3,2,2,3,2,3,2,0,0,3,3,3,0,0,3,2,0,0,0,1,1,0,2,0,2,2, +0,2,0,2,0,2,2,0,0,2,0,2,2,2,0,2,2,2,2,0,0,2,0,0,0,2,0,1,0,0,0,0, +0,3,0,3,3,2,2,0,3,0,0,0,2,2,0,2,2,2,1,2,0,0,1,2,2,0,0,3,0,0,0,2, +0,1,2,0,0,0,1,2,0,0,0,0,0,0,0,2,2,0,1,0,0,2,0,0,0,2,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,2,3,3,2,2,0,0,0,2,0,2,3,3,0,2,0,0,0,0,0,0,2,2,2,0,2,2,0,2,0,2, +0,2,2,0,0,2,2,2,2,1,0,0,2,2,0,2,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0, +0,2,0,3,2,3,0,0,0,3,0,0,2,2,0,2,0,2,2,2,0,0,2,0,0,0,0,0,0,0,0,2, +0,0,2,2,0,0,2,2,2,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,2,0,0,3,2,0,2,2,2,2,2,0,0,0,2,0,0,0,0,2,0,1,0,0,2,0,1,0,0,0, +0,2,2,2,0,2,2,0,1,2,0,2,2,2,0,2,2,2,2,1,2,2,0,0,2,0,0,0,0,0,0,0, +0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0, +0,2,0,2,0,2,2,0,0,0,0,1,2,1,0,0,2,2,0,0,2,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,3,2,3,0,0,2,0,0,0,2,2,0,2,0,0,0,1,0,0,2,0,2,0,2,2,0,0,0,0, +0,0,2,0,0,0,0,2,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0, +0,2,2,3,2,2,0,0,0,0,0,0,1,3,0,2,0,2,2,0,0,0,1,0,2,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,2,0,2,0,3,2,0,2,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, +0,0,2,0,0,0,0,1,1,0,0,2,1,2,0,2,2,0,1,0,0,1,0,0,0,2,0,0,0,0,0,0, +0,3,0,2,2,2,0,0,2,0,0,0,2,0,0,0,2,3,0,2,0,0,0,0,0,0,2,2,0,0,0,2, +0,1,2,0,0,0,1,2,2,1,0,0,0,2,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,2,1,2,0,2,2,0,2,0,0,2,0,0,0,0,1,2,1,0,2,1,0,0,0,0,0,0,0,0,0,0, +0,0,2,0,0,0,3,1,2,2,0,2,0,0,0,0,2,0,0,0,2,0,0,3,0,0,0,0,2,2,2,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,2,1,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,2, +0,2,2,0,0,2,2,2,2,2,0,1,2,0,0,0,2,2,0,1,0,2,0,0,2,2,0,0,0,0,0,0, +0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,2,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,2, +0,1,2,0,0,0,0,2,2,1,0,1,0,1,0,2,2,2,1,0,0,0,0,0,0,1,0,0,0,0,0,0, +0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,2,0,0,2,2,0,0,0,0,1,0,0,0,0,0,0,2, +0,2,2,0,0,0,0,2,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0, +0,2,2,2,2,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,1, +0,0,2,0,0,0,0,1,2,0,0,0,0,0,0,2,2,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0, +0,2,0,2,2,2,0,0,2,0,0,0,0,0,0,0,2,2,2,0,0,0,2,0,0,0,0,0,0,0,0,2, +0,0,1,0,0,0,0,2,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0, +0,3,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,2, +0,0,2,0,0,0,0,2,2,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,2,0,2,2,1,0,0,0,0,0,0,2,0,0,2,0,2,2,2,0,0,0,0,0,0,2,0,0,0,0,2, +0,0,2,0,0,2,0,2,2,0,0,0,0,2,0,2,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0, +0,0,3,0,0,0,2,2,0,2,2,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,0, +0,2,2,2,2,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1, +0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,2,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0, +0,2,0,0,0,2,0,0,0,0,0,1,0,0,0,0,2,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,2,0,0,0, +0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,2,0,2,0,0,0, +0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,2,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +) + +Latin7GreekModel = { + 'charToOrderMap': Latin7_CharToOrderMap, + 'precedenceMatrix': GreekLangModel, + 'mTypicalPositiveRatio': 0.982851, + 'keepEnglishLetter': False, + 'charsetName': "ISO-8859-7" +} + +Win1253GreekModel = { + 'charToOrderMap': win1253_CharToOrderMap, + 'precedenceMatrix': GreekLangModel, + 'mTypicalPositiveRatio': 0.982851, + 'keepEnglishLetter': False, + 'charsetName': "windows-1253" +} + +# flake8: noqa diff --git a/app/src/processing/app/i18n/python/requests/packages/charade/langhebrewmodel.py b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/langhebrewmodel.py similarity index 98% rename from app/src/processing/app/i18n/python/requests/packages/charade/langhebrewmodel.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/charade/langhebrewmodel.py index 4c6b3ce11..248b02aa0 100644 --- a/app/src/processing/app/i18n/python/requests/packages/charade/langhebrewmodel.py +++ b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/langhebrewmodel.py @@ -1,203 +1,203 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is Mozilla Universal charset detector code. -# -# The Initial Developer of the Original Code is -# Simon Montagu -# Portions created by the Initial Developer are Copyright (C) 2005 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# Shy Shalom - original C code -# Shoshannah Forbes - original C code (?) -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from . import constants - -# 255: Control characters that usually does not exist in any text -# 254: Carriage/Return -# 253: symbol (punctuation) that does not belong to word -# 252: 0 - 9 - -# Windows-1255 language model -# Character Mapping Table: -win1255_CharToOrderMap = ( -255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 -255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 -253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 -252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 -253, 69, 91, 79, 80, 92, 89, 97, 90, 68,111,112, 82, 73, 95, 85, # 40 - 78,121, 86, 71, 67,102,107, 84,114,103,115,253,253,253,253,253, # 50 -253, 50, 74, 60, 61, 42, 76, 70, 64, 53,105, 93, 56, 65, 54, 49, # 60 - 66,110, 51, 43, 44, 63, 81, 77, 98, 75,108,253,253,253,253,253, # 70 -124,202,203,204,205, 40, 58,206,207,208,209,210,211,212,213,214, -215, 83, 52, 47, 46, 72, 32, 94,216,113,217,109,218,219,220,221, - 34,116,222,118,100,223,224,117,119,104,125,225,226, 87, 99,227, -106,122,123,228, 55,229,230,101,231,232,120,233, 48, 39, 57,234, - 30, 59, 41, 88, 33, 37, 36, 31, 29, 35,235, 62, 28,236,126,237, -238, 38, 45,239,240,241,242,243,127,244,245,246,247,248,249,250, - 9, 8, 20, 16, 3, 2, 24, 14, 22, 1, 25, 15, 4, 11, 6, 23, - 12, 19, 13, 26, 18, 27, 21, 17, 7, 10, 5,251,252,128, 96,253, -) - -# Model Table: -# total sequences: 100% -# first 512 sequences: 98.4004% -# first 1024 sequences: 1.5981% -# rest sequences: 0.087% -# negative sequences: 0.0015% -HebrewLangModel = ( -0,3,3,3,3,3,3,3,3,3,3,2,3,3,3,3,3,3,3,3,3,3,3,2,3,2,1,2,0,1,0,0, -3,0,3,1,0,0,1,3,2,0,1,1,2,0,2,2,2,1,1,1,1,2,1,1,1,2,0,0,2,2,0,1, -3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2, -1,2,1,2,1,2,0,0,2,0,0,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0, -3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2, -1,2,1,3,1,1,0,0,2,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0, -3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,1,0,1,2,2,1,3, -1,2,1,1,2,2,0,0,2,2,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,1,0,1,1,0, -3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,3,3,2,2,2,2,3,2, -1,2,1,2,2,2,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0, -3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,3,3,2,3,2,2,3,2,2,2,1,2,2,2,2, -1,2,1,1,2,2,0,1,2,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0, -3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,0,2,2,2,2,2, -0,2,0,2,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0, -3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,3,0,2,2,2, -0,2,1,2,2,2,0,0,2,1,0,0,0,0,1,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0, -3,3,3,3,3,3,3,3,3,3,3,2,3,3,3,3,3,3,3,3,3,3,3,3,3,2,1,2,3,2,2,2, -1,2,1,2,2,2,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0, -3,3,3,3,3,3,3,3,3,2,3,3,3,2,3,3,3,3,3,3,3,3,3,3,3,3,3,1,0,2,0,2, -0,2,1,2,2,2,0,0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,2,0,0,1,0, -3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,3,2,3,2,2,3,2,1,2,1,1,1, -0,1,1,1,1,1,3,0,1,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0, -3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,0,0,1,0,0,1,0,0,0,0, -0,0,1,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2, -0,2,0,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0, -3,3,3,3,3,3,3,3,3,2,3,3,3,2,1,2,3,3,2,3,3,3,3,2,3,2,1,2,0,2,1,2, -0,2,0,2,2,2,0,0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0, -3,3,3,3,3,3,3,3,3,2,3,3,3,1,2,2,3,3,2,3,2,3,2,2,3,1,2,2,0,2,2,2, -0,2,1,2,2,2,0,0,1,2,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0, -3,3,3,3,3,3,3,3,3,3,3,3,3,2,3,3,3,2,3,3,2,2,2,3,3,3,3,1,3,2,2,2, -0,2,0,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0, -3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,3,3,3,2,3,2,2,2,1,2,2,0,2,2,2,2, -0,2,0,2,2,2,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0, -3,3,3,3,3,3,3,3,3,3,3,2,3,3,3,1,3,2,3,3,2,3,3,2,2,1,2,2,2,2,2,2, -0,2,1,2,1,2,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,0, -3,3,3,3,3,3,2,3,2,3,3,2,3,3,3,3,2,3,2,3,3,3,3,3,2,2,2,2,2,2,2,1, -0,2,0,1,2,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0, -3,3,3,3,3,3,3,3,3,2,1,2,3,3,3,3,3,3,3,2,3,2,3,2,1,2,3,0,2,1,2,2, -0,2,1,1,2,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0, -3,3,3,3,3,3,3,3,3,2,3,3,3,3,2,1,3,1,2,2,2,1,2,3,3,1,2,1,2,2,2,2, -0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0, -3,3,3,3,3,3,3,3,3,3,0,2,3,3,3,1,3,3,3,1,2,2,2,2,1,1,2,2,2,2,2,2, -0,2,0,1,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0, -3,3,3,3,3,3,2,3,3,3,2,2,3,3,3,2,1,2,3,2,3,2,2,2,2,1,2,1,1,1,2,2, -0,2,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0, -3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,0, -1,0,1,0,0,0,0,0,2,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,3,3,3,3,2,3,3,2,3,1,2,2,2,2,3,2,3,1,1,2,2,1,2,2,1,1,0,2,2,2,2, -0,1,0,1,2,2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0, -3,0,0,1,1,0,1,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,0, -0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,0,1,0,1,0,1,1,0,1,1,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0, -0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0, -3,2,2,1,2,2,2,2,2,2,2,1,2,2,1,2,2,1,1,1,1,1,1,1,1,2,1,1,0,3,3,3, -0,3,0,2,2,2,2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0, -2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,1,2,2,2,1,1,1,2,0,1, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,0,2,2,0,0,0,0,0,0, -0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -2,3,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,0,2,1,0, -0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0, -0,3,1,1,2,2,2,2,2,1,2,2,2,1,1,2,2,2,2,2,2,2,1,2,2,1,0,1,1,1,1,0, -0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,2,1,1,1,1,2,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0, -0,0,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,1,0,0, -2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,2,1,2,1,1,1,1,0,0,0,0, -0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -1,2,1,2,2,2,2,2,2,2,2,2,2,1,2,1,2,1,1,2,1,1,1,2,1,2,1,2,0,1,0,1, -0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,3,1,2,2,2,1,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,2,1,2,1,1,0,1,0,1, -0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -2,1,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2, -0,2,0,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0, -3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -2,1,1,1,1,1,1,1,0,1,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,2,0,1,1,1,0,1,0,0,0,1,1,0,1,1,0,0,0,0,0,1,1,0,0, -0,1,1,1,2,1,2,2,2,0,2,0,2,0,1,1,2,1,1,1,1,2,1,0,1,1,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, -1,0,1,0,0,0,0,0,1,0,1,2,2,0,1,0,0,1,1,2,2,1,2,0,2,0,0,0,1,2,0,1, -2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,2,0,2,1,2,0,2,0,0,1,1,1,1,1,1,0,1,0,0,0,1,0,0,1, -2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,1,0,0,0,0,0,1,0,2,1,1,0,1,0,0,1,1,1,2,2,0,0,1,0,0,0,1,0,0,1, -1,1,2,1,0,1,1,1,0,1,0,1,1,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,2,2,1, -0,2,0,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -2,1,0,0,1,0,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,0,1,1,0,1,0,0,0,1,1,0,1, -2,0,1,0,1,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,0,0,1,1,2,1,1,2,0,1,0,0,0,1,1,0,1, -1,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,1,0,1,1,2,0,1,0,0,0,0,2,1,1,2,0,2,0,0,0,1,1,0,1, -1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,1,0,2,1,1,0,1,0,0,2,2,1,2,1,1,0,1,0,0,0,1,1,0,1, -2,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,1,2,2,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,1,0,1, -1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,1,2,2,0,0,0,0,2,1,1,1,0,2,1,1,0,0,0,2,1,0,1, -1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,1,0,1,1,2,0,1,0,0,1,1,0,2,1,1,0,1,0,0,0,1,1,0,1, -2,2,1,1,1,0,1,1,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,1,0,2,1,1,0,1,0,0,1,1,0,1,2,1,0,2,0,0,0,1,1,0,1, -2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0, -0,1,0,0,2,0,2,1,1,0,1,0,1,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,1,0,1,1,2,0,1,0,0,1,1,1,0,1,0,0,1,0,0,0,1,0,0,1, -1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -1,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,2,1,1,1,1,1,0,1,0,0,0,0,1,0,1, -0,1,1,1,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,1,1,1,1,1,0,1,0,0,0,1,1,0,0, -) - -Win1255HebrewModel = { - 'charToOrderMap': win1255_CharToOrderMap, - 'precedenceMatrix': HebrewLangModel, - 'mTypicalPositiveRatio': 0.984004, - 'keepEnglishLetter': False, - 'charsetName': "windows-1255" -} - -# flake8: noqa +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Simon Montagu +# Portions created by the Initial Developer are Copyright (C) 2005 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# Shoshannah Forbes - original C code (?) +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from . import constants + +# 255: Control characters that usually does not exist in any text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 + +# Windows-1255 language model +# Character Mapping Table: +win1255_CharToOrderMap = ( +255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 +255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 +253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 +252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 +253, 69, 91, 79, 80, 92, 89, 97, 90, 68,111,112, 82, 73, 95, 85, # 40 + 78,121, 86, 71, 67,102,107, 84,114,103,115,253,253,253,253,253, # 50 +253, 50, 74, 60, 61, 42, 76, 70, 64, 53,105, 93, 56, 65, 54, 49, # 60 + 66,110, 51, 43, 44, 63, 81, 77, 98, 75,108,253,253,253,253,253, # 70 +124,202,203,204,205, 40, 58,206,207,208,209,210,211,212,213,214, +215, 83, 52, 47, 46, 72, 32, 94,216,113,217,109,218,219,220,221, + 34,116,222,118,100,223,224,117,119,104,125,225,226, 87, 99,227, +106,122,123,228, 55,229,230,101,231,232,120,233, 48, 39, 57,234, + 30, 59, 41, 88, 33, 37, 36, 31, 29, 35,235, 62, 28,236,126,237, +238, 38, 45,239,240,241,242,243,127,244,245,246,247,248,249,250, + 9, 8, 20, 16, 3, 2, 24, 14, 22, 1, 25, 15, 4, 11, 6, 23, + 12, 19, 13, 26, 18, 27, 21, 17, 7, 10, 5,251,252,128, 96,253, +) + +# Model Table: +# total sequences: 100% +# first 512 sequences: 98.4004% +# first 1024 sequences: 1.5981% +# rest sequences: 0.087% +# negative sequences: 0.0015% +HebrewLangModel = ( +0,3,3,3,3,3,3,3,3,3,3,2,3,3,3,3,3,3,3,3,3,3,3,2,3,2,1,2,0,1,0,0, +3,0,3,1,0,0,1,3,2,0,1,1,2,0,2,2,2,1,1,1,1,2,1,1,1,2,0,0,2,2,0,1, +3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2, +1,2,1,2,1,2,0,0,2,0,0,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0, +3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2, +1,2,1,3,1,1,0,0,2,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0, +3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,1,0,1,2,2,1,3, +1,2,1,1,2,2,0,0,2,2,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,1,0,1,1,0, +3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,3,3,2,2,2,2,3,2, +1,2,1,2,2,2,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0, +3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,3,3,2,3,2,2,3,2,2,2,1,2,2,2,2, +1,2,1,1,2,2,0,1,2,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0, +3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,0,2,2,2,2,2, +0,2,0,2,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0, +3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,3,0,2,2,2, +0,2,1,2,2,2,0,0,2,1,0,0,0,0,1,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0, +3,3,3,3,3,3,3,3,3,3,3,2,3,3,3,3,3,3,3,3,3,3,3,3,3,2,1,2,3,2,2,2, +1,2,1,2,2,2,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0, +3,3,3,3,3,3,3,3,3,2,3,3,3,2,3,3,3,3,3,3,3,3,3,3,3,3,3,1,0,2,0,2, +0,2,1,2,2,2,0,0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,2,0,0,1,0, +3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,3,2,3,2,2,3,2,1,2,1,1,1, +0,1,1,1,1,1,3,0,1,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0, +3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,0,0,1,0,0,1,0,0,0,0, +0,0,1,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2, +0,2,0,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0, +3,3,3,3,3,3,3,3,3,2,3,3,3,2,1,2,3,3,2,3,3,3,3,2,3,2,1,2,0,2,1,2, +0,2,0,2,2,2,0,0,1,2,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0, +3,3,3,3,3,3,3,3,3,2,3,3,3,1,2,2,3,3,2,3,2,3,2,2,3,1,2,2,0,2,2,2, +0,2,1,2,2,2,0,0,1,2,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0, +3,3,3,3,3,3,3,3,3,3,3,3,3,2,3,3,3,2,3,3,2,2,2,3,3,3,3,1,3,2,2,2, +0,2,0,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0, +3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,3,3,3,2,3,2,2,2,1,2,2,0,2,2,2,2, +0,2,0,2,2,2,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0, +3,3,3,3,3,3,3,3,3,3,3,2,3,3,3,1,3,2,3,3,2,3,3,2,2,1,2,2,2,2,2,2, +0,2,1,2,1,2,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,0, +3,3,3,3,3,3,2,3,2,3,3,2,3,3,3,3,2,3,2,3,3,3,3,3,2,2,2,2,2,2,2,1, +0,2,0,1,2,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0, +3,3,3,3,3,3,3,3,3,2,1,2,3,3,3,3,3,3,3,2,3,2,3,2,1,2,3,0,2,1,2,2, +0,2,1,1,2,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0, +3,3,3,3,3,3,3,3,3,2,3,3,3,3,2,1,3,1,2,2,2,1,2,3,3,1,2,1,2,2,2,2, +0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0, +3,3,3,3,3,3,3,3,3,3,0,2,3,3,3,1,3,3,3,1,2,2,2,2,1,1,2,2,2,2,2,2, +0,2,0,1,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0, +3,3,3,3,3,3,2,3,3,3,2,2,3,3,3,2,1,2,3,2,3,2,2,2,2,1,2,1,1,1,2,2, +0,2,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0, +3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,0, +1,0,1,0,0,0,0,0,2,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,2,3,3,2,3,1,2,2,2,2,3,2,3,1,1,2,2,1,2,2,1,1,0,2,2,2,2, +0,1,0,1,2,2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0, +3,0,0,1,1,0,1,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,0, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,0,1,0,1,0,1,1,0,1,1,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0, +3,2,2,1,2,2,2,2,2,2,2,1,2,2,1,2,2,1,1,1,1,1,1,1,1,2,1,1,0,3,3,3, +0,3,0,2,2,2,2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0, +2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,1,2,2,2,1,1,1,2,0,1, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,0,2,2,0,0,0,0,0,0, +0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,3,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,0,2,1,0, +0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0, +0,3,1,1,2,2,2,2,2,1,2,2,2,1,1,2,2,2,2,2,2,2,1,2,2,1,0,1,1,1,1,0, +0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,2,1,1,1,1,2,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0, +0,0,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,1,0,0, +2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,2,1,2,1,1,1,1,0,0,0,0, +0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +1,2,1,2,2,2,2,2,2,2,2,2,2,1,2,1,2,1,1,2,1,1,1,2,1,2,1,2,0,1,0,1, +0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,3,1,2,2,2,1,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,2,1,2,1,1,0,1,0,1, +0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,1,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2, +0,2,0,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0, +3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,1,1,1,1,1,1,1,0,1,1,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,2,0,1,1,1,0,1,0,0,0,1,1,0,1,1,0,0,0,0,0,1,1,0,0, +0,1,1,1,2,1,2,2,2,0,2,0,2,0,1,1,2,1,1,1,1,2,1,0,1,1,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, +1,0,1,0,0,0,0,0,1,0,1,2,2,0,1,0,0,1,1,2,2,1,2,0,2,0,0,0,1,2,0,1, +2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,2,0,2,1,2,0,2,0,0,1,1,1,1,1,1,0,1,0,0,0,1,0,0,1, +2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,1,0,0,0,0,0,1,0,2,1,1,0,1,0,0,1,1,1,2,2,0,0,1,0,0,0,1,0,0,1, +1,1,2,1,0,1,1,1,0,1,0,1,1,1,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,2,2,1, +0,2,0,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,1,0,0,1,0,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,0,1,1,0,1,0,0,0,1,1,0,1, +2,0,1,0,1,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,0,0,1,1,2,1,1,2,0,1,0,0,0,1,1,0,1, +1,0,0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,1,0,1,1,2,0,1,0,0,0,0,2,1,1,2,0,2,0,0,0,1,1,0,1, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,1,0,2,1,1,0,1,0,0,2,2,1,2,1,1,0,1,0,0,0,1,1,0,1, +2,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,1,2,2,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,1,0,1, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,1,2,2,0,0,0,0,2,1,1,1,0,2,1,1,0,0,0,2,1,0,1, +1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,1,0,1,1,2,0,1,0,0,1,1,0,2,1,1,0,1,0,0,0,1,1,0,1, +2,2,1,1,1,0,1,1,0,1,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,1,0,2,1,1,0,1,0,0,1,1,0,1,2,1,0,2,0,0,0,1,1,0,1, +2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0, +0,1,0,0,2,0,2,1,1,0,1,0,1,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,1,0,1,1,2,0,1,0,0,1,1,1,0,1,0,0,1,0,0,0,1,0,0,1, +1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +1,0,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,2,1,1,1,1,1,0,1,0,0,0,0,1,0,1, +0,1,1,1,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,1,1,1,1,1,0,1,0,0,0,1,1,0,0, +) + +Win1255HebrewModel = { + 'charToOrderMap': win1255_CharToOrderMap, + 'precedenceMatrix': HebrewLangModel, + 'mTypicalPositiveRatio': 0.984004, + 'keepEnglishLetter': False, + 'charsetName': "windows-1255" +} + +# flake8: noqa diff --git a/app/src/processing/app/i18n/python/requests/packages/charade/langhungarianmodel.py b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/langhungarianmodel.py similarity index 98% rename from app/src/processing/app/i18n/python/requests/packages/charade/langhungarianmodel.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/charade/langhungarianmodel.py index bd7f5055d..c748d280c 100644 --- a/app/src/processing/app/i18n/python/requests/packages/charade/langhungarianmodel.py +++ b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/langhungarianmodel.py @@ -1,227 +1,227 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is Mozilla Communicator client code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from . import constants - -# 255: Control characters that usually does not exist in any text -# 254: Carriage/Return -# 253: symbol (punctuation) that does not belong to word -# 252: 0 - 9 - -# Character Mapping Table: -Latin2_HungarianCharToOrderMap = ( -255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 -255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 -253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 -252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 -253, 28, 40, 54, 45, 32, 50, 49, 38, 39, 53, 36, 41, 34, 35, 47, - 46, 71, 43, 33, 37, 57, 48, 64, 68, 55, 52,253,253,253,253,253, -253, 2, 18, 26, 17, 1, 27, 12, 20, 9, 22, 7, 6, 13, 4, 8, - 23, 67, 10, 5, 3, 21, 19, 65, 62, 16, 11,253,253,253,253,253, -159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174, -175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190, -191,192,193,194,195,196,197, 75,198,199,200,201,202,203,204,205, - 79,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220, -221, 51, 81,222, 78,223,224,225,226, 44,227,228,229, 61,230,231, -232,233,234, 58,235, 66, 59,236,237,238, 60, 69, 63,239,240,241, - 82, 14, 74,242, 70, 80,243, 72,244, 15, 83, 77, 84, 30, 76, 85, -245,246,247, 25, 73, 42, 24,248,249,250, 31, 56, 29,251,252,253, -) - -win1250HungarianCharToOrderMap = ( -255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 -255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 -253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 -252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 -253, 28, 40, 54, 45, 32, 50, 49, 38, 39, 53, 36, 41, 34, 35, 47, - 46, 72, 43, 33, 37, 57, 48, 64, 68, 55, 52,253,253,253,253,253, -253, 2, 18, 26, 17, 1, 27, 12, 20, 9, 22, 7, 6, 13, 4, 8, - 23, 67, 10, 5, 3, 21, 19, 65, 62, 16, 11,253,253,253,253,253, -161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176, -177,178,179,180, 78,181, 69,182,183,184,185,186,187,188,189,190, -191,192,193,194,195,196,197, 76,198,199,200,201,202,203,204,205, - 81,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220, -221, 51, 83,222, 80,223,224,225,226, 44,227,228,229, 61,230,231, -232,233,234, 58,235, 66, 59,236,237,238, 60, 70, 63,239,240,241, - 84, 14, 75,242, 71, 82,243, 73,244, 15, 85, 79, 86, 30, 77, 87, -245,246,247, 25, 74, 42, 24,248,249,250, 31, 56, 29,251,252,253, -) - -# Model Table: -# total sequences: 100% -# first 512 sequences: 94.7368% -# first 1024 sequences:5.2623% -# rest sequences: 0.8894% -# negative sequences: 0.0009% -HungarianLangModel = ( -0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,1,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, -3,3,3,3,3,3,3,3,3,3,2,3,3,3,3,3,3,3,3,2,2,3,3,1,1,2,2,2,2,2,1,2, -3,2,2,3,3,3,3,3,2,3,3,3,3,3,3,1,2,3,3,3,3,2,3,3,1,1,3,3,0,1,1,1, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0, -3,2,1,3,3,3,3,3,2,3,3,3,3,3,1,1,2,3,3,3,3,3,3,3,1,1,3,2,0,1,1,1, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0, -3,3,3,3,3,3,3,3,3,3,3,1,1,2,3,3,3,1,3,3,3,3,3,1,3,3,2,2,0,3,2,3, -0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0, -3,3,3,3,3,3,2,3,3,3,2,3,3,2,3,3,3,3,3,2,3,3,2,2,3,2,3,2,0,3,2,2, -0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0, -3,3,3,3,3,3,2,3,3,3,3,3,2,3,3,3,1,2,3,2,2,3,1,2,3,3,2,2,0,3,3,3, -0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, -3,3,3,3,3,3,3,3,3,3,2,2,3,3,3,3,3,3,2,3,3,3,3,2,3,3,3,3,0,2,3,2, -0,0,0,1,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, -3,3,3,3,3,3,3,3,3,3,3,1,1,1,3,3,2,1,3,2,2,3,2,1,3,2,2,1,0,3,3,1, -0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, -3,2,2,3,3,3,3,3,1,2,3,3,3,3,1,2,1,3,3,3,3,2,2,3,1,1,3,2,0,1,1,1, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0, -3,3,3,3,3,3,3,3,2,2,3,3,3,3,3,2,1,3,3,3,3,3,2,2,1,3,3,3,0,1,1,2, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0, -3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,3,3,3,2,3,3,2,3,3,3,2,0,3,2,3, -0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0, -3,3,3,3,3,3,2,3,3,3,2,3,2,3,3,3,1,3,2,2,2,3,1,1,3,3,1,1,0,3,3,2, -0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, -3,3,3,3,3,3,3,2,3,3,3,2,3,2,3,3,3,2,3,3,3,3,3,1,2,3,2,2,0,2,2,2, -0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, -3,3,3,2,2,2,3,1,3,3,2,2,1,3,3,3,1,1,3,1,2,3,2,3,2,2,2,1,0,2,2,2, -0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0, -3,1,1,3,3,3,3,3,1,2,3,3,3,3,1,2,1,3,3,3,2,2,3,2,1,0,3,2,0,1,1,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,1,1,3,3,3,3,3,1,2,3,3,3,3,1,1,0,3,3,3,3,0,2,3,0,0,2,1,0,1,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,3,3,3,3,3,2,2,3,3,2,2,2,2,3,3,0,1,2,3,2,3,2,2,3,2,1,2,0,2,2,2, -0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0, -3,3,3,3,3,3,1,2,3,3,3,2,1,2,3,3,2,2,2,3,2,3,3,1,3,3,1,1,0,2,3,2, -0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, -3,3,3,1,2,2,2,2,3,3,3,1,1,1,3,3,1,1,3,1,1,3,2,1,2,3,1,1,0,2,2,2, -0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, -3,3,3,2,1,2,1,1,3,3,1,1,1,1,3,3,1,1,2,2,1,2,1,1,2,2,1,1,0,2,2,1, -0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, -3,3,3,1,1,2,1,1,3,3,1,0,1,1,3,3,2,0,1,1,2,3,1,0,2,2,1,0,0,1,3,2, -0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, -3,2,1,3,3,3,3,3,1,2,3,2,3,3,2,1,1,3,2,3,2,1,2,2,0,1,2,1,0,0,1,1, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0, -3,3,3,3,2,2,2,2,3,1,2,2,1,1,3,3,0,3,2,1,2,3,2,1,3,3,1,1,0,2,1,3, -0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, -3,3,3,2,2,2,3,2,3,3,3,2,1,1,3,3,1,1,1,2,2,3,2,3,2,2,2,1,0,2,2,1, -0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, -1,0,0,3,3,3,3,3,0,0,3,3,2,3,0,0,0,2,3,3,1,0,1,2,0,0,1,1,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,1,2,3,3,3,3,3,1,2,3,3,2,2,1,1,0,3,3,2,2,1,2,2,1,0,2,2,0,1,1,1, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,3,2,2,1,3,1,2,3,3,2,2,1,1,2,2,1,1,1,1,3,2,1,1,1,1,2,1,0,1,2,1, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0, -2,3,3,1,1,1,1,1,3,3,3,0,1,1,3,3,1,1,1,1,1,2,2,0,3,1,1,2,0,2,1,1, -0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, -3,1,0,1,2,1,2,2,0,1,2,3,1,2,0,0,0,2,1,1,1,1,1,2,0,0,1,1,0,0,0,0, -1,2,1,2,2,2,1,2,1,2,0,2,0,2,2,1,1,2,1,1,2,1,1,1,0,1,0,0,0,1,1,0, -1,1,1,2,3,2,3,3,0,1,2,2,3,1,0,1,0,2,1,2,2,0,1,1,0,0,1,1,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -1,0,0,3,3,2,2,1,0,0,3,2,3,2,0,0,0,1,1,3,0,0,1,1,0,0,2,1,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,1,1,2,2,3,3,1,0,1,3,2,3,1,1,1,0,1,1,1,1,1,3,1,0,0,2,2,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,1,1,1,2,2,2,1,0,1,2,3,3,2,0,0,0,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0, -1,2,2,2,2,2,1,1,1,2,0,2,1,1,1,1,1,2,1,1,1,1,1,1,0,1,1,1,0,0,1,1, -3,2,2,1,0,0,1,1,2,2,0,3,0,1,2,1,1,0,0,1,1,1,0,1,1,1,1,0,2,1,1,1, -2,2,1,1,1,2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,3,1,1,1,1,1,1,1,1,1,0,1, -2,3,3,0,1,0,0,0,3,3,1,0,0,1,2,2,1,0,0,0,0,2,0,0,1,1,1,0,2,1,1,1, -2,1,1,1,1,1,1,2,1,1,0,1,1,0,1,1,1,0,1,2,1,1,0,1,1,1,1,1,1,1,0,1, -2,3,3,0,1,0,0,0,2,2,0,0,0,0,1,2,2,0,0,0,0,1,0,0,1,1,0,0,2,0,1,0, -2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,0,1,1,1,1,1,0,1, -3,2,2,0,1,0,1,0,2,3,2,0,0,1,2,2,1,0,0,1,1,1,0,0,2,1,0,1,2,2,1,1, -2,1,1,1,1,1,1,2,1,1,1,1,1,1,0,2,1,0,1,1,0,1,1,1,0,1,1,2,1,1,0,1, -2,2,2,0,0,1,0,0,2,2,1,1,0,0,2,1,1,0,0,0,1,2,0,0,2,1,0,0,2,1,1,1, -2,1,1,1,1,2,1,2,1,1,1,2,2,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,0,1, -1,2,3,0,0,0,1,0,3,2,1,0,0,1,2,1,1,0,0,0,0,2,1,0,1,1,0,0,2,1,2,1, -1,1,0,0,0,1,0,1,1,1,1,1,2,0,0,1,0,0,0,2,0,0,1,1,1,1,1,1,1,1,0,1, -3,0,0,2,1,2,2,1,0,0,2,1,2,2,0,0,0,2,1,1,1,0,1,1,0,0,1,1,2,0,0,0, -1,2,1,2,2,1,1,2,1,2,0,1,1,1,1,1,1,1,1,1,2,1,1,0,0,1,1,1,1,0,0,1, -1,3,2,0,0,0,1,0,2,2,2,0,0,0,2,2,1,0,0,0,0,3,1,1,1,1,0,0,2,1,1,1, -2,1,0,1,1,1,0,1,1,1,1,1,1,1,0,2,1,0,0,1,0,1,1,0,1,1,1,1,1,1,0,1, -2,3,2,0,0,0,1,0,2,2,0,0,0,0,2,1,1,0,0,0,0,2,1,0,1,1,0,0,2,1,1,0, -2,1,1,1,1,2,1,2,1,2,0,1,1,1,0,2,1,1,1,2,1,1,1,1,0,1,1,1,1,1,0,1, -3,1,1,2,2,2,3,2,1,1,2,2,1,1,0,1,0,2,2,1,1,1,1,1,0,0,1,1,0,1,1,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -2,2,2,0,0,0,0,0,2,2,0,0,0,0,2,2,1,0,0,0,1,1,0,0,1,2,0,0,2,1,1,1, -2,2,1,1,1,2,1,2,1,1,0,1,1,1,1,2,1,1,1,2,1,1,1,1,0,1,2,1,1,1,0,1, -1,0,0,1,2,3,2,1,0,0,2,0,1,1,0,0,0,1,1,1,1,0,1,1,0,0,1,0,0,0,0,0, -1,2,1,2,1,2,1,1,1,2,0,2,1,1,1,0,1,2,0,0,1,1,1,0,0,0,0,0,0,0,0,0, -2,3,2,0,0,0,0,0,1,1,2,1,0,0,1,1,1,0,0,0,0,2,0,0,1,1,0,0,2,1,1,1, -2,1,1,1,1,1,1,2,1,0,1,1,1,1,0,2,1,1,1,1,1,1,0,1,0,1,1,1,1,1,0,1, -1,2,2,0,1,1,1,0,2,2,2,0,0,0,3,2,1,0,0,0,1,1,0,0,1,1,0,1,1,1,0,0, -1,1,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,1,0,1,0,1, -2,1,0,2,1,1,2,2,1,1,2,1,1,1,0,0,0,1,1,0,1,1,1,1,0,0,1,1,1,0,0,0, -1,2,2,2,2,2,1,1,1,2,0,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,0,0,1,0, -1,2,3,0,0,0,1,0,2,2,0,0,0,0,2,2,0,0,0,0,0,1,0,0,1,0,0,0,2,0,1,0, -2,1,1,1,1,1,0,2,0,0,0,1,2,1,1,1,1,0,1,2,0,1,0,1,0,1,1,1,0,1,0,1, -2,2,2,0,0,0,1,0,2,1,2,0,0,0,1,1,2,0,0,0,0,1,0,0,1,1,0,0,2,1,0,1, -2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,0,1,1,1,1,1,0,1, -1,2,2,0,0,0,1,0,2,2,2,0,0,0,1,1,0,0,0,0,0,1,1,0,2,0,0,1,1,1,0,1, -1,0,1,1,1,1,1,1,0,1,1,1,1,0,0,1,0,0,1,1,0,1,0,1,1,1,1,1,0,0,0,1, -1,0,0,1,0,1,2,1,0,0,1,1,1,2,0,0,0,1,1,0,1,0,1,1,0,0,1,0,0,0,0,0, -0,2,1,2,1,1,1,1,1,2,0,2,0,1,1,0,1,2,1,0,1,1,1,0,0,0,0,0,0,1,0,0, -2,1,1,0,1,2,0,0,1,1,1,0,0,0,1,1,0,0,0,0,0,1,0,0,1,0,0,0,2,1,0,1, -2,2,1,1,1,1,1,2,1,1,0,1,1,1,1,2,1,1,1,2,1,1,0,1,0,1,1,1,1,1,0,1, -1,2,2,0,0,0,0,0,1,1,0,0,0,0,2,1,0,0,0,0,0,2,0,0,2,2,0,0,2,0,0,1, -2,1,1,1,1,1,1,1,0,1,1,0,1,1,0,1,0,0,0,1,1,1,1,0,0,1,1,1,1,0,0,1, -1,1,2,0,0,3,1,0,2,1,1,1,0,0,1,1,1,0,0,0,1,1,0,0,0,1,0,0,1,0,1,0, -1,2,1,0,1,1,1,2,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,0,0,0,1,0,0, -2,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,2,0,0,0, -2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,0,0,1,1,1,1,1,0,1, -2,1,1,1,2,1,1,1,0,1,1,2,1,0,0,0,0,1,1,1,1,0,1,0,0,0,0,1,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -1,1,0,1,1,1,1,1,0,0,1,1,2,1,0,0,0,1,1,0,0,0,1,1,0,0,1,0,1,0,0,0, -1,2,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,0,0, -2,0,0,0,1,1,1,1,0,0,1,1,0,0,0,0,0,1,1,1,2,0,0,1,0,0,1,0,1,0,0,0, -0,1,1,1,1,1,1,1,1,2,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0, -1,0,0,1,1,1,1,1,0,0,2,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0, -0,1,1,1,1,1,1,0,1,1,0,1,0,1,1,0,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0, -1,0,0,1,1,1,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0, -0,1,1,1,1,1,0,0,1,1,0,1,0,1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0, -0,0,0,1,0,0,0,0,0,0,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,1,1,1,0,1,0,0,1,1,0,1,0,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0, -2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0,0,1,0,0,1,0,1,0,1,1,1,0,0,1,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -1,0,0,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0, -0,1,1,1,1,1,1,0,1,1,0,1,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0, -) - -Latin2HungarianModel = { - 'charToOrderMap': Latin2_HungarianCharToOrderMap, - 'precedenceMatrix': HungarianLangModel, - 'mTypicalPositiveRatio': 0.947368, - 'keepEnglishLetter': True, - 'charsetName': "ISO-8859-2" -} - -Win1250HungarianModel = { - 'charToOrderMap': win1250HungarianCharToOrderMap, - 'precedenceMatrix': HungarianLangModel, - 'mTypicalPositiveRatio': 0.947368, - 'keepEnglishLetter': True, - 'charsetName': "windows-1250" -} - -# flake8: noqa +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from . import constants + +# 255: Control characters that usually does not exist in any text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 + +# Character Mapping Table: +Latin2_HungarianCharToOrderMap = ( +255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 +255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 +253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 +252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 +253, 28, 40, 54, 45, 32, 50, 49, 38, 39, 53, 36, 41, 34, 35, 47, + 46, 71, 43, 33, 37, 57, 48, 64, 68, 55, 52,253,253,253,253,253, +253, 2, 18, 26, 17, 1, 27, 12, 20, 9, 22, 7, 6, 13, 4, 8, + 23, 67, 10, 5, 3, 21, 19, 65, 62, 16, 11,253,253,253,253,253, +159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174, +175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190, +191,192,193,194,195,196,197, 75,198,199,200,201,202,203,204,205, + 79,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220, +221, 51, 81,222, 78,223,224,225,226, 44,227,228,229, 61,230,231, +232,233,234, 58,235, 66, 59,236,237,238, 60, 69, 63,239,240,241, + 82, 14, 74,242, 70, 80,243, 72,244, 15, 83, 77, 84, 30, 76, 85, +245,246,247, 25, 73, 42, 24,248,249,250, 31, 56, 29,251,252,253, +) + +win1250HungarianCharToOrderMap = ( +255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 +255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 +253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 +252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 +253, 28, 40, 54, 45, 32, 50, 49, 38, 39, 53, 36, 41, 34, 35, 47, + 46, 72, 43, 33, 37, 57, 48, 64, 68, 55, 52,253,253,253,253,253, +253, 2, 18, 26, 17, 1, 27, 12, 20, 9, 22, 7, 6, 13, 4, 8, + 23, 67, 10, 5, 3, 21, 19, 65, 62, 16, 11,253,253,253,253,253, +161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176, +177,178,179,180, 78,181, 69,182,183,184,185,186,187,188,189,190, +191,192,193,194,195,196,197, 76,198,199,200,201,202,203,204,205, + 81,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220, +221, 51, 83,222, 80,223,224,225,226, 44,227,228,229, 61,230,231, +232,233,234, 58,235, 66, 59,236,237,238, 60, 70, 63,239,240,241, + 84, 14, 75,242, 71, 82,243, 73,244, 15, 85, 79, 86, 30, 77, 87, +245,246,247, 25, 74, 42, 24,248,249,250, 31, 56, 29,251,252,253, +) + +# Model Table: +# total sequences: 100% +# first 512 sequences: 94.7368% +# first 1024 sequences:5.2623% +# rest sequences: 0.8894% +# negative sequences: 0.0009% +HungarianLangModel = ( +0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,1,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, +3,3,3,3,3,3,3,3,3,3,2,3,3,3,3,3,3,3,3,2,2,3,3,1,1,2,2,2,2,2,1,2, +3,2,2,3,3,3,3,3,2,3,3,3,3,3,3,1,2,3,3,3,3,2,3,3,1,1,3,3,0,1,1,1, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0, +3,2,1,3,3,3,3,3,2,3,3,3,3,3,1,1,2,3,3,3,3,3,3,3,1,1,3,2,0,1,1,1, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0, +3,3,3,3,3,3,3,3,3,3,3,1,1,2,3,3,3,1,3,3,3,3,3,1,3,3,2,2,0,3,2,3, +0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0, +3,3,3,3,3,3,2,3,3,3,2,3,3,2,3,3,3,3,3,2,3,3,2,2,3,2,3,2,0,3,2,2, +0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0, +3,3,3,3,3,3,2,3,3,3,3,3,2,3,3,3,1,2,3,2,2,3,1,2,3,3,2,2,0,3,3,3, +0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, +3,3,3,3,3,3,3,3,3,3,2,2,3,3,3,3,3,3,2,3,3,3,3,2,3,3,3,3,0,2,3,2, +0,0,0,1,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, +3,3,3,3,3,3,3,3,3,3,3,1,1,1,3,3,2,1,3,2,2,3,2,1,3,2,2,1,0,3,3,1, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, +3,2,2,3,3,3,3,3,1,2,3,3,3,3,1,2,1,3,3,3,3,2,2,3,1,1,3,2,0,1,1,1, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0, +3,3,3,3,3,3,3,3,2,2,3,3,3,3,3,2,1,3,3,3,3,3,2,2,1,3,3,3,0,1,1,2, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0, +3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,3,3,3,2,3,3,2,3,3,3,2,0,3,2,3, +0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0, +3,3,3,3,3,3,2,3,3,3,2,3,2,3,3,3,1,3,2,2,2,3,1,1,3,3,1,1,0,3,3,2, +0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, +3,3,3,3,3,3,3,2,3,3,3,2,3,2,3,3,3,2,3,3,3,3,3,1,2,3,2,2,0,2,2,2, +0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, +3,3,3,2,2,2,3,1,3,3,2,2,1,3,3,3,1,1,3,1,2,3,2,3,2,2,2,1,0,2,2,2, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0, +3,1,1,3,3,3,3,3,1,2,3,3,3,3,1,2,1,3,3,3,2,2,3,2,1,0,3,2,0,1,1,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,1,1,3,3,3,3,3,1,2,3,3,3,3,1,1,0,3,3,3,3,0,2,3,0,0,2,1,0,1,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,3,2,2,3,3,2,2,2,2,3,3,0,1,2,3,2,3,2,2,3,2,1,2,0,2,2,2, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0, +3,3,3,3,3,3,1,2,3,3,3,2,1,2,3,3,2,2,2,3,2,3,3,1,3,3,1,1,0,2,3,2, +0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, +3,3,3,1,2,2,2,2,3,3,3,1,1,1,3,3,1,1,3,1,1,3,2,1,2,3,1,1,0,2,2,2, +0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, +3,3,3,2,1,2,1,1,3,3,1,1,1,1,3,3,1,1,2,2,1,2,1,1,2,2,1,1,0,2,2,1, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, +3,3,3,1,1,2,1,1,3,3,1,0,1,1,3,3,2,0,1,1,2,3,1,0,2,2,1,0,0,1,3,2, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, +3,2,1,3,3,3,3,3,1,2,3,2,3,3,2,1,1,3,2,3,2,1,2,2,0,1,2,1,0,0,1,1, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0, +3,3,3,3,2,2,2,2,3,1,2,2,1,1,3,3,0,3,2,1,2,3,2,1,3,3,1,1,0,2,1,3, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, +3,3,3,2,2,2,3,2,3,3,3,2,1,1,3,3,1,1,1,2,2,3,2,3,2,2,2,1,0,2,2,1, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, +1,0,0,3,3,3,3,3,0,0,3,3,2,3,0,0,0,2,3,3,1,0,1,2,0,0,1,1,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,1,2,3,3,3,3,3,1,2,3,3,2,2,1,1,0,3,3,2,2,1,2,2,1,0,2,2,0,1,1,1, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,2,2,1,3,1,2,3,3,2,2,1,1,2,2,1,1,1,1,3,2,1,1,1,1,2,1,0,1,2,1, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0, +2,3,3,1,1,1,1,1,3,3,3,0,1,1,3,3,1,1,1,1,1,2,2,0,3,1,1,2,0,2,1,1, +0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, +3,1,0,1,2,1,2,2,0,1,2,3,1,2,0,0,0,2,1,1,1,1,1,2,0,0,1,1,0,0,0,0, +1,2,1,2,2,2,1,2,1,2,0,2,0,2,2,1,1,2,1,1,2,1,1,1,0,1,0,0,0,1,1,0, +1,1,1,2,3,2,3,3,0,1,2,2,3,1,0,1,0,2,1,2,2,0,1,1,0,0,1,1,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +1,0,0,3,3,2,2,1,0,0,3,2,3,2,0,0,0,1,1,3,0,0,1,1,0,0,2,1,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,1,1,2,2,3,3,1,0,1,3,2,3,1,1,1,0,1,1,1,1,1,3,1,0,0,2,2,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,1,1,1,2,2,2,1,0,1,2,3,3,2,0,0,0,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0, +1,2,2,2,2,2,1,1,1,2,0,2,1,1,1,1,1,2,1,1,1,1,1,1,0,1,1,1,0,0,1,1, +3,2,2,1,0,0,1,1,2,2,0,3,0,1,2,1,1,0,0,1,1,1,0,1,1,1,1,0,2,1,1,1, +2,2,1,1,1,2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,3,1,1,1,1,1,1,1,1,1,0,1, +2,3,3,0,1,0,0,0,3,3,1,0,0,1,2,2,1,0,0,0,0,2,0,0,1,1,1,0,2,1,1,1, +2,1,1,1,1,1,1,2,1,1,0,1,1,0,1,1,1,0,1,2,1,1,0,1,1,1,1,1,1,1,0,1, +2,3,3,0,1,0,0,0,2,2,0,0,0,0,1,2,2,0,0,0,0,1,0,0,1,1,0,0,2,0,1,0, +2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,0,1,1,1,1,1,0,1, +3,2,2,0,1,0,1,0,2,3,2,0,0,1,2,2,1,0,0,1,1,1,0,0,2,1,0,1,2,2,1,1, +2,1,1,1,1,1,1,2,1,1,1,1,1,1,0,2,1,0,1,1,0,1,1,1,0,1,1,2,1,1,0,1, +2,2,2,0,0,1,0,0,2,2,1,1,0,0,2,1,1,0,0,0,1,2,0,0,2,1,0,0,2,1,1,1, +2,1,1,1,1,2,1,2,1,1,1,2,2,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,0,1, +1,2,3,0,0,0,1,0,3,2,1,0,0,1,2,1,1,0,0,0,0,2,1,0,1,1,0,0,2,1,2,1, +1,1,0,0,0,1,0,1,1,1,1,1,2,0,0,1,0,0,0,2,0,0,1,1,1,1,1,1,1,1,0,1, +3,0,0,2,1,2,2,1,0,0,2,1,2,2,0,0,0,2,1,1,1,0,1,1,0,0,1,1,2,0,0,0, +1,2,1,2,2,1,1,2,1,2,0,1,1,1,1,1,1,1,1,1,2,1,1,0,0,1,1,1,1,0,0,1, +1,3,2,0,0,0,1,0,2,2,2,0,0,0,2,2,1,0,0,0,0,3,1,1,1,1,0,0,2,1,1,1, +2,1,0,1,1,1,0,1,1,1,1,1,1,1,0,2,1,0,0,1,0,1,1,0,1,1,1,1,1,1,0,1, +2,3,2,0,0,0,1,0,2,2,0,0,0,0,2,1,1,0,0,0,0,2,1,0,1,1,0,0,2,1,1,0, +2,1,1,1,1,2,1,2,1,2,0,1,1,1,0,2,1,1,1,2,1,1,1,1,0,1,1,1,1,1,0,1, +3,1,1,2,2,2,3,2,1,1,2,2,1,1,0,1,0,2,2,1,1,1,1,1,0,0,1,1,0,1,1,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,2,2,0,0,0,0,0,2,2,0,0,0,0,2,2,1,0,0,0,1,1,0,0,1,2,0,0,2,1,1,1, +2,2,1,1,1,2,1,2,1,1,0,1,1,1,1,2,1,1,1,2,1,1,1,1,0,1,2,1,1,1,0,1, +1,0,0,1,2,3,2,1,0,0,2,0,1,1,0,0,0,1,1,1,1,0,1,1,0,0,1,0,0,0,0,0, +1,2,1,2,1,2,1,1,1,2,0,2,1,1,1,0,1,2,0,0,1,1,1,0,0,0,0,0,0,0,0,0, +2,3,2,0,0,0,0,0,1,1,2,1,0,0,1,1,1,0,0,0,0,2,0,0,1,1,0,0,2,1,1,1, +2,1,1,1,1,1,1,2,1,0,1,1,1,1,0,2,1,1,1,1,1,1,0,1,0,1,1,1,1,1,0,1, +1,2,2,0,1,1,1,0,2,2,2,0,0,0,3,2,1,0,0,0,1,1,0,0,1,1,0,1,1,1,0,0, +1,1,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,1,0,1,0,1, +2,1,0,2,1,1,2,2,1,1,2,1,1,1,0,0,0,1,1,0,1,1,1,1,0,0,1,1,1,0,0,0, +1,2,2,2,2,2,1,1,1,2,0,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,0,0,1,0, +1,2,3,0,0,0,1,0,2,2,0,0,0,0,2,2,0,0,0,0,0,1,0,0,1,0,0,0,2,0,1,0, +2,1,1,1,1,1,0,2,0,0,0,1,2,1,1,1,1,0,1,2,0,1,0,1,0,1,1,1,0,1,0,1, +2,2,2,0,0,0,1,0,2,1,2,0,0,0,1,1,2,0,0,0,0,1,0,0,1,1,0,0,2,1,0,1, +2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,0,1,1,1,1,1,0,1, +1,2,2,0,0,0,1,0,2,2,2,0,0,0,1,1,0,0,0,0,0,1,1,0,2,0,0,1,1,1,0,1, +1,0,1,1,1,1,1,1,0,1,1,1,1,0,0,1,0,0,1,1,0,1,0,1,1,1,1,1,0,0,0,1, +1,0,0,1,0,1,2,1,0,0,1,1,1,2,0,0,0,1,1,0,1,0,1,1,0,0,1,0,0,0,0,0, +0,2,1,2,1,1,1,1,1,2,0,2,0,1,1,0,1,2,1,0,1,1,1,0,0,0,0,0,0,1,0,0, +2,1,1,0,1,2,0,0,1,1,1,0,0,0,1,1,0,0,0,0,0,1,0,0,1,0,0,0,2,1,0,1, +2,2,1,1,1,1,1,2,1,1,0,1,1,1,1,2,1,1,1,2,1,1,0,1,0,1,1,1,1,1,0,1, +1,2,2,0,0,0,0,0,1,1,0,0,0,0,2,1,0,0,0,0,0,2,0,0,2,2,0,0,2,0,0,1, +2,1,1,1,1,1,1,1,0,1,1,0,1,1,0,1,0,0,0,1,1,1,1,0,0,1,1,1,1,0,0,1, +1,1,2,0,0,3,1,0,2,1,1,1,0,0,1,1,1,0,0,0,1,1,0,0,0,1,0,0,1,0,1,0, +1,2,1,0,1,1,1,2,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,0,0,0,1,0,0, +2,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,2,0,0,0, +2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,0,0,1,1,1,1,1,0,1, +2,1,1,1,2,1,1,1,0,1,1,2,1,0,0,0,0,1,1,1,1,0,1,0,0,0,0,1,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +1,1,0,1,1,1,1,1,0,0,1,1,2,1,0,0,0,1,1,0,0,0,1,1,0,0,1,0,1,0,0,0, +1,2,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,0,0, +2,0,0,0,1,1,1,1,0,0,1,1,0,0,0,0,0,1,1,1,2,0,0,1,0,0,1,0,1,0,0,0, +0,1,1,1,1,1,1,1,1,2,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0, +1,0,0,1,1,1,1,1,0,0,2,1,0,1,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0, +0,1,1,1,1,1,1,0,1,1,0,1,0,1,1,0,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0, +1,0,0,1,1,1,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0, +0,1,1,1,1,1,0,0,1,1,0,1,0,1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0, +0,0,0,1,0,0,0,0,0,0,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,1,1,1,0,1,0,0,1,1,0,1,0,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0, +2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0,0,1,0,0,1,0,1,0,1,1,1,0,0,1,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +1,0,0,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0, +0,1,1,1,1,1,1,0,1,1,0,1,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0, +) + +Latin2HungarianModel = { + 'charToOrderMap': Latin2_HungarianCharToOrderMap, + 'precedenceMatrix': HungarianLangModel, + 'mTypicalPositiveRatio': 0.947368, + 'keepEnglishLetter': True, + 'charsetName': "ISO-8859-2" +} + +Win1250HungarianModel = { + 'charToOrderMap': win1250HungarianCharToOrderMap, + 'precedenceMatrix': HungarianLangModel, + 'mTypicalPositiveRatio': 0.947368, + 'keepEnglishLetter': True, + 'charsetName': "windows-1250" +} + +# flake8: noqa diff --git a/app/src/processing/app/i18n/python/requests/packages/charade/langthaimodel.py b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/langthaimodel.py similarity index 98% rename from app/src/processing/app/i18n/python/requests/packages/charade/langthaimodel.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/charade/langthaimodel.py index df343a747..0508b1b1a 100644 --- a/app/src/processing/app/i18n/python/requests/packages/charade/langthaimodel.py +++ b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/langthaimodel.py @@ -1,200 +1,200 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is Mozilla Communicator client code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -# 255: Control characters that usually does not exist in any text -# 254: Carriage/Return -# 253: symbol (punctuation) that does not belong to word -# 252: 0 - 9 - -# The following result for thai was collected from a limited sample (1M). - -# Character Mapping Table: -TIS620CharToOrderMap = ( -255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 -255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 -253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 -252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 -253,182,106,107,100,183,184,185,101, 94,186,187,108,109,110,111, # 40 -188,189,190, 89, 95,112,113,191,192,193,194,253,253,253,253,253, # 50 -253, 64, 72, 73,114, 74,115,116,102, 81,201,117, 90,103, 78, 82, # 60 - 96,202, 91, 79, 84,104,105, 97, 98, 92,203,253,253,253,253,253, # 70 -209,210,211,212,213, 88,214,215,216,217,218,219,220,118,221,222, -223,224, 99, 85, 83,225,226,227,228,229,230,231,232,233,234,235, -236, 5, 30,237, 24,238, 75, 8, 26, 52, 34, 51,119, 47, 58, 57, - 49, 53, 55, 43, 20, 19, 44, 14, 48, 3, 17, 25, 39, 62, 31, 54, - 45, 9, 16, 2, 61, 15,239, 12, 42, 46, 18, 21, 76, 4, 66, 63, - 22, 10, 1, 36, 23, 13, 40, 27, 32, 35, 86,240,241,242,243,244, - 11, 28, 41, 29, 33,245, 50, 37, 6, 7, 67, 77, 38, 93,246,247, - 68, 56, 59, 65, 69, 60, 70, 80, 71, 87,248,249,250,251,252,253, -) - -# Model Table: -# total sequences: 100% -# first 512 sequences: 92.6386% -# first 1024 sequences:7.3177% -# rest sequences: 1.0230% -# negative sequences: 0.0436% -ThaiLangModel = ( -0,1,3,3,3,3,0,0,3,3,0,3,3,0,3,3,3,3,3,3,3,3,0,0,3,3,3,0,3,3,3,3, -0,3,3,0,0,0,1,3,0,3,3,2,3,3,0,1,2,3,3,3,3,0,2,0,2,0,0,3,2,1,2,2, -3,0,3,3,2,3,0,0,3,3,0,3,3,0,3,3,3,3,3,3,3,3,3,0,3,2,3,0,2,2,2,3, -0,2,3,0,0,0,0,1,0,1,2,3,1,1,3,2,2,0,1,1,0,0,1,0,0,0,0,0,0,0,1,1, -3,3,3,2,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,3,3,2,3,2,3,3,2,2,2, -3,1,2,3,0,3,3,2,2,1,2,3,3,1,2,0,1,3,0,1,0,0,1,0,0,0,0,0,0,0,1,1, -3,3,2,2,3,3,3,3,1,2,3,3,3,3,3,2,2,2,2,3,3,2,2,3,3,2,2,3,2,3,2,2, -3,3,1,2,3,1,2,2,3,3,1,0,2,1,0,0,3,1,2,1,0,0,1,0,0,0,0,0,0,1,0,1, -3,3,3,3,3,3,2,2,3,3,3,3,2,3,2,2,3,3,2,2,3,2,2,2,2,1,1,3,1,2,1,1, -3,2,1,0,2,1,0,1,0,1,1,0,1,1,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0, -3,3,3,2,3,2,3,3,2,2,3,2,3,3,2,3,1,1,2,3,2,2,2,3,2,2,2,2,2,1,2,1, -2,2,1,1,3,3,2,1,0,1,2,2,0,1,3,0,0,0,1,1,0,0,0,0,0,2,3,0,0,2,1,1, -3,3,2,3,3,2,0,0,3,3,0,3,3,0,2,2,3,1,2,2,1,1,1,0,2,2,2,0,2,2,1,1, -0,2,1,0,2,0,0,2,0,1,0,0,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0, -3,3,2,3,3,2,0,0,3,3,0,2,3,0,2,1,2,2,2,2,1,2,0,0,2,2,2,0,2,2,1,1, -0,2,1,0,2,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0, -3,3,2,3,2,3,2,0,2,2,1,3,2,1,3,2,1,2,3,2,2,3,0,2,3,2,2,1,2,2,2,2, -1,2,2,0,0,0,0,2,0,1,2,0,1,1,1,0,1,0,3,1,1,0,0,0,0,0,0,0,0,0,1,0, -3,3,2,3,3,2,3,2,2,2,3,2,2,3,2,2,1,2,3,2,2,3,1,3,2,2,2,3,2,2,2,3, -3,2,1,3,0,1,1,1,0,2,1,1,1,1,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,2,0,0, -1,0,0,3,0,3,3,3,3,3,0,0,3,0,2,2,3,3,3,3,3,0,0,0,1,1,3,0,0,0,0,2, -0,0,1,0,0,0,0,0,0,0,2,3,0,0,0,3,0,2,0,0,0,0,0,3,0,0,0,0,0,0,0,0, -2,0,3,3,3,3,0,0,2,3,0,0,3,0,3,3,2,3,3,3,3,3,0,0,3,3,3,0,0,0,3,3, -0,0,3,0,0,0,0,2,0,0,2,1,1,3,0,0,1,0,0,2,3,0,1,0,0,0,0,0,0,0,1,0, -3,3,3,3,2,3,3,3,3,3,3,3,1,2,1,3,3,2,2,1,2,2,2,3,1,1,2,0,2,1,2,1, -2,2,1,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0, -3,0,2,1,2,3,3,3,0,2,0,2,2,0,2,1,3,2,2,1,2,1,0,0,2,2,1,0,2,1,2,2, -0,1,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,3,3,3,2,1,3,3,1,1,3,0,2,3,1,1,3,2,1,1,2,0,2,2,3,2,1,1,1,1,1,2, -3,0,0,1,3,1,2,1,2,0,3,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0, -3,3,1,1,3,2,3,3,3,1,3,2,1,3,2,1,3,2,2,2,2,1,3,3,1,2,1,3,1,2,3,0, -2,1,1,3,2,2,2,1,2,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2, -3,3,2,3,2,3,3,2,3,2,3,2,3,3,2,1,0,3,2,2,2,1,2,2,2,1,2,2,1,2,1,1, -2,2,2,3,0,1,3,1,1,1,1,0,1,1,0,2,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,3,3,3,2,3,2,2,1,1,3,2,3,2,3,2,0,3,2,2,1,2,0,2,2,2,1,2,2,2,2,1, -3,2,1,2,2,1,0,2,0,1,0,0,1,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,1, -3,3,3,3,3,2,3,1,2,3,3,2,2,3,0,1,1,2,0,3,3,2,2,3,0,1,1,3,0,0,0,0, -3,1,0,3,3,0,2,0,2,1,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,3,3,2,3,2,3,3,0,1,3,1,1,2,1,2,1,1,3,1,1,0,2,3,1,1,1,1,1,1,1,1, -3,1,1,2,2,2,2,1,1,1,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, -3,2,2,1,1,2,1,3,3,2,3,2,2,3,2,2,3,1,2,2,1,2,0,3,2,1,2,2,2,2,2,1, -3,2,1,2,2,2,1,1,1,1,0,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,3,3,3,3,3,3,3,1,3,3,0,2,1,0,3,2,0,0,3,1,0,1,1,0,1,0,0,0,0,0,1, -1,0,0,1,0,3,2,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,0,2,2,2,3,0,0,1,3,0,3,2,0,3,2,2,3,3,3,3,3,1,0,2,2,2,0,2,2,1,2, -0,2,3,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, -3,0,2,3,1,3,3,2,3,3,0,3,3,0,3,2,2,3,2,3,3,3,0,0,2,2,3,0,1,1,1,3, -0,0,3,0,0,0,2,2,0,1,3,0,1,2,2,2,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1, -3,2,3,3,2,0,3,3,2,2,3,1,3,2,1,3,2,0,1,2,2,0,2,3,2,1,0,3,0,0,0,0, -3,0,0,2,3,1,3,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,1,3,2,2,2,1,2,0,1,3,1,1,3,1,3,0,0,2,1,1,1,1,2,1,1,1,0,2,1,0,1, -1,2,0,0,0,3,1,1,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,3,1,0,0,0,1,0, -3,3,3,3,2,2,2,2,2,1,3,1,1,1,2,0,1,1,2,1,2,1,3,2,0,0,3,1,1,1,1,1, -3,1,0,2,3,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,2,3,0,3,3,0,2,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0, -0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,2,3,1,3,0,0,1,2,0,0,2,0,3,3,2,3,3,3,2,3,0,0,2,2,2,0,0,0,2,2, -0,0,1,0,0,0,0,3,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0, -0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,1,2,3,1,3,3,0,0,1,0,3,0,0,0,0,0, -0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,3,1,2,3,1,2,3,1,0,3,0,2,2,1,0,2,1,1,2,0,1,0,0,1,1,1,1,0,1,0,0, -1,0,0,0,0,1,1,0,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,3,3,3,2,1,0,1,1,1,3,1,2,2,2,2,2,2,1,1,1,1,0,3,1,0,1,3,1,1,1,1, -1,1,0,2,0,1,3,1,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1, -3,0,2,2,1,3,3,2,3,3,0,1,1,0,2,2,1,2,1,3,3,1,0,0,3,2,0,0,0,0,2,1, -0,1,0,0,0,0,1,2,0,1,1,3,1,1,2,2,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0, -0,0,3,0,0,1,0,0,0,3,0,0,3,0,3,1,0,1,1,1,3,2,0,0,0,3,0,0,0,0,2,0, -0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0, -3,3,1,3,2,1,3,3,1,2,2,0,1,2,1,0,1,2,0,0,0,0,0,3,0,0,0,3,0,0,0,0, -3,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,0,1,2,0,3,3,3,2,2,0,1,1,0,1,3,0,0,0,2,2,0,0,0,0,3,1,0,1,0,0,0, -0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,0,2,3,1,2,0,0,2,1,0,3,1,0,1,2,0,1,1,1,1,3,0,0,3,1,1,0,2,2,1,1, -0,2,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,0,0,3,1,2,0,0,2,2,0,1,2,0,1,0,1,3,1,2,1,0,0,0,2,0,3,0,0,0,1,0, -0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,0,1,1,2,2,0,0,0,2,0,2,1,0,1,1,0,1,1,1,2,1,0,0,1,1,1,0,2,1,1,1, -0,1,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1, -0,0,0,2,0,1,3,1,1,1,1,0,0,0,0,3,2,0,1,0,0,0,1,2,0,0,0,1,0,0,0,0, -0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,3,3,3,3,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -1,0,2,3,2,2,0,0,0,1,0,0,0,0,2,3,2,1,2,2,3,0,0,0,2,3,1,0,0,0,1,1, -0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0, -3,3,2,2,0,1,0,0,0,0,2,0,2,0,1,0,0,0,1,1,0,0,0,2,1,0,1,0,1,1,0,0, -0,1,0,2,0,0,1,0,3,0,1,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,3,1,0,0,1,0,0,0,0,0,1,1,2,0,0,0,0,1,0,0,1,3,1,0,0,0,0,1,1,0,0, -0,1,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0, -3,3,1,1,1,1,2,3,0,0,2,1,1,1,1,1,0,2,1,1,0,0,0,2,1,0,1,2,1,1,0,1, -2,1,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -1,3,1,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1, -0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,3,2,0,0,0,0,0,0,1,2,1,0,1,1,0,2,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,2,0,0,0,1,3,0,1,0,0,0,2,0,0,0,0,0,0,0,1,2,0,0,0,0,0, -3,3,0,0,1,1,2,0,0,1,2,1,0,1,1,1,0,1,1,0,0,2,1,1,0,1,0,0,1,1,1,0, -0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, -2,2,2,1,0,0,0,0,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0, -2,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -2,3,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -1,1,0,1,2,0,1,2,0,0,1,1,0,2,0,1,0,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0, -1,0,0,1,0,1,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,1,0,0,0,0,0,0,0,1,1,0,1,1,0,2,1,3,0,0,0,0,1,1,0,0,0,0,0,0,0,3, -1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -2,0,1,0,1,0,0,2,0,0,2,0,0,1,1,2,0,0,1,1,0,0,0,1,0,0,0,1,1,0,0,0, -1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0, -1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,1,0,0,0, -2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -2,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,3,0,0,0, -2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0, -1,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,1,1,0,0,2,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -) - -TIS620ThaiModel = { - 'charToOrderMap': TIS620CharToOrderMap, - 'precedenceMatrix': ThaiLangModel, - 'mTypicalPositiveRatio': 0.926386, - 'keepEnglishLetter': False, - 'charsetName': "TIS-620" -} - -# flake8: noqa +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Communicator client code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +# 255: Control characters that usually does not exist in any text +# 254: Carriage/Return +# 253: symbol (punctuation) that does not belong to word +# 252: 0 - 9 + +# The following result for thai was collected from a limited sample (1M). + +# Character Mapping Table: +TIS620CharToOrderMap = ( +255,255,255,255,255,255,255,255,255,255,254,255,255,254,255,255, # 00 +255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255, # 10 +253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253, # 20 +252,252,252,252,252,252,252,252,252,252,253,253,253,253,253,253, # 30 +253,182,106,107,100,183,184,185,101, 94,186,187,108,109,110,111, # 40 +188,189,190, 89, 95,112,113,191,192,193,194,253,253,253,253,253, # 50 +253, 64, 72, 73,114, 74,115,116,102, 81,201,117, 90,103, 78, 82, # 60 + 96,202, 91, 79, 84,104,105, 97, 98, 92,203,253,253,253,253,253, # 70 +209,210,211,212,213, 88,214,215,216,217,218,219,220,118,221,222, +223,224, 99, 85, 83,225,226,227,228,229,230,231,232,233,234,235, +236, 5, 30,237, 24,238, 75, 8, 26, 52, 34, 51,119, 47, 58, 57, + 49, 53, 55, 43, 20, 19, 44, 14, 48, 3, 17, 25, 39, 62, 31, 54, + 45, 9, 16, 2, 61, 15,239, 12, 42, 46, 18, 21, 76, 4, 66, 63, + 22, 10, 1, 36, 23, 13, 40, 27, 32, 35, 86,240,241,242,243,244, + 11, 28, 41, 29, 33,245, 50, 37, 6, 7, 67, 77, 38, 93,246,247, + 68, 56, 59, 65, 69, 60, 70, 80, 71, 87,248,249,250,251,252,253, +) + +# Model Table: +# total sequences: 100% +# first 512 sequences: 92.6386% +# first 1024 sequences:7.3177% +# rest sequences: 1.0230% +# negative sequences: 0.0436% +ThaiLangModel = ( +0,1,3,3,3,3,0,0,3,3,0,3,3,0,3,3,3,3,3,3,3,3,0,0,3,3,3,0,3,3,3,3, +0,3,3,0,0,0,1,3,0,3,3,2,3,3,0,1,2,3,3,3,3,0,2,0,2,0,0,3,2,1,2,2, +3,0,3,3,2,3,0,0,3,3,0,3,3,0,3,3,3,3,3,3,3,3,3,0,3,2,3,0,2,2,2,3, +0,2,3,0,0,0,0,1,0,1,2,3,1,1,3,2,2,0,1,1,0,0,1,0,0,0,0,0,0,0,1,1, +3,3,3,2,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,3,3,2,3,2,3,3,2,2,2, +3,1,2,3,0,3,3,2,2,1,2,3,3,1,2,0,1,3,0,1,0,0,1,0,0,0,0,0,0,0,1,1, +3,3,2,2,3,3,3,3,1,2,3,3,3,3,3,2,2,2,2,3,3,2,2,3,3,2,2,3,2,3,2,2, +3,3,1,2,3,1,2,2,3,3,1,0,2,1,0,0,3,1,2,1,0,0,1,0,0,0,0,0,0,1,0,1, +3,3,3,3,3,3,2,2,3,3,3,3,2,3,2,2,3,3,2,2,3,2,2,2,2,1,1,3,1,2,1,1, +3,2,1,0,2,1,0,1,0,1,1,0,1,1,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0, +3,3,3,2,3,2,3,3,2,2,3,2,3,3,2,3,1,1,2,3,2,2,2,3,2,2,2,2,2,1,2,1, +2,2,1,1,3,3,2,1,0,1,2,2,0,1,3,0,0,0,1,1,0,0,0,0,0,2,3,0,0,2,1,1, +3,3,2,3,3,2,0,0,3,3,0,3,3,0,2,2,3,1,2,2,1,1,1,0,2,2,2,0,2,2,1,1, +0,2,1,0,2,0,0,2,0,1,0,0,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0, +3,3,2,3,3,2,0,0,3,3,0,2,3,0,2,1,2,2,2,2,1,2,0,0,2,2,2,0,2,2,1,1, +0,2,1,0,2,0,0,2,0,1,1,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0, +3,3,2,3,2,3,2,0,2,2,1,3,2,1,3,2,1,2,3,2,2,3,0,2,3,2,2,1,2,2,2,2, +1,2,2,0,0,0,0,2,0,1,2,0,1,1,1,0,1,0,3,1,1,0,0,0,0,0,0,0,0,0,1,0, +3,3,2,3,3,2,3,2,2,2,3,2,2,3,2,2,1,2,3,2,2,3,1,3,2,2,2,3,2,2,2,3, +3,2,1,3,0,1,1,1,0,2,1,1,1,1,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,2,0,0, +1,0,0,3,0,3,3,3,3,3,0,0,3,0,2,2,3,3,3,3,3,0,0,0,1,1,3,0,0,0,0,2, +0,0,1,0,0,0,0,0,0,0,2,3,0,0,0,3,0,2,0,0,0,0,0,3,0,0,0,0,0,0,0,0, +2,0,3,3,3,3,0,0,2,3,0,0,3,0,3,3,2,3,3,3,3,3,0,0,3,3,3,0,0,0,3,3, +0,0,3,0,0,0,0,2,0,0,2,1,1,3,0,0,1,0,0,2,3,0,1,0,0,0,0,0,0,0,1,0, +3,3,3,3,2,3,3,3,3,3,3,3,1,2,1,3,3,2,2,1,2,2,2,3,1,1,2,0,2,1,2,1, +2,2,1,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0, +3,0,2,1,2,3,3,3,0,2,0,2,2,0,2,1,3,2,2,1,2,1,0,0,2,2,1,0,2,1,2,2, +0,1,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,3,2,1,3,3,1,1,3,0,2,3,1,1,3,2,1,1,2,0,2,2,3,2,1,1,1,1,1,2, +3,0,0,1,3,1,2,1,2,0,3,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0, +3,3,1,1,3,2,3,3,3,1,3,2,1,3,2,1,3,2,2,2,2,1,3,3,1,2,1,3,1,2,3,0, +2,1,1,3,2,2,2,1,2,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2, +3,3,2,3,2,3,3,2,3,2,3,2,3,3,2,1,0,3,2,2,2,1,2,2,2,1,2,2,1,2,1,1, +2,2,2,3,0,1,3,1,1,1,1,0,1,1,0,2,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,3,2,3,2,2,1,1,3,2,3,2,3,2,0,3,2,2,1,2,0,2,2,2,1,2,2,2,2,1, +3,2,1,2,2,1,0,2,0,1,0,0,1,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,1, +3,3,3,3,3,2,3,1,2,3,3,2,2,3,0,1,1,2,0,3,3,2,2,3,0,1,1,3,0,0,0,0, +3,1,0,3,3,0,2,0,2,1,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,2,3,2,3,3,0,1,3,1,1,2,1,2,1,1,3,1,1,0,2,3,1,1,1,1,1,1,1,1, +3,1,1,2,2,2,2,1,1,1,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, +3,2,2,1,1,2,1,3,3,2,3,2,2,3,2,2,3,1,2,2,1,2,0,3,2,1,2,2,2,2,2,1, +3,2,1,2,2,2,1,1,1,1,0,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,3,3,3,3,3,1,3,3,0,2,1,0,3,2,0,0,3,1,0,1,1,0,1,0,0,0,0,0,1, +1,0,0,1,0,3,2,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,0,2,2,2,3,0,0,1,3,0,3,2,0,3,2,2,3,3,3,3,3,1,0,2,2,2,0,2,2,1,2, +0,2,3,0,0,0,0,1,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, +3,0,2,3,1,3,3,2,3,3,0,3,3,0,3,2,2,3,2,3,3,3,0,0,2,2,3,0,1,1,1,3, +0,0,3,0,0,0,2,2,0,1,3,0,1,2,2,2,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1, +3,2,3,3,2,0,3,3,2,2,3,1,3,2,1,3,2,0,1,2,2,0,2,3,2,1,0,3,0,0,0,0, +3,0,0,2,3,1,3,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,1,3,2,2,2,1,2,0,1,3,1,1,3,1,3,0,0,2,1,1,1,1,2,1,1,1,0,2,1,0,1, +1,2,0,0,0,3,1,1,0,0,0,0,1,0,1,0,0,1,0,1,0,0,0,0,0,3,1,0,0,0,1,0, +3,3,3,3,2,2,2,2,2,1,3,1,1,1,2,0,1,1,2,1,2,1,3,2,0,0,3,1,1,1,1,1, +3,1,0,2,3,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,2,3,0,3,3,0,2,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0, +0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,2,3,1,3,0,0,1,2,0,0,2,0,3,3,2,3,3,3,2,3,0,0,2,2,2,0,0,0,2,2, +0,0,1,0,0,0,0,3,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0, +0,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,1,2,3,1,3,3,0,0,1,0,3,0,0,0,0,0, +0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,1,2,3,1,2,3,1,0,3,0,2,2,1,0,2,1,1,2,0,1,0,0,1,1,1,1,0,1,0,0, +1,0,0,0,0,1,1,0,3,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,3,3,2,1,0,1,1,1,3,1,2,2,2,2,2,2,1,1,1,1,0,3,1,0,1,3,1,1,1,1, +1,1,0,2,0,1,3,1,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1, +3,0,2,2,1,3,3,2,3,3,0,1,1,0,2,2,1,2,1,3,3,1,0,0,3,2,0,0,0,0,2,1, +0,1,0,0,0,0,1,2,0,1,1,3,1,1,2,2,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0, +0,0,3,0,0,1,0,0,0,3,0,0,3,0,3,1,0,1,1,1,3,2,0,0,0,3,0,0,0,0,2,0, +0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0, +3,3,1,3,2,1,3,3,1,2,2,0,1,2,1,0,1,2,0,0,0,0,0,3,0,0,0,3,0,0,0,0, +3,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,0,1,2,0,3,3,3,2,2,0,1,1,0,1,3,0,0,0,2,2,0,0,0,0,3,1,0,1,0,0,0, +0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,0,2,3,1,2,0,0,2,1,0,3,1,0,1,2,0,1,1,1,1,3,0,0,3,1,1,0,2,2,1,1, +0,2,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,0,0,3,1,2,0,0,2,2,0,1,2,0,1,0,1,3,1,2,1,0,0,0,2,0,3,0,0,0,1,0, +0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,0,1,1,2,2,0,0,0,2,0,2,1,0,1,1,0,1,1,1,2,1,0,0,1,1,1,0,2,1,1,1, +0,1,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1, +0,0,0,2,0,1,3,1,1,1,1,0,0,0,0,3,2,0,1,0,0,0,1,2,0,0,0,1,0,0,0,0, +0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,3,3,3,3,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +1,0,2,3,2,2,0,0,0,1,0,0,0,0,2,3,2,1,2,2,3,0,0,0,2,3,1,0,0,0,1,1, +0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0, +3,3,2,2,0,1,0,0,0,0,2,0,2,0,1,0,0,0,1,1,0,0,0,2,1,0,1,0,1,1,0,0, +0,1,0,2,0,0,1,0,3,0,1,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,1,0,0,1,0,0,0,0,0,1,1,2,0,0,0,0,1,0,0,1,3,1,0,0,0,0,1,1,0,0, +0,1,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0, +3,3,1,1,1,1,2,3,0,0,2,1,1,1,1,1,0,2,1,1,0,0,0,2,1,0,1,2,1,1,0,1, +2,1,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +1,3,1,0,0,0,0,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1, +0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,3,2,0,0,0,0,0,0,1,2,1,0,1,1,0,2,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,2,0,0,0,1,3,0,1,0,0,0,2,0,0,0,0,0,0,0,1,2,0,0,0,0,0, +3,3,0,0,1,1,2,0,0,1,2,1,0,1,1,1,0,1,1,0,0,2,1,1,0,1,0,0,1,1,1,0, +0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,2,2,1,0,0,0,0,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0, +2,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,3,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +1,1,0,1,2,0,1,2,0,0,1,1,0,2,0,1,0,0,1,0,0,0,0,1,0,0,0,2,0,0,0,0, +1,0,0,1,0,1,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,1,0,0,0,0,0,0,0,1,1,0,1,1,0,2,1,3,0,0,0,0,1,1,0,0,0,0,0,0,0,3, +1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,0,1,0,1,0,0,2,0,0,2,0,0,1,1,2,0,0,1,1,0,0,0,1,0,0,0,1,1,0,0,0, +1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0, +1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,1,0,0,0, +2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,3,0,0,0, +2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0, +1,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,1,1,0,0,2,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +) + +TIS620ThaiModel = { + 'charToOrderMap': TIS620CharToOrderMap, + 'precedenceMatrix': ThaiLangModel, + 'mTypicalPositiveRatio': 0.926386, + 'keepEnglishLetter': False, + 'charsetName': "TIS-620" +} + +# flake8: noqa diff --git a/app/src/processing/app/i18n/python/requests/packages/charade/latin1prober.py b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/latin1prober.py similarity index 97% rename from app/src/processing/app/i18n/python/requests/packages/charade/latin1prober.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/charade/latin1prober.py index bebe1bcb0..ad695f57a 100644 --- a/app/src/processing/app/i18n/python/requests/packages/charade/latin1prober.py +++ b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/latin1prober.py @@ -1,139 +1,139 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is Mozilla Universal charset detector code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 2001 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# Shy Shalom - original C code -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from .charsetprober import CharSetProber -from .constants import eNotMe -from .compat import wrap_ord - -FREQ_CAT_NUM = 4 - -UDF = 0 # undefined -OTH = 1 # other -ASC = 2 # ascii capital letter -ASS = 3 # ascii small letter -ACV = 4 # accent capital vowel -ACO = 5 # accent capital other -ASV = 6 # accent small vowel -ASO = 7 # accent small other -CLASS_NUM = 8 # total classes - -Latin1_CharToClass = ( - OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 00 - 07 - OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 08 - 0F - OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 10 - 17 - OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 18 - 1F - OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 20 - 27 - OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 28 - 2F - OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 30 - 37 - OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 38 - 3F - OTH, ASC, ASC, ASC, ASC, ASC, ASC, ASC, # 40 - 47 - ASC, ASC, ASC, ASC, ASC, ASC, ASC, ASC, # 48 - 4F - ASC, ASC, ASC, ASC, ASC, ASC, ASC, ASC, # 50 - 57 - ASC, ASC, ASC, OTH, OTH, OTH, OTH, OTH, # 58 - 5F - OTH, ASS, ASS, ASS, ASS, ASS, ASS, ASS, # 60 - 67 - ASS, ASS, ASS, ASS, ASS, ASS, ASS, ASS, # 68 - 6F - ASS, ASS, ASS, ASS, ASS, ASS, ASS, ASS, # 70 - 77 - ASS, ASS, ASS, OTH, OTH, OTH, OTH, OTH, # 78 - 7F - OTH, UDF, OTH, ASO, OTH, OTH, OTH, OTH, # 80 - 87 - OTH, OTH, ACO, OTH, ACO, UDF, ACO, UDF, # 88 - 8F - UDF, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 90 - 97 - OTH, OTH, ASO, OTH, ASO, UDF, ASO, ACO, # 98 - 9F - OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # A0 - A7 - OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # A8 - AF - OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # B0 - B7 - OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # B8 - BF - ACV, ACV, ACV, ACV, ACV, ACV, ACO, ACO, # C0 - C7 - ACV, ACV, ACV, ACV, ACV, ACV, ACV, ACV, # C8 - CF - ACO, ACO, ACV, ACV, ACV, ACV, ACV, OTH, # D0 - D7 - ACV, ACV, ACV, ACV, ACV, ACO, ACO, ACO, # D8 - DF - ASV, ASV, ASV, ASV, ASV, ASV, ASO, ASO, # E0 - E7 - ASV, ASV, ASV, ASV, ASV, ASV, ASV, ASV, # E8 - EF - ASO, ASO, ASV, ASV, ASV, ASV, ASV, OTH, # F0 - F7 - ASV, ASV, ASV, ASV, ASV, ASO, ASO, ASO, # F8 - FF -) - -# 0 : illegal -# 1 : very unlikely -# 2 : normal -# 3 : very likely -Latin1ClassModel = ( - # UDF OTH ASC ASS ACV ACO ASV ASO - 0, 0, 0, 0, 0, 0, 0, 0, # UDF - 0, 3, 3, 3, 3, 3, 3, 3, # OTH - 0, 3, 3, 3, 3, 3, 3, 3, # ASC - 0, 3, 3, 3, 1, 1, 3, 3, # ASS - 0, 3, 3, 3, 1, 2, 1, 2, # ACV - 0, 3, 3, 3, 3, 3, 3, 3, # ACO - 0, 3, 1, 3, 1, 1, 1, 3, # ASV - 0, 3, 1, 3, 1, 1, 3, 3, # ASO -) - - -class Latin1Prober(CharSetProber): - def __init__(self): - CharSetProber.__init__(self) - self.reset() - - def reset(self): - self._mLastCharClass = OTH - self._mFreqCounter = [0] * FREQ_CAT_NUM - CharSetProber.reset(self) - - def get_charset_name(self): - return "windows-1252" - - def feed(self, aBuf): - aBuf = self.filter_with_english_letters(aBuf) - for c in aBuf: - charClass = Latin1_CharToClass[wrap_ord(c)] - freq = Latin1ClassModel[(self._mLastCharClass * CLASS_NUM) - + charClass] - if freq == 0: - self._mState = eNotMe - break - self._mFreqCounter[freq] += 1 - self._mLastCharClass = charClass - - return self.get_state() - - def get_confidence(self): - if self.get_state() == eNotMe: - return 0.01 - - total = sum(self._mFreqCounter) - if total < 0.01: - confidence = 0.0 - else: - confidence = ((self._mFreqCounter[3] / total) - - (self._mFreqCounter[1] * 20.0 / total)) - if confidence < 0.0: - confidence = 0.0 - # lower the confidence of latin1 so that other more accurate - # detector can take priority. - confidence = confidence * 0.5 - return confidence +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .charsetprober import CharSetProber +from .constants import eNotMe +from .compat import wrap_ord + +FREQ_CAT_NUM = 4 + +UDF = 0 # undefined +OTH = 1 # other +ASC = 2 # ascii capital letter +ASS = 3 # ascii small letter +ACV = 4 # accent capital vowel +ACO = 5 # accent capital other +ASV = 6 # accent small vowel +ASO = 7 # accent small other +CLASS_NUM = 8 # total classes + +Latin1_CharToClass = ( + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 00 - 07 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 08 - 0F + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 10 - 17 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 18 - 1F + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 20 - 27 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 28 - 2F + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 30 - 37 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 38 - 3F + OTH, ASC, ASC, ASC, ASC, ASC, ASC, ASC, # 40 - 47 + ASC, ASC, ASC, ASC, ASC, ASC, ASC, ASC, # 48 - 4F + ASC, ASC, ASC, ASC, ASC, ASC, ASC, ASC, # 50 - 57 + ASC, ASC, ASC, OTH, OTH, OTH, OTH, OTH, # 58 - 5F + OTH, ASS, ASS, ASS, ASS, ASS, ASS, ASS, # 60 - 67 + ASS, ASS, ASS, ASS, ASS, ASS, ASS, ASS, # 68 - 6F + ASS, ASS, ASS, ASS, ASS, ASS, ASS, ASS, # 70 - 77 + ASS, ASS, ASS, OTH, OTH, OTH, OTH, OTH, # 78 - 7F + OTH, UDF, OTH, ASO, OTH, OTH, OTH, OTH, # 80 - 87 + OTH, OTH, ACO, OTH, ACO, UDF, ACO, UDF, # 88 - 8F + UDF, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # 90 - 97 + OTH, OTH, ASO, OTH, ASO, UDF, ASO, ACO, # 98 - 9F + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # A0 - A7 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # A8 - AF + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # B0 - B7 + OTH, OTH, OTH, OTH, OTH, OTH, OTH, OTH, # B8 - BF + ACV, ACV, ACV, ACV, ACV, ACV, ACO, ACO, # C0 - C7 + ACV, ACV, ACV, ACV, ACV, ACV, ACV, ACV, # C8 - CF + ACO, ACO, ACV, ACV, ACV, ACV, ACV, OTH, # D0 - D7 + ACV, ACV, ACV, ACV, ACV, ACO, ACO, ACO, # D8 - DF + ASV, ASV, ASV, ASV, ASV, ASV, ASO, ASO, # E0 - E7 + ASV, ASV, ASV, ASV, ASV, ASV, ASV, ASV, # E8 - EF + ASO, ASO, ASV, ASV, ASV, ASV, ASV, OTH, # F0 - F7 + ASV, ASV, ASV, ASV, ASV, ASO, ASO, ASO, # F8 - FF +) + +# 0 : illegal +# 1 : very unlikely +# 2 : normal +# 3 : very likely +Latin1ClassModel = ( + # UDF OTH ASC ASS ACV ACO ASV ASO + 0, 0, 0, 0, 0, 0, 0, 0, # UDF + 0, 3, 3, 3, 3, 3, 3, 3, # OTH + 0, 3, 3, 3, 3, 3, 3, 3, # ASC + 0, 3, 3, 3, 1, 1, 3, 3, # ASS + 0, 3, 3, 3, 1, 2, 1, 2, # ACV + 0, 3, 3, 3, 3, 3, 3, 3, # ACO + 0, 3, 1, 3, 1, 1, 1, 3, # ASV + 0, 3, 1, 3, 1, 1, 3, 3, # ASO +) + + +class Latin1Prober(CharSetProber): + def __init__(self): + CharSetProber.__init__(self) + self.reset() + + def reset(self): + self._mLastCharClass = OTH + self._mFreqCounter = [0] * FREQ_CAT_NUM + CharSetProber.reset(self) + + def get_charset_name(self): + return "windows-1252" + + def feed(self, aBuf): + aBuf = self.filter_with_english_letters(aBuf) + for c in aBuf: + charClass = Latin1_CharToClass[wrap_ord(c)] + freq = Latin1ClassModel[(self._mLastCharClass * CLASS_NUM) + + charClass] + if freq == 0: + self._mState = eNotMe + break + self._mFreqCounter[freq] += 1 + self._mLastCharClass = charClass + + return self.get_state() + + def get_confidence(self): + if self.get_state() == eNotMe: + return 0.01 + + total = sum(self._mFreqCounter) + if total < 0.01: + confidence = 0.0 + else: + confidence = ((self._mFreqCounter[3] / total) + - (self._mFreqCounter[1] * 20.0 / total)) + if confidence < 0.0: + confidence = 0.0 + # lower the confidence of latin1 so that other more accurate + # detector can take priority. + confidence = confidence * 0.5 + return confidence diff --git a/app/src/processing/app/i18n/python/requests/packages/charade/mbcharsetprober.py b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/mbcharsetprober.py similarity index 97% rename from app/src/processing/app/i18n/python/requests/packages/charade/mbcharsetprober.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/charade/mbcharsetprober.py index 1eee253c0..bb42f2fb5 100644 --- a/app/src/processing/app/i18n/python/requests/packages/charade/mbcharsetprober.py +++ b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/mbcharsetprober.py @@ -1,86 +1,86 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is Mozilla Universal charset detector code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 2001 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# Shy Shalom - original C code -# Proofpoint, Inc. -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -import sys -from . import constants -from .charsetprober import CharSetProber - - -class MultiByteCharSetProber(CharSetProber): - def __init__(self): - CharSetProber.__init__(self) - self._mDistributionAnalyzer = None - self._mCodingSM = None - self._mLastChar = [0, 0] - - def reset(self): - CharSetProber.reset(self) - if self._mCodingSM: - self._mCodingSM.reset() - if self._mDistributionAnalyzer: - self._mDistributionAnalyzer.reset() - self._mLastChar = [0, 0] - - def get_charset_name(self): - pass - - def feed(self, aBuf): - aLen = len(aBuf) - for i in range(0, aLen): - codingState = self._mCodingSM.next_state(aBuf[i]) - if codingState == constants.eError: - if constants._debug: - sys.stderr.write(self.get_charset_name() - + ' prober hit error at byte ' + str(i) - + '\n') - self._mState = constants.eNotMe - break - elif codingState == constants.eItsMe: - self._mState = constants.eFoundIt - break - elif codingState == constants.eStart: - charLen = self._mCodingSM.get_current_charlen() - if i == 0: - self._mLastChar[1] = aBuf[0] - self._mDistributionAnalyzer.feed(self._mLastChar, charLen) - else: - self._mDistributionAnalyzer.feed(aBuf[i - 1:i + 1], - charLen) - - self._mLastChar[0] = aBuf[aLen - 1] - - if self.get_state() == constants.eDetecting: - if (self._mDistributionAnalyzer.got_enough_data() and - (self.get_confidence() > constants.SHORTCUT_THRESHOLD)): - self._mState = constants.eFoundIt - - return self.get_state() - - def get_confidence(self): - return self._mDistributionAnalyzer.get_confidence() +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# Proofpoint, Inc. +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +import sys +from . import constants +from .charsetprober import CharSetProber + + +class MultiByteCharSetProber(CharSetProber): + def __init__(self): + CharSetProber.__init__(self) + self._mDistributionAnalyzer = None + self._mCodingSM = None + self._mLastChar = [0, 0] + + def reset(self): + CharSetProber.reset(self) + if self._mCodingSM: + self._mCodingSM.reset() + if self._mDistributionAnalyzer: + self._mDistributionAnalyzer.reset() + self._mLastChar = [0, 0] + + def get_charset_name(self): + pass + + def feed(self, aBuf): + aLen = len(aBuf) + for i in range(0, aLen): + codingState = self._mCodingSM.next_state(aBuf[i]) + if codingState == constants.eError: + if constants._debug: + sys.stderr.write(self.get_charset_name() + + ' prober hit error at byte ' + str(i) + + '\n') + self._mState = constants.eNotMe + break + elif codingState == constants.eItsMe: + self._mState = constants.eFoundIt + break + elif codingState == constants.eStart: + charLen = self._mCodingSM.get_current_charlen() + if i == 0: + self._mLastChar[1] = aBuf[0] + self._mDistributionAnalyzer.feed(self._mLastChar, charLen) + else: + self._mDistributionAnalyzer.feed(aBuf[i - 1:i + 1], + charLen) + + self._mLastChar[0] = aBuf[aLen - 1] + + if self.get_state() == constants.eDetecting: + if (self._mDistributionAnalyzer.got_enough_data() and + (self.get_confidence() > constants.SHORTCUT_THRESHOLD)): + self._mState = constants.eFoundIt + + return self.get_state() + + def get_confidence(self): + return self._mDistributionAnalyzer.get_confidence() diff --git a/app/src/processing/app/i18n/python/requests/packages/charade/mbcsgroupprober.py b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/mbcsgroupprober.py similarity index 97% rename from app/src/processing/app/i18n/python/requests/packages/charade/mbcsgroupprober.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/charade/mbcsgroupprober.py index ebe93d08d..e349a9b6b 100644 --- a/app/src/processing/app/i18n/python/requests/packages/charade/mbcsgroupprober.py +++ b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/mbcsgroupprober.py @@ -1,52 +1,52 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is Mozilla Universal charset detector code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 2001 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# Shy Shalom - original C code -# Proofpoint, Inc. -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from .charsetgroupprober import CharSetGroupProber -from .utf8prober import UTF8Prober -from .sjisprober import SJISProber -from .eucjpprober import EUCJPProber -from .gb2312prober import GB2312Prober -from .euckrprober import EUCKRProber -from .big5prober import Big5Prober -from .euctwprober import EUCTWProber - - -class MBCSGroupProber(CharSetGroupProber): - def __init__(self): - CharSetGroupProber.__init__(self) - self._mProbers = [ - UTF8Prober(), - SJISProber(), - EUCJPProber(), - GB2312Prober(), - EUCKRProber(), - Big5Prober(), - EUCTWProber() - ] - self.reset() +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# Proofpoint, Inc. +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .charsetgroupprober import CharSetGroupProber +from .utf8prober import UTF8Prober +from .sjisprober import SJISProber +from .eucjpprober import EUCJPProber +from .gb2312prober import GB2312Prober +from .euckrprober import EUCKRProber +from .big5prober import Big5Prober +from .euctwprober import EUCTWProber + + +class MBCSGroupProber(CharSetGroupProber): + def __init__(self): + CharSetGroupProber.__init__(self) + self._mProbers = [ + UTF8Prober(), + SJISProber(), + EUCJPProber(), + GB2312Prober(), + EUCKRProber(), + Big5Prober(), + EUCTWProber() + ] + self.reset() diff --git a/app/src/processing/app/i18n/python/requests/packages/charade/mbcssm.py b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/mbcssm.py similarity index 97% rename from app/src/processing/app/i18n/python/requests/packages/charade/mbcssm.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/charade/mbcssm.py index 3a720c9a9..fc7904a9a 100644 --- a/app/src/processing/app/i18n/python/requests/packages/charade/mbcssm.py +++ b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/mbcssm.py @@ -1,535 +1,535 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is mozilla.org code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from .constants import eStart, eError, eItsMe - -# BIG5 - -BIG5_cls = ( - 1,1,1,1,1,1,1,1, # 00 - 07 #allow 0x00 as legal value - 1,1,1,1,1,1,0,0, # 08 - 0f - 1,1,1,1,1,1,1,1, # 10 - 17 - 1,1,1,0,1,1,1,1, # 18 - 1f - 1,1,1,1,1,1,1,1, # 20 - 27 - 1,1,1,1,1,1,1,1, # 28 - 2f - 1,1,1,1,1,1,1,1, # 30 - 37 - 1,1,1,1,1,1,1,1, # 38 - 3f - 2,2,2,2,2,2,2,2, # 40 - 47 - 2,2,2,2,2,2,2,2, # 48 - 4f - 2,2,2,2,2,2,2,2, # 50 - 57 - 2,2,2,2,2,2,2,2, # 58 - 5f - 2,2,2,2,2,2,2,2, # 60 - 67 - 2,2,2,2,2,2,2,2, # 68 - 6f - 2,2,2,2,2,2,2,2, # 70 - 77 - 2,2,2,2,2,2,2,1, # 78 - 7f - 4,4,4,4,4,4,4,4, # 80 - 87 - 4,4,4,4,4,4,4,4, # 88 - 8f - 4,4,4,4,4,4,4,4, # 90 - 97 - 4,4,4,4,4,4,4,4, # 98 - 9f - 4,3,3,3,3,3,3,3, # a0 - a7 - 3,3,3,3,3,3,3,3, # a8 - af - 3,3,3,3,3,3,3,3, # b0 - b7 - 3,3,3,3,3,3,3,3, # b8 - bf - 3,3,3,3,3,3,3,3, # c0 - c7 - 3,3,3,3,3,3,3,3, # c8 - cf - 3,3,3,3,3,3,3,3, # d0 - d7 - 3,3,3,3,3,3,3,3, # d8 - df - 3,3,3,3,3,3,3,3, # e0 - e7 - 3,3,3,3,3,3,3,3, # e8 - ef - 3,3,3,3,3,3,3,3, # f0 - f7 - 3,3,3,3,3,3,3,0 # f8 - ff -) - -BIG5_st = ( - eError,eStart,eStart, 3,eError,eError,eError,eError,#00-07 - eError,eError,eItsMe,eItsMe,eItsMe,eItsMe,eItsMe,eError,#08-0f - eError,eStart,eStart,eStart,eStart,eStart,eStart,eStart#10-17 -) - -Big5CharLenTable = (0, 1, 1, 2, 0) - -Big5SMModel = {'classTable': BIG5_cls, - 'classFactor': 5, - 'stateTable': BIG5_st, - 'charLenTable': Big5CharLenTable, - 'name': 'Big5'} - -# EUC-JP - -EUCJP_cls = ( - 4,4,4,4,4,4,4,4, # 00 - 07 - 4,4,4,4,4,4,5,5, # 08 - 0f - 4,4,4,4,4,4,4,4, # 10 - 17 - 4,4,4,5,4,4,4,4, # 18 - 1f - 4,4,4,4,4,4,4,4, # 20 - 27 - 4,4,4,4,4,4,4,4, # 28 - 2f - 4,4,4,4,4,4,4,4, # 30 - 37 - 4,4,4,4,4,4,4,4, # 38 - 3f - 4,4,4,4,4,4,4,4, # 40 - 47 - 4,4,4,4,4,4,4,4, # 48 - 4f - 4,4,4,4,4,4,4,4, # 50 - 57 - 4,4,4,4,4,4,4,4, # 58 - 5f - 4,4,4,4,4,4,4,4, # 60 - 67 - 4,4,4,4,4,4,4,4, # 68 - 6f - 4,4,4,4,4,4,4,4, # 70 - 77 - 4,4,4,4,4,4,4,4, # 78 - 7f - 5,5,5,5,5,5,5,5, # 80 - 87 - 5,5,5,5,5,5,1,3, # 88 - 8f - 5,5,5,5,5,5,5,5, # 90 - 97 - 5,5,5,5,5,5,5,5, # 98 - 9f - 5,2,2,2,2,2,2,2, # a0 - a7 - 2,2,2,2,2,2,2,2, # a8 - af - 2,2,2,2,2,2,2,2, # b0 - b7 - 2,2,2,2,2,2,2,2, # b8 - bf - 2,2,2,2,2,2,2,2, # c0 - c7 - 2,2,2,2,2,2,2,2, # c8 - cf - 2,2,2,2,2,2,2,2, # d0 - d7 - 2,2,2,2,2,2,2,2, # d8 - df - 0,0,0,0,0,0,0,0, # e0 - e7 - 0,0,0,0,0,0,0,0, # e8 - ef - 0,0,0,0,0,0,0,0, # f0 - f7 - 0,0,0,0,0,0,0,5 # f8 - ff -) - -EUCJP_st = ( - 3, 4, 3, 5,eStart,eError,eError,eError,#00-07 - eError,eError,eError,eError,eItsMe,eItsMe,eItsMe,eItsMe,#08-0f - eItsMe,eItsMe,eStart,eError,eStart,eError,eError,eError,#10-17 - eError,eError,eStart,eError,eError,eError, 3,eError,#18-1f - 3,eError,eError,eError,eStart,eStart,eStart,eStart#20-27 -) - -EUCJPCharLenTable = (2, 2, 2, 3, 1, 0) - -EUCJPSMModel = {'classTable': EUCJP_cls, - 'classFactor': 6, - 'stateTable': EUCJP_st, - 'charLenTable': EUCJPCharLenTable, - 'name': 'EUC-JP'} - -# EUC-KR - -EUCKR_cls = ( - 1,1,1,1,1,1,1,1, # 00 - 07 - 1,1,1,1,1,1,0,0, # 08 - 0f - 1,1,1,1,1,1,1,1, # 10 - 17 - 1,1,1,0,1,1,1,1, # 18 - 1f - 1,1,1,1,1,1,1,1, # 20 - 27 - 1,1,1,1,1,1,1,1, # 28 - 2f - 1,1,1,1,1,1,1,1, # 30 - 37 - 1,1,1,1,1,1,1,1, # 38 - 3f - 1,1,1,1,1,1,1,1, # 40 - 47 - 1,1,1,1,1,1,1,1, # 48 - 4f - 1,1,1,1,1,1,1,1, # 50 - 57 - 1,1,1,1,1,1,1,1, # 58 - 5f - 1,1,1,1,1,1,1,1, # 60 - 67 - 1,1,1,1,1,1,1,1, # 68 - 6f - 1,1,1,1,1,1,1,1, # 70 - 77 - 1,1,1,1,1,1,1,1, # 78 - 7f - 0,0,0,0,0,0,0,0, # 80 - 87 - 0,0,0,0,0,0,0,0, # 88 - 8f - 0,0,0,0,0,0,0,0, # 90 - 97 - 0,0,0,0,0,0,0,0, # 98 - 9f - 0,2,2,2,2,2,2,2, # a0 - a7 - 2,2,2,2,2,3,3,3, # a8 - af - 2,2,2,2,2,2,2,2, # b0 - b7 - 2,2,2,2,2,2,2,2, # b8 - bf - 2,2,2,2,2,2,2,2, # c0 - c7 - 2,3,2,2,2,2,2,2, # c8 - cf - 2,2,2,2,2,2,2,2, # d0 - d7 - 2,2,2,2,2,2,2,2, # d8 - df - 2,2,2,2,2,2,2,2, # e0 - e7 - 2,2,2,2,2,2,2,2, # e8 - ef - 2,2,2,2,2,2,2,2, # f0 - f7 - 2,2,2,2,2,2,2,0 # f8 - ff -) - -EUCKR_st = ( - eError,eStart, 3,eError,eError,eError,eError,eError,#00-07 - eItsMe,eItsMe,eItsMe,eItsMe,eError,eError,eStart,eStart #08-0f -) - -EUCKRCharLenTable = (0, 1, 2, 0) - -EUCKRSMModel = {'classTable': EUCKR_cls, - 'classFactor': 4, - 'stateTable': EUCKR_st, - 'charLenTable': EUCKRCharLenTable, - 'name': 'EUC-KR'} - -# EUC-TW - -EUCTW_cls = ( - 2,2,2,2,2,2,2,2, # 00 - 07 - 2,2,2,2,2,2,0,0, # 08 - 0f - 2,2,2,2,2,2,2,2, # 10 - 17 - 2,2,2,0,2,2,2,2, # 18 - 1f - 2,2,2,2,2,2,2,2, # 20 - 27 - 2,2,2,2,2,2,2,2, # 28 - 2f - 2,2,2,2,2,2,2,2, # 30 - 37 - 2,2,2,2,2,2,2,2, # 38 - 3f - 2,2,2,2,2,2,2,2, # 40 - 47 - 2,2,2,2,2,2,2,2, # 48 - 4f - 2,2,2,2,2,2,2,2, # 50 - 57 - 2,2,2,2,2,2,2,2, # 58 - 5f - 2,2,2,2,2,2,2,2, # 60 - 67 - 2,2,2,2,2,2,2,2, # 68 - 6f - 2,2,2,2,2,2,2,2, # 70 - 77 - 2,2,2,2,2,2,2,2, # 78 - 7f - 0,0,0,0,0,0,0,0, # 80 - 87 - 0,0,0,0,0,0,6,0, # 88 - 8f - 0,0,0,0,0,0,0,0, # 90 - 97 - 0,0,0,0,0,0,0,0, # 98 - 9f - 0,3,4,4,4,4,4,4, # a0 - a7 - 5,5,1,1,1,1,1,1, # a8 - af - 1,1,1,1,1,1,1,1, # b0 - b7 - 1,1,1,1,1,1,1,1, # b8 - bf - 1,1,3,1,3,3,3,3, # c0 - c7 - 3,3,3,3,3,3,3,3, # c8 - cf - 3,3,3,3,3,3,3,3, # d0 - d7 - 3,3,3,3,3,3,3,3, # d8 - df - 3,3,3,3,3,3,3,3, # e0 - e7 - 3,3,3,3,3,3,3,3, # e8 - ef - 3,3,3,3,3,3,3,3, # f0 - f7 - 3,3,3,3,3,3,3,0 # f8 - ff -) - -EUCTW_st = ( - eError,eError,eStart, 3, 3, 3, 4,eError,#00-07 - eError,eError,eError,eError,eError,eError,eItsMe,eItsMe,#08-0f - eItsMe,eItsMe,eItsMe,eItsMe,eItsMe,eError,eStart,eError,#10-17 - eStart,eStart,eStart,eError,eError,eError,eError,eError,#18-1f - 5,eError,eError,eError,eStart,eError,eStart,eStart,#20-27 - eStart,eError,eStart,eStart,eStart,eStart,eStart,eStart #28-2f -) - -EUCTWCharLenTable = (0, 0, 1, 2, 2, 2, 3) - -EUCTWSMModel = {'classTable': EUCTW_cls, - 'classFactor': 7, - 'stateTable': EUCTW_st, - 'charLenTable': EUCTWCharLenTable, - 'name': 'x-euc-tw'} - -# GB2312 - -GB2312_cls = ( - 1,1,1,1,1,1,1,1, # 00 - 07 - 1,1,1,1,1,1,0,0, # 08 - 0f - 1,1,1,1,1,1,1,1, # 10 - 17 - 1,1,1,0,1,1,1,1, # 18 - 1f - 1,1,1,1,1,1,1,1, # 20 - 27 - 1,1,1,1,1,1,1,1, # 28 - 2f - 3,3,3,3,3,3,3,3, # 30 - 37 - 3,3,1,1,1,1,1,1, # 38 - 3f - 2,2,2,2,2,2,2,2, # 40 - 47 - 2,2,2,2,2,2,2,2, # 48 - 4f - 2,2,2,2,2,2,2,2, # 50 - 57 - 2,2,2,2,2,2,2,2, # 58 - 5f - 2,2,2,2,2,2,2,2, # 60 - 67 - 2,2,2,2,2,2,2,2, # 68 - 6f - 2,2,2,2,2,2,2,2, # 70 - 77 - 2,2,2,2,2,2,2,4, # 78 - 7f - 5,6,6,6,6,6,6,6, # 80 - 87 - 6,6,6,6,6,6,6,6, # 88 - 8f - 6,6,6,6,6,6,6,6, # 90 - 97 - 6,6,6,6,6,6,6,6, # 98 - 9f - 6,6,6,6,6,6,6,6, # a0 - a7 - 6,6,6,6,6,6,6,6, # a8 - af - 6,6,6,6,6,6,6,6, # b0 - b7 - 6,6,6,6,6,6,6,6, # b8 - bf - 6,6,6,6,6,6,6,6, # c0 - c7 - 6,6,6,6,6,6,6,6, # c8 - cf - 6,6,6,6,6,6,6,6, # d0 - d7 - 6,6,6,6,6,6,6,6, # d8 - df - 6,6,6,6,6,6,6,6, # e0 - e7 - 6,6,6,6,6,6,6,6, # e8 - ef - 6,6,6,6,6,6,6,6, # f0 - f7 - 6,6,6,6,6,6,6,0 # f8 - ff -) - -GB2312_st = ( - eError,eStart,eStart,eStart,eStart,eStart, 3,eError,#00-07 - eError,eError,eError,eError,eError,eError,eItsMe,eItsMe,#08-0f - eItsMe,eItsMe,eItsMe,eItsMe,eItsMe,eError,eError,eStart,#10-17 - 4,eError,eStart,eStart,eError,eError,eError,eError,#18-1f - eError,eError, 5,eError,eError,eError,eItsMe,eError,#20-27 - eError,eError,eStart,eStart,eStart,eStart,eStart,eStart #28-2f -) - -# To be accurate, the length of class 6 can be either 2 or 4. -# But it is not necessary to discriminate between the two since -# it is used for frequency analysis only, and we are validing -# each code range there as well. So it is safe to set it to be -# 2 here. -GB2312CharLenTable = (0, 1, 1, 1, 1, 1, 2) - -GB2312SMModel = {'classTable': GB2312_cls, - 'classFactor': 7, - 'stateTable': GB2312_st, - 'charLenTable': GB2312CharLenTable, - 'name': 'GB2312'} - -# Shift_JIS - -SJIS_cls = ( - 1,1,1,1,1,1,1,1, # 00 - 07 - 1,1,1,1,1,1,0,0, # 08 - 0f - 1,1,1,1,1,1,1,1, # 10 - 17 - 1,1,1,0,1,1,1,1, # 18 - 1f - 1,1,1,1,1,1,1,1, # 20 - 27 - 1,1,1,1,1,1,1,1, # 28 - 2f - 1,1,1,1,1,1,1,1, # 30 - 37 - 1,1,1,1,1,1,1,1, # 38 - 3f - 2,2,2,2,2,2,2,2, # 40 - 47 - 2,2,2,2,2,2,2,2, # 48 - 4f - 2,2,2,2,2,2,2,2, # 50 - 57 - 2,2,2,2,2,2,2,2, # 58 - 5f - 2,2,2,2,2,2,2,2, # 60 - 67 - 2,2,2,2,2,2,2,2, # 68 - 6f - 2,2,2,2,2,2,2,2, # 70 - 77 - 2,2,2,2,2,2,2,1, # 78 - 7f - 3,3,3,3,3,3,3,3, # 80 - 87 - 3,3,3,3,3,3,3,3, # 88 - 8f - 3,3,3,3,3,3,3,3, # 90 - 97 - 3,3,3,3,3,3,3,3, # 98 - 9f - #0xa0 is illegal in sjis encoding, but some pages does - #contain such byte. We need to be more error forgiven. - 2,2,2,2,2,2,2,2, # a0 - a7 - 2,2,2,2,2,2,2,2, # a8 - af - 2,2,2,2,2,2,2,2, # b0 - b7 - 2,2,2,2,2,2,2,2, # b8 - bf - 2,2,2,2,2,2,2,2, # c0 - c7 - 2,2,2,2,2,2,2,2, # c8 - cf - 2,2,2,2,2,2,2,2, # d0 - d7 - 2,2,2,2,2,2,2,2, # d8 - df - 3,3,3,3,3,3,3,3, # e0 - e7 - 3,3,3,3,3,4,4,4, # e8 - ef - 4,4,4,4,4,4,4,4, # f0 - f7 - 4,4,4,4,4,0,0,0 # f8 - ff -) - - -SJIS_st = ( - eError,eStart,eStart, 3,eError,eError,eError,eError,#00-07 - eError,eError,eError,eError,eItsMe,eItsMe,eItsMe,eItsMe,#08-0f - eItsMe,eItsMe,eError,eError,eStart,eStart,eStart,eStart #10-17 -) - -SJISCharLenTable = (0, 1, 1, 2, 0, 0) - -SJISSMModel = {'classTable': SJIS_cls, - 'classFactor': 6, - 'stateTable': SJIS_st, - 'charLenTable': SJISCharLenTable, - 'name': 'Shift_JIS'} - -# UCS2-BE - -UCS2BE_cls = ( - 0,0,0,0,0,0,0,0, # 00 - 07 - 0,0,1,0,0,2,0,0, # 08 - 0f - 0,0,0,0,0,0,0,0, # 10 - 17 - 0,0,0,3,0,0,0,0, # 18 - 1f - 0,0,0,0,0,0,0,0, # 20 - 27 - 0,3,3,3,3,3,0,0, # 28 - 2f - 0,0,0,0,0,0,0,0, # 30 - 37 - 0,0,0,0,0,0,0,0, # 38 - 3f - 0,0,0,0,0,0,0,0, # 40 - 47 - 0,0,0,0,0,0,0,0, # 48 - 4f - 0,0,0,0,0,0,0,0, # 50 - 57 - 0,0,0,0,0,0,0,0, # 58 - 5f - 0,0,0,0,0,0,0,0, # 60 - 67 - 0,0,0,0,0,0,0,0, # 68 - 6f - 0,0,0,0,0,0,0,0, # 70 - 77 - 0,0,0,0,0,0,0,0, # 78 - 7f - 0,0,0,0,0,0,0,0, # 80 - 87 - 0,0,0,0,0,0,0,0, # 88 - 8f - 0,0,0,0,0,0,0,0, # 90 - 97 - 0,0,0,0,0,0,0,0, # 98 - 9f - 0,0,0,0,0,0,0,0, # a0 - a7 - 0,0,0,0,0,0,0,0, # a8 - af - 0,0,0,0,0,0,0,0, # b0 - b7 - 0,0,0,0,0,0,0,0, # b8 - bf - 0,0,0,0,0,0,0,0, # c0 - c7 - 0,0,0,0,0,0,0,0, # c8 - cf - 0,0,0,0,0,0,0,0, # d0 - d7 - 0,0,0,0,0,0,0,0, # d8 - df - 0,0,0,0,0,0,0,0, # e0 - e7 - 0,0,0,0,0,0,0,0, # e8 - ef - 0,0,0,0,0,0,0,0, # f0 - f7 - 0,0,0,0,0,0,4,5 # f8 - ff -) - -UCS2BE_st = ( - 5, 7, 7,eError, 4, 3,eError,eError,#00-07 - eError,eError,eError,eError,eItsMe,eItsMe,eItsMe,eItsMe,#08-0f - eItsMe,eItsMe, 6, 6, 6, 6,eError,eError,#10-17 - 6, 6, 6, 6, 6,eItsMe, 6, 6,#18-1f - 6, 6, 6, 6, 5, 7, 7,eError,#20-27 - 5, 8, 6, 6,eError, 6, 6, 6,#28-2f - 6, 6, 6, 6,eError,eError,eStart,eStart #30-37 -) - -UCS2BECharLenTable = (2, 2, 2, 0, 2, 2) - -UCS2BESMModel = {'classTable': UCS2BE_cls, - 'classFactor': 6, - 'stateTable': UCS2BE_st, - 'charLenTable': UCS2BECharLenTable, - 'name': 'UTF-16BE'} - -# UCS2-LE - -UCS2LE_cls = ( - 0,0,0,0,0,0,0,0, # 00 - 07 - 0,0,1,0,0,2,0,0, # 08 - 0f - 0,0,0,0,0,0,0,0, # 10 - 17 - 0,0,0,3,0,0,0,0, # 18 - 1f - 0,0,0,0,0,0,0,0, # 20 - 27 - 0,3,3,3,3,3,0,0, # 28 - 2f - 0,0,0,0,0,0,0,0, # 30 - 37 - 0,0,0,0,0,0,0,0, # 38 - 3f - 0,0,0,0,0,0,0,0, # 40 - 47 - 0,0,0,0,0,0,0,0, # 48 - 4f - 0,0,0,0,0,0,0,0, # 50 - 57 - 0,0,0,0,0,0,0,0, # 58 - 5f - 0,0,0,0,0,0,0,0, # 60 - 67 - 0,0,0,0,0,0,0,0, # 68 - 6f - 0,0,0,0,0,0,0,0, # 70 - 77 - 0,0,0,0,0,0,0,0, # 78 - 7f - 0,0,0,0,0,0,0,0, # 80 - 87 - 0,0,0,0,0,0,0,0, # 88 - 8f - 0,0,0,0,0,0,0,0, # 90 - 97 - 0,0,0,0,0,0,0,0, # 98 - 9f - 0,0,0,0,0,0,0,0, # a0 - a7 - 0,0,0,0,0,0,0,0, # a8 - af - 0,0,0,0,0,0,0,0, # b0 - b7 - 0,0,0,0,0,0,0,0, # b8 - bf - 0,0,0,0,0,0,0,0, # c0 - c7 - 0,0,0,0,0,0,0,0, # c8 - cf - 0,0,0,0,0,0,0,0, # d0 - d7 - 0,0,0,0,0,0,0,0, # d8 - df - 0,0,0,0,0,0,0,0, # e0 - e7 - 0,0,0,0,0,0,0,0, # e8 - ef - 0,0,0,0,0,0,0,0, # f0 - f7 - 0,0,0,0,0,0,4,5 # f8 - ff -) - -UCS2LE_st = ( - 6, 6, 7, 6, 4, 3,eError,eError,#00-07 - eError,eError,eError,eError,eItsMe,eItsMe,eItsMe,eItsMe,#08-0f - eItsMe,eItsMe, 5, 5, 5,eError,eItsMe,eError,#10-17 - 5, 5, 5,eError, 5,eError, 6, 6,#18-1f - 7, 6, 8, 8, 5, 5, 5,eError,#20-27 - 5, 5, 5,eError,eError,eError, 5, 5,#28-2f - 5, 5, 5,eError, 5,eError,eStart,eStart #30-37 -) - -UCS2LECharLenTable = (2, 2, 2, 2, 2, 2) - -UCS2LESMModel = {'classTable': UCS2LE_cls, - 'classFactor': 6, - 'stateTable': UCS2LE_st, - 'charLenTable': UCS2LECharLenTable, - 'name': 'UTF-16LE'} - -# UTF-8 - -UTF8_cls = ( - 1,1,1,1,1,1,1,1, # 00 - 07 #allow 0x00 as a legal value - 1,1,1,1,1,1,0,0, # 08 - 0f - 1,1,1,1,1,1,1,1, # 10 - 17 - 1,1,1,0,1,1,1,1, # 18 - 1f - 1,1,1,1,1,1,1,1, # 20 - 27 - 1,1,1,1,1,1,1,1, # 28 - 2f - 1,1,1,1,1,1,1,1, # 30 - 37 - 1,1,1,1,1,1,1,1, # 38 - 3f - 1,1,1,1,1,1,1,1, # 40 - 47 - 1,1,1,1,1,1,1,1, # 48 - 4f - 1,1,1,1,1,1,1,1, # 50 - 57 - 1,1,1,1,1,1,1,1, # 58 - 5f - 1,1,1,1,1,1,1,1, # 60 - 67 - 1,1,1,1,1,1,1,1, # 68 - 6f - 1,1,1,1,1,1,1,1, # 70 - 77 - 1,1,1,1,1,1,1,1, # 78 - 7f - 2,2,2,2,3,3,3,3, # 80 - 87 - 4,4,4,4,4,4,4,4, # 88 - 8f - 4,4,4,4,4,4,4,4, # 90 - 97 - 4,4,4,4,4,4,4,4, # 98 - 9f - 5,5,5,5,5,5,5,5, # a0 - a7 - 5,5,5,5,5,5,5,5, # a8 - af - 5,5,5,5,5,5,5,5, # b0 - b7 - 5,5,5,5,5,5,5,5, # b8 - bf - 0,0,6,6,6,6,6,6, # c0 - c7 - 6,6,6,6,6,6,6,6, # c8 - cf - 6,6,6,6,6,6,6,6, # d0 - d7 - 6,6,6,6,6,6,6,6, # d8 - df - 7,8,8,8,8,8,8,8, # e0 - e7 - 8,8,8,8,8,9,8,8, # e8 - ef - 10,11,11,11,11,11,11,11, # f0 - f7 - 12,13,13,13,14,15,0,0 # f8 - ff -) - -UTF8_st = ( - eError,eStart,eError,eError,eError,eError, 12, 10,#00-07 - 9, 11, 8, 7, 6, 5, 4, 3,#08-0f - eError,eError,eError,eError,eError,eError,eError,eError,#10-17 - eError,eError,eError,eError,eError,eError,eError,eError,#18-1f - eItsMe,eItsMe,eItsMe,eItsMe,eItsMe,eItsMe,eItsMe,eItsMe,#20-27 - eItsMe,eItsMe,eItsMe,eItsMe,eItsMe,eItsMe,eItsMe,eItsMe,#28-2f - eError,eError, 5, 5, 5, 5,eError,eError,#30-37 - eError,eError,eError,eError,eError,eError,eError,eError,#38-3f - eError,eError,eError, 5, 5, 5,eError,eError,#40-47 - eError,eError,eError,eError,eError,eError,eError,eError,#48-4f - eError,eError, 7, 7, 7, 7,eError,eError,#50-57 - eError,eError,eError,eError,eError,eError,eError,eError,#58-5f - eError,eError,eError,eError, 7, 7,eError,eError,#60-67 - eError,eError,eError,eError,eError,eError,eError,eError,#68-6f - eError,eError, 9, 9, 9, 9,eError,eError,#70-77 - eError,eError,eError,eError,eError,eError,eError,eError,#78-7f - eError,eError,eError,eError,eError, 9,eError,eError,#80-87 - eError,eError,eError,eError,eError,eError,eError,eError,#88-8f - eError,eError, 12, 12, 12, 12,eError,eError,#90-97 - eError,eError,eError,eError,eError,eError,eError,eError,#98-9f - eError,eError,eError,eError,eError, 12,eError,eError,#a0-a7 - eError,eError,eError,eError,eError,eError,eError,eError,#a8-af - eError,eError, 12, 12, 12,eError,eError,eError,#b0-b7 - eError,eError,eError,eError,eError,eError,eError,eError,#b8-bf - eError,eError,eStart,eStart,eStart,eStart,eError,eError,#c0-c7 - eError,eError,eError,eError,eError,eError,eError,eError #c8-cf -) - -UTF8CharLenTable = (0, 1, 0, 0, 0, 0, 2, 3, 3, 3, 4, 4, 5, 5, 6, 6) - -UTF8SMModel = {'classTable': UTF8_cls, - 'classFactor': 16, - 'stateTable': UTF8_st, - 'charLenTable': UTF8CharLenTable, - 'name': 'UTF-8'} - -# flake8: noqa +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .constants import eStart, eError, eItsMe + +# BIG5 + +BIG5_cls = ( + 1,1,1,1,1,1,1,1, # 00 - 07 #allow 0x00 as legal value + 1,1,1,1,1,1,0,0, # 08 - 0f + 1,1,1,1,1,1,1,1, # 10 - 17 + 1,1,1,0,1,1,1,1, # 18 - 1f + 1,1,1,1,1,1,1,1, # 20 - 27 + 1,1,1,1,1,1,1,1, # 28 - 2f + 1,1,1,1,1,1,1,1, # 30 - 37 + 1,1,1,1,1,1,1,1, # 38 - 3f + 2,2,2,2,2,2,2,2, # 40 - 47 + 2,2,2,2,2,2,2,2, # 48 - 4f + 2,2,2,2,2,2,2,2, # 50 - 57 + 2,2,2,2,2,2,2,2, # 58 - 5f + 2,2,2,2,2,2,2,2, # 60 - 67 + 2,2,2,2,2,2,2,2, # 68 - 6f + 2,2,2,2,2,2,2,2, # 70 - 77 + 2,2,2,2,2,2,2,1, # 78 - 7f + 4,4,4,4,4,4,4,4, # 80 - 87 + 4,4,4,4,4,4,4,4, # 88 - 8f + 4,4,4,4,4,4,4,4, # 90 - 97 + 4,4,4,4,4,4,4,4, # 98 - 9f + 4,3,3,3,3,3,3,3, # a0 - a7 + 3,3,3,3,3,3,3,3, # a8 - af + 3,3,3,3,3,3,3,3, # b0 - b7 + 3,3,3,3,3,3,3,3, # b8 - bf + 3,3,3,3,3,3,3,3, # c0 - c7 + 3,3,3,3,3,3,3,3, # c8 - cf + 3,3,3,3,3,3,3,3, # d0 - d7 + 3,3,3,3,3,3,3,3, # d8 - df + 3,3,3,3,3,3,3,3, # e0 - e7 + 3,3,3,3,3,3,3,3, # e8 - ef + 3,3,3,3,3,3,3,3, # f0 - f7 + 3,3,3,3,3,3,3,0 # f8 - ff +) + +BIG5_st = ( + eError,eStart,eStart, 3,eError,eError,eError,eError,#00-07 + eError,eError,eItsMe,eItsMe,eItsMe,eItsMe,eItsMe,eError,#08-0f + eError,eStart,eStart,eStart,eStart,eStart,eStart,eStart#10-17 +) + +Big5CharLenTable = (0, 1, 1, 2, 0) + +Big5SMModel = {'classTable': BIG5_cls, + 'classFactor': 5, + 'stateTable': BIG5_st, + 'charLenTable': Big5CharLenTable, + 'name': 'Big5'} + +# EUC-JP + +EUCJP_cls = ( + 4,4,4,4,4,4,4,4, # 00 - 07 + 4,4,4,4,4,4,5,5, # 08 - 0f + 4,4,4,4,4,4,4,4, # 10 - 17 + 4,4,4,5,4,4,4,4, # 18 - 1f + 4,4,4,4,4,4,4,4, # 20 - 27 + 4,4,4,4,4,4,4,4, # 28 - 2f + 4,4,4,4,4,4,4,4, # 30 - 37 + 4,4,4,4,4,4,4,4, # 38 - 3f + 4,4,4,4,4,4,4,4, # 40 - 47 + 4,4,4,4,4,4,4,4, # 48 - 4f + 4,4,4,4,4,4,4,4, # 50 - 57 + 4,4,4,4,4,4,4,4, # 58 - 5f + 4,4,4,4,4,4,4,4, # 60 - 67 + 4,4,4,4,4,4,4,4, # 68 - 6f + 4,4,4,4,4,4,4,4, # 70 - 77 + 4,4,4,4,4,4,4,4, # 78 - 7f + 5,5,5,5,5,5,5,5, # 80 - 87 + 5,5,5,5,5,5,1,3, # 88 - 8f + 5,5,5,5,5,5,5,5, # 90 - 97 + 5,5,5,5,5,5,5,5, # 98 - 9f + 5,2,2,2,2,2,2,2, # a0 - a7 + 2,2,2,2,2,2,2,2, # a8 - af + 2,2,2,2,2,2,2,2, # b0 - b7 + 2,2,2,2,2,2,2,2, # b8 - bf + 2,2,2,2,2,2,2,2, # c0 - c7 + 2,2,2,2,2,2,2,2, # c8 - cf + 2,2,2,2,2,2,2,2, # d0 - d7 + 2,2,2,2,2,2,2,2, # d8 - df + 0,0,0,0,0,0,0,0, # e0 - e7 + 0,0,0,0,0,0,0,0, # e8 - ef + 0,0,0,0,0,0,0,0, # f0 - f7 + 0,0,0,0,0,0,0,5 # f8 - ff +) + +EUCJP_st = ( + 3, 4, 3, 5,eStart,eError,eError,eError,#00-07 + eError,eError,eError,eError,eItsMe,eItsMe,eItsMe,eItsMe,#08-0f + eItsMe,eItsMe,eStart,eError,eStart,eError,eError,eError,#10-17 + eError,eError,eStart,eError,eError,eError, 3,eError,#18-1f + 3,eError,eError,eError,eStart,eStart,eStart,eStart#20-27 +) + +EUCJPCharLenTable = (2, 2, 2, 3, 1, 0) + +EUCJPSMModel = {'classTable': EUCJP_cls, + 'classFactor': 6, + 'stateTable': EUCJP_st, + 'charLenTable': EUCJPCharLenTable, + 'name': 'EUC-JP'} + +# EUC-KR + +EUCKR_cls = ( + 1,1,1,1,1,1,1,1, # 00 - 07 + 1,1,1,1,1,1,0,0, # 08 - 0f + 1,1,1,1,1,1,1,1, # 10 - 17 + 1,1,1,0,1,1,1,1, # 18 - 1f + 1,1,1,1,1,1,1,1, # 20 - 27 + 1,1,1,1,1,1,1,1, # 28 - 2f + 1,1,1,1,1,1,1,1, # 30 - 37 + 1,1,1,1,1,1,1,1, # 38 - 3f + 1,1,1,1,1,1,1,1, # 40 - 47 + 1,1,1,1,1,1,1,1, # 48 - 4f + 1,1,1,1,1,1,1,1, # 50 - 57 + 1,1,1,1,1,1,1,1, # 58 - 5f + 1,1,1,1,1,1,1,1, # 60 - 67 + 1,1,1,1,1,1,1,1, # 68 - 6f + 1,1,1,1,1,1,1,1, # 70 - 77 + 1,1,1,1,1,1,1,1, # 78 - 7f + 0,0,0,0,0,0,0,0, # 80 - 87 + 0,0,0,0,0,0,0,0, # 88 - 8f + 0,0,0,0,0,0,0,0, # 90 - 97 + 0,0,0,0,0,0,0,0, # 98 - 9f + 0,2,2,2,2,2,2,2, # a0 - a7 + 2,2,2,2,2,3,3,3, # a8 - af + 2,2,2,2,2,2,2,2, # b0 - b7 + 2,2,2,2,2,2,2,2, # b8 - bf + 2,2,2,2,2,2,2,2, # c0 - c7 + 2,3,2,2,2,2,2,2, # c8 - cf + 2,2,2,2,2,2,2,2, # d0 - d7 + 2,2,2,2,2,2,2,2, # d8 - df + 2,2,2,2,2,2,2,2, # e0 - e7 + 2,2,2,2,2,2,2,2, # e8 - ef + 2,2,2,2,2,2,2,2, # f0 - f7 + 2,2,2,2,2,2,2,0 # f8 - ff +) + +EUCKR_st = ( + eError,eStart, 3,eError,eError,eError,eError,eError,#00-07 + eItsMe,eItsMe,eItsMe,eItsMe,eError,eError,eStart,eStart #08-0f +) + +EUCKRCharLenTable = (0, 1, 2, 0) + +EUCKRSMModel = {'classTable': EUCKR_cls, + 'classFactor': 4, + 'stateTable': EUCKR_st, + 'charLenTable': EUCKRCharLenTable, + 'name': 'EUC-KR'} + +# EUC-TW + +EUCTW_cls = ( + 2,2,2,2,2,2,2,2, # 00 - 07 + 2,2,2,2,2,2,0,0, # 08 - 0f + 2,2,2,2,2,2,2,2, # 10 - 17 + 2,2,2,0,2,2,2,2, # 18 - 1f + 2,2,2,2,2,2,2,2, # 20 - 27 + 2,2,2,2,2,2,2,2, # 28 - 2f + 2,2,2,2,2,2,2,2, # 30 - 37 + 2,2,2,2,2,2,2,2, # 38 - 3f + 2,2,2,2,2,2,2,2, # 40 - 47 + 2,2,2,2,2,2,2,2, # 48 - 4f + 2,2,2,2,2,2,2,2, # 50 - 57 + 2,2,2,2,2,2,2,2, # 58 - 5f + 2,2,2,2,2,2,2,2, # 60 - 67 + 2,2,2,2,2,2,2,2, # 68 - 6f + 2,2,2,2,2,2,2,2, # 70 - 77 + 2,2,2,2,2,2,2,2, # 78 - 7f + 0,0,0,0,0,0,0,0, # 80 - 87 + 0,0,0,0,0,0,6,0, # 88 - 8f + 0,0,0,0,0,0,0,0, # 90 - 97 + 0,0,0,0,0,0,0,0, # 98 - 9f + 0,3,4,4,4,4,4,4, # a0 - a7 + 5,5,1,1,1,1,1,1, # a8 - af + 1,1,1,1,1,1,1,1, # b0 - b7 + 1,1,1,1,1,1,1,1, # b8 - bf + 1,1,3,1,3,3,3,3, # c0 - c7 + 3,3,3,3,3,3,3,3, # c8 - cf + 3,3,3,3,3,3,3,3, # d0 - d7 + 3,3,3,3,3,3,3,3, # d8 - df + 3,3,3,3,3,3,3,3, # e0 - e7 + 3,3,3,3,3,3,3,3, # e8 - ef + 3,3,3,3,3,3,3,3, # f0 - f7 + 3,3,3,3,3,3,3,0 # f8 - ff +) + +EUCTW_st = ( + eError,eError,eStart, 3, 3, 3, 4,eError,#00-07 + eError,eError,eError,eError,eError,eError,eItsMe,eItsMe,#08-0f + eItsMe,eItsMe,eItsMe,eItsMe,eItsMe,eError,eStart,eError,#10-17 + eStart,eStart,eStart,eError,eError,eError,eError,eError,#18-1f + 5,eError,eError,eError,eStart,eError,eStart,eStart,#20-27 + eStart,eError,eStart,eStart,eStart,eStart,eStart,eStart #28-2f +) + +EUCTWCharLenTable = (0, 0, 1, 2, 2, 2, 3) + +EUCTWSMModel = {'classTable': EUCTW_cls, + 'classFactor': 7, + 'stateTable': EUCTW_st, + 'charLenTable': EUCTWCharLenTable, + 'name': 'x-euc-tw'} + +# GB2312 + +GB2312_cls = ( + 1,1,1,1,1,1,1,1, # 00 - 07 + 1,1,1,1,1,1,0,0, # 08 - 0f + 1,1,1,1,1,1,1,1, # 10 - 17 + 1,1,1,0,1,1,1,1, # 18 - 1f + 1,1,1,1,1,1,1,1, # 20 - 27 + 1,1,1,1,1,1,1,1, # 28 - 2f + 3,3,3,3,3,3,3,3, # 30 - 37 + 3,3,1,1,1,1,1,1, # 38 - 3f + 2,2,2,2,2,2,2,2, # 40 - 47 + 2,2,2,2,2,2,2,2, # 48 - 4f + 2,2,2,2,2,2,2,2, # 50 - 57 + 2,2,2,2,2,2,2,2, # 58 - 5f + 2,2,2,2,2,2,2,2, # 60 - 67 + 2,2,2,2,2,2,2,2, # 68 - 6f + 2,2,2,2,2,2,2,2, # 70 - 77 + 2,2,2,2,2,2,2,4, # 78 - 7f + 5,6,6,6,6,6,6,6, # 80 - 87 + 6,6,6,6,6,6,6,6, # 88 - 8f + 6,6,6,6,6,6,6,6, # 90 - 97 + 6,6,6,6,6,6,6,6, # 98 - 9f + 6,6,6,6,6,6,6,6, # a0 - a7 + 6,6,6,6,6,6,6,6, # a8 - af + 6,6,6,6,6,6,6,6, # b0 - b7 + 6,6,6,6,6,6,6,6, # b8 - bf + 6,6,6,6,6,6,6,6, # c0 - c7 + 6,6,6,6,6,6,6,6, # c8 - cf + 6,6,6,6,6,6,6,6, # d0 - d7 + 6,6,6,6,6,6,6,6, # d8 - df + 6,6,6,6,6,6,6,6, # e0 - e7 + 6,6,6,6,6,6,6,6, # e8 - ef + 6,6,6,6,6,6,6,6, # f0 - f7 + 6,6,6,6,6,6,6,0 # f8 - ff +) + +GB2312_st = ( + eError,eStart,eStart,eStart,eStart,eStart, 3,eError,#00-07 + eError,eError,eError,eError,eError,eError,eItsMe,eItsMe,#08-0f + eItsMe,eItsMe,eItsMe,eItsMe,eItsMe,eError,eError,eStart,#10-17 + 4,eError,eStart,eStart,eError,eError,eError,eError,#18-1f + eError,eError, 5,eError,eError,eError,eItsMe,eError,#20-27 + eError,eError,eStart,eStart,eStart,eStart,eStart,eStart #28-2f +) + +# To be accurate, the length of class 6 can be either 2 or 4. +# But it is not necessary to discriminate between the two since +# it is used for frequency analysis only, and we are validing +# each code range there as well. So it is safe to set it to be +# 2 here. +GB2312CharLenTable = (0, 1, 1, 1, 1, 1, 2) + +GB2312SMModel = {'classTable': GB2312_cls, + 'classFactor': 7, + 'stateTable': GB2312_st, + 'charLenTable': GB2312CharLenTable, + 'name': 'GB2312'} + +# Shift_JIS + +SJIS_cls = ( + 1,1,1,1,1,1,1,1, # 00 - 07 + 1,1,1,1,1,1,0,0, # 08 - 0f + 1,1,1,1,1,1,1,1, # 10 - 17 + 1,1,1,0,1,1,1,1, # 18 - 1f + 1,1,1,1,1,1,1,1, # 20 - 27 + 1,1,1,1,1,1,1,1, # 28 - 2f + 1,1,1,1,1,1,1,1, # 30 - 37 + 1,1,1,1,1,1,1,1, # 38 - 3f + 2,2,2,2,2,2,2,2, # 40 - 47 + 2,2,2,2,2,2,2,2, # 48 - 4f + 2,2,2,2,2,2,2,2, # 50 - 57 + 2,2,2,2,2,2,2,2, # 58 - 5f + 2,2,2,2,2,2,2,2, # 60 - 67 + 2,2,2,2,2,2,2,2, # 68 - 6f + 2,2,2,2,2,2,2,2, # 70 - 77 + 2,2,2,2,2,2,2,1, # 78 - 7f + 3,3,3,3,3,3,3,3, # 80 - 87 + 3,3,3,3,3,3,3,3, # 88 - 8f + 3,3,3,3,3,3,3,3, # 90 - 97 + 3,3,3,3,3,3,3,3, # 98 - 9f + #0xa0 is illegal in sjis encoding, but some pages does + #contain such byte. We need to be more error forgiven. + 2,2,2,2,2,2,2,2, # a0 - a7 + 2,2,2,2,2,2,2,2, # a8 - af + 2,2,2,2,2,2,2,2, # b0 - b7 + 2,2,2,2,2,2,2,2, # b8 - bf + 2,2,2,2,2,2,2,2, # c0 - c7 + 2,2,2,2,2,2,2,2, # c8 - cf + 2,2,2,2,2,2,2,2, # d0 - d7 + 2,2,2,2,2,2,2,2, # d8 - df + 3,3,3,3,3,3,3,3, # e0 - e7 + 3,3,3,3,3,4,4,4, # e8 - ef + 4,4,4,4,4,4,4,4, # f0 - f7 + 4,4,4,4,4,0,0,0 # f8 - ff +) + + +SJIS_st = ( + eError,eStart,eStart, 3,eError,eError,eError,eError,#00-07 + eError,eError,eError,eError,eItsMe,eItsMe,eItsMe,eItsMe,#08-0f + eItsMe,eItsMe,eError,eError,eStart,eStart,eStart,eStart #10-17 +) + +SJISCharLenTable = (0, 1, 1, 2, 0, 0) + +SJISSMModel = {'classTable': SJIS_cls, + 'classFactor': 6, + 'stateTable': SJIS_st, + 'charLenTable': SJISCharLenTable, + 'name': 'Shift_JIS'} + +# UCS2-BE + +UCS2BE_cls = ( + 0,0,0,0,0,0,0,0, # 00 - 07 + 0,0,1,0,0,2,0,0, # 08 - 0f + 0,0,0,0,0,0,0,0, # 10 - 17 + 0,0,0,3,0,0,0,0, # 18 - 1f + 0,0,0,0,0,0,0,0, # 20 - 27 + 0,3,3,3,3,3,0,0, # 28 - 2f + 0,0,0,0,0,0,0,0, # 30 - 37 + 0,0,0,0,0,0,0,0, # 38 - 3f + 0,0,0,0,0,0,0,0, # 40 - 47 + 0,0,0,0,0,0,0,0, # 48 - 4f + 0,0,0,0,0,0,0,0, # 50 - 57 + 0,0,0,0,0,0,0,0, # 58 - 5f + 0,0,0,0,0,0,0,0, # 60 - 67 + 0,0,0,0,0,0,0,0, # 68 - 6f + 0,0,0,0,0,0,0,0, # 70 - 77 + 0,0,0,0,0,0,0,0, # 78 - 7f + 0,0,0,0,0,0,0,0, # 80 - 87 + 0,0,0,0,0,0,0,0, # 88 - 8f + 0,0,0,0,0,0,0,0, # 90 - 97 + 0,0,0,0,0,0,0,0, # 98 - 9f + 0,0,0,0,0,0,0,0, # a0 - a7 + 0,0,0,0,0,0,0,0, # a8 - af + 0,0,0,0,0,0,0,0, # b0 - b7 + 0,0,0,0,0,0,0,0, # b8 - bf + 0,0,0,0,0,0,0,0, # c0 - c7 + 0,0,0,0,0,0,0,0, # c8 - cf + 0,0,0,0,0,0,0,0, # d0 - d7 + 0,0,0,0,0,0,0,0, # d8 - df + 0,0,0,0,0,0,0,0, # e0 - e7 + 0,0,0,0,0,0,0,0, # e8 - ef + 0,0,0,0,0,0,0,0, # f0 - f7 + 0,0,0,0,0,0,4,5 # f8 - ff +) + +UCS2BE_st = ( + 5, 7, 7,eError, 4, 3,eError,eError,#00-07 + eError,eError,eError,eError,eItsMe,eItsMe,eItsMe,eItsMe,#08-0f + eItsMe,eItsMe, 6, 6, 6, 6,eError,eError,#10-17 + 6, 6, 6, 6, 6,eItsMe, 6, 6,#18-1f + 6, 6, 6, 6, 5, 7, 7,eError,#20-27 + 5, 8, 6, 6,eError, 6, 6, 6,#28-2f + 6, 6, 6, 6,eError,eError,eStart,eStart #30-37 +) + +UCS2BECharLenTable = (2, 2, 2, 0, 2, 2) + +UCS2BESMModel = {'classTable': UCS2BE_cls, + 'classFactor': 6, + 'stateTable': UCS2BE_st, + 'charLenTable': UCS2BECharLenTable, + 'name': 'UTF-16BE'} + +# UCS2-LE + +UCS2LE_cls = ( + 0,0,0,0,0,0,0,0, # 00 - 07 + 0,0,1,0,0,2,0,0, # 08 - 0f + 0,0,0,0,0,0,0,0, # 10 - 17 + 0,0,0,3,0,0,0,0, # 18 - 1f + 0,0,0,0,0,0,0,0, # 20 - 27 + 0,3,3,3,3,3,0,0, # 28 - 2f + 0,0,0,0,0,0,0,0, # 30 - 37 + 0,0,0,0,0,0,0,0, # 38 - 3f + 0,0,0,0,0,0,0,0, # 40 - 47 + 0,0,0,0,0,0,0,0, # 48 - 4f + 0,0,0,0,0,0,0,0, # 50 - 57 + 0,0,0,0,0,0,0,0, # 58 - 5f + 0,0,0,0,0,0,0,0, # 60 - 67 + 0,0,0,0,0,0,0,0, # 68 - 6f + 0,0,0,0,0,0,0,0, # 70 - 77 + 0,0,0,0,0,0,0,0, # 78 - 7f + 0,0,0,0,0,0,0,0, # 80 - 87 + 0,0,0,0,0,0,0,0, # 88 - 8f + 0,0,0,0,0,0,0,0, # 90 - 97 + 0,0,0,0,0,0,0,0, # 98 - 9f + 0,0,0,0,0,0,0,0, # a0 - a7 + 0,0,0,0,0,0,0,0, # a8 - af + 0,0,0,0,0,0,0,0, # b0 - b7 + 0,0,0,0,0,0,0,0, # b8 - bf + 0,0,0,0,0,0,0,0, # c0 - c7 + 0,0,0,0,0,0,0,0, # c8 - cf + 0,0,0,0,0,0,0,0, # d0 - d7 + 0,0,0,0,0,0,0,0, # d8 - df + 0,0,0,0,0,0,0,0, # e0 - e7 + 0,0,0,0,0,0,0,0, # e8 - ef + 0,0,0,0,0,0,0,0, # f0 - f7 + 0,0,0,0,0,0,4,5 # f8 - ff +) + +UCS2LE_st = ( + 6, 6, 7, 6, 4, 3,eError,eError,#00-07 + eError,eError,eError,eError,eItsMe,eItsMe,eItsMe,eItsMe,#08-0f + eItsMe,eItsMe, 5, 5, 5,eError,eItsMe,eError,#10-17 + 5, 5, 5,eError, 5,eError, 6, 6,#18-1f + 7, 6, 8, 8, 5, 5, 5,eError,#20-27 + 5, 5, 5,eError,eError,eError, 5, 5,#28-2f + 5, 5, 5,eError, 5,eError,eStart,eStart #30-37 +) + +UCS2LECharLenTable = (2, 2, 2, 2, 2, 2) + +UCS2LESMModel = {'classTable': UCS2LE_cls, + 'classFactor': 6, + 'stateTable': UCS2LE_st, + 'charLenTable': UCS2LECharLenTable, + 'name': 'UTF-16LE'} + +# UTF-8 + +UTF8_cls = ( + 1,1,1,1,1,1,1,1, # 00 - 07 #allow 0x00 as a legal value + 1,1,1,1,1,1,0,0, # 08 - 0f + 1,1,1,1,1,1,1,1, # 10 - 17 + 1,1,1,0,1,1,1,1, # 18 - 1f + 1,1,1,1,1,1,1,1, # 20 - 27 + 1,1,1,1,1,1,1,1, # 28 - 2f + 1,1,1,1,1,1,1,1, # 30 - 37 + 1,1,1,1,1,1,1,1, # 38 - 3f + 1,1,1,1,1,1,1,1, # 40 - 47 + 1,1,1,1,1,1,1,1, # 48 - 4f + 1,1,1,1,1,1,1,1, # 50 - 57 + 1,1,1,1,1,1,1,1, # 58 - 5f + 1,1,1,1,1,1,1,1, # 60 - 67 + 1,1,1,1,1,1,1,1, # 68 - 6f + 1,1,1,1,1,1,1,1, # 70 - 77 + 1,1,1,1,1,1,1,1, # 78 - 7f + 2,2,2,2,3,3,3,3, # 80 - 87 + 4,4,4,4,4,4,4,4, # 88 - 8f + 4,4,4,4,4,4,4,4, # 90 - 97 + 4,4,4,4,4,4,4,4, # 98 - 9f + 5,5,5,5,5,5,5,5, # a0 - a7 + 5,5,5,5,5,5,5,5, # a8 - af + 5,5,5,5,5,5,5,5, # b0 - b7 + 5,5,5,5,5,5,5,5, # b8 - bf + 0,0,6,6,6,6,6,6, # c0 - c7 + 6,6,6,6,6,6,6,6, # c8 - cf + 6,6,6,6,6,6,6,6, # d0 - d7 + 6,6,6,6,6,6,6,6, # d8 - df + 7,8,8,8,8,8,8,8, # e0 - e7 + 8,8,8,8,8,9,8,8, # e8 - ef + 10,11,11,11,11,11,11,11, # f0 - f7 + 12,13,13,13,14,15,0,0 # f8 - ff +) + +UTF8_st = ( + eError,eStart,eError,eError,eError,eError, 12, 10,#00-07 + 9, 11, 8, 7, 6, 5, 4, 3,#08-0f + eError,eError,eError,eError,eError,eError,eError,eError,#10-17 + eError,eError,eError,eError,eError,eError,eError,eError,#18-1f + eItsMe,eItsMe,eItsMe,eItsMe,eItsMe,eItsMe,eItsMe,eItsMe,#20-27 + eItsMe,eItsMe,eItsMe,eItsMe,eItsMe,eItsMe,eItsMe,eItsMe,#28-2f + eError,eError, 5, 5, 5, 5,eError,eError,#30-37 + eError,eError,eError,eError,eError,eError,eError,eError,#38-3f + eError,eError,eError, 5, 5, 5,eError,eError,#40-47 + eError,eError,eError,eError,eError,eError,eError,eError,#48-4f + eError,eError, 7, 7, 7, 7,eError,eError,#50-57 + eError,eError,eError,eError,eError,eError,eError,eError,#58-5f + eError,eError,eError,eError, 7, 7,eError,eError,#60-67 + eError,eError,eError,eError,eError,eError,eError,eError,#68-6f + eError,eError, 9, 9, 9, 9,eError,eError,#70-77 + eError,eError,eError,eError,eError,eError,eError,eError,#78-7f + eError,eError,eError,eError,eError, 9,eError,eError,#80-87 + eError,eError,eError,eError,eError,eError,eError,eError,#88-8f + eError,eError, 12, 12, 12, 12,eError,eError,#90-97 + eError,eError,eError,eError,eError,eError,eError,eError,#98-9f + eError,eError,eError,eError,eError, 12,eError,eError,#a0-a7 + eError,eError,eError,eError,eError,eError,eError,eError,#a8-af + eError,eError, 12, 12, 12,eError,eError,eError,#b0-b7 + eError,eError,eError,eError,eError,eError,eError,eError,#b8-bf + eError,eError,eStart,eStart,eStart,eStart,eError,eError,#c0-c7 + eError,eError,eError,eError,eError,eError,eError,eError #c8-cf +) + +UTF8CharLenTable = (0, 1, 0, 0, 0, 0, 2, 3, 3, 3, 4, 4, 5, 5, 6, 6) + +UTF8SMModel = {'classTable': UTF8_cls, + 'classFactor': 16, + 'stateTable': UTF8_st, + 'charLenTable': UTF8CharLenTable, + 'name': 'UTF-8'} + +# flake8: noqa diff --git a/app/src/processing/app/i18n/python/requests/packages/charade/sbcharsetprober.py b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/sbcharsetprober.py similarity index 97% rename from app/src/processing/app/i18n/python/requests/packages/charade/sbcharsetprober.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/charade/sbcharsetprober.py index da26715cf..37291bd27 100644 --- a/app/src/processing/app/i18n/python/requests/packages/charade/sbcharsetprober.py +++ b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/sbcharsetprober.py @@ -1,120 +1,120 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is Mozilla Universal charset detector code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 2001 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# Shy Shalom - original C code -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -import sys -from . import constants -from .charsetprober import CharSetProber -from .compat import wrap_ord - -SAMPLE_SIZE = 64 -SB_ENOUGH_REL_THRESHOLD = 1024 -POSITIVE_SHORTCUT_THRESHOLD = 0.95 -NEGATIVE_SHORTCUT_THRESHOLD = 0.05 -SYMBOL_CAT_ORDER = 250 -NUMBER_OF_SEQ_CAT = 4 -POSITIVE_CAT = NUMBER_OF_SEQ_CAT - 1 -#NEGATIVE_CAT = 0 - - -class SingleByteCharSetProber(CharSetProber): - def __init__(self, model, reversed=False, nameProber=None): - CharSetProber.__init__(self) - self._mModel = model - # TRUE if we need to reverse every pair in the model lookup - self._mReversed = reversed - # Optional auxiliary prober for name decision - self._mNameProber = nameProber - self.reset() - - def reset(self): - CharSetProber.reset(self) - # char order of last character - self._mLastOrder = 255 - self._mSeqCounters = [0] * NUMBER_OF_SEQ_CAT - self._mTotalSeqs = 0 - self._mTotalChar = 0 - # characters that fall in our sampling range - self._mFreqChar = 0 - - def get_charset_name(self): - if self._mNameProber: - return self._mNameProber.get_charset_name() - else: - return self._mModel['charsetName'] - - def feed(self, aBuf): - if not self._mModel['keepEnglishLetter']: - aBuf = self.filter_without_english_letters(aBuf) - aLen = len(aBuf) - if not aLen: - return self.get_state() - for c in aBuf: - order = self._mModel['charToOrderMap'][wrap_ord(c)] - if order < SYMBOL_CAT_ORDER: - self._mTotalChar += 1 - if order < SAMPLE_SIZE: - self._mFreqChar += 1 - if self._mLastOrder < SAMPLE_SIZE: - self._mTotalSeqs += 1 - if not self._mReversed: - i = (self._mLastOrder * SAMPLE_SIZE) + order - model = self._mModel['precedenceMatrix'][i] - else: # reverse the order of the letters in the lookup - i = (order * SAMPLE_SIZE) + self._mLastOrder - model = self._mModel['precedenceMatrix'][i] - self._mSeqCounters[model] += 1 - self._mLastOrder = order - - if self.get_state() == constants.eDetecting: - if self._mTotalSeqs > SB_ENOUGH_REL_THRESHOLD: - cf = self.get_confidence() - if cf > POSITIVE_SHORTCUT_THRESHOLD: - if constants._debug: - sys.stderr.write('%s confidence = %s, we have a' - 'winner\n' % - (self._mModel['charsetName'], cf)) - self._mState = constants.eFoundIt - elif cf < NEGATIVE_SHORTCUT_THRESHOLD: - if constants._debug: - sys.stderr.write('%s confidence = %s, below negative' - 'shortcut threshhold %s\n' % - (self._mModel['charsetName'], cf, - NEGATIVE_SHORTCUT_THRESHOLD)) - self._mState = constants.eNotMe - - return self.get_state() - - def get_confidence(self): - r = 0.01 - if self._mTotalSeqs > 0: - r = ((1.0 * self._mSeqCounters[POSITIVE_CAT]) / self._mTotalSeqs - / self._mModel['mTypicalPositiveRatio']) - r = r * self._mFreqChar / self._mTotalChar - if r >= 1.0: - r = 0.99 - return r +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +import sys +from . import constants +from .charsetprober import CharSetProber +from .compat import wrap_ord + +SAMPLE_SIZE = 64 +SB_ENOUGH_REL_THRESHOLD = 1024 +POSITIVE_SHORTCUT_THRESHOLD = 0.95 +NEGATIVE_SHORTCUT_THRESHOLD = 0.05 +SYMBOL_CAT_ORDER = 250 +NUMBER_OF_SEQ_CAT = 4 +POSITIVE_CAT = NUMBER_OF_SEQ_CAT - 1 +#NEGATIVE_CAT = 0 + + +class SingleByteCharSetProber(CharSetProber): + def __init__(self, model, reversed=False, nameProber=None): + CharSetProber.__init__(self) + self._mModel = model + # TRUE if we need to reverse every pair in the model lookup + self._mReversed = reversed + # Optional auxiliary prober for name decision + self._mNameProber = nameProber + self.reset() + + def reset(self): + CharSetProber.reset(self) + # char order of last character + self._mLastOrder = 255 + self._mSeqCounters = [0] * NUMBER_OF_SEQ_CAT + self._mTotalSeqs = 0 + self._mTotalChar = 0 + # characters that fall in our sampling range + self._mFreqChar = 0 + + def get_charset_name(self): + if self._mNameProber: + return self._mNameProber.get_charset_name() + else: + return self._mModel['charsetName'] + + def feed(self, aBuf): + if not self._mModel['keepEnglishLetter']: + aBuf = self.filter_without_english_letters(aBuf) + aLen = len(aBuf) + if not aLen: + return self.get_state() + for c in aBuf: + order = self._mModel['charToOrderMap'][wrap_ord(c)] + if order < SYMBOL_CAT_ORDER: + self._mTotalChar += 1 + if order < SAMPLE_SIZE: + self._mFreqChar += 1 + if self._mLastOrder < SAMPLE_SIZE: + self._mTotalSeqs += 1 + if not self._mReversed: + i = (self._mLastOrder * SAMPLE_SIZE) + order + model = self._mModel['precedenceMatrix'][i] + else: # reverse the order of the letters in the lookup + i = (order * SAMPLE_SIZE) + self._mLastOrder + model = self._mModel['precedenceMatrix'][i] + self._mSeqCounters[model] += 1 + self._mLastOrder = order + + if self.get_state() == constants.eDetecting: + if self._mTotalSeqs > SB_ENOUGH_REL_THRESHOLD: + cf = self.get_confidence() + if cf > POSITIVE_SHORTCUT_THRESHOLD: + if constants._debug: + sys.stderr.write('%s confidence = %s, we have a' + 'winner\n' % + (self._mModel['charsetName'], cf)) + self._mState = constants.eFoundIt + elif cf < NEGATIVE_SHORTCUT_THRESHOLD: + if constants._debug: + sys.stderr.write('%s confidence = %s, below negative' + 'shortcut threshhold %s\n' % + (self._mModel['charsetName'], cf, + NEGATIVE_SHORTCUT_THRESHOLD)) + self._mState = constants.eNotMe + + return self.get_state() + + def get_confidence(self): + r = 0.01 + if self._mTotalSeqs > 0: + r = ((1.0 * self._mSeqCounters[POSITIVE_CAT]) / self._mTotalSeqs + / self._mModel['mTypicalPositiveRatio']) + r = r * self._mFreqChar / self._mTotalChar + if r >= 1.0: + r = 0.99 + return r diff --git a/app/src/processing/app/i18n/python/requests/packages/charade/sbcsgroupprober.py b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/sbcsgroupprober.py similarity index 97% rename from app/src/processing/app/i18n/python/requests/packages/charade/sbcsgroupprober.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/charade/sbcsgroupprober.py index b22481456..1b6196cd1 100644 --- a/app/src/processing/app/i18n/python/requests/packages/charade/sbcsgroupprober.py +++ b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/sbcsgroupprober.py @@ -1,69 +1,69 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is Mozilla Universal charset detector code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 2001 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# Shy Shalom - original C code -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from .charsetgroupprober import CharSetGroupProber -from .sbcharsetprober import SingleByteCharSetProber -from .langcyrillicmodel import (Win1251CyrillicModel, Koi8rModel, - Latin5CyrillicModel, MacCyrillicModel, - Ibm866Model, Ibm855Model) -from .langgreekmodel import Latin7GreekModel, Win1253GreekModel -from .langbulgarianmodel import Latin5BulgarianModel, Win1251BulgarianModel -from .langhungarianmodel import Latin2HungarianModel, Win1250HungarianModel -from .langthaimodel import TIS620ThaiModel -from .langhebrewmodel import Win1255HebrewModel -from .hebrewprober import HebrewProber - - -class SBCSGroupProber(CharSetGroupProber): - def __init__(self): - CharSetGroupProber.__init__(self) - self._mProbers = [ - SingleByteCharSetProber(Win1251CyrillicModel), - SingleByteCharSetProber(Koi8rModel), - SingleByteCharSetProber(Latin5CyrillicModel), - SingleByteCharSetProber(MacCyrillicModel), - SingleByteCharSetProber(Ibm866Model), - SingleByteCharSetProber(Ibm855Model), - SingleByteCharSetProber(Latin7GreekModel), - SingleByteCharSetProber(Win1253GreekModel), - SingleByteCharSetProber(Latin5BulgarianModel), - SingleByteCharSetProber(Win1251BulgarianModel), - SingleByteCharSetProber(Latin2HungarianModel), - SingleByteCharSetProber(Win1250HungarianModel), - SingleByteCharSetProber(TIS620ThaiModel), - ] - hebrewProber = HebrewProber() - logicalHebrewProber = SingleByteCharSetProber(Win1255HebrewModel, - False, hebrewProber) - visualHebrewProber = SingleByteCharSetProber(Win1255HebrewModel, True, - hebrewProber) - hebrewProber.set_model_probers(logicalHebrewProber, visualHebrewProber) - self._mProbers.extend([hebrewProber, logicalHebrewProber, - visualHebrewProber]) - - self.reset() +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from .charsetgroupprober import CharSetGroupProber +from .sbcharsetprober import SingleByteCharSetProber +from .langcyrillicmodel import (Win1251CyrillicModel, Koi8rModel, + Latin5CyrillicModel, MacCyrillicModel, + Ibm866Model, Ibm855Model) +from .langgreekmodel import Latin7GreekModel, Win1253GreekModel +from .langbulgarianmodel import Latin5BulgarianModel, Win1251BulgarianModel +from .langhungarianmodel import Latin2HungarianModel, Win1250HungarianModel +from .langthaimodel import TIS620ThaiModel +from .langhebrewmodel import Win1255HebrewModel +from .hebrewprober import HebrewProber + + +class SBCSGroupProber(CharSetGroupProber): + def __init__(self): + CharSetGroupProber.__init__(self) + self._mProbers = [ + SingleByteCharSetProber(Win1251CyrillicModel), + SingleByteCharSetProber(Koi8rModel), + SingleByteCharSetProber(Latin5CyrillicModel), + SingleByteCharSetProber(MacCyrillicModel), + SingleByteCharSetProber(Ibm866Model), + SingleByteCharSetProber(Ibm855Model), + SingleByteCharSetProber(Latin7GreekModel), + SingleByteCharSetProber(Win1253GreekModel), + SingleByteCharSetProber(Latin5BulgarianModel), + SingleByteCharSetProber(Win1251BulgarianModel), + SingleByteCharSetProber(Latin2HungarianModel), + SingleByteCharSetProber(Win1250HungarianModel), + SingleByteCharSetProber(TIS620ThaiModel), + ] + hebrewProber = HebrewProber() + logicalHebrewProber = SingleByteCharSetProber(Win1255HebrewModel, + False, hebrewProber) + visualHebrewProber = SingleByteCharSetProber(Win1255HebrewModel, True, + hebrewProber) + hebrewProber.set_model_probers(logicalHebrewProber, visualHebrewProber) + self._mProbers.extend([hebrewProber, logicalHebrewProber, + visualHebrewProber]) + + self.reset() diff --git a/app/src/processing/app/i18n/python/requests/packages/charade/sjisprober.py b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/sjisprober.py similarity index 97% rename from app/src/processing/app/i18n/python/requests/packages/charade/sjisprober.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/charade/sjisprober.py index 9bb0cdcf1..b173614e6 100644 --- a/app/src/processing/app/i18n/python/requests/packages/charade/sjisprober.py +++ b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/sjisprober.py @@ -1,91 +1,91 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is mozilla.org code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -import sys -from .mbcharsetprober import MultiByteCharSetProber -from .codingstatemachine import CodingStateMachine -from .chardistribution import SJISDistributionAnalysis -from .jpcntx import SJISContextAnalysis -from .mbcssm import SJISSMModel -from . import constants - - -class SJISProber(MultiByteCharSetProber): - def __init__(self): - MultiByteCharSetProber.__init__(self) - self._mCodingSM = CodingStateMachine(SJISSMModel) - self._mDistributionAnalyzer = SJISDistributionAnalysis() - self._mContextAnalyzer = SJISContextAnalysis() - self.reset() - - def reset(self): - MultiByteCharSetProber.reset(self) - self._mContextAnalyzer.reset() - - def get_charset_name(self): - return "SHIFT_JIS" - - def feed(self, aBuf): - aLen = len(aBuf) - for i in range(0, aLen): - codingState = self._mCodingSM.next_state(aBuf[i]) - if codingState == constants.eError: - if constants._debug: - sys.stderr.write(self.get_charset_name() - + ' prober hit error at byte ' + str(i) - + '\n') - self._mState = constants.eNotMe - break - elif codingState == constants.eItsMe: - self._mState = constants.eFoundIt - break - elif codingState == constants.eStart: - charLen = self._mCodingSM.get_current_charlen() - if i == 0: - self._mLastChar[1] = aBuf[0] - self._mContextAnalyzer.feed(self._mLastChar[2 - charLen:], - charLen) - self._mDistributionAnalyzer.feed(self._mLastChar, charLen) - else: - self._mContextAnalyzer.feed(aBuf[i + 1 - charLen:i + 3 - - charLen], charLen) - self._mDistributionAnalyzer.feed(aBuf[i - 1:i + 1], - charLen) - - self._mLastChar[0] = aBuf[aLen - 1] - - if self.get_state() == constants.eDetecting: - if (self._mContextAnalyzer.got_enough_data() and - (self.get_confidence() > constants.SHORTCUT_THRESHOLD)): - self._mState = constants.eFoundIt - - return self.get_state() - - def get_confidence(self): - contxtCf = self._mContextAnalyzer.get_confidence() - distribCf = self._mDistributionAnalyzer.get_confidence() - return max(contxtCf, distribCf) +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +import sys +from .mbcharsetprober import MultiByteCharSetProber +from .codingstatemachine import CodingStateMachine +from .chardistribution import SJISDistributionAnalysis +from .jpcntx import SJISContextAnalysis +from .mbcssm import SJISSMModel +from . import constants + + +class SJISProber(MultiByteCharSetProber): + def __init__(self): + MultiByteCharSetProber.__init__(self) + self._mCodingSM = CodingStateMachine(SJISSMModel) + self._mDistributionAnalyzer = SJISDistributionAnalysis() + self._mContextAnalyzer = SJISContextAnalysis() + self.reset() + + def reset(self): + MultiByteCharSetProber.reset(self) + self._mContextAnalyzer.reset() + + def get_charset_name(self): + return "SHIFT_JIS" + + def feed(self, aBuf): + aLen = len(aBuf) + for i in range(0, aLen): + codingState = self._mCodingSM.next_state(aBuf[i]) + if codingState == constants.eError: + if constants._debug: + sys.stderr.write(self.get_charset_name() + + ' prober hit error at byte ' + str(i) + + '\n') + self._mState = constants.eNotMe + break + elif codingState == constants.eItsMe: + self._mState = constants.eFoundIt + break + elif codingState == constants.eStart: + charLen = self._mCodingSM.get_current_charlen() + if i == 0: + self._mLastChar[1] = aBuf[0] + self._mContextAnalyzer.feed(self._mLastChar[2 - charLen:], + charLen) + self._mDistributionAnalyzer.feed(self._mLastChar, charLen) + else: + self._mContextAnalyzer.feed(aBuf[i + 1 - charLen:i + 3 + - charLen], charLen) + self._mDistributionAnalyzer.feed(aBuf[i - 1:i + 1], + charLen) + + self._mLastChar[0] = aBuf[aLen - 1] + + if self.get_state() == constants.eDetecting: + if (self._mContextAnalyzer.got_enough_data() and + (self.get_confidence() > constants.SHORTCUT_THRESHOLD)): + self._mState = constants.eFoundIt + + return self.get_state() + + def get_confidence(self): + contxtCf = self._mContextAnalyzer.get_confidence() + distribCf = self._mDistributionAnalyzer.get_confidence() + return max(contxtCf, distribCf) diff --git a/app/src/processing/app/i18n/python/requests/packages/charade/universaldetector.py b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/universaldetector.py similarity index 97% rename from app/src/processing/app/i18n/python/requests/packages/charade/universaldetector.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/charade/universaldetector.py index adaae7207..3d5336b03 100644 --- a/app/src/processing/app/i18n/python/requests/packages/charade/universaldetector.py +++ b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/universaldetector.py @@ -1,171 +1,171 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is Mozilla Universal charset detector code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 2001 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# Shy Shalom - original C code -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from . import constants -import sys -from .latin1prober import Latin1Prober # windows-1252 -from .mbcsgroupprober import MBCSGroupProber # multi-byte character sets -from .sbcsgroupprober import SBCSGroupProber # single-byte character sets -from .escprober import EscCharSetProber # ISO-2122, etc. -import re - -MINIMUM_THRESHOLD = 0.20 -ePureAscii = 0 -eEscAscii = 1 -eHighbyte = 2 - - -class UniversalDetector: - def __init__(self): - self._highBitDetector = re.compile(b'[\x80-\xFF]') - self._escDetector = re.compile(b'(\033|~{)') - self._mEscCharSetProber = None - self._mCharSetProbers = [] - self.reset() - - def reset(self): - self.result = {'encoding': None, 'confidence': 0.0} - self.done = False - self._mStart = True - self._mGotData = False - self._mInputState = ePureAscii - self._mLastChar = b'' - if self._mEscCharSetProber: - self._mEscCharSetProber.reset() - for prober in self._mCharSetProbers: - prober.reset() - - def feed(self, aBuf): - if self.done: - return - - aLen = len(aBuf) - if not aLen: - return - - if not self._mGotData: - # If the data starts with BOM, we know it is UTF - if aBuf[:3] == '\xEF\xBB\xBF': - # EF BB BF UTF-8 with BOM - self.result = {'encoding': "UTF-8", 'confidence': 1.0} - elif aBuf[:4] == '\xFF\xFE\x00\x00': - # FF FE 00 00 UTF-32, little-endian BOM - self.result = {'encoding': "UTF-32LE", 'confidence': 1.0} - elif aBuf[:4] == '\x00\x00\xFE\xFF': - # 00 00 FE FF UTF-32, big-endian BOM - self.result = {'encoding': "UTF-32BE", 'confidence': 1.0} - elif aBuf[:4] == '\xFE\xFF\x00\x00': - # FE FF 00 00 UCS-4, unusual octet order BOM (3412) - self.result = { - 'encoding': "X-ISO-10646-UCS-4-3412", - 'confidence': 1.0 - } - elif aBuf[:4] == '\x00\x00\xFF\xFE': - # 00 00 FF FE UCS-4, unusual octet order BOM (2143) - self.result = { - 'encoding': "X-ISO-10646-UCS-4-2143", - 'confidence': 1.0 - } - elif aBuf[:2] == '\xFF\xFE': - # FF FE UTF-16, little endian BOM - self.result = {'encoding': "UTF-16LE", 'confidence': 1.0} - elif aBuf[:2] == '\xFE\xFF': - # FE FF UTF-16, big endian BOM - self.result = {'encoding': "UTF-16BE", 'confidence': 1.0} - - self._mGotData = True - if self.result['encoding'] and (self.result['confidence'] > 0.0): - self.done = True - return - - if self._mInputState == ePureAscii: - if self._highBitDetector.search(aBuf): - self._mInputState = eHighbyte - elif ((self._mInputState == ePureAscii) and - self._escDetector.search(self._mLastChar + aBuf)): - self._mInputState = eEscAscii - - self._mLastChar = aBuf[-1:] - - if self._mInputState == eEscAscii: - if not self._mEscCharSetProber: - self._mEscCharSetProber = EscCharSetProber() - if self._mEscCharSetProber.feed(aBuf) == constants.eFoundIt: - self.result = { - 'encoding': self._mEscCharSetProber.get_charset_name(), - 'confidence': self._mEscCharSetProber.get_confidence() - } - self.done = True - elif self._mInputState == eHighbyte: - if not self._mCharSetProbers: - self._mCharSetProbers = [MBCSGroupProber(), SBCSGroupProber(), - Latin1Prober()] - for prober in self._mCharSetProbers: - if prober.feed(aBuf) == constants.eFoundIt: - self.result = {'encoding': prober.get_charset_name(), - 'confidence': prober.get_confidence()} - self.done = True - break - - def close(self): - if self.done: - return - if not self._mGotData: - if constants._debug: - sys.stderr.write('no data received!\n') - return - self.done = True - - if self._mInputState == ePureAscii: - self.result = {'encoding': 'ascii', 'confidence': 1.0} - return self.result - - if self._mInputState == eHighbyte: - proberConfidence = None - maxProberConfidence = 0.0 - maxProber = None - for prober in self._mCharSetProbers: - if not prober: - continue - proberConfidence = prober.get_confidence() - if proberConfidence > maxProberConfidence: - maxProberConfidence = proberConfidence - maxProber = prober - if maxProber and (maxProberConfidence > MINIMUM_THRESHOLD): - self.result = {'encoding': maxProber.get_charset_name(), - 'confidence': maxProber.get_confidence()} - return self.result - - if constants._debug: - sys.stderr.write('no probers hit minimum threshhold\n') - for prober in self._mCharSetProbers[0].mProbers: - if not prober: - continue - sys.stderr.write('%s confidence = %s\n' % - (prober.get_charset_name(), - prober.get_confidence())) +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is Mozilla Universal charset detector code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 2001 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# Shy Shalom - original C code +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from . import constants +import sys +from .latin1prober import Latin1Prober # windows-1252 +from .mbcsgroupprober import MBCSGroupProber # multi-byte character sets +from .sbcsgroupprober import SBCSGroupProber # single-byte character sets +from .escprober import EscCharSetProber # ISO-2122, etc. +import re + +MINIMUM_THRESHOLD = 0.20 +ePureAscii = 0 +eEscAscii = 1 +eHighbyte = 2 + + +class UniversalDetector: + def __init__(self): + self._highBitDetector = re.compile(b'[\x80-\xFF]') + self._escDetector = re.compile(b'(\033|~{)') + self._mEscCharSetProber = None + self._mCharSetProbers = [] + self.reset() + + def reset(self): + self.result = {'encoding': None, 'confidence': 0.0} + self.done = False + self._mStart = True + self._mGotData = False + self._mInputState = ePureAscii + self._mLastChar = b'' + if self._mEscCharSetProber: + self._mEscCharSetProber.reset() + for prober in self._mCharSetProbers: + prober.reset() + + def feed(self, aBuf): + if self.done: + return + + aLen = len(aBuf) + if not aLen: + return + + if not self._mGotData: + # If the data starts with BOM, we know it is UTF + if aBuf[:3] == '\xEF\xBB\xBF': + # EF BB BF UTF-8 with BOM + self.result = {'encoding': "UTF-8", 'confidence': 1.0} + elif aBuf[:4] == '\xFF\xFE\x00\x00': + # FF FE 00 00 UTF-32, little-endian BOM + self.result = {'encoding': "UTF-32LE", 'confidence': 1.0} + elif aBuf[:4] == '\x00\x00\xFE\xFF': + # 00 00 FE FF UTF-32, big-endian BOM + self.result = {'encoding': "UTF-32BE", 'confidence': 1.0} + elif aBuf[:4] == '\xFE\xFF\x00\x00': + # FE FF 00 00 UCS-4, unusual octet order BOM (3412) + self.result = { + 'encoding': "X-ISO-10646-UCS-4-3412", + 'confidence': 1.0 + } + elif aBuf[:4] == '\x00\x00\xFF\xFE': + # 00 00 FF FE UCS-4, unusual octet order BOM (2143) + self.result = { + 'encoding': "X-ISO-10646-UCS-4-2143", + 'confidence': 1.0 + } + elif aBuf[:2] == '\xFF\xFE': + # FF FE UTF-16, little endian BOM + self.result = {'encoding': "UTF-16LE", 'confidence': 1.0} + elif aBuf[:2] == '\xFE\xFF': + # FE FF UTF-16, big endian BOM + self.result = {'encoding': "UTF-16BE", 'confidence': 1.0} + + self._mGotData = True + if self.result['encoding'] and (self.result['confidence'] > 0.0): + self.done = True + return + + if self._mInputState == ePureAscii: + if self._highBitDetector.search(aBuf): + self._mInputState = eHighbyte + elif ((self._mInputState == ePureAscii) and + self._escDetector.search(self._mLastChar + aBuf)): + self._mInputState = eEscAscii + + self._mLastChar = aBuf[-1:] + + if self._mInputState == eEscAscii: + if not self._mEscCharSetProber: + self._mEscCharSetProber = EscCharSetProber() + if self._mEscCharSetProber.feed(aBuf) == constants.eFoundIt: + self.result = { + 'encoding': self._mEscCharSetProber.get_charset_name(), + 'confidence': self._mEscCharSetProber.get_confidence() + } + self.done = True + elif self._mInputState == eHighbyte: + if not self._mCharSetProbers: + self._mCharSetProbers = [MBCSGroupProber(), SBCSGroupProber(), + Latin1Prober()] + for prober in self._mCharSetProbers: + if prober.feed(aBuf) == constants.eFoundIt: + self.result = {'encoding': prober.get_charset_name(), + 'confidence': prober.get_confidence()} + self.done = True + break + + def close(self): + if self.done: + return + if not self._mGotData: + if constants._debug: + sys.stderr.write('no data received!\n') + return + self.done = True + + if self._mInputState == ePureAscii: + self.result = {'encoding': 'ascii', 'confidence': 1.0} + return self.result + + if self._mInputState == eHighbyte: + proberConfidence = None + maxProberConfidence = 0.0 + maxProber = None + for prober in self._mCharSetProbers: + if not prober: + continue + proberConfidence = prober.get_confidence() + if proberConfidence > maxProberConfidence: + maxProberConfidence = proberConfidence + maxProber = prober + if maxProber and (maxProberConfidence > MINIMUM_THRESHOLD): + self.result = {'encoding': maxProber.get_charset_name(), + 'confidence': maxProber.get_confidence()} + return self.result + + if constants._debug: + sys.stderr.write('no probers hit minimum threshhold\n') + for prober in self._mCharSetProbers[0].mProbers: + if not prober: + continue + sys.stderr.write('%s confidence = %s\n' % + (prober.get_charset_name(), + prober.get_confidence())) diff --git a/app/src/processing/app/i18n/python/requests/packages/charade/utf8prober.py b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/utf8prober.py similarity index 97% rename from app/src/processing/app/i18n/python/requests/packages/charade/utf8prober.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/charade/utf8prober.py index 72c8d3d6a..1c0bb5d8f 100644 --- a/app/src/processing/app/i18n/python/requests/packages/charade/utf8prober.py +++ b/arduino-core/src/processing/app/i18n/python/requests/packages/charade/utf8prober.py @@ -1,76 +1,76 @@ -######################## BEGIN LICENSE BLOCK ######################## -# The Original Code is mozilla.org code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 1998 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Mark Pilgrim - port to Python -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -# 02110-1301 USA -######################### END LICENSE BLOCK ######################### - -from . import constants -from .charsetprober import CharSetProber -from .codingstatemachine import CodingStateMachine -from .mbcssm import UTF8SMModel - -ONE_CHAR_PROB = 0.5 - - -class UTF8Prober(CharSetProber): - def __init__(self): - CharSetProber.__init__(self) - self._mCodingSM = CodingStateMachine(UTF8SMModel) - self.reset() - - def reset(self): - CharSetProber.reset(self) - self._mCodingSM.reset() - self._mNumOfMBChar = 0 - - def get_charset_name(self): - return "utf-8" - - def feed(self, aBuf): - for c in aBuf: - codingState = self._mCodingSM.next_state(c) - if codingState == constants.eError: - self._mState = constants.eNotMe - break - elif codingState == constants.eItsMe: - self._mState = constants.eFoundIt - break - elif codingState == constants.eStart: - if self._mCodingSM.get_current_charlen() >= 2: - self._mNumOfMBChar += 1 - - if self.get_state() == constants.eDetecting: - if self.get_confidence() > constants.SHORTCUT_THRESHOLD: - self._mState = constants.eFoundIt - - return self.get_state() - - def get_confidence(self): - unlike = 0.99 - if self._mNumOfMBChar < 6: - for i in range(0, self._mNumOfMBChar): - unlike = unlike * ONE_CHAR_PROB - return 1.0 - unlike - else: - return unlike +######################## BEGIN LICENSE BLOCK ######################## +# The Original Code is mozilla.org code. +# +# The Initial Developer of the Original Code is +# Netscape Communications Corporation. +# Portions created by the Initial Developer are Copyright (C) 1998 +# the Initial Developer. All Rights Reserved. +# +# Contributor(s): +# Mark Pilgrim - port to Python +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + +from . import constants +from .charsetprober import CharSetProber +from .codingstatemachine import CodingStateMachine +from .mbcssm import UTF8SMModel + +ONE_CHAR_PROB = 0.5 + + +class UTF8Prober(CharSetProber): + def __init__(self): + CharSetProber.__init__(self) + self._mCodingSM = CodingStateMachine(UTF8SMModel) + self.reset() + + def reset(self): + CharSetProber.reset(self) + self._mCodingSM.reset() + self._mNumOfMBChar = 0 + + def get_charset_name(self): + return "utf-8" + + def feed(self, aBuf): + for c in aBuf: + codingState = self._mCodingSM.next_state(c) + if codingState == constants.eError: + self._mState = constants.eNotMe + break + elif codingState == constants.eItsMe: + self._mState = constants.eFoundIt + break + elif codingState == constants.eStart: + if self._mCodingSM.get_current_charlen() >= 2: + self._mNumOfMBChar += 1 + + if self.get_state() == constants.eDetecting: + if self.get_confidence() > constants.SHORTCUT_THRESHOLD: + self._mState = constants.eFoundIt + + return self.get_state() + + def get_confidence(self): + unlike = 0.99 + if self._mNumOfMBChar < 6: + for i in range(0, self._mNumOfMBChar): + unlike = unlike * ONE_CHAR_PROB + return 1.0 - unlike + else: + return unlike diff --git a/app/src/processing/app/i18n/python/requests/packages/urllib3/__init__.py b/arduino-core/src/processing/app/i18n/python/requests/packages/urllib3/__init__.py similarity index 100% rename from app/src/processing/app/i18n/python/requests/packages/urllib3/__init__.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/urllib3/__init__.py diff --git a/app/src/processing/app/i18n/python/requests/packages/urllib3/_collections.py b/arduino-core/src/processing/app/i18n/python/requests/packages/urllib3/_collections.py similarity index 100% rename from app/src/processing/app/i18n/python/requests/packages/urllib3/_collections.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/urllib3/_collections.py diff --git a/app/src/processing/app/i18n/python/requests/packages/urllib3/connectionpool.py b/arduino-core/src/processing/app/i18n/python/requests/packages/urllib3/connectionpool.py similarity index 100% rename from app/src/processing/app/i18n/python/requests/packages/urllib3/connectionpool.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/urllib3/connectionpool.py diff --git a/app/src/processing/app/i18n/python/requests/packages/urllib3/contrib/__init__.py b/arduino-core/src/processing/app/i18n/python/requests/packages/urllib3/contrib/__init__.py similarity index 100% rename from app/src/processing/app/i18n/python/requests/packages/urllib3/contrib/__init__.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/urllib3/contrib/__init__.py diff --git a/app/src/processing/app/i18n/python/requests/packages/urllib3/contrib/ntlmpool.py b/arduino-core/src/processing/app/i18n/python/requests/packages/urllib3/contrib/ntlmpool.py similarity index 100% rename from app/src/processing/app/i18n/python/requests/packages/urllib3/contrib/ntlmpool.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/urllib3/contrib/ntlmpool.py diff --git a/app/src/processing/app/i18n/python/requests/packages/urllib3/exceptions.py b/arduino-core/src/processing/app/i18n/python/requests/packages/urllib3/exceptions.py similarity index 100% rename from app/src/processing/app/i18n/python/requests/packages/urllib3/exceptions.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/urllib3/exceptions.py diff --git a/app/src/processing/app/i18n/python/requests/packages/urllib3/filepost.py b/arduino-core/src/processing/app/i18n/python/requests/packages/urllib3/filepost.py similarity index 100% rename from app/src/processing/app/i18n/python/requests/packages/urllib3/filepost.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/urllib3/filepost.py diff --git a/app/src/processing/app/i18n/python/requests/packages/urllib3/packages/__init__.py b/arduino-core/src/processing/app/i18n/python/requests/packages/urllib3/packages/__init__.py similarity index 100% rename from app/src/processing/app/i18n/python/requests/packages/urllib3/packages/__init__.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/urllib3/packages/__init__.py diff --git a/app/src/processing/app/i18n/python/requests/packages/urllib3/packages/ordered_dict.py b/arduino-core/src/processing/app/i18n/python/requests/packages/urllib3/packages/ordered_dict.py similarity index 100% rename from app/src/processing/app/i18n/python/requests/packages/urllib3/packages/ordered_dict.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/urllib3/packages/ordered_dict.py diff --git a/app/src/processing/app/i18n/python/requests/packages/urllib3/packages/six.py b/arduino-core/src/processing/app/i18n/python/requests/packages/urllib3/packages/six.py similarity index 100% rename from app/src/processing/app/i18n/python/requests/packages/urllib3/packages/six.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/urllib3/packages/six.py diff --git a/app/src/processing/app/i18n/python/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py b/arduino-core/src/processing/app/i18n/python/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py similarity index 100% rename from app/src/processing/app/i18n/python/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py diff --git a/app/src/processing/app/i18n/python/requests/packages/urllib3/poolmanager.py b/arduino-core/src/processing/app/i18n/python/requests/packages/urllib3/poolmanager.py similarity index 100% rename from app/src/processing/app/i18n/python/requests/packages/urllib3/poolmanager.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/urllib3/poolmanager.py diff --git a/app/src/processing/app/i18n/python/requests/packages/urllib3/request.py b/arduino-core/src/processing/app/i18n/python/requests/packages/urllib3/request.py similarity index 100% rename from app/src/processing/app/i18n/python/requests/packages/urllib3/request.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/urllib3/request.py diff --git a/app/src/processing/app/i18n/python/requests/packages/urllib3/response.py b/arduino-core/src/processing/app/i18n/python/requests/packages/urllib3/response.py similarity index 100% rename from app/src/processing/app/i18n/python/requests/packages/urllib3/response.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/urllib3/response.py diff --git a/app/src/processing/app/i18n/python/requests/packages/urllib3/util.py b/arduino-core/src/processing/app/i18n/python/requests/packages/urllib3/util.py similarity index 100% rename from app/src/processing/app/i18n/python/requests/packages/urllib3/util.py rename to arduino-core/src/processing/app/i18n/python/requests/packages/urllib3/util.py diff --git a/app/src/processing/app/i18n/python/requests/sessions.py b/arduino-core/src/processing/app/i18n/python/requests/sessions.py similarity index 100% rename from app/src/processing/app/i18n/python/requests/sessions.py rename to arduino-core/src/processing/app/i18n/python/requests/sessions.py diff --git a/app/src/processing/app/i18n/python/requests/status_codes.py b/arduino-core/src/processing/app/i18n/python/requests/status_codes.py similarity index 100% rename from app/src/processing/app/i18n/python/requests/status_codes.py rename to arduino-core/src/processing/app/i18n/python/requests/status_codes.py diff --git a/app/src/processing/app/i18n/python/requests/structures.py b/arduino-core/src/processing/app/i18n/python/requests/structures.py similarity index 100% rename from app/src/processing/app/i18n/python/requests/structures.py rename to arduino-core/src/processing/app/i18n/python/requests/structures.py diff --git a/app/src/processing/app/i18n/python/requests/utils.py b/arduino-core/src/processing/app/i18n/python/requests/utils.py similarity index 100% rename from app/src/processing/app/i18n/python/requests/utils.py rename to arduino-core/src/processing/app/i18n/python/requests/utils.py diff --git a/app/src/processing/app/i18n/python/transifex.py b/arduino-core/src/processing/app/i18n/python/transifex.py similarity index 100% rename from app/src/processing/app/i18n/python/transifex.py rename to arduino-core/src/processing/app/i18n/python/transifex.py diff --git a/app/src/processing/app/i18n/python/update.py b/arduino-core/src/processing/app/i18n/python/update.py similarity index 100% rename from app/src/processing/app/i18n/python/update.py rename to arduino-core/src/processing/app/i18n/python/update.py diff --git a/app/src/processing/app/i18n/update.sh b/arduino-core/src/processing/app/i18n/update.sh similarity index 100% rename from app/src/processing/app/i18n/update.sh rename to arduino-core/src/processing/app/i18n/update.sh diff --git a/app/src/processing/app/legacy/PApplet.java b/arduino-core/src/processing/app/legacy/PApplet.java similarity index 100% rename from app/src/processing/app/legacy/PApplet.java rename to arduino-core/src/processing/app/legacy/PApplet.java diff --git a/app/src/processing/app/legacy/PConstants.java b/arduino-core/src/processing/app/legacy/PConstants.java similarity index 100% rename from app/src/processing/app/legacy/PConstants.java rename to arduino-core/src/processing/app/legacy/PConstants.java diff --git a/app/src/processing/app/linux/UDevAdmParser.java b/arduino-core/src/processing/app/linux/UDevAdmParser.java similarity index 100% rename from app/src/processing/app/linux/UDevAdmParser.java rename to arduino-core/src/processing/app/linux/UDevAdmParser.java diff --git a/app/src/processing/app/macosx/SystemProfilerParser.java b/arduino-core/src/processing/app/macosx/SystemProfilerParser.java similarity index 100% rename from app/src/processing/app/macosx/SystemProfilerParser.java rename to arduino-core/src/processing/app/macosx/SystemProfilerParser.java diff --git a/app/src/processing/app/packages/Library.java b/arduino-core/src/processing/app/packages/Library.java similarity index 100% rename from app/src/processing/app/packages/Library.java rename to arduino-core/src/processing/app/packages/Library.java diff --git a/app/src/processing/app/packages/LibraryList.java b/arduino-core/src/processing/app/packages/LibraryList.java similarity index 100% rename from app/src/processing/app/packages/LibraryList.java rename to arduino-core/src/processing/app/packages/LibraryList.java diff --git a/app/src/processing/app/preproc/.cvsignore b/arduino-core/src/processing/app/preproc/.cvsignore similarity index 100% rename from app/src/processing/app/preproc/.cvsignore rename to arduino-core/src/processing/app/preproc/.cvsignore diff --git a/app/src/processing/app/preproc/PdePreprocessor.java b/arduino-core/src/processing/app/preproc/PdePreprocessor.java similarity index 100% rename from app/src/processing/app/preproc/PdePreprocessor.java rename to arduino-core/src/processing/app/preproc/PdePreprocessor.java diff --git a/app/src/processing/app/windows/Advapi32.java b/arduino-core/src/processing/app/windows/Advapi32.java similarity index 96% rename from app/src/processing/app/windows/Advapi32.java rename to arduino-core/src/processing/app/windows/Advapi32.java index 0534d6b21..203fb74d7 100644 --- a/app/src/processing/app/windows/Advapi32.java +++ b/arduino-core/src/processing/app/windows/Advapi32.java @@ -1,335 +1,335 @@ -package processing.app.windows; - -/* - * Advapi32.java - * - * Created on 6. August 2007, 11:24 - * - * To change this template, choose Tools | Template Manager - * and open the template in the editor. - */ - -import com.sun.jna.*; -import com.sun.jna.ptr.*; -import com.sun.jna.win32.*; - -/** - * - * @author TB - */ -public interface Advapi32 extends StdCallLibrary { - Advapi32 INSTANCE = (Advapi32) Native.loadLibrary("Advapi32", Advapi32.class, Options.UNICODE_OPTIONS); - -/* -BOOL WINAPI LookupAccountName( - LPCTSTR lpSystemName, - LPCTSTR lpAccountName, - PSID Sid, - LPDWORD cbSid, - LPTSTR ReferencedDomainName, - LPDWORD cchReferencedDomainName, - PSID_NAME_USE peUse -);*/ - public boolean LookupAccountName(String lpSystemName, String lpAccountName, - byte[] Sid, IntByReference cbSid, char[] ReferencedDomainName, - IntByReference cchReferencedDomainName, PointerByReference peUse); - -/* -BOOL WINAPI LookupAccountSid( - LPCTSTR lpSystemName, - PSID lpSid, - LPTSTR lpName, - LPDWORD cchName, - LPTSTR lpReferencedDomainName, - LPDWORD cchReferencedDomainName, - PSID_NAME_USE peUse -);*/ - public boolean LookupAccountSid(String lpSystemName, byte[] Sid, - char[] lpName, IntByReference cchName, char[] ReferencedDomainName, - IntByReference cchReferencedDomainName, PointerByReference peUse); - -/* -BOOL ConvertSidToStringSid( - PSID Sid, - LPTSTR* StringSid -);*/ - public boolean ConvertSidToStringSid(byte[] Sid, PointerByReference StringSid); - -/* -BOOL WINAPI ConvertStringSidToSid( - LPCTSTR StringSid, - PSID* Sid -);*/ - public boolean ConvertStringSidToSid(String StringSid, PointerByReference Sid); - -/* -SC_HANDLE WINAPI OpenSCManager( - LPCTSTR lpMachineName, - LPCTSTR lpDatabaseName, - DWORD dwDesiredAccess -);*/ - public Pointer OpenSCManager(String lpMachineName, WString lpDatabaseName, int dwDesiredAccess); - -/* -BOOL WINAPI CloseServiceHandle( - SC_HANDLE hSCObject -);*/ - public boolean CloseServiceHandle(Pointer hSCObject); - -/* -SC_HANDLE WINAPI OpenService( - SC_HANDLE hSCManager, - LPCTSTR lpServiceName, - DWORD dwDesiredAccess -);*/ - public Pointer OpenService(Pointer hSCManager, String lpServiceName, int dwDesiredAccess); - -/* -BOOL WINAPI StartService( - SC_HANDLE hService, - DWORD dwNumServiceArgs, - LPCTSTR* lpServiceArgVectors -);*/ - public boolean StartService(Pointer hService, int dwNumServiceArgs, char[] lpServiceArgVectors); - -/* -BOOL WINAPI ControlService( - SC_HANDLE hService, - DWORD dwControl, - LPSERVICE_STATUS lpServiceStatus -);*/ - public boolean ControlService(Pointer hService, int dwControl, SERVICE_STATUS lpServiceStatus); - -/* -BOOL WINAPI StartServiceCtrlDispatcher( - const SERVICE_TABLE_ENTRY* lpServiceTable -);*/ - public boolean StartServiceCtrlDispatcher(Structure[] lpServiceTable); - -/* -SERVICE_STATUS_HANDLE WINAPI RegisterServiceCtrlHandler( - LPCTSTR lpServiceName, - LPHANDLER_FUNCTION lpHandlerProc -);*/ - public Pointer RegisterServiceCtrlHandler(String lpServiceName, Handler lpHandlerProc); - -/* -SERVICE_STATUS_HANDLE WINAPI RegisterServiceCtrlHandlerEx( - LPCTSTR lpServiceName, - LPHANDLER_FUNCTION_EX lpHandlerProc, - LPVOID lpContext -);*/ - public Pointer RegisterServiceCtrlHandlerEx(String lpServiceName, HandlerEx lpHandlerProc, Pointer lpContext); - -/* -BOOL WINAPI SetServiceStatus( - SERVICE_STATUS_HANDLE hServiceStatus, - LPSERVICE_STATUS lpServiceStatus -);*/ - public boolean SetServiceStatus(Pointer hServiceStatus, SERVICE_STATUS lpServiceStatus); - -/* -SC_HANDLE WINAPI CreateService( - SC_HANDLE hSCManager, - LPCTSTR lpServiceName, - LPCTSTR lpDisplayName, - DWORD dwDesiredAccess, - DWORD dwServiceType, - DWORD dwStartType, - DWORD dwErrorControl, - LPCTSTR lpBinaryPathName, - LPCTSTR lpLoadOrderGroup, - LPDWORD lpdwTagId, - LPCTSTR lpDependencies, - LPCTSTR lpServiceStartName, - LPCTSTR lpPassword -);*/ - public Pointer CreateService(Pointer hSCManager, String lpServiceName, String lpDisplayName, - int dwDesiredAccess, int dwServiceType, int dwStartType, int dwErrorControl, - String lpBinaryPathName, String lpLoadOrderGroup, IntByReference lpdwTagId, - String lpDependencies, String lpServiceStartName, String lpPassword); - -/* -BOOL WINAPI DeleteService( - SC_HANDLE hService -);*/ - public boolean DeleteService(Pointer hService); - -/* -BOOL WINAPI ChangeServiceConfig2( - SC_HANDLE hService, - DWORD dwInfoLevel, - LPVOID lpInfo -);*/ - public boolean ChangeServiceConfig2(Pointer hService, int dwInfoLevel, ChangeServiceConfig2Info lpInfo); - -/* -LONG WINAPI RegOpenKeyEx( - HKEY hKey, - LPCTSTR lpSubKey, - DWORD ulOptions, - REGSAM samDesired, - PHKEY phkResult -);*/ - public int RegOpenKeyEx(int hKey, String lpSubKey, int ulOptions, int samDesired, IntByReference phkResult); - -/* -LONG WINAPI RegQueryValueEx( - HKEY hKey, - LPCTSTR lpValueName, - LPDWORD lpReserved, - LPDWORD lpType, - LPBYTE lpData, - LPDWORD lpcbData -);*/ - public int RegQueryValueEx(int hKey, String lpValueName, IntByReference lpReserved, IntByReference lpType, byte[] lpData, IntByReference lpcbData); - -/* -LONG WINAPI RegCloseKey( - HKEY hKey -);*/ - public int RegCloseKey(int hKey); - -/* -LONG WINAPI RegDeleteValue( - HKEY hKey, - LPCTSTR lpValueName -);*/ - public int RegDeleteValue(int hKey, String lpValueName); - -/* -LONG WINAPI RegSetValueEx( - HKEY hKey, - LPCTSTR lpValueName, - DWORD Reserved, - DWORD dwType, - const BYTE* lpData, - DWORD cbData -);*/ - public int RegSetValueEx(int hKey, String lpValueName, int Reserved, int dwType, byte[] lpData, int cbData); - -/* -LONG WINAPI RegCreateKeyEx( - HKEY hKey, - LPCTSTR lpSubKey, - DWORD Reserved, - LPTSTR lpClass, - DWORD dwOptions, - REGSAM samDesired, - LPSECURITY_ATTRIBUTES lpSecurityAttributes, - PHKEY phkResult, - LPDWORD lpdwDisposition -);*/ - public int RegCreateKeyEx(int hKey, String lpSubKey, int Reserved, String lpClass, int dwOptions, - int samDesired, WINBASE.SECURITY_ATTRIBUTES lpSecurityAttributes, IntByReference phkResult, - IntByReference lpdwDisposition); - -/* -LONG WINAPI RegDeleteKey( - HKEY hKey, - LPCTSTR lpSubKey -);*/ - public int RegDeleteKey(int hKey, String name); - -/* -LONG WINAPI RegEnumKeyEx( - HKEY hKey, - DWORD dwIndex, - LPTSTR lpName, - LPDWORD lpcName, - LPDWORD lpReserved, - LPTSTR lpClass, - LPDWORD lpcClass, - PFILETIME lpftLastWriteTime -);*/ - public int RegEnumKeyEx(int hKey, int dwIndex, char[] lpName, IntByReference lpcName, IntByReference reserved, - char[] lpClass, IntByReference lpcClass, WINBASE.FILETIME lpftLastWriteTime); - -/* -LONG WINAPI RegEnumValue( - HKEY hKey, - DWORD dwIndex, - LPTSTR lpValueName, - LPDWORD lpcchValueName, - LPDWORD lpReserved, - LPDWORD lpType, - LPBYTE lpData, - LPDWORD lpcbData -);*/ - public int RegEnumValue(int hKey, int dwIndex, char[] lpValueName, IntByReference lpcchValueName, IntByReference reserved, - IntByReference lpType, byte[] lpData, IntByReference lpcbData); - - interface SERVICE_MAIN_FUNCTION extends StdCallCallback { - /* - VOID WINAPI ServiceMain( - DWORD dwArgc, - LPTSTR* lpszArgv - );*/ - public void callback(int dwArgc, Pointer lpszArgv); - } - - interface Handler extends StdCallCallback { - /* - VOID WINAPI Handler( - DWORD fdwControl - );*/ - public void callback(int fdwControl); - } - - interface HandlerEx extends StdCallCallback { - /* - DWORD WINAPI HandlerEx( - DWORD dwControl, - DWORD dwEventType, - LPVOID lpEventData, - LPVOID lpContext - );*/ - public void callback(int dwControl, int dwEventType, Pointer lpEventData, Pointer lpContext); - } - -/* -typedef struct _SERVICE_STATUS { - DWORD dwServiceType; - DWORD dwCurrentState; - DWORD dwControlsAccepted; - DWORD dwWin32ExitCode; - DWORD dwServiceSpecificExitCode; - DWORD dwCheckPoint; - DWORD dwWaitHint; -} SERVICE_STATUS, - *LPSERVICE_STATUS;*/ - public static class SERVICE_STATUS extends Structure { - public int dwServiceType; - public int dwCurrentState; - public int dwControlsAccepted; - public int dwWin32ExitCode; - public int dwServiceSpecificExitCode; - public int dwCheckPoint; - public int dwWaitHint; - } - -/* -typedef struct _SERVICE_TABLE_ENTRY { - LPTSTR lpServiceName; - LPSERVICE_MAIN_FUNCTION lpServiceProc; -} SERVICE_TABLE_ENTRY, - *LPSERVICE_TABLE_ENTRY;*/ - public static class SERVICE_TABLE_ENTRY extends Structure { - public String lpServiceName; - public SERVICE_MAIN_FUNCTION lpServiceProc; - } - - public static class ChangeServiceConfig2Info extends Structure { - } - -/* - typedef struct _SERVICE_DESCRIPTION { - LPTSTR lpDescription; -} SERVICE_DESCRIPTION, - *LPSERVICE_DESCRIPTION;*/ - public static class SERVICE_DESCRIPTION extends ChangeServiceConfig2Info { - public String lpDescription; - } -} - - +package processing.app.windows; + +/* + * Advapi32.java + * + * Created on 6. August 2007, 11:24 + * + * To change this template, choose Tools | Template Manager + * and open the template in the editor. + */ + +import com.sun.jna.*; +import com.sun.jna.ptr.*; +import com.sun.jna.win32.*; + +/** + * + * @author TB + */ +public interface Advapi32 extends StdCallLibrary { + Advapi32 INSTANCE = (Advapi32) Native.loadLibrary("Advapi32", Advapi32.class, Options.UNICODE_OPTIONS); + +/* +BOOL WINAPI LookupAccountName( + LPCTSTR lpSystemName, + LPCTSTR lpAccountName, + PSID Sid, + LPDWORD cbSid, + LPTSTR ReferencedDomainName, + LPDWORD cchReferencedDomainName, + PSID_NAME_USE peUse +);*/ + public boolean LookupAccountName(String lpSystemName, String lpAccountName, + byte[] Sid, IntByReference cbSid, char[] ReferencedDomainName, + IntByReference cchReferencedDomainName, PointerByReference peUse); + +/* +BOOL WINAPI LookupAccountSid( + LPCTSTR lpSystemName, + PSID lpSid, + LPTSTR lpName, + LPDWORD cchName, + LPTSTR lpReferencedDomainName, + LPDWORD cchReferencedDomainName, + PSID_NAME_USE peUse +);*/ + public boolean LookupAccountSid(String lpSystemName, byte[] Sid, + char[] lpName, IntByReference cchName, char[] ReferencedDomainName, + IntByReference cchReferencedDomainName, PointerByReference peUse); + +/* +BOOL ConvertSidToStringSid( + PSID Sid, + LPTSTR* StringSid +);*/ + public boolean ConvertSidToStringSid(byte[] Sid, PointerByReference StringSid); + +/* +BOOL WINAPI ConvertStringSidToSid( + LPCTSTR StringSid, + PSID* Sid +);*/ + public boolean ConvertStringSidToSid(String StringSid, PointerByReference Sid); + +/* +SC_HANDLE WINAPI OpenSCManager( + LPCTSTR lpMachineName, + LPCTSTR lpDatabaseName, + DWORD dwDesiredAccess +);*/ + public Pointer OpenSCManager(String lpMachineName, WString lpDatabaseName, int dwDesiredAccess); + +/* +BOOL WINAPI CloseServiceHandle( + SC_HANDLE hSCObject +);*/ + public boolean CloseServiceHandle(Pointer hSCObject); + +/* +SC_HANDLE WINAPI OpenService( + SC_HANDLE hSCManager, + LPCTSTR lpServiceName, + DWORD dwDesiredAccess +);*/ + public Pointer OpenService(Pointer hSCManager, String lpServiceName, int dwDesiredAccess); + +/* +BOOL WINAPI StartService( + SC_HANDLE hService, + DWORD dwNumServiceArgs, + LPCTSTR* lpServiceArgVectors +);*/ + public boolean StartService(Pointer hService, int dwNumServiceArgs, char[] lpServiceArgVectors); + +/* +BOOL WINAPI ControlService( + SC_HANDLE hService, + DWORD dwControl, + LPSERVICE_STATUS lpServiceStatus +);*/ + public boolean ControlService(Pointer hService, int dwControl, SERVICE_STATUS lpServiceStatus); + +/* +BOOL WINAPI StartServiceCtrlDispatcher( + const SERVICE_TABLE_ENTRY* lpServiceTable +);*/ + public boolean StartServiceCtrlDispatcher(Structure[] lpServiceTable); + +/* +SERVICE_STATUS_HANDLE WINAPI RegisterServiceCtrlHandler( + LPCTSTR lpServiceName, + LPHANDLER_FUNCTION lpHandlerProc +);*/ + public Pointer RegisterServiceCtrlHandler(String lpServiceName, Handler lpHandlerProc); + +/* +SERVICE_STATUS_HANDLE WINAPI RegisterServiceCtrlHandlerEx( + LPCTSTR lpServiceName, + LPHANDLER_FUNCTION_EX lpHandlerProc, + LPVOID lpContext +);*/ + public Pointer RegisterServiceCtrlHandlerEx(String lpServiceName, HandlerEx lpHandlerProc, Pointer lpContext); + +/* +BOOL WINAPI SetServiceStatus( + SERVICE_STATUS_HANDLE hServiceStatus, + LPSERVICE_STATUS lpServiceStatus +);*/ + public boolean SetServiceStatus(Pointer hServiceStatus, SERVICE_STATUS lpServiceStatus); + +/* +SC_HANDLE WINAPI CreateService( + SC_HANDLE hSCManager, + LPCTSTR lpServiceName, + LPCTSTR lpDisplayName, + DWORD dwDesiredAccess, + DWORD dwServiceType, + DWORD dwStartType, + DWORD dwErrorControl, + LPCTSTR lpBinaryPathName, + LPCTSTR lpLoadOrderGroup, + LPDWORD lpdwTagId, + LPCTSTR lpDependencies, + LPCTSTR lpServiceStartName, + LPCTSTR lpPassword +);*/ + public Pointer CreateService(Pointer hSCManager, String lpServiceName, String lpDisplayName, + int dwDesiredAccess, int dwServiceType, int dwStartType, int dwErrorControl, + String lpBinaryPathName, String lpLoadOrderGroup, IntByReference lpdwTagId, + String lpDependencies, String lpServiceStartName, String lpPassword); + +/* +BOOL WINAPI DeleteService( + SC_HANDLE hService +);*/ + public boolean DeleteService(Pointer hService); + +/* +BOOL WINAPI ChangeServiceConfig2( + SC_HANDLE hService, + DWORD dwInfoLevel, + LPVOID lpInfo +);*/ + public boolean ChangeServiceConfig2(Pointer hService, int dwInfoLevel, ChangeServiceConfig2Info lpInfo); + +/* +LONG WINAPI RegOpenKeyEx( + HKEY hKey, + LPCTSTR lpSubKey, + DWORD ulOptions, + REGSAM samDesired, + PHKEY phkResult +);*/ + public int RegOpenKeyEx(int hKey, String lpSubKey, int ulOptions, int samDesired, IntByReference phkResult); + +/* +LONG WINAPI RegQueryValueEx( + HKEY hKey, + LPCTSTR lpValueName, + LPDWORD lpReserved, + LPDWORD lpType, + LPBYTE lpData, + LPDWORD lpcbData +);*/ + public int RegQueryValueEx(int hKey, String lpValueName, IntByReference lpReserved, IntByReference lpType, byte[] lpData, IntByReference lpcbData); + +/* +LONG WINAPI RegCloseKey( + HKEY hKey +);*/ + public int RegCloseKey(int hKey); + +/* +LONG WINAPI RegDeleteValue( + HKEY hKey, + LPCTSTR lpValueName +);*/ + public int RegDeleteValue(int hKey, String lpValueName); + +/* +LONG WINAPI RegSetValueEx( + HKEY hKey, + LPCTSTR lpValueName, + DWORD Reserved, + DWORD dwType, + const BYTE* lpData, + DWORD cbData +);*/ + public int RegSetValueEx(int hKey, String lpValueName, int Reserved, int dwType, byte[] lpData, int cbData); + +/* +LONG WINAPI RegCreateKeyEx( + HKEY hKey, + LPCTSTR lpSubKey, + DWORD Reserved, + LPTSTR lpClass, + DWORD dwOptions, + REGSAM samDesired, + LPSECURITY_ATTRIBUTES lpSecurityAttributes, + PHKEY phkResult, + LPDWORD lpdwDisposition +);*/ + public int RegCreateKeyEx(int hKey, String lpSubKey, int Reserved, String lpClass, int dwOptions, + int samDesired, WINBASE.SECURITY_ATTRIBUTES lpSecurityAttributes, IntByReference phkResult, + IntByReference lpdwDisposition); + +/* +LONG WINAPI RegDeleteKey( + HKEY hKey, + LPCTSTR lpSubKey +);*/ + public int RegDeleteKey(int hKey, String name); + +/* +LONG WINAPI RegEnumKeyEx( + HKEY hKey, + DWORD dwIndex, + LPTSTR lpName, + LPDWORD lpcName, + LPDWORD lpReserved, + LPTSTR lpClass, + LPDWORD lpcClass, + PFILETIME lpftLastWriteTime +);*/ + public int RegEnumKeyEx(int hKey, int dwIndex, char[] lpName, IntByReference lpcName, IntByReference reserved, + char[] lpClass, IntByReference lpcClass, WINBASE.FILETIME lpftLastWriteTime); + +/* +LONG WINAPI RegEnumValue( + HKEY hKey, + DWORD dwIndex, + LPTSTR lpValueName, + LPDWORD lpcchValueName, + LPDWORD lpReserved, + LPDWORD lpType, + LPBYTE lpData, + LPDWORD lpcbData +);*/ + public int RegEnumValue(int hKey, int dwIndex, char[] lpValueName, IntByReference lpcchValueName, IntByReference reserved, + IntByReference lpType, byte[] lpData, IntByReference lpcbData); + + interface SERVICE_MAIN_FUNCTION extends StdCallCallback { + /* + VOID WINAPI ServiceMain( + DWORD dwArgc, + LPTSTR* lpszArgv + );*/ + public void callback(int dwArgc, Pointer lpszArgv); + } + + interface Handler extends StdCallCallback { + /* + VOID WINAPI Handler( + DWORD fdwControl + );*/ + public void callback(int fdwControl); + } + + interface HandlerEx extends StdCallCallback { + /* + DWORD WINAPI HandlerEx( + DWORD dwControl, + DWORD dwEventType, + LPVOID lpEventData, + LPVOID lpContext + );*/ + public void callback(int dwControl, int dwEventType, Pointer lpEventData, Pointer lpContext); + } + +/* +typedef struct _SERVICE_STATUS { + DWORD dwServiceType; + DWORD dwCurrentState; + DWORD dwControlsAccepted; + DWORD dwWin32ExitCode; + DWORD dwServiceSpecificExitCode; + DWORD dwCheckPoint; + DWORD dwWaitHint; +} SERVICE_STATUS, + *LPSERVICE_STATUS;*/ + public static class SERVICE_STATUS extends Structure { + public int dwServiceType; + public int dwCurrentState; + public int dwControlsAccepted; + public int dwWin32ExitCode; + public int dwServiceSpecificExitCode; + public int dwCheckPoint; + public int dwWaitHint; + } + +/* +typedef struct _SERVICE_TABLE_ENTRY { + LPTSTR lpServiceName; + LPSERVICE_MAIN_FUNCTION lpServiceProc; +} SERVICE_TABLE_ENTRY, + *LPSERVICE_TABLE_ENTRY;*/ + public static class SERVICE_TABLE_ENTRY extends Structure { + public String lpServiceName; + public SERVICE_MAIN_FUNCTION lpServiceProc; + } + + public static class ChangeServiceConfig2Info extends Structure { + } + +/* + typedef struct _SERVICE_DESCRIPTION { + LPTSTR lpDescription; +} SERVICE_DESCRIPTION, + *LPSERVICE_DESCRIPTION;*/ + public static class SERVICE_DESCRIPTION extends ChangeServiceConfig2Info { + public String lpDescription; + } +} + + diff --git a/app/src/processing/app/windows/ListComPortsParser.java b/arduino-core/src/processing/app/windows/ListComPortsParser.java similarity index 100% rename from app/src/processing/app/windows/ListComPortsParser.java rename to arduino-core/src/processing/app/windows/ListComPortsParser.java diff --git a/app/src/processing/app/windows/Options.java b/arduino-core/src/processing/app/windows/Options.java similarity index 95% rename from app/src/processing/app/windows/Options.java rename to arduino-core/src/processing/app/windows/Options.java index f5cff2888..6f5239172 100644 --- a/app/src/processing/app/windows/Options.java +++ b/arduino-core/src/processing/app/windows/Options.java @@ -1,27 +1,27 @@ -/* - * Options.java - * - * Created on 8. August 2007, 17:07 - * - * To change this template, choose Tools | Template Manager - * and open the template in the editor. - */ - -package processing.app.windows; - -import static com.sun.jna.Library.*; -import com.sun.jna.win32.*; -import java.util.*; - -/** - * - * @author TB - */ -public interface Options { - Map UNICODE_OPTIONS = new HashMap() { - { - put(OPTION_TYPE_MAPPER, W32APITypeMapper.UNICODE); - put(OPTION_FUNCTION_MAPPER, W32APIFunctionMapper.UNICODE); - } - }; -} +/* + * Options.java + * + * Created on 8. August 2007, 17:07 + * + * To change this template, choose Tools | Template Manager + * and open the template in the editor. + */ + +package processing.app.windows; + +import static com.sun.jna.Library.*; +import com.sun.jna.win32.*; +import java.util.*; + +/** + * + * @author TB + */ +public interface Options { + Map UNICODE_OPTIONS = new HashMap() { + { + put(OPTION_TYPE_MAPPER, W32APITypeMapper.UNICODE); + put(OPTION_FUNCTION_MAPPER, W32APIFunctionMapper.UNICODE); + } + }; +} diff --git a/app/src/processing/app/windows/Registry.java b/arduino-core/src/processing/app/windows/Registry.java similarity index 100% rename from app/src/processing/app/windows/Registry.java rename to arduino-core/src/processing/app/windows/Registry.java diff --git a/app/src/processing/app/windows/WINBASE.java b/arduino-core/src/processing/app/windows/WINBASE.java similarity index 95% rename from app/src/processing/app/windows/WINBASE.java rename to arduino-core/src/processing/app/windows/WINBASE.java index c4807cc90..78a386f04 100644 --- a/app/src/processing/app/windows/WINBASE.java +++ b/arduino-core/src/processing/app/windows/WINBASE.java @@ -1,43 +1,43 @@ -/* - * WINBASE.java - * - * Created on 5. September 2007, 11:24 - * - * To change this template, choose Tools | Template Manager - * and open the template in the editor. - */ - -package processing.app.windows; - -import com.sun.jna.Pointer; -import com.sun.jna.Structure; - -/** - * - * @author TB - */ -public interface WINBASE { -/* -typedef struct _SECURITY_ATTRIBUTES { - DWORD nLength; - LPVOID lpSecurityDescriptor; - BOOL bInheritHandle; -} SECURITY_ATTRIBUTES, - *PSECURITY_ATTRIBUTES, - *LPSECURITY_ATTRIBUTES;*/ - public static class SECURITY_ATTRIBUTES extends Structure { - public int nLength; - public Pointer lpSecurityDescriptor; - public boolean bInheritHandle; - } - -/* -typedef struct _FILETIME { - DWORD dwLowDateTime; - DWORD dwHighDateTime; -} FILETIME, *PFILETIME, *LPFILETIME;*/ - public static class FILETIME extends Structure { - public int dwLowDateTime; - public int dwHighDateTime; - } -} +/* + * WINBASE.java + * + * Created on 5. September 2007, 11:24 + * + * To change this template, choose Tools | Template Manager + * and open the template in the editor. + */ + +package processing.app.windows; + +import com.sun.jna.Pointer; +import com.sun.jna.Structure; + +/** + * + * @author TB + */ +public interface WINBASE { +/* +typedef struct _SECURITY_ATTRIBUTES { + DWORD nLength; + LPVOID lpSecurityDescriptor; + BOOL bInheritHandle; +} SECURITY_ATTRIBUTES, + *PSECURITY_ATTRIBUTES, + *LPSECURITY_ATTRIBUTES;*/ + public static class SECURITY_ATTRIBUTES extends Structure { + public int nLength; + public Pointer lpSecurityDescriptor; + public boolean bInheritHandle; + } + +/* +typedef struct _FILETIME { + DWORD dwLowDateTime; + DWORD dwHighDateTime; +} FILETIME, *PFILETIME, *LPFILETIME;*/ + public static class FILETIME extends Structure { + public int dwLowDateTime; + public int dwHighDateTime; + } +} diff --git a/app/src/processing/app/windows/WINERROR.java b/arduino-core/src/processing/app/windows/WINERROR.java similarity index 95% rename from app/src/processing/app/windows/WINERROR.java rename to arduino-core/src/processing/app/windows/WINERROR.java index 3e1146e93..a9382cfcb 100644 --- a/app/src/processing/app/windows/WINERROR.java +++ b/arduino-core/src/processing/app/windows/WINERROR.java @@ -1,22 +1,22 @@ -/* - * WINERROR.java - * - * Created on 7. August 2007, 08:09 - * - * To change this template, choose Tools | Template Manager - * and open the template in the editor. - */ - -package processing.app.windows; - - -/** - * - * @author TB - */ -public interface WINERROR { - public final static int ERROR_SUCCESS = 0; - public final static int NO_ERROR = 0; - public final static int ERROR_FILE_NOT_FOUND = 2; - public final static int ERROR_MORE_DATA = 234; -} +/* + * WINERROR.java + * + * Created on 7. August 2007, 08:09 + * + * To change this template, choose Tools | Template Manager + * and open the template in the editor. + */ + +package processing.app.windows; + + +/** + * + * @author TB + */ +public interface WINERROR { + public final static int ERROR_SUCCESS = 0; + public final static int NO_ERROR = 0; + public final static int ERROR_FILE_NOT_FOUND = 2; + public final static int ERROR_MORE_DATA = 234; +} diff --git a/app/src/processing/app/windows/WINNT.java b/arduino-core/src/processing/app/windows/WINNT.java similarity index 98% rename from app/src/processing/app/windows/WINNT.java rename to arduino-core/src/processing/app/windows/WINNT.java index 89aa36168..c08c9f5a3 100644 --- a/app/src/processing/app/windows/WINNT.java +++ b/arduino-core/src/processing/app/windows/WINNT.java @@ -1,73 +1,73 @@ -/* - * WINNT.java - * - * Created on 8. August 2007, 13:41 - * - * To change this template, choose Tools | Template Manager - * and open the template in the editor. - */ - -package processing.app.windows; - -/** - * - * @author TB - */ -public interface WINNT { - public final static int DELETE = 0x00010000; - public final static int READ_CONTROL = 0x00020000; - public final static int WRITE_DAC = 0x00040000; - public final static int WRITE_OWNER = 0x00080000; - public final static int SYNCHRONIZE = 0x00100000; - - public final static int STANDARD_RIGHTS_REQUIRED = 0x000F0000; - - public final static int STANDARD_RIGHTS_READ = READ_CONTROL; - public final static int STANDARD_RIGHTS_WRITE = READ_CONTROL; - public final static int STANDARD_RIGHTS_EXECUTE = READ_CONTROL; - - public final static int STANDARD_RIGHTS_ALL = 0x001F0000; - - public final static int SPECIFIC_RIGHTS_ALL = 0x0000FFFF; - - public final static int GENERIC_EXECUTE = 0x20000000; - - public final static int SERVICE_WIN32_OWN_PROCESS = 0x00000010; - - public final static int KEY_QUERY_VALUE = 0x0001; - public final static int KEY_SET_VALUE = 0x0002; - public final static int KEY_CREATE_SUB_KEY = 0x0004; - public final static int KEY_ENUMERATE_SUB_KEYS = 0x0008; - public final static int KEY_NOTIFY = 0x0010; - public final static int KEY_CREATE_LINK = 0x0020; - - public final static int KEY_READ = ((STANDARD_RIGHTS_READ | KEY_QUERY_VALUE | KEY_ENUMERATE_SUB_KEYS | KEY_NOTIFY) & (~SYNCHRONIZE)); - public final static int KEY_WRITE = ((STANDARD_RIGHTS_WRITE | KEY_SET_VALUE | KEY_CREATE_SUB_KEY) & (~SYNCHRONIZE)); - - public final static int REG_NONE = 0; // No value type - public final static int REG_SZ = 1; // Unicode nul terminated string - public final static int REG_EXPAND_SZ = 2; // Unicode nul terminated string - // (with environment variable references) - public final static int REG_BINARY = 3; // Free form binary - public final static int REG_DWORD = 4; // 32-bit number - public final static int REG_DWORD_LITTLE_ENDIAN = 4; // 32-bit number (same as REG_DWORD) - public final static int REG_DWORD_BIG_ENDIAN = 5; // 32-bit number - public final static int REG_LINK = 6; // Symbolic Link (unicode) - public final static int REG_MULTI_SZ = 7; // Multiple Unicode strings - public final static int REG_RESOURCE_LIST = 8; // Resource list in the resource map - public final static int REG_FULL_RESOURCE_DESCRIPTOR = 9; // Resource list in the hardware description - public final static int REG_RESOURCE_REQUIREMENTS_LIST = 10; - - public final static int REG_OPTION_RESERVED = 0x00000000; // Parameter is reserved - public final static int REG_OPTION_NON_VOLATILE = 0x00000000; // Key is preserved - // when system is rebooted - public final static int REG_OPTION_VOLATILE = 0x00000001; // Key is not preserved - // when system is rebooted - public final static int REG_OPTION_CREATE_LINK = 0x00000002; // Created key is a - // symbolic link - public final static int REG_OPTION_BACKUP_RESTORE = 0x00000004; // open for backup or restore - // special access rules - // privilege required - public final static int REG_OPTION_OPEN_LINK = 0x00000008; // Open symbolic link - -} +/* + * WINNT.java + * + * Created on 8. August 2007, 13:41 + * + * To change this template, choose Tools | Template Manager + * and open the template in the editor. + */ + +package processing.app.windows; + +/** + * + * @author TB + */ +public interface WINNT { + public final static int DELETE = 0x00010000; + public final static int READ_CONTROL = 0x00020000; + public final static int WRITE_DAC = 0x00040000; + public final static int WRITE_OWNER = 0x00080000; + public final static int SYNCHRONIZE = 0x00100000; + + public final static int STANDARD_RIGHTS_REQUIRED = 0x000F0000; + + public final static int STANDARD_RIGHTS_READ = READ_CONTROL; + public final static int STANDARD_RIGHTS_WRITE = READ_CONTROL; + public final static int STANDARD_RIGHTS_EXECUTE = READ_CONTROL; + + public final static int STANDARD_RIGHTS_ALL = 0x001F0000; + + public final static int SPECIFIC_RIGHTS_ALL = 0x0000FFFF; + + public final static int GENERIC_EXECUTE = 0x20000000; + + public final static int SERVICE_WIN32_OWN_PROCESS = 0x00000010; + + public final static int KEY_QUERY_VALUE = 0x0001; + public final static int KEY_SET_VALUE = 0x0002; + public final static int KEY_CREATE_SUB_KEY = 0x0004; + public final static int KEY_ENUMERATE_SUB_KEYS = 0x0008; + public final static int KEY_NOTIFY = 0x0010; + public final static int KEY_CREATE_LINK = 0x0020; + + public final static int KEY_READ = ((STANDARD_RIGHTS_READ | KEY_QUERY_VALUE | KEY_ENUMERATE_SUB_KEYS | KEY_NOTIFY) & (~SYNCHRONIZE)); + public final static int KEY_WRITE = ((STANDARD_RIGHTS_WRITE | KEY_SET_VALUE | KEY_CREATE_SUB_KEY) & (~SYNCHRONIZE)); + + public final static int REG_NONE = 0; // No value type + public final static int REG_SZ = 1; // Unicode nul terminated string + public final static int REG_EXPAND_SZ = 2; // Unicode nul terminated string + // (with environment variable references) + public final static int REG_BINARY = 3; // Free form binary + public final static int REG_DWORD = 4; // 32-bit number + public final static int REG_DWORD_LITTLE_ENDIAN = 4; // 32-bit number (same as REG_DWORD) + public final static int REG_DWORD_BIG_ENDIAN = 5; // 32-bit number + public final static int REG_LINK = 6; // Symbolic Link (unicode) + public final static int REG_MULTI_SZ = 7; // Multiple Unicode strings + public final static int REG_RESOURCE_LIST = 8; // Resource list in the resource map + public final static int REG_FULL_RESOURCE_DESCRIPTOR = 9; // Resource list in the hardware description + public final static int REG_RESOURCE_REQUIREMENTS_LIST = 10; + + public final static int REG_OPTION_RESERVED = 0x00000000; // Parameter is reserved + public final static int REG_OPTION_NON_VOLATILE = 0x00000000; // Key is preserved + // when system is rebooted + public final static int REG_OPTION_VOLATILE = 0x00000001; // Key is not preserved + // when system is rebooted + public final static int REG_OPTION_CREATE_LINK = 0x00000002; // Created key is a + // symbolic link + public final static int REG_OPTION_BACKUP_RESTORE = 0x00000004; // open for backup or restore + // special access rules + // privilege required + public final static int REG_OPTION_OPEN_LINK = 0x00000008; // Open symbolic link + +} diff --git a/app/src/processing/app/windows/WINREG.java b/arduino-core/src/processing/app/windows/WINREG.java similarity index 95% rename from app/src/processing/app/windows/WINREG.java rename to arduino-core/src/processing/app/windows/WINREG.java index 988f7ef36..07a7c23cb 100644 --- a/app/src/processing/app/windows/WINREG.java +++ b/arduino-core/src/processing/app/windows/WINREG.java @@ -1,21 +1,21 @@ -/* - * WINREG.java - * - * Created on 17. August 2007, 14:32 - * - * To change this template, choose Tools | Template Manager - * and open the template in the editor. - */ - -package processing.app.windows; - -/** - * - * @author TB - */ -public interface WINREG { - public final static int HKEY_CLASSES_ROOT = 0x80000000; - public final static int HKEY_CURRENT_USER = 0x80000001; - public final static int HKEY_LOCAL_MACHINE = 0x80000002; - public final static int HKEY_USERS = 0x80000003; -} +/* + * WINREG.java + * + * Created on 17. August 2007, 14:32 + * + * To change this template, choose Tools | Template Manager + * and open the template in the editor. + */ + +package processing.app.windows; + +/** + * + * @author TB + */ +public interface WINREG { + public final static int HKEY_CLASSES_ROOT = 0x80000000; + public final static int HKEY_CURRENT_USER = 0x80000001; + public final static int HKEY_LOCAL_MACHINE = 0x80000002; + public final static int HKEY_USERS = 0x80000003; +} diff --git a/app/src/processing/app/zeroconf/jmdns/ArduinoDNSTaskStarter.java b/arduino-core/src/processing/app/zeroconf/jmdns/ArduinoDNSTaskStarter.java similarity index 100% rename from app/src/processing/app/zeroconf/jmdns/ArduinoDNSTaskStarter.java rename to arduino-core/src/processing/app/zeroconf/jmdns/ArduinoDNSTaskStarter.java From d1f4e0370d135d4c9b7cbb54a25f1f2925015c41 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Wed, 24 Sep 2014 11:35:30 +0200 Subject: [PATCH 070/148] arduino-core project is now correctly compiled through ant build script --- .classpath | 2 +- .gitignore | 4 +- app/build.xml | 10 ++-- arduino-core/build.xml | 52 +++++++++++++++++++ build/build.xml | 7 ++- build/macosx/template.app/Contents/Info.plist | 2 +- 6 files changed, 67 insertions(+), 10 deletions(-) create mode 100644 arduino-core/build.xml diff --git a/.classpath b/.classpath index 380ae45fa..be02d8d67 100644 --- a/.classpath +++ b/.classpath @@ -3,7 +3,6 @@ - @@ -21,5 +20,6 @@ + diff --git a/.gitignore b/.gitignore index 3df768b55..6eb802a6c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,8 @@ app/bin/ app/pde.jar build/macosx/work/ -core/bin/ -core/core.jar +arduino-core/bin/ +arduino-core/arduino-core.jar hardware/arduino/bootloaders/caterina_LUFA/Descriptors.o hardware/arduino/bootloaders/caterina_LUFA/Descriptors.lst hardware/arduino/bootloaders/caterina_LUFA/Caterina.sym diff --git a/app/build.xml b/app/build.xml index 0fbcfeea2..31f52adf2 100644 --- a/app/build.xml +++ b/app/build.xml @@ -6,7 +6,7 @@ - + @@ -24,6 +24,11 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/build/build.xml b/build/build.xml index 1d646714a..229640ebe 100644 --- a/build/build.xml +++ b/build/build.xml @@ -39,6 +39,7 @@ + @@ -83,10 +84,12 @@ + + @@ -160,7 +163,7 @@ - @@ -170,7 +173,7 @@ - + diff --git a/build/macosx/template.app/Contents/Info.plist b/build/macosx/template.app/Contents/Info.plist index fe985281f..726fd700f 100755 --- a/build/macosx/template.app/Contents/Info.plist +++ b/build/macosx/template.app/Contents/Info.plist @@ -94,7 +94,7 @@ - $JAVAROOT/pde.jar:$JAVAROOT/antlr.jar:$JAVAROOT/apple.jar:$JAVAROOT/ecj.jar:$JAVAROOT/registry.jar:$JAVAROOT/quaqua.jar:$JAVAROOT/jssc-2.8.0.jar:$JAVAROOT/commons-codec-1.7.jar:$JAVAROOT/commons-exec-1.1.jar:$JAVAROOT/commons-httpclient-3.1.jar:$JAVAROOT/commons-logging-1.0.4.jar:$JAVAROOT/jmdns-3.4.1.jar:$JAVAROOT/jsch-0.1.50.jar:$JAVAROOT/jna.jar + $JAVAROOT/pde.jar:$JAVAROOT/arduino-core.jar:$JAVAROOT/antlr.jar:$JAVAROOT/apple.jar:$JAVAROOT/ecj.jar:$JAVAROOT/registry.jar:$JAVAROOT/quaqua.jar:$JAVAROOT/jssc-2.8.0.jar:$JAVAROOT/commons-codec-1.7.jar:$JAVAROOT/commons-exec-1.1.jar:$JAVAROOT/commons-httpclient-3.1.jar:$JAVAROOT/commons-logging-1.0.4.jar:$JAVAROOT/jmdns-3.4.1.jar:$JAVAROOT/jsch-0.1.50.jar:$JAVAROOT/jna.jar JVMArchs From 98bdc7b58752e61b0784362ae1cb3c57c5089715 Mon Sep 17 00:00:00 2001 From: Claudio Indellicati Date: Thu, 25 Sep 2014 12:07:18 +0200 Subject: [PATCH 071/148] Moved specialized Platform classes and related resources to the 'arduino-core' project. --- arduino-core/.classpath | 1 + arduino-core/lib/commons-exec-1.1.jar | Bin 0 -> 52543 bytes .../lib/commons-exec.LICENSE.ASL-2.0.txt | 202 ++++++++++++++++++ .../src/processing/app/linux/Platform.java | 0 .../src/processing/app/macosx/Platform.java | 0 .../app/tools/ExternalProcessExecutor.java | 0 .../src/processing/app/windows/Platform.java | 0 7 files changed, 203 insertions(+) create mode 100644 arduino-core/lib/commons-exec-1.1.jar create mode 100644 arduino-core/lib/commons-exec.LICENSE.ASL-2.0.txt rename {app => arduino-core}/src/processing/app/linux/Platform.java (100%) rename {app => arduino-core}/src/processing/app/macosx/Platform.java (100%) rename {app => arduino-core}/src/processing/app/tools/ExternalProcessExecutor.java (100%) rename {app => arduino-core}/src/processing/app/windows/Platform.java (100%) diff --git a/arduino-core/.classpath b/arduino-core/.classpath index 3a1777f42..bf61b5826 100644 --- a/arduino-core/.classpath +++ b/arduino-core/.classpath @@ -8,5 +8,6 @@ + diff --git a/arduino-core/lib/commons-exec-1.1.jar b/arduino-core/lib/commons-exec-1.1.jar new file mode 100644 index 0000000000000000000000000000000000000000..baee06ff33f1b90f5332bedb375f652edd223b1f GIT binary patch literal 52543 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�#YS^bmj%kqtBHl@EjEsSzaQt$=AEd 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 Date: Thu, 25 Sep 2014 12:08:42 +0200 Subject: [PATCH 072/148] Created 'arduino-builder' project. --- arduino-builder/.classpath | 8 ++++++++ arduino-builder/.project | 17 +++++++++++++++++ .../.settings/org.eclipse.jdt.core.prefs | 11 +++++++++++ .../cc/arduino/builder/ArduinoBuilder.class | Bin 0 -> 519 bytes .../src/cc/arduino/builder/ArduinoBuilder.java | 11 +++++++++++ 5 files changed, 47 insertions(+) create mode 100644 arduino-builder/.classpath create mode 100644 arduino-builder/.project create mode 100644 arduino-builder/.settings/org.eclipse.jdt.core.prefs create mode 100644 arduino-builder/bin/cc/arduino/builder/ArduinoBuilder.class create mode 100644 arduino-builder/src/cc/arduino/builder/ArduinoBuilder.java diff --git a/arduino-builder/.classpath b/arduino-builder/.classpath new file mode 100644 index 000000000..3e1f72898 --- /dev/null +++ b/arduino-builder/.classpath @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/arduino-builder/.project b/arduino-builder/.project new file mode 100644 index 000000000..1e4da7c5f --- /dev/null +++ b/arduino-builder/.project @@ -0,0 +1,17 @@ + + + arduino-builder + + + + + + org.eclipse.jdt.core.javabuilder + + + + + + org.eclipse.jdt.core.javanature + + diff --git a/arduino-builder/.settings/org.eclipse.jdt.core.prefs b/arduino-builder/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 000000000..8000cd6ca --- /dev/null +++ b/arduino-builder/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,11 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 +org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve +org.eclipse.jdt.core.compiler.compliance=1.6 +org.eclipse.jdt.core.compiler.debug.lineNumber=generate +org.eclipse.jdt.core.compiler.debug.localVariable=generate +org.eclipse.jdt.core.compiler.debug.sourceFile=generate +org.eclipse.jdt.core.compiler.problem.assertIdentifier=error +org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.source=1.6 diff --git a/arduino-builder/bin/cc/arduino/builder/ArduinoBuilder.class b/arduino-builder/bin/cc/arduino/builder/ArduinoBuilder.class new file mode 100644 index 0000000000000000000000000000000000000000..c704729744299d20550e72275515cf40376a850b GIT binary patch literal 519 zcmah_!A`0;o@mqHn^m;&9*iEmM4t|KfsSN zPAQR)n0T3)H#7U*+xhzb_yllNNX@SbJSdXc zobr2bCjFG5dZ9v$72TLI+{oeWz=m{P-SSiDwM-)?n(V1yg)Lv+{hQfSZI~w zWz$HXRKjrN{%fR9B6FcahIa4KT^SmsT7}boZo;~G@nxKsP@pIKEpo65)OU Date: Sat, 25 Oct 2014 17:26:24 +0200 Subject: [PATCH 073/148] Temporarily disabled I18N test --- app/.classpath | 2 ++ app/test/processing/app/I18NTest.java | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/app/.classpath b/app/.classpath index efa77cd15..6af85fefe 100644 --- a/app/.classpath +++ b/app/.classpath @@ -1,6 +1,7 @@ + @@ -13,6 +14,7 @@ + diff --git a/app/test/processing/app/I18NTest.java b/app/test/processing/app/I18NTest.java index 150cefe55..74c231ef7 100644 --- a/app/test/processing/app/I18NTest.java +++ b/app/test/processing/app/I18NTest.java @@ -1,5 +1,6 @@ package processing.app; +import org.junit.Ignore; import org.junit.Test; import java.io.*; @@ -40,7 +41,12 @@ public class I18NTest { return properties; } + // XXX: I18NTest.class.getResource(".").getFile() no longer works, because + // the class is now into the arudino-core package. This test should be refactored + // in order to use ResourceBundles to load translations to be checked. + @Test + @Ignore public void ensureEveryTranslationIsComplete() throws Exception { Set keys = loadReferenceI18NKeys(); From 13fd27704f85811b90ebe7994bb639b574cf0511 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Tue, 18 Nov 2014 12:31:17 +0100 Subject: [PATCH 074/148] Added unit-test jars into eclipse project class path --- app/.classpath | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/.classpath b/app/.classpath index 6af85fefe..00db05594 100644 --- a/app/.classpath +++ b/app/.classpath @@ -15,6 +15,10 @@ + + + + From b0bd52b3873d1947adf3ca9c6654a7ef3dea35b2 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Tue, 18 Nov 2014 14:04:14 +0100 Subject: [PATCH 075/148] Removed duplicate version fields in Base class --- app/src/processing/app/Base.java | 9 +-------- app/src/processing/app/Editor.java | 9 ++------- app/src/processing/app/EditorStatus.java | 2 +- app/src/processing/app/UpdateCheck.java | 4 ++-- .../src/processing/app/BaseNoGui.java | 20 +++---------------- build/build.xml | 4 ++-- 6 files changed, 11 insertions(+), 37 deletions(-) diff --git a/app/src/processing/app/Base.java b/app/src/processing/app/Base.java index f6f418117..e5f593997 100644 --- a/app/src/processing/app/Base.java +++ b/app/src/processing/app/Base.java @@ -58,11 +58,6 @@ import static processing.app.I18n._; * files and images, etc) that comes from that. */ public class Base { - public static final int REVISION = BaseNoGui.REVISION; - /** This might be replaced by main() if there's a lib/version.txt file. */ - static String VERSION_NAME = BaseNoGui.VERSION_NAME; - /** Set true if this a proper release rather than a numbered revision. */ - static public boolean RELEASE = BaseNoGui.RELEASE; static private boolean commandLine; @@ -104,8 +99,6 @@ public class Base { BaseNoGui.initParameters(args); BaseNoGui.initVersion(); - VERSION_NAME = BaseNoGui.VERSION_NAME; - RELEASE = BaseNoGui.RELEASE; // if (System.getProperty("mrj.version") != null) { // //String jv = System.getProperty("java.version"); @@ -1509,7 +1502,7 @@ public class Base { g.setFont(new Font("SansSerif", Font.PLAIN, 11)); g.setColor(Color.white); - g.drawString(VERSION_NAME, 50, 30); + g.drawString(BaseNoGui.VERSION_NAME, 50, 30); } }; window.addMouseListener(new MouseAdapter() { diff --git a/app/src/processing/app/Editor.java b/app/src/processing/app/Editor.java index 9eb2f7263..83a4a8a11 100644 --- a/app/src/processing/app/Editor.java +++ b/app/src/processing/app/Editor.java @@ -2208,13 +2208,8 @@ public class Editor extends JFrame implements RunnerListener { } header.rebuild(); // Set the title of the window to "sketch_070752a - Processing 0126" - setTitle( - I18n.format( - _("{0} | Arduino {1}"), - sketch.getName(), - Base.VERSION_NAME - ) - ); + setTitle(I18n.format(_("{0} | Arduino {1}"), sketch.getName(), + BaseNoGui.VERSION_NAME)); // Disable untitled setting from previous document, if any untitled = false; diff --git a/app/src/processing/app/EditorStatus.java b/app/src/processing/app/EditorStatus.java index 7cb4b1ee1..1d90760f1 100644 --- a/app/src/processing/app/EditorStatus.java +++ b/app/src/processing/app/EditorStatus.java @@ -464,7 +464,7 @@ public class EditorStatus extends JPanel /*implements ActionListener*/ { copyErrorButton.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { String message = ""; - message += _("Arduino: ") + Base.VERSION_NAME + " (" + System.getProperty("os.name") + "), "; + message += _("Arduino: ") + BaseNoGui.VERSION_NAME + " (" + System.getProperty("os.name") + "), "; message += _("Board: ") + "\"" + Base.getBoardPreferences().get("name") + "\"\n\n"; message += editor.console.consoleTextPane.getText().trim(); if ((Preferences.getBoolean("build.verbose")) == false) { diff --git a/app/src/processing/app/UpdateCheck.java b/app/src/processing/app/UpdateCheck.java index 0e94366e9..5e063bc6c 100644 --- a/app/src/processing/app/UpdateCheck.java +++ b/app/src/processing/app/UpdateCheck.java @@ -79,7 +79,7 @@ public class UpdateCheck implements Runnable { try { String info; info = URLEncoder.encode(id + "\t" + - PApplet.nf(Base.REVISION, 4) + "\t" + + PApplet.nf(BaseNoGui.REVISION, 4) + "\t" + System.getProperty("java.version") + "\t" + System.getProperty("java.vendor") + "\t" + System.getProperty("os.name") + "\t" + @@ -104,7 +104,7 @@ public class UpdateCheck implements Runnable { "would you like to visit the Arduino download page?"); if (base.activeEditor != null) { - if (latest > Base.REVISION) { + if (latest > BaseNoGui.REVISION) { Object[] options = { _("Yes"), _("No") }; int result = JOptionPane.showOptionDialog(base.activeEditor, prompt, diff --git a/arduino-core/src/processing/app/BaseNoGui.java b/arduino-core/src/processing/app/BaseNoGui.java index 825af095c..f4dd910d9 100644 --- a/arduino-core/src/processing/app/BaseNoGui.java +++ b/arduino-core/src/processing/app/BaseNoGui.java @@ -41,11 +41,10 @@ import processing.app.packages.LibraryList; public class BaseNoGui { + /** Version string to be used for build */ public static final int REVISION = 158; - /** This might be replaced by main() if there's a lib/version.txt file. */ - static String VERSION_NAME = "0158"; - /** Set true if this a proper release rather than a numbered revision. */ - static public boolean RELEASE = false; + /** Extended version string displayed on GUI */ + static String VERSION_NAME = "1.5.8"; static File buildFolder; @@ -608,19 +607,6 @@ public class BaseNoGui { } static public void initVersion() { - try { - File versionFile = getContentFile("lib/version.txt"); - if (versionFile.exists()) { - String version = PApplet.loadStrings(versionFile)[0]; - if (!version.equals(VERSION_NAME) && !version.equals("${version}")) { - VERSION_NAME = version; - RELEASE = true; - } - } - } catch (Exception e) { - e.printStackTrace(); - } - // help 3rd party installers find the correct hardware path PreferencesData.set("last.ide." + VERSION_NAME + ".hardwarepath", getHardwarePath()); PreferencesData.set("last.ide." + VERSION_NAME + ".daterun", "" + (new Date()).getTime() / 1000); diff --git a/build/build.xml b/build/build.xml index 229640ebe..85183989c 100644 --- a/build/build.xml +++ b/build/build.xml @@ -169,11 +169,11 @@ - + - + From b9e186e45aa281b6441bd25e0733c5668adb2b41 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Tue, 18 Nov 2014 14:48:01 +0100 Subject: [PATCH 076/148] Upped version to 1.6.0 --- arduino-core/src/processing/app/BaseNoGui.java | 4 ++-- hardware/arduino/avr/platform.txt | 2 +- hardware/arduino/sam/platform.txt | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/arduino-core/src/processing/app/BaseNoGui.java b/arduino-core/src/processing/app/BaseNoGui.java index f4dd910d9..6bf376274 100644 --- a/arduino-core/src/processing/app/BaseNoGui.java +++ b/arduino-core/src/processing/app/BaseNoGui.java @@ -42,9 +42,9 @@ import processing.app.packages.LibraryList; public class BaseNoGui { /** Version string to be used for build */ - public static final int REVISION = 158; + public static final int REVISION = 10600; /** Extended version string displayed on GUI */ - static String VERSION_NAME = "1.5.8"; + static String VERSION_NAME = "1.6.0"; static File buildFolder; diff --git a/hardware/arduino/avr/platform.txt b/hardware/arduino/avr/platform.txt index 95c2d3c8a..834774614 100644 --- a/hardware/arduino/avr/platform.txt +++ b/hardware/arduino/avr/platform.txt @@ -6,7 +6,7 @@ # https://github.com/arduino/Arduino/wiki/Arduino-IDE-1.5---3rd-party-Hardware-specification name=Arduino AVR Boards -version=1.5.8 +version=1.6.0 # AVR compile variables # --------------------- diff --git a/hardware/arduino/sam/platform.txt b/hardware/arduino/sam/platform.txt index 4d694a341..85522faf4 100644 --- a/hardware/arduino/sam/platform.txt +++ b/hardware/arduino/sam/platform.txt @@ -5,7 +5,7 @@ # https://github.com/arduino/Arduino/wiki/Arduino-IDE-1.5---3rd-party-Hardware-specification name=Arduino ARM (32-bits) Boards -version=1.5.8 +version=1.6.0 # SAM3 compile variables # ---------------------- From 85aecfe0dae18c850f474eaa12865015d1c7bf72 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Thu, 20 Nov 2014 13:50:11 +0100 Subject: [PATCH 077/148] IDE: Fixed default board selection. --- .../processing/app/debug/TargetPlatform.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/arduino-core/src/processing/app/debug/TargetPlatform.java b/arduino-core/src/processing/app/debug/TargetPlatform.java index 2666347fa..611784618 100644 --- a/arduino-core/src/processing/app/debug/TargetPlatform.java +++ b/arduino-core/src/processing/app/debug/TargetPlatform.java @@ -85,15 +85,15 @@ public class TargetPlatform { boardsPreferences.remove("menu"); // Create boards - Set boardIDs = boardsPreferences.keySet(); - for (String id : boardIDs) { - PreferencesMap preferences = boardsPreferences.get(id); - TargetBoard board = new TargetBoard(id, preferences, this); - boards.put(id, board); - } - if (!boardIDs.isEmpty()) { - PreferencesMap preferences = boardsPreferences.get(boardIDs.iterator().next()); - defaultBoard = new TargetBoard(id, preferences, this); + Set boardIds = boardsPreferences.keySet(); + for (String boardId : boardIds) { + PreferencesMap preferences = boardsPreferences.get(boardId); + TargetBoard board = new TargetBoard(boardId, preferences, this); + boards.put(boardId, board); + + // Pick the first board as default + if (defaultBoard == null) + defaultBoard = board; } } catch (IOException e) { throw new TargetPlatformException(format(_("Error loading {0}"), From 257238c050ed2fc7ed53cf71c98d8136e8f3f412 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Thu, 20 Nov 2014 14:00:43 +0100 Subject: [PATCH 078/148] IDE: better error handling for upload/burn bootloader RunnerException was displayed with an ugly stacktrace, while the message contained in the exception itself is already quite enough detailed and clear. --- app/src/processing/app/Editor.java | 3 ++- .../packages/uploaders/SerialUploader.java | 20 +++++++------------ 2 files changed, 9 insertions(+), 14 deletions(-) diff --git a/app/src/processing/app/Editor.java b/app/src/processing/app/Editor.java index 83a4a8a11..47ab58e79 100644 --- a/app/src/processing/app/Editor.java +++ b/app/src/processing/app/Editor.java @@ -2573,7 +2573,8 @@ public class Editor extends JFrame implements RunnerListener { statusError(I18n.format( _("Error while burning bootloader: missing '{0}' configuration parameter"), e.getMessage())); - //statusError(e); + } catch (RunnerException e) { + statusError(e.getMessage()); } catch (Exception e) { statusError(_("Error while burning bootloader.")); e.printStackTrace(); diff --git a/arduino-core/src/cc/arduino/packages/uploaders/SerialUploader.java b/arduino-core/src/cc/arduino/packages/uploaders/SerialUploader.java index 8968e678f..bced0adda 100644 --- a/arduino-core/src/cc/arduino/packages/uploaders/SerialUploader.java +++ b/arduino-core/src/cc/arduino/packages/uploaders/SerialUploader.java @@ -322,19 +322,13 @@ public class SerialUploader extends Uploader { prefs.put("bootloader.verbose", prefs.getOrExcept("bootloader.params.quiet")); } - try { - String pattern = prefs.getOrExcept("erase.pattern"); - String[] cmd = StringReplacer.formatAndSplit(pattern, prefs, true); - if (!executeUploadCommand(cmd)) - return false; + String pattern = prefs.getOrExcept("erase.pattern"); + String[] cmd = StringReplacer.formatAndSplit(pattern, prefs, true); + if (!executeUploadCommand(cmd)) + return false; - pattern = prefs.getOrExcept("bootloader.pattern"); - cmd = StringReplacer.formatAndSplit(pattern, prefs, true); - return executeUploadCommand(cmd); - } catch (RunnerException e) { - throw e; - } catch (Exception e) { - throw new RunnerException(e); - } + pattern = prefs.getOrExcept("bootloader.pattern"); + cmd = StringReplacer.formatAndSplit(pattern, prefs, true); + return executeUploadCommand(cmd); } } From c0bc2d22f66442e69baf5a81d0e55b05599b00d8 Mon Sep 17 00:00:00 2001 From: PaulStoffregen Date: Thu, 20 Nov 2014 18:54:04 -0800 Subject: [PATCH 079/148] Fix SPI transaction mismatch errors --- libraries/SD/src/utility/Sd2Card.cpp | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/libraries/SD/src/utility/Sd2Card.cpp b/libraries/SD/src/utility/Sd2Card.cpp index 7e7cbf8ac..a72d3d271 100644 --- a/libraries/SD/src/utility/Sd2Card.cpp +++ b/libraries/SD/src/utility/Sd2Card.cpp @@ -157,16 +157,24 @@ uint32_t Sd2Card::cardSize(void) { } } //------------------------------------------------------------------------------ +static uint8_t chip_select_asserted = 0; + void Sd2Card::chipSelectHigh(void) { digitalWrite(chipSelectPin_, HIGH); #ifdef USE_SPI_LIB - SPI.endTransaction(); + if (chip_select_asserted) { + chip_select_asserted = 0; + SPI.endTransaction(); + } #endif } //------------------------------------------------------------------------------ void Sd2Card::chipSelectLow(void) { #ifdef USE_SPI_LIB - SPI.beginTransaction(settings); + if (!chip_select_asserted) { + chip_select_asserted = 1; + SPI.beginTransaction(settings); + } #endif digitalWrite(chipSelectPin_, LOW); } From 0aa800b4d7594f3329b01260c00a7d0956ebeb10 Mon Sep 17 00:00:00 2001 From: Federico Fissore Date: Fri, 21 Nov 2014 11:07:30 +0100 Subject: [PATCH 080/148] Upgrading libastyle to 2.05 --- build/build.xml | 12 ++++++------ build/libastylej-2.04.zip.sha | 1 - build/libastylej-2.05.zip.sha | 1 + 3 files changed, 7 insertions(+), 7 deletions(-) delete mode 100644 build/libastylej-2.04.zip.sha create mode 100644 build/libastylej-2.05.zip.sha diff --git a/build/build.xml b/build/build.xml index 85183989c..3b5b42980 100644 --- a/build/build.xml +++ b/build/build.xml @@ -267,8 +267,8 @@ - - + + @@ -486,8 +486,8 @@ - - + + @@ -715,8 +715,8 @@ - - + + diff --git a/build/libastylej-2.04.zip.sha b/build/libastylej-2.04.zip.sha deleted file mode 100644 index b7de92cae..000000000 --- a/build/libastylej-2.04.zip.sha +++ /dev/null @@ -1 +0,0 @@ -e62f8ff81296ca8bd46237e4254420394069d698 diff --git a/build/libastylej-2.05.zip.sha b/build/libastylej-2.05.zip.sha new file mode 100644 index 000000000..31be12552 --- /dev/null +++ b/build/libastylej-2.05.zip.sha @@ -0,0 +1 @@ +2cd093d3da2b0204a666d90440f513b717c9f80c From 060c1e766c6ed33afe0b87db28548914a6bdc474 Mon Sep 17 00:00:00 2001 From: Arturo Guadalupi Date: Mon, 24 Nov 2014 09:37:20 +0100 Subject: [PATCH 081/148] Updated description It reads the state of a potentiometer (an analog input) and turns on an LED only if the LED goes above a certain threshold level. It prints the analog value regardless of the level. updated to It reads the state of a potentiometer (an analog input) and turns on an LED only if the potentiometer goes above a certain threshold level. It prints the analog value regardless of the level. --- .../IfStatementConditional/IfStatementConditional.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/shared/examples/05.Control/IfStatementConditional/IfStatementConditional.ino b/build/shared/examples/05.Control/IfStatementConditional/IfStatementConditional.ino index e6c18017a..9f1b309e2 100644 --- a/build/shared/examples/05.Control/IfStatementConditional/IfStatementConditional.ino +++ b/build/shared/examples/05.Control/IfStatementConditional/IfStatementConditional.ino @@ -3,7 +3,7 @@ This example demonstrates the use of if() statements. It reads the state of a potentiometer (an analog input) and turns on an LED - only if the LED goes above a certain threshold level. It prints the analog value + only if the potentiometer goes above a certain threshold level. It prints the analog value regardless of the level. The circuit: From 5bbdc6dd266caf58989254c8953953fa714beb4b Mon Sep 17 00:00:00 2001 From: Federico Fissore Date: Tue, 25 Nov 2014 11:46:14 +0100 Subject: [PATCH 082/148] windows: missing jar in config.xml --- build/windows/launcher/config.xml | 1 + build/windows/launcher/config_debug.xml | 1 + 2 files changed, 2 insertions(+) diff --git a/build/windows/launcher/config.xml b/build/windows/launcher/config.xml index dbce4974b..3f427d040 100644 --- a/build/windows/launcher/config.xml +++ b/build/windows/launcher/config.xml @@ -15,6 +15,7 @@ application.ico processing.app.Base + lib/arduino-core.jar lib/pde.jar lib/jna.jar lib/ecj.jar diff --git a/build/windows/launcher/config_debug.xml b/build/windows/launcher/config_debug.xml index 2d1daea26..8af63a463 100644 --- a/build/windows/launcher/config_debug.xml +++ b/build/windows/launcher/config_debug.xml @@ -15,6 +15,7 @@ application.ico processing.app.Base + lib/arduino-core.jar lib/pde.jar lib/jna.jar lib/ecj.jar From ca1a35562806d9098d195179484876357e509d5b Mon Sep 17 00:00:00 2001 From: Federico Fissore Date: Tue, 25 Nov 2014 13:51:47 +0100 Subject: [PATCH 083/148] Network discovery: not showing board name is not resolvable (was printing "null") --- .../cc/arduino/packages/discoverers/NetworkDiscovery.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/arduino-core/src/cc/arduino/packages/discoverers/NetworkDiscovery.java b/arduino-core/src/cc/arduino/packages/discoverers/NetworkDiscovery.java index ae1c5aea4..85cd05c66 100644 --- a/arduino-core/src/cc/arduino/packages/discoverers/NetworkDiscovery.java +++ b/arduino-core/src/cc/arduino/packages/discoverers/NetworkDiscovery.java @@ -31,7 +31,7 @@ package cc.arduino.packages.discoverers; import cc.arduino.packages.BoardPort; import cc.arduino.packages.Discovery; -import cc.arduino.packages.discoverers.network.*; +import cc.arduino.packages.discoverers.network.NetworkChecker; import processing.app.BaseNoGui; import processing.app.helpers.NetUtils; import processing.app.helpers.PreferencesMap; @@ -141,7 +141,9 @@ public class NetworkDiscovery implements Discovery, ServiceListener, cc.arduino. String label = name + " at " + address; if (board != null) { String boardName = BaseNoGui.getPlatform().resolveDeviceByBoardID(BaseNoGui.packages, board); - label += " (" + boardName + ")"; + if (boardName != null) { + label += " (" + boardName + ")"; + } } BoardPort port = new BoardPort(); From 81a562e0ed9f608b0f48b4ec0abb122e6bb57edd Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Tue, 25 Nov 2014 15:25:33 +0100 Subject: [PATCH 084/148] Updated eclipse project library path --- app/.classpath | 1 + 1 file changed, 1 insertion(+) diff --git a/app/.classpath b/app/.classpath index 00db05594..aca931155 100644 --- a/app/.classpath +++ b/app/.classpath @@ -20,5 +20,6 @@ + From 15f3d1f8e7e5d43231d3f262d666081c50ee8905 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Tue, 25 Nov 2014 15:26:05 +0100 Subject: [PATCH 085/148] Fixed import style in EditorConsole.java --- app/src/processing/app/EditorConsole.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/src/processing/app/EditorConsole.java b/app/src/processing/app/EditorConsole.java index 6ee8e86c8..805a8d768 100644 --- a/app/src/processing/app/EditorConsole.java +++ b/app/src/processing/app/EditorConsole.java @@ -33,6 +33,7 @@ import java.util.List; import javax.swing.JScrollPane; import javax.swing.JTextPane; import javax.swing.SwingUtilities; +import javax.swing.Timer; import javax.swing.text.AttributeSet; import javax.swing.text.BadLocationException; import javax.swing.text.DefaultStyledDocument; @@ -126,7 +127,7 @@ public class EditorConsole extends JScrollPane { // periodically post buffered messages to the console // should the interval come from the preferences file? - new javax.swing.Timer(250, new ActionListener() { + new Timer(250, new ActionListener() { public void actionPerformed(ActionEvent evt) { SwingUtilities.invokeLater(new Runnable() { @Override From 6eef4539447a5661f388d11b6db40db1b61def8c Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Tue, 25 Nov 2014 15:26:18 +0100 Subject: [PATCH 086/148] Fixed EditorConsole new-line regression. Now EditorConsole starts a newline also when a CR character is read from command output. --- app/src/processing/app/EditorConsole.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/processing/app/EditorConsole.java b/app/src/processing/app/EditorConsole.java index 805a8d768..8c4910093 100644 --- a/app/src/processing/app/EditorConsole.java +++ b/app/src/processing/app/EditorConsole.java @@ -206,7 +206,7 @@ class BufferedStyledDocument extends DefaultStyledDocument { char c = chars[stop]; stop++; currentLineLength++; - if (c == '\n' || currentLineLength > maxLineLength) { + if (c == '\n' || c == '\r' || currentLineLength > maxLineLength) { elements.add(new ElementSpec(a, ElementSpec.ContentType, chars, start, stop - start)); elements.add(new ElementSpec(a, ElementSpec.EndTagType)); From 53e25d8b5534c842a89eb62da1ab2558463c077b Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Mon, 20 Oct 2014 19:46:08 +0200 Subject: [PATCH 087/148] [avr] Improved SPI speed on 16bit transfer. From https://github.com/arduino/Arduino/pull/2376#issuecomment-59671152 Quoting Andrew Kroll: [..this commit..] introduces a small delay that can prevent the wait loop form iterating when running at the maximum speed. This gives you a little more speed, even if it seems counter-intuitive. At lower speeds, it is unnoticed. Watch the output on an oscilloscope when running full SPI speed, and you should see closer back-to-back writes. Quoting Paul Stoffregen: I did quite a bit of experimenting with the NOP addition. The one that's in my copy gives about a 10% speedup on AVR. --- hardware/arduino/avr/libraries/SPI/SPI.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/hardware/arduino/avr/libraries/SPI/SPI.h b/hardware/arduino/avr/libraries/SPI/SPI.h index b54e2dfd5..24ebc125e 100644 --- a/hardware/arduino/avr/libraries/SPI/SPI.h +++ b/hardware/arduino/avr/libraries/SPI/SPI.h @@ -184,6 +184,12 @@ public: // Write to the SPI bus (MOSI pin) and also receive (MISO pin) inline static uint8_t transfer(uint8_t data) { SPDR = data; + /* + * The following NOP introduces a small delay that can prevent the wait + * loop form iterating when running at the maximum speed. This gives + * about 10% more speed, even if it seems counter-intuitive. At lower + * speeds it is unnoticed. + */ asm volatile("nop"); while (!(SPSR & _BV(SPIF))) ; // wait return SPDR; @@ -193,16 +199,20 @@ public: in.val = data; if (!(SPCR & _BV(DORD))) { SPDR = in.msb; + asm volatile("nop"); // See transfer(uint8_t) function while (!(SPSR & _BV(SPIF))) ; out.msb = SPDR; SPDR = in.lsb; + asm volatile("nop"); while (!(SPSR & _BV(SPIF))) ; out.lsb = SPDR; } else { SPDR = in.lsb; + asm volatile("nop"); while (!(SPSR & _BV(SPIF))) ; out.lsb = SPDR; SPDR = in.msb; + asm volatile("nop"); while (!(SPSR & _BV(SPIF))) ; out.msb = SPDR; } From 8344812ce89dad2dcdbea4d2aca2f70fae5730c5 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Tue, 21 Oct 2014 12:57:41 +0200 Subject: [PATCH 088/148] [avr] Made SPI.begin() and SPI.end() synchronized (Andrew Kroll) --- hardware/arduino/avr/libraries/SPI/SPI.cpp | 61 +++++++++++++++------- hardware/arduino/avr/libraries/SPI/SPI.h | 2 + 2 files changed, 43 insertions(+), 20 deletions(-) diff --git a/hardware/arduino/avr/libraries/SPI/SPI.cpp b/hardware/arduino/avr/libraries/SPI/SPI.cpp index ef13e2ae9..4bd72dfdb 100644 --- a/hardware/arduino/avr/libraries/SPI/SPI.cpp +++ b/hardware/arduino/avr/libraries/SPI/SPI.cpp @@ -2,6 +2,7 @@ * Copyright (c) 2010 by Cristian Maglie * Copyright (c) 2014 by Paul Stoffregen (Transaction API) * Copyright (c) 2014 by Matthijs Kooijman (SPISettings AVR) + * Copyright (c) 2014 by Andrew J. Kroll (atomicity fixes) * SPI Master library for arduino. * * This file is free software; you can redistribute it and/or modify @@ -14,6 +15,7 @@ SPIClass SPI; +uint8_t SPIClass::initialized = 0; uint8_t SPIClass::interruptMode = 0; uint8_t SPIClass::interruptMask = 0; uint8_t SPIClass::interruptSave = 0; @@ -23,32 +25,51 @@ uint8_t SPIClass::inTransactionFlag = 0; void SPIClass::begin() { - // Set SS to high so a connected chip will be "deselected" by default - digitalWrite(SS, HIGH); + uint8_t sreg = SREG; + noInterrupts(); // Protect from a scheduler and prevent transactionBegin + if (!initialized) { + // Set SS to high so a connected chip will be "deselected" by default + digitalWrite(SS, HIGH); - // When the SS pin is set as OUTPUT, it can be used as - // a general purpose output port (it doesn't influence - // SPI operations). - pinMode(SS, OUTPUT); + // When the SS pin is set as OUTPUT, it can be used as + // a general purpose output port (it doesn't influence + // SPI operations). + pinMode(SS, OUTPUT); - // Warning: if the SS pin ever becomes a LOW INPUT then SPI - // automatically switches to Slave, so the data direction of - // the SS pin MUST be kept as OUTPUT. - SPCR |= _BV(MSTR); - SPCR |= _BV(SPE); + // Warning: if the SS pin ever becomes a LOW INPUT then SPI + // automatically switches to Slave, so the data direction of + // the SS pin MUST be kept as OUTPUT. + SPCR |= _BV(MSTR); + SPCR |= _BV(SPE); - // Set direction register for SCK and MOSI pin. - // MISO pin automatically overrides to INPUT. - // By doing this AFTER enabling SPI, we avoid accidentally - // clocking in a single bit since the lines go directly - // from "input" to SPI control. - // http://code.google.com/p/arduino/issues/detail?id=888 - pinMode(SCK, OUTPUT); - pinMode(MOSI, OUTPUT); + // Set direction register for SCK and MOSI pin. + // MISO pin automatically overrides to INPUT. + // By doing this AFTER enabling SPI, we avoid accidentally + // clocking in a single bit since the lines go directly + // from "input" to SPI control. + // http://code.google.com/p/arduino/issues/detail?id=888 + pinMode(SCK, OUTPUT); + pinMode(MOSI, OUTPUT); + } + initialized++; // reference count + SREG = sreg; } void SPIClass::end() { - SPCR &= ~_BV(SPE); + uint8_t sreg = SREG; + noInterrupts(); // Protect from a scheduler and prevent transactionBegin + // Decrease the reference counter + if (initialized) + initialized--; + // If there are no more references disable SPI + if (!initialized) { + SPCR &= ~_BV(SPE); + interruptMode = 0; + #ifdef SPI_TRANSACTION_MISMATCH_LED + inTransactionFlag = 0; + #endif + } + SREG = sreg; } // mapping of interrupt numbers to bits within SPI_AVR_EIMSK diff --git a/hardware/arduino/avr/libraries/SPI/SPI.h b/hardware/arduino/avr/libraries/SPI/SPI.h index 24ebc125e..c8d4ce3b6 100644 --- a/hardware/arduino/avr/libraries/SPI/SPI.h +++ b/hardware/arduino/avr/libraries/SPI/SPI.h @@ -2,6 +2,7 @@ * Copyright (c) 2010 by Cristian Maglie * Copyright (c) 2014 by Paul Stoffregen (Transaction API) * Copyright (c) 2014 by Matthijs Kooijman (SPISettings AVR) + * Copyright (c) 2014 by Andrew J. Kroll (atomicity fixes) * SPI Master library for arduino. * * This file is free software; you can redistribute it and/or modify @@ -281,6 +282,7 @@ public: inline static void detachInterrupt() { SPCR &= ~_BV(SPIE); } private: + static uint8_t initialized; static uint8_t interruptMode; // 0=none, 1=mask, 2=global static uint8_t interruptMask; // which interrupts to mask static uint8_t interruptSave; // temp storage, to restore state From d9537cb7daba28688efb1d1a60d727cfeef69981 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Tue, 21 Oct 2014 13:12:25 +0200 Subject: [PATCH 089/148] [avr] Added SPI.notUsingInterrupt() (Andrew Kroll) --- hardware/arduino/avr/libraries/SPI/SPI.cpp | 42 ++++++++++++++++++++++ hardware/arduino/avr/libraries/SPI/SPI.h | 10 ++++++ 2 files changed, 52 insertions(+) diff --git a/hardware/arduino/avr/libraries/SPI/SPI.cpp b/hardware/arduino/avr/libraries/SPI/SPI.cpp index 4bd72dfdb..40d4278b7 100644 --- a/hardware/arduino/avr/libraries/SPI/SPI.cpp +++ b/hardware/arduino/avr/libraries/SPI/SPI.cpp @@ -151,3 +151,45 @@ void SPIClass::usingInterrupt(uint8_t interruptNumber) interrupts(); } +void SPIClass::notUsingInterrupt(uint8_t interruptNumber) +{ + // Once in mode 2 we can't go back to 0 without a proper reference count + if (interruptMode == 2) + return; + uint8_t mask = 0; + uint8_t sreg = SREG; + noInterrupts(); // Protect from a scheduler and prevent transactionBegin + switch (interruptNumber) { + #ifdef SPI_INT0_MASK + case 0: mask = SPI_INT0_MASK; break; + #endif + #ifdef SPI_INT1_MASK + case 1: mask = SPI_INT1_MASK; break; + #endif + #ifdef SPI_INT2_MASK + case 2: mask = SPI_INT2_MASK; break; + #endif + #ifdef SPI_INT3_MASK + case 3: mask = SPI_INT3_MASK; break; + #endif + #ifdef SPI_INT4_MASK + case 4: mask = SPI_INT4_MASK; break; + #endif + #ifdef SPI_INT5_MASK + case 5: mask = SPI_INT5_MASK; break; + #endif + #ifdef SPI_INT6_MASK + case 6: mask = SPI_INT6_MASK; break; + #endif + #ifdef SPI_INT7_MASK + case 7: mask = SPI_INT7_MASK; break; + #endif + default: + break; + // this case can't be reached + } + interruptMask &= ~mask; + if (!interruptMask) + interruptMode = 0; + SREG = sreg; +} diff --git a/hardware/arduino/avr/libraries/SPI/SPI.h b/hardware/arduino/avr/libraries/SPI/SPI.h index c8d4ce3b6..2f9b56541 100644 --- a/hardware/arduino/avr/libraries/SPI/SPI.h +++ b/hardware/arduino/avr/libraries/SPI/SPI.h @@ -20,6 +20,9 @@ // usingInterrupt(), and SPISetting(clock, bitOrder, dataMode) #define SPI_HAS_TRANSACTION 1 +// SPI_HAS_NOTUSINGINTERRUPT means that SPI has notUsingInterrupt() method +#define SPI_HAS_NOTUSINGINTERRUPT 1 + // Uncomment this line to add detection of mismatched begin/end transactions. // A mismatch occurs if other libraries fail to use SPI.endTransaction() for // each SPI.beginTransaction(). Connect an LED to this pin. The LED will turn @@ -154,6 +157,13 @@ public: // with attachInterrupt. If SPI is used from a different interrupt // (eg, a timer), interruptNumber should be 255. static void usingInterrupt(uint8_t interruptNumber); + // And this does the opposite. + static void notUsingInterrupt(uint8_t interruptNumber); + // Note: the usingInterrupt and notUsingInterrupt functions should + // not to be called from ISR context or inside a transaction. + // For details see: + // https://github.com/arduino/Arduino/pull/2381 + // https://github.com/arduino/Arduino/pull/2449 // Before using SPI.transfer() or asserting chip select pins, // this function is used to gain exclusive access to the SPI bus From 84b6cc27a5b49b57c12accff40a004b2655b557d Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Tue, 18 Nov 2014 20:02:27 +0100 Subject: [PATCH 090/148] [avr] Made SPI.usingInterrupt() synchronized (Andrew Kroll) --- hardware/arduino/avr/libraries/SPI/SPI.cpp | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/hardware/arduino/avr/libraries/SPI/SPI.cpp b/hardware/arduino/avr/libraries/SPI/SPI.cpp index 40d4278b7..077b6a38d 100644 --- a/hardware/arduino/avr/libraries/SPI/SPI.cpp +++ b/hardware/arduino/avr/libraries/SPI/SPI.cpp @@ -111,11 +111,9 @@ void SPIClass::end() { void SPIClass::usingInterrupt(uint8_t interruptNumber) { - uint8_t mask; - - if (interruptMode > 1) return; - - noInterrupts(); + uint8_t mask = 0; + uint8_t sreg = SREG; + noInterrupts(); // Protect from a scheduler and prevent transactionBegin switch (interruptNumber) { #ifdef SPI_INT0_MASK case 0: mask = SPI_INT0_MASK; break; @@ -143,12 +141,12 @@ void SPIClass::usingInterrupt(uint8_t interruptNumber) #endif default: interruptMode = 2; - interrupts(); - return; + break; } - interruptMode = 1; interruptMask |= mask; - interrupts(); + if (!interruptMode) + interruptMode = 1; + SREG = sreg; } void SPIClass::notUsingInterrupt(uint8_t interruptNumber) From a9735bf91fda36eb9cd97274f01b86f1fb234155 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Tue, 18 Nov 2014 20:03:23 +0100 Subject: [PATCH 091/148] Fix atomicity issues in SPI::beginTransaction and SPI::endTransaction (Andrew Kroll) Previously, it could happen that SPI::beginTransaction was interrupted by an ISR, while it is changing the SPI_AVR_EIMSK register or interruptSave variable (it seems that there is a small window after changing SPI_AVR_EIMSK where an interrupt might still occur). If this happens, interruptSave is overwritten with an invalid value, permanently disabling the pin interrupts. To prevent this, disable interrupts globally while changing these values. --- hardware/arduino/avr/libraries/SPI/SPI.h | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/hardware/arduino/avr/libraries/SPI/SPI.h b/hardware/arduino/avr/libraries/SPI/SPI.h index 2f9b56541..cee618c80 100644 --- a/hardware/arduino/avr/libraries/SPI/SPI.h +++ b/hardware/arduino/avr/libraries/SPI/SPI.h @@ -23,6 +23,13 @@ // SPI_HAS_NOTUSINGINTERRUPT means that SPI has notUsingInterrupt() method #define SPI_HAS_NOTUSINGINTERRUPT 1 +// SPI_ATOMIC_VERSION means that SPI has atomicity fixes and what version. +// This way when there is a bug fix you can check this define to alert users +// of your code if it uses better version of this library. +// This also implies everything that SPI_HAS_TRANSACTION as documented above is +// available too. +#define SPI_ATOMIC_VERSION 1 + // Uncomment this line to add detection of mismatched begin/end transactions. // A mismatch occurs if other libraries fail to use SPI.endTransaction() for // each SPI.beginTransaction(). Connect an LED to this pin. The LED will turn @@ -170,17 +177,21 @@ public: // and configure the correct settings. inline static void beginTransaction(SPISettings settings) { if (interruptMode > 0) { + uint8_t sreg = SREG; + noInterrupts(); + #ifdef SPI_AVR_EIMSK if (interruptMode == 1) { interruptSave = SPI_AVR_EIMSK; SPI_AVR_EIMSK &= ~interruptMask; + SREG = sreg; } else #endif { - interruptSave = SREG; - cli(); + interruptSave = sreg; } } + #ifdef SPI_TRANSACTION_MISMATCH_LED if (inTransactionFlag) { pinMode(SPI_TRANSACTION_MISMATCH_LED, OUTPUT); @@ -188,6 +199,7 @@ public: } inTransactionFlag = 1; #endif + SPCR = settings.spcr; SPSR = settings.spsr; } @@ -253,10 +265,16 @@ public: } inTransactionFlag = 0; #endif + if (interruptMode > 0) { + #ifdef SPI_AVR_EIMSK + uint8_t sreg = SREG; + #endif + noInterrupts(); #ifdef SPI_AVR_EIMSK if (interruptMode == 1) { SPI_AVR_EIMSK = interruptSave; + SREG = sreg; } else #endif { From 042fa0c3f20cd654115de955f75a35de5d86aabd Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Tue, 14 Oct 2014 17:41:59 +0200 Subject: [PATCH 092/148] Backported SPI Transcations from 1.5.x --- libraries/SPI/SPI.cpp | 201 +++++++++--- libraries/SPI/SPI.h | 306 ++++++++++++++++-- .../BarometricPressureSensor.ino | 10 +- .../DigitalPotControl/DigitalPotControl.ino | 26 +- 4 files changed, 462 insertions(+), 81 deletions(-) diff --git a/libraries/SPI/SPI.cpp b/libraries/SPI/SPI.cpp index 5e48073f7..077b6a38d 100644 --- a/libraries/SPI/SPI.cpp +++ b/libraries/SPI/SPI.cpp @@ -1,5 +1,8 @@ /* * Copyright (c) 2010 by Cristian Maglie + * Copyright (c) 2014 by Paul Stoffregen (Transaction API) + * Copyright (c) 2014 by Matthijs Kooijman (SPISettings AVR) + * Copyright (c) 2014 by Andrew J. Kroll (atomicity fixes) * SPI Master library for arduino. * * This file is free software; you can redistribute it and/or modify @@ -8,59 +11,183 @@ * published by the Free Software Foundation. */ -#include "pins_arduino.h" #include "SPI.h" SPIClass SPI; -void SPIClass::begin() { +uint8_t SPIClass::initialized = 0; +uint8_t SPIClass::interruptMode = 0; +uint8_t SPIClass::interruptMask = 0; +uint8_t SPIClass::interruptSave = 0; +#ifdef SPI_TRANSACTION_MISMATCH_LED +uint8_t SPIClass::inTransactionFlag = 0; +#endif - // Set SS to high so a connected chip will be "deselected" by default - digitalWrite(SS, HIGH); +void SPIClass::begin() +{ + uint8_t sreg = SREG; + noInterrupts(); // Protect from a scheduler and prevent transactionBegin + if (!initialized) { + // Set SS to high so a connected chip will be "deselected" by default + digitalWrite(SS, HIGH); - // When the SS pin is set as OUTPUT, it can be used as - // a general purpose output port (it doesn't influence - // SPI operations). - pinMode(SS, OUTPUT); + // When the SS pin is set as OUTPUT, it can be used as + // a general purpose output port (it doesn't influence + // SPI operations). + pinMode(SS, OUTPUT); - // Warning: if the SS pin ever becomes a LOW INPUT then SPI - // automatically switches to Slave, so the data direction of - // the SS pin MUST be kept as OUTPUT. - SPCR |= _BV(MSTR); - SPCR |= _BV(SPE); + // Warning: if the SS pin ever becomes a LOW INPUT then SPI + // automatically switches to Slave, so the data direction of + // the SS pin MUST be kept as OUTPUT. + SPCR |= _BV(MSTR); + SPCR |= _BV(SPE); - // Set direction register for SCK and MOSI pin. - // MISO pin automatically overrides to INPUT. - // By doing this AFTER enabling SPI, we avoid accidentally - // clocking in a single bit since the lines go directly - // from "input" to SPI control. - // http://code.google.com/p/arduino/issues/detail?id=888 - pinMode(SCK, OUTPUT); - pinMode(MOSI, OUTPUT); + // Set direction register for SCK and MOSI pin. + // MISO pin automatically overrides to INPUT. + // By doing this AFTER enabling SPI, we avoid accidentally + // clocking in a single bit since the lines go directly + // from "input" to SPI control. + // http://code.google.com/p/arduino/issues/detail?id=888 + pinMode(SCK, OUTPUT); + pinMode(MOSI, OUTPUT); + } + initialized++; // reference count + SREG = sreg; } - void SPIClass::end() { - SPCR &= ~_BV(SPE); -} - -void SPIClass::setBitOrder(uint8_t bitOrder) -{ - if(bitOrder == LSBFIRST) { - SPCR |= _BV(DORD); - } else { - SPCR &= ~(_BV(DORD)); + uint8_t sreg = SREG; + noInterrupts(); // Protect from a scheduler and prevent transactionBegin + // Decrease the reference counter + if (initialized) + initialized--; + // If there are no more references disable SPI + if (!initialized) { + SPCR &= ~_BV(SPE); + interruptMode = 0; + #ifdef SPI_TRANSACTION_MISMATCH_LED + inTransactionFlag = 0; + #endif } + SREG = sreg; } -void SPIClass::setDataMode(uint8_t mode) +// mapping of interrupt numbers to bits within SPI_AVR_EIMSK +#if defined(__AVR_ATmega32U4__) + #define SPI_INT0_MASK (1<> 2) & SPI_2XCLOCK_MASK); + // Once in mode 2 we can't go back to 0 without a proper reference count + if (interruptMode == 2) + return; + uint8_t mask = 0; + uint8_t sreg = SREG; + noInterrupts(); // Protect from a scheduler and prevent transactionBegin + switch (interruptNumber) { + #ifdef SPI_INT0_MASK + case 0: mask = SPI_INT0_MASK; break; + #endif + #ifdef SPI_INT1_MASK + case 1: mask = SPI_INT1_MASK; break; + #endif + #ifdef SPI_INT2_MASK + case 2: mask = SPI_INT2_MASK; break; + #endif + #ifdef SPI_INT3_MASK + case 3: mask = SPI_INT3_MASK; break; + #endif + #ifdef SPI_INT4_MASK + case 4: mask = SPI_INT4_MASK; break; + #endif + #ifdef SPI_INT5_MASK + case 5: mask = SPI_INT5_MASK; break; + #endif + #ifdef SPI_INT6_MASK + case 6: mask = SPI_INT6_MASK; break; + #endif + #ifdef SPI_INT7_MASK + case 7: mask = SPI_INT7_MASK; break; + #endif + default: + break; + // this case can't be reached + } + interruptMask &= ~mask; + if (!interruptMask) + interruptMode = 0; + SREG = sreg; } - diff --git a/libraries/SPI/SPI.h b/libraries/SPI/SPI.h index f647d5c89..cee618c80 100644 --- a/libraries/SPI/SPI.h +++ b/libraries/SPI/SPI.h @@ -1,5 +1,8 @@ /* * Copyright (c) 2010 by Cristian Maglie + * Copyright (c) 2014 by Paul Stoffregen (Transaction API) + * Copyright (c) 2014 by Matthijs Kooijman (SPISettings AVR) + * Copyright (c) 2014 by Andrew J. Kroll (atomicity fixes) * SPI Master library for arduino. * * This file is free software; you can redistribute it and/or modify @@ -11,9 +14,34 @@ #ifndef _SPI_H_INCLUDED #define _SPI_H_INCLUDED -#include #include -#include + +// SPI_HAS_TRANSACTION means SPI has beginTransaction(), endTransaction(), +// usingInterrupt(), and SPISetting(clock, bitOrder, dataMode) +#define SPI_HAS_TRANSACTION 1 + +// SPI_HAS_NOTUSINGINTERRUPT means that SPI has notUsingInterrupt() method +#define SPI_HAS_NOTUSINGINTERRUPT 1 + +// SPI_ATOMIC_VERSION means that SPI has atomicity fixes and what version. +// This way when there is a bug fix you can check this define to alert users +// of your code if it uses better version of this library. +// This also implies everything that SPI_HAS_TRANSACTION as documented above is +// available too. +#define SPI_ATOMIC_VERSION 1 + +// Uncomment this line to add detection of mismatched begin/end transactions. +// A mismatch occurs if other libraries fail to use SPI.endTransaction() for +// each SPI.beginTransaction(). Connect an LED to this pin. The LED will turn +// on if any mismatch is ever detected. +//#define SPI_TRANSACTION_MISMATCH_LED 5 + +#ifndef LSBFIRST +#define LSBFIRST 0 +#endif +#ifndef MSBFIRST +#define MSBFIRST 1 +#endif #define SPI_CLOCK_DIV4 0x00 #define SPI_CLOCK_DIV16 0x01 @@ -22,7 +50,6 @@ #define SPI_CLOCK_DIV2 0x04 #define SPI_CLOCK_DIV8 0x05 #define SPI_CLOCK_DIV32 0x06 -//#define SPI_CLOCK_DIV64 0x07 #define SPI_MODE0 0x00 #define SPI_MODE1 0x04 @@ -33,38 +60,265 @@ #define SPI_CLOCK_MASK 0x03 // SPR1 = bit 1, SPR0 = bit 0 on SPCR #define SPI_2XCLOCK_MASK 0x01 // SPI2X = bit 0 on SPSR +// define SPI_AVR_EIMSK for AVR boards with external interrupt pins +#if defined(EIMSK) + #define SPI_AVR_EIMSK EIMSK +#elif defined(GICR) + #define SPI_AVR_EIMSK GICR +#elif defined(GIMSK) + #define SPI_AVR_EIMSK GIMSK +#endif + +class SPISettings { +public: + SPISettings(uint32_t clock, uint8_t bitOrder, uint8_t dataMode) { + if (__builtin_constant_p(clock)) { + init_AlwaysInline(clock, bitOrder, dataMode); + } else { + init_MightInline(clock, bitOrder, dataMode); + } + } + SPISettings() { + init_AlwaysInline(4000000, MSBFIRST, SPI_MODE0); + } +private: + void init_MightInline(uint32_t clock, uint8_t bitOrder, uint8_t dataMode) { + init_AlwaysInline(clock, bitOrder, dataMode); + } + void init_AlwaysInline(uint32_t clock, uint8_t bitOrder, uint8_t dataMode) + __attribute__((__always_inline__)) { + // Clock settings are defined as follows. Note that this shows SPI2X + // inverted, so the bits form increasing numbers. Also note that + // fosc/64 appears twice + // SPR1 SPR0 ~SPI2X Freq + // 0 0 0 fosc/2 + // 0 0 1 fosc/4 + // 0 1 0 fosc/8 + // 0 1 1 fosc/16 + // 1 0 0 fosc/32 + // 1 0 1 fosc/64 + // 1 1 0 fosc/64 + // 1 1 1 fosc/128 + + // We find the fastest clock that is less than or equal to the + // given clock rate. The clock divider that results in clock_setting + // is 2 ^^ (clock_div + 1). If nothing is slow enough, we'll use the + // slowest (128 == 2 ^^ 7, so clock_div = 6). + uint8_t clockDiv; + + // When the clock is known at compiletime, use this if-then-else + // cascade, which the compiler knows how to completely optimize + // away. When clock is not known, use a loop instead, which generates + // shorter code. + if (__builtin_constant_p(clock)) { + if (clock >= F_CPU / 2) { + clockDiv = 0; + } else if (clock >= F_CPU / 4) { + clockDiv = 1; + } else if (clock >= F_CPU / 8) { + clockDiv = 2; + } else if (clock >= F_CPU / 16) { + clockDiv = 3; + } else if (clock >= F_CPU / 32) { + clockDiv = 4; + } else if (clock >= F_CPU / 64) { + clockDiv = 5; + } else { + clockDiv = 6; + } + } else { + uint32_t clockSetting = F_CPU / 2; + clockDiv = 0; + while (clockDiv < 6 && clock < clockSetting) { + clockSetting /= 2; + clockDiv++; + } + } + + // Compensate for the duplicate fosc/64 + if (clockDiv == 6) + clockDiv = 7; + + // Invert the SPI2X bit + clockDiv ^= 0x1; + + // Pack into the SPISettings class + spcr = _BV(SPE) | _BV(MSTR) | ((bitOrder == LSBFIRST) ? _BV(DORD) : 0) | + (dataMode & SPI_MODE_MASK) | ((clockDiv >> 1) & SPI_CLOCK_MASK); + spsr = clockDiv & SPI_2XCLOCK_MASK; + } + uint8_t spcr; + uint8_t spsr; + friend class SPIClass; +}; + + class SPIClass { public: - inline static byte transfer(byte _data); + // Initialize the SPI library + static void begin(); - // SPI Configuration methods + // If SPI is used from within an interrupt, this function registers + // that interrupt with the SPI library, so beginTransaction() can + // prevent conflicts. The input interruptNumber is the number used + // with attachInterrupt. If SPI is used from a different interrupt + // (eg, a timer), interruptNumber should be 255. + static void usingInterrupt(uint8_t interruptNumber); + // And this does the opposite. + static void notUsingInterrupt(uint8_t interruptNumber); + // Note: the usingInterrupt and notUsingInterrupt functions should + // not to be called from ISR context or inside a transaction. + // For details see: + // https://github.com/arduino/Arduino/pull/2381 + // https://github.com/arduino/Arduino/pull/2449 - inline static void attachInterrupt(); - inline static void detachInterrupt(); // Default + // Before using SPI.transfer() or asserting chip select pins, + // this function is used to gain exclusive access to the SPI bus + // and configure the correct settings. + inline static void beginTransaction(SPISettings settings) { + if (interruptMode > 0) { + uint8_t sreg = SREG; + noInterrupts(); - static void begin(); // Default + #ifdef SPI_AVR_EIMSK + if (interruptMode == 1) { + interruptSave = SPI_AVR_EIMSK; + SPI_AVR_EIMSK &= ~interruptMask; + SREG = sreg; + } else + #endif + { + interruptSave = sreg; + } + } + + #ifdef SPI_TRANSACTION_MISMATCH_LED + if (inTransactionFlag) { + pinMode(SPI_TRANSACTION_MISMATCH_LED, OUTPUT); + digitalWrite(SPI_TRANSACTION_MISMATCH_LED, HIGH); + } + inTransactionFlag = 1; + #endif + + SPCR = settings.spcr; + SPSR = settings.spsr; + } + + // Write to the SPI bus (MOSI pin) and also receive (MISO pin) + inline static uint8_t transfer(uint8_t data) { + SPDR = data; + /* + * The following NOP introduces a small delay that can prevent the wait + * loop form iterating when running at the maximum speed. This gives + * about 10% more speed, even if it seems counter-intuitive. At lower + * speeds it is unnoticed. + */ + asm volatile("nop"); + while (!(SPSR & _BV(SPIF))) ; // wait + return SPDR; + } + inline static uint16_t transfer16(uint16_t data) { + union { uint16_t val; struct { uint8_t lsb; uint8_t msb; }; } in, out; + in.val = data; + if (!(SPCR & _BV(DORD))) { + SPDR = in.msb; + asm volatile("nop"); // See transfer(uint8_t) function + while (!(SPSR & _BV(SPIF))) ; + out.msb = SPDR; + SPDR = in.lsb; + asm volatile("nop"); + while (!(SPSR & _BV(SPIF))) ; + out.lsb = SPDR; + } else { + SPDR = in.lsb; + asm volatile("nop"); + while (!(SPSR & _BV(SPIF))) ; + out.lsb = SPDR; + SPDR = in.msb; + asm volatile("nop"); + while (!(SPSR & _BV(SPIF))) ; + out.msb = SPDR; + } + return out.val; + } + inline static void transfer(void *buf, size_t count) { + if (count == 0) return; + uint8_t *p = (uint8_t *)buf; + SPDR = *p; + while (--count > 0) { + uint8_t out = *(p + 1); + while (!(SPSR & _BV(SPIF))) ; + uint8_t in = SPDR; + SPDR = out; + *p++ = in; + } + while (!(SPSR & _BV(SPIF))) ; + *p = SPDR; + } + // After performing a group of transfers and releasing the chip select + // signal, this function allows others to access the SPI bus + inline static void endTransaction(void) { + #ifdef SPI_TRANSACTION_MISMATCH_LED + if (!inTransactionFlag) { + pinMode(SPI_TRANSACTION_MISMATCH_LED, OUTPUT); + digitalWrite(SPI_TRANSACTION_MISMATCH_LED, HIGH); + } + inTransactionFlag = 0; + #endif + + if (interruptMode > 0) { + #ifdef SPI_AVR_EIMSK + uint8_t sreg = SREG; + #endif + noInterrupts(); + #ifdef SPI_AVR_EIMSK + if (interruptMode == 1) { + SPI_AVR_EIMSK = interruptSave; + SREG = sreg; + } else + #endif + { + SREG = interruptSave; + } + } + } + + // Disable the SPI bus static void end(); - static void setBitOrder(uint8_t); - static void setDataMode(uint8_t); - static void setClockDivider(uint8_t); + // This function is deprecated. New applications should use + // beginTransaction() to configure SPI settings. + inline static void setBitOrder(uint8_t bitOrder) { + if (bitOrder == LSBFIRST) SPCR |= _BV(DORD); + else SPCR &= ~(_BV(DORD)); + } + // This function is deprecated. New applications should use + // beginTransaction() to configure SPI settings. + inline static void setDataMode(uint8_t dataMode) { + SPCR = (SPCR & ~SPI_MODE_MASK) | dataMode; + } + // This function is deprecated. New applications should use + // beginTransaction() to configure SPI settings. + inline static void setClockDivider(uint8_t clockDiv) { + SPCR = (SPCR & ~SPI_CLOCK_MASK) | (clockDiv & SPI_CLOCK_MASK); + SPSR = (SPSR & ~SPI_2XCLOCK_MASK) | ((clockDiv >> 2) & SPI_2XCLOCK_MASK); + } + // These undocumented functions should not be used. SPI.transfer() + // polls the hardware flag which is automatically cleared as the + // AVR responds to SPI's interrupt + inline static void attachInterrupt() { SPCR |= _BV(SPIE); } + inline static void detachInterrupt() { SPCR &= ~_BV(SPIE); } + +private: + static uint8_t initialized; + static uint8_t interruptMode; // 0=none, 1=mask, 2=global + static uint8_t interruptMask; // which interrupts to mask + static uint8_t interruptSave; // temp storage, to restore state + #ifdef SPI_TRANSACTION_MISMATCH_LED + static uint8_t inTransactionFlag; + #endif }; extern SPIClass SPI; -byte SPIClass::transfer(byte _data) { - SPDR = _data; - while (!(SPSR & _BV(SPIF))) - ; - return SPDR; -} - -void SPIClass::attachInterrupt() { - SPCR |= _BV(SPIE); -} - -void SPIClass::detachInterrupt() { - SPCR &= ~_BV(SPIE); -} - #endif diff --git a/libraries/SPI/examples/BarometricPressureSensor/BarometricPressureSensor.ino b/libraries/SPI/examples/BarometricPressureSensor/BarometricPressureSensor.ino index 9d77a4261..8104fcbc2 100644 --- a/libraries/SPI/examples/BarometricPressureSensor/BarometricPressureSensor.ino +++ b/libraries/SPI/examples/BarometricPressureSensor/BarometricPressureSensor.ino @@ -1,14 +1,14 @@ /* SCP1000 Barometric Pressure Sensor Display - + Shows the output of a Barometric Pressure Sensor on a Uses the SPI library. For details on the sensor, see: http://www.sparkfun.com/commerce/product_info.php?products_id=8161 http://www.vti.fi/en/support/obsolete_products/pressure_sensors/ - + This sketch adapted from Nathan Seidle's SCP1000 example for PIC: http://www.sparkfun.com/datasheets/Sensors/SCP1000-Testing.zip - + Circuit: SCP1000 sensor attached to pins 6, 7, 10 - 13: DRDY: pin 6 @@ -16,7 +16,7 @@ MOSI: pin 11 MISO: pin 12 SCK: pin 13 - + created 31 July 2010 modified 14 August 2010 by Tom Igoe @@ -77,7 +77,7 @@ void loop() { //Read the pressure data lower 16 bits: unsigned int pressure_data_low = readRegister(0x20, 2); //combine the two parts into one 19-bit number: - long pressure = ((pressure_data_high << 16) | pressure_data_low)/4; + long pressure = ((pressure_data_high << 16) | pressure_data_low) / 4; // display the temperature: Serial.println("\tPressure [Pa]=" + String(pressure)); diff --git a/libraries/SPI/examples/DigitalPotControl/DigitalPotControl.ino b/libraries/SPI/examples/DigitalPotControl/DigitalPotControl.ino index adf93a2c1..b135a74f4 100644 --- a/libraries/SPI/examples/DigitalPotControl/DigitalPotControl.ino +++ b/libraries/SPI/examples/DigitalPotControl/DigitalPotControl.ino @@ -1,16 +1,16 @@ /* Digital Pot Control - + This example controls an Analog Devices AD5206 digital potentiometer. The AD5206 has 6 potentiometer channels. Each channel's pins are labeled A - connect this to voltage W - this is the pot's wiper, which changes when you set it B - connect this to ground. - - The AD5206 is SPI-compatible,and to command it, you send two bytes, + + The AD5206 is SPI-compatible,and to command it, you send two bytes, one with the channel number (0 - 5) and one with the resistance value for the - channel (0 - 255). - + channel (0 - 255). + The circuit: * All A pins of AD5206 connected to +5V * All B pins of AD5206 connected to ground @@ -18,12 +18,12 @@ * CS - to digital pin 10 (SS pin) * SDI - to digital pin 11 (MOSI pin) * CLK - to digital pin 13 (SCK pin) - - created 10 Aug 2010 + + created 10 Aug 2010 by Tom Igoe - + Thanks to Heather Dewey-Hagborg for the original tutorial, 2005 - + */ @@ -38,12 +38,12 @@ void setup() { // set the slaveSelectPin as an output: pinMode (slaveSelectPin, OUTPUT); // initialize SPI: - SPI.begin(); + SPI.begin(); } void loop() { // go through the six channels of the digital pot: - for (int channel = 0; channel < 6; channel++) { + for (int channel = 0; channel < 6; channel++) { // change the resistance on this channel from min to max: for (int level = 0; level < 255; level++) { digitalPotWrite(channel, level); @@ -62,10 +62,10 @@ void loop() { void digitalPotWrite(int address, int value) { // take the SS pin low to select the chip: - digitalWrite(slaveSelectPin,LOW); + digitalWrite(slaveSelectPin, LOW); // send in the address and value via SPI: SPI.transfer(address); SPI.transfer(value); // take the SS pin high to de-select the chip: - digitalWrite(slaveSelectPin,HIGH); + digitalWrite(slaveSelectPin, HIGH); } From 6ecb174c40fb880ac555182f918048b0050b3c98 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Wed, 15 Oct 2014 11:26:09 +0200 Subject: [PATCH 093/148] Backported 'yield()' hook from 1.5.x --- hardware/arduino/cores/arduino/Arduino.h | 2 ++ hardware/arduino/cores/arduino/hooks.c | 31 ++++++++++++++++++++++++ hardware/arduino/cores/arduino/wiring.c | 1 + 3 files changed, 34 insertions(+) create mode 100644 hardware/arduino/cores/arduino/hooks.c diff --git a/hardware/arduino/cores/arduino/Arduino.h b/hardware/arduino/cores/arduino/Arduino.h index d4a22a69c..f03c2bc3b 100755 --- a/hardware/arduino/cores/arduino/Arduino.h +++ b/hardware/arduino/cores/arduino/Arduino.h @@ -34,6 +34,8 @@ extern "C"{ #endif +void yield(void); + #define HIGH 0x1 #define LOW 0x0 diff --git a/hardware/arduino/cores/arduino/hooks.c b/hardware/arduino/cores/arduino/hooks.c new file mode 100644 index 000000000..641eabc73 --- /dev/null +++ b/hardware/arduino/cores/arduino/hooks.c @@ -0,0 +1,31 @@ +/* + Copyright (c) 2012 Arduino. All right reserved. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + See the GNU Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +*/ + +/** + * Empty yield() hook. + * + * This function is intended to be used by library writers to build + * libraries or sketches that supports cooperative threads. + * + * Its defined as a weak symbol and it can be redefined to implement a + * real cooperative scheduler. + */ +static void __empty() { + // Empty +} +void yield(void) __attribute__ ((weak, alias("__empty"))); diff --git a/hardware/arduino/cores/arduino/wiring.c b/hardware/arduino/cores/arduino/wiring.c index a3c4390e3..5cbe24195 100644 --- a/hardware/arduino/cores/arduino/wiring.c +++ b/hardware/arduino/cores/arduino/wiring.c @@ -111,6 +111,7 @@ void delay(unsigned long ms) uint16_t start = (uint16_t)micros(); while (ms > 0) { + yield(); if (((uint16_t)micros() - start) >= 1000) { ms--; start += 1000; From b9b0fcdadc04a6a2d6954611b49aa1f7a6422e80 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Fri, 17 Oct 2014 12:20:30 +0200 Subject: [PATCH 094/148] Backported Ethernet library from 1.5.x --- libraries/Ethernet/Dhcp.cpp | 4 +- libraries/Ethernet/Dhcp.h | 0 libraries/Ethernet/Dns.cpp | 4 +- libraries/Ethernet/Ethernet.cpp | 22 ++++- libraries/Ethernet/EthernetClient.cpp | 13 ++- libraries/Ethernet/EthernetServer.cpp | 4 +- libraries/Ethernet/EthernetUdp.cpp | 8 +- .../BarometricPressureWebServer.ino | 61 ++++++------ .../examples/ChatServer/ChatServer.ino | 29 +++--- .../DhcpAddressPrinter/DhcpAddressPrinter.ino | 25 ++--- .../DhcpChatServer/DhcpChatServer.ino | 29 +++--- .../examples/TelnetClient/TelnetClient.ino | 37 ++++---- .../UDPSendReceiveString.ino | 55 +++++------ .../examples/UdpNtpClient/UdpNtpClient.ino | 84 ++++++++-------- .../Ethernet/examples/WebClient/WebClient.ino | 24 ++--- .../WebClientRepeating/WebClientRepeating.ino | 64 ++++++------- .../Ethernet/examples/WebServer/WebServer.ino | 29 +++--- libraries/Ethernet/utility/socket.cpp | 95 ++++++++++++++++--- libraries/Ethernet/utility/socket.h | 5 +- libraries/Ethernet/{ => utility}/util.h | 3 +- libraries/Ethernet/utility/w5100.cpp | 12 +-- libraries/Ethernet/utility/w5100.h | 6 +- 22 files changed, 348 insertions(+), 265 deletions(-) mode change 100755 => 100644 libraries/Ethernet/Dhcp.cpp mode change 100755 => 100644 libraries/Ethernet/Dhcp.h mode change 100755 => 100644 libraries/Ethernet/utility/socket.h rename libraries/Ethernet/{ => utility}/util.h (77%) mode change 100755 => 100644 libraries/Ethernet/utility/w5100.h diff --git a/libraries/Ethernet/Dhcp.cpp b/libraries/Ethernet/Dhcp.cpp old mode 100755 new mode 100644 index 56d5b6951..94ab18270 --- a/libraries/Ethernet/Dhcp.cpp +++ b/libraries/Ethernet/Dhcp.cpp @@ -1,13 +1,13 @@ // DHCP Library v0.3 - April 25, 2009 // Author: Jordan Terrell - blog.jordanterrell.com -#include "w5100.h" +#include "utility/w5100.h" #include #include #include "Dhcp.h" #include "Arduino.h" -#include "util.h" +#include "utility/util.h" int DhcpClass::beginWithDHCP(uint8_t *mac, unsigned long timeout, unsigned long responseTimeout) { diff --git a/libraries/Ethernet/Dhcp.h b/libraries/Ethernet/Dhcp.h old mode 100755 new mode 100644 diff --git a/libraries/Ethernet/Dns.cpp b/libraries/Ethernet/Dns.cpp index b3c1a9dc1..62e36f8a3 100644 --- a/libraries/Ethernet/Dns.cpp +++ b/libraries/Ethernet/Dns.cpp @@ -2,9 +2,9 @@ // (c) Copyright 2009-2010 MCQN Ltd. // Released under Apache License, version 2.0 -#include "w5100.h" +#include "utility/w5100.h" #include "EthernetUdp.h" -#include "util.h" +#include "utility/util.h" #include "Dns.h" #include diff --git a/libraries/Ethernet/Ethernet.cpp b/libraries/Ethernet/Ethernet.cpp index c31a85f09..3eea69a2a 100644 --- a/libraries/Ethernet/Ethernet.cpp +++ b/libraries/Ethernet/Ethernet.cpp @@ -1,4 +1,4 @@ -#include "w5100.h" +#include "utility/w5100.h" #include "Ethernet.h" #include "Dhcp.h" @@ -16,8 +16,10 @@ int EthernetClass::begin(uint8_t *mac_address) // Initialise the basic info W5100.init(); + SPI.beginTransaction(SPI_ETHERNET_SETTINGS); W5100.setMACAddress(mac_address); W5100.setIPAddress(IPAddress(0,0,0,0).raw_address()); + SPI.endTransaction(); // Now try to get our config info from a DHCP server int ret = _dhcp->beginWithDHCP(mac_address); @@ -25,9 +27,11 @@ int EthernetClass::begin(uint8_t *mac_address) { // We've successfully found a DHCP server and got our configuration info, so set things // accordingly + SPI.beginTransaction(SPI_ETHERNET_SETTINGS); W5100.setIPAddress(_dhcp->getLocalIp().raw_address()); W5100.setGatewayIp(_dhcp->getGatewayIp().raw_address()); W5100.setSubnetMask(_dhcp->getSubnetMask().raw_address()); + SPI.endTransaction(); _dnsServerAddress = _dhcp->getDnsServerIp(); } @@ -61,10 +65,12 @@ void EthernetClass::begin(uint8_t *mac_address, IPAddress local_ip, IPAddress dn void EthernetClass::begin(uint8_t *mac, IPAddress local_ip, IPAddress dns_server, IPAddress gateway, IPAddress subnet) { W5100.init(); + SPI.beginTransaction(SPI_ETHERNET_SETTINGS); W5100.setMACAddress(mac); - W5100.setIPAddress(local_ip._address); - W5100.setGatewayIp(gateway._address); - W5100.setSubnetMask(subnet._address); + W5100.setIPAddress(local_ip.raw_address()); + W5100.setGatewayIp(gateway.raw_address()); + W5100.setSubnetMask(subnet.raw_address()); + SPI.endTransaction(); _dnsServerAddress = dns_server; } @@ -80,9 +86,11 @@ int EthernetClass::maintain(){ case DHCP_CHECK_RENEW_OK: case DHCP_CHECK_REBIND_OK: //we might have got a new IP. + SPI.beginTransaction(SPI_ETHERNET_SETTINGS); W5100.setIPAddress(_dhcp->getLocalIp().raw_address()); W5100.setGatewayIp(_dhcp->getGatewayIp().raw_address()); W5100.setSubnetMask(_dhcp->getSubnetMask().raw_address()); + SPI.endTransaction(); _dnsServerAddress = _dhcp->getDnsServerIp(); break; default: @@ -96,21 +104,27 @@ int EthernetClass::maintain(){ IPAddress EthernetClass::localIP() { IPAddress ret; + SPI.beginTransaction(SPI_ETHERNET_SETTINGS); W5100.getIPAddress(ret.raw_address()); + SPI.endTransaction(); return ret; } IPAddress EthernetClass::subnetMask() { IPAddress ret; + SPI.beginTransaction(SPI_ETHERNET_SETTINGS); W5100.getSubnetMask(ret.raw_address()); + SPI.endTransaction(); return ret; } IPAddress EthernetClass::gatewayIP() { IPAddress ret; + SPI.beginTransaction(SPI_ETHERNET_SETTINGS); W5100.getGatewayIp(ret.raw_address()); + SPI.endTransaction(); return ret; } diff --git a/libraries/Ethernet/EthernetClient.cpp b/libraries/Ethernet/EthernetClient.cpp index 1e89c4e87..a592bfdc9 100644 --- a/libraries/Ethernet/EthernetClient.cpp +++ b/libraries/Ethernet/EthernetClient.cpp @@ -1,5 +1,5 @@ -#include "w5100.h" -#include "socket.h" +#include "utility/w5100.h" +#include "utility/socket.h" extern "C" { #include "string.h" @@ -40,7 +40,7 @@ int EthernetClient::connect(IPAddress ip, uint16_t port) { return 0; for (int i = 0; i < MAX_SOCK_NUM; i++) { - uint8_t s = W5100.readSnSR(i); + uint8_t s = socketStatus(i); if (s == SnSR::CLOSED || s == SnSR::FIN_WAIT || s == SnSR::CLOSE_WAIT) { _sock = i; break; @@ -88,7 +88,7 @@ size_t EthernetClient::write(const uint8_t *buf, size_t size) { int EthernetClient::available() { if (_sock != MAX_SOCK_NUM) - return W5100.getRXReceivedSize(_sock); + return recvAvailable(_sock); return 0; } @@ -120,8 +120,7 @@ int EthernetClient::peek() { } void EthernetClient::flush() { - while (available()) - read(); + ::flush(_sock); } void EthernetClient::stop() { @@ -154,7 +153,7 @@ uint8_t EthernetClient::connected() { uint8_t EthernetClient::status() { if (_sock == MAX_SOCK_NUM) return SnSR::CLOSED; - return W5100.readSnSR(_sock); + return socketStatus(_sock); } // the next function allows us to use the client returned by diff --git a/libraries/Ethernet/EthernetServer.cpp b/libraries/Ethernet/EthernetServer.cpp index 0308b9261..6d6ce8c80 100644 --- a/libraries/Ethernet/EthernetServer.cpp +++ b/libraries/Ethernet/EthernetServer.cpp @@ -1,5 +1,5 @@ -#include "w5100.h" -#include "socket.h" +#include "utility/w5100.h" +#include "utility/socket.h" extern "C" { #include "string.h" } diff --git a/libraries/Ethernet/EthernetUdp.cpp b/libraries/Ethernet/EthernetUdp.cpp index 37600529f..b5dcb78cc 100644 --- a/libraries/Ethernet/EthernetUdp.cpp +++ b/libraries/Ethernet/EthernetUdp.cpp @@ -26,8 +26,8 @@ * bjoern@cs.stanford.edu 12/30/2008 */ -#include "w5100.h" -#include "socket.h" +#include "utility/w5100.h" +#include "utility/socket.h" #include "Ethernet.h" #include "Udp.h" #include "Dns.h" @@ -41,7 +41,7 @@ uint8_t EthernetUDP::begin(uint16_t port) { return 0; for (int i = 0; i < MAX_SOCK_NUM; i++) { - uint8_t s = W5100.readSnSR(i); + uint8_t s = socketStatus(i); if (s == SnSR::CLOSED || s == SnSR::FIN_WAIT) { _sock = i; break; @@ -120,7 +120,7 @@ int EthernetUDP::parsePacket() // discard any remaining bytes in the last packet flush(); - if (W5100.getRXReceivedSize(_sock) > 0) + if (recvAvailable(_sock) > 0) { //HACK - hand-parse the UDP packet using TCP recv method uint8_t tmpBuf[8]; diff --git a/libraries/Ethernet/examples/BarometricPressureWebServer/BarometricPressureWebServer.ino b/libraries/Ethernet/examples/BarometricPressureWebServer/BarometricPressureWebServer.ino index bfbcb6d4a..2c85ddd78 100644 --- a/libraries/Ethernet/examples/BarometricPressureWebServer/BarometricPressureWebServer.ino +++ b/libraries/Ethernet/examples/BarometricPressureWebServer/BarometricPressureWebServer.ino @@ -1,14 +1,14 @@ /* SCP1000 Barometric Pressure Sensor Display - + Serves the output of a Barometric Pressure Sensor as a web page. Uses the SPI library. For details on the sensor, see: http://www.sparkfun.com/commerce/product_info.php?products_id=8161 http://www.vti.fi/en/support/obsolete_products/pressure_sensors/ - + This sketch adapted from Nathan Seidle's SCP1000 example for PIC: http://www.sparkfun.com/datasheets/Sensors/SCP1000-Testing.zip - + Circuit: SCP1000 sensor attached to pins 6,7, and 11 - 13: DRDY: pin 6 @@ -16,7 +16,7 @@ MOSI: pin 11 MISO: pin 12 SCK: pin 13 - + created 31 July 2010 by Tom Igoe */ @@ -28,16 +28,17 @@ // assign a MAC address for the ethernet controller. // fill in your address here: -byte mac[] = { - 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED}; +byte mac[] = { + 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED +}; // assign an IP address for the controller: -IPAddress ip(192,168,1,20); -IPAddress gateway(192,168,1,1); +IPAddress ip(192, 168, 1, 20); +IPAddress gateway(192, 168, 1, 1); IPAddress subnet(255, 255, 255, 0); // Initialize the Ethernet server library -// with the IP address and port you want to use +// with the IP address and port you want to use // (port 80 is default for HTTP): EthernetServer server(80); @@ -49,7 +50,7 @@ const int TEMPERATURE = 0x21; //16 bit temperature reading // pins used for the connection with the sensor // the others you need are controlled by the SPI library): -const int dataReadyPin = 6; +const int dataReadyPin = 6; const int chipSelectPin = 7; float temperature = 0.0; @@ -83,9 +84,9 @@ void setup() { } -void loop() { +void loop() { // check for a reading no more than once a second. - if (millis() - lastReadingTime > 1000){ + if (millis() - lastReadingTime > 1000) { // if there's a reading ready, read it: // don't do anything until the data ready pin is high: if (digitalRead(dataReadyPin) == HIGH) { @@ -109,13 +110,13 @@ void getData() { temperature = (float)tempData / 20.0; //Read the pressure data highest 3 bits: - byte pressureDataHigh = readRegister(0x1F, 1); + byte pressureDataHigh = readRegister(0x1F, 1); pressureDataHigh &= 0b00000111; //you only needs bits 2 to 0 //Read the pressure data lower 16 bits: - unsigned int pressureDataLow = readRegister(0x20, 2); + unsigned int pressureDataLow = readRegister(0x20, 2); //combine the two parts into one 19-bit number: - pressure = ((pressureDataHigh << 16) | pressureDataLow)/4; + pressure = ((pressureDataHigh << 16) | pressureDataLow) / 4; Serial.print("Temperature: "); Serial.print(temperature); @@ -149,13 +150,13 @@ void listenForEthernetClients() { client.println("
    "); client.print("Pressure: " + String(pressure)); client.print(" Pa"); - client.println("
    "); + client.println("
    "); break; } if (c == '\n') { // you're starting a new line currentLineIsBlank = true; - } + } else if (c != '\r') { // you've gotten a character on the current line currentLineIsBlank = false; @@ -167,7 +168,7 @@ void listenForEthernetClients() { // close the connection: client.stop(); } -} +} //Send a write command to SCP1000 @@ -179,20 +180,20 @@ void writeRegister(byte registerName, byte registerValue) { registerName |= 0b00000010; //Write command // take the chip select low to select the device: - digitalWrite(chipSelectPin, LOW); + digitalWrite(chipSelectPin, LOW); SPI.transfer(registerName); //Send register location SPI.transfer(registerValue); //Send value to record into register // take the chip select high to de-select: - digitalWrite(chipSelectPin, HIGH); + digitalWrite(chipSelectPin, HIGH); } //Read register from the SCP1000: unsigned int readRegister(byte registerName, int numBytes) { byte inByte = 0; // incoming from the SPI read - unsigned int result = 0; // result to return + unsigned int result = 0; // result to return // SCP1000 expects the register name in the upper 6 bits // of the byte: @@ -201,22 +202,22 @@ unsigned int readRegister(byte registerName, int numBytes) { registerName &= 0b11111100; //Read command // take the chip select low to select the device: - digitalWrite(chipSelectPin, LOW); + digitalWrite(chipSelectPin, LOW); // send the device the register you want to read: - int command = SPI.transfer(registerName); + int command = SPI.transfer(registerName); // send a value of 0 to read the first byte returned: - inByte = SPI.transfer(0x00); - + inByte = SPI.transfer(0x00); + result = inByte; - // if there's more than one byte returned, + // if there's more than one byte returned, // shift the first byte then get the second byte: - if (numBytes > 1){ + if (numBytes > 1) { result = inByte << 8; - inByte = SPI.transfer(0x00); - result = result |inByte; + inByte = SPI.transfer(0x00); + result = result | inByte; } // take the chip select high to de-select: - digitalWrite(chipSelectPin, HIGH); + digitalWrite(chipSelectPin, HIGH); // return the result: return(result); } diff --git a/libraries/Ethernet/examples/ChatServer/ChatServer.ino b/libraries/Ethernet/examples/ChatServer/ChatServer.ino index d50e5a657..927a60e1b 100644 --- a/libraries/Ethernet/examples/ChatServer/ChatServer.ino +++ b/libraries/Ethernet/examples/ChatServer/ChatServer.ino @@ -1,20 +1,20 @@ /* Chat Server - + A simple server that distributes any incoming messages to all connected clients. To use telnet to your device's IP address and type. You can see the client's input in the serial monitor as well. - Using an Arduino Wiznet Ethernet shield. - + Using an Arduino Wiznet Ethernet shield. + Circuit: * Ethernet shield attached to pins 10, 11, 12, 13 * Analog inputs attached to pins A0 through A5 (optional) - + created 18 Dec 2009 by David A. Mellis modified 9 Apr 2012 by Tom Igoe - + */ #include @@ -23,10 +23,11 @@ // Enter a MAC address and IP address for your controller below. // The IP address will be dependent on your local network. // gateway and subnet are optional: -byte mac[] = { - 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED }; -IPAddress ip(192,168,1, 177); -IPAddress gateway(192,168,1, 1); +byte mac[] = { + 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED +}; +IPAddress ip(192, 168, 1, 177); +IPAddress gateway(192, 168, 1, 1); IPAddress subnet(255, 255, 0, 0); @@ -39,9 +40,9 @@ void setup() { Ethernet.begin(mac, ip, gateway, subnet); // start listening for clients server.begin(); - // Open serial communications and wait for port to open: + // Open serial communications and wait for port to open: Serial.begin(9600); - while (!Serial) { + while (!Serial) { ; // wait for serial port to connect. Needed for Leonardo only } @@ -58,11 +59,11 @@ void loop() { if (client) { if (!alreadyConnected) { // clead out the input buffer: - client.flush(); + client.flush(); Serial.println("We have a new client"); - client.println("Hello, client!"); + client.println("Hello, client!"); alreadyConnected = true; - } + } if (client.available() > 0) { // read the bytes incoming from the client: diff --git a/libraries/Ethernet/examples/DhcpAddressPrinter/DhcpAddressPrinter.ino b/libraries/Ethernet/examples/DhcpAddressPrinter/DhcpAddressPrinter.ino index 5eaaf24d1..a41b77403 100644 --- a/libraries/Ethernet/examples/DhcpAddressPrinter/DhcpAddressPrinter.ino +++ b/libraries/Ethernet/examples/DhcpAddressPrinter/DhcpAddressPrinter.ino @@ -1,17 +1,17 @@ /* DHCP-based IP printer - + This sketch uses the DHCP extensions to the Ethernet library to get an IP address via DHCP and print the address obtained. - using an Arduino Wiznet Ethernet shield. - + using an Arduino Wiznet Ethernet shield. + Circuit: * Ethernet shield attached to pins 10, 11, 12, 13 - + created 12 April 2011 modified 9 Apr 2012 by Tom Igoe - + */ #include @@ -19,19 +19,20 @@ // Enter a MAC address for your controller below. // Newer Ethernet shields have a MAC address printed on a sticker on the shield -byte mac[] = { - 0x00, 0xAA, 0xBB, 0xCC, 0xDE, 0x02 }; +byte mac[] = { + 0x00, 0xAA, 0xBB, 0xCC, 0xDE, 0x02 +}; // Initialize the Ethernet client library -// with the IP address and port of the server +// with the IP address and port of the server // that you want to connect to (port 80 is default for HTTP): EthernetClient client; void setup() { - // Open serial communications and wait for port to open: + // Open serial communications and wait for port to open: Serial.begin(9600); // this check is only needed on the Leonardo: - while (!Serial) { + while (!Serial) { ; // wait for serial port to connect. Needed for Leonardo only } @@ -39,7 +40,7 @@ void setup() { if (Ethernet.begin(mac) == 0) { Serial.println("Failed to configure Ethernet using DHCP"); // no point in carrying on, so do nothing forevermore: - for(;;) + for (;;) ; } // print your local IP address: @@ -47,7 +48,7 @@ void setup() { for (byte thisByte = 0; thisByte < 4; thisByte++) { // print the value of each byte of the IP address: Serial.print(Ethernet.localIP()[thisByte], DEC); - Serial.print("."); + Serial.print("."); } Serial.println(); } diff --git a/libraries/Ethernet/examples/DhcpChatServer/DhcpChatServer.ino b/libraries/Ethernet/examples/DhcpChatServer/DhcpChatServer.ino index 09cbd4354..73cde4bbb 100644 --- a/libraries/Ethernet/examples/DhcpChatServer/DhcpChatServer.ino +++ b/libraries/Ethernet/examples/DhcpChatServer/DhcpChatServer.ino @@ -1,21 +1,21 @@ /* DHCP Chat Server - + A simple server that distributes any incoming messages to all connected clients. To use telnet to your device's IP address and type. You can see the client's input in the serial monitor as well. - Using an Arduino Wiznet Ethernet shield. - + Using an Arduino Wiznet Ethernet shield. + THis version attempts to get an IP address using DHCP - + Circuit: * Ethernet shield attached to pins 10, 11, 12, 13 - + created 21 May 2011 modified 9 Apr 2012 by Tom Igoe Based on ChatServer example by David A. Mellis - + */ #include @@ -24,10 +24,11 @@ // Enter a MAC address and IP address for your controller below. // The IP address will be dependent on your local network. // gateway and subnet are optional: -byte mac[] = { - 0x00, 0xAA, 0xBB, 0xCC, 0xDE, 0x02 }; -IPAddress ip(192,168,1, 177); -IPAddress gateway(192,168,1, 1); +byte mac[] = { + 0x00, 0xAA, 0xBB, 0xCC, 0xDE, 0x02 +}; +IPAddress ip(192, 168, 1, 177); +IPAddress gateway(192, 168, 1, 1); IPAddress subnet(255, 255, 0, 0); // telnet defaults to port 23 @@ -38,7 +39,7 @@ void setup() { // Open serial communications and wait for port to open: Serial.begin(9600); // this check is only needed on the Leonardo: - while (!Serial) { + while (!Serial) { ; // wait for serial port to connect. Needed for Leonardo only } @@ -56,12 +57,12 @@ void setup() { for (byte thisByte = 0; thisByte < 4; thisByte++) { // print the value of each byte of the IP address: Serial.print(ip[thisByte], DEC); - Serial.print("."); + Serial.print("."); } Serial.println(); // start listening for clients server.begin(); - + } void loop() { @@ -72,7 +73,7 @@ void loop() { if (client) { if (!gotAMessage) { Serial.println("We have a new client"); - client.println("Hello, client!"); + client.println("Hello, client!"); gotAMessage = true; } diff --git a/libraries/Ethernet/examples/TelnetClient/TelnetClient.ino b/libraries/Ethernet/examples/TelnetClient/TelnetClient.ino index 345712564..dcf3e8aa9 100644 --- a/libraries/Ethernet/examples/TelnetClient/TelnetClient.ino +++ b/libraries/Ethernet/examples/TelnetClient/TelnetClient.ino @@ -1,21 +1,21 @@ /* Telnet client - + This sketch connects to a a telnet server (http://www.google.com) - using an Arduino Wiznet Ethernet shield. You'll need a telnet server + using an Arduino Wiznet Ethernet shield. You'll need a telnet server to test this with. - Processing's ChatServer example (part of the network library) works well, + Processing's ChatServer example (part of the network library) works well, running on port 10002. It can be found as part of the examples - in the Processing application, available at + in the Processing application, available at http://processing.org/ - + Circuit: * Ethernet shield attached to pins 10, 11, 12, 13 - + created 14 Sep 2010 modified 9 Apr 2012 by Tom Igoe - + */ #include @@ -23,15 +23,16 @@ // Enter a MAC address and IP address for your controller below. // The IP address will be dependent on your local network: -byte mac[] = { - 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED }; -IPAddress ip(192,168,1,177); +byte mac[] = { + 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED +}; +IPAddress ip(192, 168, 1, 177); // Enter the IP address of the server you're connecting to: -IPAddress server(1,1,1,1); +IPAddress server(1, 1, 1, 1); // Initialize the Ethernet client library -// with the IP address and port of the server +// with the IP address and port of the server // that you want to connect to (port 23 is default for telnet; // if you're using Processing's ChatServer, use port 10002): EthernetClient client; @@ -39,9 +40,9 @@ EthernetClient client; void setup() { // start the Ethernet connection: Ethernet.begin(mac, ip); - // Open serial communications and wait for port to open: + // Open serial communications and wait for port to open: Serial.begin(9600); - while (!Serial) { + while (!Serial) { ; // wait for serial port to connect. Needed for Leonardo only } @@ -53,7 +54,7 @@ void setup() { // if you get a connection, report back via serial: if (client.connect(server, 10002)) { Serial.println("connected"); - } + } else { // if you didn't get a connection to the server: Serial.println("connection failed"); @@ -62,7 +63,7 @@ void setup() { void loop() { - // if there are incoming bytes available + // if there are incoming bytes available // from the server, read them and print them: if (client.available()) { char c = client.read(); @@ -74,7 +75,7 @@ void loop() while (Serial.available() > 0) { char inChar = Serial.read(); if (client.connected()) { - client.print(inChar); + client.print(inChar); } } @@ -84,7 +85,7 @@ void loop() Serial.println("disconnecting."); client.stop(); // do nothing: - while(true); + while (true); } } diff --git a/libraries/Ethernet/examples/UDPSendReceiveString/UDPSendReceiveString.ino b/libraries/Ethernet/examples/UDPSendReceiveString/UDPSendReceiveString.ino index 4d4045cac..99de7650c 100644 --- a/libraries/Ethernet/examples/UDPSendReceiveString/UDPSendReceiveString.ino +++ b/libraries/Ethernet/examples/UDPSendReceiveString/UDPSendReceiveString.ino @@ -2,13 +2,13 @@ UDPSendReceive.pde: This sketch receives UDP message strings, prints them to the serial port and sends an "acknowledge" string back to the sender - - A Processing sketch is included at the end of file that can be used to send + + A Processing sketch is included at the end of file that can be used to send and received messages for testing with a computer. - + created 21 Aug 2010 by Michael Margolis - + This code is in the public domain. */ @@ -20,8 +20,9 @@ // Enter a MAC address and IP address for your controller below. // The IP address will be dependent on your local network: -byte mac[] = { - 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED }; +byte mac[] = { + 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED +}; IPAddress ip(192, 168, 1, 177); unsigned int localPort = 8888; // local port to listen on @@ -35,7 +36,7 @@ EthernetUDP Udp; void setup() { // start the Ethernet and UDP: - Ethernet.begin(mac,ip); + Ethernet.begin(mac, ip); Udp.begin(localPort); Serial.begin(9600); @@ -44,13 +45,13 @@ void setup() { void loop() { // if there's data available, read a packet int packetSize = Udp.parsePacket(); - if(packetSize) + if (packetSize) { Serial.print("Received packet of size "); Serial.println(packetSize); Serial.print("From "); IPAddress remote = Udp.remoteIP(); - for (int i =0; i < 4; i++) + for (int i = 0; i < 4; i++) { Serial.print(remote[i], DEC); if (i < 3) @@ -62,7 +63,7 @@ void loop() { Serial.println(Udp.remotePort()); // read the packet into packetBufffer - Udp.read(packetBuffer,UDP_TX_PACKET_MAX_SIZE); + Udp.read(packetBuffer, UDP_TX_PACKET_MAX_SIZE); Serial.println("Contents:"); Serial.println(packetBuffer); @@ -78,40 +79,40 @@ void loop() { /* Processing sketch to run with this example ===================================================== - - // Processing UDP example to send and receive string data from Arduino + + // Processing UDP example to send and receive string data from Arduino // press any key to send the "Hello Arduino" message - - + + import hypermedia.net.*; - + UDP udp; // define the UDP object - - + + void setup() { udp = new UDP( this, 6000 ); // create a new datagram connection on port 6000 //udp.log( true ); // <-- printout the connection activity - udp.listen( true ); // and wait for incoming message + udp.listen( true ); // and wait for incoming message } - + void draw() { } - + void keyPressed() { String ip = "192.168.1.177"; // the remote IP address int port = 8888; // the destination port - + udp.send("Hello World", ip, port ); // the message to send - + } - + void receive( byte[] data ) { // <-- default handler //void receive( byte[] data, String ip, int port ) { // <-- extended handler - - for(int i=0; i < data.length; i++) - print(char(data[i])); - println(); + + for(int i=0; i < data.length; i++) + print(char(data[i])); + println(); } */ diff --git a/libraries/Ethernet/examples/UdpNtpClient/UdpNtpClient.ino b/libraries/Ethernet/examples/UdpNtpClient/UdpNtpClient.ino index 6b3b53d13..25c71c402 100644 --- a/libraries/Ethernet/examples/UdpNtpClient/UdpNtpClient.ino +++ b/libraries/Ethernet/examples/UdpNtpClient/UdpNtpClient.ino @@ -1,55 +1,47 @@ /* Udp NTP Client - + Get the time from a Network Time Protocol (NTP) time server - Demonstrates use of UDP sendPacket and ReceivePacket - For more on NTP time servers and the messages needed to communicate with them, + Demonstrates use of UDP sendPacket and ReceivePacket + For more on NTP time servers and the messages needed to communicate with them, see http://en.wikipedia.org/wiki/Network_Time_Protocol - - Warning: NTP Servers are subject to temporary failure or IP address change. - Plese check - http://tf.nist.gov/tf-cgi/servers.cgi - - if the time server used in the example didn't work. - - created 4 Sep 2010 + created 4 Sep 2010 by Michael Margolis modified 9 Apr 2012 by Tom Igoe - + This code is in the public domain. */ -#include +#include #include #include // Enter a MAC address for your controller below. // Newer Ethernet shields have a MAC address printed on a sticker on the shield -byte mac[] = { - 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED }; +byte mac[] = { + 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED +}; -unsigned int localPort = 8888; // local port to listen for UDP packets +unsigned int localPort = 8888; // local port to listen for UDP packets -IPAddress timeServer(132, 163, 4, 101); // time-a.timefreq.bldrdoc.gov NTP server -// IPAddress timeServer(132, 163, 4, 102); // time-b.timefreq.bldrdoc.gov NTP server -// IPAddress timeServer(132, 163, 4, 103); // time-c.timefreq.bldrdoc.gov NTP server +char timeServer[] = "time.nist.gov"; // time.nist.gov NTP server -const int NTP_PACKET_SIZE= 48; // NTP time stamp is in the first 48 bytes of the message +const int NTP_PACKET_SIZE = 48; // NTP time stamp is in the first 48 bytes of the message -byte packetBuffer[ NTP_PACKET_SIZE]; //buffer to hold incoming and outgoing packets +byte packetBuffer[ NTP_PACKET_SIZE]; //buffer to hold incoming and outgoing packets // A UDP instance to let us send and receive packets over UDP EthernetUDP Udp; -void setup() +void setup() { - // Open serial communications and wait for port to open: + // Open serial communications and wait for port to open: Serial.begin(9600); - while (!Serial) { + while (!Serial) { ; // wait for serial port to connect. Needed for Leonardo only } @@ -58,7 +50,7 @@ void setup() if (Ethernet.begin(mac) == 0) { Serial.println("Failed to configure Ethernet using DHCP"); // no point in carrying on, so do nothing forevermore: - for(;;) + for (;;) ; } Udp.begin(localPort); @@ -68,58 +60,58 @@ void loop() { sendNTPpacket(timeServer); // send an NTP packet to a time server - // wait to see if a reply is available - delay(1000); - if ( Udp.parsePacket() ) { + // wait to see if a reply is available + delay(1000); + if ( Udp.parsePacket() ) { // We've received a packet, read the data from it - Udp.read(packetBuffer,NTP_PACKET_SIZE); // read the packet into the buffer + Udp.read(packetBuffer, NTP_PACKET_SIZE); // read the packet into the buffer //the timestamp starts at byte 40 of the received packet and is four bytes, // or two words, long. First, esxtract the two words: unsigned long highWord = word(packetBuffer[40], packetBuffer[41]); - unsigned long lowWord = word(packetBuffer[42], packetBuffer[43]); + unsigned long lowWord = word(packetBuffer[42], packetBuffer[43]); // combine the four bytes (two words) into a long integer // this is NTP time (seconds since Jan 1 1900): - unsigned long secsSince1900 = highWord << 16 | lowWord; + unsigned long secsSince1900 = highWord << 16 | lowWord; Serial.print("Seconds since Jan 1 1900 = " ); - Serial.println(secsSince1900); + Serial.println(secsSince1900); // now convert NTP time into everyday time: Serial.print("Unix time = "); // Unix time starts on Jan 1 1970. In seconds, that's 2208988800: - const unsigned long seventyYears = 2208988800UL; + const unsigned long seventyYears = 2208988800UL; // subtract seventy years: - unsigned long epoch = secsSince1900 - seventyYears; + unsigned long epoch = secsSince1900 - seventyYears; // print Unix time: - Serial.println(epoch); + Serial.println(epoch); // print the hour, minute and second: Serial.print("The UTC time is "); // UTC is the time at Greenwich Meridian (GMT) Serial.print((epoch % 86400L) / 3600); // print the hour (86400 equals secs per day) - Serial.print(':'); + Serial.print(':'); if ( ((epoch % 3600) / 60) < 10 ) { // In the first 10 minutes of each hour, we'll want a leading '0' Serial.print('0'); } Serial.print((epoch % 3600) / 60); // print the minute (3600 equals secs per minute) - Serial.print(':'); + Serial.print(':'); if ( (epoch % 60) < 10 ) { // In the first 10 seconds of each minute, we'll want a leading '0' Serial.print('0'); } - Serial.println(epoch %60); // print the second + Serial.println(epoch % 60); // print the second } // wait ten seconds before asking for the time again - delay(10000); + delay(10000); } -// send an NTP request to the time server at the given address -unsigned long sendNTPpacket(IPAddress& address) +// send an NTP request to the time server at the given address +unsigned long sendNTPpacket(char* address) { // set all bytes in the buffer to 0 - memset(packetBuffer, 0, NTP_PACKET_SIZE); + memset(packetBuffer, 0, NTP_PACKET_SIZE); // Initialize values needed to form NTP request // (see URL above for details on the packets) packetBuffer[0] = 0b11100011; // LI, Version, Mode @@ -127,16 +119,16 @@ unsigned long sendNTPpacket(IPAddress& address) packetBuffer[2] = 6; // Polling Interval packetBuffer[3] = 0xEC; // Peer Clock Precision // 8 bytes of zero for Root Delay & Root Dispersion - packetBuffer[12] = 49; + packetBuffer[12] = 49; packetBuffer[13] = 0x4E; packetBuffer[14] = 49; packetBuffer[15] = 52; // all NTP fields have been given values, now - // you can send a packet requesting a timestamp: + // you can send a packet requesting a timestamp: Udp.beginPacket(address, 123); //NTP requests are to port 123 - Udp.write(packetBuffer,NTP_PACKET_SIZE); - Udp.endPacket(); + Udp.write(packetBuffer, NTP_PACKET_SIZE); + Udp.endPacket(); } diff --git a/libraries/Ethernet/examples/WebClient/WebClient.ino b/libraries/Ethernet/examples/WebClient/WebClient.ino index 40523a4d9..9afd40eae 100644 --- a/libraries/Ethernet/examples/WebClient/WebClient.ino +++ b/libraries/Ethernet/examples/WebClient/WebClient.ino @@ -1,17 +1,17 @@ /* Web client - + This sketch connects to a website (http://www.google.com) - using an Arduino Wiznet Ethernet shield. - + using an Arduino Wiznet Ethernet shield. + Circuit: * Ethernet shield attached to pins 10, 11, 12, 13 - + created 18 Dec 2009 by David A. Mellis modified 9 Apr 2012 by Tom Igoe, based on work by Adrian McEwen - + */ #include @@ -26,17 +26,17 @@ byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED }; char server[] = "www.google.com"; // name address for Google (using DNS) // Set the static IP address to use if the DHCP fails to assign -IPAddress ip(192,168,0,177); +IPAddress ip(192, 168, 0, 177); // Initialize the Ethernet client library -// with the IP address and port of the server +// with the IP address and port of the server // that you want to connect to (port 80 is default for HTTP): EthernetClient client; void setup() { - // Open serial communications and wait for port to open: + // Open serial communications and wait for port to open: Serial.begin(9600); - while (!Serial) { + while (!Serial) { ; // wait for serial port to connect. Needed for Leonardo only } @@ -59,7 +59,7 @@ void setup() { client.println("Host: www.google.com"); client.println("Connection: close"); client.println(); - } + } else { // kf you didn't get a connection to the server: Serial.println("connection failed"); @@ -68,7 +68,7 @@ void setup() { void loop() { - // if there are incoming bytes available + // if there are incoming bytes available // from the server, read them and print them: if (client.available()) { char c = client.read(); @@ -82,7 +82,7 @@ void loop() client.stop(); // do nothing forevermore: - while(true); + while (true); } } diff --git a/libraries/Ethernet/examples/WebClientRepeating/WebClientRepeating.ino b/libraries/Ethernet/examples/WebClientRepeating/WebClientRepeating.ino index e0f06c439..a0ae8b782 100644 --- a/libraries/Ethernet/examples/WebClientRepeating/WebClientRepeating.ino +++ b/libraries/Ethernet/examples/WebClientRepeating/WebClientRepeating.ino @@ -1,23 +1,25 @@ /* Repeating Web client - + This sketch connects to a a web server and makes a request using a Wiznet Ethernet shield. You can use the Arduino Ethernet shield, or the Adafruit Ethernet shield, either one will work, as long as it's got a Wiznet Ethernet module on board. - + This example uses DNS, by assigning the Ethernet client with a MAC address, IP address, and DNS address. - + Circuit: * Ethernet shield attached to pins 10, 11, 12, 13 - + created 19 Apr 2012 by Tom Igoe - + modified 21 Jan 2014 + by Federico Vanzati + http://arduino.cc/en/Tutorial/WebClientRepeating This code is in the public domain. - + */ #include @@ -25,27 +27,33 @@ // assign a MAC address for the ethernet controller. // fill in your address here: -byte mac[] = { - 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED}; +byte mac[] = { + 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED +}; // fill in an available IP address on your network here, // for manual configuration: -IPAddress ip(10,0,0,20); +IPAddress ip(192, 168, 1, 177); // fill in your Domain Name Server address here: -IPAddress myDns(1,1,1,1); +IPAddress myDns(1, 1, 1, 1); // initialize the library instance: EthernetClient client; char server[] = "www.arduino.cc"; +//IPAddress server(64,131,82,241); -unsigned long lastConnectionTime = 0; // last time you connected to the server, in milliseconds -boolean lastConnected = false; // state of the connection last time through the main loop -const unsigned long postingInterval = 60*1000; // delay between updates, in milliseconds +unsigned long lastConnectionTime = 0; // last time you connected to the server, in milliseconds +const unsigned long postingInterval = 10L * 1000L; // delay between updates, in milliseconds +// the "L" is needed to use long type numbers void setup() { // start serial port: Serial.begin(9600); + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only + } + // give the ethernet module time to boot up: delay(1000); // start the Ethernet connection using a fixed IP address and DNS server: @@ -61,29 +69,23 @@ void loop() { // purposes only: if (client.available()) { char c = client.read(); - Serial.print(c); + Serial.write(c); } - // if there's no net connection, but there was one last time - // through the loop, then stop the client: - if (!client.connected() && lastConnected) { - Serial.println(); - Serial.println("disconnecting."); - client.stop(); - } - - // if you're not connected, and ten seconds have passed since - // your last connection, then connect again and send data: - if(!client.connected() && (millis() - lastConnectionTime > postingInterval)) { + // if ten seconds have passed since your last connection, + // then connect again and send data: + if (millis() - lastConnectionTime > postingInterval) { httpRequest(); } - // store the state of the connection for next time through - // the loop: - lastConnected = client.connected(); + } // this method makes a HTTP connection to the server: void httpRequest() { + // close any connection before send a new request. + // This will free the socket on the WiFi shield + client.stop(); + // if there's a successful connection: if (client.connect(server, 80)) { Serial.println("connecting..."); @@ -96,15 +98,11 @@ void httpRequest() { // note the time that the connection was made: lastConnectionTime = millis(); - } + } else { // if you couldn't make a connection: Serial.println("connection failed"); - Serial.println("disconnecting."); - client.stop(); } } - - diff --git a/libraries/Ethernet/examples/WebServer/WebServer.ino b/libraries/Ethernet/examples/WebServer/WebServer.ino index 689eb7d39..d0c585d07 100644 --- a/libraries/Ethernet/examples/WebServer/WebServer.ino +++ b/libraries/Ethernet/examples/WebServer/WebServer.ino @@ -1,18 +1,18 @@ /* Web Server - + A simple web server that shows the value of the analog input pins. - using an Arduino Wiznet Ethernet shield. - + using an Arduino Wiznet Ethernet shield. + Circuit: * Ethernet shield attached to pins 10, 11, 12, 13 * Analog inputs attached to pins A0 through A5 (optional) - + created 18 Dec 2009 by David A. Mellis modified 9 Apr 2012 by Tom Igoe - + */ #include @@ -20,19 +20,20 @@ // Enter a MAC address and IP address for your controller below. // The IP address will be dependent on your local network: -byte mac[] = { - 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED }; -IPAddress ip(192,168,1,177); +byte mac[] = { + 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED +}; +IPAddress ip(192, 168, 1, 177); // Initialize the Ethernet server library -// with the IP address and port you want to use +// with the IP address and port you want to use // (port 80 is default for HTTP): EthernetServer server(80); void setup() { - // Open serial communications and wait for port to open: + // Open serial communications and wait for port to open: Serial.begin(9600); - while (!Serial) { + while (!Serial) { ; // wait for serial port to connect. Needed for Leonardo only } @@ -64,7 +65,7 @@ void loop() { client.println("HTTP/1.1 200 OK"); client.println("Content-Type: text/html"); client.println("Connection: close"); // the connection will be closed after completion of the response - client.println("Refresh: 5"); // refresh the page automatically every 5 sec + client.println("Refresh: 5"); // refresh the page automatically every 5 sec client.println(); client.println(""); client.println(""); @@ -75,7 +76,7 @@ void loop() { client.print(analogChannel); client.print(" is "); client.print(sensorReading); - client.println("
    "); + client.println("
    "); } client.println(""); break; @@ -83,7 +84,7 @@ void loop() { if (c == '\n') { // you're starting a new line currentLineIsBlank = true; - } + } else if (c != '\r') { // you've gotten a character on the current line currentLineIsBlank = false; diff --git a/libraries/Ethernet/utility/socket.cpp b/libraries/Ethernet/utility/socket.cpp index fd3e4426a..4ed4317ea 100644 --- a/libraries/Ethernet/utility/socket.cpp +++ b/libraries/Ethernet/utility/socket.cpp @@ -1,5 +1,5 @@ -#include "w5100.h" -#include "socket.h" +#include "utility/w5100.h" +#include "utility/socket.h" static uint16_t local_port; @@ -12,6 +12,7 @@ uint8_t socket(SOCKET s, uint8_t protocol, uint16_t port, uint8_t flag) if ((protocol == SnMR::TCP) || (protocol == SnMR::UDP) || (protocol == SnMR::IPRAW) || (protocol == SnMR::MACRAW) || (protocol == SnMR::PPPOE)) { close(s); + SPI.beginTransaction(SPI_ETHERNET_SETTINGS); W5100.writeSnMR(s, protocol | flag); if (port != 0) { W5100.writeSnPORT(s, port); @@ -22,7 +23,7 @@ uint8_t socket(SOCKET s, uint8_t protocol, uint16_t port, uint8_t flag) } W5100.execCmdSn(s, Sock_OPEN); - + SPI.endTransaction(); return 1; } @@ -30,13 +31,24 @@ uint8_t socket(SOCKET s, uint8_t protocol, uint16_t port, uint8_t flag) } +uint8_t socketStatus(SOCKET s) +{ + SPI.beginTransaction(SPI_ETHERNET_SETTINGS); + uint8_t status = W5100.readSnSR(s); + SPI.endTransaction(); + return status; +} + + /** * @brief This function close the socket and parameter is "s" which represent the socket number */ void close(SOCKET s) { + SPI.beginTransaction(SPI_ETHERNET_SETTINGS); W5100.execCmdSn(s, Sock_CLOSE); W5100.writeSnIR(s, 0xFF); + SPI.endTransaction(); } @@ -46,9 +58,13 @@ void close(SOCKET s) */ uint8_t listen(SOCKET s) { - if (W5100.readSnSR(s) != SnSR::INIT) + SPI.beginTransaction(SPI_ETHERNET_SETTINGS); + if (W5100.readSnSR(s) != SnSR::INIT) { + SPI.endTransaction(); return 0; + } W5100.execCmdSn(s, Sock_LISTEN); + SPI.endTransaction(); return 1; } @@ -70,9 +86,11 @@ uint8_t connect(SOCKET s, uint8_t * addr, uint16_t port) return 0; // set destination IP + SPI.beginTransaction(SPI_ETHERNET_SETTINGS); W5100.writeSnDIPR(s, addr); W5100.writeSnDPORT(s, port); W5100.execCmdSn(s, Sock_CONNECT); + SPI.endTransaction(); return 1; } @@ -85,7 +103,9 @@ uint8_t connect(SOCKET s, uint8_t * addr, uint16_t port) */ void disconnect(SOCKET s) { + SPI.beginTransaction(SPI_ETHERNET_SETTINGS); W5100.execCmdSn(s, Sock_DISCON); + SPI.endTransaction(); } @@ -107,17 +127,21 @@ uint16_t send(SOCKET s, const uint8_t * buf, uint16_t len) // if freebuf is available, start. do { + SPI.beginTransaction(SPI_ETHERNET_SETTINGS); freesize = W5100.getTXFreeSize(s); status = W5100.readSnSR(s); + SPI.endTransaction(); if ((status != SnSR::ESTABLISHED) && (status != SnSR::CLOSE_WAIT)) { ret = 0; break; } + yield(); } while (freesize < ret); // copy data + SPI.beginTransaction(SPI_ETHERNET_SETTINGS); W5100.send_data_processing(s, (uint8_t *)buf, ret); W5100.execCmdSn(s, Sock_SEND); @@ -127,12 +151,17 @@ uint16_t send(SOCKET s, const uint8_t * buf, uint16_t len) /* m2008.01 [bj] : reduce code */ if ( W5100.readSnSR(s) == SnSR::CLOSED ) { + SPI.endTransaction(); close(s); return 0; } + SPI.endTransaction(); + yield(); + SPI.beginTransaction(SPI_ETHERNET_SETTINGS); } /* +2008.01 bj */ W5100.writeSnIR(s, SnIR::SEND_OK); + SPI.endTransaction(); return ret; } @@ -146,6 +175,7 @@ uint16_t send(SOCKET s, const uint8_t * buf, uint16_t len) int16_t recv(SOCKET s, uint8_t *buf, int16_t len) { // Check how much data is available + SPI.beginTransaction(SPI_ETHERNET_SETTINGS); int16_t ret = W5100.getRXReceivedSize(s); if ( ret == 0 ) { @@ -172,6 +202,16 @@ int16_t recv(SOCKET s, uint8_t *buf, int16_t len) W5100.recv_data_processing(s, buf, ret); W5100.execCmdSn(s, Sock_RECV); } + SPI.endTransaction(); + return ret; +} + + +int16_t recvAvailable(SOCKET s) +{ + SPI.beginTransaction(SPI_ETHERNET_SETTINGS); + int16_t ret = W5100.getRXReceivedSize(s); + SPI.endTransaction(); return ret; } @@ -183,8 +223,9 @@ int16_t recv(SOCKET s, uint8_t *buf, int16_t len) */ uint16_t peek(SOCKET s, uint8_t *buf) { + SPI.beginTransaction(SPI_ETHERNET_SETTINGS); W5100.recv_data_processing(s, buf, 1, 1); - + SPI.endTransaction(); return 1; } @@ -213,6 +254,7 @@ uint16_t sendto(SOCKET s, const uint8_t *buf, uint16_t len, uint8_t *addr, uint1 } else { + SPI.beginTransaction(SPI_ETHERNET_SETTINGS); W5100.writeSnDIPR(s, addr); W5100.writeSnDPORT(s, port); @@ -227,12 +269,17 @@ uint16_t sendto(SOCKET s, const uint8_t *buf, uint16_t len, uint8_t *addr, uint1 { /* +2008.01 [bj]: clear interrupt */ W5100.writeSnIR(s, (SnIR::SEND_OK | SnIR::TIMEOUT)); /* clear SEND_OK & TIMEOUT */ + SPI.endTransaction(); return 0; } + SPI.endTransaction(); + yield(); + SPI.beginTransaction(SPI_ETHERNET_SETTINGS); } /* +2008.01 bj */ W5100.writeSnIR(s, SnIR::SEND_OK); + SPI.endTransaction(); } return ret; } @@ -252,11 +299,12 @@ uint16_t recvfrom(SOCKET s, uint8_t *buf, uint16_t len, uint8_t *addr, uint16_t if ( len > 0 ) { + SPI.beginTransaction(SPI_ETHERNET_SETTINGS); ptr = W5100.readSnRX_RD(s); switch (W5100.readSnMR(s) & 0x07) { case SnMR::UDP : - W5100.read_data(s, (uint8_t *)ptr, head, 0x08); + W5100.read_data(s, ptr, head, 0x08); ptr += 8; // read peer's IP address, port number. addr[0] = head[0]; @@ -268,14 +316,14 @@ uint16_t recvfrom(SOCKET s, uint8_t *buf, uint16_t len, uint8_t *addr, uint16_t data_len = head[6]; data_len = (data_len << 8) + head[7]; - W5100.read_data(s, (uint8_t *)ptr, buf, data_len); // data copy. + W5100.read_data(s, ptr, buf, data_len); // data copy. ptr += data_len; W5100.writeSnRX_RD(s, ptr); break; case SnMR::IPRAW : - W5100.read_data(s, (uint8_t *)ptr, head, 0x06); + W5100.read_data(s, ptr, head, 0x06); ptr += 6; addr[0] = head[0]; @@ -285,19 +333,19 @@ uint16_t recvfrom(SOCKET s, uint8_t *buf, uint16_t len, uint8_t *addr, uint16_t data_len = head[4]; data_len = (data_len << 8) + head[5]; - W5100.read_data(s, (uint8_t *)ptr, buf, data_len); // data copy. + W5100.read_data(s, ptr, buf, data_len); // data copy. ptr += data_len; W5100.writeSnRX_RD(s, ptr); break; case SnMR::MACRAW: - W5100.read_data(s,(uint8_t*)ptr,head,2); + W5100.read_data(s, ptr, head, 2); ptr+=2; data_len = head[0]; data_len = (data_len<<8) + head[1] - 2; - W5100.read_data(s,(uint8_t*) ptr,buf,data_len); + W5100.read_data(s, ptr, buf, data_len); ptr += data_len; W5100.writeSnRX_RD(s, ptr); break; @@ -306,14 +354,20 @@ uint16_t recvfrom(SOCKET s, uint8_t *buf, uint16_t len, uint8_t *addr, uint16_t break; } W5100.execCmdSn(s, Sock_RECV); + SPI.endTransaction(); } return data_len; } +/** + * @brief Wait for buffered transmission to complete. + */ +void flush(SOCKET s) { + // TODO +} uint16_t igmpsend(SOCKET s, const uint8_t * buf, uint16_t len) { - uint8_t status=0; uint16_t ret=0; if (len > W5100.SSIZE) @@ -324,28 +378,34 @@ uint16_t igmpsend(SOCKET s, const uint8_t * buf, uint16_t len) if (ret == 0) return 0; + SPI.beginTransaction(SPI_ETHERNET_SETTINGS); W5100.send_data_processing(s, (uint8_t *)buf, ret); W5100.execCmdSn(s, Sock_SEND); while ( (W5100.readSnIR(s) & SnIR::SEND_OK) != SnIR::SEND_OK ) { - status = W5100.readSnSR(s); if (W5100.readSnIR(s) & SnIR::TIMEOUT) { /* in case of igmp, if send fails, then socket closed */ /* if you want change, remove this code. */ + SPI.endTransaction(); close(s); return 0; } + SPI.endTransaction(); + yield(); + SPI.beginTransaction(SPI_ETHERNET_SETTINGS); } W5100.writeSnIR(s, SnIR::SEND_OK); + SPI.endTransaction(); return ret; } uint16_t bufferData(SOCKET s, uint16_t offset, const uint8_t* buf, uint16_t len) { uint16_t ret =0; + SPI.beginTransaction(SPI_ETHERNET_SETTINGS); if (len > W5100.getTXFreeSize(s)) { ret = W5100.getTXFreeSize(s); // check size not to exceed MAX size. @@ -355,6 +415,7 @@ uint16_t bufferData(SOCKET s, uint16_t offset, const uint8_t* buf, uint16_t len) ret = len; } W5100.send_data_processing_offset(s, offset, buf, ret); + SPI.endTransaction(); return ret; } @@ -370,14 +431,17 @@ int startUDP(SOCKET s, uint8_t* addr, uint16_t port) } else { + SPI.beginTransaction(SPI_ETHERNET_SETTINGS); W5100.writeSnDIPR(s, addr); W5100.writeSnDPORT(s, port); + SPI.endTransaction(); return 1; } } int sendUDP(SOCKET s) { + SPI.beginTransaction(SPI_ETHERNET_SETTINGS); W5100.execCmdSn(s, Sock_SEND); /* +2008.01 bj */ @@ -387,12 +451,17 @@ int sendUDP(SOCKET s) { /* +2008.01 [bj]: clear interrupt */ W5100.writeSnIR(s, (SnIR::SEND_OK|SnIR::TIMEOUT)); + SPI.endTransaction(); return 0; } + SPI.endTransaction(); + yield(); + SPI.beginTransaction(SPI_ETHERNET_SETTINGS); } /* +2008.01 bj */ W5100.writeSnIR(s, SnIR::SEND_OK); + SPI.endTransaction(); /* Sent ok */ return 1; diff --git a/libraries/Ethernet/utility/socket.h b/libraries/Ethernet/utility/socket.h old mode 100755 new mode 100644 index 45e0fb3e8..37ba85424 --- a/libraries/Ethernet/utility/socket.h +++ b/libraries/Ethernet/utility/socket.h @@ -1,18 +1,21 @@ #ifndef _SOCKET_H_ #define _SOCKET_H_ -#include "w5100.h" +#include "utility/w5100.h" extern uint8_t socket(SOCKET s, uint8_t protocol, uint16_t port, uint8_t flag); // Opens a socket(TCP or UDP or IP_RAW mode) +extern uint8_t socketStatus(SOCKET s); extern void close(SOCKET s); // Close socket extern uint8_t connect(SOCKET s, uint8_t * addr, uint16_t port); // Establish TCP connection (Active connection) extern void disconnect(SOCKET s); // disconnect the connection extern uint8_t listen(SOCKET s); // Establish TCP connection (Passive connection) extern uint16_t send(SOCKET s, const uint8_t * buf, uint16_t len); // Send data (TCP) extern int16_t recv(SOCKET s, uint8_t * buf, int16_t len); // Receive data (TCP) +extern int16_t recvAvailable(SOCKET s); extern uint16_t peek(SOCKET s, uint8_t *buf); extern uint16_t sendto(SOCKET s, const uint8_t * buf, uint16_t len, uint8_t * addr, uint16_t port); // Send data (UDP/IP RAW) extern uint16_t recvfrom(SOCKET s, uint8_t * buf, uint16_t len, uint8_t * addr, uint16_t *port); // Receive data (UDP/IP RAW) +extern void flush(SOCKET s); // Wait for transmission to complete extern uint16_t igmpsend(SOCKET s, const uint8_t * buf, uint16_t len); diff --git a/libraries/Ethernet/util.h b/libraries/Ethernet/utility/util.h similarity index 77% rename from libraries/Ethernet/util.h rename to libraries/Ethernet/utility/util.h index 5042e82e3..33d32a97e 100644 --- a/libraries/Ethernet/util.h +++ b/libraries/Ethernet/utility/util.h @@ -1,7 +1,8 @@ #ifndef UTIL_H #define UTIL_H -#define htons(x) ( ((x)<<8) | (((x)>>8)&0xFF) ) +#define htons(x) ( ((x)<< 8 & 0xFF00) | \ + ((x)>> 8 & 0x00FF) ) #define ntohs(x) htons(x) #define htonl(x) ( ((x)<<24 & 0xFF000000UL) | \ diff --git a/libraries/Ethernet/utility/w5100.cpp b/libraries/Ethernet/utility/w5100.cpp index 9c748fd20..c01f76125 100644 --- a/libraries/Ethernet/utility/w5100.cpp +++ b/libraries/Ethernet/utility/w5100.cpp @@ -9,9 +9,8 @@ #include #include -#include -#include "w5100.h" +#include "utility/w5100.h" // W5100 controller instance W5100Class W5100; @@ -29,10 +28,11 @@ void W5100Class::init(void) SPI.begin(); initSS(); - + SPI.beginTransaction(SPI_ETHERNET_SETTINGS); writeMR(1< RSIZE ) diff --git a/libraries/Ethernet/utility/w5100.h b/libraries/Ethernet/utility/w5100.h old mode 100755 new mode 100644 index 8dccd9f29..9f1de2a98 --- a/libraries/Ethernet/utility/w5100.h +++ b/libraries/Ethernet/utility/w5100.h @@ -10,9 +10,10 @@ #ifndef W5100_H_INCLUDED #define W5100_H_INCLUDED -#include #include +#define SPI_ETHERNET_SETTINGS SPISettings(4000000, MSBFIRST, SPI_MODE0) + #define MAX_SOCK_NUM 4 typedef uint8_t SOCKET; @@ -138,7 +139,7 @@ public: * the data from Receive buffer. Here also take care of the condition while it exceed * the Rx memory uper-bound of socket. */ - void read_data(SOCKET s, volatile uint8_t * src, volatile uint8_t * dst, uint16_t len); + void read_data(SOCKET s, volatile uint16_t src, volatile uint8_t * dst, uint16_t len); /** * @brief This function is being called by send() and sendto() function also. @@ -340,7 +341,6 @@ private: inline static void setSS() { PORTB &= ~_BV(2); }; inline static void resetSS() { PORTB |= _BV(2); }; #endif - }; extern W5100Class W5100; From 37115d03ef71f2cb74b9f18907e79cbcb7a989ec Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Wed, 15 Oct 2014 11:53:19 +0200 Subject: [PATCH 095/148] Backported SD library from 1.5.x --- libraries/SD/SD.cpp | 4 +- libraries/SD/examples/CardInfo/CardInfo.ino | 39 +++++----- .../SD/examples/Datalogger/Datalogger.ino | 25 +++--- libraries/SD/examples/DumpFile/DumpFile.ino | 23 +++--- libraries/SD/examples/Files/Files.ino | 29 +++---- libraries/SD/examples/ReadWrite/ReadWrite.ino | 43 +++++----- libraries/SD/examples/listfiles/listfiles.ino | 17 ++-- libraries/SD/utility/FatStructs.h | 10 +-- libraries/SD/utility/Sd2Card.cpp | 78 ++++++++++++++++--- libraries/SD/utility/Sd2Card.h | 7 ++ libraries/SD/utility/Sd2PinMap.h | 20 +++++ libraries/SD/utility/SdFat.h | 4 + libraries/SD/utility/SdFatUtil.h | 4 + libraries/SD/utility/SdFile.cpp | 14 +++- libraries/SD/utility/SdVolume.cpp | 2 +- 15 files changed, 212 insertions(+), 107 deletions(-) diff --git a/libraries/SD/SD.cpp b/libraries/SD/SD.cpp index c746809b6..65d32741c 100644 --- a/libraries/SD/SD.cpp +++ b/libraries/SD/SD.cpp @@ -550,9 +550,9 @@ boolean SDClass::mkdir(char *filepath) { boolean SDClass::rmdir(char *filepath) { /* - Makes a single directory or a heirarchy of directories. + Remove a single directory or a heirarchy of directories. - A rough equivalent to `mkdir -p`. + A rough equivalent to `rm -rf`. */ return walkPath(filepath, root, callback_rmdir); diff --git a/libraries/SD/examples/CardInfo/CardInfo.ino b/libraries/SD/examples/CardInfo/CardInfo.ino index 0c2dfc5e2..03bab2fd6 100644 --- a/libraries/SD/examples/CardInfo/CardInfo.ino +++ b/libraries/SD/examples/CardInfo/CardInfo.ino @@ -1,25 +1,26 @@ /* - SD card test - + SD card test + This example shows how use the utility libraries on which the' SD library is based in order to get info about your SD card. Very useful for testing a card when you're not sure whether its working or not. - + The circuit: * SD card attached to SPI bus as follows: ** MOSI - pin 11 on Arduino Uno/Duemilanove/Diecimila ** MISO - pin 12 on Arduino Uno/Duemilanove/Diecimila ** CLK - pin 13 on Arduino Uno/Duemilanove/Diecimila - ** CS - depends on your SD card shield or module. + ** CS - depends on your SD card shield or module. Pin 4 used here for consistency with other Arduino examples - + created 28 Mar 2011 - by Limor Fried + by Limor Fried modified 9 Apr 2012 by Tom Igoe */ - // include the SD library: +// include the SD library: +#include #include // set up variables using the SD utility library functions: @@ -31,22 +32,22 @@ SdFile root; // Arduino Ethernet shield: pin 4 // Adafruit SD shields and modules: pin 10 // Sparkfun SD shield: pin 8 -const int chipSelect = 4; +const int chipSelect = 4; void setup() { - // Open serial communications and wait for port to open: + // Open serial communications and wait for port to open: Serial.begin(9600); - while (!Serial) { + while (!Serial) { ; // wait for serial port to connect. Needed for Leonardo only } Serial.print("\nInitializing SD card..."); // On the Ethernet Shield, CS is pin 4. It's set as an output by default. - // Note that even if it's not used as the CS pin, the hardware SS pin - // (10 on most Arduino boards, 53 on the Mega) must be left as an output - // or the SD library functions will not work. + // Note that even if it's not used as the CS pin, the hardware SS pin + // (10 on most Arduino boards, 53 on the Mega) must be left as an output + // or the SD library functions will not work. pinMode(10, OUTPUT); // change this to 53 on a mega @@ -59,12 +60,12 @@ void setup() Serial.println("* did you change the chipSelect pin to match your shield or module?"); return; } else { - Serial.println("Wiring is correct and a card is present."); + Serial.println("Wiring is correct and a card is present."); } // print the type of card Serial.print("\nCard type: "); - switch(card.type()) { + switch (card.type()) { case SD_CARD_TYPE_SD1: Serial.println("SD1"); break; @@ -90,7 +91,7 @@ void setup() Serial.print("\nVolume type is FAT"); Serial.println(volume.fatType(), DEC); Serial.println(); - + volumesize = volume.blocksPerCluster(); // clusters are collections of blocks volumesize *= volume.clusterCount(); // we'll have a lot of clusters volumesize *= 512; // SD card blocks are always 512 bytes @@ -103,15 +104,15 @@ void setup() volumesize /= 1024; Serial.println(volumesize); - + Serial.println("\nFiles found on the card (name, date and size in bytes): "); root.openRoot(volume); - + // list all files in the card with date and size root.ls(LS_R | LS_DATE | LS_SIZE); } void loop(void) { - + } diff --git a/libraries/SD/examples/Datalogger/Datalogger.ino b/libraries/SD/examples/Datalogger/Datalogger.ino index a7f85eeaf..70e8f7051 100644 --- a/libraries/SD/examples/Datalogger/Datalogger.ino +++ b/libraries/SD/examples/Datalogger/Datalogger.ino @@ -1,9 +1,9 @@ /* SD card datalogger - - This example shows how to log data from three analog sensors + + This example shows how to log data from three analog sensors to an SD card using the SD library. - + The circuit: * analog sensors on analog ins 0, 1, and 2 * SD card attached to SPI bus as follows: @@ -11,15 +11,16 @@ ** MISO - pin 12 ** CLK - pin 13 ** CS - pin 4 - + created 24 Nov 2010 modified 9 Apr 2012 by Tom Igoe - + This example code is in the public domain. - + */ +#include #include // On the Ethernet Shield, CS is pin 4. Note that even if it's not @@ -30,9 +31,9 @@ const int chipSelect = 4; void setup() { - // Open serial communications and wait for port to open: + // Open serial communications and wait for port to open: Serial.begin(9600); - while (!Serial) { + while (!Serial) { ; // wait for serial port to connect. Needed for Leonardo only } @@ -41,7 +42,7 @@ void setup() // make sure that the default chip select pin is set to // output, even if you don't use it: pinMode(10, OUTPUT); - + // see if the card is present and can be initialized: if (!SD.begin(chipSelect)) { Serial.println("Card failed, or not present"); @@ -61,7 +62,7 @@ void loop() int sensor = analogRead(analogPin); dataString += String(sensor); if (analogPin < 2) { - dataString += ","; + dataString += ","; } } @@ -75,11 +76,11 @@ void loop() dataFile.close(); // print to the serial port too: Serial.println(dataString); - } + } // if the file isn't open, pop up an error: else { Serial.println("error opening datalog.txt"); - } + } } diff --git a/libraries/SD/examples/DumpFile/DumpFile.ino b/libraries/SD/examples/DumpFile/DumpFile.ino index d83089af6..b2f510f58 100644 --- a/libraries/SD/examples/DumpFile/DumpFile.ino +++ b/libraries/SD/examples/DumpFile/DumpFile.ino @@ -1,25 +1,26 @@ /* SD card file dump - + This example shows how to read a file from the SD card using the SD library and send it over the serial port. - + The circuit: * SD card attached to SPI bus as follows: ** MOSI - pin 11 ** MISO - pin 12 ** CLK - pin 13 ** CS - pin 4 - + created 22 December 2010 by Limor Fried modified 9 Apr 2012 by Tom Igoe - + This example code is in the public domain. - + */ +#include #include // On the Ethernet Shield, CS is pin 4. Note that even if it's not @@ -30,9 +31,9 @@ const int chipSelect = 4; void setup() { - // Open serial communications and wait for port to open: + // Open serial communications and wait for port to open: Serial.begin(9600); - while (!Serial) { + while (!Serial) { ; // wait for serial port to connect. Needed for Leonardo only } @@ -41,7 +42,7 @@ void setup() // make sure that the default chip select pin is set to // output, even if you don't use it: pinMode(10, OUTPUT); - + // see if the card is present and can be initialized: if (!SD.begin(chipSelect)) { Serial.println("Card failed, or not present"); @@ -49,7 +50,7 @@ void setup() return; } Serial.println("card initialized."); - + // open the file. note that only one file can be open at a time, // so you have to close this one before opening another. File dataFile = SD.open("datalog.txt"); @@ -60,11 +61,11 @@ void setup() Serial.write(dataFile.read()); } dataFile.close(); - } + } // if the file isn't open, pop up an error: else { Serial.println("error opening datalog.txt"); - } + } } void loop() diff --git a/libraries/SD/examples/Files/Files.ino b/libraries/SD/examples/Files/Files.ino index a15b8626d..d49539f38 100644 --- a/libraries/SD/examples/Files/Files.ino +++ b/libraries/SD/examples/Files/Files.ino @@ -1,40 +1,41 @@ /* SD card basic file example - - This example shows how to create and destroy an SD card file + + This example shows how to create and destroy an SD card file The circuit: * SD card attached to SPI bus as follows: ** MOSI - pin 11 ** MISO - pin 12 ** CLK - pin 13 ** CS - pin 4 - + created Nov 2010 by David A. Mellis modified 9 Apr 2012 by Tom Igoe - + This example code is in the public domain. - + */ +#include #include File myFile; void setup() { - // Open serial communications and wait for port to open: + // Open serial communications and wait for port to open: Serial.begin(9600); - while (!Serial) { + while (!Serial) { ; // wait for serial port to connect. Needed for Leonardo only } Serial.print("Initializing SD card..."); // On the Ethernet Shield, CS is pin 4. It's set as an output by default. - // Note that even if it's not used as the CS pin, the hardware SS pin - // (10 on most Arduino boards, 53 on the Mega) must be left as an output - // or the SD library functions will not work. + // Note that even if it's not used as the CS pin, the hardware SS pin + // (10 on most Arduino boards, 53 on the Mega) must be left as an output + // or the SD library functions will not work. pinMode(10, OUTPUT); if (!SD.begin(4)) { @@ -55,23 +56,23 @@ void setup() myFile = SD.open("example.txt", FILE_WRITE); myFile.close(); - // Check to see if the file exists: + // Check to see if the file exists: if (SD.exists("example.txt")) { Serial.println("example.txt exists."); } else { - Serial.println("example.txt doesn't exist."); + Serial.println("example.txt doesn't exist."); } // delete the file: Serial.println("Removing example.txt..."); SD.remove("example.txt"); - if (SD.exists("example.txt")){ + if (SD.exists("example.txt")) { Serial.println("example.txt exists."); } else { - Serial.println("example.txt doesn't exist."); + Serial.println("example.txt doesn't exist."); } } diff --git a/libraries/SD/examples/ReadWrite/ReadWrite.ino b/libraries/SD/examples/ReadWrite/ReadWrite.ino index 5805fc8d6..42d1de388 100644 --- a/libraries/SD/examples/ReadWrite/ReadWrite.ino +++ b/libraries/SD/examples/ReadWrite/ReadWrite.ino @@ -1,85 +1,86 @@ /* SD card read/write - - This example shows how to read and write data to and from an SD card file + + This example shows how to read and write data to and from an SD card file The circuit: * SD card attached to SPI bus as follows: ** MOSI - pin 11 ** MISO - pin 12 ** CLK - pin 13 ** CS - pin 4 - + created Nov 2010 by David A. Mellis modified 9 Apr 2012 by Tom Igoe - + This example code is in the public domain. - + */ - + +#include #include File myFile; void setup() { - // Open serial communications and wait for port to open: + // Open serial communications and wait for port to open: Serial.begin(9600); - while (!Serial) { + while (!Serial) { ; // wait for serial port to connect. Needed for Leonardo only } Serial.print("Initializing SD card..."); // On the Ethernet Shield, CS is pin 4. It's set as an output by default. - // Note that even if it's not used as the CS pin, the hardware SS pin - // (10 on most Arduino boards, 53 on the Mega) must be left as an output - // or the SD library functions will not work. - pinMode(10, OUTPUT); - + // Note that even if it's not used as the CS pin, the hardware SS pin + // (10 on most Arduino boards, 53 on the Mega) must be left as an output + // or the SD library functions will not work. + pinMode(10, OUTPUT); + if (!SD.begin(4)) { Serial.println("initialization failed!"); return; } Serial.println("initialization done."); - + // open the file. note that only one file can be open at a time, // so you have to close this one before opening another. myFile = SD.open("test.txt", FILE_WRITE); - + // if the file opened okay, write to it: if (myFile) { Serial.print("Writing to test.txt..."); myFile.println("testing 1, 2, 3."); - // close the file: + // close the file: myFile.close(); Serial.println("done."); } else { // if the file didn't open, print an error: Serial.println("error opening test.txt"); } - + // re-open the file for reading: myFile = SD.open("test.txt"); if (myFile) { Serial.println("test.txt:"); - + // read from the file until there's nothing else in it: while (myFile.available()) { - Serial.write(myFile.read()); + Serial.write(myFile.read()); } // close the file: myFile.close(); } else { - // if the file didn't open, print an error: + // if the file didn't open, print an error: Serial.println("error opening test.txt"); } } void loop() { - // nothing happens after setup + // nothing happens after setup } diff --git a/libraries/SD/examples/listfiles/listfiles.ino b/libraries/SD/examples/listfiles/listfiles.ino index 2bf8e6871..22a79dd15 100644 --- a/libraries/SD/examples/listfiles/listfiles.ino +++ b/libraries/SD/examples/listfiles/listfiles.ino @@ -10,7 +10,7 @@ ** MISO - pin 12 ** CLK - pin 13 ** CS - pin 4 - + created Nov 2010 by David A. Mellis modified 9 Apr 2012 @@ -19,8 +19,9 @@ by Scott Fitzgerald This example code is in the public domain. - + */ +#include #include File root; @@ -29,15 +30,15 @@ void setup() { // Open serial communications and wait for port to open: Serial.begin(9600); - while (!Serial) { + while (!Serial) { ; // wait for serial port to connect. Needed for Leonardo only } Serial.print("Initializing SD card..."); // On the Ethernet Shield, CS is pin 4. It's set as an output by default. - // Note that even if it's not used as the CS pin, the hardware SS pin - // (10 on most Arduino boards, 53 on the Mega) must be left as an output - // or the SD library functions will not work. + // Note that even if it's not used as the CS pin, the hardware SS pin + // (10 on most Arduino boards, 53 on the Mega) must be left as an output + // or the SD library functions will not work. pinMode(10, OUTPUT); if (!SD.begin(4)) { @@ -47,9 +48,9 @@ void setup() Serial.println("initialization done."); root = SD.open("/"); - + printDirectory(root, 0); - + Serial.println("done!"); } diff --git a/libraries/SD/utility/FatStructs.h b/libraries/SD/utility/FatStructs.h index f5bdaa594..8a2d9ebcc 100644 --- a/libraries/SD/utility/FatStructs.h +++ b/libraries/SD/utility/FatStructs.h @@ -90,7 +90,7 @@ struct partitionTable { uint32_t firstSector; /** Length of the partition, in blocks. */ uint32_t totalSectors; -}; +} __attribute__((packed)); /** Type name for partitionTable */ typedef struct partitionTable part_t; //------------------------------------------------------------------------------ @@ -114,7 +114,7 @@ struct masterBootRecord { uint8_t mbrSig0; /** Second MBR signature byte. Must be 0XAA */ uint8_t mbrSig1; -}; +} __attribute__((packed)); /** Type name for masterBootRecord */ typedef struct masterBootRecord mbr_t; //------------------------------------------------------------------------------ @@ -236,7 +236,7 @@ struct biosParmBlock { * should always set all of the bytes of this field to 0. */ uint8_t fat32Reserved[12]; -}; +} __attribute__((packed)); /** Type name for biosParmBlock */ typedef struct biosParmBlock bpb_t; //------------------------------------------------------------------------------ @@ -271,7 +271,7 @@ struct fat32BootSector { uint8_t bootSectorSig0; /** must be 0XAA */ uint8_t bootSectorSig1; -}; +} __attribute__((packed)); //------------------------------------------------------------------------------ // End Of Chain values for FAT entries /** FAT16 end of chain value used by Microsoft. */ @@ -366,7 +366,7 @@ struct directoryEntry { uint16_t firstClusterLow; /** 32-bit unsigned holding this file's size in bytes. */ uint32_t fileSize; -}; +} __attribute__((packed)); //------------------------------------------------------------------------------ // Definitions for directory entries // diff --git a/libraries/SD/utility/Sd2Card.cpp b/libraries/SD/utility/Sd2Card.cpp index 361cd0a06..7e7cbf8ac 100644 --- a/libraries/SD/utility/Sd2Card.cpp +++ b/libraries/SD/utility/Sd2Card.cpp @@ -17,20 +17,34 @@ * along with the Arduino Sd2Card Library. If not, see * . */ +#define USE_SPI_LIB #include #include "Sd2Card.h" //------------------------------------------------------------------------------ #ifndef SOFTWARE_SPI +#ifdef USE_SPI_LIB +#include +static SPISettings settings; +#endif // functions for hardware SPI /** Send a byte to the card */ static void spiSend(uint8_t b) { +#ifndef USE_SPI_LIB SPDR = b; - while (!(SPSR & (1 << SPIF))); + while (!(SPSR & (1 << SPIF))) + ; +#else + SPI.transfer(b); +#endif } /** Receive a byte from the card */ static uint8_t spiRec(void) { +#ifndef USE_SPI_LIB spiSend(0XFF); return SPDR; +#else + return SPI.transfer(0xFF); +#endif } #else // SOFTWARE_SPI //------------------------------------------------------------------------------ @@ -112,7 +126,8 @@ uint8_t Sd2Card::cardCommand(uint8_t cmd, uint32_t arg) { spiSend(crc); // wait for response - for (uint8_t i = 0; ((status_ = spiRec()) & 0X80) && i != 0XFF; i++); + for (uint8_t i = 0; ((status_ = spiRec()) & 0X80) && i != 0XFF; i++) + ; return status_; } //------------------------------------------------------------------------------ @@ -144,9 +159,15 @@ uint32_t Sd2Card::cardSize(void) { //------------------------------------------------------------------------------ void Sd2Card::chipSelectHigh(void) { digitalWrite(chipSelectPin_, HIGH); +#ifdef USE_SPI_LIB + SPI.endTransaction(); +#endif } //------------------------------------------------------------------------------ void Sd2Card::chipSelectLow(void) { +#ifdef USE_SPI_LIB + SPI.beginTransaction(settings); +#endif digitalWrite(chipSelectPin_, LOW); } //------------------------------------------------------------------------------ @@ -219,12 +240,15 @@ uint8_t Sd2Card::init(uint8_t sckRateID, uint8_t chipSelectPin) { // set pin modes pinMode(chipSelectPin_, OUTPUT); - chipSelectHigh(); + digitalWrite(chipSelectPin_, HIGH); +#ifndef USE_SPI_LIB pinMode(SPI_MISO_PIN, INPUT); pinMode(SPI_MOSI_PIN, OUTPUT); pinMode(SPI_SCK_PIN, OUTPUT); +#endif #ifndef SOFTWARE_SPI +#ifndef USE_SPI_LIB // SS must be in output mode even it is not chip select pinMode(SS_PIN, OUTPUT); digitalWrite(SS_PIN, HIGH); // disable any SPI device using hardware SS pin @@ -232,10 +256,20 @@ uint8_t Sd2Card::init(uint8_t sckRateID, uint8_t chipSelectPin) { SPCR = (1 << SPE) | (1 << MSTR) | (1 << SPR1) | (1 << SPR0); // clear double speed SPSR &= ~(1 << SPI2X); -#endif // SOFTWARE_SPI +#else // USE_SPI_LIB + SPI.begin(); + settings = SPISettings(250000, MSBFIRST, SPI_MODE0); +#endif // USE_SPI_LIB +#endif // SOFTWARE_SPI // must supply min of 74 clock cycles with CS high. +#ifdef USE_SPI_LIB + SPI.beginTransaction(settings); +#endif for (uint8_t i = 0; i < 10; i++) spiSend(0XFF); +#ifdef USE_SPI_LIB + SPI.endTransaction(); +#endif chipSelectLow(); @@ -360,18 +394,21 @@ uint8_t Sd2Card::readData(uint32_t block, // skip data before offset for (;offset_ < offset; offset_++) { - while (!(SPSR & (1 << SPIF))); + while (!(SPSR & (1 << SPIF))) + ; SPDR = 0XFF; } // transfer data n = count - 1; for (uint16_t i = 0; i < n; i++) { - while (!(SPSR & (1 << SPIF))); + while (!(SPSR & (1 << SPIF))) + ; dst[i] = SPDR; SPDR = 0XFF; } // wait for last byte - while (!(SPSR & (1 << SPIF))); + while (!(SPSR & (1 << SPIF))) + ; dst[n] = SPDR; #else // OPTIMIZE_HARDWARE_SPI @@ -406,11 +443,13 @@ void Sd2Card::readEnd(void) { // optimize skip for hardware SPDR = 0XFF; while (offset_++ < 513) { - while (!(SPSR & (1 << SPIF))); + while (!(SPSR & (1 << SPIF))) + ; SPDR = 0XFF; } // wait for last crc byte - while (!(SPSR & (1 << SPIF))); + while (!(SPSR & (1 << SPIF))) + ; #else // OPTIMIZE_HARDWARE_SPI while (offset_++ < 514) spiRec(); #endif // OPTIMIZE_HARDWARE_SPI @@ -456,6 +495,7 @@ uint8_t Sd2Card::setSckRate(uint8_t sckRateID) { error(SD_CARD_ERROR_SCK_RATE); return false; } +#ifndef USE_SPI_LIB // see avr processor datasheet for SPI register bit definitions if ((sckRateID & 1) || sckRateID == 6) { SPSR &= ~(1 << SPI2X); @@ -465,6 +505,17 @@ uint8_t Sd2Card::setSckRate(uint8_t sckRateID) { SPCR &= ~((1 <. */ +#if defined(__arm__) // Arduino Due Board follows + +#ifndef Sd2PinMap_h +#define Sd2PinMap_h + +#include + +uint8_t const SS_PIN = SS; +uint8_t const MOSI_PIN = MOSI; +uint8_t const MISO_PIN = MISO; +uint8_t const SCK_PIN = SCK; + +#endif // Sd2PinMap_h + +#elif defined(__AVR__) // Other AVR based Boards follows + // Warning this file was generated by a program. #ifndef Sd2PinMap_h #define Sd2PinMap_h @@ -350,3 +366,7 @@ static inline __attribute__((always_inline)) } } #endif // Sd2PinMap_h + +#else +#error Architecture or board not supported. +#endif diff --git a/libraries/SD/utility/SdFat.h b/libraries/SD/utility/SdFat.h index 344326f98..89c244418 100644 --- a/libraries/SD/utility/SdFat.h +++ b/libraries/SD/utility/SdFat.h @@ -23,7 +23,9 @@ * \file * SdFile and SdVolume classes */ +#ifdef __AVR__ #include +#endif #include "Sd2Card.h" #include "FatStructs.h" #include "Print.h" @@ -286,8 +288,10 @@ class SdFile : public Print { size_t write(uint8_t b); size_t write(const void* buf, uint16_t nbyte); size_t write(const char* str); +#ifdef __AVR__ void write_P(PGM_P str); void writeln_P(PGM_P str); +#endif //------------------------------------------------------------------------------ #if ALLOW_DEPRECATED_FUNCTIONS // Deprecated functions - suppress cpplint warnings with NOLINT comment diff --git a/libraries/SD/utility/SdFatUtil.h b/libraries/SD/utility/SdFatUtil.h index 7d6b4104f..d1b4d538f 100644 --- a/libraries/SD/utility/SdFatUtil.h +++ b/libraries/SD/utility/SdFatUtil.h @@ -24,12 +24,14 @@ * Useful utility functions. */ #include +#ifdef __AVR__ #include /** Store and print a string in flash memory.*/ #define PgmPrint(x) SerialPrint_P(PSTR(x)) /** Store and print a string in flash memory followed by a CR/LF.*/ #define PgmPrintln(x) SerialPrintln_P(PSTR(x)) /** Defined so doxygen works for function definitions. */ +#endif #define NOINLINE __attribute__((noinline,unused)) #define UNUSEDOK __attribute__((unused)) //------------------------------------------------------------------------------ @@ -49,6 +51,7 @@ static UNUSEDOK int FreeRam(void) { } return free_memory; } +#ifdef __AVR__ //------------------------------------------------------------------------------ /** * %Print a string in flash memory to the serial port. @@ -68,4 +71,5 @@ static NOINLINE void SerialPrintln_P(PGM_P str) { SerialPrint_P(str); Serial.println(); } +#endif // __AVR__ #endif // #define SdFatUtil_h diff --git a/libraries/SD/utility/SdFile.cpp b/libraries/SD/utility/SdFile.cpp index e786f56bb..e7b6f0971 100644 --- a/libraries/SD/utility/SdFile.cpp +++ b/libraries/SD/utility/SdFile.cpp @@ -17,8 +17,10 @@ * along with the Arduino SdFat Library. If not, see * . */ -#include +#include "SdFat.h" +#ifdef __AVR__ #include +#endif #include //------------------------------------------------------------------------------ // callback function for date/time @@ -256,9 +258,15 @@ uint8_t SdFile::make83Name(const char* str, uint8_t* name) { i = 8; // place for extension } else { // illegal FAT characters - PGM_P p = PSTR("|<>^+=?/[];,*\"\\"); uint8_t b; +#if defined(__AVR__) + PGM_P p = PSTR("|<>^+=?/[];,*\"\\"); while ((b = pgm_read_byte(p++))) if (b == c) return false; +#elif defined(__arm__) + const uint8_t valid[] = "|<>^+=?/[];,*\"\\"; + const uint8_t *p = valid; + while ((b = *p++)) if (b == c) return false; +#endif // check size and only allow ASCII printable characters if (i > n || c < 0X21 || c > 0X7E)return false; // only upper case allowed in 8.3 names - convert lower to upper @@ -1232,6 +1240,7 @@ size_t SdFile::write(uint8_t b) { size_t SdFile::write(const char* str) { return write(str, strlen(str)); } +#ifdef __AVR__ //------------------------------------------------------------------------------ /** * Write a PROGMEM string to a file. @@ -1251,3 +1260,4 @@ void SdFile::writeln_P(PGM_P str) { write_P(str); println(); } +#endif diff --git a/libraries/SD/utility/SdVolume.cpp b/libraries/SD/utility/SdVolume.cpp index ece4acbac..2fbb8100b 100644 --- a/libraries/SD/utility/SdVolume.cpp +++ b/libraries/SD/utility/SdVolume.cpp @@ -17,7 +17,7 @@ * along with the Arduino SdFat Library. If not, see * . */ -#include +#include "SdFat.h" //------------------------------------------------------------------------------ // raw block cache // init cacheBlockNumber_to invalid SD block number From 20ca43646aa871dd6083f112989048dc7c702d60 Mon Sep 17 00:00:00 2001 From: PaulStoffregen Date: Thu, 20 Nov 2014 18:54:04 -0800 Subject: [PATCH 096/148] Fix SPI transaction mismatch errors --- libraries/SD/utility/Sd2Card.cpp | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/libraries/SD/utility/Sd2Card.cpp b/libraries/SD/utility/Sd2Card.cpp index 7e7cbf8ac..a72d3d271 100644 --- a/libraries/SD/utility/Sd2Card.cpp +++ b/libraries/SD/utility/Sd2Card.cpp @@ -157,16 +157,24 @@ uint32_t Sd2Card::cardSize(void) { } } //------------------------------------------------------------------------------ +static uint8_t chip_select_asserted = 0; + void Sd2Card::chipSelectHigh(void) { digitalWrite(chipSelectPin_, HIGH); #ifdef USE_SPI_LIB - SPI.endTransaction(); + if (chip_select_asserted) { + chip_select_asserted = 0; + SPI.endTransaction(); + } #endif } //------------------------------------------------------------------------------ void Sd2Card::chipSelectLow(void) { #ifdef USE_SPI_LIB - SPI.beginTransaction(settings); + if (!chip_select_asserted) { + chip_select_asserted = 1; + SPI.beginTransaction(settings); + } #endif digitalWrite(chipSelectPin_, LOW); } From ae402c29073433db34afd0440b68f8b3ebc91141 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Wed, 15 Oct 2014 13:23:45 +0200 Subject: [PATCH 097/148] Update revision log --- build/shared/revisions.txt | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/build/shared/revisions.txt b/build/shared/revisions.txt index c3e3eab45..e960fd372 100644 --- a/build/shared/revisions.txt +++ b/build/shared/revisions.txt @@ -2,12 +2,16 @@ ARDUINO 1.0.7 [libraries] -* Backported GSM from IDE 1.5.x -* EthernetClien: use IANA recommended ephemeral port range, 49152-65535 (Jack Christensen, cifer-lee) +* Backported SPI Transaction API from IDE 1.5.x (Paul Stoffregen) +* Backported GSM from IDE 1.5.x: fix build regression +* Backported Ethernet from IDE 1.5.x +* Backported SD from IDE 1.5.x +* Backported SPI from IDE 1.5.x +* EthernetClient: use IANA recommended ephemeral port range, 49152-65535 (Jack Christensen, cifer-lee) [core] * Fixed missing NOT_AN_INTERRUPT constant in digitalPinToInterrupt() macro -* Fixed regression in HardwareSerial::available() introduced with https://github.com/arduino/Arduino/pull/2057 +* Fixed performance regression in HardwareSerial::available() introduced with https://github.com/arduino/Arduino/pull/2057 ARDUINO 1.0.6 - 2014.09.16 From 2f08fe4ecfe0f41796c3017246112f1f2cfd14a7 Mon Sep 17 00:00:00 2001 From: Federico Fissore Date: Thu, 4 Dec 2014 13:10:01 +0100 Subject: [PATCH 098/148] 38400 baud rate had issues with RXTX and linux. With JSSC, it seems to be working fine again. Fixes #2296 --- app/src/processing/app/AbstractMonitor.java | 2 +- arduino-core/src/processing/app/PreferencesData.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/processing/app/AbstractMonitor.java b/app/src/processing/app/AbstractMonitor.java index 027601c57..ec316650f 100644 --- a/app/src/processing/app/AbstractMonitor.java +++ b/app/src/processing/app/AbstractMonitor.java @@ -111,7 +111,7 @@ public abstract class AbstractMonitor extends JFrame implements MessageConsumer String[] serialRateStrings = { "300", "1200", "2400", "4800", "9600", - "19200", "57600", "115200" + "19200", "38400", "57600", "115200" }; serialRates = new JComboBox(); diff --git a/arduino-core/src/processing/app/PreferencesData.java b/arduino-core/src/processing/app/PreferencesData.java index c75e6f7b5..94cc187c8 100644 --- a/arduino-core/src/processing/app/PreferencesData.java +++ b/arduino-core/src/processing/app/PreferencesData.java @@ -80,7 +80,7 @@ public class PreferencesData { private static void fixPreferences() { String baud = get("serial.debug_rate"); - if ("14400".equals(baud) || "28800".equals(baud) || "38400".equals(baud)) { + if ("14400".equals(baud) || "28800".equals(baud)) { set("serial.debug_rate", "9600"); } } From 588f9f1118dd9cc361b2f313c6424d0c299c0fc9 Mon Sep 17 00:00:00 2001 From: Federico Fissore Date: Tue, 9 Dec 2014 10:51:39 +0100 Subject: [PATCH 099/148] Ignoring GNOME .directory files --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 6eb802a6c..7f1f6b6fd 100644 --- a/.gitignore +++ b/.gitignore @@ -36,6 +36,7 @@ test-bin *.iml .idea .DS_Store +.directory build/windows/launch4j-* build/windows/launcher/launch4j build/windows/WinAVR-*.zip From 35848e09a83a0bd74e7dae1d2ddeee3b6b2d9ddf Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Wed, 10 Dec 2014 10:26:02 +0100 Subject: [PATCH 100/148] Mitigated Serial Monitor resource exhaustion when the connected device sends a lot of data Fixes #2233 --- app/src/processing/app/SerialMonitor.java | 52 +++++++++---- .../processing/app/debug/TextAreaFIFO.java | 78 +++++++++++++++++++ build/shared/revisions.txt | 3 + 3 files changed, 120 insertions(+), 13 deletions(-) create mode 100644 app/src/processing/app/debug/TextAreaFIFO.java diff --git a/app/src/processing/app/SerialMonitor.java b/app/src/processing/app/SerialMonitor.java index 1f34e8f7e..10a23331e 100644 --- a/app/src/processing/app/SerialMonitor.java +++ b/app/src/processing/app/SerialMonitor.java @@ -19,6 +19,7 @@ package processing.app; import processing.app.debug.MessageConsumer; +import processing.app.debug.TextAreaFIFO; import processing.core.*; import static processing.app.I18n._; @@ -26,13 +27,12 @@ import java.awt.*; import java.awt.event.*; import javax.swing.*; import javax.swing.border.*; -import javax.swing.event.*; import javax.swing.text.*; -public class SerialMonitor extends JFrame implements MessageConsumer { +public class SerialMonitor extends JFrame implements MessageConsumer,ActionListener { private Serial serial; private String port; - private JTextArea textArea; + private TextAreaFIFO textArea; private JScrollPane scrollPane; private JTextField textField; private JButton sendButton; @@ -40,6 +40,8 @@ public class SerialMonitor extends JFrame implements MessageConsumer { private JComboBox lineEndings; private JComboBox serialRates; private int serialRate; + private javax.swing.Timer updateTimer; + private StringBuffer updateBuffer; public SerialMonitor(String port) { super(port); @@ -67,7 +69,9 @@ public class SerialMonitor extends JFrame implements MessageConsumer { Font editorFont = Preferences.getFont("editor.font"); Font font = new Font(consoleFont.getName(), consoleFont.getStyle(), editorFont.getSize()); - textArea = new JTextArea(16, 40); + textArea = new TextAreaFIFO(4000000); + textArea.setRows(16); + textArea.setColumns(40); textArea.setEditable(false); textArea.setFont(font); @@ -171,6 +175,9 @@ public class SerialMonitor extends JFrame implements MessageConsumer { } } } + + updateBuffer = new StringBuffer(1048576); + updateTimer = new javax.swing.Timer(33, this); // redraw serial monitor at 30 Hz } protected void setPlacement(int[] location) { @@ -203,9 +210,9 @@ public class SerialMonitor extends JFrame implements MessageConsumer { public void openSerialPort() throws SerialException { if (serial != null) return; - serial = new Serial(port, serialRate); serial.addListener(this); + updateTimer.start(); } public void closeSerialPort() { @@ -219,13 +226,32 @@ public class SerialMonitor extends JFrame implements MessageConsumer { } } - public void message(final String s) { - SwingUtilities.invokeLater(new Runnable() { - public void run() { - textArea.append(s); - if (autoscrollBox.isSelected()) { - textArea.setCaretPosition(textArea.getDocument().getLength()); - } - }}); + public void message(String s) { + // TODO: can we pass a byte array, to avoid overhead of String + addToUpdateBuffer(s); } + + private synchronized void addToUpdateBuffer(String s) { + updateBuffer.append(s); + } + + private synchronized String consumeUpdateBuffer() { + String s = updateBuffer.toString(); + updateBuffer.setLength(0); + return s; + } + + public void actionPerformed(ActionEvent e) { + final String s = consumeUpdateBuffer(); + if (s.length() > 0) { + //System.out.println("gui append " + s.length()); + boolean scroll = autoscrollBox.isSelected(); + textArea.allowTrim(scroll); + textArea.append(s); + if (scroll) { + textArea.setCaretPosition(textArea.getDocument().getLength()); + } + } + } + } diff --git a/app/src/processing/app/debug/TextAreaFIFO.java b/app/src/processing/app/debug/TextAreaFIFO.java new file mode 100644 index 000000000..9c5dc8612 --- /dev/null +++ b/app/src/processing/app/debug/TextAreaFIFO.java @@ -0,0 +1,78 @@ +/* + Copyright (c) 2014 Paul Stoffregen + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software Foundation, + Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + $Id$ +*/ + +// adapted from https://community.oracle.com/thread/1479784 + +package processing.app.debug; + +import javax.swing.JTextArea; +import javax.swing.SwingUtilities; +import javax.swing.event.DocumentEvent; +import javax.swing.event.DocumentListener; +import javax.swing.text.BadLocationException; + +public class TextAreaFIFO extends JTextArea implements DocumentListener { + private int maxChars; + + private int updateCount; // limit how often we trim the document + + private boolean doTrim; + + public TextAreaFIFO(int max) { + maxChars = max; + updateCount = 0; + doTrim = true; + getDocument().addDocumentListener(this); + } + + public void allowTrim(boolean trim) { + doTrim = trim; + } + + public void insertUpdate(DocumentEvent e) { + if (++updateCount > 150 && doTrim) { + updateCount = 0; + SwingUtilities.invokeLater(new Runnable() { + public void run() { + trimDocument(); + } + }); + } + } + + public void removeUpdate(DocumentEvent e) { + } + + public void changedUpdate(DocumentEvent e) { + } + + public void trimDocument() { + int len = 0; + len = getDocument().getLength(); + if (len > maxChars) { + int n = len - maxChars; + System.out.println("trimDocument: remove " + n + " chars"); + try { + getDocument().remove(0, n); + } catch (BadLocationException ble) { + } + } + } +} diff --git a/build/shared/revisions.txt b/build/shared/revisions.txt index e960fd372..c55aec50a 100644 --- a/build/shared/revisions.txt +++ b/build/shared/revisions.txt @@ -13,6 +13,9 @@ ARDUINO 1.0.7 * Fixed missing NOT_AN_INTERRUPT constant in digitalPinToInterrupt() macro * Fixed performance regression in HardwareSerial::available() introduced with https://github.com/arduino/Arduino/pull/2057 +[ide] +* Mitigated Serial Monitor resource exhaustion when the connected device sends a lot of data (Paul Stoffregen) + ARDUINO 1.0.6 - 2014.09.16 [core] From 391d3380ee37cba0b99d24e4f4aef558f2065480 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Wed, 10 Dec 2014 11:01:45 +0100 Subject: [PATCH 101/148] Removed leftover debug print --- app/src/processing/app/debug/TextAreaFIFO.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/processing/app/debug/TextAreaFIFO.java b/app/src/processing/app/debug/TextAreaFIFO.java index 9c5dc8612..9a6d575e1 100644 --- a/app/src/processing/app/debug/TextAreaFIFO.java +++ b/app/src/processing/app/debug/TextAreaFIFO.java @@ -68,7 +68,7 @@ public class TextAreaFIFO extends JTextArea implements DocumentListener { len = getDocument().getLength(); if (len > maxChars) { int n = len - maxChars; - System.out.println("trimDocument: remove " + n + " chars"); + //System.out.println("trimDocument: remove " + n + " chars"); try { getDocument().remove(0, n); } catch (BadLocationException ble) { From 065459c18fb36c3266463ba86a41506f23a20b52 Mon Sep 17 00:00:00 2001 From: Collin Kidder Date: Sun, 21 Dec 2014 20:57:08 -0500 Subject: [PATCH 102/148] Implement transmit buffering with interrupts for USART devices --- .../arduino/sam/cores/arduino/USARTClass.cpp | 38 +++++++++++++++---- .../arduino/sam/cores/arduino/USARTClass.h | 3 +- .../sam/variants/arduino_due_x/variant.cpp | 9 +++-- 3 files changed, 39 insertions(+), 11 deletions(-) diff --git a/hardware/arduino/sam/cores/arduino/USARTClass.cpp b/hardware/arduino/sam/cores/arduino/USARTClass.cpp index d950c50c9..44f92be5a 100644 --- a/hardware/arduino/sam/cores/arduino/USARTClass.cpp +++ b/hardware/arduino/sam/cores/arduino/USARTClass.cpp @@ -23,15 +23,17 @@ // Constructors //////////////////////////////////////////////////////////////// -USARTClass::USARTClass( Usart* pUsart, IRQn_Type dwIrq, uint32_t dwId, RingBuffer* pRx_buffer ) +USARTClass::USARTClass( Usart* pUsart, IRQn_Type dwIrq, uint32_t dwId, RingBuffer* pRx_buffer, volatile RingBuffer* pTx_buffer ) { - _rx_buffer = pRx_buffer ; + _rx_buffer = pRx_buffer; + _tx_buffer = pTx_buffer; _pUsart=pUsart ; _dwIrq=dwIrq ; _dwId=dwId ; } + // Public Methods ////////////////////////////////////////////////////////////// void USARTClass::begin( const uint32_t dwBaudRate ) @@ -73,6 +75,8 @@ void USARTClass::end( void ) // clear any received data _rx_buffer->_iHead = _rx_buffer->_iTail ; + while (_tx_buffer->_iHead != _tx_buffer->_iTail); //wait for transmit data to be sent + // Disable UART interrupt in NVIC NVIC_DisableIRQ( _dwIrq ) ; @@ -115,12 +119,21 @@ void USARTClass::flush( void ) size_t USARTClass::write( const uint8_t uc_data ) { - // Check if the transmitter is ready - while ((_pUsart->US_CSR & US_CSR_TXRDY) != US_CSR_TXRDY) - ; + if ((_pUsart->US_CSR & US_CSR_TXRDY) != US_CSR_TXRDY) //is the hardware currently busy? + { + //if busy we buffer + unsigned int l = (_tx_buffer->_iHead + 1) % SERIAL_BUFFER_SIZE; + while (_tx_buffer->_iTail == l); //spin locks if we're about to overwrite the buffer. This continues once the data is sent - // Send character - _pUsart->US_THR = uc_data ; + _tx_buffer->_aucBuffer[_tx_buffer->_iHead] = uc_data; + _tx_buffer->_iHead = l; + _pUsart->US_IER = US_IER_TXRDY; //make sure TX interrupt is enabled + } + else + { + // Send character + _pUsart->US_THR = uc_data ; + } return 1; } @@ -132,6 +145,17 @@ void USARTClass::IrqHandler( void ) if ((status & US_CSR_RXRDY) == US_CSR_RXRDY) _rx_buffer->store_char( _pUsart->US_RHR ) ; + //Do we need to keep sending data? + if ((status & US_CSR_TXRDY) == US_CSR_TXRDY) + { + _pUsart->US_THR = _tx_buffer->_aucBuffer[_tx_buffer->_iTail]; + _tx_buffer->_iTail = (unsigned int)(_tx_buffer->_iTail + 1) % SERIAL_BUFFER_SIZE; + if (_tx_buffer->_iTail == _tx_buffer->_iHead) //if this is true we have no more data to transmit + { + _pUsart->US_IDR = US_IDR_TXRDY; //mask off transmit interrupt so we don't get it anymore + } + } + // Acknowledge errors if ((status & US_CSR_OVRE) == US_CSR_OVRE || (status & US_CSR_FRAME) == US_CSR_FRAME) diff --git a/hardware/arduino/sam/cores/arduino/USARTClass.h b/hardware/arduino/sam/cores/arduino/USARTClass.h index 9082cc6c2..9d820c982 100644 --- a/hardware/arduino/sam/cores/arduino/USARTClass.h +++ b/hardware/arduino/sam/cores/arduino/USARTClass.h @@ -60,6 +60,7 @@ class USARTClass : public HardwareSerial { protected: RingBuffer *_rx_buffer ; + volatile RingBuffer *_tx_buffer; protected: Usart* _pUsart ; @@ -67,7 +68,7 @@ class USARTClass : public HardwareSerial uint32_t _dwId ; public: - USARTClass( Usart* pUsart, IRQn_Type dwIrq, uint32_t dwId, RingBuffer* pRx_buffer ) ; + USARTClass( Usart* pUsart, IRQn_Type dwIrq, uint32_t dwId, RingBuffer* pRx_buffer, volatile RingBuffer* pTx_buffer ) ; void begin( const uint32_t dwBaudRate ) ; void begin( const uint32_t dwBaudRate , const uint32_t config ) ; diff --git a/hardware/arduino/sam/variants/arduino_due_x/variant.cpp b/hardware/arduino/sam/variants/arduino_due_x/variant.cpp index ac066898d..f4ccc0c12 100644 --- a/hardware/arduino/sam/variants/arduino_due_x/variant.cpp +++ b/hardware/arduino/sam/variants/arduino_due_x/variant.cpp @@ -317,14 +317,17 @@ void UART_Handler(void) RingBuffer rx_buffer2; RingBuffer rx_buffer3; RingBuffer rx_buffer4; +volatile RingBuffer tx_buffer2; +volatile RingBuffer tx_buffer3; +volatile RingBuffer tx_buffer4; -USARTClass Serial1(USART0, USART0_IRQn, ID_USART0, &rx_buffer2); +USARTClass Serial1(USART0, USART0_IRQn, ID_USART0, &rx_buffer2, &tx_buffer2); void serialEvent1() __attribute__((weak)); void serialEvent1() { } -USARTClass Serial2(USART1, USART1_IRQn, ID_USART1, &rx_buffer3); +USARTClass Serial2(USART1, USART1_IRQn, ID_USART1, &rx_buffer3, &tx_buffer3); void serialEvent2() __attribute__((weak)); void serialEvent2() { } -USARTClass Serial3(USART3, USART3_IRQn, ID_USART3, &rx_buffer4); +USARTClass Serial3(USART3, USART3_IRQn, ID_USART3, &rx_buffer4, &tx_buffer4); void serialEvent3() __attribute__((weak)); void serialEvent3() { } From 63f5d26ae9186419ae65a36bbced33f94a2fdfd9 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Tue, 23 Dec 2014 12:47:24 +0100 Subject: [PATCH 103/148] Improved Serial input processing. Before this patch every byte received from Serial invokes a String allocation, not really efficient. Moreover a InputStreamReader is chained on the serial InputStream to correctly convert bytes into UTF-8 characters. --- app/src/processing/app/Serial.java | 57 +++++++---------------- app/src/processing/app/SerialMonitor.java | 21 ++++----- 2 files changed, 26 insertions(+), 52 deletions(-) diff --git a/app/src/processing/app/Serial.java b/app/src/processing/app/Serial.java index 14c0933c0..b9432f904 100755 --- a/app/src/processing/app/Serial.java +++ b/app/src/processing/app/Serial.java @@ -25,9 +25,7 @@ package processing.app; //import processing.core.*; -import processing.app.debug.MessageConsumer; import static processing.app.I18n._; - import gnu.io.*; import java.io.*; @@ -55,15 +53,13 @@ public class Serial implements SerialPortEventListener { // read buffer and streams - InputStream input; + InputStreamReader input; OutputStream output; byte buffer[] = new byte[32768]; int bufferIndex; int bufferLast; - MessageConsumer consumer; - public Serial(boolean monitor) throws SerialException { this(Preferences.get("serial.port"), Preferences.getInteger("serial.debug_rate"), @@ -158,7 +154,7 @@ public class Serial implements SerialPortEventListener { if (portId.getName().equals(iname)) { //System.out.println("looking for "+iname); port = (SerialPort)portId.open("serial madness", 2000); - input = port.getInputStream(); + input = new InputStreamReader(port.getInputStream()); output = port.getOutputStream(); port.setSerialPortParams(rate, databits, stopbits, parity); port.addEventListener(this); @@ -237,62 +233,41 @@ public class Serial implements SerialPortEventListener { port = null; } + char serialBuffer[] = new char[4096]; - public void addListener(MessageConsumer consumer) { - this.consumer = consumer; - } - - synchronized public void serialEvent(SerialPortEvent serialEvent) { - //System.out.println("serial port event"); // " + serialEvent); - //System.out.flush(); - //System.out.println("into"); - //System.out.flush(); - //System.err.println("type " + serialEvent.getEventType()); - //System.err.println("ahoooyey"); - //System.err.println("ahoooyeysdfsdfsdf"); if (serialEvent.getEventType() == SerialPortEvent.DATA_AVAILABLE) { - //System.out.println("data available"); - //System.err.flush(); try { - while (input.available() > 0) { - //if (input.available() > 0) { - //serial = input.read(); - //serialEvent(); - //buffer[bufferCount++] = (byte) serial; + while (input.ready()) { synchronized (buffer) { if (bufferLast == buffer.length) { byte temp[] = new byte[bufferLast << 1]; System.arraycopy(buffer, 0, temp, 0, bufferLast); buffer = temp; } - //buffer[bufferLast++] = (byte) input.read(); - if(monitor == true) - System.out.print((char) input.read()); - if (this.consumer != null) - this.consumer.message("" + (char) input.read()); - - /* - System.err.println(input.available() + " " + - ((char) buffer[bufferLast-1])); - */ //} + int n = input.read(serialBuffer); + message(serialBuffer, n); } } - //System.out.println("no more"); - } catch (IOException e) { errorMessage("serialEvent", e); - //e.printStackTrace(); - //System.out.println("angry"); } catch (Exception e) { } } - //System.out.println("out of"); - //System.err.println("out of event " + serialEvent.getEventType()); } + /** + * This method is intended to be redefined by users of Serial class + * + * @param buff + * @param n + */ + protected void message(char buff[], int n) { + // Empty + } + /** * Returns the number of bytes that have been read from serial * and are waiting to be dealt with by the user. diff --git a/app/src/processing/app/SerialMonitor.java b/app/src/processing/app/SerialMonitor.java index 10a23331e..64c8bb399 100644 --- a/app/src/processing/app/SerialMonitor.java +++ b/app/src/processing/app/SerialMonitor.java @@ -18,18 +18,18 @@ package processing.app; -import processing.app.debug.MessageConsumer; import processing.app.debug.TextAreaFIFO; import processing.core.*; import static processing.app.I18n._; import java.awt.*; import java.awt.event.*; + import javax.swing.*; import javax.swing.border.*; import javax.swing.text.*; -public class SerialMonitor extends JFrame implements MessageConsumer,ActionListener { +public class SerialMonitor extends JFrame implements ActionListener { private Serial serial; private String port; private TextAreaFIFO textArea; @@ -210,8 +210,12 @@ public class SerialMonitor extends JFrame implements MessageConsumer,ActionListe public void openSerialPort() throws SerialException { if (serial != null) return; - serial = new Serial(port, serialRate); - serial.addListener(this); + serial = new Serial(port, serialRate) { + @Override + protected void message(char buff[], int n) { + addToUpdateBuffer(buff, n); + } + }; updateTimer.start(); } @@ -226,13 +230,8 @@ public class SerialMonitor extends JFrame implements MessageConsumer,ActionListe } } - public void message(String s) { - // TODO: can we pass a byte array, to avoid overhead of String - addToUpdateBuffer(s); - } - - private synchronized void addToUpdateBuffer(String s) { - updateBuffer.append(s); + private synchronized void addToUpdateBuffer(char buff[], int n) { + updateBuffer.append(buff, 0, n); } private synchronized String consumeUpdateBuffer() { From 8e0a311e871a3feb505f18771a6fd58abf5048cd Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Tue, 23 Dec 2014 14:06:23 +0100 Subject: [PATCH 104/148] SerialMonitor: limit buffering without autoscroll When the "autoscroll" checkbox is deselected the buffer may continue to grow up to twice of the maximum size. This is a compromise to ensure a better user experience and, at the same time, reduce the chance to lose data and get "holes" in the serial stream. See #2491 --- app/src/processing/app/SerialMonitor.java | 10 +++---- .../processing/app/debug/TextAreaFIFO.java | 26 ++++++++++++++----- 2 files changed, 25 insertions(+), 11 deletions(-) diff --git a/app/src/processing/app/SerialMonitor.java b/app/src/processing/app/SerialMonitor.java index 64c8bb399..7ce00474b 100644 --- a/app/src/processing/app/SerialMonitor.java +++ b/app/src/processing/app/SerialMonitor.java @@ -69,7 +69,7 @@ public class SerialMonitor extends JFrame implements ActionListener { Font editorFont = Preferences.getFont("editor.font"); Font font = new Font(consoleFont.getName(), consoleFont.getStyle(), editorFont.getSize()); - textArea = new TextAreaFIFO(4000000); + textArea = new TextAreaFIFO(8000000); textArea.setRows(16); textArea.setColumns(40); textArea.setEditable(false); @@ -244,11 +244,11 @@ public class SerialMonitor extends JFrame implements ActionListener { final String s = consumeUpdateBuffer(); if (s.length() > 0) { //System.out.println("gui append " + s.length()); - boolean scroll = autoscrollBox.isSelected(); - textArea.allowTrim(scroll); - textArea.append(s); - if (scroll) { + if (autoscrollBox.isSelected()) { + textArea.appendTrim(s); textArea.setCaretPosition(textArea.getDocument().getLength()); + } else { + textArea.appendNoTrim(s); } } } diff --git a/app/src/processing/app/debug/TextAreaFIFO.java b/app/src/processing/app/debug/TextAreaFIFO.java index 9a6d575e1..9783cd42c 100644 --- a/app/src/processing/app/debug/TextAreaFIFO.java +++ b/app/src/processing/app/debug/TextAreaFIFO.java @@ -30,6 +30,7 @@ import javax.swing.text.BadLocationException; public class TextAreaFIFO extends JTextArea implements DocumentListener { private int maxChars; + private int trimMaxChars; private int updateCount; // limit how often we trim the document @@ -37,15 +38,12 @@ public class TextAreaFIFO extends JTextArea implements DocumentListener { public TextAreaFIFO(int max) { maxChars = max; + trimMaxChars = max / 2; updateCount = 0; doTrim = true; getDocument().addDocumentListener(this); } - public void allowTrim(boolean trim) { - doTrim = trim; - } - public void insertUpdate(DocumentEvent e) { if (++updateCount > 150 && doTrim) { updateCount = 0; @@ -66,8 +64,8 @@ public class TextAreaFIFO extends JTextArea implements DocumentListener { public void trimDocument() { int len = 0; len = getDocument().getLength(); - if (len > maxChars) { - int n = len - maxChars; + if (len > trimMaxChars) { + int n = len - trimMaxChars; //System.out.println("trimDocument: remove " + n + " chars"); try { getDocument().remove(0, n); @@ -75,4 +73,20 @@ public class TextAreaFIFO extends JTextArea implements DocumentListener { } } } + + public void appendNoTrim(String s) { + int free = maxChars - getDocument().getLength(); + if (free <= 0) + return; + if (s.length() > free) + append(s.substring(0, free)); + else + append(s); + doTrim = false; + } + + public void appendTrim(String str) { + append(str); + doTrim = true; + } } From 4eb05c303b5a9771309bd754a5f04292a25b5d1f Mon Sep 17 00:00:00 2001 From: Collin Kidder Date: Tue, 23 Dec 2014 22:36:35 -0500 Subject: [PATCH 105/148] Change RingBuffer to have buffer size of 128 and also set its members volatile since they are all accessed and modified in interrupt handlers. --- hardware/arduino/sam/cores/arduino/RingBuffer.cpp | 2 +- hardware/arduino/sam/cores/arduino/RingBuffer.h | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/hardware/arduino/sam/cores/arduino/RingBuffer.cpp b/hardware/arduino/sam/cores/arduino/RingBuffer.cpp index f0b3ed1df..d9931c977 100644 --- a/hardware/arduino/sam/cores/arduino/RingBuffer.cpp +++ b/hardware/arduino/sam/cores/arduino/RingBuffer.cpp @@ -21,7 +21,7 @@ RingBuffer::RingBuffer( void ) { - memset( _aucBuffer, 0, SERIAL_BUFFER_SIZE ) ; + memset( (void *)_aucBuffer, 0, SERIAL_BUFFER_SIZE ) ; _iHead=0 ; _iTail=0 ; } diff --git a/hardware/arduino/sam/cores/arduino/RingBuffer.h b/hardware/arduino/sam/cores/arduino/RingBuffer.h index 28309df45..1a5861b0b 100644 --- a/hardware/arduino/sam/cores/arduino/RingBuffer.h +++ b/hardware/arduino/sam/cores/arduino/RingBuffer.h @@ -25,14 +25,14 @@ // using a ring buffer (I think), in which head is the index of the location // to which to write the next incoming character and tail is the index of the // location from which to read. -#define SERIAL_BUFFER_SIZE 64 +#define SERIAL_BUFFER_SIZE 128 class RingBuffer { public: - uint8_t _aucBuffer[SERIAL_BUFFER_SIZE] ; - int _iHead ; - int _iTail ; + volatile uint8_t _aucBuffer[SERIAL_BUFFER_SIZE] ; + volatile int _iHead ; + volatile int _iTail ; public: RingBuffer( void ) ; From bb341c6d922ee65cd5d5e4489a02e81e2a063168 Mon Sep 17 00:00:00 2001 From: Collin Kidder Date: Tue, 23 Dec 2014 22:37:58 -0500 Subject: [PATCH 106/148] Modifications to make serial transmit interrupt work more reliably. Also, added the availableForWrite function. --- .../arduino/sam/cores/arduino/USARTClass.cpp | 32 +++++++++++++------ .../arduino/sam/cores/arduino/USARTClass.h | 7 ++-- .../sam/variants/arduino_due_x/variant.cpp | 6 ++-- 3 files changed, 30 insertions(+), 15 deletions(-) diff --git a/hardware/arduino/sam/cores/arduino/USARTClass.cpp b/hardware/arduino/sam/cores/arduino/USARTClass.cpp index 44f92be5a..ce2c28a5c 100644 --- a/hardware/arduino/sam/cores/arduino/USARTClass.cpp +++ b/hardware/arduino/sam/cores/arduino/USARTClass.cpp @@ -23,7 +23,7 @@ // Constructors //////////////////////////////////////////////////////////////// -USARTClass::USARTClass( Usart* pUsart, IRQn_Type dwIrq, uint32_t dwId, RingBuffer* pRx_buffer, volatile RingBuffer* pTx_buffer ) +USARTClass::USARTClass( Usart* pUsart, IRQn_Type dwIrq, uint32_t dwId, RingBuffer* pRx_buffer, RingBuffer* pTx_buffer ) { _rx_buffer = pRx_buffer; _tx_buffer = pTx_buffer; @@ -33,7 +33,6 @@ USARTClass::USARTClass( Usart* pUsart, IRQn_Type dwIrq, uint32_t dwId, RingBuffe _dwId=dwId ; } - // Public Methods ////////////////////////////////////////////////////////////// void USARTClass::begin( const uint32_t dwBaudRate ) @@ -66,6 +65,10 @@ void USARTClass::begin( const uint32_t dwBaudRate, const uint32_t config ) // Enable UART interrupt in NVIC NVIC_EnableIRQ( _dwIrq ) ; + //make sure both ring buffers are initialized back to empty. + _rx_buffer->_iHead = _rx_buffer->_iTail = 0; + _tx_buffer->_iHead = _tx_buffer->_iTail = 0; + // Enable receiver and transmitter _pUsart->US_CR = US_CR_RXEN | US_CR_TXEN ; } @@ -91,6 +94,14 @@ int USARTClass::available( void ) return (uint32_t)(SERIAL_BUFFER_SIZE + _rx_buffer->_iHead - _rx_buffer->_iTail) % SERIAL_BUFFER_SIZE ; } +int USARTClass::availableForWrite(void) +{ + int head = _tx_buffer->_iHead; + int tail = _tx_buffer->_iTail; + if (head >= tail) return SERIAL_BUFFER_SIZE - 1 - head + tail; + return tail - head - 1; +} + int USARTClass::peek( void ) { if ( _rx_buffer->_iHead == _rx_buffer->_iTail ) @@ -142,17 +153,20 @@ void USARTClass::IrqHandler( void ) uint32_t status = _pUsart->US_CSR; // Did we receive data ? - if ((status & US_CSR_RXRDY) == US_CSR_RXRDY) - _rx_buffer->store_char( _pUsart->US_RHR ) ; - + if ((status & US_CSR_RXRDY) == US_CSR_RXRDY) + { + _rx_buffer->store_char(_pUsart->US_RHR); + } //Do we need to keep sending data? if ((status & US_CSR_TXRDY) == US_CSR_TXRDY) { - _pUsart->US_THR = _tx_buffer->_aucBuffer[_tx_buffer->_iTail]; - _tx_buffer->_iTail = (unsigned int)(_tx_buffer->_iTail + 1) % SERIAL_BUFFER_SIZE; - if (_tx_buffer->_iTail == _tx_buffer->_iHead) //if this is true we have no more data to transmit + if (_tx_buffer->_iTail != _tx_buffer->_iHead) { //just in case + _pUsart->US_THR = _tx_buffer->_aucBuffer[_tx_buffer->_iTail]; + _tx_buffer->_iTail = (unsigned int)(_tx_buffer->_iTail + 1) % SERIAL_BUFFER_SIZE; + } + else { - _pUsart->US_IDR = US_IDR_TXRDY; //mask off transmit interrupt so we don't get it anymore + _pUsart->US_IDR = US_IDR_TXRDY; //mask off transmit interrupt so we don't get it anymore } } diff --git a/hardware/arduino/sam/cores/arduino/USARTClass.h b/hardware/arduino/sam/cores/arduino/USARTClass.h index 9d820c982..fcce9fd12 100644 --- a/hardware/arduino/sam/cores/arduino/USARTClass.h +++ b/hardware/arduino/sam/cores/arduino/USARTClass.h @@ -59,8 +59,8 @@ class USARTClass : public HardwareSerial { protected: - RingBuffer *_rx_buffer ; - volatile RingBuffer *_tx_buffer; + RingBuffer *_rx_buffer; + RingBuffer *_tx_buffer; protected: Usart* _pUsart ; @@ -68,12 +68,13 @@ class USARTClass : public HardwareSerial uint32_t _dwId ; public: - USARTClass( Usart* pUsart, IRQn_Type dwIrq, uint32_t dwId, RingBuffer* pRx_buffer, volatile RingBuffer* pTx_buffer ) ; + USARTClass( Usart* pUsart, IRQn_Type dwIrq, uint32_t dwId, RingBuffer* pRx_buffer, RingBuffer* pTx_buffer ) ; void begin( const uint32_t dwBaudRate ) ; void begin( const uint32_t dwBaudRate , const uint32_t config ) ; void end( void ) ; int available( void ) ; + int availableForWrite(void); int peek( void ) ; int read( void ) ; void flush( void ) ; diff --git a/hardware/arduino/sam/variants/arduino_due_x/variant.cpp b/hardware/arduino/sam/variants/arduino_due_x/variant.cpp index f4ccc0c12..f746fdf44 100644 --- a/hardware/arduino/sam/variants/arduino_due_x/variant.cpp +++ b/hardware/arduino/sam/variants/arduino_due_x/variant.cpp @@ -317,9 +317,9 @@ void UART_Handler(void) RingBuffer rx_buffer2; RingBuffer rx_buffer3; RingBuffer rx_buffer4; -volatile RingBuffer tx_buffer2; -volatile RingBuffer tx_buffer3; -volatile RingBuffer tx_buffer4; +RingBuffer tx_buffer2; +RingBuffer tx_buffer3; +RingBuffer tx_buffer4; USARTClass Serial1(USART0, USART0_IRQn, ID_USART0, &rx_buffer2, &tx_buffer2); void serialEvent1() __attribute__((weak)); From 2fedb00552e45aaca1623789138d223690244f43 Mon Sep 17 00:00:00 2001 From: Collin Kidder Date: Wed, 24 Dec 2014 10:20:37 -0500 Subject: [PATCH 107/148] Switch all of the transmit interrupt code to UARTClass. Also, turn USARTClass into a stub because it did nothing differently from the UART code anyway. Now all serial ports use transmit interrupts. --- .../arduino/sam/cores/arduino/UARTClass.cpp | 58 +++++++- .../arduino/sam/cores/arduino/UARTClass.h | 5 +- .../arduino/sam/cores/arduino/USARTClass.cpp | 132 +----------------- .../arduino/sam/cores/arduino/USARTClass.h | 14 +- .../sam/variants/arduino_due_x/variant.cpp | 3 +- 5 files changed, 66 insertions(+), 146 deletions(-) diff --git a/hardware/arduino/sam/cores/arduino/UARTClass.cpp b/hardware/arduino/sam/cores/arduino/UARTClass.cpp index 16188b128..99e7219b5 100644 --- a/hardware/arduino/sam/cores/arduino/UARTClass.cpp +++ b/hardware/arduino/sam/cores/arduino/UARTClass.cpp @@ -23,9 +23,10 @@ // Constructors //////////////////////////////////////////////////////////////// -UARTClass::UARTClass( Uart* pUart, IRQn_Type dwIrq, uint32_t dwId, RingBuffer* pRx_buffer ) +UARTClass::UARTClass( Uart *pUart, IRQn_Type dwIrq, uint32_t dwId, RingBuffer *pRx_buffer, RingBuffer *pTx_buffer ) { _rx_buffer = pRx_buffer ; + _tx_buffer = pTx_buffer; _pUart=pUart ; _dwIrq=dwIrq ; @@ -34,7 +35,14 @@ UARTClass::UARTClass( Uart* pUart, IRQn_Type dwIrq, uint32_t dwId, RingBuffer* p // Public Methods ////////////////////////////////////////////////////////////// + + void UARTClass::begin( const uint32_t dwBaudRate ) +{ + begin( dwBaudRate, UART_MR_PAR_NO | UART_MR_CHMODE_NORMAL ); +} + +void UARTClass::begin( const uint32_t dwBaudRate, const uint32_t config ) { // Configure PMC pmc_enable_periph_clk( _dwId ) ; @@ -46,7 +54,7 @@ void UARTClass::begin( const uint32_t dwBaudRate ) _pUart->UART_CR = UART_CR_RSTRX | UART_CR_RSTTX | UART_CR_RXDIS | UART_CR_TXDIS ; // Configure mode - _pUart->UART_MR = UART_MR_PAR_NO | UART_MR_CHMODE_NORMAL ; + _pUart->UART_MR = config ; // Configure baudrate (asynchronous, no oversampling) _pUart->UART_BRGR = (SystemCoreClock / dwBaudRate) >> 4 ; @@ -58,6 +66,10 @@ void UARTClass::begin( const uint32_t dwBaudRate ) // Enable UART interrupt in NVIC NVIC_EnableIRQ(_dwIrq); + //make sure both ring buffers are initialized back to empty. + _rx_buffer->_iHead = _rx_buffer->_iTail = 0; + _tx_buffer->_iHead = _tx_buffer->_iTail = 0; + // Enable receiver and transmitter _pUart->UART_CR = UART_CR_RXEN | UART_CR_TXEN ; } @@ -67,6 +79,8 @@ void UARTClass::end( void ) // clear any received data _rx_buffer->_iHead = _rx_buffer->_iTail ; + while (_tx_buffer->_iHead != _tx_buffer->_iTail); //wait for transmit data to be sent + // Disable UART interrupt in NVIC NVIC_DisableIRQ( _dwIrq ) ; @@ -81,6 +95,14 @@ int UARTClass::available( void ) return (uint32_t)(SERIAL_BUFFER_SIZE + _rx_buffer->_iHead - _rx_buffer->_iTail) % SERIAL_BUFFER_SIZE ; } +int UARTClass::availableForWrite(void) +{ + int head = _tx_buffer->_iHead; + int tail = _tx_buffer->_iTail; + if (head >= tail) return SERIAL_BUFFER_SIZE - 1 - head + tail; + return tail - head - 1; +} + int UARTClass::peek( void ) { if ( _rx_buffer->_iHead == _rx_buffer->_iTail ) @@ -109,12 +131,21 @@ void UARTClass::flush( void ) size_t UARTClass::write( const uint8_t uc_data ) { - // Check if the transmitter is ready - while ((_pUart->UART_SR & UART_SR_TXRDY) != UART_SR_TXRDY) - ; + if ((_pUart->UART_SR & UART_SR_TXRDY) != UART_SR_TXRDY) //is the hardware currently busy? + { + //if busy we buffer + unsigned int l = (_tx_buffer->_iHead + 1) % SERIAL_BUFFER_SIZE; + while (_tx_buffer->_iTail == l); //spin locks if we're about to overwrite the buffer. This continues once the data is sent - // Send character - _pUart->UART_THR = uc_data; + _tx_buffer->_aucBuffer[_tx_buffer->_iHead] = uc_data; + _tx_buffer->_iHead = l; + _pUart->UART_IER = UART_IER_TXRDY; //make sure TX interrupt is enabled + } + else + { + // Send character + _pUart->UART_THR = uc_data ; + } return 1; } @@ -126,6 +157,19 @@ void UARTClass::IrqHandler( void ) if ((status & UART_SR_RXRDY) == UART_SR_RXRDY) _rx_buffer->store_char(_pUart->UART_RHR); + //Do we need to keep sending data? + if ((status & UART_SR_TXRDY) == UART_SR_TXRDY) + { + if (_tx_buffer->_iTail != _tx_buffer->_iHead) { //just in case + _pUart->UART_THR = _tx_buffer->_aucBuffer[_tx_buffer->_iTail]; + _tx_buffer->_iTail = (unsigned int)(_tx_buffer->_iTail + 1) % SERIAL_BUFFER_SIZE; + } + else + { + _pUart->UART_IDR = UART_IDR_TXRDY; //mask off transmit interrupt so we don't get it anymore + } + } + // Acknowledge errors if ((status & UART_SR_OVRE) == UART_SR_OVRE || (status & UART_SR_FRAME) == UART_SR_FRAME) diff --git a/hardware/arduino/sam/cores/arduino/UARTClass.h b/hardware/arduino/sam/cores/arduino/UARTClass.h index 5836f2e62..6c513374f 100644 --- a/hardware/arduino/sam/cores/arduino/UARTClass.h +++ b/hardware/arduino/sam/cores/arduino/UARTClass.h @@ -29,6 +29,7 @@ class UARTClass : public HardwareSerial { protected: RingBuffer *_rx_buffer ; + RingBuffer *_tx_buffer; protected: Uart* _pUart ; @@ -36,11 +37,13 @@ class UARTClass : public HardwareSerial uint32_t _dwId ; public: - UARTClass( Uart* pUart, IRQn_Type dwIrq, uint32_t dwId, RingBuffer* pRx_buffer ) ; + UARTClass( Uart* pUart, IRQn_Type dwIrq, uint32_t dwId, RingBuffer* pRx_buffer, RingBuffer* pTx_buffer) ; void begin( const uint32_t dwBaudRate ) ; + void begin( const uint32_t dwBaudRate , const uint32_t config ) ; void end( void ) ; int available( void ) ; + int availableForWrite(void); int peek( void ) ; int read( void ) ; void flush( void ) ; diff --git a/hardware/arduino/sam/cores/arduino/USARTClass.cpp b/hardware/arduino/sam/cores/arduino/USARTClass.cpp index ce2c28a5c..310e5680b 100644 --- a/hardware/arduino/sam/cores/arduino/USARTClass.cpp +++ b/hardware/arduino/sam/cores/arduino/USARTClass.cpp @@ -23,14 +23,10 @@ // Constructors //////////////////////////////////////////////////////////////// -USARTClass::USARTClass( Usart* pUsart, IRQn_Type dwIrq, uint32_t dwId, RingBuffer* pRx_buffer, RingBuffer* pTx_buffer ) +USARTClass::USARTClass( Usart* pUsart, IRQn_Type dwIrq, uint32_t dwId, RingBuffer* pRx_buffer, RingBuffer* pTx_buffer ) : UARTClass((Uart*)pUsart, dwIrq, dwId, pRx_buffer, pTx_buffer) { - _rx_buffer = pRx_buffer; - _tx_buffer = pTx_buffer; - _pUsart=pUsart ; - _dwIrq=dwIrq ; - _dwId=dwId ; + _pUsart=pUsart ; //In case anyone needs USART specific functionality in the future } // Public Methods ////////////////////////////////////////////////////////////// @@ -42,140 +38,26 @@ void USARTClass::begin( const uint32_t dwBaudRate ) void USARTClass::begin( const uint32_t dwBaudRate, const uint32_t config ) { - // Configure PMC - pmc_enable_periph_clk( _dwId ) ; - - // Disable PDC channel - _pUsart->US_PTCR = US_PTCR_RXTDIS | US_PTCR_TXTDIS ; - - // Reset and disable receiver and transmitter - _pUsart->US_CR = US_CR_RSTRX | US_CR_RSTTX | US_CR_RXDIS | US_CR_TXDIS ; - - // Configure mode - _pUsart->US_MR = config; - - - // Configure baudrate, asynchronous no oversampling - _pUsart->US_BRGR = (SystemCoreClock / dwBaudRate) / 16 ; - - // Configure interrupts - _pUsart->US_IDR = 0xFFFFFFFF; - _pUsart->US_IER = US_IER_RXRDY | US_IER_OVRE | US_IER_FRAME; - - // Enable UART interrupt in NVIC - NVIC_EnableIRQ( _dwIrq ) ; - - //make sure both ring buffers are initialized back to empty. - _rx_buffer->_iHead = _rx_buffer->_iTail = 0; - _tx_buffer->_iHead = _tx_buffer->_iTail = 0; - - // Enable receiver and transmitter - _pUsart->US_CR = US_CR_RXEN | US_CR_TXEN ; + UARTClass::begin(dwBaudRate, config); } void USARTClass::end( void ) { - // clear any received data - _rx_buffer->_iHead = _rx_buffer->_iTail ; - - while (_tx_buffer->_iHead != _tx_buffer->_iTail); //wait for transmit data to be sent - - // Disable UART interrupt in NVIC - NVIC_DisableIRQ( _dwIrq ) ; - - // Wait for any outstanding data to be sent - flush(); - - pmc_disable_periph_clk( _dwId ) ; -} - -int USARTClass::available( void ) -{ - return (uint32_t)(SERIAL_BUFFER_SIZE + _rx_buffer->_iHead - _rx_buffer->_iTail) % SERIAL_BUFFER_SIZE ; -} - -int USARTClass::availableForWrite(void) -{ - int head = _tx_buffer->_iHead; - int tail = _tx_buffer->_iTail; - if (head >= tail) return SERIAL_BUFFER_SIZE - 1 - head + tail; - return tail - head - 1; -} - -int USARTClass::peek( void ) -{ - if ( _rx_buffer->_iHead == _rx_buffer->_iTail ) - return -1 ; - - return _rx_buffer->_aucBuffer[_rx_buffer->_iTail] ; -} - -int USARTClass::read( void ) -{ - // if the head isn't ahead of the tail, we don't have any characters - if ( _rx_buffer->_iHead == _rx_buffer->_iTail ) - return -1 ; - - uint8_t uc = _rx_buffer->_aucBuffer[_rx_buffer->_iTail] ; - _rx_buffer->_iTail = (unsigned int)(_rx_buffer->_iTail + 1) % SERIAL_BUFFER_SIZE ; - return uc ; + UARTClass::end(); } void USARTClass::flush( void ) { - // Wait for transmission to complete - while ((_pUsart->US_CSR & US_CSR_TXRDY) != US_CSR_TXRDY) - ; + UARTClass::flush(); } size_t USARTClass::write( const uint8_t uc_data ) { - if ((_pUsart->US_CSR & US_CSR_TXRDY) != US_CSR_TXRDY) //is the hardware currently busy? - { - //if busy we buffer - unsigned int l = (_tx_buffer->_iHead + 1) % SERIAL_BUFFER_SIZE; - while (_tx_buffer->_iTail == l); //spin locks if we're about to overwrite the buffer. This continues once the data is sent - - _tx_buffer->_aucBuffer[_tx_buffer->_iHead] = uc_data; - _tx_buffer->_iHead = l; - _pUsart->US_IER = US_IER_TXRDY; //make sure TX interrupt is enabled - } - else - { - // Send character - _pUsart->US_THR = uc_data ; - } - return 1; + return UARTClass::write(uc_data); } void USARTClass::IrqHandler( void ) { - uint32_t status = _pUsart->US_CSR; - - // Did we receive data ? - if ((status & US_CSR_RXRDY) == US_CSR_RXRDY) - { - _rx_buffer->store_char(_pUsart->US_RHR); - } - //Do we need to keep sending data? - if ((status & US_CSR_TXRDY) == US_CSR_TXRDY) - { - if (_tx_buffer->_iTail != _tx_buffer->_iHead) { //just in case - _pUsart->US_THR = _tx_buffer->_aucBuffer[_tx_buffer->_iTail]; - _tx_buffer->_iTail = (unsigned int)(_tx_buffer->_iTail + 1) % SERIAL_BUFFER_SIZE; - } - else - { - _pUsart->US_IDR = US_IDR_TXRDY; //mask off transmit interrupt so we don't get it anymore - } - } - - // Acknowledge errors - if ((status & US_CSR_OVRE) == US_CSR_OVRE || - (status & US_CSR_FRAME) == US_CSR_FRAME) - { - // TODO: error reporting outside ISR - _pUsart->US_CR |= US_CR_RSTSTA; - } + UARTClass::IrqHandler(); } diff --git a/hardware/arduino/sam/cores/arduino/USARTClass.h b/hardware/arduino/sam/cores/arduino/USARTClass.h index fcce9fd12..53fee41d8 100644 --- a/hardware/arduino/sam/cores/arduino/USARTClass.h +++ b/hardware/arduino/sam/cores/arduino/USARTClass.h @@ -19,7 +19,7 @@ #ifndef _USART_CLASS_ #define _USART_CLASS_ -#include "HardwareSerial.h" +#include "UARTClass.h" #include "RingBuffer.h" // Includes Atmel CMSIS @@ -56,16 +56,10 @@ #define SERIAL_7O2 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_7_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_2_BIT | US_MR_CHMODE_NORMAL) #define SERIAL_8O2 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_8_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_2_BIT | US_MR_CHMODE_NORMAL) -class USARTClass : public HardwareSerial +class USARTClass : public UARTClass { - protected: - RingBuffer *_rx_buffer; - RingBuffer *_tx_buffer; - protected: Usart* _pUsart ; - IRQn_Type _dwIrq ; - uint32_t _dwId ; public: USARTClass( Usart* pUsart, IRQn_Type dwIrq, uint32_t dwId, RingBuffer* pRx_buffer, RingBuffer* pTx_buffer ) ; @@ -73,10 +67,6 @@ class USARTClass : public HardwareSerial void begin( const uint32_t dwBaudRate ) ; void begin( const uint32_t dwBaudRate , const uint32_t config ) ; void end( void ) ; - int available( void ) ; - int availableForWrite(void); - int peek( void ) ; - int read( void ) ; void flush( void ) ; size_t write( const uint8_t c ) ; diff --git a/hardware/arduino/sam/variants/arduino_due_x/variant.cpp b/hardware/arduino/sam/variants/arduino_due_x/variant.cpp index f746fdf44..4cbe0df80 100644 --- a/hardware/arduino/sam/variants/arduino_due_x/variant.cpp +++ b/hardware/arduino/sam/variants/arduino_due_x/variant.cpp @@ -299,8 +299,9 @@ extern const PinDescription g_APinDescription[]= * UART objects */ RingBuffer rx_buffer1; +RingBuffer tx_buffer1; -UARTClass Serial(UART, UART_IRQn, ID_UART, &rx_buffer1); +UARTClass Serial(UART, UART_IRQn, ID_UART, &rx_buffer1, &tx_buffer1); void serialEvent() __attribute__((weak)); void serialEvent() { } From eff20deb27ccde721d78dbade8b57787479d6c91 Mon Sep 17 00:00:00 2001 From: Collin Kidder Date: Wed, 24 Dec 2014 10:36:40 -0500 Subject: [PATCH 108/148] Add ability to set interrupt priority for UART/USARTs. --- hardware/arduino/sam/cores/arduino/UARTClass.cpp | 10 ++++++++++ hardware/arduino/sam/cores/arduino/UARTClass.h | 2 ++ 2 files changed, 12 insertions(+) diff --git a/hardware/arduino/sam/cores/arduino/UARTClass.cpp b/hardware/arduino/sam/cores/arduino/UARTClass.cpp index 99e7219b5..6ff9d932f 100644 --- a/hardware/arduino/sam/cores/arduino/UARTClass.cpp +++ b/hardware/arduino/sam/cores/arduino/UARTClass.cpp @@ -90,6 +90,16 @@ void UARTClass::end( void ) pmc_disable_periph_clk( _dwId ) ; } +void UARTClass::setInterruptPriority(uint32_t priority) +{ + NVIC_SetPriority(_dwIrq, priority & 0x0F); +} + +uint32_t UARTClass::getInterruptPriority() +{ + return NVIC_GetPriority(_dwIrq); +} + int UARTClass::available( void ) { return (uint32_t)(SERIAL_BUFFER_SIZE + _rx_buffer->_iHead - _rx_buffer->_iTail) % SERIAL_BUFFER_SIZE ; diff --git a/hardware/arduino/sam/cores/arduino/UARTClass.h b/hardware/arduino/sam/cores/arduino/UARTClass.h index 6c513374f..b60fae3d0 100644 --- a/hardware/arduino/sam/cores/arduino/UARTClass.h +++ b/hardware/arduino/sam/cores/arduino/UARTClass.h @@ -48,6 +48,8 @@ class UARTClass : public HardwareSerial int read( void ) ; void flush( void ) ; size_t write( const uint8_t c ) ; + void setInterruptPriority(uint32_t priority); + uint32_t getInterruptPriority(); void IrqHandler( void ) ; From ad9fc89fce30dfd6b1d312b7eedfcc6448fc52a5 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Wed, 24 Dec 2014 18:57:46 +0100 Subject: [PATCH 109/148] IDE: Removed unused stuff from Serial class --- arduino-core/src/processing/app/Serial.java | 218 -------------------- 1 file changed, 218 deletions(-) diff --git a/arduino-core/src/processing/app/Serial.java b/arduino-core/src/processing/app/Serial.java index 9860d253c..672db063d 100644 --- a/arduino-core/src/processing/app/Serial.java +++ b/arduino-core/src/processing/app/Serial.java @@ -1,5 +1,3 @@ -/* -*- mode: jde; c-basic-offset: 2; indent-tabs-mode: nil -*- */ - /* PSerial - class for serial port goodness Part of the Processing project - http://processing.org @@ -53,20 +51,6 @@ public class Serial implements SerialPortEventListener { int parity; int databits; int stopbits; - boolean monitor = false; - - byte buffer[] = new byte[32768]; - int bufferIndex; - int bufferLast; - - public Serial(boolean monitor) throws SerialException { - this(PreferencesData.get("serial.port"), - PreferencesData.getInteger("serial.debug_rate"), - PreferencesData.get("serial.parity").charAt(0), - PreferencesData.getInteger("serial.databits"), - new Float(PreferencesData.get("serial.stopbits")).floatValue()); - this.monitor = monitor; - } public Serial() throws SerialException { this(PreferencesData.get("serial.port"), @@ -170,15 +154,7 @@ public class Serial implements SerialPortEventListener { try { byte[] buf = port.readBytes(serialEvent.getEventValue()); if (buf.length > 0) { - if (bufferLast == buffer.length) { - byte temp[] = new byte[bufferLast << 1]; - System.arraycopy(buffer, 0, temp, 0, bufferLast); - buffer = temp; - } String msg = new String(buf); - if (monitor) { - System.out.print(msg); - } char[] chars = msg.toCharArray(); message(chars, chars.length); } @@ -199,200 +175,6 @@ public class Serial implements SerialPortEventListener { // Empty } - /** - * Returns the number of bytes that have been read from serial - * and are waiting to be dealt with by the user. - */ - public synchronized int available() { - return (bufferLast - bufferIndex); - } - - - /** - * Ignore all the bytes read so far and empty the buffer. - */ - public synchronized void clear() { - bufferLast = 0; - bufferIndex = 0; - } - - - /** - * Returns a number between 0 and 255 for the next byte that's - * waiting in the buffer. - * Returns -1 if there was no byte (although the user should - * first check available() to see if things are ready to avoid this) - */ - public synchronized int read() { - if (bufferIndex == bufferLast) return -1; - - int outgoing = buffer[bufferIndex++] & 0xff; - if (bufferIndex == bufferLast) { // rewind - bufferIndex = 0; - bufferLast = 0; - } - return outgoing; - } - - - /** - * Returns the next byte in the buffer as a char. - * Returns -1, or 0xffff, if nothing is there. - */ - public synchronized char readChar() { - if (bufferIndex == bufferLast) return (char) (-1); - return (char) read(); - } - - - /** - * Return a byte array of anything that's in the serial buffer. - * Not particularly memory/speed efficient, because it creates - * a byte array on each read, but it's easier to use than - * readBytes(byte b[]) (see below). - */ - public synchronized byte[] readBytes() { - if (bufferIndex == bufferLast) return null; - - int length = bufferLast - bufferIndex; - byte outgoing[] = new byte[length]; - System.arraycopy(buffer, bufferIndex, outgoing, 0, length); - - bufferIndex = 0; // rewind - bufferLast = 0; - return outgoing; - } - - - /** - * Grab whatever is in the serial buffer, and stuff it into a - * byte buffer passed in by the user. This is more memory/time - * efficient than readBytes() returning a byte[] array. - *

    - * Returns an int for how many bytes were read. If more bytes - * are available than can fit into the byte array, only those - * that will fit are read. - */ - public synchronized int readBytes(byte outgoing[]) { - if (bufferIndex == bufferLast) return 0; - - int length = bufferLast - bufferIndex; - if (length > outgoing.length) length = outgoing.length; - System.arraycopy(buffer, bufferIndex, outgoing, 0, length); - - bufferIndex += length; - if (bufferIndex == bufferLast) { - bufferIndex = 0; // rewind - bufferLast = 0; - } - return length; - } - - - /** - * Reads from the serial port into a buffer of bytes up to and - * including a particular character. If the character isn't in - * the serial buffer, then 'null' is returned. - */ - public synchronized byte[] readBytesUntil(int interesting) { - if (bufferIndex == bufferLast) return null; - byte what = (byte) interesting; - - int found = -1; - for (int k = bufferIndex; k < bufferLast; k++) { - if (buffer[k] == what) { - found = k; - break; - } - } - if (found == -1) return null; - - int length = found - bufferIndex + 1; - byte outgoing[] = new byte[length]; - System.arraycopy(buffer, bufferIndex, outgoing, 0, length); - - bufferIndex = 0; // rewind - bufferLast = 0; - return outgoing; - } - - - /** - * Reads from the serial port into a buffer of bytes until a - * particular character. If the character isn't in the serial - * buffer, then 'null' is returned. - *

    - * If outgoing[] is not big enough, then -1 is returned, - * and an error message is printed on the console. - * If nothing is in the buffer, zero is returned. - * If 'interesting' byte is not in the buffer, then 0 is returned. - */ - public synchronized int readBytesUntil(int interesting, byte outgoing[]) { - if (bufferIndex == bufferLast) return 0; - byte what = (byte) interesting; - - int found = -1; - for (int k = bufferIndex; k < bufferLast; k++) { - if (buffer[k] == what) { - found = k; - break; - } - } - if (found == -1) return 0; - - int length = found - bufferIndex + 1; - if (length > outgoing.length) { - System.err.println( - I18n.format( - _("readBytesUntil() byte buffer is too small for the {0}" + - " bytes up to and including char {1}"), - length, - interesting - ) - ); - return -1; - } - //byte outgoing[] = new byte[length]; - System.arraycopy(buffer, bufferIndex, outgoing, 0, length); - - bufferIndex += length; - if (bufferIndex == bufferLast) { - bufferIndex = 0; // rewind - bufferLast = 0; - } - return length; - } - - - /** - * Return whatever has been read from the serial port so far - * as a String. It assumes that the incoming characters are ASCII. - *

    - * If you want to move Unicode data, you can first convert the - * String to a byte stream in the representation of your choice - * (i.e. UTF8 or two-byte Unicode data), and send it as a byte array. - */ - public synchronized String readString() { - if (bufferIndex == bufferLast) return null; - return new String(readBytes()); - } - - - /** - * Combination of readBytesUntil and readString. See caveats in - * each function. Returns null if it still hasn't found what - * you're looking for. - *

    - * If you want to move Unicode data, you can first convert the - * String to a byte stream in the representation of your choice - * (i.e. UTF8 or two-byte Unicode data), and send it as a byte array. - */ - public synchronized String readStringUntil(int interesting) { - byte b[] = readBytesUntil(interesting); - if (b == null) return null; - return new String(b); - } - /** * This will handle both ints, bytes and chars transparently. From 76280e87789c96f1c3ba8e283410fefbec3209f7 Mon Sep 17 00:00:00 2001 From: Collin Kidder Date: Wed, 31 Dec 2014 08:42:26 -0500 Subject: [PATCH 110/148] Correct an issue where write could send data out of order. --- hardware/arduino/sam/cores/arduino/UARTClass.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hardware/arduino/sam/cores/arduino/UARTClass.cpp b/hardware/arduino/sam/cores/arduino/UARTClass.cpp index 6ff9d932f..b6a0629da 100644 --- a/hardware/arduino/sam/cores/arduino/UARTClass.cpp +++ b/hardware/arduino/sam/cores/arduino/UARTClass.cpp @@ -141,7 +141,7 @@ void UARTClass::flush( void ) size_t UARTClass::write( const uint8_t uc_data ) { - if ((_pUart->UART_SR & UART_SR_TXRDY) != UART_SR_TXRDY) //is the hardware currently busy? + if (((_pUart->UART_SR & UART_SR_TXRDY) != UART_SR_TXRDY) | (_tx_buffer->_iTail != _tx_buffer->_iHead)) //is the hardware currently busy? { //if busy we buffer unsigned int l = (_tx_buffer->_iHead + 1) % SERIAL_BUFFER_SIZE; From 0d9997b8cf717714e5cf24a31a47137768538568 Mon Sep 17 00:00:00 2001 From: Federico Fissore Date: Fri, 2 Jan 2015 14:08:21 +0100 Subject: [PATCH 111/148] gitignore: ignoring all archives for win and mac --- .gitignore | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 7f1f6b6fd..9a2f56075 100644 --- a/.gitignore +++ b/.gitignore @@ -15,15 +15,18 @@ hardware/arduino/bootloaders/caterina_LUFA/Caterina.eep hardware/arduino/bootloaders/caterina_LUFA/.dep/ build/libastylej-*.zip build/windows/work/ -build/windows/jre.zip +build/windows/*.zip +build/windows/*.tgz build/windows/libastylej* build/windows/arduino-*.zip -build/windows/dist/gcc-*.tar.gz +build/windows/dist/*.tar.gz +build/windows/dist/*.tar.bz2 build/windows/launch4j-* build/windows/launcher/launch4j build/windows/WinAVR-*.zip build/macosx/arduino-*.zip -build/macosx/dist/gcc-*.tar.gz +build/macosx/dist/*.tar.gz +build/macosx/dist/*.tar.bz2 build/macosx/libastylej* build/macosx/appbundler*.jar build/linux/work/ From cabfd8ed21d43eab067bace33302d47067473e46 Mon Sep 17 00:00:00 2001 From: Collin Kidder Date: Sun, 4 Jan 2015 13:37:28 -0500 Subject: [PATCH 112/148] Fixed flush so that it actually is sure to flush all outstanding data. --- hardware/arduino/sam/cores/arduino/UARTClass.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/hardware/arduino/sam/cores/arduino/UARTClass.cpp b/hardware/arduino/sam/cores/arduino/UARTClass.cpp index b6a0629da..0dc74fa2f 100644 --- a/hardware/arduino/sam/cores/arduino/UARTClass.cpp +++ b/hardware/arduino/sam/cores/arduino/UARTClass.cpp @@ -79,14 +79,12 @@ void UARTClass::end( void ) // clear any received data _rx_buffer->_iHead = _rx_buffer->_iTail ; - while (_tx_buffer->_iHead != _tx_buffer->_iTail); //wait for transmit data to be sent + // Wait for any outstanding data to be sent + flush(); // Disable UART interrupt in NVIC NVIC_DisableIRQ( _dwIrq ) ; - // Wait for any outstanding data to be sent - flush(); - pmc_disable_periph_clk( _dwId ) ; } @@ -134,6 +132,7 @@ int UARTClass::read( void ) void UARTClass::flush( void ) { + while (_tx_buffer->_iHead != _tx_buffer->_iTail); //wait for transmit data to be sent // Wait for transmission to complete while ((_pUart->UART_SR & UART_SR_TXRDY) != UART_SR_TXRDY) ; From 1c5ea40427e5437a380aba2b3dbe39a439e4cc53 Mon Sep 17 00:00:00 2001 From: Federico Fissore Date: Mon, 5 Jan 2015 10:11:18 +0100 Subject: [PATCH 113/148] Linux: using lzma as compression algorithm, halves dist file size --- build/build.xml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/build/build.xml b/build/build.xml index 3b5b42980..6528e5cc9 100644 --- a/build/build.xml +++ b/build/build.xml @@ -588,7 +588,7 @@ + description="Build .tar.xz of linux version"> From 16d836108ff9d33336b9318492515f1a683df447 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Mon, 29 Dec 2014 17:27:43 +0100 Subject: [PATCH 114/148] sam: fix code format and indent in UART/USART class --- .../arduino/sam/cores/arduino/UARTClass.cpp | 102 +++++++++--------- .../arduino/sam/cores/arduino/UARTClass.h | 42 ++++---- .../arduino/sam/cores/arduino/USARTClass.cpp | 19 ++-- .../arduino/sam/cores/arduino/USARTClass.h | 22 ++-- 4 files changed, 94 insertions(+), 91 deletions(-) diff --git a/hardware/arduino/sam/cores/arduino/UARTClass.cpp b/hardware/arduino/sam/cores/arduino/UARTClass.cpp index 0dc74fa2f..22ec20abb 100644 --- a/hardware/arduino/sam/cores/arduino/UARTClass.cpp +++ b/hardware/arduino/sam/cores/arduino/UARTClass.cpp @@ -25,39 +25,37 @@ UARTClass::UARTClass( Uart *pUart, IRQn_Type dwIrq, uint32_t dwId, RingBuffer *pRx_buffer, RingBuffer *pTx_buffer ) { - _rx_buffer = pRx_buffer ; + _rx_buffer = pRx_buffer; _tx_buffer = pTx_buffer; - _pUart=pUart ; - _dwIrq=dwIrq ; - _dwId=dwId ; + _pUart=pUart; + _dwIrq=dwIrq; + _dwId=dwId; } // Public Methods ////////////////////////////////////////////////////////////// - - void UARTClass::begin( const uint32_t dwBaudRate ) { - begin( dwBaudRate, UART_MR_PAR_NO | UART_MR_CHMODE_NORMAL ); + begin( dwBaudRate, UART_MR_PAR_NO | UART_MR_CHMODE_NORMAL ); } void UARTClass::begin( const uint32_t dwBaudRate, const uint32_t config ) { // Configure PMC - pmc_enable_periph_clk( _dwId ) ; + pmc_enable_periph_clk( _dwId ); // Disable PDC channel - _pUart->UART_PTCR = UART_PTCR_RXTDIS | UART_PTCR_TXTDIS ; + _pUart->UART_PTCR = UART_PTCR_RXTDIS | UART_PTCR_TXTDIS; // Reset and disable receiver and transmitter - _pUart->UART_CR = UART_CR_RSTRX | UART_CR_RSTTX | UART_CR_RXDIS | UART_CR_TXDIS ; + _pUart->UART_CR = UART_CR_RSTRX | UART_CR_RSTTX | UART_CR_RXDIS | UART_CR_TXDIS; // Configure mode - _pUart->UART_MR = config ; + _pUart->UART_MR = config; // Configure baudrate (asynchronous, no oversampling) - _pUart->UART_BRGR = (SystemCoreClock / dwBaudRate) >> 4 ; + _pUart->UART_BRGR = (SystemCoreClock / dwBaudRate) >> 4; // Configure interrupts _pUart->UART_IDR = 0xFFFFFFFF; @@ -66,41 +64,41 @@ void UARTClass::begin( const uint32_t dwBaudRate, const uint32_t config ) // Enable UART interrupt in NVIC NVIC_EnableIRQ(_dwIrq); - //make sure both ring buffers are initialized back to empty. + // Make sure both ring buffers are initialized back to empty. _rx_buffer->_iHead = _rx_buffer->_iTail = 0; _tx_buffer->_iHead = _tx_buffer->_iTail = 0; // Enable receiver and transmitter - _pUart->UART_CR = UART_CR_RXEN | UART_CR_TXEN ; + _pUart->UART_CR = UART_CR_RXEN | UART_CR_TXEN; } void UARTClass::end( void ) { - // clear any received data - _rx_buffer->_iHead = _rx_buffer->_iTail ; + // Clear any received data + _rx_buffer->_iHead = _rx_buffer->_iTail; // Wait for any outstanding data to be sent flush(); // Disable UART interrupt in NVIC - NVIC_DisableIRQ( _dwIrq ) ; + NVIC_DisableIRQ( _dwIrq ); - pmc_disable_periph_clk( _dwId ) ; + pmc_disable_periph_clk( _dwId ); } void UARTClass::setInterruptPriority(uint32_t priority) { - NVIC_SetPriority(_dwIrq, priority & 0x0F); + NVIC_SetPriority(_dwIrq, priority & 0x0F); } uint32_t UARTClass::getInterruptPriority() { - return NVIC_GetPriority(_dwIrq); + return NVIC_GetPriority(_dwIrq); } int UARTClass::available( void ) { - return (uint32_t)(SERIAL_BUFFER_SIZE + _rx_buffer->_iHead - _rx_buffer->_iTail) % SERIAL_BUFFER_SIZE ; + return (uint32_t)(SERIAL_BUFFER_SIZE + _rx_buffer->_iHead - _rx_buffer->_iTail) % SERIAL_BUFFER_SIZE; } int UARTClass::availableForWrite(void) @@ -114,20 +112,20 @@ int UARTClass::availableForWrite(void) int UARTClass::peek( void ) { if ( _rx_buffer->_iHead == _rx_buffer->_iTail ) - return -1 ; + return -1; - return _rx_buffer->_aucBuffer[_rx_buffer->_iTail] ; + return _rx_buffer->_aucBuffer[_rx_buffer->_iTail]; } int UARTClass::read( void ) { // if the head isn't ahead of the tail, we don't have any characters if ( _rx_buffer->_iHead == _rx_buffer->_iTail ) - return -1 ; + return -1; - uint8_t uc = _rx_buffer->_aucBuffer[_rx_buffer->_iTail] ; - _rx_buffer->_iTail = (unsigned int)(_rx_buffer->_iTail + 1) % SERIAL_BUFFER_SIZE ; - return uc ; + uint8_t uc = _rx_buffer->_aucBuffer[_rx_buffer->_iTail]; + _rx_buffer->_iTail = (unsigned int)(_rx_buffer->_iTail + 1) % SERIAL_BUFFER_SIZE; + return uc; } void UARTClass::flush( void ) @@ -135,25 +133,29 @@ void UARTClass::flush( void ) while (_tx_buffer->_iHead != _tx_buffer->_iTail); //wait for transmit data to be sent // Wait for transmission to complete while ((_pUart->UART_SR & UART_SR_TXRDY) != UART_SR_TXRDY) - ; + ; } size_t UARTClass::write( const uint8_t uc_data ) { - if (((_pUart->UART_SR & UART_SR_TXRDY) != UART_SR_TXRDY) | (_tx_buffer->_iTail != _tx_buffer->_iHead)) //is the hardware currently busy? + // Is the hardware currently busy? + if (((_pUart->UART_SR & UART_SR_TXRDY) != UART_SR_TXRDY) | + (_tx_buffer->_iTail != _tx_buffer->_iHead)) { - //if busy we buffer - unsigned int l = (_tx_buffer->_iHead + 1) % SERIAL_BUFFER_SIZE; - while (_tx_buffer->_iTail == l); //spin locks if we're about to overwrite the buffer. This continues once the data is sent + // If busy we buffer + unsigned int l = (_tx_buffer->_iHead + 1) % SERIAL_BUFFER_SIZE; + while (_tx_buffer->_iTail == l) + ; // Spin locks if we're about to overwrite the buffer. This continues once the data is sent - _tx_buffer->_aucBuffer[_tx_buffer->_iHead] = uc_data; - _tx_buffer->_iHead = l; - _pUart->UART_IER = UART_IER_TXRDY; //make sure TX interrupt is enabled + _tx_buffer->_aucBuffer[_tx_buffer->_iHead] = uc_data; + _tx_buffer->_iHead = l; + // Make sure TX interrupt is enabled + _pUart->UART_IER = UART_IER_TXRDY; } else { - // Send character - _pUart->UART_THR = uc_data ; + // Bypass buffering and send character directly + _pUart->UART_THR = uc_data; } return 1; } @@ -162,28 +164,28 @@ void UARTClass::IrqHandler( void ) { uint32_t status = _pUart->UART_SR; - // Did we receive data ? + // Did we receive data? if ((status & UART_SR_RXRDY) == UART_SR_RXRDY) _rx_buffer->store_char(_pUart->UART_RHR); - //Do we need to keep sending data? + // Do we need to keep sending data? if ((status & UART_SR_TXRDY) == UART_SR_TXRDY) { - if (_tx_buffer->_iTail != _tx_buffer->_iHead) { //just in case - _pUart->UART_THR = _tx_buffer->_aucBuffer[_tx_buffer->_iTail]; - _tx_buffer->_iTail = (unsigned int)(_tx_buffer->_iTail + 1) % SERIAL_BUFFER_SIZE; - } - else - { - _pUart->UART_IDR = UART_IDR_TXRDY; //mask off transmit interrupt so we don't get it anymore - } + if (_tx_buffer->_iTail != _tx_buffer->_iHead) { + _pUart->UART_THR = _tx_buffer->_aucBuffer[_tx_buffer->_iTail]; + _tx_buffer->_iTail = (unsigned int)(_tx_buffer->_iTail + 1) % SERIAL_BUFFER_SIZE; + } + else + { + // Mask off transmit interrupt so we don't get it anymore + _pUart->UART_IDR = UART_IDR_TXRDY; + } } // Acknowledge errors - if ((status & UART_SR_OVRE) == UART_SR_OVRE || - (status & UART_SR_FRAME) == UART_SR_FRAME) + if ((status & UART_SR_OVRE) == UART_SR_OVRE || (status & UART_SR_FRAME) == UART_SR_FRAME) { - // TODO: error reporting outside ISR + // TODO: error reporting outside ISR _pUart->UART_CR |= UART_CR_RSTSTA; } } diff --git a/hardware/arduino/sam/cores/arduino/UARTClass.h b/hardware/arduino/sam/cores/arduino/UARTClass.h index b60fae3d0..7cb5ba7f1 100644 --- a/hardware/arduino/sam/cores/arduino/UARTClass.h +++ b/hardware/arduino/sam/cores/arduino/UARTClass.h @@ -28,36 +28,36 @@ class UARTClass : public HardwareSerial { protected: - RingBuffer *_rx_buffer ; - RingBuffer *_tx_buffer; + RingBuffer *_rx_buffer; + RingBuffer *_tx_buffer; protected: - Uart* _pUart ; - IRQn_Type _dwIrq ; - uint32_t _dwId ; + Uart* _pUart; + IRQn_Type _dwIrq; + uint32_t _dwId; public: - UARTClass( Uart* pUart, IRQn_Type dwIrq, uint32_t dwId, RingBuffer* pRx_buffer, RingBuffer* pTx_buffer) ; + UARTClass(Uart* pUart, IRQn_Type dwIrq, uint32_t dwId, RingBuffer* pRx_buffer, RingBuffer* pTx_buffer); - void begin( const uint32_t dwBaudRate ) ; - void begin( const uint32_t dwBaudRate , const uint32_t config ) ; - void end( void ) ; - int available( void ) ; - int availableForWrite(void); - int peek( void ) ; - int read( void ) ; - void flush( void ) ; - size_t write( const uint8_t c ) ; - void setInterruptPriority(uint32_t priority); - uint32_t getInterruptPriority(); + void begin(const uint32_t dwBaudRate); + void begin(const uint32_t dwBaudRate, const uint32_t config); + void end(void); + int available(void); + int availableForWrite(void); + int peek(void); + int read(void); + void flush(void); + size_t write(const uint8_t c); + void setInterruptPriority(uint32_t priority); + uint32_t getInterruptPriority(); - void IrqHandler( void ) ; + void IrqHandler( void ); #if defined __GNUC__ /* GCC CS3 */ - using Print::write ; // pull in write(str) and write(buf, size) from Print + using Print::write; // pull in write(str) and write(buf, size) from Print #elif defined __ICCARM__ /* IAR Ewarm 5.41+ */ -// virtual void write( const char *str ) ; -// virtual void write( const uint8_t *buffer, size_t size ) ; +// virtual void write( const char *str ); +// virtual void write( const uint8_t *buffer, size_t size ); #endif operator bool() { return true; }; // UART always active diff --git a/hardware/arduino/sam/cores/arduino/USARTClass.cpp b/hardware/arduino/sam/cores/arduino/USARTClass.cpp index 310e5680b..1f901626d 100644 --- a/hardware/arduino/sam/cores/arduino/USARTClass.cpp +++ b/hardware/arduino/sam/cores/arduino/USARTClass.cpp @@ -23,41 +23,42 @@ // Constructors //////////////////////////////////////////////////////////////// -USARTClass::USARTClass( Usart* pUsart, IRQn_Type dwIrq, uint32_t dwId, RingBuffer* pRx_buffer, RingBuffer* pTx_buffer ) : UARTClass((Uart*)pUsart, dwIrq, dwId, pRx_buffer, pTx_buffer) +USARTClass::USARTClass( Usart* pUsart, IRQn_Type dwIrq, uint32_t dwId, RingBuffer* pRx_buffer, RingBuffer* pTx_buffer ) + : UARTClass((Uart*)pUsart, dwIrq, dwId, pRx_buffer, pTx_buffer) { - - _pUsart=pUsart ; //In case anyone needs USART specific functionality in the future + // In case anyone needs USART specific functionality in the future + _pUsart=pUsart; } // Public Methods ////////////////////////////////////////////////////////////// void USARTClass::begin( const uint32_t dwBaudRate ) { - begin( dwBaudRate, SERIAL_8N1 ); + begin( dwBaudRate, SERIAL_8N1 ); } void USARTClass::begin( const uint32_t dwBaudRate, const uint32_t config ) { - UARTClass::begin(dwBaudRate, config); + UARTClass::begin(dwBaudRate, config); } void USARTClass::end( void ) { - UARTClass::end(); + UARTClass::end(); } void USARTClass::flush( void ) { - UARTClass::flush(); + UARTClass::flush(); } size_t USARTClass::write( const uint8_t uc_data ) { - return UARTClass::write(uc_data); + return UARTClass::write(uc_data); } void USARTClass::IrqHandler( void ) { - UARTClass::IrqHandler(); + UARTClass::IrqHandler(); } diff --git a/hardware/arduino/sam/cores/arduino/USARTClass.h b/hardware/arduino/sam/cores/arduino/USARTClass.h index 53fee41d8..3ac4cceef 100644 --- a/hardware/arduino/sam/cores/arduino/USARTClass.h +++ b/hardware/arduino/sam/cores/arduino/USARTClass.h @@ -59,24 +59,24 @@ class USARTClass : public UARTClass { protected: - Usart* _pUsart ; + Usart* _pUsart; public: - USARTClass( Usart* pUsart, IRQn_Type dwIrq, uint32_t dwId, RingBuffer* pRx_buffer, RingBuffer* pTx_buffer ) ; + USARTClass( Usart* pUsart, IRQn_Type dwIrq, uint32_t dwId, RingBuffer* pRx_buffer, RingBuffer* pTx_buffer ); - void begin( const uint32_t dwBaudRate ) ; - void begin( const uint32_t dwBaudRate , const uint32_t config ) ; - void end( void ) ; - void flush( void ) ; - size_t write( const uint8_t c ) ; + void begin( const uint32_t dwBaudRate ); + void begin( const uint32_t dwBaudRate , const uint32_t config ); + void end( void ); + void flush( void ); + size_t write( const uint8_t c ); - void IrqHandler( void ) ; + void IrqHandler( void ); #if defined __GNUC__ /* GCC CS3 */ - using Print::write ; // pull in write(str) and write(buf, size) from Print + using Print::write; // pull in write(str) and write(buf, size) from Print #elif defined __ICCARM__ /* IAR Ewarm 5.41+ */ -// virtual void write( const char *str ) ; -// virtual void write( const uint8_t *buffer, size_t size ) ; +// virtual void write( const char *str ); +// virtual void write( const uint8_t *buffer, size_t size ); #endif operator bool() { return true; }; // USART always active From 37ea166e1999e57eee6835786d3310c7ef8f2ec3 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Mon, 29 Dec 2014 17:57:41 +0100 Subject: [PATCH 115/148] sam: refined UART/USART class inheritance Let Usart inherit all methods from Uart. --- .../arduino/sam/cores/arduino/UARTClass.h | 11 +++----- .../arduino/sam/cores/arduino/USARTClass.cpp | 25 ------------------- .../arduino/sam/cores/arduino/USARTClass.h | 16 +----------- 3 files changed, 4 insertions(+), 48 deletions(-) diff --git a/hardware/arduino/sam/cores/arduino/UARTClass.h b/hardware/arduino/sam/cores/arduino/UARTClass.h index 7cb5ba7f1..1bc223d80 100644 --- a/hardware/arduino/sam/cores/arduino/UARTClass.h +++ b/hardware/arduino/sam/cores/arduino/UARTClass.h @@ -48,17 +48,12 @@ class UARTClass : public HardwareSerial int read(void); void flush(void); size_t write(const uint8_t c); + using Print::write; // pull in write(str) and write(buf, size) from Print + void setInterruptPriority(uint32_t priority); uint32_t getInterruptPriority(); - void IrqHandler( void ); - -#if defined __GNUC__ /* GCC CS3 */ - using Print::write; // pull in write(str) and write(buf, size) from Print -#elif defined __ICCARM__ /* IAR Ewarm 5.41+ */ -// virtual void write( const char *str ); -// virtual void write( const uint8_t *buffer, size_t size ); -#endif + void IrqHandler(void); operator bool() { return true; }; // UART always active }; diff --git a/hardware/arduino/sam/cores/arduino/USARTClass.cpp b/hardware/arduino/sam/cores/arduino/USARTClass.cpp index 1f901626d..9fcfa30a6 100644 --- a/hardware/arduino/sam/cores/arduino/USARTClass.cpp +++ b/hardware/arduino/sam/cores/arduino/USARTClass.cpp @@ -32,33 +32,8 @@ USARTClass::USARTClass( Usart* pUsart, IRQn_Type dwIrq, uint32_t dwId, RingBuffe // Public Methods ////////////////////////////////////////////////////////////// -void USARTClass::begin( const uint32_t dwBaudRate ) -{ - begin( dwBaudRate, SERIAL_8N1 ); -} - void USARTClass::begin( const uint32_t dwBaudRate, const uint32_t config ) { UARTClass::begin(dwBaudRate, config); } -void USARTClass::end( void ) -{ - UARTClass::end(); -} - -void USARTClass::flush( void ) -{ - UARTClass::flush(); -} - -size_t USARTClass::write( const uint8_t uc_data ) -{ - return UARTClass::write(uc_data); -} - -void USARTClass::IrqHandler( void ) -{ - UARTClass::IrqHandler(); -} - diff --git a/hardware/arduino/sam/cores/arduino/USARTClass.h b/hardware/arduino/sam/cores/arduino/USARTClass.h index 3ac4cceef..235f54910 100644 --- a/hardware/arduino/sam/cores/arduino/USARTClass.h +++ b/hardware/arduino/sam/cores/arduino/USARTClass.h @@ -64,22 +64,8 @@ class USARTClass : public UARTClass public: USARTClass( Usart* pUsart, IRQn_Type dwIrq, uint32_t dwId, RingBuffer* pRx_buffer, RingBuffer* pTx_buffer ); - void begin( const uint32_t dwBaudRate ); void begin( const uint32_t dwBaudRate , const uint32_t config ); - void end( void ); - void flush( void ); - size_t write( const uint8_t c ); - - void IrqHandler( void ); - -#if defined __GNUC__ /* GCC CS3 */ - using Print::write; // pull in write(str) and write(buf, size) from Print -#elif defined __ICCARM__ /* IAR Ewarm 5.41+ */ -// virtual void write( const char *str ); -// virtual void write( const uint8_t *buffer, size_t size ); -#endif - - operator bool() { return true; }; // USART always active + using UARTClass::begin; // Needed only for polymorphic methods }; #endif // _USART_CLASS_ From 5e97168fbccf5287845c0eb7fd25c89588cda6cd Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Mon, 5 Jan 2015 15:24:30 +0100 Subject: [PATCH 116/148] sam: USART modes now fails if used on UART --- .../arduino/sam/cores/arduino/UARTClass.cpp | 11 ++- .../arduino/sam/cores/arduino/UARTClass.h | 37 +++++++--- .../arduino/sam/cores/arduino/USARTClass.cpp | 4 +- .../arduino/sam/cores/arduino/USARTClass.h | 71 +++++++++++-------- 4 files changed, 78 insertions(+), 45 deletions(-) diff --git a/hardware/arduino/sam/cores/arduino/UARTClass.cpp b/hardware/arduino/sam/cores/arduino/UARTClass.cpp index 22ec20abb..c81af2cac 100644 --- a/hardware/arduino/sam/cores/arduino/UARTClass.cpp +++ b/hardware/arduino/sam/cores/arduino/UARTClass.cpp @@ -37,10 +37,15 @@ UARTClass::UARTClass( Uart *pUart, IRQn_Type dwIrq, uint32_t dwId, RingBuffer *p void UARTClass::begin( const uint32_t dwBaudRate ) { - begin( dwBaudRate, UART_MR_PAR_NO | UART_MR_CHMODE_NORMAL ); + begin(dwBaudRate, Mode_8N1); } -void UARTClass::begin( const uint32_t dwBaudRate, const uint32_t config ) +void UARTClass::begin(const uint32_t dwBaudRate, const UARTModes config) +{ + init(dwBaudRate, static_cast(config)); +} + +void UARTClass::init(const uint32_t dwBaudRate, const uint32_t config) { // Configure PMC pmc_enable_periph_clk( _dwId ); @@ -52,7 +57,7 @@ void UARTClass::begin( const uint32_t dwBaudRate, const uint32_t config ) _pUart->UART_CR = UART_CR_RSTRX | UART_CR_RSTTX | UART_CR_RXDIS | UART_CR_TXDIS; // Configure mode - _pUart->UART_MR = config; + _pUart->UART_MR = config | US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHMODE_NORMAL; // Configure baudrate (asynchronous, no oversampling) _pUart->UART_BRGR = (SystemCoreClock / dwBaudRate) >> 4; diff --git a/hardware/arduino/sam/cores/arduino/UARTClass.h b/hardware/arduino/sam/cores/arduino/UARTClass.h index 1bc223d80..45dc5197d 100644 --- a/hardware/arduino/sam/cores/arduino/UARTClass.h +++ b/hardware/arduino/sam/cores/arduino/UARTClass.h @@ -25,22 +25,28 @@ // Includes Atmel CMSIS #include +#define SERIAL_8N1 UARTClass::Mode_8N1 +#define SERIAL_8N2 UARTClass::Mode_8N2 +#define SERIAL_8E1 UARTClass::Mode_8E1 +#define SERIAL_8E2 UARTClass::Mode_8E2 +#define SERIAL_8O1 UARTClass::Mode_8O1 +#define SERIAL_8O2 UARTClass::Mode_8O2 + class UARTClass : public HardwareSerial { - protected: - RingBuffer *_rx_buffer; - RingBuffer *_tx_buffer; - - protected: - Uart* _pUart; - IRQn_Type _dwIrq; - uint32_t _dwId; - public: + enum UARTModes { + Mode_8N1 = US_MR_CHRL_8_BIT | US_MR_PAR_NO | US_MR_NBSTOP_1_BIT, + Mode_8N2 = US_MR_CHRL_8_BIT | US_MR_PAR_NO | US_MR_NBSTOP_2_BIT, + Mode_8E1 = US_MR_CHRL_8_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_1_BIT, + Mode_8E2 = US_MR_CHRL_8_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_2_BIT, + Mode_8O1 = US_MR_CHRL_8_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_1_BIT, + Mode_8O2 = US_MR_CHRL_8_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_2_BIT, + }; UARTClass(Uart* pUart, IRQn_Type dwIrq, uint32_t dwId, RingBuffer* pRx_buffer, RingBuffer* pTx_buffer); void begin(const uint32_t dwBaudRate); - void begin(const uint32_t dwBaudRate, const uint32_t config); + void begin(const uint32_t dwBaudRate, const UARTModes config); void end(void); int available(void); int availableForWrite(void); @@ -56,6 +62,17 @@ class UARTClass : public HardwareSerial void IrqHandler(void); operator bool() { return true; }; // UART always active + + protected: + void init(const uint32_t dwBaudRate, const uint32_t config); + + RingBuffer *_rx_buffer; + RingBuffer *_tx_buffer; + + Uart* _pUart; + IRQn_Type _dwIrq; + uint32_t _dwId; + }; #endif // _UART_CLASS_ diff --git a/hardware/arduino/sam/cores/arduino/USARTClass.cpp b/hardware/arduino/sam/cores/arduino/USARTClass.cpp index 9fcfa30a6..428ac39ed 100644 --- a/hardware/arduino/sam/cores/arduino/USARTClass.cpp +++ b/hardware/arduino/sam/cores/arduino/USARTClass.cpp @@ -32,8 +32,8 @@ USARTClass::USARTClass( Usart* pUsart, IRQn_Type dwIrq, uint32_t dwId, RingBuffe // Public Methods ////////////////////////////////////////////////////////////// -void USARTClass::begin( const uint32_t dwBaudRate, const uint32_t config ) +void USARTClass::begin( const uint32_t dwBaudRate, const USARTModes config ) { - UARTClass::begin(dwBaudRate, config); + UARTClass::init(dwBaudRate, static_cast(config)); } diff --git a/hardware/arduino/sam/cores/arduino/USARTClass.h b/hardware/arduino/sam/cores/arduino/USARTClass.h index 235f54910..27152318c 100644 --- a/hardware/arduino/sam/cores/arduino/USARTClass.h +++ b/hardware/arduino/sam/cores/arduino/USARTClass.h @@ -26,35 +26,24 @@ #include // Define config for Serial.begin(baud, config); -#define SERIAL_5N1 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_5_BIT | US_MR_PAR_NO | US_MR_NBSTOP_1_BIT | US_MR_CHMODE_NORMAL) -#define SERIAL_6N1 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_6_BIT | US_MR_PAR_NO | US_MR_NBSTOP_1_BIT | US_MR_CHMODE_NORMAL) -#define SERIAL_7N1 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_7_BIT | US_MR_PAR_NO | US_MR_NBSTOP_1_BIT | US_MR_CHMODE_NORMAL) -#define SERIAL_8N1 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_8_BIT | US_MR_PAR_NO | US_MR_NBSTOP_1_BIT | US_MR_CHMODE_NORMAL) - -#define SERIAL_5N2 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_5_BIT | US_MR_PAR_NO | US_MR_NBSTOP_2_BIT | US_MR_CHMODE_NORMAL) -#define SERIAL_6N2 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_6_BIT | US_MR_PAR_NO | US_MR_NBSTOP_2_BIT | US_MR_CHMODE_NORMAL) -#define SERIAL_7N2 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_7_BIT | US_MR_PAR_NO | US_MR_NBSTOP_2_BIT | US_MR_CHMODE_NORMAL) -#define SERIAL_8N2 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_8_BIT | US_MR_PAR_NO | US_MR_NBSTOP_2_BIT | US_MR_CHMODE_NORMAL) - -#define SERIAL_5E1 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_5_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_1_BIT | US_MR_CHMODE_NORMAL) -#define SERIAL_6E1 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_6_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_1_BIT | US_MR_CHMODE_NORMAL) -#define SERIAL_7E1 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_7_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_1_BIT | US_MR_CHMODE_NORMAL) -#define SERIAL_8E1 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_8_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_1_BIT | US_MR_CHMODE_NORMAL) - -#define SERIAL_5E2 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_5_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_2_BIT | US_MR_CHMODE_NORMAL) -#define SERIAL_6E2 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_6_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_2_BIT | US_MR_CHMODE_NORMAL) -#define SERIAL_7E2 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_7_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_2_BIT | US_MR_CHMODE_NORMAL) -#define SERIAL_8E2 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_8_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_2_BIT | US_MR_CHMODE_NORMAL) - -#define SERIAL_5O1 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_5_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_1_BIT | US_MR_CHMODE_NORMAL) -#define SERIAL_6O1 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_6_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_1_BIT | US_MR_CHMODE_NORMAL) -#define SERIAL_7O1 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_7_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_1_BIT | US_MR_CHMODE_NORMAL) -#define SERIAL_8O1 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_8_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_1_BIT | US_MR_CHMODE_NORMAL) - -#define SERIAL_5O2 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_5_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_2_BIT | US_MR_CHMODE_NORMAL) -#define SERIAL_6O2 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_6_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_2_BIT | US_MR_CHMODE_NORMAL) -#define SERIAL_7O2 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_7_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_2_BIT | US_MR_CHMODE_NORMAL) -#define SERIAL_8O2 (US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHRL_8_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_2_BIT | US_MR_CHMODE_NORMAL) +#define SERIAL_5N1 USARTClass::Mode_5N1 +#define SERIAL_6N1 USARTClass::Mode_6N1 +#define SERIAL_7N1 USARTClass::Mode_7N1 +#define SERIAL_5N2 USARTClass::Mode_5N2 +#define SERIAL_6N2 USARTClass::Mode_6N2 +#define SERIAL_7N2 USARTClass::Mode_7N2 +#define SERIAL_5E1 USARTClass::Mode_5E1 +#define SERIAL_6E1 USARTClass::Mode_6E1 +#define SERIAL_7E1 USARTClass::Mode_7E1 +#define SERIAL_5E2 USARTClass::Mode_5E2 +#define SERIAL_6E2 USARTClass::Mode_6E2 +#define SERIAL_7E2 USARTClass::Mode_7E2 +#define SERIAL_5O1 USARTClass::Mode_5O1 +#define SERIAL_6O1 USARTClass::Mode_6O1 +#define SERIAL_7O1 USARTClass::Mode_7O1 +#define SERIAL_5O2 USARTClass::Mode_5O2 +#define SERIAL_6O2 USARTClass::Mode_6O2 +#define SERIAL_7O2 USARTClass::Mode_7O2 class USARTClass : public UARTClass { @@ -62,9 +51,31 @@ class USARTClass : public UARTClass Usart* _pUsart; public: + // 8 bit modes are inherited from UARTClass + enum USARTModes { + Mode_5N1 = US_MR_CHRL_5_BIT | US_MR_PAR_NO | US_MR_NBSTOP_1_BIT, + Mode_6N1 = US_MR_CHRL_6_BIT | US_MR_PAR_NO | US_MR_NBSTOP_1_BIT, + Mode_7N1 = US_MR_CHRL_7_BIT | US_MR_PAR_NO | US_MR_NBSTOP_1_BIT, + Mode_5N2 = US_MR_CHRL_5_BIT | US_MR_PAR_NO | US_MR_NBSTOP_2_BIT, + Mode_6N2 = US_MR_CHRL_6_BIT | US_MR_PAR_NO | US_MR_NBSTOP_2_BIT, + Mode_7N2 = US_MR_CHRL_7_BIT | US_MR_PAR_NO | US_MR_NBSTOP_2_BIT, + Mode_5E1 = US_MR_CHRL_5_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_1_BIT, + Mode_6E1 = US_MR_CHRL_6_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_1_BIT, + Mode_7E1 = US_MR_CHRL_7_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_1_BIT, + Mode_5E2 = US_MR_CHRL_5_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_2_BIT, + Mode_6E2 = US_MR_CHRL_6_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_2_BIT, + Mode_7E2 = US_MR_CHRL_7_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_2_BIT, + Mode_5O1 = US_MR_CHRL_5_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_1_BIT, + Mode_6O1 = US_MR_CHRL_6_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_1_BIT, + Mode_7O1 = US_MR_CHRL_7_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_1_BIT, + Mode_5O2 = US_MR_CHRL_5_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_2_BIT, + Mode_6O2 = US_MR_CHRL_6_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_2_BIT, + Mode_7O2 = US_MR_CHRL_7_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_2_BIT, + }; + USARTClass( Usart* pUsart, IRQn_Type dwIrq, uint32_t dwId, RingBuffer* pRx_buffer, RingBuffer* pTx_buffer ); - void begin( const uint32_t dwBaudRate , const uint32_t config ); + void begin( const uint32_t dwBaudRate , const USARTModes config ); using UARTClass::begin; // Needed only for polymorphic methods }; From 20ac20f6295b5bd923144ab6844564f13ddc8ca8 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Wed, 7 Jan 2015 14:56:19 +0100 Subject: [PATCH 117/148] Arduino custom type boolean is now mapped to bool type Fixes #2151 Fixes #2147 --- hardware/arduino/avr/cores/arduino/Arduino.h | 2 +- hardware/arduino/sam/cores/arduino/wiring_constants.h | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/hardware/arduino/avr/cores/arduino/Arduino.h b/hardware/arduino/avr/cores/arduino/Arduino.h index ac775f13c..16dd759b3 100644 --- a/hardware/arduino/avr/cores/arduino/Arduino.h +++ b/hardware/arduino/avr/cores/arduino/Arduino.h @@ -114,7 +114,7 @@ typedef unsigned int word; #define bit(b) (1UL << (b)) -typedef uint8_t boolean; +typedef bool boolean; typedef uint8_t byte; void init(void); diff --git a/hardware/arduino/sam/cores/arduino/wiring_constants.h b/hardware/arduino/sam/cores/arduino/wiring_constants.h index a3cd0d00d..9c39b74a9 100644 --- a/hardware/arduino/sam/cores/arduino/wiring_constants.h +++ b/hardware/arduino/sam/cores/arduino/wiring_constants.h @@ -92,11 +92,9 @@ typedef unsigned int word; #define bit(b) (1UL << (b)) -// TODO: to be checked -typedef uint8_t boolean ; +typedef bool boolean ; typedef uint8_t byte ; - #ifdef __cplusplus } // extern "C" #endif // __cplusplus From 858bd455d720ca7282c8a06e1fb2b8671eef33ca Mon Sep 17 00:00:00 2001 From: wayoda Date: Fri, 7 Nov 2014 11:53:02 +0100 Subject: [PATCH 118/148] Fix layout for Find-Replace dialog --- app/src/processing/app/FindReplace.java | 258 ++++++++++-------------- 1 file changed, 109 insertions(+), 149 deletions(-) diff --git a/app/src/processing/app/FindReplace.java b/app/src/processing/app/FindReplace.java index 26e7a7549..8660ea9fd 100644 --- a/app/src/processing/app/FindReplace.java +++ b/app/src/processing/app/FindReplace.java @@ -50,69 +50,47 @@ import processing.app.helpers.OSUtils; @SuppressWarnings("serial") public class FindReplace extends JFrame implements ActionListener { - static final int EDGE = OSUtils.isMacOS() ? 20 : 13; - static final int SMALL = 6; - static final int BUTTONGAP = 12; // 12 is correct for Mac, other numbers may be required for other platofrms + private Editor editor; - Editor editor; + private JTextField findField; + private JTextField replaceField; + private static String findString; + private static String replaceString; - JTextField findField; - JTextField replaceField; - static String findString; - static String replaceString; + private JButton replaceButton; + private JButton replaceAllButton; + private JButton replaceFindButton; + private JButton previousButton; + private JButton findButton; - JButton replaceButton; - JButton replaceAllButton; - JButton replaceFindButton; - JButton previousButton; - JButton findButton; + private JCheckBox ignoreCaseBox; + private static boolean ignoreCase = true; - JCheckBox ignoreCaseBox; - static boolean ignoreCase = true; + private JCheckBox wrapAroundBox; + private static boolean wrapAround = true; - JCheckBox wrapAroundBox; - static boolean wrapAround = true; - - JCheckBox searchAllFilesBox; - static boolean searchAllFiles = false; + private JCheckBox searchAllFilesBox; + private static boolean searchAllFiles = false; public FindReplace(Editor editor) { - super("Find"); - setResizable(false); + super(_("Find")); this.editor = editor; - FlowLayout searchLayout = new FlowLayout(FlowLayout.RIGHT,5,0); - Container pane = getContentPane(); - pane.setLayout(searchLayout); - JLabel findLabel = new JLabel(_("Find:")); + findField = new JTextField(20); JLabel replaceLabel = new JLabel(_("Replace with:")); - Dimension labelDimension = replaceLabel.getPreferredSize(); - - JPanel find = new JPanel(); - find.add(findLabel); - find.add(findField = new JTextField(20)); - pane.add(find); - - JPanel replace = new JPanel(); - replace.add(replaceLabel); - replace.add(replaceField = new JTextField(20)); - pane.add(replace); - - int fieldHeight = findField.getPreferredSize().height; + replaceField=new JTextField(20); - JPanel checkbox = new JPanel(); - // Fill the findString with selected text if no previous value if (editor.getSelectedText() != null && editor.getSelectedText().length() > 0) findString = editor.getSelectedText(); - if (findString != null) findField.setText(findString); - if (replaceString != null) replaceField.setText(replaceString); - //System.out.println("setting find str to " + findString); - //findField.requestFocusInWindow(); - + if (findString != null) + findField.setText(findString); + if (replaceString != null) + replaceField.setText(replaceString); + ignoreCaseBox = new JCheckBox(_("Ignore Case")); ignoreCaseBox.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { @@ -120,7 +98,6 @@ public class FindReplace extends JFrame implements ActionListener { } }); ignoreCaseBox.setSelected(ignoreCase); - checkbox.add(ignoreCaseBox); wrapAroundBox = new JCheckBox(_("Wrap Around")); wrapAroundBox.addActionListener(new ActionListener() { @@ -129,8 +106,7 @@ public class FindReplace extends JFrame implements ActionListener { } }); wrapAroundBox.setSelected(wrapAround); - checkbox.add(wrapAroundBox); - + searchAllFilesBox = new JCheckBox(_("Search all Sketch Tabs")); searchAllFilesBox.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { @@ -138,119 +114,103 @@ public class FindReplace extends JFrame implements ActionListener { } }); searchAllFilesBox.setSelected(searchAllFiles); - checkbox.add(searchAllFilesBox); - pane.add(checkbox); - - JPanel buttons = new JPanel(); - buttons.setLayout(new FlowLayout(FlowLayout.CENTER, BUTTONGAP, 0)); + JPanel checkboxPanel = new JPanel(); + checkboxPanel.setLayout(new BoxLayout(checkboxPanel, BoxLayout.LINE_AXIS)); + checkboxPanel.add(ignoreCaseBox); + checkboxPanel.add(Box.createRigidArea(new Dimension(8,0))); + checkboxPanel.add(wrapAroundBox); + checkboxPanel.add(Box.createRigidArea(new Dimension(8,0))); + checkboxPanel.add(searchAllFilesBox); - // ordering is different on mac versus pc + replaceAllButton = new JButton(_("Replace All")); + replaceAllButton.addActionListener(this); + replaceButton = new JButton(_("Replace")); + replaceButton.addActionListener(this); + replaceFindButton = new JButton(_("Replace & Find")); + replaceFindButton.addActionListener(this); + previousButton = new JButton(_("Previous")); + previousButton.addActionListener(this); + findButton = new JButton(_("Find")); + findButton.addActionListener(this); + + JPanel buttonPanel = new JPanel(); + buttonPanel.setLayout(new BoxLayout(buttonPanel, BoxLayout.LINE_AXIS)); + // ordering of buttons is different on mac versus pc if (OSUtils.isMacOS()) { - buttons.add(replaceAllButton = new JButton(_("Replace All"))); - buttons.add(replaceButton = new JButton(_("Replace"))); - buttons.add(replaceFindButton = new JButton(_("Replace & Find"))); - buttons.add(previousButton = new JButton(_("Previous"))); - buttons.add(findButton = new JButton(_("Find"))); + buttonPanel.add(replaceAllButton); + buttonPanel.add(Box.createRigidArea(new Dimension(8,0))); + buttonPanel.add(replaceButton); + buttonPanel.add(Box.createRigidArea(new Dimension(8,0))); + buttonPanel.add(replaceFindButton); + buttonPanel.add(Box.createRigidArea(new Dimension(8,0))); + buttonPanel.add(previousButton); + buttonPanel.add(Box.createRigidArea(new Dimension(8,0))); + buttonPanel.add(findButton); } else { - buttons.add(findButton = new JButton(_("Find"))); - buttons.add(previousButton = new JButton(_("Previous"))); // is this the right position for non-Mac? - buttons.add(replaceFindButton = new JButton(_("Replace & Find"))); - buttons.add(replaceButton = new JButton(_("Replace"))); - buttons.add(replaceAllButton = new JButton(_("Replace All"))); + buttonPanel.add(findButton); + buttonPanel.add(Box.createRigidArea(new Dimension(8,0))); + buttonPanel.add(previousButton); // is this the right position for non-Mac? + buttonPanel.add(Box.createRigidArea(new Dimension(8,0))); + buttonPanel.add(replaceFindButton); + buttonPanel.add(Box.createRigidArea(new Dimension(8,0))); + buttonPanel.add(replaceButton); + buttonPanel.add(Box.createRigidArea(new Dimension(8,0))); + buttonPanel.add(replaceAllButton); } - pane.add(buttons); - + // to fix ugliness.. normally macosx java 1.3 puts an // ugly white border around this object, so turn it off. if (OSUtils.isMacOS()) { - buttons.setBorder(null); + buttonPanel.setBorder(null); } - /* - findField.addFocusListener(new FocusListener() { - public void focusGained(FocusEvent e) { - System.out.println("Focus gained " + e.getOppositeComponent()); - } - - public void focusLost(FocusEvent e) { - System.out.println("Focus lost "); // + e.getOppositeComponent()); - if (e.getOppositeComponent() == null) { - requestFocusInWindow(); - } - } - }); - */ - - Dimension buttonsDimension = buttons.getPreferredSize(); - int visibleButtonWidth = buttonsDimension.width - 2 * BUTTONGAP; - int fieldWidth = visibleButtonWidth - (labelDimension.width + SMALL); - - // +1 since it's better to tend downwards - int yoff = (1 + fieldHeight - labelDimension.height) / 2; - - int ypos = EDGE; - - int labelWidth = findLabel.getPreferredSize().width; - findLabel.setBounds(EDGE + (labelDimension.width-labelWidth), ypos + yoff, // + yoff was added to the wrong field - labelWidth, labelDimension.height); - findField.setBounds(EDGE + labelDimension.width + SMALL, ypos, - fieldWidth, fieldHeight); - - ypos += fieldHeight + SMALL; - - labelWidth = replaceLabel.getPreferredSize().width; - replaceLabel.setBounds(EDGE + (labelDimension.width-labelWidth), ypos + yoff, - labelWidth, labelDimension.height); - replaceField.setBounds(EDGE + labelDimension.width + SMALL, ypos, - fieldWidth, fieldHeight); - - ypos += fieldHeight + SMALL; - - ignoreCaseBox.setBounds(EDGE + labelDimension.width + SMALL, - ypos, - (fieldWidth-SMALL)/4, fieldHeight); - - wrapAroundBox.setBounds(EDGE + labelDimension.width + SMALL + (fieldWidth-SMALL)/4 + SMALL, - ypos, - (fieldWidth-SMALL)/4, fieldHeight); - - searchAllFilesBox.setBounds(EDGE + labelDimension.width + SMALL + (int)((fieldWidth-SMALL)/1.9) + SMALL, - ypos, - (fieldWidth-SMALL)/2, fieldHeight); - - ypos += fieldHeight + SMALL; - - buttons.setBounds(EDGE-BUTTONGAP, ypos, - buttonsDimension.width, buttonsDimension.height); - - ypos += buttonsDimension.height; - -// Dimension screen = Toolkit.getDefaultToolkit().getScreenSize(); - - int wide = visibleButtonWidth + EDGE*2; - int high = ypos; // butt.y + butt.height + EDGE*2 + SMALL; + //Put all components onto the dialog window + GridBagLayout searchLayout=new GridBagLayout(); + GridBagConstraints gbc=new GridBagConstraints(); + Container pane = getContentPane(); + pane.setLayout(searchLayout); + + gbc.insets=new Insets(4,4,4,4); + gbc.gridx=0; + gbc.weightx=0.0; + gbc.weighty=0.0; + gbc.fill=GridBagConstraints.NONE; + gbc.anchor=GridBagConstraints.LINE_END; + pane.add(findLabel,gbc); + gbc.gridx=1; + gbc.weightx=1.0; + gbc.fill=GridBagConstraints.HORIZONTAL; + gbc.anchor=GridBagConstraints.LINE_START; + pane.add(findField,gbc); + gbc.gridx=0; + gbc.gridy=1; + gbc.weightx=0.0; + gbc.fill=GridBagConstraints.NONE; + gbc.anchor=GridBagConstraints.LINE_END; + pane.add(replaceLabel,gbc); + gbc.gridx=1; + gbc.weightx=1.0; + gbc.fill=GridBagConstraints.HORIZONTAL; + gbc.anchor=GridBagConstraints.LINE_START; + pane.add(replaceField,gbc); + gbc.gridx=1; + gbc.gridy=2; + gbc.weighty=0.0; + gbc.fill=GridBagConstraints.NONE; + pane.add(checkboxPanel,gbc); + gbc.anchor=GridBagConstraints.CENTER; + gbc.gridwidth=2; + gbc.gridx=0; + gbc.gridy=3; + gbc.insets=new Insets(12,4,4,4); + pane.add(buttonPanel,gbc); pack(); - Insets insets = getInsets(); - //System.out.println("Insets = " + insets); - setSize(wide + insets.left + insets.right,high + insets.top + insets.bottom); - - setLocationRelativeTo( null ); // center - // setBounds((screen.width - wide) / 2, (screen.height - high) / 2, wide, high); - - replaceButton.addActionListener(this); - replaceAllButton.addActionListener(this); - replaceFindButton.addActionListener(this); - findButton.addActionListener(this); - previousButton.addActionListener(this); - - // you mustn't replace what you haven't found, my son - // semantics of replace are "replace the current selection with the replace field" - // so whether we have found before or not is irrelevent - // replaceButton.setEnabled(false); - // replaceFindButton.setEnabled(false); + setResizable(false); + //centers the dialog on thew screen + setLocationRelativeTo( null ); // make the find button the blinky default getRootPane().setDefaultButton(findButton); From 78e098e3d7940c2a846f17c40c41c446122b5aec Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Wed, 7 Jan 2015 16:01:37 +0100 Subject: [PATCH 119/148] Indent pass, no code change --- app/src/processing/app/FindReplace.java | 247 ++++++++++++------------ 1 file changed, 124 insertions(+), 123 deletions(-) diff --git a/app/src/processing/app/FindReplace.java b/app/src/processing/app/FindReplace.java index 8660ea9fd..4c84c0976 100644 --- a/app/src/processing/app/FindReplace.java +++ b/app/src/processing/app/FindReplace.java @@ -79,48 +79,48 @@ public class FindReplace extends JFrame implements ActionListener { JLabel findLabel = new JLabel(_("Find:")); findField = new JTextField(20); JLabel replaceLabel = new JLabel(_("Replace with:")); - replaceField=new JTextField(20); + replaceField = new JTextField(20); // Fill the findString with selected text if no previous value - if (editor.getSelectedText() != null && - editor.getSelectedText().length() > 0) + if (editor.getSelectedText() != null + && editor.getSelectedText().length() > 0) findString = editor.getSelectedText(); - if (findString != null) - findField.setText(findString); - if (replaceString != null) - replaceField.setText(replaceString); - + if (findString != null) + findField.setText(findString); + if (replaceString != null) + replaceField.setText(replaceString); + ignoreCaseBox = new JCheckBox(_("Ignore Case")); ignoreCaseBox.addActionListener(new ActionListener() { - public void actionPerformed(ActionEvent e) { - ignoreCase = ignoreCaseBox.isSelected(); - } - }); + public void actionPerformed(ActionEvent e) { + ignoreCase = ignoreCaseBox.isSelected(); + } + }); ignoreCaseBox.setSelected(ignoreCase); wrapAroundBox = new JCheckBox(_("Wrap Around")); wrapAroundBox.addActionListener(new ActionListener() { - public void actionPerformed(ActionEvent e) { - wrapAround = wrapAroundBox.isSelected(); - } - }); + public void actionPerformed(ActionEvent e) { + wrapAround = wrapAroundBox.isSelected(); + } + }); wrapAroundBox.setSelected(wrapAround); searchAllFilesBox = new JCheckBox(_("Search all Sketch Tabs")); searchAllFilesBox.addActionListener(new ActionListener() { - public void actionPerformed(ActionEvent e) { - searchAllFiles = searchAllFilesBox.isSelected(); - } - }); + public void actionPerformed(ActionEvent e) { + searchAllFiles = searchAllFilesBox.isSelected(); + } + }); searchAllFilesBox.setSelected(searchAllFiles); JPanel checkboxPanel = new JPanel(); - checkboxPanel.setLayout(new BoxLayout(checkboxPanel, BoxLayout.LINE_AXIS)); + checkboxPanel.setLayout(new BoxLayout(checkboxPanel, BoxLayout.LINE_AXIS)); checkboxPanel.add(ignoreCaseBox); - checkboxPanel.add(Box.createRigidArea(new Dimension(8,0))); + checkboxPanel.add(Box.createRigidArea(new Dimension(8, 0))); checkboxPanel.add(wrapAroundBox); - checkboxPanel.add(Box.createRigidArea(new Dimension(8,0))); + checkboxPanel.add(Box.createRigidArea(new Dimension(8, 0))); checkboxPanel.add(searchAllFilesBox); replaceAllButton = new JButton(_("Replace All")); @@ -135,114 +135,115 @@ public class FindReplace extends JFrame implements ActionListener { findButton.addActionListener(this); JPanel buttonPanel = new JPanel(); - buttonPanel.setLayout(new BoxLayout(buttonPanel, BoxLayout.LINE_AXIS)); + buttonPanel.setLayout(new BoxLayout(buttonPanel, BoxLayout.LINE_AXIS)); + // ordering of buttons is different on mac versus pc if (OSUtils.isMacOS()) { buttonPanel.add(replaceAllButton); - buttonPanel.add(Box.createRigidArea(new Dimension(8,0))); + buttonPanel.add(Box.createRigidArea(new Dimension(8, 0))); buttonPanel.add(replaceButton); - buttonPanel.add(Box.createRigidArea(new Dimension(8,0))); + buttonPanel.add(Box.createRigidArea(new Dimension(8, 0))); buttonPanel.add(replaceFindButton); - buttonPanel.add(Box.createRigidArea(new Dimension(8,0))); + buttonPanel.add(Box.createRigidArea(new Dimension(8, 0))); buttonPanel.add(previousButton); - buttonPanel.add(Box.createRigidArea(new Dimension(8,0))); + buttonPanel.add(Box.createRigidArea(new Dimension(8, 0))); buttonPanel.add(findButton); } else { buttonPanel.add(findButton); - buttonPanel.add(Box.createRigidArea(new Dimension(8,0))); - buttonPanel.add(previousButton); // is this the right position for non-Mac? - buttonPanel.add(Box.createRigidArea(new Dimension(8,0))); + buttonPanel.add(Box.createRigidArea(new Dimension(8, 0))); + buttonPanel.add(previousButton); // is this the right position for + // non-Mac? + buttonPanel.add(Box.createRigidArea(new Dimension(8, 0))); buttonPanel.add(replaceFindButton); - buttonPanel.add(Box.createRigidArea(new Dimension(8,0))); + buttonPanel.add(Box.createRigidArea(new Dimension(8, 0))); buttonPanel.add(replaceButton); - buttonPanel.add(Box.createRigidArea(new Dimension(8,0))); + buttonPanel.add(Box.createRigidArea(new Dimension(8, 0))); buttonPanel.add(replaceAllButton); } - + // to fix ugliness.. normally macosx java 1.3 puts an // ugly white border around this object, so turn it off. if (OSUtils.isMacOS()) { buttonPanel.setBorder(null); } - //Put all components onto the dialog window - GridBagLayout searchLayout=new GridBagLayout(); - GridBagConstraints gbc=new GridBagConstraints(); + // Put all components onto the dialog window + GridBagLayout searchLayout = new GridBagLayout(); + GridBagConstraints gbc = new GridBagConstraints(); Container pane = getContentPane(); pane.setLayout(searchLayout); - - gbc.insets=new Insets(4,4,4,4); - gbc.gridx=0; - gbc.weightx=0.0; - gbc.weighty=0.0; - gbc.fill=GridBagConstraints.NONE; - gbc.anchor=GridBagConstraints.LINE_END; - pane.add(findLabel,gbc); - gbc.gridx=1; - gbc.weightx=1.0; - gbc.fill=GridBagConstraints.HORIZONTAL; - gbc.anchor=GridBagConstraints.LINE_START; - pane.add(findField,gbc); - gbc.gridx=0; - gbc.gridy=1; - gbc.weightx=0.0; - gbc.fill=GridBagConstraints.NONE; - gbc.anchor=GridBagConstraints.LINE_END; - pane.add(replaceLabel,gbc); - gbc.gridx=1; - gbc.weightx=1.0; - gbc.fill=GridBagConstraints.HORIZONTAL; - gbc.anchor=GridBagConstraints.LINE_START; - pane.add(replaceField,gbc); - gbc.gridx=1; - gbc.gridy=2; - gbc.weighty=0.0; - gbc.fill=GridBagConstraints.NONE; - pane.add(checkboxPanel,gbc); - gbc.anchor=GridBagConstraints.CENTER; - gbc.gridwidth=2; - gbc.gridx=0; - gbc.gridy=3; - gbc.insets=new Insets(12,4,4,4); - pane.add(buttonPanel,gbc); + + gbc.insets = new Insets(4, 4, 4, 4); + gbc.gridx = 0; + gbc.weightx = 0.0; + gbc.weighty = 0.0; + gbc.fill = GridBagConstraints.NONE; + gbc.anchor = GridBagConstraints.LINE_END; + pane.add(findLabel, gbc); + gbc.gridx = 1; + gbc.weightx = 1.0; + gbc.fill = GridBagConstraints.HORIZONTAL; + gbc.anchor = GridBagConstraints.LINE_START; + pane.add(findField, gbc); + gbc.gridx = 0; + gbc.gridy = 1; + gbc.weightx = 0.0; + gbc.fill = GridBagConstraints.NONE; + gbc.anchor = GridBagConstraints.LINE_END; + pane.add(replaceLabel, gbc); + gbc.gridx = 1; + gbc.weightx = 1.0; + gbc.fill = GridBagConstraints.HORIZONTAL; + gbc.anchor = GridBagConstraints.LINE_START; + pane.add(replaceField, gbc); + gbc.gridx = 1; + gbc.gridy = 2; + gbc.weighty = 0.0; + gbc.fill = GridBagConstraints.NONE; + pane.add(checkboxPanel, gbc); + gbc.anchor = GridBagConstraints.CENTER; + gbc.gridwidth = 2; + gbc.gridx = 0; + gbc.gridy = 3; + gbc.insets = new Insets(12, 4, 4, 4); + pane.add(buttonPanel, gbc); pack(); setResizable(false); - //centers the dialog on thew screen - setLocationRelativeTo( null ); + // centers the dialog on thew screen + setLocationRelativeTo(null); // make the find button the blinky default getRootPane().setDefaultButton(findButton); setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE); addWindowListener(new WindowAdapter() { - public void windowClosing(WindowEvent e) { - handleClose(); - } - }); + public void windowClosing(WindowEvent e) { + handleClose(); + } + }); Base.registerWindowCloseKeys(getRootPane(), new ActionListener() { - public void actionPerformed(ActionEvent actionEvent) { - //hide(); - handleClose(); - } - }); + public void actionPerformed(ActionEvent actionEvent) { + // hide(); + handleClose(); + } + }); Base.setIcon(this); // hack to to get first field to focus properly on osx addWindowListener(new WindowAdapter() { - public void windowActivated(WindowEvent e) { - //System.out.println("activating"); - /*boolean ok =*/ findField.requestFocusInWindow(); - //System.out.println("got " + ok); - findField.selectAll(); - } - }); + public void windowActivated(WindowEvent e) { + // System.out.println("activating"); + /* boolean ok = */findField.requestFocusInWindow(); + // System.out.println("got " + ok); + findField.selectAll(); + } + }); } - public void handleClose() { - //System.out.println("handling close now"); + // System.out.println("handling close now"); findString = findField.getText(); replaceString = replaceField.getText(); @@ -250,7 +251,6 @@ public class FindReplace extends JFrame implements ActionListener { setVisible(false); } - /* public void show() { findField.requestFocusInWindow(); @@ -281,17 +281,18 @@ public class FindReplace extends JFrame implements ActionListener { } } - // look for the next instance of the find string to be found // once found, select it (and go to that line) - private boolean find(boolean wrap,boolean backwards,boolean searchTabs,int originTab) { - //System.out.println("Find: " + originTab); - boolean wrapNeeded = false; + private boolean find(boolean wrap, boolean backwards, boolean searchTabs, + int originTab) { + // System.out.println("Find: " + originTab); + boolean wrapNeeded = false; String search = findField.getText(); - //System.out.println("finding for " + search + " " + findString); + // System.out.println("finding for " + search + " " + findString); // this will catch "find next" being called when no search yet - if (search.length() == 0) return false; + if (search.length() == 0) + return false; String text = editor.getText(); @@ -302,7 +303,7 @@ public class FindReplace extends JFrame implements ActionListener { int nextIndex; if (!backwards) { - //int selectionStart = editor.textarea.getSelectionStart(); + // int selectionStart = editor.textarea.getSelectionStart(); int selectionEnd = editor.getSelectionStop(); nextIndex = text.indexOf(search, selectionEnd); @@ -311,10 +312,10 @@ public class FindReplace extends JFrame implements ActionListener { wrapNeeded = true; } } else { - //int selectionStart = editor.textarea.getSelectionStart(); - int selectionStart = editor.getSelectionStart()-1; + // int selectionStart = editor.textarea.getSelectionStart(); + int selectionStart = editor.getSelectionStart() - 1; - if ( selectionStart >= 0 ) { + if (selectionStart >= 0) { nextIndex = text.lastIndexOf(search, selectionStart); } else { nextIndex = -1; @@ -338,8 +339,8 @@ public class FindReplace extends JFrame implements ActionListener { originTab = realCurrentTab; if (!wrap) - if ((!backwards && realCurrentTab + 1 >= sketch.getCodeCount()) || - (backwards && realCurrentTab - 1 < 0)) + if ((!backwards && realCurrentTab + 1 >= sketch.getCodeCount()) + || (backwards && realCurrentTab - 1 < 0)) return false; // Can't continue without wrap if (backwards) { @@ -357,23 +358,23 @@ public class FindReplace extends JFrame implements ActionListener { } } } - + if (wrapNeeded) - nextIndex = backwards ? text.lastIndexOf(search) : text.indexOf(search, 0); + nextIndex = backwards ? text.lastIndexOf(search) : text.indexOf(search, + 0); } - - if (nextIndex != -1) { + + if (nextIndex != -1) { editor.setSelection(nextIndex, nextIndex + search.length()); return true; - } - + } + return false; } - /** - * Replace the current selection with whatever's in the - * replacement text field. + * Replace the current selection with whatever's in the replacement text + * field. */ public void replace() { if (findField.getText().length() == 0) @@ -399,8 +400,8 @@ public class FindReplace extends JFrame implements ActionListener { } /** - * Replace the current selection with whatever's in the - * replacement text field, and then find the next match + * Replace the current selection with whatever's in the replacement text + * field, and then find the next match */ public void replaceAndFindNext() { replace(); @@ -408,8 +409,8 @@ public class FindReplace extends JFrame implements ActionListener { } /** - * Replace everything that matches by doing find and replace - * alternately until nothing more found. + * Replace everything that matches by doing find and replace alternately until + * nothing more found. */ public void replaceAll() { if (findField.getText().length() == 0) @@ -431,20 +432,20 @@ public class FindReplace extends JFrame implements ActionListener { Toolkit.getDefaultToolkit().beep(); } } - - public void setFindText( String t ) { - findField.setText( t ); + + public void setFindText(String t) { + findField.setText(t); findString = t; } public void findNext() { - if ( !find( wrapAround, false, searchAllFiles,-1 ) ) { + if (!find(wrapAround, false, searchAllFiles, -1)) { Toolkit.getDefaultToolkit().beep(); } } public void findPrevious() { - if ( !find( wrapAround, true, searchAllFiles,-1 ) ) { + if (!find(wrapAround, true, searchAllFiles, -1)) { Toolkit.getDefaultToolkit().beep(); } } From 18fc1c9f4532598749ebbfb1dee4a26240bc0cd0 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Wed, 7 Jan 2015 16:02:12 +0100 Subject: [PATCH 120/148] Find/Replace dialog, added 10px of padding to match other dialogs --- app/src/processing/app/FindReplace.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/src/processing/app/FindReplace.java b/app/src/processing/app/FindReplace.java index 4c84c0976..2e62be063 100644 --- a/app/src/processing/app/FindReplace.java +++ b/app/src/processing/app/FindReplace.java @@ -28,6 +28,7 @@ import java.awt.*; import java.awt.event.*; import javax.swing.*; +import javax.swing.border.Border; import processing.app.helpers.OSUtils; @@ -75,6 +76,11 @@ public class FindReplace extends JFrame implements ActionListener { public FindReplace(Editor editor) { super(_("Find")); this.editor = editor; + + JPanel contentPanel = new JPanel(); + Border padding = BorderFactory.createEmptyBorder(10, 10, 10, 10); + contentPanel.setBorder(padding); + setContentPane(contentPanel); JLabel findLabel = new JLabel(_("Find:")); findField = new JTextField(20); From 980709f6f785c0fe524ca05cfc8b1bd4ae764d7a Mon Sep 17 00:00:00 2001 From: Federico Fissore Date: Thu, 8 Jan 2015 13:45:17 +0100 Subject: [PATCH 121/148] Compiler: missing mandatory key now blocks compilation --- app/src/processing/app/Editor.java | 8 +++ app/src/processing/app/Sketch.java | 5 +- .../src/processing/app/debug/Compiler.java | 53 +++++++++---------- 3 files changed, 36 insertions(+), 30 deletions(-) diff --git a/app/src/processing/app/Editor.java b/app/src/processing/app/Editor.java index 47ab58e79..776b454fb 100644 --- a/app/src/processing/app/Editor.java +++ b/app/src/processing/app/Editor.java @@ -1924,6 +1924,10 @@ public class Editor extends JFrame implements RunnerListener { sketch.prepare(); sketch.build(false); statusNotice(_("Done compiling.")); + } catch (PreferencesMapException e) { + statusError(I18n.format( + _("Error while compiling: missing '{0}' configuration parameter"), + e.getMessage())); } catch (Exception e) { status.unprogress(); statusError(e); @@ -1941,6 +1945,10 @@ public class Editor extends JFrame implements RunnerListener { sketch.prepare(); sketch.build(true); statusNotice(_("Done compiling.")); + } catch (PreferencesMapException e) { + statusError(I18n.format( + _("Error while compiling: missing '{0}' configuration parameter"), + e.getMessage())); } catch (Exception e) { status.unprogress(); statusError(e); diff --git a/app/src/processing/app/Sketch.java b/app/src/processing/app/Sketch.java index 285962755..8a32717f7 100644 --- a/app/src/processing/app/Sketch.java +++ b/app/src/processing/app/Sketch.java @@ -29,6 +29,7 @@ import processing.app.debug.Compiler.ProgressListener; import processing.app.debug.RunnerException; import processing.app.forms.PasswordAuthorizationDialog; import processing.app.helpers.OSUtils; +import processing.app.helpers.PreferencesMapException; import processing.app.packages.Library; import static processing.app.I18n._; @@ -1129,7 +1130,7 @@ public class Sketch { * @return null if compilation failed, main class name if not * @throws RunnerException */ - public String build(boolean verbose) throws RunnerException { + public String build(boolean verbose) throws RunnerException, PreferencesMapException { return build(tempBuildFolder.getAbsolutePath(), verbose); } @@ -1142,7 +1143,7 @@ public class Sketch { * * @return null if compilation failed, main class name if not */ - public String build(String buildPath, boolean verbose) throws RunnerException { + public String build(String buildPath, boolean verbose) throws RunnerException, PreferencesMapException { // run the preprocessor editor.status.progressUpdate(20); diff --git a/arduino-core/src/processing/app/debug/Compiler.java b/arduino-core/src/processing/app/debug/Compiler.java index 2088bc5f1..6224d64f1 100644 --- a/arduino-core/src/processing/app/debug/Compiler.java +++ b/arduino-core/src/processing/app/debug/Compiler.java @@ -49,10 +49,7 @@ import processing.app.I18n; import processing.app.PreferencesData; import processing.app.SketchCode; import processing.app.SketchData; -import processing.app.helpers.FileUtils; -import processing.app.helpers.PreferencesMap; -import processing.app.helpers.ProcessUtils; -import processing.app.helpers.StringReplacer; +import processing.app.helpers.*; import processing.app.helpers.filefilters.OnlyDirs; import processing.app.packages.Library; import processing.app.packages.LibraryList; @@ -86,7 +83,7 @@ public class Compiler implements MessageConsumer { private ProgressListener progressListener; - static public String build(SketchData data, String buildPath, File tempBuildFolder, ProgressListener progListener, boolean verbose) throws RunnerException { + static public String build(SketchData data, String buildPath, File tempBuildFolder, ProgressListener progListener, boolean verbose) throws RunnerException, PreferencesMapException { if (SketchData.checkSketchFile(data.getPrimaryFile()) == null) BaseNoGui.showError(_("Bad file selected"), _("Bad sketch primary file or bad sketck directory structure"), null); @@ -338,12 +335,12 @@ public class Compiler implements MessageConsumer { /** * Compile sketch. - * @param buildPath + * @param _verbose * * @return true if successful. * @throws RunnerException Only if there's a problem. Only then. */ - public boolean compile(boolean _verbose) throws RunnerException { + public boolean compile(boolean _verbose) throws RunnerException, PreferencesMapException { preprocess(prefs.get("build.path")); verbose = _verbose || PreferencesData.getBoolean("build.verbose"); @@ -505,7 +502,7 @@ public class Compiler implements MessageConsumer { private List compileFiles(File outputPath, File sourcePath, boolean recurse, List includeFolders) - throws RunnerException { + throws RunnerException, PreferencesMapException { List sSources = findFilesInFolder(sourcePath, "S", recurse); List cSources = findFilesInFolder(sourcePath, "c", recurse); List cppSources = findFilesInFolder(sourcePath, "cpp", recurse); @@ -545,7 +542,7 @@ public class Compiler implements MessageConsumer { * Strip escape sequences used in makefile dependency files (.d) * https://github.com/arduino/Arduino/issues/2255#issuecomment-57645845 * - * @param dep + * @param line * @return */ protected static String unescapeDepFile(String line) { @@ -816,7 +813,7 @@ public class Compiler implements MessageConsumer { private String[] getCommandCompilerS(List includeFolders, File sourceFile, File objectFile) - throws RunnerException { + throws RunnerException, PreferencesMapException { String includes = prepareIncludes(includeFolders); PreferencesMap dict = new PreferencesMap(prefs); dict.put("ide_version", "" + BaseNoGui.REVISION); @@ -824,8 +821,8 @@ public class Compiler implements MessageConsumer { dict.put("source_file", sourceFile.getAbsolutePath()); dict.put("object_file", objectFile.getAbsolutePath()); + String cmd = prefs.getOrExcept("recipe.S.o.pattern"); try { - String cmd = prefs.get("recipe.S.o.pattern"); return StringReplacer.formatAndSplit(cmd, dict, true); } catch (Exception e) { throw new RunnerException(e); @@ -834,7 +831,7 @@ public class Compiler implements MessageConsumer { private String[] getCommandCompilerC(List includeFolders, File sourceFile, File objectFile) - throws RunnerException { + throws RunnerException, PreferencesMapException { String includes = prepareIncludes(includeFolders); PreferencesMap dict = new PreferencesMap(prefs); @@ -843,7 +840,7 @@ public class Compiler implements MessageConsumer { dict.put("source_file", sourceFile.getAbsolutePath()); dict.put("object_file", objectFile.getAbsolutePath()); - String cmd = prefs.get("recipe.c.o.pattern"); + String cmd = prefs.getOrExcept("recipe.c.o.pattern"); try { return StringReplacer.formatAndSplit(cmd, dict, true); } catch (Exception e) { @@ -853,7 +850,7 @@ public class Compiler implements MessageConsumer { private String[] getCommandCompilerCPP(List includeFolders, File sourceFile, File objectFile) - throws RunnerException { + throws RunnerException, PreferencesMapException { String includes = prepareIncludes(includeFolders); PreferencesMap dict = new PreferencesMap(prefs); @@ -862,7 +859,7 @@ public class Compiler implements MessageConsumer { dict.put("source_file", sourceFile.getAbsolutePath()); dict.put("object_file", objectFile.getAbsolutePath()); - String cmd = prefs.get("recipe.cpp.o.pattern"); + String cmd = prefs.getOrExcept("recipe.cpp.o.pattern"); try { return StringReplacer.formatAndSplit(cmd, dict, true); } catch (Exception e) { @@ -909,21 +906,21 @@ public class Compiler implements MessageConsumer { } // 1. compile the sketch (already in the buildPath) - void compileSketch(List includeFolders) throws RunnerException { + void compileSketch(List includeFolders) throws RunnerException, PreferencesMapException { File buildPath = prefs.getFile("build.path"); objectFiles.addAll(compileFiles(buildPath, buildPath, false, includeFolders)); } // 2. compile the libraries, outputting .o files to: // // - void compileLibraries(List includeFolders) throws RunnerException { + void compileLibraries(List includeFolders) throws RunnerException, PreferencesMapException { for (Library lib : importedLibraries) { compileLibrary(lib, includeFolders); } } private void compileLibrary(Library lib, List includeFolders) - throws RunnerException { + throws RunnerException, PreferencesMapException { File libFolder = lib.getSrcFolder(); File libBuildFolder = prefs.getFile(("build.path"), lib.getName()); @@ -949,7 +946,7 @@ public class Compiler implements MessageConsumer { } } - private void recursiveCompileFilesInFolder(File srcBuildFolder, File srcFolder, List includeFolders) throws RunnerException { + private void recursiveCompileFilesInFolder(File srcBuildFolder, File srcFolder, List includeFolders) throws RunnerException, PreferencesMapException { compileFilesInFolder(srcBuildFolder, srcFolder, includeFolders); for (File subFolder : srcFolder.listFiles(new OnlyDirs())) { File subBuildFolder = new File(srcBuildFolder, subFolder.getName()); @@ -957,7 +954,7 @@ public class Compiler implements MessageConsumer { } } - private void compileFilesInFolder(File buildFolder, File srcFolder, List includeFolders) throws RunnerException { + private void compileFilesInFolder(File buildFolder, File srcFolder, List includeFolders) throws RunnerException, PreferencesMapException { createFolder(buildFolder); List objects = compileFiles(buildFolder, srcFolder, false, includeFolders); objectFiles.addAll(objects); @@ -968,7 +965,7 @@ public class Compiler implements MessageConsumer { // Also compiles the variant (if it supplies actual source files), // which are included in the link directly (not through core.a) void compileCore() - throws RunnerException { + throws RunnerException, PreferencesMapException { File coreFolder = prefs.getFile("build.core.path"); File variantFolder = prefs.getFile("build.variant.path"); @@ -1024,8 +1021,8 @@ public class Compiler implements MessageConsumer { dict.put("object_file", file.getAbsolutePath()); String[] cmdArray; + String cmd = prefs.getOrExcept("recipe.ar.pattern"); try { - String cmd = prefs.get("recipe.ar.pattern"); cmdArray = StringReplacer.formatAndSplit(cmd, dict, true); } catch (Exception e) { throw new RunnerException(e); @@ -1040,7 +1037,7 @@ public class Compiler implements MessageConsumer { // 4. link it all together into the .elf file void compileLink() - throws RunnerException { + throws RunnerException, PreferencesMapException { // TODO: Make the --relax thing in configuration files. @@ -1063,8 +1060,8 @@ public class Compiler implements MessageConsumer { dict.put("ide_version", "" + BaseNoGui.REVISION); String[] cmdArray; + String cmd = prefs.getOrExcept("recipe.c.combine.pattern"); try { - String cmd = prefs.get("recipe.c.combine.pattern"); cmdArray = StringReplacer.formatAndSplit(cmd, dict, true); } catch (Exception e) { throw new RunnerException(e); @@ -1073,13 +1070,13 @@ public class Compiler implements MessageConsumer { } // 5. extract EEPROM data (from EEMEM directive) to .eep file. - void compileEep() throws RunnerException { + void compileEep() throws RunnerException, PreferencesMapException { PreferencesMap dict = new PreferencesMap(prefs); dict.put("ide_version", "" + BaseNoGui.REVISION); String[] cmdArray; + String cmd = prefs.getOrExcept("recipe.objcopy.eep.pattern"); try { - String cmd = prefs.get("recipe.objcopy.eep.pattern"); cmdArray = StringReplacer.formatAndSplit(cmd, dict, true); } catch (Exception e) { throw new RunnerException(e); @@ -1088,13 +1085,13 @@ public class Compiler implements MessageConsumer { } // 6. build the .hex file - void compileHex() throws RunnerException { + void compileHex() throws RunnerException, PreferencesMapException { PreferencesMap dict = new PreferencesMap(prefs); dict.put("ide_version", "" + BaseNoGui.REVISION); String[] cmdArray; + String cmd = prefs.getOrExcept("recipe.objcopy.hex.pattern"); try { - String cmd = prefs.get("recipe.objcopy.hex.pattern"); cmdArray = StringReplacer.formatAndSplit(cmd, dict, true); } catch (Exception e) { throw new RunnerException(e); From f5520fc7e186351db9f73cf94fbe09f64f9f3086 Mon Sep 17 00:00:00 2001 From: Federico Fissore Date: Thu, 8 Jan 2015 13:49:51 +0100 Subject: [PATCH 122/148] Compiler: removed duplicated functions compileEep and compileHex in favour of generic runRecipe --- .../src/processing/app/debug/Compiler.java | 24 ++++--------------- 1 file changed, 4 insertions(+), 20 deletions(-) diff --git a/arduino-core/src/processing/app/debug/Compiler.java b/arduino-core/src/processing/app/debug/Compiler.java index 6224d64f1..82d13f49c 100644 --- a/arduino-core/src/processing/app/debug/Compiler.java +++ b/arduino-core/src/processing/app/debug/Compiler.java @@ -401,11 +401,11 @@ public class Compiler implements MessageConsumer { // 5. extract EEPROM data (from EEMEM directive) to .eep file. progressListener.progress(70); - compileEep(); + runRecipe("recipe.objcopy.eep.pattern"); // 6. build the .hex file progressListener.progress(80); - compileHex(); + runRecipe("recipe.objcopy.hex.pattern"); progressListener.progress(90); return true; @@ -1069,28 +1069,12 @@ public class Compiler implements MessageConsumer { execAsynchronously(cmdArray); } - // 5. extract EEPROM data (from EEMEM directive) to .eep file. - void compileEep() throws RunnerException, PreferencesMapException { + void runRecipe(String recipe) throws RunnerException, PreferencesMapException { PreferencesMap dict = new PreferencesMap(prefs); dict.put("ide_version", "" + BaseNoGui.REVISION); String[] cmdArray; - String cmd = prefs.getOrExcept("recipe.objcopy.eep.pattern"); - try { - cmdArray = StringReplacer.formatAndSplit(cmd, dict, true); - } catch (Exception e) { - throw new RunnerException(e); - } - execAsynchronously(cmdArray); - } - - // 6. build the .hex file - void compileHex() throws RunnerException, PreferencesMapException { - PreferencesMap dict = new PreferencesMap(prefs); - dict.put("ide_version", "" + BaseNoGui.REVISION); - - String[] cmdArray; - String cmd = prefs.getOrExcept("recipe.objcopy.hex.pattern"); + String cmd = prefs.getOrExcept(recipe); try { cmdArray = StringReplacer.formatAndSplit(cmd, dict, true); } catch (Exception e) { From fd4a5a82b3976abbf1316ab987b01791de7b1dae Mon Sep 17 00:00:00 2001 From: Federico Fissore Date: Thu, 8 Jan 2015 13:54:20 +0100 Subject: [PATCH 123/148] Compiler: removed duplicated functions getCommandCompilerS, getCommandCompilerC, and getCommandCompilerCPP in favour of generic getCommandCompilerByRecipe --- .../src/processing/app/debug/Compiler.java | 50 ++----------------- 1 file changed, 5 insertions(+), 45 deletions(-) diff --git a/arduino-core/src/processing/app/debug/Compiler.java b/arduino-core/src/processing/app/debug/Compiler.java index 82d13f49c..3b6d92e00 100644 --- a/arduino-core/src/processing/app/debug/Compiler.java +++ b/arduino-core/src/processing/app/debug/Compiler.java @@ -511,7 +511,7 @@ public class Compiler implements MessageConsumer { for (File file : sSources) { File objectFile = new File(outputPath, file.getName() + ".o"); objectPaths.add(objectFile); - String[] cmd = getCommandCompilerS(includeFolders, file, objectFile); + String[] cmd = getCommandCompilerByRecipe(includeFolders, file, objectFile, "recipe.S.o.pattern"); execAsynchronously(cmd); } @@ -521,7 +521,7 @@ public class Compiler implements MessageConsumer { objectPaths.add(objectFile); if (isAlreadyCompiled(file, objectFile, dependFile, prefs)) continue; - String[] cmd = getCommandCompilerC(includeFolders, file, objectFile); + String[] cmd = getCommandCompilerByRecipe(includeFolders, file, objectFile, "recipe.c.o.pattern"); execAsynchronously(cmd); } @@ -531,7 +531,7 @@ public class Compiler implements MessageConsumer { objectPaths.add(objectFile); if (isAlreadyCompiled(file, objectFile, dependFile, prefs)) continue; - String[] cmd = getCommandCompilerCPP(includeFolders, file, objectFile); + String[] cmd = getCommandCompilerByRecipe(includeFolders, file, objectFile, "recipe.cpp.o.pattern"); execAsynchronously(cmd); } @@ -811,9 +811,7 @@ public class Compiler implements MessageConsumer { System.err.print(s); } - private String[] getCommandCompilerS(List includeFolders, - File sourceFile, File objectFile) - throws RunnerException, PreferencesMapException { + private String[] getCommandCompilerByRecipe(List includeFolders, File sourceFile, File objectFile, String recipe) throws PreferencesMapException, RunnerException { String includes = prepareIncludes(includeFolders); PreferencesMap dict = new PreferencesMap(prefs); dict.put("ide_version", "" + BaseNoGui.REVISION); @@ -821,45 +819,7 @@ public class Compiler implements MessageConsumer { dict.put("source_file", sourceFile.getAbsolutePath()); dict.put("object_file", objectFile.getAbsolutePath()); - String cmd = prefs.getOrExcept("recipe.S.o.pattern"); - try { - return StringReplacer.formatAndSplit(cmd, dict, true); - } catch (Exception e) { - throw new RunnerException(e); - } - } - - private String[] getCommandCompilerC(List includeFolders, - File sourceFile, File objectFile) - throws RunnerException, PreferencesMapException { - String includes = prepareIncludes(includeFolders); - - PreferencesMap dict = new PreferencesMap(prefs); - dict.put("ide_version", "" + BaseNoGui.REVISION); - dict.put("includes", includes); - dict.put("source_file", sourceFile.getAbsolutePath()); - dict.put("object_file", objectFile.getAbsolutePath()); - - String cmd = prefs.getOrExcept("recipe.c.o.pattern"); - try { - return StringReplacer.formatAndSplit(cmd, dict, true); - } catch (Exception e) { - throw new RunnerException(e); - } - } - - private String[] getCommandCompilerCPP(List includeFolders, - File sourceFile, File objectFile) - throws RunnerException, PreferencesMapException { - String includes = prepareIncludes(includeFolders); - - PreferencesMap dict = new PreferencesMap(prefs); - dict.put("ide_version", "" + BaseNoGui.REVISION); - dict.put("includes", includes); - dict.put("source_file", sourceFile.getAbsolutePath()); - dict.put("object_file", objectFile.getAbsolutePath()); - - String cmd = prefs.getOrExcept("recipe.cpp.o.pattern"); + String cmd = prefs.getOrExcept(recipe); try { return StringReplacer.formatAndSplit(cmd, dict, true); } catch (Exception e) { From b16ee6c7b2c8070f3455b7745f4351803e2177e6 Mon Sep 17 00:00:00 2001 From: Federico Fissore Date: Thu, 8 Jan 2015 14:03:38 +0100 Subject: [PATCH 124/148] Editor: removed duplicated classes DefaultRunHandler, and DefaultPresentHandler in favour of generic BuildHandler --- app/src/processing/app/Editor.java | 43 +++++++++++------------------- 1 file changed, 15 insertions(+), 28 deletions(-) diff --git a/app/src/processing/app/Editor.java b/app/src/processing/app/Editor.java index 776b454fb..bd0d6c75c 100644 --- a/app/src/processing/app/Editor.java +++ b/app/src/processing/app/Editor.java @@ -1426,8 +1426,8 @@ public class Editor extends JFrame implements RunnerListener { public void resetHandlers() { - runHandler = new DefaultRunHandler(); - presentHandler = new DefaultPresentHandler(); + runHandler = new BuildHandler(); + presentHandler = new BuildHandler(true); stopHandler = new DefaultStopHandler(); exportHandler = new DefaultExportHandler(); exportAppHandler = new DefaultExportAppHandler(); @@ -1917,33 +1917,23 @@ public class Editor extends JFrame implements RunnerListener { new Thread(verbose ? presentHandler : runHandler).start(); } - // DAM: in Arduino, this is compile - class DefaultRunHandler implements Runnable { - public void run() { - try { - sketch.prepare(); - sketch.build(false); - statusNotice(_("Done compiling.")); - } catch (PreferencesMapException e) { - statusError(I18n.format( - _("Error while compiling: missing '{0}' configuration parameter"), - e.getMessage())); - } catch (Exception e) { - status.unprogress(); - statusError(e); - } + class BuildHandler implements Runnable { - status.unprogress(); - toolbar.deactivate(EditorToolbar.RUN); + private final boolean verbose; + + public BuildHandler() { + this(false); } - } - // DAM: in Arduino, this is compile (with verbose output) - class DefaultPresentHandler implements Runnable { + public BuildHandler(boolean verbose) { + this.verbose = verbose; + } + + @Override public void run() { try { sketch.prepare(); - sketch.build(true); + sketch.build(verbose); statusNotice(_("Done compiling.")); } catch (PreferencesMapException e) { statusError(I18n.format( @@ -1961,11 +1951,8 @@ public class Editor extends JFrame implements RunnerListener { class DefaultStopHandler implements Runnable { public void run() { - try { - // DAM: we should try to kill the compilation or upload process here. - } catch (Exception e) { - statusError(e); - } + // TODO + // DAM: we should try to kill the compilation or upload process here. } } From 92118494ed7826cad1593e027999ae4d9f7e8d10 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Thu, 8 Jan 2015 14:41:54 +0100 Subject: [PATCH 125/148] Slighlty better layout for Search and Replace dialog. See https://github.com/arduino/Arduino/pull/2540#issuecomment-69167281 --- app/src/processing/app/FindReplace.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/processing/app/FindReplace.java b/app/src/processing/app/FindReplace.java index 2e62be063..df1c95114 100644 --- a/app/src/processing/app/FindReplace.java +++ b/app/src/processing/app/FindReplace.java @@ -122,7 +122,7 @@ public class FindReplace extends JFrame implements ActionListener { searchAllFilesBox.setSelected(searchAllFiles); JPanel checkboxPanel = new JPanel(); - checkboxPanel.setLayout(new BoxLayout(checkboxPanel, BoxLayout.LINE_AXIS)); + checkboxPanel.setLayout(new BoxLayout(checkboxPanel, BoxLayout.PAGE_AXIS)); checkboxPanel.add(ignoreCaseBox); checkboxPanel.add(Box.createRigidArea(new Dimension(8, 0))); checkboxPanel.add(wrapAroundBox); From 2b14a9349cde885fd38274508394084c1ef47fe5 Mon Sep 17 00:00:00 2001 From: Javier Zorzano Date: Thu, 8 Jan 2015 18:36:41 +0100 Subject: [PATCH 126/148] Align types: int to unsigned int Block send SMS until finished operation. GSM3IO.h. Keeps most of board-dependant pins Flush buffer after GPRS detach Delete some references to HardwareSerial.h Include OFF modem status --- libraries/GSM/src/GSM.h | 3 +- libraries/GSM/src/GSM3CircularBuffer.cpp | 4 +-- libraries/GSM/src/GSM3IO.h | 26 +++++++++++++++ libraries/GSM/src/GSM3MobileAccessProvider.h | 7 +++- .../GSM/src/GSM3MobileMockupProvider.cpp | 1 + .../GSM/src/GSM3MobileNetworkProvider.cpp | 1 - .../GSM/src/GSM3ShieldV1AccessProvider.cpp | 33 +++++++++++++++++-- .../GSM/src/GSM3ShieldV1AccessProvider.h | 5 +++ .../src/GSM3ShieldV1DataNetworkProvider.cpp | 2 ++ libraries/GSM/src/GSM3ShieldV1ModemCore.cpp | 2 +- .../GSM/src/GSM3ShieldV1ModemVerification.cpp | 12 ++----- .../GSM/src/GSM3ShieldV1ModemVerification.h | 2 +- libraries/GSM/src/GSM3ShieldV1PinManagement.h | 2 +- libraries/GSM/src/GSM3ShieldV1SMSProvider.cpp | 1 + .../GSM/src/GSM3ShieldV1ScanNetworks.cpp | 2 +- libraries/GSM/src/GSM3SoftSerial.cpp | 15 +-------- 16 files changed, 83 insertions(+), 35 deletions(-) create mode 100644 libraries/GSM/src/GSM3IO.h diff --git a/libraries/GSM/src/GSM.h b/libraries/GSM/src/GSM.h index ec2bf6ae2..a071b082f 100644 --- a/libraries/GSM/src/GSM.h +++ b/libraries/GSM/src/GSM.h @@ -47,6 +47,7 @@ https://github.com/BlueVia/Official-Arduino #include #include #include +#include #include #include #include @@ -61,7 +62,7 @@ https://github.com/BlueVia/Official-Arduino #define GSMPIN GSM3ShieldV1PinManagement #define GSMModem GSM3ShieldV1ModemVerification -#define GSMCell GSM3CellManagement +#define GSMCell GSM3ShieldV1CellManagement #define GSMBand GSM3ShieldV1BandManagement #define GSMScanner GSM3ShieldV1ScanNetworks diff --git a/libraries/GSM/src/GSM3CircularBuffer.cpp b/libraries/GSM/src/GSM3CircularBuffer.cpp index e64c57120..cb6c4cbf9 100644 --- a/libraries/GSM/src/GSM3CircularBuffer.cpp +++ b/libraries/GSM/src/GSM3CircularBuffer.cpp @@ -31,8 +31,8 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA The latest version of this library can always be found at https://github.com/BlueVia/Official-Arduino */ -#include "GSM3CircularBuffer.h" -#include +#include +#include GSM3CircularBuffer::GSM3CircularBuffer(GSM3CircularBufferManager* mgr) { diff --git a/libraries/GSM/src/GSM3IO.h b/libraries/GSM/src/GSM3IO.h new file mode 100644 index 000000000..502b55237 --- /dev/null +++ b/libraries/GSM/src/GSM3IO.h @@ -0,0 +1,26 @@ +#ifdef TTOPEN_V1 + #define __POWERPIN__ 5 + #define __RESETPIN__ 6 +#else + #define __RESETPIN__ 7 +#endif + +#if defined(__AVR_ATmega328P__) + #ifdef TTOPEN_V1 + #define __TXPIN__ 3 + #define __RXPIN__ 4 + #define __RXINT__ 3 + #else + #define __TXPIN__ 3 + #define __RXPIN__ 2 + #define __RXINT__ 3 + #endif +#elif defined(__AVR_ATmega2560__) || defined(__AVR_ATmega1280__) + #define __TXPIN__ 3 + #define __RXPIN__ 10 + #define __RXINT__ 4 +#elif defined(__AVR_ATmega32U4__) + #define __TXPIN__ 3 + #define __RXPIN__ 8 + #define __RXINT__ 3 +#endif \ No newline at end of file diff --git a/libraries/GSM/src/GSM3MobileAccessProvider.h b/libraries/GSM/src/GSM3MobileAccessProvider.h index 21ecd1b01..afaadc8b4 100644 --- a/libraries/GSM/src/GSM3MobileAccessProvider.h +++ b/libraries/GSM/src/GSM3MobileAccessProvider.h @@ -34,7 +34,7 @@ https://github.com/BlueVia/Official-Arduino #ifndef _GSM3MOBILEACCESSPROVIDER_ #define _GSM3MOBILEACCESSPROVIDER_ -enum GSM3_NetworkStatus_t { ERROR, IDLE, CONNECTING, GSM_READY, GPRS_READY, TRANSPARENT_CONNECTED}; +enum GSM3_NetworkStatus_t { ERROR, IDLE, CONNECTING, GSM_READY, GPRS_READY, TRANSPARENT_CONNECTED, OFF}; class GSM3MobileAccessProvider { @@ -59,6 +59,11 @@ class GSM3MobileAccessProvider */ virtual inline bool shutdown()=0; + /** Secure shutdown the modem (power off really) + @return always true + */ + virtual inline bool secureShutdown()=0; + /** Get last command status @return returns 0 if last command is still executing, 1 success, >1 error */ diff --git a/libraries/GSM/src/GSM3MobileMockupProvider.cpp b/libraries/GSM/src/GSM3MobileMockupProvider.cpp index b39ee26f5..8680e1846 100644 --- a/libraries/GSM/src/GSM3MobileMockupProvider.cpp +++ b/libraries/GSM/src/GSM3MobileMockupProvider.cpp @@ -35,6 +35,7 @@ https://github.com/BlueVia/Official-Arduino #include #include #include +#include GSM3MobileMockupProvider::GSM3MobileMockupProvider() diff --git a/libraries/GSM/src/GSM3MobileNetworkProvider.cpp b/libraries/GSM/src/GSM3MobileNetworkProvider.cpp index a8a91c219..c9fe01af3 100644 --- a/libraries/GSM/src/GSM3MobileNetworkProvider.cpp +++ b/libraries/GSM/src/GSM3MobileNetworkProvider.cpp @@ -32,7 +32,6 @@ The latest version of this library can always be found at https://github.com/BlueVia/Official-Arduino */ #include -#include GSM3MobileNetworkProvider* theProvider; diff --git a/libraries/GSM/src/GSM3ShieldV1AccessProvider.cpp b/libraries/GSM/src/GSM3ShieldV1AccessProvider.cpp index d628c9055..330d3f835 100644 --- a/libraries/GSM/src/GSM3ShieldV1AccessProvider.cpp +++ b/libraries/GSM/src/GSM3ShieldV1AccessProvider.cpp @@ -1,7 +1,7 @@ #include #include +#include "GSM3IO.h" -#define __RESETPIN__ 7 #define __TOUTSHUTDOWN__ 5000 #define __TOUTMODEMCONFIGURATION__ 5000//equivalent to 30000 because of time in interrupt routine. #define __TOUTAT__ 1000 @@ -38,6 +38,11 @@ GSM3_NetworkStatus_t GSM3ShieldV1AccessProvider::begin(char* pin, bool restart, { pinMode(__RESETPIN__, OUTPUT); + #ifdef TTOPEN_V1 + pinMode(__POWERPIN__, OUTPUT); + digitalWrite(__POWERPIN__, HIGH); + #endif + // If asked for modem restart, restart if (restart) HWrestart(); @@ -60,7 +65,11 @@ GSM3_NetworkStatus_t GSM3ShieldV1AccessProvider::begin(char* pin, bool restart, //HWrestart. int GSM3ShieldV1AccessProvider::HWrestart() { - + #ifdef TTOPEN_V1 + digitalWrite(__POWERPIN__, HIGH); + delay(1000); + #endif + theGSM3ShieldV1ModemCore.setStatus(IDLE); digitalWrite(__RESETPIN__, HIGH); delay(12000); @@ -292,5 +301,23 @@ bool GSM3ShieldV1AccessProvider::shutdown() return resp; } return false; -} +} +//Secure shutdown. +bool GSM3ShieldV1AccessProvider::secureShutdown() +{ + // It makes no sense to have an asynchronous shutdown + pinMode(__RESETPIN__, OUTPUT); + digitalWrite(__RESETPIN__, HIGH); + delay(900); + digitalWrite(__RESETPIN__, LOW); + theGSM3ShieldV1ModemCore.setStatus(OFF); + theGSM3ShieldV1ModemCore.gss.close(); + +#ifdef TTOPEN_V1 + _delay_ms(12000); + digitalWrite(__POWERPIN__, LOW); +#endif + + return true; +} \ No newline at end of file diff --git a/libraries/GSM/src/GSM3ShieldV1AccessProvider.h b/libraries/GSM/src/GSM3ShieldV1AccessProvider.h index 1ddcc8cc3..638fb5f17 100644 --- a/libraries/GSM/src/GSM3ShieldV1AccessProvider.h +++ b/libraries/GSM/src/GSM3ShieldV1AccessProvider.h @@ -89,6 +89,11 @@ class GSM3ShieldV1AccessProvider : public GSM3MobileAccessProvider, public GSM3S */ bool shutdown(); + /** Secure shutdown the modem (power off really) + @return true if successful + */ + bool secureShutdown(); + /** Returns 0 if last command is still executing @return 1 if success, >1 if error */ diff --git a/libraries/GSM/src/GSM3ShieldV1DataNetworkProvider.cpp b/libraries/GSM/src/GSM3ShieldV1DataNetworkProvider.cpp index f0b732a74..5f10df76c 100644 --- a/libraries/GSM/src/GSM3ShieldV1DataNetworkProvider.cpp +++ b/libraries/GSM/src/GSM3ShieldV1DataNetworkProvider.cpp @@ -219,6 +219,8 @@ void GSM3ShieldV1DataNetworkProvider::detachGPRSContinue() } else theGSM3ShieldV1ModemCore.closeCommand(3); } + theGSM3ShieldV1ModemCore.theBuffer().flush(); + theGSM3ShieldV1ModemCore.gss.spaceAvailable(); break; } } diff --git a/libraries/GSM/src/GSM3ShieldV1ModemCore.cpp b/libraries/GSM/src/GSM3ShieldV1ModemCore.cpp index ea08150ff..20678feeb 100644 --- a/libraries/GSM/src/GSM3ShieldV1ModemCore.cpp +++ b/libraries/GSM/src/GSM3ShieldV1ModemCore.cpp @@ -78,7 +78,7 @@ void GSM3ShieldV1ModemCore::closeCommand(int code) void GSM3ShieldV1ModemCore::genericCommand_rq(PGM_P str, bool addCR) { theBuffer().flush(); - writePGM(str, addCR); + writePGM(str, addCR); } //Generic command (const string). diff --git a/libraries/GSM/src/GSM3ShieldV1ModemVerification.cpp b/libraries/GSM/src/GSM3ShieldV1ModemVerification.cpp index 1ad15e9e9..c0e3da991 100644 --- a/libraries/GSM/src/GSM3ShieldV1ModemVerification.cpp +++ b/libraries/GSM/src/GSM3ShieldV1ModemVerification.cpp @@ -61,19 +61,13 @@ int GSM3ShieldV1ModemVerification::begin() // get IMEI String GSM3ShieldV1ModemVerification::getIMEI() { - String number; + String number(NULL); // AT command for obtain IMEI String modemResponse = modemAccess.writeModemCommand("AT+GSN", 2000); // Parse and check response char res_to_compare[modemResponse.length()]; modemResponse.toCharArray(res_to_compare, modemResponse.length()); - if(strstr(res_to_compare,"OK") == NULL) - { - return String(NULL); - } - else - { + if(strstr(res_to_compare,"OK") != NULL) number = modemResponse.substring(1, 17); - return number; - } + return number; } diff --git a/libraries/GSM/src/GSM3ShieldV1ModemVerification.h b/libraries/GSM/src/GSM3ShieldV1ModemVerification.h index e03980e03..98dbc4988 100644 --- a/libraries/GSM/src/GSM3ShieldV1ModemVerification.h +++ b/libraries/GSM/src/GSM3ShieldV1ModemVerification.h @@ -61,4 +61,4 @@ class GSM3ShieldV1ModemVerification }; -#endif; \ No newline at end of file +#endif \ No newline at end of file diff --git a/libraries/GSM/src/GSM3ShieldV1PinManagement.h b/libraries/GSM/src/GSM3ShieldV1PinManagement.h index ce43cdd14..d5924ea1f 100644 --- a/libraries/GSM/src/GSM3ShieldV1PinManagement.h +++ b/libraries/GSM/src/GSM3ShieldV1PinManagement.h @@ -100,4 +100,4 @@ class GSM3ShieldV1PinManagement void setPINUsed(bool used); }; -#endif; \ No newline at end of file +#endif \ No newline at end of file diff --git a/libraries/GSM/src/GSM3ShieldV1SMSProvider.cpp b/libraries/GSM/src/GSM3ShieldV1SMSProvider.cpp index 9ed075e7b..85d999067 100644 --- a/libraries/GSM/src/GSM3ShieldV1SMSProvider.cpp +++ b/libraries/GSM/src/GSM3ShieldV1SMSProvider.cpp @@ -52,6 +52,7 @@ int GSM3ShieldV1SMSProvider::endSMS() { theGSM3ShieldV1ModemCore.openCommand(this,ENDSMS); endSMSContinue(); + while(ready()==0) delay(100); return theGSM3ShieldV1ModemCore.getCommandError(); } diff --git a/libraries/GSM/src/GSM3ShieldV1ScanNetworks.cpp b/libraries/GSM/src/GSM3ShieldV1ScanNetworks.cpp index 9d7ea6b13..8b5d5e498 100644 --- a/libraries/GSM/src/GSM3ShieldV1ScanNetworks.cpp +++ b/libraries/GSM/src/GSM3ShieldV1ScanNetworks.cpp @@ -92,7 +92,7 @@ String GSM3ShieldV1ScanNetworks::readNetworks() String result; bool inQuotes=false; int quoteCounter=0; - for(int i=0; i #include #include "pins_arduino.h" #include #include -#if defined(__AVR_ATmega328P__) -#define __TXPIN__ 3 -#define __RXPIN__ 2 -#define __RXINT__ 3 -#elif defined(__AVR_ATmega2560__) || defined(__AVR_ATmega1280__) -#define __TXPIN__ 3 -#define __RXPIN__ 10 -#define __RXINT__ 4 -#elif defined(__AVR_ATmega32U4__) -#define __TXPIN__ 3 -#define __RXPIN__ 8 -#define __RXINT__ 3 -#endif - #define __XON__ 0x11 #define __XOFF__ 0x13 From 7e9cf6d612099a67c0856be04c7d7027fda970e9 Mon Sep 17 00:00:00 2001 From: Chris Date: Fri, 9 Jan 2015 20:25:09 +0000 Subject: [PATCH 127/148] sam: updated UART/USART modes --- .../arduino/sam/cores/arduino/UARTClass.cpp | 2 +- .../arduino/sam/cores/arduino/UARTClass.h | 17 ++++---- .../arduino/sam/cores/arduino/USARTClass.h | 39 ++++++++++++++++++- 3 files changed, 46 insertions(+), 12 deletions(-) diff --git a/hardware/arduino/sam/cores/arduino/UARTClass.cpp b/hardware/arduino/sam/cores/arduino/UARTClass.cpp index c81af2cac..93db26272 100644 --- a/hardware/arduino/sam/cores/arduino/UARTClass.cpp +++ b/hardware/arduino/sam/cores/arduino/UARTClass.cpp @@ -57,7 +57,7 @@ void UARTClass::init(const uint32_t dwBaudRate, const uint32_t config) _pUart->UART_CR = UART_CR_RSTRX | UART_CR_RSTTX | UART_CR_RXDIS | UART_CR_TXDIS; // Configure mode - _pUart->UART_MR = config | US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHMODE_NORMAL; + _pUart->UART_MR = (config & 0x00000E00) | UART_MR_CHMODE_NORMAL; // Configure baudrate (asynchronous, no oversampling) _pUart->UART_BRGR = (SystemCoreClock / dwBaudRate) >> 4; diff --git a/hardware/arduino/sam/cores/arduino/UARTClass.h b/hardware/arduino/sam/cores/arduino/UARTClass.h index 45dc5197d..d86d04dc4 100644 --- a/hardware/arduino/sam/cores/arduino/UARTClass.h +++ b/hardware/arduino/sam/cores/arduino/UARTClass.h @@ -26,22 +26,21 @@ #include #define SERIAL_8N1 UARTClass::Mode_8N1 -#define SERIAL_8N2 UARTClass::Mode_8N2 #define SERIAL_8E1 UARTClass::Mode_8E1 -#define SERIAL_8E2 UARTClass::Mode_8E2 #define SERIAL_8O1 UARTClass::Mode_8O1 -#define SERIAL_8O2 UARTClass::Mode_8O2 +#define SERIAL_8M1 UARTClass::Mode_8M1 +#define SERIAL_8S1 UARTClass::Mode_8S1 + class UARTClass : public HardwareSerial { public: enum UARTModes { - Mode_8N1 = US_MR_CHRL_8_BIT | US_MR_PAR_NO | US_MR_NBSTOP_1_BIT, - Mode_8N2 = US_MR_CHRL_8_BIT | US_MR_PAR_NO | US_MR_NBSTOP_2_BIT, - Mode_8E1 = US_MR_CHRL_8_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_1_BIT, - Mode_8E2 = US_MR_CHRL_8_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_2_BIT, - Mode_8O1 = US_MR_CHRL_8_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_1_BIT, - Mode_8O2 = US_MR_CHRL_8_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_2_BIT, + Mode_8N1 = US_MR_CHRL_8_BIT | US_MR_NBSTOP_1_BIT | UART_MR_PAR_NO, + Mode_8E1 = US_MR_CHRL_8_BIT | US_MR_NBSTOP_1_BIT | UART_MR_PAR_EVEN, + Mode_8O1 = US_MR_CHRL_8_BIT | US_MR_NBSTOP_1_BIT | UART_MR_PAR_ODD, + Mode_8M1 = US_MR_CHRL_8_BIT | US_MR_NBSTOP_1_BIT | UART_MR_PAR_MARK, + Mode_8S1 = US_MR_CHRL_8_BIT | US_MR_NBSTOP_1_BIT | UART_MR_PAR_SPACE, }; UARTClass(Uart* pUart, IRQn_Type dwIrq, uint32_t dwId, RingBuffer* pRx_buffer, RingBuffer* pTx_buffer); diff --git a/hardware/arduino/sam/cores/arduino/USARTClass.h b/hardware/arduino/sam/cores/arduino/USARTClass.h index 27152318c..899488016 100644 --- a/hardware/arduino/sam/cores/arduino/USARTClass.h +++ b/hardware/arduino/sam/cores/arduino/USARTClass.h @@ -32,18 +32,36 @@ #define SERIAL_5N2 USARTClass::Mode_5N2 #define SERIAL_6N2 USARTClass::Mode_6N2 #define SERIAL_7N2 USARTClass::Mode_7N2 +#define SERIAL_8N2 USARTClass::Mode_8N2 #define SERIAL_5E1 USARTClass::Mode_5E1 #define SERIAL_6E1 USARTClass::Mode_6E1 #define SERIAL_7E1 USARTClass::Mode_7E1 #define SERIAL_5E2 USARTClass::Mode_5E2 #define SERIAL_6E2 USARTClass::Mode_6E2 #define SERIAL_7E2 USARTClass::Mode_7E2 +#define SERIAL_8E2 USARTClass::Mode_8E2 #define SERIAL_5O1 USARTClass::Mode_5O1 #define SERIAL_6O1 USARTClass::Mode_6O1 #define SERIAL_7O1 USARTClass::Mode_7O1 #define SERIAL_5O2 USARTClass::Mode_5O2 #define SERIAL_6O2 USARTClass::Mode_6O2 #define SERIAL_7O2 USARTClass::Mode_7O2 +#define SERIAL_8O2 USARTClass::Mode_8O2 +#define SERIAL_5M1 USARTClass::Mode_5M1 +#define SERIAL_6M1 USARTClass::Mode_6M1 +#define SERIAL_7M1 USARTClass::Mode_7M1 +#define SERIAL_5M2 USARTClass::Mode_5M2 +#define SERIAL_6M2 USARTClass::Mode_6M2 +#define SERIAL_7M2 USARTClass::Mode_7M2 +#define SERIAL_8M2 USARTClass::Mode_8M2 +#define SERIAL_5S1 USARTClass::Mode_5S1 +#define SERIAL_6S1 USARTClass::Mode_6S1 +#define SERIAL_7S1 USARTClass::Mode_7S1 +#define SERIAL_5S2 USARTClass::Mode_5S2 +#define SERIAL_6S2 USARTClass::Mode_6S2 +#define SERIAL_7S2 USARTClass::Mode_7S2 +#define SERIAL_8S2 USARTClass::Mode_8S2 + class USARTClass : public UARTClass { @@ -59,19 +77,36 @@ class USARTClass : public UARTClass Mode_5N2 = US_MR_CHRL_5_BIT | US_MR_PAR_NO | US_MR_NBSTOP_2_BIT, Mode_6N2 = US_MR_CHRL_6_BIT | US_MR_PAR_NO | US_MR_NBSTOP_2_BIT, Mode_7N2 = US_MR_CHRL_7_BIT | US_MR_PAR_NO | US_MR_NBSTOP_2_BIT, + Mode_8N2 = US_MR_CHRL_8_BIT | US_MR_PAR_NO | US_MR_NBSTOP_2_BIT, Mode_5E1 = US_MR_CHRL_5_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_1_BIT, Mode_6E1 = US_MR_CHRL_6_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_1_BIT, Mode_7E1 = US_MR_CHRL_7_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_1_BIT, Mode_5E2 = US_MR_CHRL_5_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_2_BIT, Mode_6E2 = US_MR_CHRL_6_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_2_BIT, Mode_7E2 = US_MR_CHRL_7_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_2_BIT, - Mode_5O1 = US_MR_CHRL_5_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_1_BIT, + Mode_8E2 = US_MR_CHRL_8_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_2_BIT, + Mode_5O1 = US_MR_CHRL_5_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_1_BIT, Mode_6O1 = US_MR_CHRL_6_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_1_BIT, Mode_7O1 = US_MR_CHRL_7_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_1_BIT, Mode_5O2 = US_MR_CHRL_5_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_2_BIT, Mode_6O2 = US_MR_CHRL_6_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_2_BIT, Mode_7O2 = US_MR_CHRL_7_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_2_BIT, - }; + Mode_8O2 = US_MR_CHRL_8_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_2_BIT, + Mode_5M1 = US_MR_CHRL_5_BIT | US_MR_PAR_MARK | US_MR_NBSTOP_1_BIT, + Mode_6M1 = US_MR_CHRL_6_BIT | US_MR_PAR_MARK | US_MR_NBSTOP_1_BIT, + Mode_7M1 = US_MR_CHRL_7_BIT | US_MR_PAR_MARK | US_MR_NBSTOP_1_BIT, + Mode_5M2 = US_MR_CHRL_5_BIT | US_MR_PAR_MARK | US_MR_NBSTOP_2_BIT, + Mode_6M2 = US_MR_CHRL_6_BIT | US_MR_PAR_MARK | US_MR_NBSTOP_2_BIT, + Mode_7M2 = US_MR_CHRL_7_BIT | US_MR_PAR_MARK | US_MR_NBSTOP_2_BIT, + Mode_8M2 = US_MR_CHRL_8_BIT | US_MR_PAR_MARK | US_MR_NBSTOP_2_BIT, + Mode_5S1 = US_MR_CHRL_5_BIT | US_MR_PAR_SPACE | US_MR_NBSTOP_1_BIT, + Mode_6S1 = US_MR_CHRL_6_BIT | US_MR_PAR_SPACE | US_MR_NBSTOP_1_BIT, + Mode_7S1 = US_MR_CHRL_7_BIT | US_MR_PAR_SPACE | US_MR_NBSTOP_1_BIT, + Mode_5S2 = US_MR_CHRL_5_BIT | US_MR_PAR_SPACE | US_MR_NBSTOP_2_BIT, + Mode_6S2 = US_MR_CHRL_6_BIT | US_MR_PAR_SPACE | US_MR_NBSTOP_2_BIT, + Mode_7S2 = US_MR_CHRL_7_BIT | US_MR_PAR_SPACE | US_MR_NBSTOP_2_BIT, + Mode_8S2 = US_MR_CHRL_8_BIT | US_MR_PAR_SPACE | US_MR_NBSTOP_2_BIT, + }; USARTClass( Usart* pUsart, IRQn_Type dwIrq, uint32_t dwId, RingBuffer* pRx_buffer, RingBuffer* pTx_buffer ); From 87865ac19df2f55e3d073cf5dc7ba08c0de4c584 Mon Sep 17 00:00:00 2001 From: Arturo Guadalupi Date: Mon, 12 Jan 2015 14:37:50 +0100 Subject: [PATCH 128/148] Update setCursor.ino Changedfrom (thisRow, thisCol) to lcd.Setcursor(thisCol, thisRow). It was an error. --- libraries/LiquidCrystal/examples/setCursor/setCursor.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/LiquidCrystal/examples/setCursor/setCursor.ino b/libraries/LiquidCrystal/examples/setCursor/setCursor.ino index e45c49181..951c8a576 100644 --- a/libraries/LiquidCrystal/examples/setCursor/setCursor.ino +++ b/libraries/LiquidCrystal/examples/setCursor/setCursor.ino @@ -60,7 +60,7 @@ void loop() { // loop over the rows: for (int thisRow = 0; thisRow < numCols; thisRow++) { // set the cursor position: - lcd.setCursor(thisRow,thisCol); + lcd.setCursor(thisCol,thisRow); // print the letter: lcd.write(thisLetter); delay(200); From 99715d22d9afbf06b06a17fa324035d278598cec Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Thu, 27 Nov 2014 15:41:09 +0100 Subject: [PATCH 129/148] Removed unused classes Commander.java and Webserver.java --- .../processing/app/Commander.java.disabled | 297 --------- app/src/processing/app/WebServer.java | 573 ------------------ 2 files changed, 870 deletions(-) delete mode 100644 app/src/processing/app/Commander.java.disabled delete mode 100644 app/src/processing/app/WebServer.java diff --git a/app/src/processing/app/Commander.java.disabled b/app/src/processing/app/Commander.java.disabled deleted file mode 100644 index 88d9cb598..000000000 --- a/app/src/processing/app/Commander.java.disabled +++ /dev/null @@ -1,297 +0,0 @@ -/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */ - -/* - Part of the Processing project - http://processing.org - - Copyright (c) 2008 Ben Fry and Casey Reas - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software Foundation, - Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - */ - -package processing.app; - - -import java.io.File; -import java.io.IOException; -import java.io.PrintStream; - -import processing.core.PApplet; - -import processing.app.debug.*; - - -/** - * Class to handle running Processing from the command line. - *

    - * --help               Show the help text.
    - * 
    - * --sketch=<name&rt;      Specify the sketch folder (required)
    - * --output=<name&rt;      Specify the output folder (required and
    - *                      cannot be the same as the sketch folder.)
    - * 
    - * --preprocess         Preprocess a sketch into .java files.
    - * --build              Preprocess and compile a sketch into .class files.
    - * --run                Preprocess, compile, and run a sketch.
    - * --present            Preprocess, compile, and run a sketch full screen.
    - * 
    - * --export-applet      Export an applet.
    - * --export-application Export an application.
    - * --platform           Specify the platform (export to application only).
    - *                      Should be one of 'windows', 'macosx', or 'linux'.
    - * 
    - * --preferences=<file&rt; Specify a preferences file to use (optional).
    - * 
    - * - * To build the command line version, first build for your platform, - * then cd to processing/build/cmd and type 'dist.sh'. This will create a - * usable installation plus a zip file of the same. - * - * @author fry - */ -public class Commander implements RunnerListener { - static final String helpArg = "--help"; - static final String preprocArg = "--preprocess"; - static final String buildArg = "--build"; - static final String runArg = "--run"; - static final String presentArg = "--present"; - static final String sketchArg = "--sketch="; - static final String outputArg = "--output="; - static final String exportAppletArg = "--export-applet"; - static final String exportApplicationArg = "--export-application"; - static final String platformArg = "--platform="; - static final String preferencesArg = "--preferences="; - - static final int HELP = -1; - static final int PREPROCESS = 0; - static final int BUILD = 1; - static final int RUN = 2; - static final int PRESENT = 3; - static final int EXPORT_APPLET = 4; - static final int EXPORT_APPLICATION = 5; - - Sketch sketch; - - - static public void main(String[] args) { - // init the platform so that prefs and other native code is ready to go - Base.initPlatform(); - // make sure a full JDK is installed - Base.initRequirements(); - // run static initialization that grabs all the prefs - //Preferences.init(null); - // launch command line handler - new Commander(args); - } - - - public Commander(String[] args) { - String sketchFolder = null; - String pdePath = null; // path to the .pde file - String outputPath = null; - String preferencesPath = null; - int platformIndex = PApplet.platform; // default to this platform - int mode = HELP; - - for (String arg : args) { - if (arg.length() == 0) { - // ignore it, just the crappy shell script - - } else if (arg.equals(helpArg)) { - // mode already set to HELP - - } else if (arg.equals(buildArg)) { - mode = BUILD; - - } else if (arg.equals(runArg)) { - mode = RUN; - - } else if (arg.equals(presentArg)) { - mode = PRESENT; - - } else if (arg.equals(preprocArg)) { - mode = PREPROCESS; - - } else if (arg.equals(exportAppletArg)) { - mode = EXPORT_APPLET; - - } else if (arg.equals(exportApplicationArg)) { - mode = EXPORT_APPLICATION; - - } else if (arg.startsWith(platformArg)) { - String platformStr = arg.substring(platformArg.length()); - platformIndex = Base.getPlatformIndex(platformStr); - if (platformIndex == -1) { - complainAndQuit(platformStr + " should instead be " + - "'windows', 'macosx', or 'linux'."); - } - } else if (arg.startsWith(sketchArg)) { - sketchFolder = arg.substring(sketchArg.length()); - File sketchy = new File(sketchFolder); - File pdeFile = new File(sketchy, sketchy.getName() + ".pde"); - pdePath = pdeFile.getAbsolutePath(); - - } else if (arg.startsWith(outputArg)) { - outputPath = arg.substring(outputArg.length()); - - } else { - complainAndQuit("I don't know anything about " + arg + "."); - } - } - - if ((outputPath == null) && - (mode == PREPROCESS || mode == BUILD || - mode == RUN || mode == PRESENT)) { - complainAndQuit("An output path must be specified when using " + - preprocArg + ", " + buildArg + ", " + - runArg + ", or " + presentArg + "."); - } - - if (mode == HELP) { - printCommandLine(System.out); - System.exit(0); - } - - // --present --platform=windows "--sketch=/Applications/Processing 0148/examples/Basics/Arrays/Array" --output=test-build - - File outputFolder = new File(outputPath); - if (!outputFolder.exists()) { - if (!outputFolder.mkdirs()) { - complainAndQuit("Could not create the output folder."); - } - } - - // run static initialization that grabs all the prefs - // (also pass in a prefs path if that was specified) - Preferences.init(preferencesPath); - - if (sketchFolder == null) { - complainAndQuit("No sketch path specified."); - - } else if (outputPath.equals(pdePath)) { - complainAndQuit("The sketch path and output path cannot be identical."); - - } else if (!pdePath.toLowerCase().endsWith(".pde")) { - complainAndQuit("Sketch path must point to the main .pde file."); - - } else { - //Sketch sketch = null; - boolean success = false; - - try { - sketch = new Sketch(null, pdePath); - if (mode == PREPROCESS) { - success = sketch.preprocess(outputPath) != null; - - } else if (mode == BUILD) { - success = sketch.build(outputPath) != null; - - } else if (mode == RUN || mode == PRESENT) { - String className = sketch.build(outputPath); - if (className != null) { - success = true; - Runner runner = - new Runner(sketch, className, mode == PRESENT, this); - runner.launch(); - - } else { - success = false; - } - - } else if (mode == EXPORT_APPLET) { - if (outputPath != null) { - success = sketch.exportApplet(outputPath); - } else { - String target = sketchFolder + File.separatorChar + "applet"; - success = sketch.exportApplet(target); - } - } else if (mode == EXPORT_APPLICATION) { - if (outputPath != null) { - success = sketch.exportApplication(outputPath, platformIndex); - } else { - //String sketchFolder = - // pdePath.substring(0, pdePath.lastIndexOf(File.separatorChar)); - outputPath = - sketchFolder + File.separatorChar + - "application." + Base.getPlatformName(platformIndex); - success = sketch.exportApplication(outputPath, platformIndex); - } - } - System.exit(success ? 0 : 1); - - } catch (RunnerException re) { - statusError(re); - - } catch (IOException e) { - e.printStackTrace(); - System.exit(1); - } - } - } - - - public void statusError(String message) { - System.err.println(message); - } - - - public void statusError(Exception exception) { - if (exception instanceof RunnerException) { - RunnerException re = (RunnerException) exception; - - // format the runner exception like emacs - //blah.java:2:10:2:13: Syntax Error: This is a big error message - String filename = sketch.getCode(re.getCodeIndex()).getFileName(); - int line = re.getCodeLine(); - int column = re.getCodeColumn(); - if (column == -1) column = 0; - // TODO if column not specified, should just select the whole line. - System.err.println(filename + ":" + - line + ":" + column + ":" + - line + ":" + column + ":" + " " + re.getMessage()); - } else { - exception.printStackTrace(); - } - } - - - static void complainAndQuit(String lastWords) { - printCommandLine(System.err); - System.err.println(lastWords); - System.exit(1); - } - - - static void printCommandLine(PrintStream out) { - out.println("Processing " + Base.VERSION_NAME + " rocks the console."); - out.println(); - out.println("--help Show this help text."); - out.println(); - out.println("--sketch= Specify the sketch folder (required)"); - out.println("--output= Specify the output folder (required and"); - out.println(" cannot be the same as the sketch folder.)"); - out.println(); - out.println("--preprocess Preprocess a sketch into .java files."); - out.println("--build Preprocess and compile a sketch into .class files."); - out.println("--run Preprocess, compile, and run a sketch."); - out.println("--present Preprocess, compile, and run a sketch full screen."); - out.println(); - out.println("--export-applet Export an applet."); - out.println("--export-application Export an application."); - out.println("--platform Specify the platform (export to application only)."); - out.println(" Should be one of 'windows', 'macosx', or 'linux'."); - out.println(); - out.println("--preferences= Specify a preferences file to use (optional)."); - } -} \ No newline at end of file diff --git a/app/src/processing/app/WebServer.java b/app/src/processing/app/WebServer.java deleted file mode 100644 index fc2089d8e..000000000 --- a/app/src/processing/app/WebServer.java +++ /dev/null @@ -1,573 +0,0 @@ -package processing.app; - -import java.io.*; -import java.net.*; -import java.util.*; -import java.util.zip.*; - -//import javax.swing.SwingUtilities; - -/** - * This code is placed here in anticipation of running the reference from an - * internal web server that reads the docs from a zip file, instead of using - * thousands of .html files on the disk, which is really inefficient. - *

    - * This is a very simple, multi-threaded HTTP server, originally based on - * this article on java.sun.com. - */ -public class WebServer implements HttpConstants { - - /* Where worker threads stand idle */ - static Vector threads = new Vector(); - - /* the web server's virtual root */ - //static File root; - - /* timeout on client connections */ - static int timeout = 10000; - - /* max # worker threads */ - static int workers = 5; - -// static PrintStream log = System.out; - - - /* - static void loadProps() throws IOException { - File f = new File - (System.getProperty("java.home")+File.separator+ - "lib"+File.separator+"www-server.properties"); - if (f.exists()) { - InputStream is =new BufferedInputStream(new - FileInputStream(f)); - props.load(is); - is.close(); - String r = props.getProperty("root"); - if (r != null) { - root = new File(r); - if (!root.exists()) { - throw new Error(root + " doesn't exist as server root"); - } - } - r = props.getProperty("timeout"); - if (r != null) { - timeout = Integer.parseInt(r); - } - r = props.getProperty("workers"); - if (r != null) { - workers = Integer.parseInt(r); - } - r = props.getProperty("log"); - if (r != null) { - p("opening log file: " + r); - log = new PrintStream(new BufferedOutputStream( - new FileOutputStream(r))); - } - } - - // if no properties were specified, choose defaults - if (root == null) { - root = new File(System.getProperty("user.dir")); - } - if (timeout <= 1000) { - timeout = 5000; - } - if (workers < 25) { - workers = 5; - } - if (log == null) { - p("logging to stdout"); - log = System.out; - } - } - - static void printProps() { - p("root="+root); - p("timeout="+timeout); - p("workers="+workers); - } - */ - - - /* print to stdout */ -// protected static void p(String s) { -// System.out.println(s); -// } - - /* print to the log file */ - protected static void log(String s) { - if (false) { - System.out.println(s); - } -// synchronized (log) { -// log.println(s); -// log.flush(); -// } - } - - - //public static void main(String[] a) throws Exception { - static public int launch(String zipPath) throws IOException { - final ZipFile zip = new ZipFile(zipPath); - final HashMap entries = new HashMap(); - Enumeration en = zip.entries(); - while (en.hasMoreElements()) { - ZipEntry entry = (ZipEntry) en.nextElement(); - entries.put(entry.getName(), entry); - } - -// if (a.length > 0) { -// port = Integer.parseInt(a[0]); -// } -// loadProps(); -// printProps(); - // start worker threads - for (int i = 0; i < workers; ++i) { - WebServerWorker w = new WebServerWorker(zip, entries); - Thread t = new Thread(w, "Web Server Worker #" + i); - t.start(); - threads.addElement(w); - } - - final int port = 8080; - - //SwingUtilities.invokeLater(new Runnable() { - Runnable r = new Runnable() { - public void run() { - try { - ServerSocket ss = new ServerSocket(port); - while (true) { - Socket s = ss.accept(); - WebServerWorker w = null; - synchronized (threads) { - if (threads.isEmpty()) { - WebServerWorker ws = new WebServerWorker(zip, entries); - ws.setSocket(s); - (new Thread(ws, "additional worker")).start(); - } else { - w = (WebServerWorker) threads.elementAt(0); - threads.removeElementAt(0); - w.setSocket(s); - } - } - } - } catch (IOException e) { - e.printStackTrace(); - } - } - }; - new Thread(r).start(); -// }); - return port; - } -} - - -class WebServerWorker /*extends WebServer*/ implements HttpConstants, Runnable { - ZipFile zip; - HashMap entries; - - final static int BUF_SIZE = 2048; - - static final byte[] EOL = { (byte)'\r', (byte)'\n' }; - - /* buffer to use for requests */ - byte[] buf; - /* Socket to client we're handling */ - private Socket s; - - WebServerWorker(ZipFile zip, HashMap entries) { - this.entries = entries; - this.zip = zip; - - buf = new byte[BUF_SIZE]; - s = null; - } - -// Worker() { -// buf = new byte[BUF_SIZE]; -// s = null; -// } -// - synchronized void setSocket(Socket s) { - this.s = s; - notify(); - } - - public synchronized void run() { - while(true) { - if (s == null) { - /* nothing to do */ - try { - wait(); - } catch (InterruptedException e) { - /* should not happen */ - continue; - } - } - try { - handleClient(); - } catch (Exception e) { - e.printStackTrace(); - } - /* go back in wait queue if there's fewer - * than numHandler connections. - */ - s = null; - Vector pool = WebServer.threads; - synchronized (pool) { - if (pool.size() >= WebServer.workers) { - /* too many threads, exit this one */ - return; - } else { - pool.addElement(this); - } - } - } - } - - - void handleClient() throws IOException { - InputStream is = new BufferedInputStream(s.getInputStream()); - PrintStream ps = new PrintStream(s.getOutputStream()); - // we will only block in read for this many milliseconds - // before we fail with java.io.InterruptedIOException, - // at which point we will abandon the connection. - s.setSoTimeout(WebServer.timeout); - s.setTcpNoDelay(true); - // zero out the buffer from last time - for (int i = 0; i < BUF_SIZE; i++) { - buf[i] = 0; - } - try { - // We only support HTTP GET/HEAD, and don't support any fancy HTTP - // options, so we're only interested really in the first line. - int nread = 0, r = 0; - -outerloop: - while (nread < BUF_SIZE) { - r = is.read(buf, nread, BUF_SIZE - nread); - if (r == -1) { - return; // EOF - } - int i = nread; - nread += r; - for (; i < nread; i++) { - if (buf[i] == (byte)'\n' || buf[i] == (byte)'\r') { - break outerloop; // read one line - } - } - } - - /* are we doing a GET or just a HEAD */ - boolean doingGet; - /* beginning of file name */ - int index; - if (buf[0] == (byte)'G' && - buf[1] == (byte)'E' && - buf[2] == (byte)'T' && - buf[3] == (byte)' ') { - doingGet = true; - index = 4; - } else if (buf[0] == (byte)'H' && - buf[1] == (byte)'E' && - buf[2] == (byte)'A' && - buf[3] == (byte)'D' && - buf[4] == (byte)' ') { - doingGet = false; - index = 5; - } else { - /* we don't support this method */ - ps.print("HTTP/1.0 " + HTTP_BAD_METHOD + - " unsupported method type: "); - ps.write(buf, 0, 5); - ps.write(EOL); - ps.flush(); - s.close(); - return; - } - - int i = 0; - /* find the file name, from: - * GET /foo/bar.html HTTP/1.0 - * extract "/foo/bar.html" - */ - for (i = index; i < nread; i++) { - if (buf[i] == (byte)' ') { - break; - } - } - - String fname = new String(buf, index, i-index); - // get the zip entry, remove the front slash - ZipEntry entry = entries.get(fname.substring(1)); - //System.out.println(fname + " " + entry); - boolean ok = printHeaders(entry, ps); - if (entry != null) { - InputStream stream = zip.getInputStream(entry); - if (doingGet && ok) { - sendFile(stream, ps); - } - } else { - send404(ps); - } - /* - String fname = - (new String(buf, 0, index, i-index)).replace('/', File.separatorChar); - if (fname.startsWith(File.separator)) { - fname = fname.substring(1); - } - File targ = new File(WebServer.root, fname); - if (targ.isDirectory()) { - File ind = new File(targ, "index.html"); - if (ind.exists()) { - targ = ind; - } - } - boolean OK = printHeaders(targ, ps); - if (doingGet) { - if (OK) { - sendFile(targ, ps); - } else { - send404(targ, ps); - } - } - */ - } finally { - s.close(); - } - } - - - boolean printHeaders(ZipEntry targ, PrintStream ps) throws IOException { - boolean ret = false; - int rCode = 0; - if (targ == null) { - rCode = HTTP_NOT_FOUND; - ps.print("HTTP/1.0 " + HTTP_NOT_FOUND + " Not Found"); - ps.write(EOL); - ret = false; - } else { - rCode = HTTP_OK; - ps.print("HTTP/1.0 " + HTTP_OK + " OK"); - ps.write(EOL); - ret = true; - } - if (targ != null) { - WebServer.log("From " +s.getInetAddress().getHostAddress()+": GET " + targ.getName()+" --> "+rCode); - } - ps.print("Server: Processing Documentation Server"); - ps.write(EOL); - ps.print("Date: " + (new Date())); - ps.write(EOL); - if (ret) { - if (!targ.isDirectory()) { - ps.print("Content-length: " + targ.getSize()); - ps.write(EOL); - ps.print("Last Modified: " + new Date(targ.getTime())); - ps.write(EOL); - String name = targ.getName(); - int ind = name.lastIndexOf('.'); - String ct = null; - if (ind > 0) { - ct = (String) map.get(name.substring(ind)); - } - if (ct == null) { - //System.err.println("unknown content type " + name.substring(ind)); - ct = "application/x-unknown-content-type"; - } - ps.print("Content-type: " + ct); - ps.write(EOL); - } else { - ps.print("Content-type: text/html"); - ps.write(EOL); - } - } - ps.write(EOL); // adding another newline here [fry] - return ret; - } - - - boolean printHeaders(File targ, PrintStream ps) throws IOException { - boolean ret = false; - int rCode = 0; - if (!targ.exists()) { - rCode = HTTP_NOT_FOUND; - ps.print("HTTP/1.0 " + HTTP_NOT_FOUND + " Not Found"); - ps.write(EOL); - ret = false; - } else { - rCode = HTTP_OK; - ps.print("HTTP/1.0 " + HTTP_OK+" OK"); - ps.write(EOL); - ret = true; - } - WebServer.log("From " +s.getInetAddress().getHostAddress()+": GET " + targ.getAbsolutePath()+"-->"+rCode); - ps.print("Server: Simple java"); - ps.write(EOL); - ps.print("Date: " + (new Date())); - ps.write(EOL); - if (ret) { - if (!targ.isDirectory()) { - ps.print("Content-length: " + targ.length()); - ps.write(EOL); - ps.print("Last Modified: " + new Date(targ.lastModified())); - ps.write(EOL); - String name = targ.getName(); - int ind = name.lastIndexOf('.'); - String ct = null; - if (ind > 0) { - ct = (String) map.get(name.substring(ind)); - } - if (ct == null) { - ct = "unknown/unknown"; - } - ps.print("Content-type: " + ct); - ps.write(EOL); - } else { - ps.print("Content-type: text/html"); - ps.write(EOL); - } - } - return ret; - } - - - void send404(PrintStream ps) throws IOException { - ps.write(EOL); - ps.write(EOL); - ps.print("

    404 Not Found

    "+ - "The requested resource was not found."); - ps.write(EOL); - ps.write(EOL); - } - - - void sendFile(File targ, PrintStream ps) throws IOException { - InputStream is = null; - ps.write(EOL); - if (targ.isDirectory()) { - listDirectory(targ, ps); - return; - } else { - is = new FileInputStream(targ.getAbsolutePath()); - } - sendFile(is, ps); - } - - - void sendFile(InputStream is, PrintStream ps) throws IOException { - try { - int n; - while ((n = is.read(buf)) > 0) { - ps.write(buf, 0, n); - } - } finally { - is.close(); - } - } - - /* mapping of file extensions to content-types */ - static java.util.Hashtable map = new java.util.Hashtable(); - - static { - fillMap(); - } - static void setSuffix(String k, String v) { - map.put(k, v); - } - - static void fillMap() { - setSuffix("", "content/unknown"); - - setSuffix(".uu", "application/octet-stream"); - setSuffix(".exe", "application/octet-stream"); - setSuffix(".ps", "application/postscript"); - setSuffix(".zip", "application/zip"); - setSuffix(".sh", "application/x-shar"); - setSuffix(".tar", "application/x-tar"); - setSuffix(".snd", "audio/basic"); - setSuffix(".au", "audio/basic"); - setSuffix(".wav", "audio/x-wav"); - - setSuffix(".gif", "image/gif"); - setSuffix(".jpg", "image/jpeg"); - setSuffix(".jpeg", "image/jpeg"); - - setSuffix(".htm", "text/html"); - setSuffix(".html", "text/html"); - setSuffix(".css", "text/css"); - setSuffix(".java", "text/javascript"); - - setSuffix(".txt", "text/plain"); - setSuffix(".java", "text/plain"); - - setSuffix(".c", "text/plain"); - setSuffix(".cc", "text/plain"); - setSuffix(".c++", "text/plain"); - setSuffix(".h", "text/plain"); - setSuffix(".pl", "text/plain"); - } - - void listDirectory(File dir, PrintStream ps) throws IOException { - ps.println("Directory listing

    \n"); - ps.println("Parent Directory
    \n"); - String[] list = dir.list(); - for (int i = 0; list != null && i < list.length; i++) { - File f = new File(dir, list[i]); - if (f.isDirectory()) { - ps.println(""+list[i]+"/
    "); - } else { - ps.println(""+list[i]+"



    " + (new Date()) + ""); - } - -} - - -interface HttpConstants { - /** 2XX: generally "OK" */ - public static final int HTTP_OK = 200; - public static final int HTTP_CREATED = 201; - public static final int HTTP_ACCEPTED = 202; - public static final int HTTP_NOT_AUTHORITATIVE = 203; - public static final int HTTP_NO_CONTENT = 204; - public static final int HTTP_RESET = 205; - public static final int HTTP_PARTIAL = 206; - - /** 3XX: relocation/redirect */ - public static final int HTTP_MULT_CHOICE = 300; - public static final int HTTP_MOVED_PERM = 301; - public static final int HTTP_MOVED_TEMP = 302; - public static final int HTTP_SEE_OTHER = 303; - public static final int HTTP_NOT_MODIFIED = 304; - public static final int HTTP_USE_PROXY = 305; - - /** 4XX: client error */ - public static final int HTTP_BAD_REQUEST = 400; - public static final int HTTP_UNAUTHORIZED = 401; - public static final int HTTP_PAYMENT_REQUIRED = 402; - public static final int HTTP_FORBIDDEN = 403; - public static final int HTTP_NOT_FOUND = 404; - public static final int HTTP_BAD_METHOD = 405; - public static final int HTTP_NOT_ACCEPTABLE = 406; - public static final int HTTP_PROXY_AUTH = 407; - public static final int HTTP_CLIENT_TIMEOUT = 408; - public static final int HTTP_CONFLICT = 409; - public static final int HTTP_GONE = 410; - public static final int HTTP_LENGTH_REQUIRED = 411; - public static final int HTTP_PRECON_FAILED = 412; - public static final int HTTP_ENTITY_TOO_LARGE = 413; - public static final int HTTP_REQ_TOO_LONG = 414; - public static final int HTTP_UNSUPPORTED_TYPE = 415; - - /** 5XX: server error */ - public static final int HTTP_SERVER_ERROR = 500; - public static final int HTTP_INTERNAL_ERROR = 501; - public static final int HTTP_BAD_GATEWAY = 502; - public static final int HTTP_UNAVAILABLE = 503; - public static final int HTTP_GATEWAY_TIMEOUT = 504; - public static final int HTTP_VERSION = 505; -} From 29d2ab72e257ae50b3656e783a5060572248cd91 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Tue, 13 Jan 2015 23:08:31 +0100 Subject: [PATCH 130/148] Fixed a bunch of simple warnings in java code --- app/src/processing/app/syntax/SyntaxUtilities.java | 2 -- app/src/processing/app/tools/AutoFormat.java | 1 - app/src/processing/app/tools/MenuScroller.java | 1 - .../app/ReplacingTextGeneratesTwoUndoActionsTest.java | 1 - arduino-core/src/processing/app/windows/Options.java | 1 + 5 files changed, 1 insertion(+), 5 deletions(-) diff --git a/app/src/processing/app/syntax/SyntaxUtilities.java b/app/src/processing/app/syntax/SyntaxUtilities.java index 84fc1b4d1..6eef977a0 100644 --- a/app/src/processing/app/syntax/SyntaxUtilities.java +++ b/app/src/processing/app/syntax/SyntaxUtilities.java @@ -131,7 +131,6 @@ public class SyntaxUtilities Font defaultFont = gfx.getFont(); Color defaultColor = gfx.getColor(); - int offset = 0; for(;;) { byte id = tokens.id; @@ -155,7 +154,6 @@ public class SyntaxUtilities else x = Utilities.drawTabbedText(line, x, y, gfx, expander, 0); line.offset += length; - offset += length; tokens = tokens.next; } diff --git a/app/src/processing/app/tools/AutoFormat.java b/app/src/processing/app/tools/AutoFormat.java index c2c109c06..572ea692c 100644 --- a/app/src/processing/app/tools/AutoFormat.java +++ b/app/src/processing/app/tools/AutoFormat.java @@ -639,7 +639,6 @@ public class AutoFormat implements Tool { case '\'': string[j++] = c; cc = getchr(); - int count = 0; while(cc != c && EOF == 0) { // max. length of line should be 256 diff --git a/app/src/processing/app/tools/MenuScroller.java b/app/src/processing/app/tools/MenuScroller.java index 2f0cd80cf..cb7495650 100644 --- a/app/src/processing/app/tools/MenuScroller.java +++ b/app/src/processing/app/tools/MenuScroller.java @@ -3,7 +3,6 @@ */ package processing.app.tools; -import java.awt.BorderLayout; import java.awt.Color; import java.awt.Component; import java.awt.Dimension; diff --git a/app/test/processing/app/ReplacingTextGeneratesTwoUndoActionsTest.java b/app/test/processing/app/ReplacingTextGeneratesTwoUndoActionsTest.java index 8f7f7ca77..bd03f1108 100644 --- a/app/test/processing/app/ReplacingTextGeneratesTwoUndoActionsTest.java +++ b/app/test/processing/app/ReplacingTextGeneratesTwoUndoActionsTest.java @@ -3,7 +3,6 @@ package processing.app; import org.fest.swing.fixture.JMenuItemFixture; import org.junit.Test; import processing.app.helpers.JEditTextAreaFixture; -import processing.app.syntax.JEditTextArea; import static org.junit.Assert.assertEquals; diff --git a/arduino-core/src/processing/app/windows/Options.java b/arduino-core/src/processing/app/windows/Options.java index 6f5239172..acbf43d7c 100644 --- a/arduino-core/src/processing/app/windows/Options.java +++ b/arduino-core/src/processing/app/windows/Options.java @@ -18,6 +18,7 @@ import java.util.*; * @author TB */ public interface Options { + @SuppressWarnings("serial") Map UNICODE_OPTIONS = new HashMap() { { put(OPTION_TYPE_MAPPER, W32APITypeMapper.UNICODE); From ec67b0d4be1fe2913516d6f8ac396a64de3579c6 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Fri, 16 May 2014 01:05:35 +0200 Subject: [PATCH 131/148] Optimized FileUtils.recursiveDelete(File) function --- .../src/processing/app/helpers/FileUtils.java | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/arduino-core/src/processing/app/helpers/FileUtils.java b/arduino-core/src/processing/app/helpers/FileUtils.java index e12fd1fbb..39e49217c 100644 --- a/arduino-core/src/processing/app/helpers/FileUtils.java +++ b/arduino-core/src/processing/app/helpers/FileUtils.java @@ -73,17 +73,11 @@ public class FileUtils { } public static void recursiveDelete(File file) { - if (file == null) { + if (file == null) return; - } if (file.isDirectory()) { - for (File current : file.listFiles()) { - if (current.isDirectory()) { - recursiveDelete(current); - } else { - current.delete(); - } - } + for (File current : file.listFiles()) + recursiveDelete(current); } file.delete(); } From 56b9f1cd6fc24e09f56cbd234fd1c35d0a74c0c4 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Thu, 1 May 2014 16:17:43 +0200 Subject: [PATCH 132/148] Fixed NPE when currently selected platform is no more installed. BaseNoGui.getTargetBoard() now handles null TargetBoard. Removed unused method Base.getTargetBoard() --- app/src/processing/app/Base.java | 9 ++--- app/src/processing/app/EditorLineStatus.java | 33 +++++++++------- .../src/processing/app/BaseNoGui.java | 38 ++++++++++--------- 3 files changed, 44 insertions(+), 36 deletions(-) diff --git a/app/src/processing/app/Base.java b/app/src/processing/app/Base.java index e5f593997..61752543c 100644 --- a/app/src/processing/app/Base.java +++ b/app/src/processing/app/Base.java @@ -1077,6 +1077,10 @@ public class Base { } public void rebuildBoardsMenu(JMenu toolsMenu, Editor editor) throws Exception { + // If there are no platforms installed skip menu creation + if (BaseNoGui.packages.size() == 0) + return; + JMenu boardsMenu = getBoardCustomMenu(); boolean first = true; @@ -1698,11 +1702,6 @@ public class Base { return BaseNoGui.getBoardPreferences(); } - public static TargetBoard getTargetBoard() { - String boardId = Preferences.get("board"); - return getTargetPlatform().getBoard(boardId); - } - static public File getPortableFolder() { return BaseNoGui.getPortableFolder(); } diff --git a/app/src/processing/app/EditorLineStatus.java b/app/src/processing/app/EditorLineStatus.java index 2ef4e8edb..8420ddd4c 100644 --- a/app/src/processing/app/EditorLineStatus.java +++ b/app/src/processing/app/EditorLineStatus.java @@ -1,5 +1,3 @@ -/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */ - /* Part of the Processing project - http://processing.org @@ -23,18 +21,23 @@ package processing.app; import processing.app.helpers.OSUtils; -import processing.app.syntax.*; -import java.awt.*; +import java.awt.Color; +import java.awt.Dimension; +import java.awt.Font; +import java.awt.Graphics; +import java.awt.Image; import java.awt.geom.Rectangle2D; -import java.util.Map; -import javax.swing.*; +import javax.swing.JComponent; +import processing.app.helpers.PreferencesMap; +import processing.app.syntax.JEditTextArea; /** * Li'l status bar fella that shows the line number. */ +@SuppressWarnings("serial") public class EditorLineStatus extends JComponent { JEditTextArea textarea; int start = -1, stop; @@ -52,7 +55,6 @@ public class EditorLineStatus extends JComponent { String name = ""; String serialport = ""; - public EditorLineStatus(JEditTextArea textarea) { this.textarea = textarea; textarea.editorLineStatus = this; @@ -70,7 +72,6 @@ public class EditorLineStatus extends JComponent { //linestatus.color = #FFFFFF } - public void set(int newStart, int newStop) { if ((newStart == start) && (newStop == stop)) return; @@ -93,11 +94,10 @@ public class EditorLineStatus extends JComponent { repaint(); } - public void paintComponent(Graphics g) { - if (name=="" && serialport=="") { - Map boardPreferences = Base.getBoardPreferences(); - if (boardPreferences!=null) + if (name == "" && serialport == "") { + PreferencesMap boardPreferences = Base.getBoardPreferences(); + if (boardPreferences != null) setBoardName(boardPreferences.get("name")); else setBoardName("-"); @@ -124,8 +124,13 @@ public class EditorLineStatus extends JComponent { } } - public void setBoardName(String name) { this.name = name; } - public void setSerialPort(String serialport) { this.serialport = serialport; } + public void setBoardName(String name) { + this.name = name; + } + + public void setSerialPort(String serialport) { + this.serialport = serialport; + } public Dimension getPreferredSize() { return new Dimension(300, high); diff --git a/arduino-core/src/processing/app/BaseNoGui.java b/arduino-core/src/processing/app/BaseNoGui.java index 6bf376274..e922a9b01 100644 --- a/arduino-core/src/processing/app/BaseNoGui.java +++ b/arduino-core/src/processing/app/BaseNoGui.java @@ -152,6 +152,8 @@ public class BaseNoGui { static public PreferencesMap getBoardPreferences() { TargetBoard board = getTargetBoard(); + if (board == null) + return null; PreferencesMap prefs = new PreferencesMap(board.getPreferences()); for (String menuId : board.getMenuIds()) { @@ -343,8 +345,11 @@ public class BaseNoGui { } public static TargetBoard getTargetBoard() { + TargetPlatform targetPlatform = getTargetPlatform(); + if (targetPlatform == null) + return null; String boardId = PreferencesData.get("board"); - return getTargetPlatform().getBoard(boardId); + return targetPlatform.getBoard(boardId); } /** @@ -669,28 +674,27 @@ public class BaseNoGui { } static public void onBoardOrPortChange() { - TargetPlatform targetPlatform = getTargetPlatform(); - if (targetPlatform == null) - return; - - // Calculate paths for libraries and examples examplesFolder = getContentFile("examples"); toolsFolder = getContentFile("tools"); - - File platformFolder = targetPlatform.getFolder(); librariesFolders = new ArrayList(); librariesFolders.add(getContentFile("libraries")); - String core = getBoardPreferences().get("build.core"); - if (core.contains(":")) { - String referencedCore = core.split(":")[0]; - TargetPlatform referencedPlatform = getTargetPlatform(referencedCore, targetPlatform.getId()); - if (referencedPlatform != null) { - File referencedPlatformFolder = referencedPlatform.getFolder(); - librariesFolders.add(new File(referencedPlatformFolder, "libraries")); + + // Add library folder for the current selected platform + TargetPlatform targetPlatform = getTargetPlatform(); + if (targetPlatform != null) { + String core = getBoardPreferences().get("build.core"); + if (core.contains(":")) { + String referencedCore = core.split(":")[0]; + TargetPlatform referencedPlatform = getTargetPlatform(referencedCore, targetPlatform.getId()); + if (referencedPlatform != null) { + File referencedPlatformFolder = referencedPlatform.getFolder(); + librariesFolders.add(new File(referencedPlatformFolder, "libraries")); + } } + File platformFolder = targetPlatform.getFolder(); + librariesFolders.add(new File(platformFolder, "libraries")); + librariesFolders.add(getSketchbookLibrariesFolder()); } - librariesFolders.add(new File(platformFolder, "libraries")); - librariesFolders.add(getSketchbookLibrariesFolder()); // Scan for libraries in each library folder. // Libraries located in the latest folders on the list can override From 17115b0a9b80fb23676c399039ac0dacb367d8e9 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Fri, 16 May 2014 01:11:10 +0200 Subject: [PATCH 133/148] Fixed NPE when import menu are empty --- app/src/processing/app/Base.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/src/processing/app/Base.java b/app/src/processing/app/Base.java index 61752543c..3c6c6e8c9 100644 --- a/app/src/processing/app/Base.java +++ b/app/src/processing/app/Base.java @@ -988,6 +988,8 @@ public class Base { } public void rebuildImportMenu(JMenu importMenu) { + if (importMenu == null) + return; importMenu.removeAll(); JMenuItem addLibraryMenuItem = new JMenuItem(_("Add Library...")); @@ -1035,6 +1037,8 @@ public class Base { } public void rebuildExamplesMenu(JMenu menu) { + if (menu == null) + return; try { menu.removeAll(); From fdbb45ec47577f25d75a82c2d89bffa032246fd5 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Tue, 13 Jan 2015 23:28:19 +0100 Subject: [PATCH 134/148] update revision log --- build/shared/revisions.txt | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/build/shared/revisions.txt b/build/shared/revisions.txt index 512a88e85..23a6fa98c 100644 --- a/build/shared/revisions.txt +++ b/build/shared/revisions.txt @@ -1,13 +1,22 @@ ARDUINO 1.6.0rc2 +[ide] +* Reenabled speed of 38400 on serial monitor + +[core] +* Arduino "boolean" type is now mapped to "bool" instead of "uint8_t" (Christopher Andrews) + +[libraries] +* GSM: minor changes and bug fix (https://github.com/arduino/Arduino/pull/2546) + The following changes are included also in the Arduino IDE 1.0.7: [ide] * Mitigated Serial Monitor resource exhaustion when the connected device sends a lot of data (Paul Stoffregen) [core] -* sam: HardwareSerial now performs ISR based buffered transmission (Collin Kidder) +* sam: HardwareSerial now has buffered transmission (Collin Kidder) ARDUINO 1.6.0rc1 From 00f23d3aad7fa30e6e4b08ebd13333d87c1a65c8 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Wed, 14 Jan 2015 00:08:59 +0100 Subject: [PATCH 135/148] sam: Fixed initialization of UART/USART mode register --- .../arduino/sam/cores/arduino/UARTClass.cpp | 9 +- .../arduino/sam/cores/arduino/UARTClass.h | 4 +- .../arduino/sam/cores/arduino/USARTClass.cpp | 18 +++- .../arduino/sam/cores/arduino/USARTClass.h | 91 ++++++++++--------- 4 files changed, 69 insertions(+), 53 deletions(-) diff --git a/hardware/arduino/sam/cores/arduino/UARTClass.cpp b/hardware/arduino/sam/cores/arduino/UARTClass.cpp index 93db26272..f8b80e970 100644 --- a/hardware/arduino/sam/cores/arduino/UARTClass.cpp +++ b/hardware/arduino/sam/cores/arduino/UARTClass.cpp @@ -35,17 +35,18 @@ UARTClass::UARTClass( Uart *pUart, IRQn_Type dwIrq, uint32_t dwId, RingBuffer *p // Public Methods ////////////////////////////////////////////////////////////// -void UARTClass::begin( const uint32_t dwBaudRate ) +void UARTClass::begin(const uint32_t dwBaudRate) { begin(dwBaudRate, Mode_8N1); } void UARTClass::begin(const uint32_t dwBaudRate, const UARTModes config) { - init(dwBaudRate, static_cast(config)); + uint32_t modeReg = static_cast(config) & 0x00000E00; + init(dwBaudRate, modeReg | UART_MR_CHMODE_NORMAL); } -void UARTClass::init(const uint32_t dwBaudRate, const uint32_t config) +void UARTClass::init(const uint32_t dwBaudRate, const uint32_t modeReg) { // Configure PMC pmc_enable_periph_clk( _dwId ); @@ -57,7 +58,7 @@ void UARTClass::init(const uint32_t dwBaudRate, const uint32_t config) _pUart->UART_CR = UART_CR_RSTRX | UART_CR_RSTTX | UART_CR_RXDIS | UART_CR_TXDIS; // Configure mode - _pUart->UART_MR = (config & 0x00000E00) | UART_MR_CHMODE_NORMAL; + _pUart->UART_MR = modeReg; // Configure baudrate (asynchronous, no oversampling) _pUart->UART_BRGR = (SystemCoreClock / dwBaudRate) >> 4; diff --git a/hardware/arduino/sam/cores/arduino/UARTClass.h b/hardware/arduino/sam/cores/arduino/UARTClass.h index d86d04dc4..3747d8beb 100644 --- a/hardware/arduino/sam/cores/arduino/UARTClass.h +++ b/hardware/arduino/sam/cores/arduino/UARTClass.h @@ -39,8 +39,8 @@ class UARTClass : public HardwareSerial Mode_8N1 = US_MR_CHRL_8_BIT | US_MR_NBSTOP_1_BIT | UART_MR_PAR_NO, Mode_8E1 = US_MR_CHRL_8_BIT | US_MR_NBSTOP_1_BIT | UART_MR_PAR_EVEN, Mode_8O1 = US_MR_CHRL_8_BIT | US_MR_NBSTOP_1_BIT | UART_MR_PAR_ODD, - Mode_8M1 = US_MR_CHRL_8_BIT | US_MR_NBSTOP_1_BIT | UART_MR_PAR_MARK, - Mode_8S1 = US_MR_CHRL_8_BIT | US_MR_NBSTOP_1_BIT | UART_MR_PAR_SPACE, + Mode_8M1 = US_MR_CHRL_8_BIT | US_MR_NBSTOP_1_BIT | UART_MR_PAR_MARK, + Mode_8S1 = US_MR_CHRL_8_BIT | US_MR_NBSTOP_1_BIT | UART_MR_PAR_SPACE, }; UARTClass(Uart* pUart, IRQn_Type dwIrq, uint32_t dwId, RingBuffer* pRx_buffer, RingBuffer* pTx_buffer); diff --git a/hardware/arduino/sam/cores/arduino/USARTClass.cpp b/hardware/arduino/sam/cores/arduino/USARTClass.cpp index 428ac39ed..10a6d175c 100644 --- a/hardware/arduino/sam/cores/arduino/USARTClass.cpp +++ b/hardware/arduino/sam/cores/arduino/USARTClass.cpp @@ -32,8 +32,22 @@ USARTClass::USARTClass( Usart* pUsart, IRQn_Type dwIrq, uint32_t dwId, RingBuffe // Public Methods ////////////////////////////////////////////////////////////// -void USARTClass::begin( const uint32_t dwBaudRate, const USARTModes config ) +void USARTClass::begin(const uint32_t dwBaudRate) { - UARTClass::init(dwBaudRate, static_cast(config)); + begin(dwBaudRate, Mode_8N1); +} + +void USARTClass::begin(const uint32_t dwBaudRate, const UARTModes config) +{ + uint32_t modeReg = static_cast(config); + modeReg |= US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHMODE_NORMAL; + init(dwBaudRate, modeReg); +} + +void USARTClass::begin(const uint32_t dwBaudRate, const USARTModes config) +{ + uint32_t modeReg = static_cast(config); + modeReg |= US_MR_USART_MODE_NORMAL | US_MR_USCLKS_MCK | US_MR_CHMODE_NORMAL; + init(dwBaudRate, modeReg); } diff --git a/hardware/arduino/sam/cores/arduino/USARTClass.h b/hardware/arduino/sam/cores/arduino/USARTClass.h index 899488016..5d5704990 100644 --- a/hardware/arduino/sam/cores/arduino/USARTClass.h +++ b/hardware/arduino/sam/cores/arduino/USARTClass.h @@ -65,53 +65,54 @@ class USARTClass : public UARTClass { + public: + // 8x1 bit modes are inherited from UARTClass + enum USARTModes { + Mode_5N1 = US_MR_CHRL_5_BIT | US_MR_PAR_NO | US_MR_NBSTOP_1_BIT, + Mode_6N1 = US_MR_CHRL_6_BIT | US_MR_PAR_NO | US_MR_NBSTOP_1_BIT, + Mode_7N1 = US_MR_CHRL_7_BIT | US_MR_PAR_NO | US_MR_NBSTOP_1_BIT, + Mode_5N2 = US_MR_CHRL_5_BIT | US_MR_PAR_NO | US_MR_NBSTOP_2_BIT, + Mode_6N2 = US_MR_CHRL_6_BIT | US_MR_PAR_NO | US_MR_NBSTOP_2_BIT, + Mode_7N2 = US_MR_CHRL_7_BIT | US_MR_PAR_NO | US_MR_NBSTOP_2_BIT, + Mode_8N2 = US_MR_CHRL_8_BIT | US_MR_PAR_NO | US_MR_NBSTOP_2_BIT, + Mode_5E1 = US_MR_CHRL_5_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_1_BIT, + Mode_6E1 = US_MR_CHRL_6_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_1_BIT, + Mode_7E1 = US_MR_CHRL_7_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_1_BIT, + Mode_5E2 = US_MR_CHRL_5_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_2_BIT, + Mode_6E2 = US_MR_CHRL_6_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_2_BIT, + Mode_7E2 = US_MR_CHRL_7_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_2_BIT, + Mode_8E2 = US_MR_CHRL_8_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_2_BIT, + Mode_5O1 = US_MR_CHRL_5_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_1_BIT, + Mode_6O1 = US_MR_CHRL_6_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_1_BIT, + Mode_7O1 = US_MR_CHRL_7_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_1_BIT, + Mode_5O2 = US_MR_CHRL_5_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_2_BIT, + Mode_6O2 = US_MR_CHRL_6_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_2_BIT, + Mode_7O2 = US_MR_CHRL_7_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_2_BIT, + Mode_8O2 = US_MR_CHRL_8_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_2_BIT, + Mode_5M1 = US_MR_CHRL_5_BIT | US_MR_PAR_MARK | US_MR_NBSTOP_1_BIT, + Mode_6M1 = US_MR_CHRL_6_BIT | US_MR_PAR_MARK | US_MR_NBSTOP_1_BIT, + Mode_7M1 = US_MR_CHRL_7_BIT | US_MR_PAR_MARK | US_MR_NBSTOP_1_BIT, + Mode_5M2 = US_MR_CHRL_5_BIT | US_MR_PAR_MARK | US_MR_NBSTOP_2_BIT, + Mode_6M2 = US_MR_CHRL_6_BIT | US_MR_PAR_MARK | US_MR_NBSTOP_2_BIT, + Mode_7M2 = US_MR_CHRL_7_BIT | US_MR_PAR_MARK | US_MR_NBSTOP_2_BIT, + Mode_8M2 = US_MR_CHRL_8_BIT | US_MR_PAR_MARK | US_MR_NBSTOP_2_BIT, + Mode_5S1 = US_MR_CHRL_5_BIT | US_MR_PAR_SPACE | US_MR_NBSTOP_1_BIT, + Mode_6S1 = US_MR_CHRL_6_BIT | US_MR_PAR_SPACE | US_MR_NBSTOP_1_BIT, + Mode_7S1 = US_MR_CHRL_7_BIT | US_MR_PAR_SPACE | US_MR_NBSTOP_1_BIT, + Mode_5S2 = US_MR_CHRL_5_BIT | US_MR_PAR_SPACE | US_MR_NBSTOP_2_BIT, + Mode_6S2 = US_MR_CHRL_6_BIT | US_MR_PAR_SPACE | US_MR_NBSTOP_2_BIT, + Mode_7S2 = US_MR_CHRL_7_BIT | US_MR_PAR_SPACE | US_MR_NBSTOP_2_BIT, + Mode_8S2 = US_MR_CHRL_8_BIT | US_MR_PAR_SPACE | US_MR_NBSTOP_2_BIT, + }; + + USARTClass(Usart* pUsart, IRQn_Type dwIrq, uint32_t dwId, RingBuffer* pRx_buffer, RingBuffer* pTx_buffer); + + void begin(const uint32_t dwBaudRate); + void begin(const uint32_t dwBaudRate, const USARTModes config); + void begin(const uint32_t dwBaudRate, const UARTModes config); + protected: Usart* _pUsart; - - public: - // 8 bit modes are inherited from UARTClass - enum USARTModes { - Mode_5N1 = US_MR_CHRL_5_BIT | US_MR_PAR_NO | US_MR_NBSTOP_1_BIT, - Mode_6N1 = US_MR_CHRL_6_BIT | US_MR_PAR_NO | US_MR_NBSTOP_1_BIT, - Mode_7N1 = US_MR_CHRL_7_BIT | US_MR_PAR_NO | US_MR_NBSTOP_1_BIT, - Mode_5N2 = US_MR_CHRL_5_BIT | US_MR_PAR_NO | US_MR_NBSTOP_2_BIT, - Mode_6N2 = US_MR_CHRL_6_BIT | US_MR_PAR_NO | US_MR_NBSTOP_2_BIT, - Mode_7N2 = US_MR_CHRL_7_BIT | US_MR_PAR_NO | US_MR_NBSTOP_2_BIT, - Mode_8N2 = US_MR_CHRL_8_BIT | US_MR_PAR_NO | US_MR_NBSTOP_2_BIT, - Mode_5E1 = US_MR_CHRL_5_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_1_BIT, - Mode_6E1 = US_MR_CHRL_6_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_1_BIT, - Mode_7E1 = US_MR_CHRL_7_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_1_BIT, - Mode_5E2 = US_MR_CHRL_5_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_2_BIT, - Mode_6E2 = US_MR_CHRL_6_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_2_BIT, - Mode_7E2 = US_MR_CHRL_7_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_2_BIT, - Mode_8E2 = US_MR_CHRL_8_BIT | US_MR_PAR_EVEN | US_MR_NBSTOP_2_BIT, - Mode_5O1 = US_MR_CHRL_5_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_1_BIT, - Mode_6O1 = US_MR_CHRL_6_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_1_BIT, - Mode_7O1 = US_MR_CHRL_7_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_1_BIT, - Mode_5O2 = US_MR_CHRL_5_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_2_BIT, - Mode_6O2 = US_MR_CHRL_6_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_2_BIT, - Mode_7O2 = US_MR_CHRL_7_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_2_BIT, - Mode_8O2 = US_MR_CHRL_8_BIT | US_MR_PAR_ODD | US_MR_NBSTOP_2_BIT, - Mode_5M1 = US_MR_CHRL_5_BIT | US_MR_PAR_MARK | US_MR_NBSTOP_1_BIT, - Mode_6M1 = US_MR_CHRL_6_BIT | US_MR_PAR_MARK | US_MR_NBSTOP_1_BIT, - Mode_7M1 = US_MR_CHRL_7_BIT | US_MR_PAR_MARK | US_MR_NBSTOP_1_BIT, - Mode_5M2 = US_MR_CHRL_5_BIT | US_MR_PAR_MARK | US_MR_NBSTOP_2_BIT, - Mode_6M2 = US_MR_CHRL_6_BIT | US_MR_PAR_MARK | US_MR_NBSTOP_2_BIT, - Mode_7M2 = US_MR_CHRL_7_BIT | US_MR_PAR_MARK | US_MR_NBSTOP_2_BIT, - Mode_8M2 = US_MR_CHRL_8_BIT | US_MR_PAR_MARK | US_MR_NBSTOP_2_BIT, - Mode_5S1 = US_MR_CHRL_5_BIT | US_MR_PAR_SPACE | US_MR_NBSTOP_1_BIT, - Mode_6S1 = US_MR_CHRL_6_BIT | US_MR_PAR_SPACE | US_MR_NBSTOP_1_BIT, - Mode_7S1 = US_MR_CHRL_7_BIT | US_MR_PAR_SPACE | US_MR_NBSTOP_1_BIT, - Mode_5S2 = US_MR_CHRL_5_BIT | US_MR_PAR_SPACE | US_MR_NBSTOP_2_BIT, - Mode_6S2 = US_MR_CHRL_6_BIT | US_MR_PAR_SPACE | US_MR_NBSTOP_2_BIT, - Mode_7S2 = US_MR_CHRL_7_BIT | US_MR_PAR_SPACE | US_MR_NBSTOP_2_BIT, - Mode_8S2 = US_MR_CHRL_8_BIT | US_MR_PAR_SPACE | US_MR_NBSTOP_2_BIT, - }; - - USARTClass( Usart* pUsart, IRQn_Type dwIrq, uint32_t dwId, RingBuffer* pRx_buffer, RingBuffer* pTx_buffer ); - - void begin( const uint32_t dwBaudRate , const USARTModes config ); - using UARTClass::begin; // Needed only for polymorphic methods }; #endif // _USART_CLASS_ From 60309fe8b8e98eadda8fdfa4be676c7aad591283 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Wed, 14 Jan 2015 17:18:43 +0100 Subject: [PATCH 136/148] Fixed test --- app/test/processing/app/DefaultTargetTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test/processing/app/DefaultTargetTest.java b/app/test/processing/app/DefaultTargetTest.java index f019e9f80..d6281bfba 100644 --- a/app/test/processing/app/DefaultTargetTest.java +++ b/app/test/processing/app/DefaultTargetTest.java @@ -29,7 +29,7 @@ public class DefaultTargetTest extends AbstractWithPreferencesTest { // should not raise an exception new Base(new String[0]); - TargetBoard targetBoard = Base.getTargetBoard(); + TargetBoard targetBoard = BaseNoGui.getTargetBoard(); assertNotEquals("unreal_board", targetBoard.getId()); } } From ff95d036634b7170dfa1b71aeaba4faaa9adda67 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Wed, 14 Jan 2015 18:05:00 +0100 Subject: [PATCH 137/148] Updated some translation strings --- .../packages/uploaders/SerialUploader.java | 3 ++- .../src/processing/app/BaseNoGui.java | 26 +++++++++---------- .../src/processing/app/debug/Compiler.java | 2 +- .../src/processing/app/i18n/update.sh | 1 + 4 files changed, 17 insertions(+), 15 deletions(-) diff --git a/arduino-core/src/cc/arduino/packages/uploaders/SerialUploader.java b/arduino-core/src/cc/arduino/packages/uploaders/SerialUploader.java index bced0adda..bd26a448e 100644 --- a/arduino-core/src/cc/arduino/packages/uploaders/SerialUploader.java +++ b/arduino-core/src/cc/arduino/packages/uploaders/SerialUploader.java @@ -114,7 +114,8 @@ public class SerialUploader extends Uploader { List before = Serial.list(); if (before.contains(uploadPort)) { if (verbose) - System.out.println(_("Forcing reset using 1200bps open/close on port ") + uploadPort); + System.out.println( + I18n.format(_("Forcing reset using 1200bps open/close on port {0}"), uploadPort)); Serial.touchPort(uploadPort, 1200); } Thread.sleep(400); diff --git a/arduino-core/src/processing/app/BaseNoGui.java b/arduino-core/src/processing/app/BaseNoGui.java index e922a9b01..2eff168a7 100644 --- a/arduino-core/src/processing/app/BaseNoGui.java +++ b/arduino-core/src/processing/app/BaseNoGui.java @@ -487,9 +487,9 @@ public class BaseNoGui { List warningsAccumulator = new LinkedList(); boolean success = false; try { - // costruttore di Editor carica lo sketch usando handleOpenInternal() che fa - // la new di Sketch che chiama load() nel suo costruttore - // In questo punto questo si traduce in: + // Editor constructor loads the sketch with handleOpenInternal() that + // creates a new Sketch that, in trun, calls load() inside its constructor + // This translates here as: // SketchData data = new SketchData(file); // File tempBuildFolder = getBuildFolder(); // data.load(); @@ -498,9 +498,9 @@ public class BaseNoGui { data.load(); // Sketch.exportApplet() - // - chiama Sketch.prepare() che chiama Sketch.ensureExistence() - // - chiama Sketch.build(verbose=false) che chiama Sketch.ensureExistence(), imposta il progressListener e chiama Compiler.build() - // - chiama Sketch.upload() (cfr. dopo...) + // - calls Sketch.prepare() that calls Sketch.ensureExistence() + // - calls Sketch.build(verbose=false) that calls Sketch.ensureExistence(), set progressListener and calls Compiler.build() + // - calls Sketch.upload() (see later...) if (!data.getFolder().exists()) showError(_("No sketch"), _("Can't find the sketch in the specified path"), null); String suggestedClassName = Compiler.build(data, tempBuildFolder.getAbsolutePath(), tempBuildFolder, null, parser.isDoVerboseBuild()); if (suggestedClassName == null) showError(_("Error while verifying"), _("An error occurred while verifying the sketch"), null); @@ -508,7 +508,7 @@ public class BaseNoGui { // - chiama Sketch.upload() ... to be continued ... Uploader uploader = Compiler.getUploaderByPreferences(parser.isNoUploadPort()); - if (uploader.requiresAuthorization() && !PreferencesData.has(uploader.getAuthorizationKey())) showError(_("..."), _("..."), null); + if (uploader.requiresAuthorization() && !PreferencesData.has(uploader.getAuthorizationKey())) showError("...", "...", null); try { success = Compiler.upload(data, uploader, tempBuildFolder.getAbsolutePath(), suggestedClassName, parser.isDoUseProgrammer(), parser.isNoUploadPort(), warningsAccumulator); showMessage(_("Done uploading"), _("Done uploading")); @@ -531,9 +531,9 @@ public class BaseNoGui { for (String path : parser.getFilenames()) { try { - // costruttore di Editor carica lo sketch usando handleOpenInternal() che fa - // la new di Sketch che chiama load() nel suo costruttore - // In questo punto questo si traduce in: + // Editor constructor loads sketch with handleOpenInternal() that + // creates a new Sketch that calls load() in its constructor + // This translates here as: // SketchData data = new SketchData(file); // File tempBuildFolder = getBuildFolder(); // data.load(); @@ -541,9 +541,9 @@ public class BaseNoGui { File tempBuildFolder = getBuildFolder(); data.load(); - // metodo Sketch.prepare() chiama Sketch.ensureExistence() - // Sketch.build(verbose) chiama Sketch.ensureExistence() e poi imposta il progressListener e, finalmente, chiama Compiler.build() - // In questo punto questo si traduce in: + // Sketch.prepare() calls Sketch.ensureExistence() + // Sketch.build(verbose) calls Sketch.ensureExistence() and set progressListener and, finally, calls Compiler.build() + // This translates here as: // if (!data.getFolder().exists()) showError(...); // String ... = Compiler.build(data, tempBuildFolder.getAbsolutePath(), tempBuildFolder, null, verbose); if (!data.getFolder().exists()) showError(_("No sketch"), _("Can't find the sketch in the specified path"), null); diff --git a/arduino-core/src/processing/app/debug/Compiler.java b/arduino-core/src/processing/app/debug/Compiler.java index 3b6d92e00..652d7c77f 100644 --- a/arduino-core/src/processing/app/debug/Compiler.java +++ b/arduino-core/src/processing/app/debug/Compiler.java @@ -86,7 +86,7 @@ public class Compiler implements MessageConsumer { static public String build(SketchData data, String buildPath, File tempBuildFolder, ProgressListener progListener, boolean verbose) throws RunnerException, PreferencesMapException { if (SketchData.checkSketchFile(data.getPrimaryFile()) == null) BaseNoGui.showError(_("Bad file selected"), - _("Bad sketch primary file or bad sketck directory structure"), null); + _("Bad sketch primary file or bad sketch directory structure"), null); String primaryClassName = data.getName() + ".cpp"; Compiler compiler = new Compiler(data, buildPath, primaryClassName); diff --git a/arduino-core/src/processing/app/i18n/update.sh b/arduino-core/src/processing/app/i18n/update.sh index 6e045dd7a..0705f0a17 100755 --- a/arduino-core/src/processing/app/i18n/update.sh +++ b/arduino-core/src/processing/app/i18n/update.sh @@ -21,6 +21,7 @@ catalog() # Generate the new text catalog without the already translated texts. # The 'merge existing' option for xgetext does not work propery for our purpose. find ../../../ -name '*.java' -print > "$files" + find ../../../../../app/src -name '*.java' -print >> "$files" xgettext -s -L Java --from-code=utf-8 -k_ --output="$catalog" --files-from="$files" } From 3a062f05823849f77c0fc015273de8dc7446cf5c Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Wed, 14 Jan 2015 18:07:23 +0100 Subject: [PATCH 138/148] Updated translation from transifex --- .../src/processing/app/i18n/Resources_an.po | 822 +++++++++--------- .../app/i18n/Resources_an.properties | 810 ++++++++--------- .../src/processing/app/i18n/Resources_ar.po | 130 +-- .../app/i18n/Resources_ar.properties | 118 +-- .../src/processing/app/i18n/Resources_ast.po | 22 +- .../app/i18n/Resources_ast.properties | 8 +- .../src/processing/app/i18n/Resources_be.po | 56 +- .../app/i18n/Resources_be.properties | 42 +- .../src/processing/app/i18n/Resources_bg.po | 30 +- .../app/i18n/Resources_bg.properties | 16 +- .../src/processing/app/i18n/Resources_bs.po | 22 +- .../app/i18n/Resources_bs.properties | 8 +- .../src/processing/app/i18n/Resources_ca.po | 346 ++++---- .../app/i18n/Resources_ca.properties | 334 +++---- .../processing/app/i18n/Resources_cs_CZ.po | 38 +- .../app/i18n/Resources_cs_CZ.properties | 24 +- .../processing/app/i18n/Resources_da_DK.po | 80 +- .../app/i18n/Resources_da_DK.properties | 66 +- .../processing/app/i18n/Resources_de_DE.po | 136 +-- .../app/i18n/Resources_de_DE.properties | 122 +-- .../processing/app/i18n/Resources_el_GR.po | 24 +- .../app/i18n/Resources_el_GR.properties | 10 +- .../src/processing/app/i18n/Resources_en.po | 145 ++- .../app/i18n/Resources_en.properties | 106 ++- .../processing/app/i18n/Resources_en_GB.po | 38 +- .../app/i18n/Resources_en_GB.properties | 24 +- .../src/processing/app/i18n/Resources_es.po | 112 +-- .../app/i18n/Resources_es.properties | 98 +-- .../src/processing/app/i18n/Resources_et.po | 26 +- .../app/i18n/Resources_et.properties | 12 +- .../processing/app/i18n/Resources_et_EE.po | 30 +- .../app/i18n/Resources_et_EE.properties | 16 +- .../src/processing/app/i18n/Resources_fa.po | 234 ++--- .../app/i18n/Resources_fa.properties | 222 ++--- .../src/processing/app/i18n/Resources_fi.po | 26 +- .../app/i18n/Resources_fi.properties | 12 +- .../src/processing/app/i18n/Resources_fil.po | 26 +- .../app/i18n/Resources_fil.properties | 12 +- .../src/processing/app/i18n/Resources_fr.po | 28 +- .../app/i18n/Resources_fr.properties | 14 +- .../processing/app/i18n/Resources_fr_CA.po | 26 +- .../app/i18n/Resources_fr_CA.properties | 12 +- .../src/processing/app/i18n/Resources_gl.po | 42 +- .../app/i18n/Resources_gl.properties | 28 +- .../src/processing/app/i18n/Resources_hi.po | 82 +- .../app/i18n/Resources_hi.properties | 70 +- .../processing/app/i18n/Resources_hr_HR.po | 154 ++-- .../app/i18n/Resources_hr_HR.properties | 140 +-- .../src/processing/app/i18n/Resources_hu.po | 46 +- .../app/i18n/Resources_hu.properties | 34 +- .../src/processing/app/i18n/Resources_hy.po | 22 +- .../app/i18n/Resources_hy.properties | 8 +- .../src/processing/app/i18n/Resources_in.po | 22 +- .../processing/app/i18n/Resources_it_IT.po | 28 +- .../app/i18n/Resources_it_IT.properties | 14 +- .../src/processing/app/i18n/Resources_iw.po | 116 +-- .../processing/app/i18n/Resources_ja_JP.po | 26 +- .../app/i18n/Resources_ja_JP.properties | 12 +- .../processing/app/i18n/Resources_ka_GE.po | 40 +- .../app/i18n/Resources_ka_GE.properties | 26 +- .../processing/app/i18n/Resources_ko_KR.po | 28 +- .../app/i18n/Resources_ko_KR.properties | 14 +- .../processing/app/i18n/Resources_lt_LT.po | 22 +- .../app/i18n/Resources_lt_LT.properties | 8 +- .../processing/app/i18n/Resources_lv_LV.po | 26 +- .../app/i18n/Resources_lv_LV.properties | 12 +- .../src/processing/app/i18n/Resources_mr.po | 22 +- .../app/i18n/Resources_mr.properties | 10 +- .../processing/app/i18n/Resources_my_MM.po | 22 +- .../app/i18n/Resources_my_MM.properties | 8 +- .../processing/app/i18n/Resources_nb_NO.po | 36 +- .../app/i18n/Resources_nb_NO.properties | 22 +- .../src/processing/app/i18n/Resources_ne.po | 22 +- .../app/i18n/Resources_ne.properties | 8 +- .../src/processing/app/i18n/Resources_nl.po | 464 +++++----- .../app/i18n/Resources_nl.properties | 452 +++++----- .../processing/app/i18n/Resources_nl_NL.po | 22 +- .../app/i18n/Resources_nl_NL.properties | 8 +- .../src/processing/app/i18n/Resources_pl.po | 28 +- .../app/i18n/Resources_pl.properties | 14 +- .../src/processing/app/i18n/Resources_pt.po | 22 +- .../app/i18n/Resources_pt.properties | 8 +- .../processing/app/i18n/Resources_pt_BR.po | 36 +- .../app/i18n/Resources_pt_BR.properties | 22 +- .../processing/app/i18n/Resources_pt_PT.po | 114 +-- .../app/i18n/Resources_pt_PT.properties | 100 +-- .../src/processing/app/i18n/Resources_ro.po | 28 +- .../app/i18n/Resources_ro.properties | 14 +- .../src/processing/app/i18n/Resources_ru.po | 166 ++-- .../app/i18n/Resources_ru.properties | 152 ++-- .../processing/app/i18n/Resources_sl_SI.po | 26 +- .../app/i18n/Resources_sl_SI.properties | 12 +- .../src/processing/app/i18n/Resources_sq.po | 240 ++--- .../app/i18n/Resources_sq.properties | 226 ++--- .../src/processing/app/i18n/Resources_sv.po | 80 +- .../app/i18n/Resources_sv.properties | 66 +- .../src/processing/app/i18n/Resources_ta.po | 28 +- .../app/i18n/Resources_ta.properties | 16 +- .../src/processing/app/i18n/Resources_tr.po | 142 +-- .../app/i18n/Resources_tr.properties | 128 +-- .../src/processing/app/i18n/Resources_uk.po | 26 +- .../app/i18n/Resources_uk.properties | 12 +- .../src/processing/app/i18n/Resources_vi.po | 26 +- .../app/i18n/Resources_vi.properties | 12 +- .../processing/app/i18n/Resources_zh_CN.po | 64 +- .../app/i18n/Resources_zh_CN.properties | 50 +- .../processing/app/i18n/Resources_zh_HK.po | 22 +- .../app/i18n/Resources_zh_HK.properties | 8 +- .../app/i18n/Resources_zh_TW.Big5.po | 56 +- .../app/i18n/Resources_zh_TW.Big5.properties | 42 +- .../processing/app/i18n/Resources_zh_TW.po | 806 ++++++++--------- .../app/i18n/Resources_zh_TW.properties | 794 ++++++++--------- 112 files changed, 5172 insertions(+), 5013 deletions(-) diff --git a/arduino-core/src/processing/app/i18n/Resources_an.po b/arduino-core/src/processing/app/i18n/Resources_an.po index 7b1d22632..9aa141ffc 100644 --- a/arduino-core/src/processing/app/i18n/Resources_an.po +++ b/arduino-core/src/processing/app/i18n/Resources_an.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Aragonese (http://www.transifex.com/projects/p/arduino-ide-15/language/an/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,30 +19,30 @@ msgstr "" #: Preferences.java:358 Preferences.java:374 msgid " (requires restart of Arduino)" -msgstr "" +msgstr " (requiere reiniciar Arduino)" #: debug/Compiler.java:455 msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "" +msgstr "'Teclau' solament suportau por Arduino Leonardo" #: debug/Compiler.java:450 msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "" +msgstr "'Churi' solament suportau por Arduino Leonardo" #: Preferences.java:478 msgid "(edit only when Arduino is not running)" -msgstr "" +msgstr "(editar solament quan Arduino no ye correndo)" #: Sketch.java:746 msgid ".pde -> .ino" -msgstr "" +msgstr ".pde -> .ino" #: Base.java:773 msgid "" " Are you " "sure you want to Quit?

    Closing the last open sketch will quit Arduino." -msgstr "" +msgstr " Yes seguro de querer salir?

    Zarrando o zaguer prochecto ubierto, se zarrará Arduino." #: Editor.java:2053 msgid "" @@ -50,226 +50,232 @@ msgid "" " font: 11pt \"Lucida Grande\"; margin-top: 8px } Do you " "want to save changes to this sketch
    before closing?

    If you don't " "save, your changes will be lost." -msgstr "" +msgstr " Quiers alzar cambeos a o programa
    antes de zarrar?

    Si no los alzas, os tuyos cambeos se perderán." #: Sketch.java:398 #, java-format msgid "A file named \"{0}\" already exists in \"{1}\"" -msgstr "" +msgstr "Un fichero clamau \"{0}\" ya existe en \"{1}\"" #: Editor.java:2169 #, java-format msgid "A folder named \"{0}\" already exists. Can't open sketch." -msgstr "" +msgstr "Ya existe una carpeta con o nombre \"{0}\". No se puede ubrir." #: Base.java:2690 #, java-format msgid "A library named {0} already exists" -msgstr "" +msgstr "A biblioteca con nombre {0} ya existe" #: UpdateCheck.java:103 msgid "" "A new version of Arduino is available,\n" "would you like to visit the Arduino download page?" -msgstr "" +msgstr "Una nueva versión d'Arduino ye disponible,\nquiers visitar a pachina de descargas d'Arduino?" #: EditorConsole.java:153 msgid "" "A problem occurred while trying to open the\n" "files used to store the console output." -msgstr "" +msgstr "Ha ocurriu un problema mientres s'ubriban os fichers\nusaus ta alzar a salida d'a consola." #: Editor.java:1116 msgid "About Arduino" -msgstr "" +msgstr "Arredol d'Arduino" #: Editor.java:650 msgid "Add File..." -msgstr "" +msgstr "Adhibir fichero..." #: Base.java:963 msgid "Add Library..." -msgstr "" +msgstr "Adhibir biblioteca..." #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" "Do not attempt to save this sketch as it may overwrite\n" "the old version. Use Open to re-open the sketch and try again.\n" -msgstr "" +msgstr "Ha ocurriu una error mientres se solucionaba a codificación d'o fichero.\nNo intentes alzar iste programa asinas sobrescribindo a viella versión.\nUsa Ubrir ta reubrir o programa y intenta-lo de nuevo.\n" #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" "platform-specific code for your machine." -msgstr "" +msgstr "Error desconoixida en intentar cargar codigo especifico de plataforma ta la suya maquina." #: Preferences.java:85 msgid "Arabic" -msgstr "" +msgstr "Arabe" #: Preferences.java:86 msgid "Aragonese" -msgstr "" +msgstr "Aragonés" #: tools/Archiver.java:48 msgid "Archive Sketch" -msgstr "" +msgstr "Archivar programa." #: tools/Archiver.java:109 msgid "Archive sketch as:" -msgstr "" +msgstr "Archivar programa como:" #: tools/Archiver.java:139 msgid "Archive sketch canceled." -msgstr "" +msgstr "Archivación de programa cancelada." #: tools/Archiver.java:75 msgid "" "Archiving the sketch has been canceled because\n" "the sketch couldn't save properly." -msgstr "" +msgstr "O fichero d'o programa s'ha cancelau porque\nno se podió alzar o propio programa." #: ../../../processing/app/I18n.java:83 msgid "Arduino ARM (32-bits) Boards" -msgstr "" +msgstr "Placas Arduino ARM (32 bits)" #: ../../../processing/app/I18n.java:82 msgid "Arduino AVR Boards" +msgstr "Placas Arduino AVR" + +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" msgstr "" #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" "create a folder to store your settings." -msgstr "" +msgstr "Arduino no se puede executar porque no se\npodió creyar una carpeta ta alzar a configuración." #: Base.java:1889 msgid "" "Arduino cannot run because it could not\n" "create a folder to store your sketchbook." -msgstr "" +msgstr "Arduino no podió encetar-se porque no podió\ncreyar una carpeta ta almagazenar os tuyo sketchbook." #: Base.java:240 msgid "" "Arduino requires a full JDK (not just a JRE)\n" "to run. Please install JDK 1.5 or later.\n" "More information can be found in the reference." -msgstr "" +msgstr "Arduino ameneste JDK ( no solament JRE) ta funcionar.\nPor favor, instale o JDK 1.5 u superior.\nTa pero información, consulte as referencias." #: ../../../processing/app/EditorStatus.java:471 msgid "Arduino: " -msgstr "" +msgstr "Arduino:" #: Sketch.java:588 #, java-format msgid "Are you sure you want to delete \"{0}\"?" -msgstr "" +msgstr "Seguro que quiers borrar \"{0}\"?" #: Sketch.java:587 msgid "Are you sure you want to delete this sketch?" -msgstr "" +msgstr "Seguro que quiers borrar iste programa?" #: ../../../processing/app/Preferences.java:137 msgid "Armenian" -msgstr "" +msgstr "Armenio" #: ../../../processing/app/Preferences.java:138 msgid "Asturian" -msgstr "" +msgstr "Asturiano" #: tools/AutoFormat.java:91 msgid "Auto Format" -msgstr "" +msgstr "Auto Formato" #: tools/AutoFormat.java:934 msgid "Auto Format Canceled: Too many left curly braces." -msgstr "" +msgstr "Auto Formato Cancelau: masiadas claus a la cucha." #: tools/AutoFormat.java:925 msgid "Auto Format Canceled: Too many left parentheses." -msgstr "" +msgstr "Auto Formato Cancelau: masiaus parentesis a la cucha." #: tools/AutoFormat.java:931 msgid "Auto Format Canceled: Too many right curly braces." -msgstr "" +msgstr "Auto Formato Cancelau: masiadas claus a la dreita." #: tools/AutoFormat.java:922 msgid "Auto Format Canceled: Too many right parentheses." -msgstr "" +msgstr "Auto Formato Cancelau: masiaus parentesis a la dreita." #: tools/AutoFormat.java:944 msgid "Auto Format finished." -msgstr "" +msgstr "Auto Formato rematau." #: Preferences.java:439 msgid "Automatically associate .ino files with Arduino" -msgstr "" +msgstr "Asociar automaticament os fichers .ino a Arduino" #: SerialMonitor.java:110 msgid "Autoscroll" -msgstr "" +msgstr "Autoscroll" #: Editor.java:2619 #, java-format msgid "Bad error line: {0}" -msgstr "" +msgstr "Linia error: {0}" #: Editor.java:2136 msgid "Bad file selected" -msgstr "" +msgstr "Fichero mal seleccionau" #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" -msgstr "" +msgstr "Beloruso" #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" -msgstr "" +msgstr "Placa" #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" "Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:" " {3}" -msgstr "" +msgstr "A placa {0}:{1}:{2} no define una preferencia ''build.board''. S'ha ficau automaticament a: {3}" #: ../../../processing/app/EditorStatus.java:472 msgid "Board: " -msgstr "" +msgstr "Placa:" #: ../../../processing/app/Preferences.java:140 msgid "Bosnian" -msgstr "" +msgstr "Bosnio" #: SerialMonitor.java:112 msgid "Both NL & CR" -msgstr "" +msgstr "Totz dos NL & CR" #: Preferences.java:81 msgid "Browse" -msgstr "" +msgstr "Explorar" #: Sketch.java:1392 Sketch.java:1423 msgid "Build folder disappeared or could not be written" -msgstr "" +msgstr "Carpeta de construcción no trobada u no se puede escribir en ella" #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" -msgstr "" +msgstr "Búlgaro" #: ../../../processing/app/Preferences.java:141 msgid "Burmese (Myanmar)" -msgstr "" +msgstr "Birmano (Myanmar)" #: Editor.java:708 msgid "Burn Bootloader" -msgstr "" +msgstr "Escribir bootloader" #: Editor.java:2504 msgid "Burning bootloader to I/O Board (this may take a minute)..." -msgstr "" +msgstr "Escribindo bootloader a la Placa I/U (isto habría de tardar un menuto)..." #: ../../../processing/app/Base.java:368 msgid "Can't open source sketch!" @@ -277,160 +283,160 @@ msgstr "" #: ../../../processing/app/Preferences.java:92 msgid "Canadian French" -msgstr "" +msgstr "Francés de Canadá" #: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2064 Editor.java:2145 Editor.java:2465 msgid "Cancel" -msgstr "" +msgstr "Cancelar" #: Sketch.java:455 msgid "Cannot Rename" -msgstr "" +msgstr "No se puede renombrar" #: SerialMonitor.java:112 msgid "Carriage return" -msgstr "" +msgstr "Retorno de carro" #: Preferences.java:87 msgid "Catalan" -msgstr "" +msgstr "Catalán" #: Preferences.java:419 msgid "Check for updates on startup" -msgstr "" +msgstr "Comprebar actualizacions en encetar" #: ../../../processing/app/Preferences.java:142 msgid "Chinese (China)" -msgstr "" +msgstr "Chino (China)" #: ../../../processing/app/Preferences.java:142 msgid "Chinese (Hong Kong)" -msgstr "" +msgstr "Chino (Hong Kong)" #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" -msgstr "" +msgstr "Chino (Taiwan)" #: ../../../processing/app/Preferences.java:143 msgid "Chinese (Taiwan) (Big5)" -msgstr "" +msgstr "Chino (Taiwan) (Big5)" #: Preferences.java:88 msgid "Chinese Simplified" -msgstr "" +msgstr "Chino Simplificau" #: Preferences.java:89 msgid "Chinese Traditional" -msgstr "" +msgstr "Chino Tradicional" #: Editor.java:521 Editor.java:2024 msgid "Close" -msgstr "" +msgstr "Zarrar" #: Editor.java:1208 Editor.java:2749 msgid "Comment/Uncomment" -msgstr "" +msgstr "Comentar/Descomentar" #: debug/Compiler.java:49 debug/Uploader.java:45 #, java-format msgid "Compiler error, please submit this code to {0}" -msgstr "" +msgstr "Error d'o compilador, por favor, ninvia iste codigo a {0}" #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." -msgstr "" +msgstr "Compilando programa..." #: EditorConsole.java:152 msgid "Console Error" -msgstr "" +msgstr "Error de consola" #: Editor.java:1157 Editor.java:2707 msgid "Copy" -msgstr "" +msgstr "Copiar" #: Editor.java:1177 Editor.java:2723 msgid "Copy as HTML" -msgstr "" +msgstr "Copiar como HTML" #: ../../../processing/app/EditorStatus.java:455 msgid "Copy error messages" -msgstr "" +msgstr "Copiar mensaches d'error" #: Editor.java:1165 Editor.java:2715 msgid "Copy for Forum" -msgstr "" +msgstr "Copiar a o Foro" #: Sketch.java:1089 #, java-format msgid "Could not add ''{0}'' to the sketch." -msgstr "" +msgstr "No se puedo adhibir \"{0}\" a o programa." #: Editor.java:2188 msgid "Could not copy to a proper location." -msgstr "" +msgstr "No se puede copiar a la mesma ubicación." #: Editor.java:2179 msgid "Could not create the sketch folder." -msgstr "" +msgstr "No podié creyar a capeta de programa." #: Editor.java:2206 msgid "Could not create the sketch." -msgstr "" +msgstr "No podié creyar o programa." #: Sketch.java:617 #, java-format msgid "Could not delete \"{0}\"." -msgstr "" +msgstr "No se podió borrar \"{0}\"." #: Sketch.java:1066 #, java-format msgid "Could not delete the existing ''{0}'' file." -msgstr "" +msgstr "No se podió borrar o fichero existent \"{0}\"." #: Base.java:2533 Base.java:2556 #, java-format msgid "Could not delete {0}" -msgstr "" +msgstr "No se podió borrar {0}" #: ../../../processing/app/debug/TargetPlatform.java:74 #, java-format msgid "Could not find boards.txt in {0}. Is it pre-1.5?" -msgstr "" +msgstr "No se podió trobar boards.txt en {0}. Ye pre-1.5?" #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 #, java-format msgid "Could not find tool {0}" -msgstr "" +msgstr "No se podió trobar a ferramienta {0}" #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 #, java-format msgid "Could not find tool {0} from package {1}" -msgstr "" +msgstr "No se podió trobar a ferramienta {0} d'o conchunto {1}" #: Base.java:1934 #, java-format msgid "" "Could not open the URL\n" "{0}" -msgstr "" +msgstr "No se puede ubrir l'URL\n{0}" #: Base.java:1958 #, java-format msgid "" "Could not open the folder\n" "{0}" -msgstr "" +msgstr "No se puede ubrir a carpeta\n{0}" #: Sketch.java:1769 msgid "" "Could not properly re-save the sketch. You may be in trouble at this point,\n" "and it might be time to copy and paste your code to another text editor." -msgstr "" +msgstr "No se podió re-alzar o programa. Puetz estar en problemas en iste momento,\ny puede que sía hora de copiar y apegar o tuyo codigo en unatro editor de texto." #: Sketch.java:1768 msgid "Could not re-save sketch" -msgstr "" +msgstr "No se podió alzar de nuevo o programa" #: Theme.java:52 msgid "" @@ -442,7 +448,7 @@ msgstr "" msgid "" "Could not read default settings.\n" "You'll need to reinstall Arduino." -msgstr "" +msgstr "No se pueden leyer os achustes predeterminaus.\nAmeneste reinstalar Arduino" #: Preferences.java:258 #, java-format @@ -452,392 +458,392 @@ msgstr "" #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" -msgstr "" +msgstr "No se podió eliminar a versión antiga de {0}" #: Sketch.java:483 Sketch.java:528 #, java-format msgid "Could not rename \"{0}\" to \"{1}\"" -msgstr "" +msgstr "No se podió renombrar \"{0}\" a \"{1}\"" #: Sketch.java:475 msgid "Could not rename the sketch. (0)" -msgstr "" +msgstr "No se podió renombrar o programa. (0)" #: Sketch.java:496 msgid "Could not rename the sketch. (1)" -msgstr "" +msgstr "No se podió renombrar o programa. (1)" #: Sketch.java:503 msgid "Could not rename the sketch. (2)" -msgstr "" +msgstr "No se podió renombrar o programa. (2)" #: Base.java:2492 #, java-format msgid "Could not replace {0}" -msgstr "" +msgstr "No podié reemplazar {0}" #: tools/Archiver.java:74 msgid "Couldn't archive sketch" -msgstr "" +msgstr "No se podió archivar o programa" #: Sketch.java:1647 msgid "Couldn't determine program size: {0}" -msgstr "" +msgstr "No se podió determinar a grandaria d'o programa: {0}" #: Sketch.java:616 msgid "Couldn't do it" -msgstr "" +msgstr "No puedo fer-lo" #: debug/BasicUploader.java:209 msgid "" "Couldn't find a Board on the selected port. Check that you have the correct " "port selected. If it is correct, try pressing the board's reset button " "after initiating the upload." -msgstr "" +msgstr "No podié trobar una placa en o puerto seleccionau. Compreba que has seleccionau o puerto correcto. Si ye correcto, preba a pretar o botón de Reset d'a placa dimpués d'encetar a puyada." #: ../../../processing/app/Preferences.java:82 msgid "Croatian" -msgstr "" +msgstr "Crovata" #: Editor.java:1149 Editor.java:2699 msgid "Cut" -msgstr "" +msgstr "Tallar" #: ../../../processing/app/Preferences.java:83 msgid "Czech" -msgstr "" +msgstr "Checo" #: Preferences.java:90 msgid "Danish" -msgstr "" +msgstr "Danés" #: Editor.java:1224 Editor.java:2765 msgid "Decrease Indent" -msgstr "" +msgstr "Disminuir sangría" #: EditorHeader.java:314 Sketch.java:591 msgid "Delete" -msgstr "" +msgstr "Borrar" #: debug/Uploader.java:199 msgid "" "Device is not responding, check the right serial port is selected or RESET " "the board right before exporting" -msgstr "" +msgstr "O dispositivo no ye respondendo, compreba que o puerto ye bien seleccionau u RESETEA a placa antes d'exportar." #: tools/FixEncoding.java:57 msgid "Discard all changes and reload sketch?" -msgstr "" +msgstr "Descartar totz os cambeos y recargar o programa?" #: ../../../processing/app/Preferences.java:438 msgid "Display line numbers" -msgstr "" +msgstr "Amostrar numeros de linia" #: Editor.java:2064 msgid "Don't Save" -msgstr "" +msgstr "No alzar" #: Editor.java:2275 Editor.java:2311 msgid "Done Saving." -msgstr "" +msgstr "Alzau." #: Editor.java:2510 msgid "Done burning bootloader." -msgstr "" +msgstr "Escritura de bootloader completau." #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." -msgstr "" +msgstr "Compilau." #: Editor.java:2564 msgid "Done printing." -msgstr "" +msgstr "Imprentau." #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." -msgstr "" +msgstr "Puyau." #: Preferences.java:91 msgid "Dutch" -msgstr "" +msgstr "Holandés" #: ../../../processing/app/Preferences.java:144 msgid "Dutch (Netherlands)" -msgstr "" +msgstr "Holandés (Holanda)" #: Editor.java:1130 msgid "Edit" -msgstr "" +msgstr "Editar" #: Preferences.java:370 msgid "Editor font size: " -msgstr "" +msgstr "Grandaria de fuent de l'editor:" #: Preferences.java:353 msgid "Editor language: " -msgstr "" +msgstr "Idioma de l'editor:" #: Preferences.java:92 msgid "English" -msgstr "" +msgstr "Inglés" #: ../../../processing/app/Preferences.java:145 msgid "English (United Kingdom)" -msgstr "" +msgstr "Ingles (Reino Uniu)" #: Editor.java:1062 msgid "Environment" -msgstr "" +msgstr "Entorno" #: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481 #: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543 #: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206 msgid "Error" -msgstr "" +msgstr "Error" #: Sketch.java:1065 Sketch.java:1088 msgid "Error adding file" -msgstr "" +msgstr "Error en adhibir fichero" #: debug/Compiler.java:369 msgid "Error compiling." -msgstr "" +msgstr "Error de compilación." #: Base.java:1674 msgid "Error getting the Arduino data folder." -msgstr "" +msgstr "Error obtenendo os datos d'a carpeta d'Arduino." #: Serial.java:593 #, java-format msgid "Error inside Serial.{0}()" -msgstr "" +msgstr "Error interna d'o serie.{0}()" #: ../../../processing/app/Base.java:1232 msgid "Error loading libraries" -msgstr "" +msgstr "Error cargando bibliotecas" #: ../../../processing/app/debug/TargetPlatform.java:95 #: ../../../processing/app/debug/TargetPlatform.java:106 #: ../../../processing/app/debug/TargetPlatform.java:117 #, java-format msgid "Error loading {0}" -msgstr "" +msgstr "Error cargando {0}" #: Serial.java:181 #, java-format msgid "Error opening serial port ''{0}''." -msgstr "" +msgstr "Error ubrindo puerto \"{0}\"" #: Preferences.java:277 msgid "Error reading preferences" -msgstr "" +msgstr "Error leyendo preferencias" #: Preferences.java:279 #, java-format msgid "" "Error reading the preferences file. Please delete (or move)\n" "{0} and restart Arduino." -msgstr "" +msgstr "Error leyendo o fichero de preferencias. Por favor, borre (u mueva)\n{0} y reinicie Arduino." #: ../../../cc/arduino/packages/DiscoveryManager.java:25 msgid "Error starting discovery method: " -msgstr "" +msgstr "Error en encetar o metodo de descubrimiento: " #: Serial.java:125 #, java-format msgid "Error touching serial port ''{0}''." -msgstr "" +msgstr "Error usando o puerto \"{0}\"" #: Editor.java:2512 Editor.java:2516 Editor.java:2520 msgid "Error while burning bootloader." -msgstr "" +msgstr "Error mientres se escribía o bootloader" #: ../../../processing/app/Editor.java:2555 msgid "Error while burning bootloader: missing '{0}' configuration parameter" -msgstr "" +msgstr "Error mientres se escribía o bootloader: falta parametro de configuración '{0}'" #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" -msgstr "" +msgstr "Error mientres se cargaba o codigo {0}" #: Editor.java:2567 msgid "Error while printing." -msgstr "" +msgstr "Error en imprentar." #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" -msgstr "" +msgstr "Error mientres la puyada: manda o parametro de configuracion '{0}'" #: Preferences.java:93 msgid "Estonian" -msgstr "" +msgstr "Estonio" #: ../../../processing/app/Preferences.java:146 msgid "Estonian (Estonia)" -msgstr "" +msgstr "Estonio (Estonia)" #: Editor.java:516 msgid "Examples" -msgstr "" +msgstr "Eixemplos" #: Editor.java:2482 msgid "Export canceled, changes must first be saved." -msgstr "" +msgstr "Cancelada exportación, os cambeos s'han de salvar antes." #: Base.java:2100 msgid "FAQ.html" -msgstr "" +msgstr "FAQ.html" #: Editor.java:491 msgid "File" -msgstr "" +msgstr "Fichero" #: Preferences.java:94 msgid "Filipino" -msgstr "" +msgstr "Filipino" #: FindReplace.java:124 FindReplace.java:127 msgid "Find" -msgstr "" +msgstr "Buscar" #: Editor.java:1249 msgid "Find Next" -msgstr "" +msgstr "Buscar siguient" #: Editor.java:1259 msgid "Find Previous" -msgstr "" +msgstr "Buscar anterior" #: Editor.java:1086 Editor.java:2775 msgid "Find in Reference" -msgstr "" +msgstr "Buscar en referencia" #: Editor.java:1234 msgid "Find..." -msgstr "" +msgstr "Buscar..." #: FindReplace.java:80 msgid "Find:" -msgstr "" +msgstr "Buscar:" #: ../../../processing/app/Preferences.java:147 msgid "Finnish" -msgstr "" +msgstr "Finés" #: tools/FixEncoding.java:41 tools/FixEncoding.java:58 #: tools/FixEncoding.java:79 msgid "Fix Encoding & Reload" -msgstr "" +msgstr "Reparar codificación y recargar" #: Base.java:1851 msgid "" "For information on installing libraries, see: " "http://arduino.cc/en/Guide/Libraries\n" -msgstr "" +msgstr "Ta información de cómo instalar bibliotecas, visite: http://arduino.cc/en/guide/libraries\n" #: debug/BasicUploader.java:80 msgid "Forcing reset using 1200bps open/close on port " -msgstr "" +msgstr "Forzar reinicio usando 1200bps obridura / zarre en o puerto" #: Preferences.java:95 msgid "French" -msgstr "" +msgstr "Francés" #: Editor.java:1097 msgid "Frequently Asked Questions" -msgstr "" +msgstr "Preguntas mas freqüents" #: Preferences.java:96 msgid "Galician" -msgstr "" +msgstr "Gallego" #: ../../../processing/app/Preferences.java:94 msgid "Georgian" -msgstr "" +msgstr "Georgiano" #: Preferences.java:97 msgid "German" -msgstr "" +msgstr "Alemán" #: Editor.java:1054 msgid "Getting Started" -msgstr "" +msgstr "Inicio Rapido" #: ../../../processing/app/Sketch.java:1646 #, java-format msgid "" "Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes " "for local variables. Maximum is {1} bytes." -msgstr "" +msgstr "As variables globals usan {0} bytes ({2}%%) d'a memoria dinamica, dixando {3} bytes ta variables locals. O maximo son {1} bytes." #: ../../../processing/app/Sketch.java:1651 #, java-format msgid "Global variables use {0} bytes of dynamic memory." -msgstr "" +msgstr "As variables globals usan {0} bytes d'a memoria dinamica." #: Preferences.java:98 msgid "Greek" -msgstr "" +msgstr "Griego" #: Base.java:2085 msgid "Guide_Environment.html" -msgstr "" +msgstr "Guide_Environment.html" #: Base.java:2071 msgid "Guide_MacOSX.html" -msgstr "" +msgstr "Guide_MacOSX.html" #: Base.java:2095 msgid "Guide_Troubleshooting.html" -msgstr "" +msgstr "Guide_Troubleshooting.html" #: Base.java:2073 msgid "Guide_Windows.html" -msgstr "" +msgstr "Guide_Windows.html" #: ../../../processing/app/Preferences.java:95 msgid "Hebrew" -msgstr "" +msgstr "Hebreu" #: Editor.java:1015 msgid "Help" -msgstr "" +msgstr "Aduya" #: Preferences.java:99 msgid "Hindi" -msgstr "" +msgstr "Hindú" #: Sketch.java:295 msgid "" "How about saving the sketch first \n" "before trying to rename it?" -msgstr "" +msgstr "Por qué no salvar o programa primer\nantes d'intentar renombrar-lo?" #: Sketch.java:882 msgid "How very Borges of you" -msgstr "" +msgstr "Cómo molas, no?" #: Preferences.java:100 msgid "Hungarian" -msgstr "" +msgstr "Húngaro" #: FindReplace.java:96 msgid "Ignore Case" -msgstr "" +msgstr "Ignorar mayusclas" #: Base.java:1058 msgid "Ignoring bad library name" -msgstr "" +msgstr "Ignorando o nombre incorrecto d'a biblioteca." #: Base.java:1436 msgid "Ignoring sketch with bad name" -msgstr "" +msgstr "Ignorando treballo con nombre incorrecto." #: Editor.java:636 msgid "Import Library..." -msgstr "" +msgstr "Importar biblioteca..." #: ../../../processing/app/Sketch.java:736 msgid "" @@ -848,417 +854,411 @@ msgid "" "disable this in the Preferences dialog.\n" "\n" "Save sketch and update its extension?" -msgstr "" +msgstr "En Arduino 1.0, a extension por defecto ah cambiau de .pde a .ino. Os muevos prochectos (incluius aquells creyaus por meyo de \"Guardar como\") usaran a nueva extensión. A extensión d'os prochectos existents s'actualizase en alzar, pero puetz desactivar ista función dende o menu de Preferencias\n\nAlzar prochecto y actualizar a suya extensión?" #: Editor.java:1216 Editor.java:2757 msgid "Increase Indent" -msgstr "" +msgstr "Aumentar sangría" #: Preferences.java:101 msgid "Indonesian" -msgstr "" +msgstr "Indonesio" #: ../../../processing/app/Base.java:1204 #, java-format msgid "Invalid library found in {0}: {1}" -msgstr "" +msgstr "Biblioteca invalida trobada en {0}: {1}" #: Preferences.java:102 msgid "Italian" -msgstr "" +msgstr "Italián" #: Preferences.java:103 msgid "Japanese" -msgstr "" +msgstr "Chaponés" #: Preferences.java:104 msgid "Korean" -msgstr "" +msgstr "Coreano" #: Preferences.java:105 msgid "Latvian" -msgstr "" +msgstr "Letón" #: Base.java:2699 msgid "Library added to your libraries. Check \"Import library\" menu" -msgstr "" +msgstr "Biblioteca adhibida a las tuyas bibliotecas. Compreba o menú \"Importar biblioteca\"" #: Preferences.java:106 msgid "Lithuaninan" -msgstr "" +msgstr "Lituano" #: ../../../processing/app/Sketch.java:1660 msgid "Low memory available, stability problems may occur" -msgstr "" +msgstr "Poca memoria disponible, puede producir problemas d'estabilidat" #: Preferences.java:107 msgid "Marathi" -msgstr "" +msgstr "Marathi" #: Base.java:2112 msgid "Message" -msgstr "" +msgstr "Mensache" #: ../../../processing/app/preproc/PdePreprocessor.java:412 msgid "Missing the */ from the end of a /* comment */" -msgstr "" +msgstr "Manca lo */ d'a fin d'un /* comentario */" #: Preferences.java:449 msgid "More preferences can be edited directly in the file" -msgstr "" +msgstr "Mas preferencias pueden estar editadas dreitament en o fichero" #: Editor.java:2156 msgid "Moving" -msgstr "" +msgstr "Movendo" #: Sketch.java:282 msgid "Name for new file:" -msgstr "" +msgstr "Nombre d'o nuevo fichero:" #: ../../../processing/app/Preferences.java:149 msgid "Nepali" -msgstr "" +msgstr "Nepalí" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 msgid "Network upload using programmer not supported" -msgstr "" +msgstr "A puyada por red fendo servir lo programador no ye suportada" #: EditorToolbar.java:41 Editor.java:493 msgid "New" -msgstr "" +msgstr "Nuevo" #: EditorToolbar.java:46 msgid "New Editor Window" -msgstr "" +msgstr "Nueva finestra d'editor" #: EditorHeader.java:292 msgid "New Tab" -msgstr "" +msgstr "Nueva pestanya" #: SerialMonitor.java:112 msgid "Newline" -msgstr "" +msgstr "Nueva linia" #: EditorHeader.java:340 msgid "Next Tab" -msgstr "" +msgstr "Pestanya siguient" #: Preferences.java:78 UpdateCheck.java:108 msgid "No" -msgstr "" +msgstr "No" #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "" +msgstr "No s'ha seleccionau placa; por favor, seleccione una en o menú Ferramientas > Placa" #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." -msgstr "" +msgstr "Sin cambeos necesarios ta auto formato" #: Editor.java:373 msgid "No files were added to the sketch." -msgstr "" +msgstr "No s'adhibioron fichers a o programa" #: Platform.java:167 msgid "No launcher available" -msgstr "" +msgstr "No i hai lanzador disponible." #: SerialMonitor.java:112 msgid "No line ending" -msgstr "" +msgstr "Sin achuste de linia" #: Base.java:541 msgid "No really, time for some fresh air for you." -msgstr "" +msgstr "No, en serio, prene un poquet d'aire fresco." #: Editor.java:1872 #, java-format msgid "No reference available for \"{0}\"" -msgstr "" +msgstr "No i hai referencia disponible ta \"{0}\"" #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." -msgstr "" +msgstr "No se troboron nucleos configuraus valius! Surtiendo..." #: ../../../processing/app/debug/TargetPackage.java:63 #, java-format msgid "No valid hardware definitions found in folder {0}." -msgstr "" +msgstr "No se troboron definicions de hardware validas en a carpeta {0}." #: Base.java:191 msgid "Non-fatal error while setting the Look & Feel." -msgstr "" +msgstr "Error no fatal entre que se configuraba a apariencia." #: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859 msgid "Nope" -msgstr "" +msgstr "No." #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" -msgstr "" +msgstr "Noruego" #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " "for tips on reducing your footprint." -msgstr "" +msgstr "No i hai suficient memoria, veyer http://www.arduino.cc/en/guide/troubleshooting#size ta obtener consellos sobre cómo reducir o suyo sinyal." #: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2145 Editor.java:2465 msgid "OK" -msgstr "" +msgstr "Ok" #: Sketch.java:992 Editor.java:376 msgid "One file added to the sketch." -msgstr "" +msgstr "Un fichero adhibiu a o tuyo programa." #: EditorToolbar.java:41 msgid "Open" -msgstr "" +msgstr "Ubrir" #: Editor.java:2688 msgid "Open URL" -msgstr "" +msgstr "Ubrir URL" #: Base.java:636 msgid "Open an Arduino sketch..." -msgstr "" +msgstr "Ubrir un sketch d'Arduino" #: EditorToolbar.java:46 msgid "Open in Another Window" -msgstr "" +msgstr "Ubrir en unatra finestra" #: Base.java:903 Editor.java:501 msgid "Open..." -msgstr "" +msgstr "Ubrir..." #: Editor.java:563 msgid "Page Setup" -msgstr "" +msgstr "Configurar pachina" #: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 msgid "Password:" -msgstr "" +msgstr "Clau:" #: Editor.java:1189 Editor.java:2731 msgid "Paste" -msgstr "" +msgstr "Apegar" #: Preferences.java:109 msgid "Persian" -msgstr "" +msgstr "Persa" #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." -msgstr "" +msgstr "Por favor, importe a biblioteca SPI d'o menú Programa > Importar Biblioteca." #: Base.java:239 msgid "Please install JDK 1.5 or later" -msgstr "" +msgstr "Por favor, instale o JDK 1.5 u superior" #: Preferences.java:110 msgid "Polish" -msgstr "" +msgstr "Polaco" #: ../../../processing/app/Editor.java:718 msgid "Port" -msgstr "" +msgstr "Puerto" #: ../../../processing/app/Preferences.java:151 msgid "Portugese" -msgstr "" +msgstr "Portugues" #: ../../../processing/app/Preferences.java:127 msgid "Portuguese (Brazil)" -msgstr "" +msgstr "Portugues (Brasil)" #: ../../../processing/app/Preferences.java:128 msgid "Portuguese (Portugal)" -msgstr "" +msgstr "Portugues (Portugal)" #: Preferences.java:295 Editor.java:583 msgid "Preferences" -msgstr "" +msgstr "Preferencias" #: FindReplace.java:123 FindReplace.java:128 msgid "Previous" -msgstr "" +msgstr "Previo" #: EditorHeader.java:326 msgid "Previous Tab" -msgstr "" +msgstr "Pestanya anterior" #: Editor.java:571 msgid "Print" -msgstr "" +msgstr "Imprentar" #: Editor.java:2571 msgid "Printing canceled." -msgstr "" +msgstr "Impresión cancelada." #: Editor.java:2547 msgid "Printing..." -msgstr "" +msgstr "Imprentando..." #: Base.java:1957 msgid "Problem Opening Folder" -msgstr "" +msgstr "Problema ubrindo a carpeta" #: Base.java:1933 msgid "Problem Opening URL" -msgstr "" +msgstr "Problema ubrindo l'URL" #: Base.java:227 msgid "Problem Setting the Platform" -msgstr "" +msgstr "Problema achustando a plataforma" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 msgid "Problem accessing board folder /www/sd" -msgstr "" +msgstr "Problema en acceder a la carpeta d'a placa /www/sd" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 msgid "Problem accessing files in folder " -msgstr "" +msgstr "Problema en acceder a fichers en a carpeta" #: Base.java:1673 msgid "Problem getting data folder" -msgstr "" +msgstr "Problema en adquirir carpeta de datos" #: Sketch.java:1467 #, java-format msgid "Problem moving {0} to the build folder" -msgstr "" +msgstr "Problema en mover {0} a la carpeta de construcción" #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " "http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions." -msgstr "" +msgstr "Problema puyando a la placa. Visita http://www.arduino.cc/en/guide/troubleshooting#upload ta sucherencias." #: Sketch.java:355 Sketch.java:362 Sketch.java:373 msgid "Problem with rename" -msgstr "" - -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "" +msgstr "Problema en renombrar" #: ../../../processing/app/I18n.java:86 msgid "Processor" -msgstr "" +msgstr "Procesador" #: Editor.java:704 msgid "Programmer" -msgstr "" +msgstr "Programador" #: Base.java:783 Editor.java:593 msgid "Quit" -msgstr "" +msgstr "Salir" #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" -msgstr "" +msgstr "Refer" #: Editor.java:1078 msgid "Reference" -msgstr "" +msgstr "Referencia" #: EditorHeader.java:300 msgid "Rename" -msgstr "" +msgstr "Renombrar" #: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046 msgid "Replace" -msgstr "" +msgstr "Reemplazar" #: FindReplace.java:122 FindReplace.java:129 msgid "Replace & Find" -msgstr "" +msgstr "Mirar y reemplazar" #: FindReplace.java:120 FindReplace.java:131 msgid "Replace All" -msgstr "" +msgstr "Reemplazar totz" #: Sketch.java:1043 #, java-format msgid "Replace the existing version of {0}?" -msgstr "" +msgstr "Reemplazar a versión existent de {0}?" #: FindReplace.java:81 msgid "Replace with:" -msgstr "" +msgstr "Reemplazar con:" #: Preferences.java:113 msgid "Romanian" -msgstr "" +msgstr "Rumano" #: Preferences.java:114 msgid "Russian" -msgstr "" +msgstr "Ruso" #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529 #: Editor.java:2064 Editor.java:2468 msgid "Save" -msgstr "" +msgstr "Salvar" #: Editor.java:537 msgid "Save As..." -msgstr "" +msgstr "Alzar como..." #: Editor.java:2317 msgid "Save Canceled." -msgstr "" +msgstr "Alzau cancelau." #: Editor.java:2467 msgid "Save changes before export?" -msgstr "" +msgstr "Alzar cambeos antes d'exportar?" #: Editor.java:2020 #, java-format msgid "Save changes to \"{0}\"? " -msgstr "" +msgstr "Alzar cambeos a \"{0}\"?" #: Sketch.java:825 msgid "Save sketch folder as..." -msgstr "" +msgstr "Salvar carpeta de programas como..." #: Editor.java:2270 Editor.java:2308 msgid "Saving..." -msgstr "" +msgstr "Alzando..." #: Base.java:1909 msgid "Select (or create new) folder for sketches..." -msgstr "" +msgstr "Seleccione (u creye) carpeta ta prochectos." #: Editor.java:1198 Editor.java:2739 msgid "Select All" -msgstr "" +msgstr "Selecciona tot" #: Base.java:2636 msgid "Select a zip file or a folder containing the library you'd like to add" -msgstr "" +msgstr "Selecciona o fichero zip u a carpeta que contiene a biblioteca que quiers adhibir" #: Sketch.java:975 msgid "Select an image or other data file to copy to your sketch" -msgstr "" +msgstr "Selecciona una imachen u unatro fichero de datos ta copiar-los a o tuyo programa" #: Preferences.java:330 msgid "Select new sketchbook location" -msgstr "" +msgstr "Seleccione nueva localización de o sketchbook" #: ../../../processing/app/debug/Compiler.java:146 msgid "Selected board depends on '{0}' core (not installed)." -msgstr "" +msgstr "A placa seleccionada depende d'o nucleo '{0}' que no ye instalau." #: SerialMonitor.java:93 msgid "Send" -msgstr "" +msgstr "Ninviar" #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 msgid "Serial Monitor" -msgstr "" +msgstr "Monitor serie" #: Serial.java:174 #, java-format @@ -1279,145 +1279,145 @@ msgstr "" msgid "" "Serial port ''{0}'' not found. Did you select the right one from the Tools >" " Serial Port menu?" -msgstr "" +msgstr "Puerto \"{0}\" no trobau. Has seleccionau o correcto d'o menú Ferramientas > Puerto serie?" #: Editor.java:2343 #, java-format msgid "" "Serial port {0} not found.\n" "Retry the upload with another serial port?" -msgstr "" +msgstr "Puerto {0} no trobau.\nReintentar a puyada con unatro puerto?" #: Base.java:1681 msgid "Settings issues" -msgstr "" +msgstr "Qüestions d'achustes" #: Editor.java:641 msgid "Show Sketch Folder" -msgstr "" +msgstr "Amostrar Carpeta de programa" #: ../../../processing/app/EditorStatus.java:468 msgid "Show verbose output during compilation" -msgstr "" +msgstr "Amostrar salida detallada en compilar" #: Preferences.java:387 msgid "Show verbose output during: " -msgstr "" +msgstr "Amostrar salida detallada mientres:" #: Editor.java:607 msgid "Sketch" -msgstr "" +msgstr "Programa" #: Sketch.java:1754 msgid "Sketch Disappeared" -msgstr "" +msgstr "Programa perdiu" #: Base.java:1411 msgid "Sketch Does Not Exist" -msgstr "" +msgstr "O programa no existe" #: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966 msgid "Sketch is Read-Only" -msgstr "" +msgstr "O programa ye de Solament Lectura" #: Sketch.java:294 msgid "Sketch is Untitled" -msgstr "" +msgstr "O programa no tiene nombre" #: Sketch.java:720 msgid "Sketch is read-only" -msgstr "" +msgstr "O programa ye Solament Lectura" #: Sketch.java:1653 msgid "" "Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " "tips on reducing it." -msgstr "" +msgstr "Programa muit gran: visite http://www.arduino.cc/en/guide/troubleshooting#size ta veyer cómo reducir-lo." #: ../../../processing/app/Sketch.java:1639 #, java-format msgid "" "Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} " "bytes." -msgstr "" +msgstr "O programa usa {0} bytes ({2}%%) d'o espacio d'almazenamiento de programas. O maximo son {1} bytes." #: Editor.java:510 msgid "Sketchbook" -msgstr "" +msgstr "Sketchbook" #: Base.java:258 msgid "Sketchbook folder disappeared" -msgstr "" +msgstr "A carpeta sketchbook no ha estau trobada" #: Preferences.java:315 msgid "Sketchbook location:" -msgstr "" +msgstr "Localización de o sketchbook" #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" -msgstr "" +msgstr "Sketches (*.ino, *.pde)" #: ../../../processing/app/Preferences.java:152 msgid "Slovenian" -msgstr "" +msgstr "Esloveno" #: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967 msgid "" "Some files are marked \"read-only\", so you'll\n" "need to re-save the sketch in another location,\n" "and try again." -msgstr "" +msgstr "Qualques fichers son solament que de lectura, asi que amenesterá\ntornar a alzar en unatra ubicación\ny intentar-lo de nuevo." #: Sketch.java:721 msgid "" "Some files are marked \"read-only\", so you'll\n" "need to re-save this sketch to another location." -msgstr "" +msgstr "Qualques fichers son \"solament lectura\", asinas que\namenesterás alzar iste programa en unatra ubicación de nuevo." #: Sketch.java:457 #, java-format msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." -msgstr "" +msgstr "Lo siento, ya existe un programa (u carpeta) clamau \"{0}\"." #: Preferences.java:115 msgid "Spanish" -msgstr "" +msgstr "Español" #: Base.java:540 msgid "Sunshine" -msgstr "" +msgstr "Sol" #: ../../../processing/app/Preferences.java:153 msgid "Swedish" -msgstr "" +msgstr "Sueco" #: Preferences.java:84 msgid "System Default" -msgstr "" +msgstr "Achustes Inicials" #: Preferences.java:116 msgid "Tamil" -msgstr "" +msgstr "Tamil" #: debug/Compiler.java:414 msgid "The 'BYTE' keyword is no longer supported." -msgstr "" +msgstr "A parola clau 'BYTE' no tornará a estar valida." #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." -msgstr "" +msgstr "A clase Client ha estau renombrada a EthernetClient" #: debug/Compiler.java:420 msgid "The Server class has been renamed EthernetServer." -msgstr "" +msgstr "A clase Servidor ha estau renombrada a EthernetServer" #: debug/Compiler.java:432 msgid "The Udp class has been renamed EthernetUdp." -msgstr "" +msgstr "A clase Udp ha estau renombrada a EthernetUdp" #: Base.java:192 msgid "The error message follows, however Arduino should run fine." -msgstr "" +msgstr "O mensache d'error siguient, manimenos Arduino habría de funcionar bien." #: Editor.java:2147 #, java-format @@ -1425,7 +1425,7 @@ msgid "" "The file \"{0}\" needs to be inside\n" "a sketch folder named \"{1}\".\n" "Create this folder, move the file, and continue?" -msgstr "" +msgstr "O fichero \"{0}\" ameneste estar dentro d'una\ncarpeta de prochecto clamada \"{1}\".\nCreyar-la, mover o fichero y continar?" #: Base.java:1054 Base.java:2674 #, java-format @@ -1433,25 +1433,25 @@ msgid "" "The library \"{0}\" cannot be used.\n" "Library names must contain only basic letters and numbers.\n" "(ASCII only and no spaces, and it cannot start with a number)" -msgstr "" +msgstr "A biblioteca \"{0}\" no se puede usar.\nOs nombres de biblioteca han de contener solament numeros y letras.\n(Solament ASCII y sin espacios, y no pueden empecipiar con un numero)" #: Sketch.java:374 msgid "" "The main file can't use an extension.\n" "(It may be time for your to graduate to a\n" "\"real\" programming environment)" -msgstr "" +msgstr "O fichero prencipal no se puede usar una extensión.\n(Tal vegada sía hora que te gradúes en un\nentorno de programación \"real\")" #: Sketch.java:356 msgid "The name cannot start with a period." -msgstr "" +msgstr "O nombre no puede prencipiar con un periodo." #: Base.java:1412 msgid "" "The selected sketch no longer exists.\n" "You may need to restart Arduino to update\n" "the sketchbook menu." -msgstr "" +msgstr "O programa seleccionau no existe.\nAmenesterá reiniciar Arduino ta actualizar\no menú de sketchbook." #: Base.java:1430 #, java-format @@ -1461,14 +1461,14 @@ msgid "" "(ASCII-only with no spaces, and it cannot start with a number).\n" "To get rid of this message, remove the sketch from\n" "{1}" -msgstr "" +msgstr "O programa \"{0}\" no se puede usar.\nOs nombres de programa han de contener solament numeros y letras.\n(Solament ASCII y sin espacios, y no pueden empecipiar con un numero).\nTa desfer-se d'iste mensache, elimine o programa de {1}." #: Sketch.java:1755 msgid "" "The sketch folder has disappeared.\n" " Will attempt to re-save in the same location,\n" "but anything besides the code will be lost." -msgstr "" +msgstr "A carpeta d'o programa ha desapareixiu\nIntentaré salvar-lo de nuevo en a mesma ubicación\npero brenca mas que o codigo se perderá." #: Sketch.java:2018 msgid "" @@ -1484,237 +1484,237 @@ msgid "" "location, and create a new sketchbook folder if\n" "necessary. Arduino will then stop talking about\n" "himself in the third person." -msgstr "" +msgstr "A carpeta de sketchbook ya no existe.\nArduino cambiará a ubicación por defecto de\nsketchbook, y creyará una carpeta de prochecto\nnuevo si ye necesario. Arduino alavez deixará\n de charrar d'ell mesmo en tercera persona." #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" "location from which where you're trying to add it.\n" "I ain't not doin nuthin'." -msgstr "" +msgstr "Ixe fichero ya s'heba copiau a la ubicación\ndende a quala lo querebas adhibir,,,\nNo feré brenca." #: ../../../processing/app/EditorStatus.java:467 msgid "This report would have more information with" -msgstr "" +msgstr "Iste informe tendría más información" #: Base.java:535 msgid "Time for a Break" -msgstr "" +msgstr "Ye momento ta un descanso" #: Editor.java:663 msgid "Tools" -msgstr "" +msgstr "Ferramientas" #: Editor.java:1070 msgid "Troubleshooting" -msgstr "" +msgstr "Problemas" #: ../../../processing/app/Preferences.java:117 msgid "Turkish" -msgstr "" +msgstr "Turco" #: ../../../processing/app/Editor.java:2507 msgid "Type board password to access its console" -msgstr "" +msgstr "Tecleye a clau d'a placa ta accedir a la suya consola" #: ../../../processing/app/Sketch.java:1673 msgid "Type board password to upload a new sketch" -msgstr "" +msgstr "Tecleye a clau d'a placa ta puyar un nuevo prochecto" #: ../../../processing/app/Preferences.java:118 msgid "Ukrainian" -msgstr "" +msgstr "Ucrainés" #: ../../../processing/app/Editor.java:2524 #: ../../../processing/app/NetworkMonitor.java:145 msgid "Unable to connect: is the sketch using the bridge?" -msgstr "" +msgstr "No se puede connectar, o programa ye fendo servir o puent?" #: ../../../processing/app/NetworkMonitor.java:130 msgid "Unable to connect: retrying" -msgstr "" +msgstr "Imposible connectar-se: reintentando" #: ../../../processing/app/Editor.java:2526 msgid "Unable to connect: wrong password?" -msgstr "" +msgstr "Imposible connectar: clau incorrecta?" #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" -msgstr "" +msgstr "Imposible ubrir o monitor serie" #: Sketch.java:1432 #, java-format msgid "Uncaught exception type: {0}" -msgstr "" +msgstr "Tipo d'excepción no detectada: {0}" #: Editor.java:1133 Editor.java:1355 msgid "Undo" -msgstr "" +msgstr "Desfer" #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" "To enable opening URLs or folders, add a \n" "\"launcher=/path/to/app\" line to preferences.txt" -msgstr "" +msgstr "No s'ha especificau plataforma, no i hai lanzador disponible.\nTa activar URL u carpetas, adhibe una linia a\n\"launcher=/rota/a2/aplicación/\" en preferences.txt" #: UpdateCheck.java:111 msgid "Update" -msgstr "" +msgstr "Actualizar" #: Preferences.java:428 msgid "Update sketch files to new extension on save (.pde -> .ino)" -msgstr "" +msgstr "Actualizar fichers de prochecto a la nueva extensión en salvar (.pde -> .ino)" #: EditorToolbar.java:41 Editor.java:545 msgid "Upload" -msgstr "" +msgstr "Puyar" #: EditorToolbar.java:46 Editor.java:553 msgid "Upload Using Programmer" -msgstr "" +msgstr "Puyar Usando Programador" #: Editor.java:2403 Editor.java:2439 msgid "Upload canceled." -msgstr "" +msgstr "Puyada Cancelada." #: ../../../processing/app/Sketch.java:1678 msgid "Upload cancelled" -msgstr "" +msgstr "Carga cancelada" #: Editor.java:2378 msgid "Uploading to I/O Board..." -msgstr "" +msgstr "Puyando a la Placa I/U..." #: Sketch.java:1622 msgid "Uploading..." -msgstr "" +msgstr "Puyando..." #: Editor.java:1269 msgid "Use Selection For Find" -msgstr "" +msgstr "Usar selección ta buscar" #: Preferences.java:409 msgid "Use external editor" -msgstr "" +msgstr "Usar editor externo" #: ../../../processing/app/debug/Compiler.java:94 #, java-format msgid "Using library {0} in folder: {1} {2}" -msgstr "" +msgstr "Utilizando biblioteca {0} en carpeta: {1} {2}" #: ../../../processing/app/debug/Compiler.java:320 #, java-format msgid "Using previously compiled file: {0}" -msgstr "" +msgstr "Utilizando fichero previament compilau: {0}" #: EditorToolbar.java:41 EditorToolbar.java:46 msgid "Verify" -msgstr "" +msgstr "Verificar" #: Editor.java:609 msgid "Verify / Compile" -msgstr "" +msgstr "Verificar / Compilar" #: Preferences.java:400 msgid "Verify code after upload" -msgstr "" +msgstr "Verificar codigo dimpués de puyar" #: ../../../processing/app/Preferences.java:154 msgid "Vietnamese" -msgstr "" +msgstr "Vietnamés" #: Editor.java:1105 msgid "Visit Arduino.cc" -msgstr "" +msgstr "Visita Arduino.cc" #: Base.java:2128 msgid "Warning" -msgstr "" +msgstr "Warning" #: debug/Compiler.java:444 msgid "Wire.receive() has been renamed Wire.read()." -msgstr "" +msgstr "Wire.receive() ha estau renombrau a Wire.read()" #: debug/Compiler.java:438 msgid "Wire.send() has been renamed Wire.write()." -msgstr "" +msgstr "Wire.send() ha estau renombrau a Wire.write()" #: FindReplace.java:105 msgid "Wrap Around" -msgstr "" +msgstr "Ciclico" #: debug/Uploader.java:213 msgid "" "Wrong microcontroller found. Did you select the right board from the Tools " "> Board menu?" -msgstr "" +msgstr "Trobau microcontrolador erronio. Has seleccionau a placa correcta en o menú Ferramientas > Placa?" #: Preferences.java:77 UpdateCheck.java:108 msgid "Yes" -msgstr "" +msgstr "Si" #: Sketch.java:1074 msgid "You can't fool me" -msgstr "" +msgstr "No me puetz enganyar" #: Sketch.java:411 msgid "You can't have a .cpp file with the same name as the sketch." -msgstr "" +msgstr "No puede tener un fichero .cpp con o mesmo nombre que o programa." #: Sketch.java:421 msgid "" "You can't rename the sketch to \"{0}\"\n" "because the sketch already has a .cpp file with that name." -msgstr "" +msgstr "No puetz renombrar o programa a \"{0}\"\nporque o programa encara tiene un fichero .cpp con ixe nombre" #: Sketch.java:861 msgid "" "You can't save the sketch as \"{0}\"\n" "because the sketch already has a .cpp file with that name." -msgstr "" +msgstr "No puetz alzar o programa como \"{0}\"\nporque o programa encara tiene un fichero .cpp con ixe nombre" #: Sketch.java:883 msgid "" "You cannot save the sketch into a folder\n" "inside itself. This would go on forever." -msgstr "" +msgstr "No puetz alzar o programa dentro d'una carpeta en o suyo interior.\nIsto sería infinito." #: Base.java:1888 msgid "You forgot your sketchbook" -msgstr "" +msgstr "Ixuplidó o suyo sketchbook." #: ../../../processing/app/AbstractMonitor.java:92 msgid "" "You've pressed {0} but nothing was sent. Should you select a line ending?" -msgstr "" +msgstr "Has pretau {0} pero no s'ha ninviau cosa. Has de seleccionar un fin de linia?" #: Base.java:536 msgid "" "You've reached the limit for auto naming of new sketches\n" "for the day. How about going for a walk instead?" -msgstr "" +msgstr "Has aconseguiu o limite d'auto nombrau de programas d'o día...\nPor qué no te das una gambadeta?" #: Base.java:2638 msgid "ZIP files or folders" -msgstr "" +msgstr "Fichers Zip u carpetas" #: Base.java:2661 msgid "Zip doesn't contain a library" -msgstr "" +msgstr "O fichero Zip no contiene bibliotecas" #: Sketch.java:364 #, java-format msgid "\".{0}\" is not a valid extension." -msgstr "" +msgstr "\".{0}\" no ye una extensión valida" #: SketchCode.java:258 #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." msgstr "" #: debug/Compiler.java:409 @@ -1723,7 +1723,7 @@ msgid "" "As of Arduino 0019, the Ethernet library depends on the SPI library.\n" "You appear to be using it or another library that depends on the SPI library.\n" "\n" -msgstr "" +msgstr "\nComo en Arduino 0019, a biblioteca Ethernet depende d'a biblioteca SPI.\nPareixe que a istas usando u unatra biblioteca que depende d'a biblioteca SPI.\n\n" #: debug/Compiler.java:415 msgid "" @@ -1731,145 +1731,145 @@ msgid "" "As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" "Please use Serial.write() instead.\n" "\n" -msgstr "" +msgstr "\nComo en Arduino 1.0, a parola clau 'BYTE' no se suportará mas.\nPor favor, usa Serial.write() en o suyo puesto.\n\n" #: debug/Compiler.java:427 msgid "" "\n" "As of Arduino 1.0, the Client class in the Ethernet library has been renamed to EthernetClient.\n" "\n" -msgstr "" +msgstr "\nComo en Arduino 1.0, a clase Client en a biblioteca Ethernet ha estau renombrada a EthernetClient.\n" #: debug/Compiler.java:421 msgid "" "\n" "As of Arduino 1.0, the Server class in the Ethernet library has been renamed to EthernetServer.\n" "\n" -msgstr "" +msgstr "\nComo en Arduino 1.0, a clase Server en a biblioteca Ethernet ha estau renombrada a EthernetServer.\n\n" #: debug/Compiler.java:433 msgid "" "\n" "As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n" "\n" -msgstr "" +msgstr "\nComo en Arduino 1.0, a clase Udp en a biblioteca Ethernet ha estau renombrada a EthernetUdp.\n" #: debug/Compiler.java:445 msgid "" "\n" "As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n" "\n" -msgstr "" +msgstr "\nComo en Arduino 1.0, a función Wire.receive() ha estau renombrada a Wire.read() por consistencia con atras bibliotecas.\n" #: debug/Compiler.java:439 msgid "" "\n" "As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n" "\n" -msgstr "" +msgstr "\nComo en Arduino 1.0, a función Wire.send() ha estau renombrada a Wire.write() por consistencia con atras bibliotecas.\n\n" #: SerialMonitor.java:130 SerialMonitor.java:133 msgid "baud" -msgstr "" +msgstr "baudio" #: Preferences.java:389 msgid "compilation " -msgstr "" +msgstr "compilación " #: ../../../processing/app/NetworkMonitor.java:111 msgid "connected!" -msgstr "" +msgstr "Connectau!" #: Sketch.java:540 msgid "createNewFile() returned false" -msgstr "" +msgstr "createNewFile() retornó FALSO." #: ../../../processing/app/EditorStatus.java:469 msgid "enabled in File > Preferences." -msgstr "" +msgstr "activala dende Fichero > Preferencias" #: Base.java:2090 msgid "environment" -msgstr "" +msgstr "entorno" #: Editor.java:1108 msgid "http://arduino.cc/" -msgstr "" +msgstr "http://arduino.cc/" #: ../../../processing/app/debug/Compiler.java:49 msgid "http://github.com/arduino/Arduino/issues" -msgstr "" +msgstr "http://github.com/arduino/arduino/issues" #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" -msgstr "" +msgstr "http://www.arduino.cc/en/main/software" #: UpdateCheck.java:53 msgid "http://www.arduino.cc/latest.txt" -msgstr "" +msgstr "http://www.arduino.cc/latest.txt" #: Base.java:2075 msgid "http://www.arduino.cc/playground/Learning/Linux" -msgstr "" +msgstr "http://www.arduino.cc/playground/learning/linux" #: Preferences.java:625 #, java-format msgid "ignoring invalid font size {0}" -msgstr "" +msgstr "ignorando grandaria de fuent invalido {0}" #: Base.java:2080 msgid "index.html" -msgstr "" +msgstr "index.html" #: Editor.java:936 Editor.java:943 msgid "name is null" -msgstr "" +msgstr "o nombre ye vuedo" #: Base.java:2090 msgid "platforms.html" -msgstr "" +msgstr "platforms.html" #: Serial.java:451 #, java-format msgid "" "readBytesUntil() byte buffer is too small for the {0} bytes up to and " "including char {1}" -msgstr "" +msgstr "O buffer de readBytesUntil() ye masiau chicot ta {0} bytes y mesmo ta o caracter {1}" #: Sketch.java:647 msgid "removeCode: internal error.. could not find code" -msgstr "" +msgstr "removeCode: error interna... no trobé o codigo" #: Editor.java:932 msgid "serialMenu is null" -msgstr "" +msgstr "serialMenu ye vuedo" #: debug/Uploader.java:195 #, java-format msgid "" "the selected serial port {0} does not exist or your board is not connected" -msgstr "" +msgstr "o puerto seleccionau {0} no existe u a tuya placa no ista connectada" #: Preferences.java:391 msgid "upload" -msgstr "" +msgstr "puyar" #: Editor.java:380 #, java-format msgid "{0} files added to the sketch." -msgstr "" +msgstr "{0} fichers adhibius a o programa." #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" -msgstr "" +msgstr "{0} retornó {1}" #: Editor.java:2213 #, java-format msgid "{0} | Arduino {1}" -msgstr "" +msgstr "{0} | Arduino {1}" #: Editor.java:1874 #, java-format msgid "{0}.html" -msgstr "" +msgstr "{0}.html" diff --git a/arduino-core/src/processing/app/i18n/Resources_an.properties b/arduino-core/src/processing/app/i18n/Resources_an.properties index fc30f3b1f..73833d9e8 100644 --- a/arduino-core/src/processing/app/i18n/Resources_an.properties +++ b/arduino-core/src/processing/app/i18n/Resources_an.properties @@ -3,304 +3,307 @@ # This file is distributed under the same license as the Arduino IDE package. # Juan Pablo Martinez , 2012. # Daniel Martinez , 2012. -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Aragonese (http\://www.transifex.com/projects/p/arduino-ide-15/language/an/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: an\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Aragonese (http\://www.transifex.com/projects/p/arduino-ide-15/language/an/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: an\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 -!\ \ (requires\ restart\ of\ Arduino)= +\ \ (requires\ restart\ of\ Arduino)=\ (requiere reiniciar Arduino) #: debug/Compiler.java:455 -!'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo= +'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Teclau' solament suportau por Arduino Leonardo #: debug/Compiler.java:450 -!'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo= +'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Churi' solament suportau por Arduino Leonardo #: Preferences.java:478 -!(edit\ only\ when\ Arduino\ is\ not\ running)= +(edit\ only\ when\ Arduino\ is\ not\ running)=(editar solament quan Arduino no ye correndo) #: Sketch.java:746 -!.pde\ ->\ .ino= +.pde\ ->\ .ino=.pde -> .ino #: Base.java:773 -!\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

    Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

    Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= Yes seguro de querer salir?

    Zarrando o zaguer prochecto ubierto, se zarrar\u00e1 Arduino. #: Editor.java:2053 -!\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Do\ you\ want\ to\ save\ changes\ to\ this\ sketch
    \ before\ closing?

    If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Do\ you\ want\ to\ save\ changes\ to\ this\ sketch
    \ before\ closing?

    If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= Quiers alzar cambeos a o programa
    antes de zarrar?

    Si no los alzas, os tuyos cambeos se perder\u00e1n. #: Sketch.java:398 #, java-format -!A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"= +A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=Un fichero clamau "{0}" ya existe en "{1}" #: Editor.java:2169 #, java-format -!A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.= +A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=Ya existe una carpeta con o nombre "{0}". No se puede ubrir. #: Base.java:2690 #, java-format -!A\ library\ named\ {0}\ already\ exists= +A\ library\ named\ {0}\ already\ exists=A biblioteca con nombre {0} ya existe #: UpdateCheck.java:103 -!A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?= +A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Una nueva versi\u00f3n d'Arduino ye disponible,\nquiers visitar a pachina de descargas d'Arduino? #: EditorConsole.java:153 -!A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.= +A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=Ha ocurriu un problema mientres s'ubriban os fichers\nusaus ta alzar a salida d'a consola. #: Editor.java:1116 -!About\ Arduino= +About\ Arduino=Arredol d'Arduino #: Editor.java:650 -!Add\ File...= +Add\ File...=Adhibir fichero... #: Base.java:963 -!Add\ Library...= +Add\ Library...=Adhibir biblioteca... #: tools/FixEncoding.java:77 -!An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n= +An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Ha ocurriu una error mientres se solucionaba a codificaci\u00f3n d'o fichero.\nNo intentes alzar iste programa asinas sobrescribindo a viella versi\u00f3n.\nUsa Ubrir ta reubrir o programa y intenta-lo de nuevo.\n #: Base.java:228 -!An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.= +An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Error desconoixida en intentar cargar codigo especifico de plataforma ta la suya maquina. #: Preferences.java:85 -!Arabic= +Arabic=Arabe #: Preferences.java:86 -!Aragonese= +Aragonese=Aragon\u00e9s #: tools/Archiver.java:48 -!Archive\ Sketch= +Archive\ Sketch=Archivar programa. #: tools/Archiver.java:109 -!Archive\ sketch\ as\:= +Archive\ sketch\ as\:=Archivar programa como\: #: tools/Archiver.java:139 -!Archive\ sketch\ canceled.= +Archive\ sketch\ canceled.=Archivaci\u00f3n de programa cancelada. #: tools/Archiver.java:75 -!Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.= +Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=O fichero d'o programa s'ha cancelau porque\nno se podi\u00f3 alzar o propio programa. #: ../../../processing/app/I18n.java:83 -!Arduino\ ARM\ (32-bits)\ Boards= +Arduino\ ARM\ (32-bits)\ Boards=Placas Arduino ARM (32 bits) #: ../../../processing/app/I18n.java:82 -!Arduino\ AVR\ Boards= +Arduino\ AVR\ Boards=Placas Arduino AVR + +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= #: Base.java:1682 -!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.= +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino no se puede executar porque no se\npodi\u00f3 creyar una carpeta ta alzar a configuraci\u00f3n. #: Base.java:1889 -!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.= +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino no podi\u00f3 encetar-se porque no podi\u00f3\ncreyar una carpeta ta almagazenar os tuyo sketchbook. #: Base.java:240 -!Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.= +Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino ameneste JDK ( no solament JRE) ta funcionar.\nPor favor, instale o JDK 1.5 u superior.\nTa pero informaci\u00f3n, consulte as referencias. #: ../../../processing/app/EditorStatus.java:471 -!Arduino\:\ = +Arduino\:\ =Arduino\: #: Sketch.java:588 #, java-format -!Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?= +Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Seguro que quiers borrar "{0}"? #: Sketch.java:587 -!Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?= +Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Seguro que quiers borrar iste programa? #: ../../../processing/app/Preferences.java:137 -!Armenian= +Armenian=Armenio #: ../../../processing/app/Preferences.java:138 -!Asturian= +Asturian=Asturiano #: tools/AutoFormat.java:91 -!Auto\ Format= +Auto\ Format=Auto Formato #: tools/AutoFormat.java:934 -!Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.= +Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=Auto Formato Cancelau\: masiadas claus a la cucha. #: tools/AutoFormat.java:925 -!Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.= +Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=Auto Formato Cancelau\: masiaus parentesis a la cucha. #: tools/AutoFormat.java:931 -!Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.= +Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=Auto Formato Cancelau\: masiadas claus a la dreita. #: tools/AutoFormat.java:922 -!Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.= +Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=Auto Formato Cancelau\: masiaus parentesis a la dreita. #: tools/AutoFormat.java:944 -!Auto\ Format\ finished.= +Auto\ Format\ finished.=Auto Formato rematau. #: Preferences.java:439 -!Automatically\ associate\ .ino\ files\ with\ Arduino= +Automatically\ associate\ .ino\ files\ with\ Arduino=Asociar automaticament os fichers .ino a Arduino #: SerialMonitor.java:110 -!Autoscroll= +Autoscroll=Autoscroll #: Editor.java:2619 #, java-format -!Bad\ error\ line\:\ {0}= +Bad\ error\ line\:\ {0}=Linia error\: {0} #: Editor.java:2136 -!Bad\ file\ selected= +Bad\ file\ selected=Fichero mal seleccionau #: ../../../processing/app/Preferences.java:139 -!Belarusian= +Belarusian=Beloruso #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 -!Board= +Board=Placa #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format -!Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= +Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=A placa {0}\:{1}\:{2} no define una preferencia ''build.board''. S'ha ficau automaticament a\: {3} #: ../../../processing/app/EditorStatus.java:472 -!Board\:\ = +Board\:\ =Placa\: #: ../../../processing/app/Preferences.java:140 -!Bosnian= +Bosnian=Bosnio #: SerialMonitor.java:112 -!Both\ NL\ &\ CR= +Both\ NL\ &\ CR=Totz dos NL & CR #: Preferences.java:81 -!Browse= +Browse=Explorar #: Sketch.java:1392 Sketch.java:1423 -!Build\ folder\ disappeared\ or\ could\ not\ be\ written= +Build\ folder\ disappeared\ or\ could\ not\ be\ written=Carpeta de construcci\u00f3n no trobada u no se puede escribir en ella #: ../../../processing/app/Preferences.java:80 -!Bulgarian= +Bulgarian=B\u00falgaro #: ../../../processing/app/Preferences.java:141 -!Burmese\ (Myanmar)= +Burmese\ (Myanmar)=Birmano (Myanmar) #: Editor.java:708 -!Burn\ Bootloader= +Burn\ Bootloader=Escribir bootloader #: Editor.java:2504 -!Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...= +Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Escribindo bootloader a la Placa I/U (isto habr\u00eda de tardar un menuto)... #: ../../../processing/app/Base.java:368 !Can't\ open\ source\ sketch\!= #: ../../../processing/app/Preferences.java:92 -!Canadian\ French= +Canadian\ French=Franc\u00e9s de Canad\u00e1 #: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2064 Editor.java:2145 Editor.java:2465 -!Cancel= +Cancel=Cancelar #: Sketch.java:455 -!Cannot\ Rename= +Cannot\ Rename=No se puede renombrar #: SerialMonitor.java:112 -!Carriage\ return= +Carriage\ return=Retorno de carro #: Preferences.java:87 -!Catalan= +Catalan=Catal\u00e1n #: Preferences.java:419 -!Check\ for\ updates\ on\ startup= +Check\ for\ updates\ on\ startup=Comprebar actualizacions en encetar #: ../../../processing/app/Preferences.java:142 -!Chinese\ (China)= +Chinese\ (China)=Chino (China) #: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= +Chinese\ (Hong\ Kong)=Chino (Hong Kong) #: ../../../processing/app/Preferences.java:144 -!Chinese\ (Taiwan)= +Chinese\ (Taiwan)=Chino (Taiwan) #: ../../../processing/app/Preferences.java:143 -!Chinese\ (Taiwan)\ (Big5)= +Chinese\ (Taiwan)\ (Big5)=Chino (Taiwan) (Big5) #: Preferences.java:88 -!Chinese\ Simplified= +Chinese\ Simplified=Chino Simplificau #: Preferences.java:89 -!Chinese\ Traditional= +Chinese\ Traditional=Chino Tradicional #: Editor.java:521 Editor.java:2024 -!Close= +Close=Zarrar #: Editor.java:1208 Editor.java:2749 -!Comment/Uncomment= +Comment/Uncomment=Comentar/Descomentar #: debug/Compiler.java:49 debug/Uploader.java:45 #, java-format -!Compiler\ error,\ please\ submit\ this\ code\ to\ {0}= +Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Error d'o compilador, por favor, ninvia iste codigo a {0} #: Sketch.java:1608 Editor.java:1890 -!Compiling\ sketch...= +Compiling\ sketch...=Compilando programa... #: EditorConsole.java:152 -!Console\ Error= +Console\ Error=Error de consola #: Editor.java:1157 Editor.java:2707 -!Copy= +Copy=Copiar #: Editor.java:1177 Editor.java:2723 -!Copy\ as\ HTML= +Copy\ as\ HTML=Copiar como HTML #: ../../../processing/app/EditorStatus.java:455 -!Copy\ error\ messages= +Copy\ error\ messages=Copiar mensaches d'error #: Editor.java:1165 Editor.java:2715 -!Copy\ for\ Forum= +Copy\ for\ Forum=Copiar a o Foro #: Sketch.java:1089 #, java-format -!Could\ not\ add\ ''{0}''\ to\ the\ sketch.= +Could\ not\ add\ ''{0}''\ to\ the\ sketch.=No se puedo adhibir "{0}" a o programa. #: Editor.java:2188 -!Could\ not\ copy\ to\ a\ proper\ location.= +Could\ not\ copy\ to\ a\ proper\ location.=No se puede copiar a la mesma ubicaci\u00f3n. #: Editor.java:2179 -!Could\ not\ create\ the\ sketch\ folder.= +Could\ not\ create\ the\ sketch\ folder.=No podi\u00e9 creyar a capeta de programa. #: Editor.java:2206 -!Could\ not\ create\ the\ sketch.= +Could\ not\ create\ the\ sketch.=No podi\u00e9 creyar o programa. #: Sketch.java:617 #, java-format -!Could\ not\ delete\ "{0}".= +Could\ not\ delete\ "{0}".=No se podi\u00f3 borrar "{0}". #: Sketch.java:1066 #, java-format -!Could\ not\ delete\ the\ existing\ ''{0}''\ file.= +Could\ not\ delete\ the\ existing\ ''{0}''\ file.=No se podi\u00f3 borrar o fichero existent "{0}". #: Base.java:2533 Base.java:2556 #, java-format -!Could\ not\ delete\ {0}= +Could\ not\ delete\ {0}=No se podi\u00f3 borrar {0} #: ../../../processing/app/debug/TargetPlatform.java:74 #, java-format -!Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?= +Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?=No se podi\u00f3 trobar boards.txt en {0}. Ye pre-1.5? #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 #, java-format -!Could\ not\ find\ tool\ {0}= +Could\ not\ find\ tool\ {0}=No se podi\u00f3 trobar a ferramienta {0} #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 #, java-format -!Could\ not\ find\ tool\ {0}\ from\ package\ {1}= +Could\ not\ find\ tool\ {0}\ from\ package\ {1}=No se podi\u00f3 trobar a ferramienta {0} d'o conchunto {1} #: Base.java:1934 #, java-format -!Could\ not\ open\ the\ URL\n{0}= +Could\ not\ open\ the\ URL\n{0}=No se puede ubrir l'URL\n{0} #: Base.java:1958 #, java-format -!Could\ not\ open\ the\ folder\n{0}= +Could\ not\ open\ the\ folder\n{0}=No se puede ubrir a carpeta\n{0} #: Sketch.java:1769 -!Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.= +Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=No se podi\u00f3 re-alzar o programa. Puetz estar en problemas en iste momento,\ny puede que s\u00eda hora de copiar y apegar o tuyo codigo en unatro editor de texto. #: Sketch.java:1768 -!Could\ not\ re-save\ sketch= +Could\ not\ re-save\ sketch=No se podi\u00f3 alzar de nuevo o programa #: Theme.java:52 !Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= #: Preferences.java:219 -!Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= +Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=No se pueden leyer os achustes predeterminaus.\nAmeneste reinstalar Arduino #: Preferences.java:258 #, java-format @@ -308,598 +311,595 @@ #: Base.java:2482 #, java-format -!Could\ not\ remove\ old\ version\ of\ {0}= +Could\ not\ remove\ old\ version\ of\ {0}=No se podi\u00f3 eliminar a versi\u00f3n antiga de {0} #: Sketch.java:483 Sketch.java:528 #, java-format -!Could\ not\ rename\ "{0}"\ to\ "{1}"= +Could\ not\ rename\ "{0}"\ to\ "{1}"=No se podi\u00f3 renombrar "{0}" a "{1}" #: Sketch.java:475 -!Could\ not\ rename\ the\ sketch.\ (0)= +Could\ not\ rename\ the\ sketch.\ (0)=No se podi\u00f3 renombrar o programa. (0) #: Sketch.java:496 -!Could\ not\ rename\ the\ sketch.\ (1)= +Could\ not\ rename\ the\ sketch.\ (1)=No se podi\u00f3 renombrar o programa. (1) #: Sketch.java:503 -!Could\ not\ rename\ the\ sketch.\ (2)= +Could\ not\ rename\ the\ sketch.\ (2)=No se podi\u00f3 renombrar o programa. (2) #: Base.java:2492 #, java-format -!Could\ not\ replace\ {0}= +Could\ not\ replace\ {0}=No podi\u00e9 reemplazar {0} #: tools/Archiver.java:74 -!Couldn't\ archive\ sketch= +Couldn't\ archive\ sketch=No se podi\u00f3 archivar o programa #: Sketch.java:1647 -!Couldn't\ determine\ program\ size\:\ {0}= +Couldn't\ determine\ program\ size\:\ {0}=No se podi\u00f3 determinar a grandaria d'o programa\: {0} #: Sketch.java:616 -!Couldn't\ do\ it= +Couldn't\ do\ it=No puedo fer-lo #: debug/BasicUploader.java:209 -!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.= +Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=No podi\u00e9 trobar una placa en o puerto seleccionau. Compreba que has seleccionau o puerto correcto. Si ye correcto, preba a pretar o bot\u00f3n de Reset d'a placa dimpu\u00e9s d'encetar a puyada. #: ../../../processing/app/Preferences.java:82 -!Croatian= +Croatian=Crovata #: Editor.java:1149 Editor.java:2699 -!Cut= +Cut=Tallar #: ../../../processing/app/Preferences.java:83 -!Czech= +Czech=Checo #: Preferences.java:90 -!Danish= +Danish=Dan\u00e9s #: Editor.java:1224 Editor.java:2765 -!Decrease\ Indent= +Decrease\ Indent=Disminuir sangr\u00eda #: EditorHeader.java:314 Sketch.java:591 -!Delete= +Delete=Borrar #: debug/Uploader.java:199 -!Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting= +Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=O dispositivo no ye respondendo, compreba que o puerto ye bien seleccionau u RESETEA a placa antes d'exportar. #: tools/FixEncoding.java:57 -!Discard\ all\ changes\ and\ reload\ sketch?= +Discard\ all\ changes\ and\ reload\ sketch?=Descartar totz os cambeos y recargar o programa? #: ../../../processing/app/Preferences.java:438 -!Display\ line\ numbers= +Display\ line\ numbers=Amostrar numeros de linia #: Editor.java:2064 -!Don't\ Save= +Don't\ Save=No alzar #: Editor.java:2275 Editor.java:2311 -!Done\ Saving.= +Done\ Saving.=Alzau. #: Editor.java:2510 -!Done\ burning\ bootloader.= +Done\ burning\ bootloader.=Escritura de bootloader completau. #: Editor.java:1911 Editor.java:1928 -!Done\ compiling.= +Done\ compiling.=Compilau. #: Editor.java:2564 -!Done\ printing.= +Done\ printing.=Imprentau. #: Editor.java:2395 Editor.java:2431 -!Done\ uploading.= +Done\ uploading.=Puyau. #: Preferences.java:91 -!Dutch= +Dutch=Holand\u00e9s #: ../../../processing/app/Preferences.java:144 -!Dutch\ (Netherlands)= +Dutch\ (Netherlands)=Holand\u00e9s (Holanda) #: Editor.java:1130 -!Edit= +Edit=Editar #: Preferences.java:370 -!Editor\ font\ size\:\ = +Editor\ font\ size\:\ =Grandaria de fuent de l'editor\: #: Preferences.java:353 -!Editor\ language\:\ = +Editor\ language\:\ =Idioma de l'editor\: #: Preferences.java:92 -!English= +English=Ingl\u00e9s #: ../../../processing/app/Preferences.java:145 -!English\ (United\ Kingdom)= +English\ (United\ Kingdom)=Ingles (Reino Uniu) #: Editor.java:1062 -!Environment= +Environment=Entorno #: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481 #: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543 #: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206 -!Error= +Error=Error #: Sketch.java:1065 Sketch.java:1088 -!Error\ adding\ file= +Error\ adding\ file=Error en adhibir fichero #: debug/Compiler.java:369 -!Error\ compiling.= +Error\ compiling.=Error de compilaci\u00f3n. #: Base.java:1674 -!Error\ getting\ the\ Arduino\ data\ folder.= +Error\ getting\ the\ Arduino\ data\ folder.=Error obtenendo os datos d'a carpeta d'Arduino. #: Serial.java:593 #, java-format -!Error\ inside\ Serial.{0}()= +Error\ inside\ Serial.{0}()=Error interna d'o serie.{0}() #: ../../../processing/app/Base.java:1232 -!Error\ loading\ libraries= +Error\ loading\ libraries=Error cargando bibliotecas #: ../../../processing/app/debug/TargetPlatform.java:95 #: ../../../processing/app/debug/TargetPlatform.java:106 #: ../../../processing/app/debug/TargetPlatform.java:117 #, java-format -!Error\ loading\ {0}= +Error\ loading\ {0}=Error cargando {0} #: Serial.java:181 #, java-format -!Error\ opening\ serial\ port\ ''{0}''.= +Error\ opening\ serial\ port\ ''{0}''.=Error ubrindo puerto "{0}" #: Preferences.java:277 -!Error\ reading\ preferences= +Error\ reading\ preferences=Error leyendo preferencias #: Preferences.java:279 #, java-format -!Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.= +Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Error leyendo o fichero de preferencias. Por favor, borre (u mueva)\n{0} y reinicie Arduino. #: ../../../cc/arduino/packages/DiscoveryManager.java:25 -!Error\ starting\ discovery\ method\:\ = +Error\ starting\ discovery\ method\:\ =Error en encetar o metodo de descubrimiento\: #: Serial.java:125 #, java-format -!Error\ touching\ serial\ port\ ''{0}''.= +Error\ touching\ serial\ port\ ''{0}''.=Error usando o puerto "{0}" #: Editor.java:2512 Editor.java:2516 Editor.java:2520 -!Error\ while\ burning\ bootloader.= +Error\ while\ burning\ bootloader.=Error mientres se escrib\u00eda o bootloader #: ../../../processing/app/Editor.java:2555 -!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=Error mientres se escrib\u00eda o bootloader\: falta parametro de configuraci\u00f3n '{0}' #: SketchCode.java:83 #, java-format -!Error\ while\ loading\ code\ {0}= +Error\ while\ loading\ code\ {0}=Error mientres se cargaba o codigo {0} #: Editor.java:2567 -!Error\ while\ printing.= +Error\ while\ printing.=Error en imprentar. #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 -!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= +Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=Error mientres la puyada\: manda o parametro de configuracion '{0}' #: Preferences.java:93 -!Estonian= +Estonian=Estonio #: ../../../processing/app/Preferences.java:146 -!Estonian\ (Estonia)= +Estonian\ (Estonia)=Estonio (Estonia) #: Editor.java:516 -!Examples= +Examples=Eixemplos #: Editor.java:2482 -!Export\ canceled,\ changes\ must\ first\ be\ saved.= +Export\ canceled,\ changes\ must\ first\ be\ saved.=Cancelada exportaci\u00f3n, os cambeos s'han de salvar antes. #: Base.java:2100 -!FAQ.html= +FAQ.html=FAQ.html #: Editor.java:491 -!File= +File=Fichero #: Preferences.java:94 -!Filipino= +Filipino=Filipino #: FindReplace.java:124 FindReplace.java:127 -!Find= +Find=Buscar #: Editor.java:1249 -!Find\ Next= +Find\ Next=Buscar siguient #: Editor.java:1259 -!Find\ Previous= +Find\ Previous=Buscar anterior #: Editor.java:1086 Editor.java:2775 -!Find\ in\ Reference= +Find\ in\ Reference=Buscar en referencia #: Editor.java:1234 -!Find...= +Find...=Buscar... #: FindReplace.java:80 -!Find\:= +Find\:=Buscar\: #: ../../../processing/app/Preferences.java:147 -!Finnish= +Finnish=Fin\u00e9s #: tools/FixEncoding.java:41 tools/FixEncoding.java:58 #: tools/FixEncoding.java:79 -!Fix\ Encoding\ &\ Reload= +Fix\ Encoding\ &\ Reload=Reparar codificaci\u00f3n y recargar #: Base.java:1851 -!For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n= +For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=Ta informaci\u00f3n de c\u00f3mo instalar bibliotecas, visite\: http\://arduino.cc/en/guide/libraries\n #: debug/BasicUploader.java:80 -!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ = +Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =Forzar reinicio usando 1200bps obridura / zarre en o puerto #: Preferences.java:95 -!French= +French=Franc\u00e9s #: Editor.java:1097 -!Frequently\ Asked\ Questions= +Frequently\ Asked\ Questions=Preguntas mas freq\u00fcents #: Preferences.java:96 -!Galician= +Galician=Gallego #: ../../../processing/app/Preferences.java:94 -!Georgian= +Georgian=Georgiano #: Preferences.java:97 -!German= +German=Alem\u00e1n #: Editor.java:1054 -!Getting\ Started= +Getting\ Started=Inicio Rapido #: ../../../processing/app/Sketch.java:1646 #, java-format -!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.= +Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=As variables globals usan {0} bytes ({2}%%) d'a memoria dinamica, dixando {3} bytes ta variables locals. O maximo son {1} bytes. #: ../../../processing/app/Sketch.java:1651 #, java-format -!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.= +Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=As variables globals usan {0} bytes d'a memoria dinamica. #: Preferences.java:98 -!Greek= +Greek=Griego #: Base.java:2085 -!Guide_Environment.html= +Guide_Environment.html=Guide_Environment.html #: Base.java:2071 -!Guide_MacOSX.html= +Guide_MacOSX.html=Guide_MacOSX.html #: Base.java:2095 -!Guide_Troubleshooting.html= +Guide_Troubleshooting.html=Guide_Troubleshooting.html #: Base.java:2073 -!Guide_Windows.html= +Guide_Windows.html=Guide_Windows.html #: ../../../processing/app/Preferences.java:95 -!Hebrew= +Hebrew=Hebreu #: Editor.java:1015 -!Help= +Help=Aduya #: Preferences.java:99 -!Hindi= +Hindi=Hind\u00fa #: Sketch.java:295 -!How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?= +How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Por qu\u00e9 no salvar o programa primer\nantes d'intentar renombrar-lo? #: Sketch.java:882 -!How\ very\ Borges\ of\ you= +How\ very\ Borges\ of\ you=C\u00f3mo molas, no? #: Preferences.java:100 -!Hungarian= +Hungarian=H\u00fangaro #: FindReplace.java:96 -!Ignore\ Case= +Ignore\ Case=Ignorar mayusclas #: Base.java:1058 -!Ignoring\ bad\ library\ name= +Ignoring\ bad\ library\ name=Ignorando o nombre incorrecto d'a biblioteca. #: Base.java:1436 -!Ignoring\ sketch\ with\ bad\ name= +Ignoring\ sketch\ with\ bad\ name=Ignorando treballo con nombre incorrecto. #: Editor.java:636 -!Import\ Library...= +Import\ Library...=Importar biblioteca... #: ../../../processing/app/Sketch.java:736 -!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?= +In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=En Arduino 1.0, a extension por defecto ah cambiau de .pde a .ino. Os muevos prochectos (incluius aquells creyaus por meyo de "Guardar como") usaran a nueva extensi\u00f3n. A extensi\u00f3n d'os prochectos existents s'actualizase en alzar, pero puetz desactivar ista funci\u00f3n dende o menu de Preferencias\n\nAlzar prochecto y actualizar a suya extensi\u00f3n? #: Editor.java:1216 Editor.java:2757 -!Increase\ Indent= +Increase\ Indent=Aumentar sangr\u00eda #: Preferences.java:101 -!Indonesian= +Indonesian=Indonesio #: ../../../processing/app/Base.java:1204 #, java-format -!Invalid\ library\ found\ in\ {0}\:\ {1}= +Invalid\ library\ found\ in\ {0}\:\ {1}=Biblioteca invalida trobada en {0}\: {1} #: Preferences.java:102 -!Italian= +Italian=Itali\u00e1n #: Preferences.java:103 -!Japanese= +Japanese=Chapon\u00e9s #: Preferences.java:104 -!Korean= +Korean=Coreano #: Preferences.java:105 -!Latvian= +Latvian=Let\u00f3n #: Base.java:2699 -!Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu= +Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Biblioteca adhibida a las tuyas bibliotecas. Compreba o men\u00fa "Importar biblioteca" #: Preferences.java:106 -!Lithuaninan= +Lithuaninan=Lituano #: ../../../processing/app/Sketch.java:1660 -!Low\ memory\ available,\ stability\ problems\ may\ occur= +Low\ memory\ available,\ stability\ problems\ may\ occur=Poca memoria disponible, puede producir problemas d'estabilidat #: Preferences.java:107 -!Marathi= +Marathi=Marathi #: Base.java:2112 -!Message= +Message=Mensache #: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Manca lo */ d'a fin d'un /* comentario */ #: Preferences.java:449 -!More\ preferences\ can\ be\ edited\ directly\ in\ the\ file= +More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Mas preferencias pueden estar editadas dreitament en o fichero #: Editor.java:2156 -!Moving= +Moving=Movendo #: Sketch.java:282 -!Name\ for\ new\ file\:= +Name\ for\ new\ file\:=Nombre d'o nuevo fichero\: #: ../../../processing/app/Preferences.java:149 -!Nepali= +Nepali=Nepal\u00ed #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 -!Network\ upload\ using\ programmer\ not\ supported= +Network\ upload\ using\ programmer\ not\ supported=A puyada por red fendo servir lo programador no ye suportada #: EditorToolbar.java:41 Editor.java:493 -!New= +New=Nuevo #: EditorToolbar.java:46 -!New\ Editor\ Window= +New\ Editor\ Window=Nueva finestra d'editor #: EditorHeader.java:292 -!New\ Tab= +New\ Tab=Nueva pestanya #: SerialMonitor.java:112 -!Newline= +Newline=Nueva linia #: EditorHeader.java:340 -!Next\ Tab= +Next\ Tab=Pestanya siguient #: Preferences.java:78 UpdateCheck.java:108 -!No= +No=No #: debug/Compiler.java:126 -!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.= +No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=No s'ha seleccionau placa; por favor, seleccione una en o men\u00fa Ferramientas > Placa #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 -!No\ changes\ necessary\ for\ Auto\ Format.= +No\ changes\ necessary\ for\ Auto\ Format.=Sin cambeos necesarios ta auto formato #: Editor.java:373 -!No\ files\ were\ added\ to\ the\ sketch.= +No\ files\ were\ added\ to\ the\ sketch.=No s'adhibioron fichers a o programa #: Platform.java:167 -!No\ launcher\ available= +No\ launcher\ available=No i hai lanzador disponible. #: SerialMonitor.java:112 -!No\ line\ ending= +No\ line\ ending=Sin achuste de linia #: Base.java:541 -!No\ really,\ time\ for\ some\ fresh\ air\ for\ you.= +No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=No, en serio, prene un poquet d'aire fresco. #: Editor.java:1872 #, java-format -!No\ reference\ available\ for\ "{0}"= +No\ reference\ available\ for\ "{0}"=No i hai referencia disponible ta "{0}" #: ../../../processing/app/Base.java:309 -!No\ valid\ configured\ cores\ found\!\ Exiting...= +No\ valid\ configured\ cores\ found\!\ Exiting...=No se troboron nucleos configuraus valius\! Surtiendo... #: ../../../processing/app/debug/TargetPackage.java:63 #, java-format -!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.= +No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=No se troboron definicions de hardware validas en a carpeta {0}. #: Base.java:191 -!Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.= +Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Error no fatal entre que se configuraba a apariencia. #: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859 -!Nope= +Nope=No. #: ../../../processing/app/Preferences.java:108 -!Norwegian\ Bokm\u00e5l= +Norwegian\ Bokm\u00e5l=Noruego #: ../../../processing/app/Sketch.java:1656 -!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.= +Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=No i hai suficient memoria, veyer http\://www.arduino.cc/en/guide/troubleshooting\#size ta obtener consellos sobre c\u00f3mo reducir o suyo sinyal. #: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2145 Editor.java:2465 -!OK= +OK=Ok #: Sketch.java:992 Editor.java:376 -!One\ file\ added\ to\ the\ sketch.= +One\ file\ added\ to\ the\ sketch.=Un fichero adhibiu a o tuyo programa. #: EditorToolbar.java:41 -!Open= +Open=Ubrir #: Editor.java:2688 -!Open\ URL= +Open\ URL=Ubrir URL #: Base.java:636 -!Open\ an\ Arduino\ sketch...= +Open\ an\ Arduino\ sketch...=Ubrir un sketch d'Arduino #: EditorToolbar.java:46 -!Open\ in\ Another\ Window= +Open\ in\ Another\ Window=Ubrir en unatra finestra #: Base.java:903 Editor.java:501 -!Open...= +Open...=Ubrir... #: Editor.java:563 -!Page\ Setup= +Page\ Setup=Configurar pachina #: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 -!Password\:= +Password\:=Clau\: #: Editor.java:1189 Editor.java:2731 -!Paste= +Paste=Apegar #: Preferences.java:109 -!Persian= +Persian=Persa #: debug/Compiler.java:408 -!Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= +Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Por favor, importe a biblioteca SPI d'o men\u00fa Programa > Importar Biblioteca. #: Base.java:239 -!Please\ install\ JDK\ 1.5\ or\ later= +Please\ install\ JDK\ 1.5\ or\ later=Por favor, instale o JDK 1.5 u superior #: Preferences.java:110 -!Polish= +Polish=Polaco #: ../../../processing/app/Editor.java:718 -!Port= +Port=Puerto #: ../../../processing/app/Preferences.java:151 -!Portugese= +Portugese=Portugues #: ../../../processing/app/Preferences.java:127 -!Portuguese\ (Brazil)= +Portuguese\ (Brazil)=Portugues (Brasil) #: ../../../processing/app/Preferences.java:128 -!Portuguese\ (Portugal)= +Portuguese\ (Portugal)=Portugues (Portugal) #: Preferences.java:295 Editor.java:583 -!Preferences= +Preferences=Preferencias #: FindReplace.java:123 FindReplace.java:128 -!Previous= +Previous=Previo #: EditorHeader.java:326 -!Previous\ Tab= +Previous\ Tab=Pestanya anterior #: Editor.java:571 -!Print= +Print=Imprentar #: Editor.java:2571 -!Printing\ canceled.= +Printing\ canceled.=Impresi\u00f3n cancelada. #: Editor.java:2547 -!Printing...= +Printing...=Imprentando... #: Base.java:1957 -!Problem\ Opening\ Folder= +Problem\ Opening\ Folder=Problema ubrindo a carpeta #: Base.java:1933 -!Problem\ Opening\ URL= +Problem\ Opening\ URL=Problema ubrindo l'URL #: Base.java:227 -!Problem\ Setting\ the\ Platform= +Problem\ Setting\ the\ Platform=Problema achustando a plataforma #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 -!Problem\ accessing\ board\ folder\ /www/sd= +Problem\ accessing\ board\ folder\ /www/sd=Problema en acceder a la carpeta d'a placa /www/sd #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 -!Problem\ accessing\ files\ in\ folder\ = +Problem\ accessing\ files\ in\ folder\ =Problema en acceder a fichers en a carpeta #: Base.java:1673 -!Problem\ getting\ data\ folder= +Problem\ getting\ data\ folder=Problema en adquirir carpeta de datos #: Sketch.java:1467 #, java-format -!Problem\ moving\ {0}\ to\ the\ build\ folder= +Problem\ moving\ {0}\ to\ the\ build\ folder=Problema en mover {0} a la carpeta de construcci\u00f3n #: debug/Uploader.java:209 -!Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.= +Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Problema puyando a la placa. Visita http\://www.arduino.cc/en/guide/troubleshooting\#upload ta sucherencias. #: Sketch.java:355 Sketch.java:362 Sketch.java:373 -!Problem\ with\ rename= - -#: Editor.java:2137 -!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= +Problem\ with\ rename=Problema en renombrar #: ../../../processing/app/I18n.java:86 -!Processor= +Processor=Procesador #: Editor.java:704 -!Programmer= +Programmer=Programador #: Base.java:783 Editor.java:593 -!Quit= +Quit=Salir #: Editor.java:1138 Editor.java:1140 Editor.java:1390 -!Redo= +Redo=Refer #: Editor.java:1078 -!Reference= +Reference=Referencia #: EditorHeader.java:300 -!Rename= +Rename=Renombrar #: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046 -!Replace= +Replace=Reemplazar #: FindReplace.java:122 FindReplace.java:129 -!Replace\ &\ Find= +Replace\ &\ Find=Mirar y reemplazar #: FindReplace.java:120 FindReplace.java:131 -!Replace\ All= +Replace\ All=Reemplazar totz #: Sketch.java:1043 #, java-format -!Replace\ the\ existing\ version\ of\ {0}?= +Replace\ the\ existing\ version\ of\ {0}?=Reemplazar a versi\u00f3n existent de {0}? #: FindReplace.java:81 -!Replace\ with\:= +Replace\ with\:=Reemplazar con\: #: Preferences.java:113 -!Romanian= +Romanian=Rumano #: Preferences.java:114 -!Russian= +Russian=Ruso #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529 #: Editor.java:2064 Editor.java:2468 -!Save= +Save=Salvar #: Editor.java:537 -!Save\ As...= +Save\ As...=Alzar como... #: Editor.java:2317 -!Save\ Canceled.= +Save\ Canceled.=Alzau cancelau. #: Editor.java:2467 -!Save\ changes\ before\ export?= +Save\ changes\ before\ export?=Alzar cambeos antes d'exportar? #: Editor.java:2020 #, java-format -!Save\ changes\ to\ "{0}"?\ \ = +Save\ changes\ to\ "{0}"?\ \ =Alzar cambeos a "{0}"? #: Sketch.java:825 -!Save\ sketch\ folder\ as...= +Save\ sketch\ folder\ as...=Salvar carpeta de programas como... #: Editor.java:2270 Editor.java:2308 -!Saving...= +Saving...=Alzando... #: Base.java:1909 -!Select\ (or\ create\ new)\ folder\ for\ sketches...= +Select\ (or\ create\ new)\ folder\ for\ sketches...=Seleccione (u creye) carpeta ta prochectos. #: Editor.java:1198 Editor.java:2739 -!Select\ All= +Select\ All=Selecciona tot #: Base.java:2636 -!Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add= +Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=Selecciona o fichero zip u a carpeta que contiene a biblioteca que quiers adhibir #: Sketch.java:975 -!Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch= +Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Selecciona una imachen u unatro fichero de datos ta copiar-los a o tuyo programa #: Preferences.java:330 -!Select\ new\ sketchbook\ location= +Select\ new\ sketchbook\ location=Seleccione nueva localizaci\u00f3n de o sketchbook #: ../../../processing/app/debug/Compiler.java:146 -!Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).= +Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=A placa seleccionada depende d'o nucleo '{0}' que no ye instalau. #: SerialMonitor.java:93 -!Send= +Send=Ninviar #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 -!Serial\ Monitor= +Serial\ Monitor=Monitor serie #: Serial.java:174 #, java-format @@ -911,389 +911,389 @@ #: Serial.java:194 #, java-format -!Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?= +Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Puerto "{0}" no trobau. Has seleccionau o correcto d'o men\u00fa Ferramientas > Puerto serie? #: Editor.java:2343 #, java-format -!Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?= +Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Puerto {0} no trobau.\nReintentar a puyada con unatro puerto? #: Base.java:1681 -!Settings\ issues= +Settings\ issues=Q\u00fcestions d'achustes #: Editor.java:641 -!Show\ Sketch\ Folder= +Show\ Sketch\ Folder=Amostrar Carpeta de programa #: ../../../processing/app/EditorStatus.java:468 -!Show\ verbose\ output\ during\ compilation= +Show\ verbose\ output\ during\ compilation=Amostrar salida detallada en compilar #: Preferences.java:387 -!Show\ verbose\ output\ during\:\ = +Show\ verbose\ output\ during\:\ =Amostrar salida detallada mientres\: #: Editor.java:607 -!Sketch= +Sketch=Programa #: Sketch.java:1754 -!Sketch\ Disappeared= +Sketch\ Disappeared=Programa perdiu #: Base.java:1411 -!Sketch\ Does\ Not\ Exist= +Sketch\ Does\ Not\ Exist=O programa no existe #: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966 -!Sketch\ is\ Read-Only= +Sketch\ is\ Read-Only=O programa ye de Solament Lectura #: Sketch.java:294 -!Sketch\ is\ Untitled= +Sketch\ is\ Untitled=O programa no tiene nombre #: Sketch.java:720 -!Sketch\ is\ read-only= +Sketch\ is\ read-only=O programa ye Solament Lectura #: Sketch.java:1653 -!Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.= +Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=Programa muit gran\: visite http\://www.arduino.cc/en/guide/troubleshooting\#size ta veyer c\u00f3mo reducir-lo. #: ../../../processing/app/Sketch.java:1639 #, java-format -!Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.= +Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.=O programa usa {0} bytes ({2}%%) d'o espacio d'almazenamiento de programas. O maximo son {1} bytes. #: Editor.java:510 -!Sketchbook= +Sketchbook=Sketchbook #: Base.java:258 -!Sketchbook\ folder\ disappeared= +Sketchbook\ folder\ disappeared=A carpeta sketchbook no ha estau trobada #: Preferences.java:315 -!Sketchbook\ location\:= +Sketchbook\ location\:=Localizaci\u00f3n de o sketchbook #: ../../../processing/app/Base.java:785 -!Sketches\ (*.ino,\ *.pde)= +Sketches\ (*.ino,\ *.pde)=Sketches (*.ino, *.pde) #: ../../../processing/app/Preferences.java:152 -!Slovenian= +Slovenian=Esloveno #: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967 -!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.= +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Qualques fichers son solament que de lectura, asi que amenester\u00e1\ntornar a alzar en unatra ubicaci\u00f3n\ny intentar-lo de nuevo. #: Sketch.java:721 -!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.= +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=Qualques fichers son "solament lectura", asinas que\namenester\u00e1s alzar iste programa en unatra ubicaci\u00f3n de nuevo. #: Sketch.java:457 #, java-format -!Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.= +Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Lo siento, ya existe un programa (u carpeta) clamau "{0}". #: Preferences.java:115 -!Spanish= +Spanish=Espa\u00f1ol #: Base.java:540 -!Sunshine= +Sunshine=Sol #: ../../../processing/app/Preferences.java:153 -!Swedish= +Swedish=Sueco #: Preferences.java:84 -!System\ Default= +System\ Default=Achustes Inicials #: Preferences.java:116 -!Tamil= +Tamil=Tamil #: debug/Compiler.java:414 -!The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.= +The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=A parola clau 'BYTE' no tornar\u00e1 a estar valida. #: debug/Compiler.java:426 -!The\ Client\ class\ has\ been\ renamed\ EthernetClient.= +The\ Client\ class\ has\ been\ renamed\ EthernetClient.=A clase Client ha estau renombrada a EthernetClient #: debug/Compiler.java:420 -!The\ Server\ class\ has\ been\ renamed\ EthernetServer.= +The\ Server\ class\ has\ been\ renamed\ EthernetServer.=A clase Servidor ha estau renombrada a EthernetServer #: debug/Compiler.java:432 -!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.= +The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=A clase Udp ha estau renombrada a EthernetUdp #: Base.java:192 -!The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.= +The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=O mensache d'error siguient, manimenos Arduino habr\u00eda de funcionar bien. #: Editor.java:2147 #, java-format -!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?= +The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=O fichero "{0}" ameneste estar dentro d'una\ncarpeta de prochecto clamada "{1}".\nCreyar-la, mover o fichero y continar? #: Base.java:1054 Base.java:2674 #, java-format -!The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)= +The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=A biblioteca "{0}" no se puede usar.\nOs nombres de biblioteca han de contener solament numeros y letras.\n(Solament ASCII y sin espacios, y no pueden empecipiar con un numero) #: Sketch.java:374 -!The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)= +The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=O fichero prencipal no se puede usar una extensi\u00f3n.\n(Tal vegada s\u00eda hora que te grad\u00faes en un\nentorno de programaci\u00f3n "real") #: Sketch.java:356 -!The\ name\ cannot\ start\ with\ a\ period.= +The\ name\ cannot\ start\ with\ a\ period.=O nombre no puede prencipiar con un periodo. #: Base.java:1412 -!The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.= +The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=O programa seleccionau no existe.\nAmenester\u00e1 reiniciar Arduino ta actualizar\no men\u00fa de sketchbook. #: Base.java:1430 #, java-format -!The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}= +The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=O programa "{0}" no se puede usar.\nOs nombres de programa han de contener solament numeros y letras.\n(Solament ASCII y sin espacios, y no pueden empecipiar con un numero).\nTa desfer-se d'iste mensache, elimine o programa de {1}. #: Sketch.java:1755 -!The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.= +The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=A carpeta d'o programa ha desapareixiu\nIntentar\u00e9 salvar-lo de nuevo en a mesma ubicaci\u00f3n\npero brenca mas que o codigo se perder\u00e1. #: Sketch.java:2018 !The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.= #: Base.java:259 -!The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.= +The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=A carpeta de sketchbook ya no existe.\nArduino cambiar\u00e1 a ubicaci\u00f3n por defecto de\nsketchbook, y creyar\u00e1 una carpeta de prochecto\nnuevo si ye necesario. Arduino alavez deixar\u00e1\n de charrar d'ell mesmo en tercera persona. #: Sketch.java:1075 -!This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= +This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Ixe fichero ya s'heba copiau a la ubicaci\u00f3n\ndende a quala lo querebas adhibir,,,\nNo fer\u00e9 brenca. #: ../../../processing/app/EditorStatus.java:467 -!This\ report\ would\ have\ more\ information\ with= +This\ report\ would\ have\ more\ information\ with=Iste informe tendr\u00eda m\u00e1s informaci\u00f3n #: Base.java:535 -!Time\ for\ a\ Break= +Time\ for\ a\ Break=Ye momento ta un descanso #: Editor.java:663 -!Tools= +Tools=Ferramientas #: Editor.java:1070 -!Troubleshooting= +Troubleshooting=Problemas #: ../../../processing/app/Preferences.java:117 -!Turkish= +Turkish=Turco #: ../../../processing/app/Editor.java:2507 -!Type\ board\ password\ to\ access\ its\ console= +Type\ board\ password\ to\ access\ its\ console=Tecleye a clau d'a placa ta accedir a la suya consola #: ../../../processing/app/Sketch.java:1673 -!Type\ board\ password\ to\ upload\ a\ new\ sketch= +Type\ board\ password\ to\ upload\ a\ new\ sketch=Tecleye a clau d'a placa ta puyar un nuevo prochecto #: ../../../processing/app/Preferences.java:118 -!Ukrainian= +Ukrainian=Ucrain\u00e9s #: ../../../processing/app/Editor.java:2524 #: ../../../processing/app/NetworkMonitor.java:145 -!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?= +Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=No se puede connectar, o programa ye fendo servir o puent? #: ../../../processing/app/NetworkMonitor.java:130 -!Unable\ to\ connect\:\ retrying= +Unable\ to\ connect\:\ retrying=Imposible connectar-se\: reintentando #: ../../../processing/app/Editor.java:2526 -!Unable\ to\ connect\:\ wrong\ password?= +Unable\ to\ connect\:\ wrong\ password?=Imposible connectar\: clau incorrecta? #: ../../../processing/app/Editor.java:2512 -!Unable\ to\ open\ serial\ monitor= +Unable\ to\ open\ serial\ monitor=Imposible ubrir o monitor serie #: Sketch.java:1432 #, java-format -!Uncaught\ exception\ type\:\ {0}= +Uncaught\ exception\ type\:\ {0}=Tipo d'excepci\u00f3n no detectada\: {0} #: Editor.java:1133 Editor.java:1355 -!Undo= +Undo=Desfer #: Platform.java:168 -!Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt= +Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=No s'ha especificau plataforma, no i hai lanzador disponible.\nTa activar URL u carpetas, adhibe una linia a\n"launcher\=/rota/a2/aplicaci\u00f3n/" en preferences.txt #: UpdateCheck.java:111 -!Update= +Update=Actualizar #: Preferences.java:428 -!Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)= +Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Actualizar fichers de prochecto a la nueva extensi\u00f3n en salvar (.pde -> .ino) #: EditorToolbar.java:41 Editor.java:545 -!Upload= +Upload=Puyar #: EditorToolbar.java:46 Editor.java:553 -!Upload\ Using\ Programmer= +Upload\ Using\ Programmer=Puyar Usando Programador #: Editor.java:2403 Editor.java:2439 -!Upload\ canceled.= +Upload\ canceled.=Puyada Cancelada. #: ../../../processing/app/Sketch.java:1678 -!Upload\ cancelled= +Upload\ cancelled=Carga cancelada #: Editor.java:2378 -!Uploading\ to\ I/O\ Board...= +Uploading\ to\ I/O\ Board...=Puyando a la Placa I/U... #: Sketch.java:1622 -!Uploading...= +Uploading...=Puyando... #: Editor.java:1269 -!Use\ Selection\ For\ Find= +Use\ Selection\ For\ Find=Usar selecci\u00f3n ta buscar #: Preferences.java:409 -!Use\ external\ editor= +Use\ external\ editor=Usar editor externo #: ../../../processing/app/debug/Compiler.java:94 #, java-format -!Using\ library\ {0}\ in\ folder\:\ {1}\ {2}= +Using\ library\ {0}\ in\ folder\:\ {1}\ {2}=Utilizando biblioteca {0} en carpeta\: {1} {2} #: ../../../processing/app/debug/Compiler.java:320 #, java-format -!Using\ previously\ compiled\ file\:\ {0}= +Using\ previously\ compiled\ file\:\ {0}=Utilizando fichero previament compilau\: {0} #: EditorToolbar.java:41 EditorToolbar.java:46 -!Verify= +Verify=Verificar #: Editor.java:609 -!Verify\ /\ Compile= +Verify\ /\ Compile=Verificar / Compilar #: Preferences.java:400 -!Verify\ code\ after\ upload= +Verify\ code\ after\ upload=Verificar codigo dimpu\u00e9s de puyar #: ../../../processing/app/Preferences.java:154 -!Vietnamese= +Vietnamese=Vietnam\u00e9s #: Editor.java:1105 -!Visit\ Arduino.cc= +Visit\ Arduino.cc=Visita Arduino.cc #: Base.java:2128 -!Warning= +Warning=Warning #: debug/Compiler.java:444 -!Wire.receive()\ has\ been\ renamed\ Wire.read().= +Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() ha estau renombrau a Wire.read() #: debug/Compiler.java:438 -!Wire.send()\ has\ been\ renamed\ Wire.write().= +Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() ha estau renombrau a Wire.write() #: FindReplace.java:105 -!Wrap\ Around= +Wrap\ Around=Ciclico #: debug/Uploader.java:213 -!Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?= +Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=Trobau microcontrolador erronio. Has seleccionau a placa correcta en o men\u00fa Ferramientas > Placa? #: Preferences.java:77 UpdateCheck.java:108 -!Yes= +Yes=Si #: Sketch.java:1074 -!You\ can't\ fool\ me= +You\ can't\ fool\ me=No me puetz enganyar #: Sketch.java:411 -!You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.= +You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=No puede tener un fichero .cpp con o mesmo nombre que o programa. #: Sketch.java:421 -!You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= +You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=No puetz renombrar o programa a "{0}"\nporque o programa encara tiene un fichero .cpp con ixe nombre #: Sketch.java:861 -!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= +You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=No puetz alzar o programa como "{0}"\nporque o programa encara tiene un fichero .cpp con ixe nombre #: Sketch.java:883 -!You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.= +You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=No puetz alzar o programa dentro d'una carpeta en o suyo interior.\nIsto ser\u00eda infinito. #: Base.java:1888 -!You\ forgot\ your\ sketchbook= +You\ forgot\ your\ sketchbook=Ixuplid\u00f3 o suyo sketchbook. #: ../../../processing/app/AbstractMonitor.java:92 -!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?= +You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=Has pretau {0} pero no s'ha ninviau cosa. Has de seleccionar un fin de linia? #: Base.java:536 -!You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?= +You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Has aconseguiu o limite d'auto nombrau de programas d'o d\u00eda...\nPor qu\u00e9 no te das una gambadeta? #: Base.java:2638 -!ZIP\ files\ or\ folders= +ZIP\ files\ or\ folders=Fichers Zip u carpetas #: Base.java:2661 -!Zip\ doesn't\ contain\ a\ library= +Zip\ doesn't\ contain\ a\ library=O fichero Zip no contiene bibliotecas #: Sketch.java:364 #, java-format -!".{0}"\ is\ not\ a\ valid\ extension.= +".{0}"\ is\ not\ a\ valid\ extension.=".{0}" no ye una extensi\u00f3n valida #: SketchCode.java:258 #, java-format !"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 -!\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n= +\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nComo en Arduino 0019, a biblioteca Ethernet depende d'a biblioteca SPI.\nPareixe que a istas usando u unatra biblioteca que depende d'a biblioteca SPI.\n\n #: debug/Compiler.java:415 -!\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n= +\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nComo en Arduino 1.0, a parola clau 'BYTE' no se suportar\u00e1 mas.\nPor favor, usa Serial.write() en o suyo puesto.\n\n #: debug/Compiler.java:427 -!\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n= +\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nComo en Arduino 1.0, a clase Client en a biblioteca Ethernet ha estau renombrada a EthernetClient.\n #: debug/Compiler.java:421 -!\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n= +\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nComo en Arduino 1.0, a clase Server en a biblioteca Ethernet ha estau renombrada a EthernetServer.\n\n #: debug/Compiler.java:433 -!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n= +\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=\nComo en Arduino 1.0, a clase Udp en a biblioteca Ethernet ha estau renombrada a EthernetUdp.\n #: debug/Compiler.java:445 -!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n= +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nComo en Arduino 1.0, a funci\u00f3n Wire.receive() ha estau renombrada a Wire.read() por consistencia con atras bibliotecas.\n #: debug/Compiler.java:439 -!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n= +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nComo en Arduino 1.0, a funci\u00f3n Wire.send() ha estau renombrada a Wire.write() por consistencia con atras bibliotecas.\n\n #: SerialMonitor.java:130 SerialMonitor.java:133 -!baud= +baud=baudio #: Preferences.java:389 -!compilation\ = +compilation\ =compilaci\u00f3n #: ../../../processing/app/NetworkMonitor.java:111 -!connected\!= +connected\!=Connectau\! #: Sketch.java:540 -!createNewFile()\ returned\ false= +createNewFile()\ returned\ false=createNewFile() retorn\u00f3 FALSO. #: ../../../processing/app/EditorStatus.java:469 -!enabled\ in\ File\ >\ Preferences.= +enabled\ in\ File\ >\ Preferences.=activala dende Fichero > Preferencias #: Base.java:2090 -!environment= +environment=entorno #: Editor.java:1108 -!http\://arduino.cc/= +http\://arduino.cc/=http\://arduino.cc/ #: ../../../processing/app/debug/Compiler.java:49 -!http\://github.com/arduino/Arduino/issues= +http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/arduino/issues #: UpdateCheck.java:118 -!http\://www.arduino.cc/en/Main/Software= +http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/main/software #: UpdateCheck.java:53 -!http\://www.arduino.cc/latest.txt= +http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt #: Base.java:2075 -!http\://www.arduino.cc/playground/Learning/Linux= +http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/learning/linux #: Preferences.java:625 #, java-format -!ignoring\ invalid\ font\ size\ {0}= +ignoring\ invalid\ font\ size\ {0}=ignorando grandaria de fuent invalido {0} #: Base.java:2080 -!index.html= +index.html=index.html #: Editor.java:936 Editor.java:943 -!name\ is\ null= +name\ is\ null=o nombre ye vuedo #: Base.java:2090 -!platforms.html= +platforms.html=platforms.html #: Serial.java:451 #, java-format -!readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}= +readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=O buffer de readBytesUntil() ye masiau chicot ta {0} bytes y mesmo ta o caracter {1} #: Sketch.java:647 -!removeCode\:\ internal\ error..\ could\ not\ find\ code= +removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: error interna... no trob\u00e9 o codigo #: Editor.java:932 -!serialMenu\ is\ null= +serialMenu\ is\ null=serialMenu ye vuedo #: debug/Uploader.java:195 #, java-format -!the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected= +the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=o puerto seleccionau {0} no existe u a tuya placa no ista connectada #: Preferences.java:391 -!upload= +upload=puyar #: Editor.java:380 #, java-format -!{0}\ files\ added\ to\ the\ sketch.= +{0}\ files\ added\ to\ the\ sketch.={0} fichers adhibius a o programa. #: debug/Compiler.java:365 #, java-format -!{0}\ returned\ {1}= +{0}\ returned\ {1}={0} retorn\u00f3 {1} #: Editor.java:2213 #, java-format -!{0}\ |\ Arduino\ {1}= +{0}\ |\ Arduino\ {1}={0} | Arduino {1} #: Editor.java:1874 #, java-format -!{0}.html= +{0}.html={0}.html diff --git a/arduino-core/src/processing/app/i18n/Resources_ar.po b/arduino-core/src/processing/app/i18n/Resources_ar.po index b6801d734..2ffbaa0b0 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ar.po +++ b/arduino-core/src/processing/app/i18n/Resources_ar.po @@ -11,8 +11,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/arduino-ide-15/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -135,10 +135,16 @@ msgstr "ارشفة الشيفرة البرمجية الغيت لأنه\n الش #: ../../../processing/app/I18n.java:83 msgid "Arduino ARM (32-bits) Boards" -msgstr "" +msgstr "ألواح الأردوينو ARM (بايت 32)" #: ../../../processing/app/I18n.java:82 msgid "Arduino AVR Boards" +msgstr "لوحات AVR أردوينو " + +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" msgstr "" #: Base.java:1682 @@ -162,7 +168,7 @@ msgstr "الاردوينو بحاجة الى JDK كاملة (وليس فقط JRE #: ../../../processing/app/EditorStatus.java:471 msgid "Arduino: " -msgstr "" +msgstr "أردوينو " #: Sketch.java:588 #, java-format @@ -175,11 +181,11 @@ msgstr "هل انت متأكد انك تريد حذف الشيفرة البرم #: ../../../processing/app/Preferences.java:137 msgid "Armenian" -msgstr "" +msgstr "أرميني" #: ../../../processing/app/Preferences.java:138 msgid "Asturian" -msgstr "" +msgstr "اللغة الأستورية" #: tools/AutoFormat.java:91 msgid "Auto Format" @@ -224,12 +230,12 @@ msgstr "الملف المحدد غير صالح" #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" -msgstr "" +msgstr "بيلاروسي" #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" -msgstr "" +msgstr "لوحة" #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format @@ -240,11 +246,11 @@ msgstr "" #: ../../../processing/app/EditorStatus.java:472 msgid "Board: " -msgstr "" +msgstr "لوحة:" #: ../../../processing/app/Preferences.java:140 msgid "Bosnian" -msgstr "" +msgstr "بوسني" #: SerialMonitor.java:112 msgid "Both NL & CR" @@ -260,11 +266,11 @@ msgstr "مجلد البناء \"Build folder\" اختفى او انه لايمك #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" -msgstr "" +msgstr "بلغاري" #: ../../../processing/app/Preferences.java:141 msgid "Burmese (Myanmar)" -msgstr "" +msgstr "بورمي(ميانمار)" #: Editor.java:708 msgid "Burn Bootloader" @@ -280,7 +286,7 @@ msgstr "" #: ../../../processing/app/Preferences.java:92 msgid "Canadian French" -msgstr "" +msgstr "الفرنسية (كندا)" #: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2064 Editor.java:2145 Editor.java:2465 @@ -305,19 +311,19 @@ msgstr "افحص التحديثات عند التشغيل" #: ../../../processing/app/Preferences.java:142 msgid "Chinese (China)" -msgstr "" +msgstr "الصينية (الصين)" #: ../../../processing/app/Preferences.java:142 msgid "Chinese (Hong Kong)" -msgstr "" +msgstr "الصينية (هونغ كونغ)" #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" -msgstr "" +msgstr "الصينية (تايوان)" #: ../../../processing/app/Preferences.java:143 msgid "Chinese (Taiwan) (Big5)" -msgstr "" +msgstr "الصينية (تايوان) (Big5)" #: Preferences.java:88 msgid "Chinese Simplified" @@ -358,7 +364,7 @@ msgstr "انسخ ك HTML" #: ../../../processing/app/EditorStatus.java:455 msgid "Copy error messages" -msgstr "" +msgstr "نسخ رسائل الخطأ" #: Editor.java:1165 Editor.java:2715 msgid "Copy for Forum" @@ -399,17 +405,17 @@ msgstr "لا يمكن حذف {0}" #: ../../../processing/app/debug/TargetPlatform.java:74 #, java-format msgid "Could not find boards.txt in {0}. Is it pre-1.5?" -msgstr "" +msgstr "يتعذر العثور على boards.txt في {0}. هل تكون قبل-1.5؟" #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 #, java-format msgid "Could not find tool {0}" -msgstr "" +msgstr "لا يمكن إيجاد الأداة {0}" #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 #, java-format msgid "Could not find tool {0} from package {1}" -msgstr "" +msgstr "تعذر العثور على أداة {0} من الحزمة {1}" #: Base.java:1934 #, java-format @@ -439,7 +445,7 @@ msgstr "لا يمكن اعادة نسخ الشيفرة البرمجية" msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "لا يمكن قراءة اعتدادات ثيمات الالوان.\nيجب عليك اعادة تنصيب العملية" +msgstr "" #: Preferences.java:219 msgid "" @@ -500,7 +506,7 @@ msgstr "لا يمكن العثور على اللوحة ضمن المنفذ ال #: ../../../processing/app/Preferences.java:82 msgid "Croatian" -msgstr "" +msgstr "كرواتي" #: Editor.java:1149 Editor.java:2699 msgid "Cut" @@ -508,7 +514,7 @@ msgstr "قص" #: ../../../processing/app/Preferences.java:83 msgid "Czech" -msgstr "" +msgstr "تشيكي" #: Preferences.java:90 msgid "Danish" @@ -534,7 +540,7 @@ msgstr "تجاهل كل التغييرات واعد تحميل الشيفرة ا #: ../../../processing/app/Preferences.java:438 msgid "Display line numbers" -msgstr "" +msgstr "عرض أرقام السطور " #: Editor.java:2064 msgid "Don't Save" @@ -566,7 +572,7 @@ msgstr "Dutch" #: ../../../processing/app/Preferences.java:144 msgid "Dutch (Netherlands)" -msgstr "" +msgstr "الهولندية (هولندا)" #: Editor.java:1130 msgid "Edit" @@ -586,7 +592,7 @@ msgstr "English" #: ../../../processing/app/Preferences.java:145 msgid "English (United Kingdom)" -msgstr "" +msgstr "الإنجليزية (المملكة المتحدة)" #: Editor.java:1062 msgid "Environment" @@ -617,14 +623,14 @@ msgstr "Serial.{0}() خطأ داخل " #: ../../../processing/app/Base.java:1232 msgid "Error loading libraries" -msgstr "" +msgstr " خطأ تحميل المكتبات" #: ../../../processing/app/debug/TargetPlatform.java:95 #: ../../../processing/app/debug/TargetPlatform.java:106 #: ../../../processing/app/debug/TargetPlatform.java:117 #, java-format msgid "Error loading {0}" -msgstr "" +msgstr "خطأ أثناء تحميل {0}" #: Serial.java:181 #, java-format @@ -644,7 +650,7 @@ msgstr "خطافي قرائة ملف الخصائص . رجاءا احذف (او #: ../../../cc/arduino/packages/DiscoveryManager.java:25 msgid "Error starting discovery method: " -msgstr "" +msgstr "الشروع في خطأ طريقة اكتشاف:" #: Serial.java:125 #, java-format @@ -679,7 +685,7 @@ msgstr "Eesti" #: ../../../processing/app/Preferences.java:146 msgid "Estonian (Estonia)" -msgstr "" +msgstr "الأستونية (إستونيا)" #: Editor.java:516 msgid "Examples" @@ -727,7 +733,7 @@ msgstr "ابحث :" #: ../../../processing/app/Preferences.java:147 msgid "Finnish" -msgstr "" +msgstr "الفنلندية" #: tools/FixEncoding.java:41 tools/FixEncoding.java:58 #: tools/FixEncoding.java:79 @@ -758,7 +764,7 @@ msgstr "Galego" #: ../../../processing/app/Preferences.java:94 msgid "Georgian" -msgstr "" +msgstr "الجورجية" #: Preferences.java:97 msgid "German" @@ -802,7 +808,7 @@ msgstr "Guide_Windows.html" #: ../../../processing/app/Preferences.java:95 msgid "Hebrew" -msgstr "" +msgstr "العبرية" #: Editor.java:1015 msgid "Help" @@ -920,7 +926,7 @@ msgstr "اسم لملف جديد:" #: ../../../processing/app/Preferences.java:149 msgid "Nepali" -msgstr "" +msgstr "النيبالية" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 msgid "Network upload using programmer not supported" @@ -998,7 +1004,7 @@ msgstr "لا يا صديقي" #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" -msgstr "" +msgstr "النرويجية" #: ../../../processing/app/Sketch.java:1656 msgid "" @@ -1041,7 +1047,7 @@ msgstr "اعدادات الصفحة" #: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 msgid "Password:" -msgstr "" +msgstr "كلمة المرور" #: Editor.java:1189 Editor.java:2731 msgid "Paste" @@ -1065,19 +1071,19 @@ msgstr "Polish" #: ../../../processing/app/Editor.java:718 msgid "Port" -msgstr "" +msgstr "منفذ" #: ../../../processing/app/Preferences.java:151 msgid "Portugese" -msgstr "" +msgstr "البرتغالية" #: ../../../processing/app/Preferences.java:127 msgid "Portuguese (Brazil)" -msgstr "" +msgstr "البرتغالية (البرازيل)" #: ../../../processing/app/Preferences.java:128 msgid "Portuguese (Portugal)" -msgstr "" +msgstr "البرتغالية (البرتغال)" #: Preferences.java:295 Editor.java:583 msgid "Preferences" @@ -1121,7 +1127,7 @@ msgstr "" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 msgid "Problem accessing files in folder " -msgstr "" +msgstr "مشكل في الولوج إلى ملفات المجلد " #: Base.java:1673 msgid "Problem getting data folder" @@ -1142,15 +1148,9 @@ msgstr "مشكلة في الرفع الى البورد. راجع http://www.ardu msgid "Problem with rename" msgstr "مشكلة في اعادة التسمية" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "المعالجة يمكن فقط ان تفتح الشيفرة البرمجيةات الخاصة بها\nوالملفات التي تعدل في .pde او .ino" - #: ../../../processing/app/I18n.java:86 msgid "Processor" -msgstr "" +msgstr "معالج" #: Editor.java:704 msgid "Programmer" @@ -1362,7 +1362,7 @@ msgstr "" #: ../../../processing/app/Preferences.java:152 msgid "Slovenian" -msgstr "" +msgstr "اللغة السلوفينية" #: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967 msgid "" @@ -1392,7 +1392,7 @@ msgstr "شروق الشمس" #: ../../../processing/app/Preferences.java:153 msgid "Swedish" -msgstr "" +msgstr "اللغة السويدية" #: Preferences.java:84 msgid "System Default" @@ -1514,7 +1514,7 @@ msgstr "استكشاف الاخطاء واصلاحها" #: ../../../processing/app/Preferences.java:117 msgid "Turkish" -msgstr "" +msgstr "اللغة التركية" #: ../../../processing/app/Editor.java:2507 msgid "Type board password to access its console" @@ -1526,7 +1526,7 @@ msgstr "" #: ../../../processing/app/Preferences.java:118 msgid "Ukrainian" -msgstr "" +msgstr "الأوكرانية" #: ../../../processing/app/Editor.java:2524 #: ../../../processing/app/NetworkMonitor.java:145 @@ -1535,11 +1535,11 @@ msgstr "" #: ../../../processing/app/NetworkMonitor.java:130 msgid "Unable to connect: retrying" -msgstr "" +msgstr "مشكل في عملية الاتصال: إعادة المحاولة" #: ../../../processing/app/Editor.java:2526 msgid "Unable to connect: wrong password?" -msgstr "" +msgstr "مشكل في عملية الاتصال: كلمة المرور خاطئة؟ " #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" @@ -1583,7 +1583,7 @@ msgstr "الغي التحميل" #: ../../../processing/app/Sketch.java:1678 msgid "Upload cancelled" -msgstr "" +msgstr "تم إلغاء التحميل" #: Editor.java:2378 msgid "Uploading to I/O Board..." @@ -1625,7 +1625,7 @@ msgstr "التأكد من الكود بعد الرفع" #: ../../../processing/app/Preferences.java:154 msgid "Vietnamese" -msgstr "" +msgstr "اللغة الفيتنامية" #: Editor.java:1105 msgid "Visit Arduino.cc" @@ -1690,7 +1690,7 @@ msgstr "لقد نسيت كتاب الشيفرة البرمجية (sketchbook)" #: ../../../processing/app/AbstractMonitor.java:92 msgid "" "You've pressed {0} but nothing was sent. Should you select a line ending?" -msgstr "" +msgstr "لقد ضغطت على {0} ولم يتم إرسال أي شيء. هل تختار خط النهاية؟" #: Base.java:536 msgid "" @@ -1715,10 +1715,10 @@ msgstr "\".{0}\" امتداد غير صالح" #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." -msgstr "\"{0}\" يحتوي على احرف غير معرفة . اذا انشئ الكود مع اصدار اقدم من المعالجة , يلزمك ان تستخدم ادوات -> اصلاح الترميز واعد التحميل لتحديث الشيفرة البرمجية ليستخدم ترميز UTF-8 . غير ذلك يمكنك ان تحذف الاحرف الغير معرفة للتخلص من هذا التحذير." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." +msgstr "" #: debug/Compiler.java:409 msgid "" @@ -1781,7 +1781,7 @@ msgstr "ترجمة" #: ../../../processing/app/NetworkMonitor.java:111 msgid "connected!" -msgstr "" +msgstr "متصل!" #: Sketch.java:540 msgid "createNewFile() returned false" @@ -1789,7 +1789,7 @@ msgstr "createNewFile() returned false" #: ../../../processing/app/EditorStatus.java:469 msgid "enabled in File > Preferences." -msgstr "" +msgstr "مفعل في ملف> تفضيلات." #: Base.java:2090 msgid "environment" @@ -1801,7 +1801,7 @@ msgstr "http://arduino.cc/" #: ../../../processing/app/debug/Compiler.java:49 msgid "http://github.com/arduino/Arduino/issues" -msgstr "" +msgstr "http://github.com/arduino/Arduino/issues" #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" diff --git a/arduino-core/src/processing/app/i18n/Resources_ar.properties b/arduino-core/src/processing/app/i18n/Resources_ar.properties index 8736909be..dd3add66d 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ar.properties +++ b/arduino-core/src/processing/app/i18n/Resources_ar.properties @@ -6,7 +6,7 @@ # , 2012. # ameen MS , 2012. # , 2012. -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Arabic (http\://www.transifex.com/projects/p/arduino-ide-15/language/ar/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ar\nPlural-Forms\: nplurals\=6; plural\=n\=\=0 ? 0 \: n\=\=1 ? 1 \: n\=\=2 ? 2 \: n%100>\=3 && n%100<\=10 ? 3 \: n%100>\=11 && n%100<\=99 ? 4 \: 5;\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Arabic (http\://www.transifex.com/projects/p/arduino-ide-15/language/ar/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ar\nPlural-Forms\: nplurals\=6; plural\=n\=\=0 ? 0 \: n\=\=1 ? 1 \: n\=\=2 ? 2 \: n%100>\=3 && n%100<\=10 ? 3 \: n%100>\=11 && n%100<\=99 ? 4 \: 5;\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(\u064a\u062a\u0637\u0644\u0628 \u0627\u0639\u0627\u062f\u0629 \u062a\u0634\u063a\u064a\u0644 \u0644\u0644\u0623\u0631\u062f\u0648\u064a\u0646\u0648) @@ -81,10 +81,13 @@ Archive\ sketch\ canceled.=\u0627\u0644\u063a\u0627\u0621 \u0627\u0631\u0634\u06 Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=\u0627\u0631\u0634\u0641\u0629 \u0627\u0644\u0634\u064a\u0641\u0631\u0629 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629 \u0627\u0644\u063a\u064a\u062a \u0644\u0623\u0646\u0647\n \u0627\u0644\u0634\u064a\u0641\u0631\u0629 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629 \u0644\u0627 \u064a\u0645\u0643\u0646 \u062d\u0641\u0638\u0647\u0627 \u0628\u0634\u0643\u0644 \u0645\u0646\u0627\u0633\u0628 #: ../../../processing/app/I18n.java:83 -!Arduino\ ARM\ (32-bits)\ Boards= +Arduino\ ARM\ (32-bits)\ Boards=\u0623\u0644\u0648\u0627\u062d \u0627\u0644\u0623\u0631\u062f\u0648\u064a\u0646\u0648 ARM (\u0628\u0627\u064a\u062a 32) #: ../../../processing/app/I18n.java:82 -!Arduino\ AVR\ Boards= +Arduino\ AVR\ Boards=\u0644\u0648\u062d\u0627\u062a AVR \u0623\u0631\u062f\u0648\u064a\u0646\u0648 + +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=\u0627\u0644\u0627\u0631\u062f\u0648\u064a\u0646\u0648 \u0644\u0627 \u064a\u0645\u0643\u0646\u0647 \u0623\u0646 \u064a\u064a\u062f\u0623 \u0644\u0623\u0646\u0647 \u0644\u0627 \u064a\u0645\u0643\u0646 \n \u0627\u0646\u0634\u0627\u0621 \u0645\u062c\u0644\u062f \u0644\u062d\u0641\u0638 \u0625\u0639\u062f\u0627\u062f\u0627\u062a\u0643. @@ -96,7 +99,7 @@ Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ you Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=\u0627\u0644\u0627\u0631\u062f\u0648\u064a\u0646\u0648 \u0628\u062d\u0627\u062c\u0629 \u0627\u0644\u0649 JDK \u0643\u0627\u0645\u0644\u0629 (\u0648\u0644\u064a\u0633 \u0641\u0642\u0637 JRE)\n \u0644\u0643\u064a \u062a\u0639\u0645\u0644 \u0627\u0644\u0631\u062c\u0627\u0621 \u062a\u0646\u0635\u064a\u0628 JDK 1.5 \u0623\u0648 \u0623\u062d\u062f\u062b.\n\u0644\u0645\u0632\u064a\u062f \u0645\u0646 \u0627\u0644\u062a\u0641\u0627\u0635\u064a\u0644 \u062a\u062c\u062f\u0647\u0627 \u0641\u064a \u0627\u0644\u0645\u0631\u0627\u062c\u0639. #: ../../../processing/app/EditorStatus.java:471 -!Arduino\:\ = +Arduino\:\ =\u0623\u0631\u062f\u0648\u064a\u0646\u0648 #: Sketch.java:588 #, java-format @@ -106,10 +109,10 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u0647\u0644 \u0627\u0646\u062a \u Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u0647\u0644 \u0627\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0627\u0646\u0643 \u062a\u0631\u064a\u062f \u062d\u0630\u0641 \u0627\u0644\u0634\u064a\u0641\u0631\u0629 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629 \u061f #: ../../../processing/app/Preferences.java:137 -!Armenian= +Armenian=\u0623\u0631\u0645\u064a\u0646\u064a #: ../../../processing/app/Preferences.java:138 -!Asturian= +Asturian=\u0627\u0644\u0644\u063a\u0629 \u0627\u0644\u0623\u0633\u062a\u0648\u0631\u064a\u0629 #: tools/AutoFormat.java:91 Auto\ Format=\u062a\u0646\u0633\u064a\u0642 \u062a\u0644\u0642\u0627\u0626\u064a @@ -143,21 +146,21 @@ Bad\ error\ line\:\ {0}=\u062e\u0637\u0623 \u0633\u064a\u0626 \u0627\u0644\u0633 Bad\ file\ selected=\u0627\u0644\u0645\u0644\u0641 \u0627\u0644\u0645\u062d\u062f\u062f \u063a\u064a\u0631 \u0635\u0627\u0644\u062d #: ../../../processing/app/Preferences.java:139 -!Belarusian= +Belarusian=\u0628\u064a\u0644\u0627\u0631\u0648\u0633\u064a #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 -!Board= +Board=\u0644\u0648\u062d\u0629 #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format !Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= #: ../../../processing/app/EditorStatus.java:472 -!Board\:\ = +Board\:\ =\u0644\u0648\u062d\u0629\: #: ../../../processing/app/Preferences.java:140 -!Bosnian= +Bosnian=\u0628\u0648\u0633\u0646\u064a #: SerialMonitor.java:112 Both\ NL\ &\ CR=\u0643\u0644\u0627\u0647\u0645\u0627 NL & CR @@ -169,10 +172,10 @@ Browse=\u0627\u0633\u062a\u0639\u0631\u0636 Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u0645\u062c\u0644\u062f \u0627\u0644\u0628\u0646\u0627\u0621 "Build folder" \u0627\u062e\u062a\u0641\u0649 \u0627\u0648 \u0627\u0646\u0647 \u0644\u0627\u064a\u0645\u0643\u0646 \u0627\u0644\u0643\u062a\u0627\u0628\u0629 \u0639\u0644\u064a\u0647 #: ../../../processing/app/Preferences.java:80 -!Bulgarian= +Bulgarian=\u0628\u0644\u063a\u0627\u0631\u064a #: ../../../processing/app/Preferences.java:141 -!Burmese\ (Myanmar)= +Burmese\ (Myanmar)=\u0628\u0648\u0631\u0645\u064a(\u0645\u064a\u0627\u0646\u0645\u0627\u0631) #: Editor.java:708 Burn\ Bootloader=\u062b\u0628\u062a \u0645\u062d\u0645\u0644 \u0628\u0631\u0646\u0627\u0645\u062c \u0627\u0644\u0625\u0642\u0644\u0627\u0639 @@ -184,7 +187,7 @@ Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u064a\u062 !Can't\ open\ source\ sketch\!= #: ../../../processing/app/Preferences.java:92 -!Canadian\ French= +Canadian\ French=\u0627\u0644\u0641\u0631\u0646\u0633\u064a\u0629 (\u0643\u0646\u062f\u0627) #: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2064 Editor.java:2145 Editor.java:2465 @@ -203,16 +206,16 @@ Catalan=Catal\u00e0 Check\ for\ updates\ on\ startup=\u0627\u0641\u062d\u0635 \u0627\u0644\u062a\u062d\u062f\u064a\u062b\u0627\u062a \u0639\u0646\u062f \u0627\u0644\u062a\u0634\u063a\u064a\u0644 #: ../../../processing/app/Preferences.java:142 -!Chinese\ (China)= +Chinese\ (China)=\u0627\u0644\u0635\u064a\u0646\u064a\u0629 (\u0627\u0644\u0635\u064a\u0646) #: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= +Chinese\ (Hong\ Kong)=\u0627\u0644\u0635\u064a\u0646\u064a\u0629 (\u0647\u0648\u0646\u063a \u0643\u0648\u0646\u063a) #: ../../../processing/app/Preferences.java:144 -!Chinese\ (Taiwan)= +Chinese\ (Taiwan)=\u0627\u0644\u0635\u064a\u0646\u064a\u0629 (\u062a\u0627\u064a\u0648\u0627\u0646) #: ../../../processing/app/Preferences.java:143 -!Chinese\ (Taiwan)\ (Big5)= +Chinese\ (Taiwan)\ (Big5)=\u0627\u0644\u0635\u064a\u0646\u064a\u0629 (\u062a\u0627\u064a\u0648\u0627\u0646) (Big5) #: Preferences.java:88 Chinese\ Simplified=Chinese Simplified @@ -243,7 +246,7 @@ Copy=\u0646\u0633\u062e Copy\ as\ HTML=\u0627\u0646\u0633\u062e \u0643 HTML #: ../../../processing/app/EditorStatus.java:455 -!Copy\ error\ messages= +Copy\ error\ messages=\u0646\u0633\u062e \u0631\u0633\u0627\u0626\u0644 \u0627\u0644\u062e\u0637\u0623 #: Editor.java:1165 Editor.java:2715 Copy\ for\ Forum=\u0627\u0646\u0633\u062e \u0644\u0644\u0645\u0646\u062a\u062f\u0649 @@ -275,15 +278,15 @@ Could\ not\ delete\ {0}=\u0644\u0627 \u064a\u0645\u0643\u0646 \u062d\u0630\u0641 #: ../../../processing/app/debug/TargetPlatform.java:74 #, java-format -!Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?= +Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?=\u064a\u062a\u0639\u0630\u0631 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 boards.txt \u0641\u064a {0}. \u0647\u0644 \u062a\u0643\u0648\u0646 \u0642\u0628\u0644-1.5\u061f #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 #, java-format -!Could\ not\ find\ tool\ {0}= +Could\ not\ find\ tool\ {0}=\u0644\u0627 \u064a\u0645\u0643\u0646 \u0625\u064a\u062c\u0627\u062f \u0627\u0644\u0623\u062f\u0627\u0629 {0} #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 #, java-format -!Could\ not\ find\ tool\ {0}\ from\ package\ {1}= +Could\ not\ find\ tool\ {0}\ from\ package\ {1}=\u062a\u0639\u0630\u0631 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0623\u062f\u0627\u0629 {0} \u0645\u0646 \u0627\u0644\u062d\u0632\u0645\u0629 {1} #: Base.java:1934 #, java-format @@ -300,7 +303,7 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=\u0644\u0627 \u064a\u0645\u0643\u0646 \u0627\u0639\u0627\u062f\u0629 \u0646\u0633\u062e \u0627\u0644\u0634\u064a\u0641\u0631\u0629 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629 #: Theme.java:52 -Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u0644\u0627 \u064a\u0645\u0643\u0646 \u0642\u0631\u0627\u0621\u0629 \u0627\u0639\u062a\u062f\u0627\u062f\u0627\u062a \u062b\u064a\u0645\u0627\u062a \u0627\u0644\u0627\u0644\u0648\u0627\u0646.\n\u064a\u062c\u0628 \u0639\u0644\u064a\u0643 \u0627\u0639\u0627\u062f\u0629 \u062a\u0646\u0635\u064a\u0628 \u0627\u0644\u0639\u0645\u0644\u064a\u0629 +!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u0644\u0627 \u064a\u0645\u0643\u0646 \u0642\u0631\u0627\u0621\u0629 \u0627\u0644\u0627\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0627\u0641\u062a\u0631\u0627\u0636\u064a\u0629 \u064a\u062c\u0628 \u0639\u0644\u064a\u0643 \u0627\u0639\u0627\u062f\u0629 \u062a\u0646\u0635\u064a\u0628 \u0627\u0644\u0627\u0631\u062f\u0648\u064a\u0646\u0648 @@ -343,13 +346,13 @@ Couldn't\ do\ it=\u0644\u0627 \u064a\u0645\u0643\u0646 \u0641\u0639\u0644 \u0630 Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=\u0644\u0627 \u064a\u0645\u0643\u0646 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0627\u0644\u0644\u0648\u062d\u0629 \u0636\u0645\u0646 \u0627\u0644\u0645\u0646\u0641\u0630 \u0627\u0644\u0645\u062e\u062a\u0627\u0631\u060c \u062a\u0623\u0643\u062f \u0645\u0646 \u0627\u0646\u0643 \u0627\u062e\u062a\u0631\u062a \u0627\u0644\u0645\u0646\u0641\u0630 \u0627\u0644\u0635\u062d\u064a\u062d. \u0627\u0630\u0627 \u0643\u0627\u0646 \u0627\u0644\u0645\u0646\u0641\u0630 \u0635\u062d\u064a\u062d\u0627 \u0627\u0636\u063a\u0638 \u0639\u0644\u0649 \u0632\u0631 \u0627\u0639\u0627\u062f\u0629 \u0627\u0644\u062a\u0634\u063a\u064a\u0644 \u0628\u0639\u062f \u0627\u0644\u0628\u062f\u0621 \u0641\u064a \u0639\u0645\u0644\u064a\u0629 \u0627\u0644\u062a\u062d\u0645\u064a\u0644. #: ../../../processing/app/Preferences.java:82 -!Croatian= +Croatian=\u0643\u0631\u0648\u0627\u062a\u064a #: Editor.java:1149 Editor.java:2699 Cut=\u0642\u0635 #: ../../../processing/app/Preferences.java:83 -!Czech= +Czech=\u062a\u0634\u064a\u0643\u064a #: Preferences.java:90 Danish=Dansk @@ -367,7 +370,7 @@ Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ Discard\ all\ changes\ and\ reload\ sketch?=\u062a\u062c\u0627\u0647\u0644 \u0643\u0644 \u0627\u0644\u062a\u063a\u064a\u064a\u0631\u0627\u062a \u0648\u0627\u0639\u062f \u062a\u062d\u0645\u064a\u0644 \u0627\u0644\u0634\u064a\u0641\u0631\u0629 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629 #: ../../../processing/app/Preferences.java:438 -!Display\ line\ numbers= +Display\ line\ numbers=\u0639\u0631\u0636 \u0623\u0631\u0642\u0627\u0645 \u0627\u0644\u0633\u0637\u0648\u0631 #: Editor.java:2064 Don't\ Save=\u0644\u0627 \u062a\u062d\u0641\u0638 @@ -391,7 +394,7 @@ Done\ uploading.=\u0627\u0646\u062a\u0647\u0649 \u0627\u0644\u062a\u062d\u0645\u Dutch=Dutch #: ../../../processing/app/Preferences.java:144 -!Dutch\ (Netherlands)= +Dutch\ (Netherlands)=\u0627\u0644\u0647\u0648\u0644\u0646\u062f\u064a\u0629 (\u0647\u0648\u0644\u0646\u062f\u0627) #: Editor.java:1130 Edit=\u0639\u062f\u0644 @@ -406,7 +409,7 @@ Editor\ language\:\ =\u0644\u063a\u0629 \u0627\u0644\u0645\u062d\u0631\u0631\: English=English #: ../../../processing/app/Preferences.java:145 -!English\ (United\ Kingdom)= +English\ (United\ Kingdom)=\u0627\u0644\u0625\u0646\u062c\u0644\u064a\u0632\u064a\u0629 (\u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0645\u062a\u062d\u062f\u0629) #: Editor.java:1062 Environment=\u0627\u0644\u0628\u064a\u0626\u0629 @@ -430,13 +433,13 @@ Error\ getting\ the\ Arduino\ data\ folder.=\u0645\u0634\u0643\u0644\u0629 \u064 Error\ inside\ Serial.{0}()=Serial.{0}() \u062e\u0637\u0623 \u062f\u0627\u062e\u0644 #: ../../../processing/app/Base.java:1232 -!Error\ loading\ libraries= +Error\ loading\ libraries=\ \u062e\u0637\u0623 \u062a\u062d\u0645\u064a\u0644 \u0627\u0644\u0645\u0643\u062a\u0628\u0627\u062a #: ../../../processing/app/debug/TargetPlatform.java:95 #: ../../../processing/app/debug/TargetPlatform.java:106 #: ../../../processing/app/debug/TargetPlatform.java:117 #, java-format -!Error\ loading\ {0}= +Error\ loading\ {0}=\u062e\u0637\u0623 \u0623\u062b\u0646\u0627\u0621 \u062a\u062d\u0645\u064a\u0644 {0} #: Serial.java:181 #, java-format @@ -450,7 +453,7 @@ Error\ reading\ preferences=\u062e\u0637\u0623 \u0641\u064a \u0642\u0631\u0627\u Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=\u062e\u0637\u0627\u0641\u064a \u0642\u0631\u0627\u0626\u0629 \u0645\u0644\u0641 \u0627\u0644\u062e\u0635\u0627\u0626\u0635 . \u0631\u062c\u0627\u0621\u0627 \u0627\u062d\u0630\u0641 (\u0627\u0648 \u0627\u0646\u0642\u0644 )\n{0} \u062b\u0645 \u0627\u0639\u062f \u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u0627\u0631\u062f\u064a\u0648\u0646\u0648 #: ../../../cc/arduino/packages/DiscoveryManager.java:25 -!Error\ starting\ discovery\ method\:\ = +Error\ starting\ discovery\ method\:\ =\u0627\u0644\u0634\u0631\u0648\u0639 \u0641\u064a \u062e\u0637\u0623 \u0637\u0631\u064a\u0642\u0629 \u0627\u0643\u062a\u0634\u0627\u0641\: #: Serial.java:125 #, java-format @@ -477,7 +480,7 @@ Error\ while\ printing.=.\u062e\u0637\u0623 \u062e\u0644\u0627\u0644 \u0627\u064 Estonian=Eesti #: ../../../processing/app/Preferences.java:146 -!Estonian\ (Estonia)= +Estonian\ (Estonia)=\u0627\u0644\u0623\u0633\u062a\u0648\u0646\u064a\u0629 (\u0625\u0633\u062a\u0648\u0646\u064a\u0627) #: Editor.java:516 Examples=\u0623\u0645\u062b\u0644\u0629 @@ -513,7 +516,7 @@ Find...=...\u0627\u0628\u062d\u062b Find\:=\u0627\u0628\u062d\u062b \: #: ../../../processing/app/Preferences.java:147 -!Finnish= +Finnish=\u0627\u0644\u0641\u0646\u0644\u0646\u062f\u064a\u0629 #: tools/FixEncoding.java:41 tools/FixEncoding.java:58 #: tools/FixEncoding.java:79 @@ -535,7 +538,7 @@ Frequently\ Asked\ Questions=\u0627\u0633\u0626\u0644\u0629 \u0645\u062a\u0643\u Galician=Galego #: ../../../processing/app/Preferences.java:94 -!Georgian= +Georgian=\u0627\u0644\u062c\u0648\u0631\u062c\u064a\u0629 #: Preferences.java:97 German=Deutsch @@ -567,7 +570,7 @@ Guide_Troubleshooting.html=Guide_Troubleshooting.html Guide_Windows.html=Guide_Windows.html #: ../../../processing/app/Preferences.java:95 -!Hebrew= +Hebrew=\u0627\u0644\u0639\u0628\u0631\u064a\u0629 #: Editor.java:1015 Help=\u0645\u0633\u0627\u0639\u062f\u0629 @@ -649,7 +652,7 @@ Moving=\u0646\u0642\u0644 Name\ for\ new\ file\:=\u0627\u0633\u0645 \u0644\u0645\u0644\u0641 \u062c\u062f\u064a\u062f\: #: ../../../processing/app/Preferences.java:149 -!Nepali= +Nepali=\u0627\u0644\u0646\u064a\u0628\u0627\u0644\u064a\u0629 #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 !Network\ upload\ using\ programmer\ not\ supported= @@ -708,7 +711,7 @@ Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=\u062e\u0637\u0623-\u063a\ Nope=\u0644\u0627 \u064a\u0627 \u0635\u062f\u064a\u0642\u064a #: ../../../processing/app/Preferences.java:108 -!Norwegian\ Bokm\u00e5l= +Norwegian\ Bokm\u00e5l=\u0627\u0644\u0646\u0631\u0648\u064a\u062c\u064a\u0629 #: ../../../processing/app/Sketch.java:1656 !Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.= @@ -739,7 +742,7 @@ Open...=\u0627\u0641\u062a\u062d... Page\ Setup=\u0627\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0635\u0641\u062d\u0629 #: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 -!Password\:= +Password\:=\u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u0631\u0648\u0631 #: Editor.java:1189 Editor.java:2731 Paste=\u0644\u0635\u0642 @@ -757,16 +760,16 @@ Please\ install\ JDK\ 1.5\ or\ later=\u0627\u0644\u0631\u062c\u0627\u0621 \u062a Polish=Polish #: ../../../processing/app/Editor.java:718 -!Port= +Port=\u0645\u0646\u0641\u0630 #: ../../../processing/app/Preferences.java:151 -!Portugese= +Portugese=\u0627\u0644\u0628\u0631\u062a\u063a\u0627\u0644\u064a\u0629 #: ../../../processing/app/Preferences.java:127 -!Portuguese\ (Brazil)= +Portuguese\ (Brazil)=\u0627\u0644\u0628\u0631\u062a\u063a\u0627\u0644\u064a\u0629 (\u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644) #: ../../../processing/app/Preferences.java:128 -!Portuguese\ (Portugal)= +Portuguese\ (Portugal)=\u0627\u0644\u0628\u0631\u062a\u063a\u0627\u0644\u064a\u0629 (\u0627\u0644\u0628\u0631\u062a\u063a\u0627\u0644) #: Preferences.java:295 Editor.java:583 Preferences=\u062a\u0641\u0636\u064a\u0644\u0627\u062a @@ -799,7 +802,7 @@ Problem\ Setting\ the\ Platform=\u0627\u0639\u062f\u0627\u062f\u0627\u062a \u062 !Problem\ accessing\ board\ folder\ /www/sd= #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 -!Problem\ accessing\ files\ in\ folder\ = +Problem\ accessing\ files\ in\ folder\ =\u0645\u0634\u0643\u0644 \u0641\u064a \u0627\u0644\u0648\u0644\u0648\u062c \u0625\u0644\u0649 \u0645\u0644\u0641\u0627\u062a \u0627\u0644\u0645\u062c\u0644\u062f #: Base.java:1673 Problem\ getting\ data\ folder=\u0645\u0634\u0643\u0644\u0629 \u0641\u064a \u0627\u0644\u062d\u0635\u0648\u0644 \u0639\u0644\u0649 \u0645\u062c\u0644\u062f \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a @@ -814,11 +817,8 @@ Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troublesh #: Sketch.java:355 Sketch.java:362 Sketch.java:373 Problem\ with\ rename=\u0645\u0634\u0643\u0644\u0629 \u0641\u064a \u0627\u0639\u0627\u062f\u0629 \u0627\u0644\u062a\u0633\u0645\u064a\u0629 -#: Editor.java:2137 -Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=\u0627\u0644\u0645\u0639\u0627\u0644\u062c\u0629 \u064a\u0645\u0643\u0646 \u0641\u0642\u0637 \u0627\u0646 \u062a\u0641\u062a\u062d \u0627\u0644\u0634\u064a\u0641\u0631\u0629 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629\u0627\u062a \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0647\u0627\n\u0648\u0627\u0644\u0645\u0644\u0641\u0627\u062a \u0627\u0644\u062a\u064a \u062a\u0639\u062f\u0644 \u0641\u064a .pde \u0627\u0648 .ino - #: ../../../processing/app/I18n.java:86 -!Processor= +Processor=\u0645\u0639\u0627\u0644\u062c #: Editor.java:704 Programmer=\u0627\u0644\u0645\u0628\u0631\u0645\u062c\u0629 @@ -970,7 +970,7 @@ Sketchbook\ location\:=\u0645\u0643\u0627\u0646 \u0643\u062a\u0627\u0628 \u0627\ !Sketches\ (*.ino,\ *.pde)= #: ../../../processing/app/Preferences.java:152 -!Slovenian= +Slovenian=\u0627\u0644\u0644\u063a\u0629 \u0627\u0644\u0633\u0644\u0648\u0641\u064a\u0646\u064a\u0629 #: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967 Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=\u0628\u0639\u0636 \u0627\u0644\u0645\u0644\u0641\u0627\u062a \u0645\u0639\u0644\u0645\u0629 \u0628\u0640 "\u0644\u0644\u0642\u0631\u0627\u0621\u0629-\u0641\u0642\u0637" "read-only" \u0644\u0630\u0644\u0643 \u0633\u0648\u0641 \u062a\u062d\u062a\u0627\u062c\n\u0644\u0625\u0639\u0627\u062f\u0629 \u0627\u0644\u062d\u0641\u0638 \u0641\u064a \u0645\u0643\u0627\u0646 \u0622\u062e\u0631,\n\u0648 \u062d\u0627\u0648\u0644 \u0645\u0631\u0629 \u0627\u062e\u0631\u0649 @@ -989,7 +989,7 @@ Spanish=Spanish Sunshine=\u0634\u0631\u0648\u0642 \u0627\u0644\u0634\u0645\u0633 #: ../../../processing/app/Preferences.java:153 -!Swedish= +Swedish=\u0627\u0644\u0644\u063a\u0629 \u0627\u0644\u0633\u0648\u064a\u062f\u064a\u0629 #: Preferences.java:84 System\ Default=\u0627\u0644\u0627\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0627\u0641\u062a\u0631\u0627\u0636\u064a\u0629 @@ -1058,7 +1058,7 @@ Tools=\u0627\u062f\u0648\u0627\u062a Troubleshooting=\u0627\u0633\u062a\u0643\u0634\u0627\u0641 \u0627\u0644\u0627\u062e\u0637\u0627\u0621 \u0648\u0627\u0635\u0644\u0627\u062d\u0647\u0627 #: ../../../processing/app/Preferences.java:117 -!Turkish= +Turkish=\u0627\u0644\u0644\u063a\u0629 \u0627\u0644\u062a\u0631\u0643\u064a\u0629 #: ../../../processing/app/Editor.java:2507 !Type\ board\ password\ to\ access\ its\ console= @@ -1067,17 +1067,17 @@ Troubleshooting=\u0627\u0633\u062a\u0643\u0634\u0627\u0641 \u0627\u0644\u0627\u0 !Type\ board\ password\ to\ upload\ a\ new\ sketch= #: ../../../processing/app/Preferences.java:118 -!Ukrainian= +Ukrainian=\u0627\u0644\u0623\u0648\u0643\u0631\u0627\u0646\u064a\u0629 #: ../../../processing/app/Editor.java:2524 #: ../../../processing/app/NetworkMonitor.java:145 !Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?= #: ../../../processing/app/NetworkMonitor.java:130 -!Unable\ to\ connect\:\ retrying= +Unable\ to\ connect\:\ retrying=\u0645\u0634\u0643\u0644 \u0641\u064a \u0639\u0645\u0644\u064a\u0629 \u0627\u0644\u0627\u062a\u0635\u0627\u0644\: \u0625\u0639\u0627\u062f\u0629 \u0627\u0644\u0645\u062d\u0627\u0648\u0644\u0629 #: ../../../processing/app/Editor.java:2526 -!Unable\ to\ connect\:\ wrong\ password?= +Unable\ to\ connect\:\ wrong\ password?=\u0645\u0634\u0643\u0644 \u0641\u064a \u0639\u0645\u0644\u064a\u0629 \u0627\u0644\u0627\u062a\u0635\u0627\u0644\: \u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u0631\u0648\u0631 \u062e\u0627\u0637\u0626\u0629\u061f #: ../../../processing/app/Editor.java:2512 !Unable\ to\ open\ serial\ monitor= @@ -1108,7 +1108,7 @@ Upload\ Using\ Programmer=\u0631\u0641\u0639 \u0628\u0648\u0627\u0633\u0637\u062 Upload\ canceled.=\u0627\u0644\u063a\u064a \u0627\u0644\u062a\u062d\u0645\u064a\u0644 #: ../../../processing/app/Sketch.java:1678 -!Upload\ cancelled= +Upload\ cancelled=\u062a\u0645 \u0625\u0644\u063a\u0627\u0621 \u0627\u0644\u062a\u062d\u0645\u064a\u0644 #: Editor.java:2378 Uploading\ to\ I/O\ Board...=\u062c\u0627\u0631\u064a \u0627\u0644\u062a\u062d\u0645\u064a\u0644 \u0625\u0644\u0649 \u0627\u0644\u0644\u0648\u062d\u0629 \u062f\u062e\u0644/\u062e\u0631\u062c ... @@ -1140,7 +1140,7 @@ Verify\ /\ Compile=\u062a\u062f\u0642\u064a\u0642 / \u062a\u0631\u062c\u0645 Verify\ code\ after\ upload=\u0627\u0644\u062a\u0623\u0643\u062f \u0645\u0646 \u0627\u0644\u0643\u0648\u062f \u0628\u0639\u062f \u0627\u0644\u0631\u0641\u0639 #: ../../../processing/app/Preferences.java:154 -!Vietnamese= +Vietnamese=\u0627\u0644\u0644\u063a\u0629 \u0627\u0644\u0641\u064a\u062a\u0646\u0627\u0645\u064a\u0629 #: Editor.java:1105 Visit\ Arduino.cc=Arduino.cc \u0632\u0631 \u0635\u0641\u062d\u0629 @@ -1182,7 +1182,7 @@ You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ g You\ forgot\ your\ sketchbook=\u0644\u0642\u062f \u0646\u0633\u064a\u062a \u0643\u062a\u0627\u0628 \u0627\u0644\u0634\u064a\u0641\u0631\u0629 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629 (sketchbook) #: ../../../processing/app/AbstractMonitor.java:92 -!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?= +You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=\u0644\u0642\u062f \u0636\u063a\u0637\u062a \u0639\u0644\u0649 {0} \u0648\u0644\u0645 \u064a\u062a\u0645 \u0625\u0631\u0633\u0627\u0644 \u0623\u064a \u0634\u064a\u0621. \u0647\u0644 \u062a\u062e\u062a\u0627\u0631 \u062e\u0637 \u0627\u0644\u0646\u0647\u0627\u064a\u0629\u061f #: Base.java:536 You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=\u0644\u0642\u062f \u0648\u0635\u0644\u062a \u0627\u0644\u0649 \u0627\u0644\u062d\u062f \u0627\u0644\u0627\u0642\u0635\u0649 \u0644\u0644\u062a\u0633\u0645\u064a\u0629 \u0627\u0644\u062a\u0644\u0642\u0627\u0626\u064a\u0629 \u0644\u0644\u064a\u0648\u0645 \u0644\u0644\u0633\u0643\u062a\u0634\u0627\u062a. \u0645\u0627 \u0631\u0623\u064a\u0643 \u0641\u064a \u0627\u0644\u062e\u0631\u0648\u062c \u0641\u064a \u0646\u0632\u0647\u0629 \u0628\u062f\u0644 \u0630\u0644\u0643 \u0627\u0644\u064a\u0648\u0645\u061f @@ -1199,7 +1199,7 @@ Zip\ doesn't\ contain\ a\ library=\u0627\u0644\u0645\u0644\u0641 \u0627\u0644\u0 #: SketchCode.java:258 #, java-format -"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" \u064a\u062d\u062a\u0648\u064a \u0639\u0644\u0649 \u0627\u062d\u0631\u0641 \u063a\u064a\u0631 \u0645\u0639\u0631\u0641\u0629 . \u0627\u0630\u0627 \u0627\u0646\u0634\u0626 \u0627\u0644\u0643\u0648\u062f \u0645\u0639 \u0627\u0635\u062f\u0627\u0631 \u0627\u0642\u062f\u0645 \u0645\u0646 \u0627\u0644\u0645\u0639\u0627\u0644\u062c\u0629 , \u064a\u0644\u0632\u0645\u0643 \u0627\u0646 \u062a\u0633\u062a\u062e\u062f\u0645 \u0627\u062f\u0648\u0627\u062a -> \u0627\u0635\u0644\u0627\u062d \u0627\u0644\u062a\u0631\u0645\u064a\u0632 \u0648\u0627\u0639\u062f \u0627\u0644\u062a\u062d\u0645\u064a\u0644 \u0644\u062a\u062d\u062f\u064a\u062b \u0627\u0644\u0634\u064a\u0641\u0631\u0629 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629 \u0644\u064a\u0633\u062a\u062e\u062f\u0645 \u062a\u0631\u0645\u064a\u0632 UTF-8 . \u063a\u064a\u0631 \u0630\u0644\u0643 \u064a\u0645\u0643\u0646\u0643 \u0627\u0646 \u062a\u062d\u0630\u0641 \u0627\u0644\u0627\u062d\u0631\u0641 \u0627\u0644\u063a\u064a\u0631 \u0645\u0639\u0631\u0641\u0629 \u0644\u0644\u062a\u062e\u0644\u0635 \u0645\u0646 \u0647\u0630\u0627 \u0627\u0644\u062a\u062d\u0630\u064a\u0631. +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 \nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\n\u0643\u0645\u0627 \u0641\u064a \u0627\u0644\u0627\u0631\u062f\u0648\u064a\u0646\u0648 0019, \u0645\u0643\u062a\u0628\u0629 \u0627\u0644\u0640 Ethernet \u0645\u0639\u062a\u0645\u062f\u0629 \u0639\u0644\u0649 \u0645\u0643\u062a\u0628\u0629 SPI.\n\u064a\u0628\u062f\u0648 \u0627\u0646\u0647 \u0639\u0644\u064a\u0643 \u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0645\u0643\u062a\u0628\u0629 \u0627\u062e\u0631\u0649 \u0645\u0639\u062a\u0645\u062f\u0629 \u0639\u0644\u0649 \u0645\u0643\u062a\u0628\u0629 \u0627\u0644\u0640 SPI.\n\n @@ -1229,13 +1229,13 @@ baud=\u0628\u0627\u0648\u062f compilation\ =\u062a\u0631\u062c\u0645\u0629 #: ../../../processing/app/NetworkMonitor.java:111 -!connected\!= +connected\!=\u0645\u062a\u0635\u0644\! #: Sketch.java:540 createNewFile()\ returned\ false=createNewFile() returned false #: ../../../processing/app/EditorStatus.java:469 -!enabled\ in\ File\ >\ Preferences.= +enabled\ in\ File\ >\ Preferences.=\u0645\u0641\u0639\u0644 \u0641\u064a \u0645\u0644\u0641> \u062a\u0641\u0636\u064a\u0644\u0627\u062a. #: Base.java:2090 environment=\u0627\u0644\u0628\u064a\u0626\u0629 @@ -1244,7 +1244,7 @@ environment=\u0627\u0644\u0628\u064a\u0626\u0629 http\://arduino.cc/=http\://arduino.cc/ #: ../../../processing/app/debug/Compiler.java:49 -!http\://github.com/arduino/Arduino/issues= +http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software diff --git a/arduino-core/src/processing/app/i18n/Resources_ast.po b/arduino-core/src/processing/app/i18n/Resources_ast.po index be6a02118..f636e123a 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ast.po +++ b/arduino-core/src/processing/app/i18n/Resources_ast.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Asturian (http://www.transifex.com/projects/p/arduino-ide-15/language/ast/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -138,6 +138,12 @@ msgstr "" msgid "Arduino AVR Boards" msgstr "" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -1139,12 +1145,6 @@ msgstr "" msgid "Problem with rename" msgstr "" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "" @@ -1712,9 +1712,9 @@ msgstr "" #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." msgstr "" #: debug/Compiler.java:409 diff --git a/arduino-core/src/processing/app/i18n/Resources_ast.properties b/arduino-core/src/processing/app/i18n/Resources_ast.properties index 9802aeb7a..3bc8b4040 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ast.properties +++ b/arduino-core/src/processing/app/i18n/Resources_ast.properties @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Asturian (http\://www.transifex.com/projects/p/arduino-ide-15/language/ast/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ast\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Asturian (http\://www.transifex.com/projects/p/arduino-ide-15/language/ast/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ast\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 !\ \ (requires\ restart\ of\ Arduino)= @@ -83,6 +83,9 @@ An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ #: ../../../processing/app/I18n.java:82 !Arduino\ AVR\ Boards= +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 !Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.= @@ -811,9 +814,6 @@ Problem\ Setting\ the\ Platform=Problema al configurar la plataforma #: Sketch.java:355 Sketch.java:362 Sketch.java:373 !Problem\ with\ rename= -#: Editor.java:2137 -!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= - #: ../../../processing/app/I18n.java:86 !Processor= diff --git a/arduino-core/src/processing/app/i18n/Resources_be.po b/arduino-core/src/processing/app/i18n/Resources_be.po index 7c198d20c..ba3fac612 100644 --- a/arduino-core/src/processing/app/i18n/Resources_be.po +++ b/arduino-core/src/processing/app/i18n/Resources_be.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/arduino-ide-15/language/be/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -77,7 +77,7 @@ msgstr "Даступная новая версія Arduino,\nжадаеце на msgid "" "A problem occurred while trying to open the\n" "files used to store the console output." -msgstr "" +msgstr "Здарылася праблема пры адчыненні файла,\nўжыванага для захоўвання вываду кансолі." #: Editor.java:1116 msgid "About Arduino" @@ -96,7 +96,7 @@ msgid "" "An error occurred while trying to fix the file encoding.\n" "Do not attempt to save this sketch as it may overwrite\n" "the old version. Use Open to re-open the sketch and try again.\n" -msgstr "Здарылася памылка падчас спробы змяніць кадыроўку фйла.\nНе спрабуйце захаваць гэты скетч, бо ён можа перапісаць старую\nверсію. Паўторна адчыніце скетч і паспрабуйце наноў.\n" +msgstr "Здарылася памылка падчас спробы змяніць кадыроўку файла.\nНе спрабуйце захаваць гэты скетч, бо ён можа перапісаць старую\nверсію. Паўторна адчыніце скетч і паспрабуйце наноў.\n" #: Base.java:228 msgid "" @@ -138,6 +138,12 @@ msgstr "Платы Arduino ARM (32-біт)" msgid "Arduino AVR Boards" msgstr "Платы Arduino AVR" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -148,14 +154,14 @@ msgstr "Немагчыма запусціць Arduino, бо\nнемагчыма msgid "" "Arduino cannot run because it could not\n" "create a folder to store your sketchbook." -msgstr "" +msgstr "Arduino не можа запусціцца, бо немагчыма\nстварыць каталог каб захаваць sketchbook." #: Base.java:240 msgid "" "Arduino requires a full JDK (not just a JRE)\n" "to run. Please install JDK 1.5 or later.\n" "More information can be found in the reference." -msgstr "Arduino патрабуе поўны JDK (не толькі JRE)\nдля выканання. Калі ласка, усталюйце JDK 1.5\nці навей. Больш інфармацыі можна дазнацца\nпа спасылцы." +msgstr "Arduino патрабуе поўны JDK (не толькі JRE)\nдля запуску. Калі ласка інсталюйце JDK 1.5\nці навей. Больш инфармацыі можна даведацца\nпа спасылцы." #: ../../../processing/app/EditorStatus.java:471 msgid "Arduino: " @@ -213,7 +219,7 @@ msgstr "Аўтапракрутка" #: Editor.java:2619 #, java-format msgid "Bad error line: {0}" -msgstr "" +msgstr "Кепскі радок памылак: {0}" #: Editor.java:2136 msgid "Bad file selected" @@ -282,7 +288,7 @@ msgstr "Канадска-Французская" #: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2064 Editor.java:2145 Editor.java:2465 msgid "Cancel" -msgstr "Адмена" +msgstr "Скасаваць" #: Sketch.java:455 msgid "Cannot Rename" @@ -436,7 +442,7 @@ msgstr "Немагчыма перазахаваць скетч" msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "Немагчыма прчытаць налажкі колернай тэмы.\nПатрэбна пераінсталяваць Arduino." +msgstr "" #: Preferences.java:219 msgid "" @@ -626,7 +632,7 @@ msgstr "памылка загрузкі {0}" #: Serial.java:181 #, java-format msgid "Error opening serial port ''{0}''." -msgstr "Памылка адчынення паслядоўнага парта ''{0}''." +msgstr "Памылка адчынення паслядоўнага порту ''{0}''." #: Preferences.java:277 msgid "Error reading preferences" @@ -770,12 +776,12 @@ msgstr "З чаго пачаць" msgid "" "Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes " "for local variables. Maximum is {1} bytes." -msgstr "Глабальныя зменныя ўжываюць {0} байтаў ({2}%%) дынамічнай памяці, пакідаючы {3} байтаў лакальным зменным. Максімум {1} байт." +msgstr "Глабальныя пераменныя ўжываюць {0} байтаў ({2}%%) дынамічнай памяці, пакідаючы {3} байтаў лакальным пераменным. Максімум {1} байт." #: ../../../processing/app/Sketch.java:1651 #, java-format msgid "Global variables use {0} bytes of dynamic memory." -msgstr "Глабальныя зменныя ўжываюць {0} байтаў дынамічнай памяці" +msgstr "Глабальныя пераменныя ўжываюць {0} байтаў дынамічнай памяці" #: Preferences.java:98 msgid "Greek" @@ -848,7 +854,7 @@ msgid "" "disable this in the Preferences dialog.\n" "\n" "Save sketch and update its extension?" -msgstr "У Arduino 1.0 пашырэнне файлаў было зменена з .pde на.ino.\nНовыя скетчы (Уключаючы створаныя з дапамогай \n\"Захаваць-Як\") будуць утрымліваць новыя пашырэнні. \nПашырэнні існуючых скетчаў будуць адноўлены падчас \nзахоўвання, але вы можаце адмяніць гэта ў \"Preferences dialog.\"\n\nSave sketch and update its extension?" +msgstr "У Arduino 1.0 пашырэнне файлаў было зменена з .pde на.ino.\nНовыя скетчы (Уключаючы створаныя з дапамогай \n\"Захаваць-Як\") будуць утрымліваць новыя пашырэнні. \nПашырэнні існуючых скетчаў будуць адноўлены падчас \nзахоўвання, але вы можаце адмяніць гэта ў \"Preferences dialog.\"\n\nЗахаваць скетч і абнавіць я гэты япашырэнні?" #: Editor.java:1216 Editor.java:2757 msgid "Increase Indent" @@ -881,7 +887,7 @@ msgstr "Латвіская" #: Base.java:2699 msgid "Library added to your libraries. Check \"Import library\" menu" -msgstr "Біліятэка дададзена да вышых біліятэк. Выберыце меню \"Імпартаваць бібіятэкі\"" +msgstr "Біліятэка дададзена да вашых біліятэк. Наведайце меню \"Імпартаваць бібіятэкі\"" #: Preferences.java:106 msgid "Lithuaninan" @@ -901,7 +907,7 @@ msgstr "Паведамленне" #: ../../../processing/app/preproc/PdePreprocessor.java:412 msgid "Missing the */ from the end of a /* comment */" -msgstr "" +msgstr "Адсутнічае паслядоўнасць */ ад пачатку /* каментара */" #: Preferences.java:449 msgid "More preferences can be edited directly in the file" @@ -949,7 +955,7 @@ msgstr "Не" #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "Плата не абрана; калі ласка абярыце плату праз меню Tools > Board." +msgstr "Плата не абрана; калі ласка абярыце плату праз меню \"Інструменты\" > \"Плата\"." #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." @@ -1139,12 +1145,6 @@ msgstr "Праблема выгрузкі ў плату. Глядзі http://www msgid "Problem with rename" msgstr "Немагчыма перайменаваць" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "Працэсар" @@ -1279,7 +1279,7 @@ msgstr "Паслядоўны порт ''{0}'' ужо ўжываецца. Пас msgid "" "Serial port ''{0}'' not found. Did you select the right one from the Tools >" " Serial Port menu?" -msgstr "Паслядоўны порт ''{0}'' не знойдзены. Ці выбралі вы патрэбны ў меню Tools > Serial Port ?" +msgstr "Паслядоўны порт ''{0}'' не знойдзены. Ці выбралі вы патрэбны ў меню \"Інструменты\" > Serial Port ?" #: Editor.java:2343 #, java-format @@ -1648,7 +1648,7 @@ msgstr "Пазначаць" msgid "" "Wrong microcontroller found. Did you select the right board from the Tools " "> Board menu?" -msgstr "Знойдзены дзіўны мікракантролер. Ці абралі вы патрэбны ў меню Tools > Board ?" +msgstr "Знойдзены дзіўны мікракантролер. Ці абралі вы патрэбны ў меню \"Інструменты\" > \"Плата\" ?" #: Preferences.java:77 UpdateCheck.java:108 msgid "Yes" @@ -1712,10 +1712,10 @@ msgstr "пашырэнне .{0} не падыходзіць" #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." -msgstr "\"{0}\" утрымлівае незразумелыя сімвалы. Калі гэты код быў створаны ў старой версіі Arduino, вам варта ўжыць Tools -> Fix Encoding & Reload для абнаўлення скетча на кадыроўку UTF-8. Калі гэта не вырашыць праблему, спатрэбіцца выдаліць кепскія сімвалы ўручную, каб пазбавіцца ад гэтага паведамлення." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." +msgstr "" #: debug/Compiler.java:409 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_be.properties b/arduino-core/src/processing/app/i18n/Resources_be.properties index 1ea066fd1..f53626950 100644 --- a/arduino-core/src/processing/app/i18n/Resources_be.properties +++ b/arduino-core/src/processing/app/i18n/Resources_be.properties @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Belarusian (http\://www.transifex.com/projects/p/arduino-ide-15/language/be/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: be\nPlural-Forms\: nplurals\=4; plural\=(n%10\=\=1 && n%100\!\=11 ? 0 \: n%10>\=2 && n%10<\=4 && (n%100<10 || n%100>\=20) ? 1 \: 2);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Belarusian (http\://www.transifex.com/projects/p/arduino-ide-15/language/be/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: be\nPlural-Forms\: nplurals\=4; plural\=(n%10\=\=1 && n%100\!\=11 ? 0 \: n%10>\=2 && n%10<\=4 && (n%100<10 || n%100>\=20) ? 1 \: 2);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(\u043f\u0430\u0442\u0440\u0430\u0431\u0443\u0435 \u043f\u0435\u0440\u0430\u0437\u0430\u043f\u0443\u0441\u043a Arduino) @@ -42,7 +42,7 @@ A\ library\ named\ {0}\ already\ exists=\u0411\u0456\u0431\u043b\u0456\u044f\u04 A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=\u0414\u0430\u0441\u0442\u0443\u043f\u043d\u0430\u044f \u043d\u043e\u0432\u0430\u044f \u0432\u0435\u0440\u0441\u0456\u044f Arduino,\n\u0436\u0430\u0434\u0430\u0435\u0446\u0435 \u043d\u0430\u0432\u0435\u0434\u0430\u0446\u044c \u0441\u0442\u0430\u0440\u043e\u043d\u043a\u0443 \u0441\u043f\u0430\u043c\u043f\u043e\u045e\u043a\u0456 Arduino? #: EditorConsole.java:153 -!A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.= +A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=\u0417\u0434\u0430\u0440\u044b\u043b\u0430\u0441\u044f \u043f\u0440\u0430\u0431\u043b\u0435\u043c\u0430 \u043f\u0440\u044b \u0430\u0434\u0447\u044b\u043d\u0435\u043d\u043d\u0456 \u0444\u0430\u0439\u043b\u0430,\n\u045e\u0436\u044b\u0432\u0430\u043d\u0430\u0433\u0430 \u0434\u043b\u044f \u0437\u0430\u0445\u043e\u045e\u0432\u0430\u043d\u043d\u044f \u0432\u044b\u0432\u0430\u0434\u0443 \u043a\u0430\u043d\u0441\u043e\u043b\u0456. #: Editor.java:1116 About\ Arduino=\u0410\u0431 Arduino @@ -54,7 +54,7 @@ Add\ File...=\u0414\u0430\u0434\u0430\u0446\u044c \u0424\u0430\u0439\u043b Add\ Library...=\u0414\u0430\u0434\u0430\u0446\u044c \u0431\u0456\u0431\u043b\u0456\u044f\u0442\u044d\u043a\u0443... #: tools/FixEncoding.java:77 -An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=\u0417\u0434\u0430\u0440\u044b\u043b\u0430\u0441\u044f \u043f\u0430\u043c\u044b\u043b\u043a\u0430 \u043f\u0430\u0434\u0447\u0430\u0441 \u0441\u043f\u0440\u043e\u0431\u044b \u0437\u043c\u044f\u043d\u0456\u0446\u044c \u043a\u0430\u0434\u044b\u0440\u043e\u045e\u043a\u0443 \u0444\u0439\u043b\u0430.\n\u041d\u0435 \u0441\u043f\u0440\u0430\u0431\u0443\u0439\u0446\u0435 \u0437\u0430\u0445\u0430\u0432\u0430\u0446\u044c \u0433\u044d\u0442\u044b \u0441\u043a\u0435\u0442\u0447, \u0431\u043e \u0451\u043d \u043c\u043e\u0436\u0430 \u043f\u0435\u0440\u0430\u043f\u0456\u0441\u0430\u0446\u044c \u0441\u0442\u0430\u0440\u0443\u044e\n\u0432\u0435\u0440\u0441\u0456\u044e. \u041f\u0430\u045e\u0442\u043e\u0440\u043d\u0430 \u0430\u0434\u0447\u044b\u043d\u0456\u0446\u0435 \u0441\u043a\u0435\u0442\u0447 \u0456 \u043f\u0430\u0441\u043f\u0440\u0430\u0431\u0443\u0439\u0446\u0435 \u043d\u0430\u043d\u043e\u045e.\n +An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=\u0417\u0434\u0430\u0440\u044b\u043b\u0430\u0441\u044f \u043f\u0430\u043c\u044b\u043b\u043a\u0430 \u043f\u0430\u0434\u0447\u0430\u0441 \u0441\u043f\u0440\u043e\u0431\u044b \u0437\u043c\u044f\u043d\u0456\u0446\u044c \u043a\u0430\u0434\u044b\u0440\u043e\u045e\u043a\u0443 \u0444\u0430\u0439\u043b\u0430.\n\u041d\u0435 \u0441\u043f\u0440\u0430\u0431\u0443\u0439\u0446\u0435 \u0437\u0430\u0445\u0430\u0432\u0430\u0446\u044c \u0433\u044d\u0442\u044b \u0441\u043a\u0435\u0442\u0447, \u0431\u043e \u0451\u043d \u043c\u043e\u0436\u0430 \u043f\u0435\u0440\u0430\u043f\u0456\u0441\u0430\u0446\u044c \u0441\u0442\u0430\u0440\u0443\u044e\n\u0432\u0435\u0440\u0441\u0456\u044e. \u041f\u0430\u045e\u0442\u043e\u0440\u043d\u0430 \u0430\u0434\u0447\u044b\u043d\u0456\u0446\u0435 \u0441\u043a\u0435\u0442\u0447 \u0456 \u043f\u0430\u0441\u043f\u0440\u0430\u0431\u0443\u0439\u0446\u0435 \u043d\u0430\u043d\u043e\u045e.\n #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=\u0417\u0434\u0430\u0440\u044b\u043b\u0430\u0441\u044f \u043d\u0435\u0432\u044f\u0434\u043e\u043c\u0430\u044f \u043f\u0430\u043c\u044b\u043b\u043a\u0430 \u043f\u0430\u0434\u0447\u0430\u0441 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0456\n\u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0430-\u0441\u043f\u0435\u0446\u044b\u0444\u0456\u0447\u043d\u0430\u0433\u0430 \u043a\u043e\u0434\u0443 \u0434\u043b\u044f \u0432\u0430\u0448\u0430\u0433\u0430 \u043a\u0430\u043c\u043f'\u044e\u0442\u0430\u0440\u0430. @@ -83,14 +83,17 @@ Arduino\ ARM\ (32-bits)\ Boards=\u041f\u043b\u0430\u0442\u044b Arduino ARM (32-\ #: ../../../processing/app/I18n.java:82 Arduino\ AVR\ Boards=\u041f\u043b\u0430\u0442\u044b Arduino AVR +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u0437\u0430\u043f\u0443\u0441\u0446\u0456\u0446\u044c Arduino, \u0431\u043e\n\u043d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u0441\u0442\u0432\u0430\u0440\u044b\u0446\u044c \u043a\u0430\u0442\u0430\u043b\u043e\u0433,\n\u043a\u0430\u0431 \u0437\u0430\u0445\u0430\u0432\u0430\u0446\u044c \u043d\u0430\u043b\u0430\u0434\u043a\u0456. #: Base.java:1889 -!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.= +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino \u043d\u0435 \u043c\u043e\u0436\u0430 \u0437\u0430\u043f\u0443\u0441\u0446\u0456\u0446\u0446\u0430, \u0431\u043e \u043d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430\n\u0441\u0442\u0432\u0430\u0440\u044b\u0446\u044c \u043a\u0430\u0442\u0430\u043b\u043e\u0433 \u043a\u0430\u0431 \u0437\u0430\u0445\u0430\u0432\u0430\u0446\u044c sketchbook. #: Base.java:240 -Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino \u043f\u0430\u0442\u0440\u0430\u0431\u0443\u0435 \u043f\u043e\u045e\u043d\u044b JDK (\u043d\u0435 \u0442\u043e\u043b\u044c\u043a\u0456 JRE)\n\u0434\u043b\u044f \u0432\u044b\u043a\u0430\u043d\u0430\u043d\u043d\u044f. \u041a\u0430\u043b\u0456 \u043b\u0430\u0441\u043a\u0430, \u0443\u0441\u0442\u0430\u043b\u044e\u0439\u0446\u0435 JDK 1.5\n\u0446\u0456 \u043d\u0430\u0432\u0435\u0439. \u0411\u043e\u043b\u044c\u0448 \u0456\u043d\u0444\u0430\u0440\u043c\u0430\u0446\u044b\u0456 \u043c\u043e\u0436\u043d\u0430 \u0434\u0430\u0437\u043d\u0430\u0446\u0446\u0430\n\u043f\u0430 \u0441\u043f\u0430\u0441\u044b\u043b\u0446\u044b. +Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino \u043f\u0430\u0442\u0440\u0430\u0431\u0443\u0435 \u043f\u043e\u045e\u043d\u044b JDK (\u043d\u0435 \u0442\u043e\u043b\u044c\u043a\u0456 JRE)\n\u0434\u043b\u044f \u0437\u0430\u043f\u0443\u0441\u043a\u0443. \u041a\u0430\u043b\u0456 \u043b\u0430\u0441\u043a\u0430 \u0456\u043d\u0441\u0442\u0430\u043b\u044e\u0439\u0446\u0435 JDK 1.5\n\u0446\u0456 \u043d\u0430\u0432\u0435\u0439. \u0411\u043e\u043b\u044c\u0448 \u0438\u043d\u0444\u0430\u0440\u043c\u0430\u0446\u044b\u0456 \u043c\u043e\u0436\u043d\u0430 \u0434\u0430\u0432\u0435\u0434\u0430\u0446\u0446\u0430\n\u043f\u0430 \u0441\u043f\u0430\u0441\u044b\u043b\u0446\u044b. #: ../../../processing/app/EditorStatus.java:471 Arduino\:\ =Arduino\: @@ -134,7 +137,7 @@ Autoscroll=\u0410\u045e\u0442\u0430\u043f\u0440\u0430\u043a\u0440\u0443\u0442\u0 #: Editor.java:2619 #, java-format -!Bad\ error\ line\:\ {0}= +Bad\ error\ line\:\ {0}=\u041a\u0435\u043f\u0441\u043a\u0456 \u0440\u0430\u0434\u043e\u043a \u043f\u0430\u043c\u044b\u043b\u0430\u043a\: {0} #: Editor.java:2136 Bad\ file\ selected=\u0410\u0431\u0440\u0430\u043d\u044b \u043a\u0435\u043f\u0441\u043a\u0456 \u0444\u0430\u0439\u043b @@ -185,7 +188,7 @@ Canadian\ French=\u041a\u0430\u043d\u0430\u0434\u0441\u043a\u0430-\u0424\u0440\u #: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2064 Editor.java:2145 Editor.java:2465 -Cancel=\u0410\u0434\u043c\u0435\u043d\u0430 +Cancel=\u0421\u043a\u0430\u0441\u0430\u0432\u0430\u0446\u044c #: Sketch.java:455 Cannot\ Rename=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u041f\u0435\u0440\u0430\u0439\u043c\u0435\u043d\u0430\u0432\u0430\u0446\u044c @@ -297,7 +300,7 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u043f\u0435\u0440\u0430\u0437\u0430\u0445\u0430\u0432\u0430\u0446\u044c \u0441\u043a\u0435\u0442\u0447 #: Theme.java:52 -Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u043f\u0440\u0447\u044b\u0442\u0430\u0446\u044c \u043d\u0430\u043b\u0430\u0436\u043a\u0456 \u043a\u043e\u043b\u0435\u0440\u043d\u0430\u0439 \u0442\u044d\u043c\u044b.\n\u041f\u0430\u0442\u0440\u044d\u0431\u043d\u0430 \u043f\u0435\u0440\u0430\u0456\u043d\u0441\u0442\u0430\u043b\u044f\u0432\u0430\u0446\u044c Arduino. +!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u043f\u0440\u0430\u0447\u044b\u0442\u0430\u0446\u044c \u043d\u0430\u043b\u0430\u0434\u043a\u0456 \u043f\u0430-\u0437\u043c\u043e\u045e\u0447\u0432\u0430\u043d\u043d\u044e.\n\u041f\u0430\u0442\u0440\u044d\u0431\u043d\u0430 \u043f\u0435\u0440\u0430\u045e\u0441\u0442\u0430\u043b\u044f\u0432\u0430\u0446\u044c Arduino. @@ -437,7 +440,7 @@ Error\ loading\ {0}=\u043f\u0430\u043c\u044b\u043b\u043a\u0430 \u0437\u0430\u043 #: Serial.java:181 #, java-format -Error\ opening\ serial\ port\ ''{0}''.=\u041f\u0430\u043c\u044b\u043b\u043a\u0430 \u0430\u0434\u0447\u044b\u043d\u0435\u043d\u043d\u044f \u043f\u0430\u0441\u043b\u044f\u0434\u043e\u045e\u043d\u0430\u0433\u0430 \u043f\u0430\u0440\u0442\u0430 ''{0}''. +Error\ opening\ serial\ port\ ''{0}''.=\u041f\u0430\u043c\u044b\u043b\u043a\u0430 \u0430\u0434\u0447\u044b\u043d\u0435\u043d\u043d\u044f \u043f\u0430\u0441\u043b\u044f\u0434\u043e\u045e\u043d\u0430\u0433\u0430 \u043f\u043e\u0440\u0442\u0443 ''{0}''. #: Preferences.java:277 Error\ reading\ preferences=\u041f\u0430\u043c\u044b\u043b\u043a\u0430 \u0447\u044b\u0442\u0430\u043d\u043d\u044f \u043d\u0430\u043b\u0430\u0434\u0430\u043a @@ -542,11 +545,11 @@ Getting\ Started=\u0417 \u0447\u0430\u0433\u043e \u043f\u0430\u0447\u0430\u0446\ #: ../../../processing/app/Sketch.java:1646 #, java-format -Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=\u0413\u043b\u0430\u0431\u0430\u043b\u044c\u043d\u044b\u044f \u0437\u043c\u0435\u043d\u043d\u044b\u044f \u045e\u0436\u044b\u0432\u0430\u044e\u0446\u044c {0} \u0431\u0430\u0439\u0442\u0430\u045e ({2}%%) \u0434\u044b\u043d\u0430\u043c\u0456\u0447\u043d\u0430\u0439 \u043f\u0430\u043c\u044f\u0446\u0456, \u043f\u0430\u043a\u0456\u0434\u0430\u044e\u0447\u044b {3} \u0431\u0430\u0439\u0442\u0430\u045e \u043b\u0430\u043a\u0430\u043b\u044c\u043d\u044b\u043c \u0437\u043c\u0435\u043d\u043d\u044b\u043c. \u041c\u0430\u043a\u0441\u0456\u043c\u0443\u043c {1} \u0431\u0430\u0439\u0442. +Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=\u0413\u043b\u0430\u0431\u0430\u043b\u044c\u043d\u044b\u044f \u043f\u0435\u0440\u0430\u043c\u0435\u043d\u043d\u044b\u044f \u045e\u0436\u044b\u0432\u0430\u044e\u0446\u044c {0} \u0431\u0430\u0439\u0442\u0430\u045e ({2}%%) \u0434\u044b\u043d\u0430\u043c\u0456\u0447\u043d\u0430\u0439 \u043f\u0430\u043c\u044f\u0446\u0456, \u043f\u0430\u043a\u0456\u0434\u0430\u044e\u0447\u044b {3} \u0431\u0430\u0439\u0442\u0430\u045e \u043b\u0430\u043a\u0430\u043b\u044c\u043d\u044b\u043c \u043f\u0435\u0440\u0430\u043c\u0435\u043d\u043d\u044b\u043c. \u041c\u0430\u043a\u0441\u0456\u043c\u0443\u043c {1} \u0431\u0430\u0439\u0442. #: ../../../processing/app/Sketch.java:1651 #, java-format -Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=\u0413\u043b\u0430\u0431\u0430\u043b\u044c\u043d\u044b\u044f \u0437\u043c\u0435\u043d\u043d\u044b\u044f \u045e\u0436\u044b\u0432\u0430\u044e\u0446\u044c {0} \u0431\u0430\u0439\u0442\u0430\u045e \u0434\u044b\u043d\u0430\u043c\u0456\u0447\u043d\u0430\u0439 \u043f\u0430\u043c\u044f\u0446\u0456 +Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=\u0413\u043b\u0430\u0431\u0430\u043b\u044c\u043d\u044b\u044f \u043f\u0435\u0440\u0430\u043c\u0435\u043d\u043d\u044b\u044f \u045e\u0436\u044b\u0432\u0430\u044e\u0446\u044c {0} \u0431\u0430\u0439\u0442\u0430\u045e \u0434\u044b\u043d\u0430\u043c\u0456\u0447\u043d\u0430\u0439 \u043f\u0430\u043c\u044f\u0446\u0456 #: Preferences.java:98 Greek=\u0413\u0440\u044d\u0446\u043a\u0430\u044f @@ -594,7 +597,7 @@ Ignoring\ sketch\ with\ bad\ name=\u0406\u0433\u043d\u0430\u0440\u0443\u0435\u04 Import\ Library...=\u0406\u043c\u043f\u0430\u0440\u0442\u0430\u0432\u0430\u0446\u044c \u0411\u0456\u0431\u043b\u0456\u044f\u0442\u044d\u043a\u0443 #: ../../../processing/app/Sketch.java:736 -In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=\u0423 Arduino 1.0 \u043f\u0430\u0448\u044b\u0440\u044d\u043d\u043d\u0435 \u0444\u0430\u0439\u043b\u0430\u045e \u0431\u044b\u043b\u043e \u0437\u043c\u0435\u043d\u0435\u043d\u0430 \u0437 .pde \u043d\u0430.ino.\n\u041d\u043e\u0432\u044b\u044f \u0441\u043a\u0435\u0442\u0447\u044b (\u0423\u043a\u043b\u044e\u0447\u0430\u044e\u0447\u044b \u0441\u0442\u0432\u043e\u0440\u0430\u043d\u044b\u044f \u0437 \u0434\u0430\u043f\u0430\u043c\u043e\u0433\u0430\u0439 \n"\u0417\u0430\u0445\u0430\u0432\u0430\u0446\u044c-\u042f\u043a") \u0431\u0443\u0434\u0443\u0446\u044c \u0443\u0442\u0440\u044b\u043c\u043b\u0456\u0432\u0430\u0446\u044c \u043d\u043e\u0432\u044b\u044f \u043f\u0430\u0448\u044b\u0440\u044d\u043d\u043d\u0456. \n\u041f\u0430\u0448\u044b\u0440\u044d\u043d\u043d\u0456 \u0456\u0441\u043d\u0443\u044e\u0447\u044b\u0445 \u0441\u043a\u0435\u0442\u0447\u0430\u045e \u0431\u0443\u0434\u0443\u0446\u044c \u0430\u0434\u043d\u043e\u045e\u043b\u0435\u043d\u044b \u043f\u0430\u0434\u0447\u0430\u0441 \n\u0437\u0430\u0445\u043e\u045e\u0432\u0430\u043d\u043d\u044f, \u0430\u043b\u0435 \u0432\u044b \u043c\u043e\u0436\u0430\u0446\u0435 \u0430\u0434\u043c\u044f\u043d\u0456\u0446\u044c \u0433\u044d\u0442\u0430 \u045e "Preferences dialog."\n\nSave sketch and update its extension? +In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=\u0423 Arduino 1.0 \u043f\u0430\u0448\u044b\u0440\u044d\u043d\u043d\u0435 \u0444\u0430\u0439\u043b\u0430\u045e \u0431\u044b\u043b\u043e \u0437\u043c\u0435\u043d\u0435\u043d\u0430 \u0437 .pde \u043d\u0430.ino.\n\u041d\u043e\u0432\u044b\u044f \u0441\u043a\u0435\u0442\u0447\u044b (\u0423\u043a\u043b\u044e\u0447\u0430\u044e\u0447\u044b \u0441\u0442\u0432\u043e\u0440\u0430\u043d\u044b\u044f \u0437 \u0434\u0430\u043f\u0430\u043c\u043e\u0433\u0430\u0439 \n"\u0417\u0430\u0445\u0430\u0432\u0430\u0446\u044c-\u042f\u043a") \u0431\u0443\u0434\u0443\u0446\u044c \u0443\u0442\u0440\u044b\u043c\u043b\u0456\u0432\u0430\u0446\u044c \u043d\u043e\u0432\u044b\u044f \u043f\u0430\u0448\u044b\u0440\u044d\u043d\u043d\u0456. \n\u041f\u0430\u0448\u044b\u0440\u044d\u043d\u043d\u0456 \u0456\u0441\u043d\u0443\u044e\u0447\u044b\u0445 \u0441\u043a\u0435\u0442\u0447\u0430\u045e \u0431\u0443\u0434\u0443\u0446\u044c \u0430\u0434\u043d\u043e\u045e\u043b\u0435\u043d\u044b \u043f\u0430\u0434\u0447\u0430\u0441 \n\u0437\u0430\u0445\u043e\u045e\u0432\u0430\u043d\u043d\u044f, \u0430\u043b\u0435 \u0432\u044b \u043c\u043e\u0436\u0430\u0446\u0435 \u0430\u0434\u043c\u044f\u043d\u0456\u0446\u044c \u0433\u044d\u0442\u0430 \u045e "Preferences dialog."\n\n\u0417\u0430\u0445\u0430\u0432\u0430\u0446\u044c \u0441\u043a\u0435\u0442\u0447 \u0456 \u0430\u0431\u043d\u0430\u0432\u0456\u0446\u044c \u044f \u0433\u044d\u0442\u044b \u044f\u043f\u0430\u0448\u044b\u0440\u044d\u043d\u043d\u0456? #: Editor.java:1216 Editor.java:2757 Increase\ Indent=\u041f\u0430\u0432\u044f\u043b\u0456\u0446\u044b\u0446\u044c \u0432\u043e\u0434\u0441\u0442\u0443\u043f @@ -619,7 +622,7 @@ Korean=\u041a\u0430\u0440\u044d\u0439\u0441\u043a\u0430\u044f Latvian=\u041b\u0430\u0442\u0432\u0456\u0441\u043a\u0430\u044f #: Base.java:2699 -Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=\u0411\u0456\u043b\u0456\u044f\u0442\u044d\u043a\u0430 \u0434\u0430\u0434\u0430\u0434\u0437\u0435\u043d\u0430 \u0434\u0430 \u0432\u044b\u0448\u044b\u0445 \u0431\u0456\u043b\u0456\u044f\u0442\u044d\u043a. \u0412\u044b\u0431\u0435\u0440\u044b\u0446\u0435 \u043c\u0435\u043d\u044e "\u0406\u043c\u043f\u0430\u0440\u0442\u0430\u0432\u0430\u0446\u044c \u0431\u0456\u0431\u0456\u044f\u0442\u044d\u043a\u0456" +Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=\u0411\u0456\u043b\u0456\u044f\u0442\u044d\u043a\u0430 \u0434\u0430\u0434\u0430\u0434\u0437\u0435\u043d\u0430 \u0434\u0430 \u0432\u0430\u0448\u044b\u0445 \u0431\u0456\u043b\u0456\u044f\u0442\u044d\u043a. \u041d\u0430\u0432\u0435\u0434\u0430\u0439\u0446\u0435 \u043c\u0435\u043d\u044e "\u0406\u043c\u043f\u0430\u0440\u0442\u0430\u0432\u0430\u0446\u044c \u0431\u0456\u0431\u0456\u044f\u0442\u044d\u043a\u0456" #: Preferences.java:106 Lithuaninan=\u041b\u0456\u0442\u043e\u045e\u0441\u043a\u0430\u044f @@ -634,7 +637,7 @@ Marathi=\u041c\u0430\u0440\u0430\u0442\u0445\u0456 Message=\u041f\u0430\u0432\u0435\u0434\u0430\u043c\u043b\u0435\u043d\u043d\u0435 #: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=\u0410\u0434\u0441\u0443\u0442\u043d\u0456\u0447\u0430\u0435 \u043f\u0430\u0441\u043b\u044f\u0434\u043e\u045e\u043d\u0430\u0441\u0446\u044c */ \u0430\u0434 \u043f\u0430\u0447\u0430\u0442\u043a\u0443 /* \u043a\u0430\u043c\u0435\u043d\u0442\u0430\u0440\u0430 */ #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\u0411\u043e\u043b\u0435\u0439 \u043d\u0430\u043b\u0430\u0434\u0430\u043a \u043c\u043e\u0436\u043d\u0430 \u0437\u043c\u044f\u043d\u0456\u0446\u044c \u043d\u0430\u045e\u043f\u0440\u043e\u0441\u0442 \u0443 \u0444\u0430\u0439\u043b\u0435 @@ -670,7 +673,7 @@ Next\ Tab=\u041d\u0430\u0441\u0442\u0443\u043f\u043d\u044b Tab No=\u041d\u0435 #: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u041f\u043b\u0430\u0442\u0430 \u043d\u0435 \u0430\u0431\u0440\u0430\u043d\u0430; \u043a\u0430\u043b\u0456 \u043b\u0430\u0441\u043a\u0430 \u0430\u0431\u044f\u0440\u044b\u0446\u0435 \u043f\u043b\u0430\u0442\u0443 \u043f\u0440\u0430\u0437 \u043c\u0435\u043d\u044e Tools > Board. +No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u041f\u043b\u0430\u0442\u0430 \u043d\u0435 \u0430\u0431\u0440\u0430\u043d\u0430; \u043a\u0430\u043b\u0456 \u043b\u0430\u0441\u043a\u0430 \u0430\u0431\u044f\u0440\u044b\u0446\u0435 \u043f\u043b\u0430\u0442\u0443 \u043f\u0440\u0430\u0437 \u043c\u0435\u043d\u044e "\u0406\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b" > "\u041f\u043b\u0430\u0442\u0430". #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=\u041d\u0435 \u043f\u0430\u0442\u0440\u044d\u0431\u043d\u0430 \u0437\u043c\u0435\u043d\u0430\u045e \u0434\u043b\u044f \u0430\u045e\u0442\u0430\u0444\u0430\u0440\u043c\u0430\u0442\u0443. @@ -811,9 +814,6 @@ Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troublesh #: Sketch.java:355 Sketch.java:362 Sketch.java:373 Problem\ with\ rename=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u043f\u0435\u0440\u0430\u0439\u043c\u0435\u043d\u0430\u0432\u0430\u0446\u044c -#: Editor.java:2137 -!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= - #: ../../../processing/app/I18n.java:86 Processor=\u041f\u0440\u0430\u0446\u044d\u0441\u0430\u0440 @@ -911,7 +911,7 @@ Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ ma #: Serial.java:194 #, java-format -Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=\u041f\u0430\u0441\u043b\u044f\u0434\u043e\u045e\u043d\u044b \u043f\u043e\u0440\u0442 ''{0}'' \u043d\u0435 \u0437\u043d\u043e\u0439\u0434\u0437\u0435\u043d\u044b. \u0426\u0456 \u0432\u044b\u0431\u0440\u0430\u043b\u0456 \u0432\u044b \u043f\u0430\u0442\u0440\u044d\u0431\u043d\u044b \u045e \u043c\u0435\u043d\u044e Tools > Serial Port ? +Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=\u041f\u0430\u0441\u043b\u044f\u0434\u043e\u045e\u043d\u044b \u043f\u043e\u0440\u0442 ''{0}'' \u043d\u0435 \u0437\u043d\u043e\u0439\u0434\u0437\u0435\u043d\u044b. \u0426\u0456 \u0432\u044b\u0431\u0440\u0430\u043b\u0456 \u0432\u044b \u043f\u0430\u0442\u0440\u044d\u0431\u043d\u044b \u045e \u043c\u0435\u043d\u044e "\u0406\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b" > Serial Port ? #: Editor.java:2343 #, java-format @@ -1155,7 +1155,7 @@ Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() \u0431\u044b\u043b\u0 Wrap\ Around=\u041f\u0430\u0437\u043d\u0430\u0447\u0430\u0446\u044c #: debug/Uploader.java:213 -Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=\u0417\u043d\u043e\u0439\u0434\u0437\u0435\u043d\u044b \u0434\u0437\u0456\u045e\u043d\u044b \u043c\u0456\u043a\u0440\u0430\u043a\u0430\u043d\u0442\u0440\u043e\u043b\u0435\u0440. \u0426\u0456 \u0430\u0431\u0440\u0430\u043b\u0456 \u0432\u044b \u043f\u0430\u0442\u0440\u044d\u0431\u043d\u044b \u045e \u043c\u0435\u043d\u044e Tools > Board ? +Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=\u0417\u043d\u043e\u0439\u0434\u0437\u0435\u043d\u044b \u0434\u0437\u0456\u045e\u043d\u044b \u043c\u0456\u043a\u0440\u0430\u043a\u0430\u043d\u0442\u0440\u043e\u043b\u0435\u0440. \u0426\u0456 \u0430\u0431\u0440\u0430\u043b\u0456 \u0432\u044b \u043f\u0430\u0442\u0440\u044d\u0431\u043d\u044b \u045e \u043c\u0435\u043d\u044e "\u0406\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b" > "\u041f\u043b\u0430\u0442\u0430" ? #: Preferences.java:77 UpdateCheck.java:108 Yes=\u0422\u0430\u043a @@ -1196,7 +1196,7 @@ Zip\ doesn't\ contain\ a\ library=ZIP \u043d\u0435 \u0437\u043c\u044f\u0448\u044 #: SketchCode.java:258 #, java-format -"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" \u0443\u0442\u0440\u044b\u043c\u043b\u0456\u0432\u0430\u0435 \u043d\u0435\u0437\u0440\u0430\u0437\u0443\u043c\u0435\u043b\u044b\u044f \u0441\u0456\u043c\u0432\u0430\u043b\u044b. \u041a\u0430\u043b\u0456 \u0433\u044d\u0442\u044b \u043a\u043e\u0434 \u0431\u044b\u045e \u0441\u0442\u0432\u043e\u0440\u0430\u043d\u044b \u045e \u0441\u0442\u0430\u0440\u043e\u0439 \u0432\u0435\u0440\u0441\u0456\u0456 Arduino, \u0432\u0430\u043c \u0432\u0430\u0440\u0442\u0430 \u045e\u0436\u044b\u0446\u044c Tools -> Fix Encoding & Reload \u0434\u043b\u044f \u0430\u0431\u043d\u0430\u045e\u043b\u0435\u043d\u043d\u044f \u0441\u043a\u0435\u0442\u0447\u0430 \u043d\u0430 \u043a\u0430\u0434\u044b\u0440\u043e\u045e\u043a\u0443 UTF-8. \u041a\u0430\u043b\u0456 \u0433\u044d\u0442\u0430 \u043d\u0435 \u0432\u044b\u0440\u0430\u0448\u044b\u0446\u044c \u043f\u0440\u0430\u0431\u043b\u0435\u043c\u0443, \u0441\u043f\u0430\u0442\u0440\u044d\u0431\u0456\u0446\u0446\u0430 \u0432\u044b\u0434\u0430\u043b\u0456\u0446\u044c \u043a\u0435\u043f\u0441\u043a\u0456\u044f \u0441\u0456\u043c\u0432\u0430\u043b\u044b \u045e\u0440\u0443\u0447\u043d\u0443\u044e, \u043a\u0430\u0431 \u043f\u0430\u0437\u0431\u0430\u0432\u0456\u0446\u0446\u0430 \u0430\u0434 \u0433\u044d\u0442\u0430\u0433\u0430 \u043f\u0430\u0432\u0435\u0434\u0430\u043c\u043b\u0435\u043d\u043d\u044f. +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 \nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\n\u041f\u0430\u0447\u044b\u043d\u0430\u044e\u0447\u044b \u0430\u0434 Arduino 0019, Ethernet-\u0431\u0456\u0431\u043b\u0456\u044f\u0442\u044d\u043a\u0430 \u0437\u0430\u043b\u0435\u0436\u044b\u0446\u044c \u0430\u0434 SPI-\u0431\u0456\u0431\u043b\u0456\u044f\u0442\u044d\u043a\u0456.\n\u041c\u0430\u0431\u044b\u0446\u044c \u0432\u044b \u045e\u0436\u044b\u0432\u0430\u0435\u0446\u0435 \u044f\u0435, \u0430\u043b\u044c\u0431\u043e \u0456\u043d\u0448\u0430\u044f \u0431\u0456\u0431\u043b\u0456\u044f\u0442\u044d\u043a\u0430 \u0437\u0430\u043b\u0435\u0436\u044b\u0446\u044c \u0430\u0434 SPI-\u0431\u0456\u0431\u043b\u0456\u044f\u0442\u044d\u0435\u0456.\n\n diff --git a/arduino-core/src/processing/app/i18n/Resources_bg.po b/arduino-core/src/processing/app/i18n/Resources_bg.po index 2a152855c..b1a6d769b 100644 --- a/arduino-core/src/processing/app/i18n/Resources_bg.po +++ b/arduino-core/src/processing/app/i18n/Resources_bg.po @@ -9,8 +9,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Bulgarian (http://www.transifex.com/projects/p/arduino-ide-15/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -139,6 +139,12 @@ msgstr "Arduino ARM (32-битови) платки" msgid "Arduino AVR Boards" msgstr "Arduino AVR платки" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -437,7 +443,7 @@ msgstr "Не можах да презапиша скицата" msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "Не можах да прочета цветовите настройки на темата.\nЩе трябва да преинсталирате Arduino." +msgstr "" #: Preferences.java:219 msgid "" @@ -902,7 +908,7 @@ msgstr "Съобщение" #: ../../../processing/app/preproc/PdePreprocessor.java:412 msgid "Missing the */ from the end of a /* comment */" -msgstr "" +msgstr "Липсващ */ в края на /* коментар */" #: Preferences.java:449 msgid "More preferences can be edited directly in the file" @@ -1051,7 +1057,7 @@ msgstr "Персийски" #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." -msgstr "Моля, импортирайте библиотеката SPI от менюто Скица > Импортирай библиотека." +msgstr "Моля, импортирайте библиотеката SPI от менюто Скица > Импортиране на библиотека." #: Base.java:239 msgid "Please install JDK 1.5 or later" @@ -1140,12 +1146,6 @@ msgstr "Проблем при качването към платката. Ви msgid "Problem with rename" msgstr "Проблем с преименуването" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "Arduino може да отваря само негови скици\nи други файлове с разширение .ino или .pde" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "Процесор" @@ -1713,10 +1713,10 @@ msgstr "\".{0}\" е невалидно разширение." #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." -msgstr "\"{0}\" съдържа непознат символ. Ако този код е създаден с по-стара версия на Arduino, може да е нужно да ползвате Инструменти -> Корекция на кодирането & Презареждане, за да обновите скицата с ползване на UTF-8 кодиране. Ако не, може да е нужно да изтриете грешния символ, за да се избавите от това предупреждение." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." +msgstr "" #: debug/Compiler.java:409 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_bg.properties b/arduino-core/src/processing/app/i18n/Resources_bg.properties index a758905ca..d549fea30 100644 --- a/arduino-core/src/processing/app/i18n/Resources_bg.properties +++ b/arduino-core/src/processing/app/i18n/Resources_bg.properties @@ -4,7 +4,7 @@ # # Translators: # Valentin Laskov , 2012-2013. -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Bulgarian (http\://www.transifex.com/projects/p/arduino-ide-15/language/bg/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: bg\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Bulgarian (http\://www.transifex.com/projects/p/arduino-ide-15/language/bg/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: bg\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ (\u0438\u0437\u0438\u0441\u043a\u0432\u0430 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0410\u0440\u0434\u0443\u0438\u043d\u043e) @@ -84,6 +84,9 @@ Arduino\ ARM\ (32-bits)\ Boards=Arduino ARM (32-\u0431\u0438\u0442\u043e\u0432\u #: ../../../processing/app/I18n.java:82 Arduino\ AVR\ Boards=Arduino AVR \u043f\u043b\u0430\u0442\u043a\u0438 +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=\u0410\u0440\u0434\u0443\u0438\u043d\u043e \u043d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0442\u0440\u044a\u0433\u043d\u0435, \u043f\u043e\u043d\u0435\u0436\u0435 \u043d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430\n\u0441\u044a\u0437\u0434\u0430\u0434\u0435 \u043f\u0430\u043f\u043a\u0430 \u0437\u0430 \u0441\u044a\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0435 \u043d\u0430 \u0412\u0430\u0448\u0438\u0442\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438. @@ -298,7 +301,7 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=\u041d\u0435 \u043c\u043e\u0436\u0430\u0445 \u0434\u0430 \u043f\u0440\u0435\u0437\u0430\u043f\u0438\u0448\u0430 \u0441\u043a\u0438\u0446\u0430\u0442\u0430 #: Theme.java:52 -Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u041d\u0435 \u043c\u043e\u0436\u0430\u0445 \u0434\u0430 \u043f\u0440\u043e\u0447\u0435\u0442\u0430 \u0446\u0432\u0435\u0442\u043e\u0432\u0438\u0442\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u0442\u0435\u043c\u0430\u0442\u0430.\n\u0429\u0435 \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u043f\u0440\u0435\u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u0442\u0435 Arduino. +!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u041d\u0435 \u043c\u043e\u0433\u0430 \u0434\u0430 \u043f\u0440\u043e\u0447\u0435\u0442\u0430 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438\u0442\u0435 \u043f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435.\n\u0429\u0435 \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u043f\u0440\u0435\u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u0442\u0435 \u0410\u0440\u0434\u0443\u0438\u043d\u043e. @@ -635,7 +638,7 @@ Marathi=\u041c\u0430\u0440\u0430\u0442\u0445\u0438 Message=\u0421\u044a\u043e\u0431\u0449\u0435\u043d\u0438\u0435 #: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=\u041b\u0438\u043f\u0441\u0432\u0430\u0449 */ \u0432 \u043a\u0440\u0430\u044f \u043d\u0430 /* \u043a\u043e\u043c\u0435\u043d\u0442\u0430\u0440 */ #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\u041f\u043e\u0432\u0435\u0447\u0435 \u043f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u043d\u0438\u044f \u043c\u043e\u0436\u0435 \u0434\u0430 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0442\u0435 \u0434\u0438\u0440\u0435\u043a\u0442\u043d\u043e \u0432\u044a\u0432 \u0444\u0430\u0439\u043b\u0430 @@ -746,7 +749,7 @@ Paste=\u041f\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435 Persian=\u041f\u0435\u0440\u0441\u0438\u0439\u0441\u043a\u0438 #: debug/Compiler.java:408 -Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=\u041c\u043e\u043b\u044f, \u0438\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u0430\u0439\u0442\u0435 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430\u0442\u0430 SPI \u043e\u0442 \u043c\u0435\u043d\u044e\u0442\u043e \u0421\u043a\u0438\u0446\u0430 > \u0418\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u0430\u0439 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430. +Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=\u041c\u043e\u043b\u044f, \u0438\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u0430\u0439\u0442\u0435 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430\u0442\u0430 SPI \u043e\u0442 \u043c\u0435\u043d\u044e\u0442\u043e \u0421\u043a\u0438\u0446\u0430 > \u0418\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430. #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=\u041c\u043e\u043b\u044f, \u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u0439\u0442\u0435 JDK 1.5 \u0438\u043b\u0438 \u043f\u043e-\u043d\u043e\u0432 @@ -812,9 +815,6 @@ Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troublesh #: Sketch.java:355 Sketch.java:362 Sketch.java:373 Problem\ with\ rename=\u041f\u0440\u043e\u0431\u043b\u0435\u043c \u0441 \u043f\u0440\u0435\u0438\u043c\u0435\u043d\u0443\u0432\u0430\u043d\u0435\u0442\u043e -#: Editor.java:2137 -Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Arduino \u043c\u043e\u0436\u0435 \u0434\u0430 \u043e\u0442\u0432\u0430\u0440\u044f \u0441\u0430\u043c\u043e \u043d\u0435\u0433\u043e\u0432\u0438 \u0441\u043a\u0438\u0446\u0438\n\u0438 \u0434\u0440\u0443\u0433\u0438 \u0444\u0430\u0439\u043b\u043e\u0432\u0435 \u0441 \u0440\u0430\u0437\u0448\u0438\u0440\u0435\u043d\u0438\u0435 .ino \u0438\u043b\u0438 .pde - #: ../../../processing/app/I18n.java:86 Processor=\u041f\u0440\u043e\u0446\u0435\u0441\u043e\u0440 @@ -1197,7 +1197,7 @@ Zip\ doesn't\ contain\ a\ library=Zip \u0444\u0430\u0439\u043b\u044a\u0442 \u043 #: SketchCode.java:258 #, java-format -"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" \u0441\u044a\u0434\u044a\u0440\u0436\u0430 \u043d\u0435\u043f\u043e\u0437\u043d\u0430\u0442 \u0441\u0438\u043c\u0432\u043e\u043b. \u0410\u043a\u043e \u0442\u043e\u0437\u0438 \u043a\u043e\u0434 \u0435 \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d \u0441 \u043f\u043e-\u0441\u0442\u0430\u0440\u0430 \u0432\u0435\u0440\u0441\u0438\u044f \u043d\u0430 Arduino, \u043c\u043e\u0436\u0435 \u0434\u0430 \u0435 \u043d\u0443\u0436\u043d\u043e \u0434\u0430 \u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435 \u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438 -> \u041a\u043e\u0440\u0435\u043a\u0446\u0438\u044f \u043d\u0430 \u043a\u043e\u0434\u0438\u0440\u0430\u043d\u0435\u0442\u043e & \u041f\u0440\u0435\u0437\u0430\u0440\u0435\u0436\u0434\u0430\u043d\u0435, \u0437\u0430 \u0434\u0430 \u043e\u0431\u043d\u043e\u0432\u0438\u0442\u0435 \u0441\u043a\u0438\u0446\u0430\u0442\u0430 \u0441 \u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 UTF-8 \u043a\u043e\u0434\u0438\u0440\u0430\u043d\u0435. \u0410\u043a\u043e \u043d\u0435, \u043c\u043e\u0436\u0435 \u0434\u0430 \u0435 \u043d\u0443\u0436\u043d\u043e \u0434\u0430 \u0438\u0437\u0442\u0440\u0438\u0435\u0442\u0435 \u0433\u0440\u0435\u0448\u043d\u0438\u044f \u0441\u0438\u043c\u0432\u043e\u043b, \u0437\u0430 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0431\u0430\u0432\u0438\u0442\u0435 \u043e\u0442 \u0442\u043e\u0432\u0430 \u043f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0435. +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 \nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\n\u0421\u043b\u0435\u0434 \u0410\u0440\u0434\u0443\u0438\u043d\u043e 0019, \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430\u0442\u0430 Ethernet \u0435 \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u0430 \u043e\u0442 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430\u0442\u0430 SPI.\n\u0418\u0437\u0433\u043b\u0435\u0436\u0434\u0430, \u0447\u0435 \u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435 \u043d\u0435\u044f \u0438\u043b\u0438 \u0434\u0440\u0443\u0433\u0430 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430, \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u0430 \u043e\u0442 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430\u0442\u0430 SPI.\n\n diff --git a/arduino-core/src/processing/app/i18n/Resources_bs.po b/arduino-core/src/processing/app/i18n/Resources_bs.po index 66ef5e8f1..d931a3a3e 100644 --- a/arduino-core/src/processing/app/i18n/Resources_bs.po +++ b/arduino-core/src/processing/app/i18n/Resources_bs.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/arduino-ide-15/language/bs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -138,6 +138,12 @@ msgstr "Arduino ARM (32-bita) ploče" msgid "Arduino AVR Boards" msgstr "" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -1139,12 +1145,6 @@ msgstr "" msgid "Problem with rename" msgstr "" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "Procesor" @@ -1712,9 +1712,9 @@ msgstr "" #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." msgstr "" #: debug/Compiler.java:409 diff --git a/arduino-core/src/processing/app/i18n/Resources_bs.properties b/arduino-core/src/processing/app/i18n/Resources_bs.properties index d394fab3f..5d3b834bf 100644 --- a/arduino-core/src/processing/app/i18n/Resources_bs.properties +++ b/arduino-core/src/processing/app/i18n/Resources_bs.properties @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Bosnian (http\://www.transifex.com/projects/p/arduino-ide-15/language/bs/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: bs\nPlural-Forms\: nplurals\=3; plural\=(n%10\=\=1 && n%100\!\=11 ? 0 \: n%10>\=2 && n%10<\=4 && (n%100<10 || n%100>\=20) ? 1 \: 2);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Bosnian (http\://www.transifex.com/projects/p/arduino-ide-15/language/bs/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: bs\nPlural-Forms\: nplurals\=3; plural\=(n%10\=\=1 && n%100\!\=11 ? 0 \: n%10>\=2 && n%10<\=4 && (n%100<10 || n%100>\=20) ? 1 \: 2);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(zahtjeva ponovno pokretanje Arduina) @@ -83,6 +83,9 @@ Arduino\ ARM\ (32-bits)\ Boards=Arduino ARM (32-bita) plo\u010de #: ../../../processing/app/I18n.java:82 !Arduino\ AVR\ Boards= +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 !Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.= @@ -811,9 +814,6 @@ Printing...=\u0160tampam... #: Sketch.java:355 Sketch.java:362 Sketch.java:373 !Problem\ with\ rename= -#: Editor.java:2137 -!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= - #: ../../../processing/app/I18n.java:86 Processor=Procesor diff --git a/arduino-core/src/processing/app/i18n/Resources_ca.po b/arduino-core/src/processing/app/i18n/Resources_ca.po index 97afba03b..3df1705ec 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ca.po +++ b/arduino-core/src/processing/app/i18n/Resources_ca.po @@ -9,8 +9,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/arduino-ide-15/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,19 +20,19 @@ msgstr "" #: Preferences.java:358 Preferences.java:374 msgid " (requires restart of Arduino)" -msgstr "" +msgstr "(es necessari reiniciar l'Arduino)" #: debug/Compiler.java:455 msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "" +msgstr "'Keyboard' només suportat en el Arduino Leonardo" #: debug/Compiler.java:450 msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "" +msgstr "'Mouse' només suportat en el Arduino Leonardo" #: Preferences.java:478 msgid "(edit only when Arduino is not running)" -msgstr "" +msgstr "(només editar quan l'Arduino no estigui funcionant)" #: Sketch.java:746 msgid ".pde -> .ino" @@ -51,7 +51,7 @@ msgid "" " font: 11pt \"Lucida Grande\"; margin-top: 8px } Do you " "want to save changes to this sketch
    before closing?

    If you don't " "save, your changes will be lost." -msgstr "" +msgstr " Vols desà els canvis en aquest sketck
    abans de tancar?

    Si no es desen, els canvis es perdran." #: Sketch.java:398 #, java-format @@ -66,19 +66,19 @@ msgstr "La carpeta anomenada \"{0}\" ja existeix. No es pot obrir el sketch." #: Base.java:2690 #, java-format msgid "A library named {0} already exists" -msgstr "" +msgstr "La llibreria anomenada {0} ja existeix" #: UpdateCheck.java:103 msgid "" "A new version of Arduino is available,\n" "would you like to visit the Arduino download page?" -msgstr "" +msgstr "Una nova versió de l'Arduino es troba disponible,\nvols visitar la pàgina de baixades de l'Arduino?" #: EditorConsole.java:153 msgid "" "A problem occurred while trying to open the\n" "files used to store the console output." -msgstr "" +msgstr "S'ha produït un problema en intentar obrir els\narxius utilitzats per emmagatzemar la consola de sortida." #: Editor.java:1116 msgid "About Arduino" @@ -107,11 +107,11 @@ msgstr "Un error desconegut ha succeït mentre es provava de carregar\ncodi espe #: Preferences.java:85 msgid "Arabic" -msgstr "" +msgstr "Àrab" #: Preferences.java:86 msgid "Aragonese" -msgstr "" +msgstr "Aragonès" #: tools/Archiver.java:48 msgid "Archive Sketch" @@ -129,14 +129,20 @@ msgstr "Arxivat del sketch cancel·lat." msgid "" "Archiving the sketch has been canceled because\n" "the sketch couldn't save properly." -msgstr "" +msgstr "L'arxivament del sketch ha estat cancelat per què\nel sketch no s´ha pogut desar adequadament." #: ../../../processing/app/I18n.java:83 msgid "Arduino ARM (32-bits) Boards" -msgstr "" +msgstr "Targes Arduino ARM (32-bits)" #: ../../../processing/app/I18n.java:82 msgid "Arduino AVR Boards" +msgstr "Targes Arduino AVR" + +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" msgstr "" #: Base.java:1682 @@ -160,7 +166,7 @@ msgstr "Arduino requereix una completa JDK\nper funcionar (només JRE no és suf #: ../../../processing/app/EditorStatus.java:471 msgid "Arduino: " -msgstr "" +msgstr "Arduino:" #: Sketch.java:588 #, java-format @@ -173,11 +179,11 @@ msgstr "Segur que voleu suprimir aquest sketch?" #: ../../../processing/app/Preferences.java:137 msgid "Armenian" -msgstr "" +msgstr "Armeni" #: ../../../processing/app/Preferences.java:138 msgid "Asturian" -msgstr "" +msgstr "Asturià" #: tools/AutoFormat.java:91 msgid "Auto Format" @@ -205,7 +211,7 @@ msgstr "Format automàtic finalitzat." #: Preferences.java:439 msgid "Automatically associate .ino files with Arduino" -msgstr "" +msgstr "Associació automàtica fitxers .ino amb Arduino" #: SerialMonitor.java:110 msgid "Autoscroll" @@ -214,7 +220,7 @@ msgstr "Desplaçament automàtic" #: Editor.java:2619 #, java-format msgid "Bad error line: {0}" -msgstr "" +msgstr "Error en la línia: {0}" #: Editor.java:2136 msgid "Bad file selected" @@ -222,27 +228,27 @@ msgstr "Fitxer seleccionat incorrecte" #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" -msgstr "" +msgstr "Bielorús" #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" -msgstr "" +msgstr "Tarja" #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" "Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:" " {3}" -msgstr "" +msgstr "Tarja {0}:{1}:{2} no defineix la preferència del ''build.board''. Auto-seleccionat per: {3}" #: ../../../processing/app/EditorStatus.java:472 msgid "Board: " -msgstr "" +msgstr "Tarja: " #: ../../../processing/app/Preferences.java:140 msgid "Bosnian" -msgstr "" +msgstr "Bosni" #: SerialMonitor.java:112 msgid "Both NL & CR" @@ -250,19 +256,19 @@ msgstr "Ambdós NL & CR" #: Preferences.java:81 msgid "Browse" -msgstr "" +msgstr "Navegar" #: Sketch.java:1392 Sketch.java:1423 msgid "Build folder disappeared or could not be written" -msgstr "" +msgstr "Directori de compilació desaparegut o no si pot escriure" #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" -msgstr "" +msgstr "Búlgar" #: ../../../processing/app/Preferences.java:141 msgid "Burmese (Myanmar)" -msgstr "" +msgstr "Birmà (Birmània)" #: Editor.java:708 msgid "Burn Bootloader" @@ -278,7 +284,7 @@ msgstr "" #: ../../../processing/app/Preferences.java:92 msgid "Canadian French" -msgstr "" +msgstr "Francès Canadenc" #: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2064 Editor.java:2145 Editor.java:2465 @@ -295,7 +301,7 @@ msgstr "Retorn de carro" #: Preferences.java:87 msgid "Catalan" -msgstr "" +msgstr "Català" #: Preferences.java:419 msgid "Check for updates on startup" @@ -303,27 +309,27 @@ msgstr "Comprova actualitzacions al iniciar" #: ../../../processing/app/Preferences.java:142 msgid "Chinese (China)" -msgstr "" +msgstr "Xinès (Xina)" #: ../../../processing/app/Preferences.java:142 msgid "Chinese (Hong Kong)" -msgstr "" +msgstr "Xinès (Hong Kong)" #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" -msgstr "" +msgstr "Xinès (Taiwan)" #: ../../../processing/app/Preferences.java:143 msgid "Chinese (Taiwan) (Big5)" -msgstr "" +msgstr "Xinès (Taiwan) (Big5)" #: Preferences.java:88 msgid "Chinese Simplified" -msgstr "" +msgstr "Xinès simplificat" #: Preferences.java:89 msgid "Chinese Traditional" -msgstr "" +msgstr "Xinès tradicional" #: Editor.java:521 Editor.java:2024 msgid "Close" @@ -356,7 +362,7 @@ msgstr "Copia com HTML" #: ../../../processing/app/EditorStatus.java:455 msgid "Copy error messages" -msgstr "" +msgstr "Copia missatges d'error" #: Editor.java:1165 Editor.java:2715 msgid "Copy for Forum" @@ -365,73 +371,73 @@ msgstr "Copia pel Forum" #: Sketch.java:1089 #, java-format msgid "Could not add ''{0}'' to the sketch." -msgstr "" +msgstr "No es pot afegir \"{0}\" al skecth." #: Editor.java:2188 msgid "Could not copy to a proper location." -msgstr "" +msgstr "No s'ha pogut copiar en una ubicació adequada." #: Editor.java:2179 msgid "Could not create the sketch folder." -msgstr "" +msgstr "No s'ha pogut crear el directori del sketch." #: Editor.java:2206 msgid "Could not create the sketch." -msgstr "" +msgstr "No s'ha pogut crear el sketch." #: Sketch.java:617 #, java-format msgid "Could not delete \"{0}\"." -msgstr "" +msgstr "No es pot esborrar \"{0}\"." #: Sketch.java:1066 #, java-format msgid "Could not delete the existing ''{0}'' file." -msgstr "" +msgstr "No es pot esborrar el fitxer \"{0}\" existent." #: Base.java:2533 Base.java:2556 #, java-format msgid "Could not delete {0}" -msgstr "" +msgstr "No es pot esborrar {0}" #: ../../../processing/app/debug/TargetPlatform.java:74 #, java-format msgid "Could not find boards.txt in {0}. Is it pre-1.5?" -msgstr "" +msgstr "No s'ha pogut trobar boards.txt a {0}. És anterior a -1.5?" #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 #, java-format msgid "Could not find tool {0}" -msgstr "" +msgstr "No es pot trobar l'eina {0}" #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 #, java-format msgid "Could not find tool {0} from package {1}" -msgstr "" +msgstr "No es pot trobar l'eina {0} del paquet {1}" #: Base.java:1934 #, java-format msgid "" "Could not open the URL\n" "{0}" -msgstr "" +msgstr "No es pot obrir el URL\n{0}" #: Base.java:1958 #, java-format msgid "" "Could not open the folder\n" "{0}" -msgstr "" +msgstr "No es pot obrir el directori\n{0}" #: Sketch.java:1769 msgid "" "Could not properly re-save the sketch. You may be in trouble at this point,\n" "and it might be time to copy and paste your code to another text editor." -msgstr "" +msgstr "No es pot tornar a desar correctament l'sketch. En aquest punt pots tenir un problema,\ni poder ha arribat el moment de copiar i enganxar el teu codi en un altre editor de text." #: Sketch.java:1768 msgid "Could not re-save sketch" -msgstr "" +msgstr "No es pot tornar a desar l'sketch" #: Theme.java:52 msgid "" @@ -443,7 +449,7 @@ msgstr "" msgid "" "Could not read default settings.\n" "You'll need to reinstall Arduino." -msgstr "" +msgstr "No es poden llegir les preferències inicials.\nNecessites tornar a instal·lar Arduino." #: Preferences.java:258 #, java-format @@ -453,7 +459,7 @@ msgstr "" #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" -msgstr "" +msgstr "No es pot esborrar l'anterior versió de {0}" #: Sketch.java:483 Sketch.java:528 #, java-format @@ -475,11 +481,11 @@ msgstr "No es pot reanomenar el sketch. (2)" #: Base.java:2492 #, java-format msgid "Could not replace {0}" -msgstr "" +msgstr "No es pot substituir {0}" #: tools/Archiver.java:74 msgid "Couldn't archive sketch" -msgstr "" +msgstr "No s´ha pogut arxivar el sketch" #: Sketch.java:1647 msgid "Couldn't determine program size: {0}" @@ -487,18 +493,18 @@ msgstr "No es va poder determinar la mida del programa: {0}" #: Sketch.java:616 msgid "Couldn't do it" -msgstr "" +msgstr "No podria fer-ho" #: debug/BasicUploader.java:209 msgid "" "Couldn't find a Board on the selected port. Check that you have the correct " "port selected. If it is correct, try pressing the board's reset button " "after initiating the upload." -msgstr "" +msgstr "No es pot trobar la Tarja en el port seleccionat. Verifica que tens el port correctament seleccionat. Si es correcte, intenta pressionar el polsador de reset de la Tarja després d'inicialitzar la pujada." #: ../../../processing/app/Preferences.java:82 msgid "Croatian" -msgstr "" +msgstr "Croat" #: Editor.java:1149 Editor.java:2699 msgid "Cut" @@ -506,11 +512,11 @@ msgstr "Retalla" #: ../../../processing/app/Preferences.java:83 msgid "Czech" -msgstr "" +msgstr "Txec" #: Preferences.java:90 msgid "Danish" -msgstr "" +msgstr "Danès" #: Editor.java:1224 Editor.java:2765 msgid "Decrease Indent" @@ -532,7 +538,7 @@ msgstr "Desfer tots els canvis i recarregar el sketch?" #: ../../../processing/app/Preferences.java:438 msgid "Display line numbers" -msgstr "" +msgstr "Mostra números de línia." #: Editor.java:2064 msgid "Don't Save" @@ -560,11 +566,11 @@ msgstr "Pujada enllestida." #: Preferences.java:91 msgid "Dutch" -msgstr "" +msgstr "Holandès" #: ../../../processing/app/Preferences.java:144 msgid "Dutch (Netherlands)" -msgstr "" +msgstr "Holandès (Països Baixos)" #: Editor.java:1130 msgid "Edit" @@ -576,15 +582,15 @@ msgstr "Mides del fonts del editor:" #: Preferences.java:353 msgid "Editor language: " -msgstr "" +msgstr "Editor d'idioma:" #: Preferences.java:92 msgid "English" -msgstr "" +msgstr "Anglès" #: ../../../processing/app/Preferences.java:145 msgid "English (United Kingdom)" -msgstr "" +msgstr "Anglès (Regne Unit)" #: Editor.java:1062 msgid "Environment" @@ -615,14 +621,14 @@ msgstr "Error a dins del Serial.{0}()" #: ../../../processing/app/Base.java:1232 msgid "Error loading libraries" -msgstr "" +msgstr "Error en carregar les llibreries" #: ../../../processing/app/debug/TargetPlatform.java:95 #: ../../../processing/app/debug/TargetPlatform.java:106 #: ../../../processing/app/debug/TargetPlatform.java:117 #, java-format msgid "Error loading {0}" -msgstr "" +msgstr "Error en carregar {0}" #: Serial.java:181 #, java-format @@ -655,7 +661,7 @@ msgstr "Error al carrega el bootloader." #: ../../../processing/app/Editor.java:2555 msgid "Error while burning bootloader: missing '{0}' configuration parameter" -msgstr "" +msgstr "Error durant l’enregistrament del bootloader: no es troba el paràmetre de configuració {0}" #: SketchCode.java:83 #, java-format @@ -664,20 +670,20 @@ msgstr "Error durant la carrega de codi {0}" #: Editor.java:2567 msgid "Error while printing." -msgstr "" +msgstr "Error durant la impressió." #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" -msgstr "" +msgstr "Error durant la pujada: no es troba el paràmetre de configuració {0}" #: Preferences.java:93 msgid "Estonian" -msgstr "" +msgstr "Estonià" #: ../../../processing/app/Preferences.java:146 msgid "Estonian (Estonia)" -msgstr "" +msgstr "Estònia (Estònia)" #: Editor.java:516 msgid "Examples" @@ -685,7 +691,7 @@ msgstr "Exemples" #: Editor.java:2482 msgid "Export canceled, changes must first be saved." -msgstr "" +msgstr "Exportació cancelada, els canvis primer han de desar-se." #: Base.java:2100 msgid "FAQ.html" @@ -697,7 +703,7 @@ msgstr "Fitxer" #: Preferences.java:94 msgid "Filipino" -msgstr "" +msgstr "Filipí" #: FindReplace.java:124 FindReplace.java:127 msgid "Find" @@ -725,7 +731,7 @@ msgstr "Cerca:" #: ../../../processing/app/Preferences.java:147 msgid "Finnish" -msgstr "" +msgstr "Finès" #: tools/FixEncoding.java:41 tools/FixEncoding.java:58 #: tools/FixEncoding.java:79 @@ -736,15 +742,15 @@ msgstr "Arregla la codificació i recarrega" msgid "" "For information on installing libraries, see: " "http://arduino.cc/en/Guide/Libraries\n" -msgstr "" +msgstr "Per obtenir informació de com instal·lar llibreries, ves a: http://arduino.cc/en/Guide/Libraries\n" #: debug/BasicUploader.java:80 msgid "Forcing reset using 1200bps open/close on port " -msgstr "" +msgstr "Forçant el reinici obrint/tancat el port a 1200bps" #: Preferences.java:95 msgid "French" -msgstr "" +msgstr "Francès" #: Editor.java:1097 msgid "Frequently Asked Questions" @@ -752,15 +758,15 @@ msgstr "Preguntes Més Freqüents" #: Preferences.java:96 msgid "Galician" -msgstr "" +msgstr "Gallec" #: ../../../processing/app/Preferences.java:94 msgid "Georgian" -msgstr "" +msgstr "Georgià" #: Preferences.java:97 msgid "German" -msgstr "" +msgstr "Alemany" #: Editor.java:1054 msgid "Getting Started" @@ -771,16 +777,16 @@ msgstr "Primers passos" msgid "" "Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes " "for local variables. Maximum is {1} bytes." -msgstr "" +msgstr "Les variables globals fan servir {0} bytes ({2}%%) bytes de memòria dinàmica, deixant {3} bytes per variables locals. Màxima és de {1} bytes." #: ../../../processing/app/Sketch.java:1651 #, java-format msgid "Global variables use {0} bytes of dynamic memory." -msgstr "" +msgstr "Les variables globlals fan servir {0} bytes de memòria dinàmica." #: Preferences.java:98 msgid "Greek" -msgstr "" +msgstr "Grec" #: Base.java:2085 msgid "Guide_Environment.html" @@ -800,7 +806,7 @@ msgstr "Guide_Windows.html" #: ../../../processing/app/Preferences.java:95 msgid "Hebrew" -msgstr "" +msgstr "Hebreu" #: Editor.java:1015 msgid "Help" @@ -808,7 +814,7 @@ msgstr "Ajuda" #: Preferences.java:99 msgid "Hindi" -msgstr "" +msgstr "Hindi" #: Sketch.java:295 msgid "" @@ -822,7 +828,7 @@ msgstr "Que tant Borges de part teva" #: Preferences.java:100 msgid "Hungarian" -msgstr "" +msgstr "Hongarès" #: FindReplace.java:96 msgid "Ignore Case" @@ -849,7 +855,7 @@ msgid "" "disable this in the Preferences dialog.\n" "\n" "Save sketch and update its extension?" -msgstr "" +msgstr "En Arduino 1.0, l'extensió per defecte del fitxer ha canviat\nde .pde a .ino. Els nous sketchs (incloent tots els creats amb\nla opció \"Desar com\") faran servir la nova extensió. L'extensió\ndels sketch existents s’actualitzaran quan es dessin, però pots\ndesactivar-ho en el diàleg de Preferències.\n\nDesa sketch i actualitza l'extensió?" #: Editor.java:1216 Editor.java:2757 msgid "Increase Indent" @@ -857,44 +863,44 @@ msgstr "Augmenta el sagnat" #: Preferences.java:101 msgid "Indonesian" -msgstr "" +msgstr "Indonesi" #: ../../../processing/app/Base.java:1204 #, java-format msgid "Invalid library found in {0}: {1}" -msgstr "" +msgstr "Llibreria invalida trobada en {0}: {1}" #: Preferences.java:102 msgid "Italian" -msgstr "" +msgstr "Italià" #: Preferences.java:103 msgid "Japanese" -msgstr "" +msgstr "Japonès" #: Preferences.java:104 msgid "Korean" -msgstr "" +msgstr "Coreà" #: Preferences.java:105 msgid "Latvian" -msgstr "" +msgstr "Letó" #: Base.java:2699 msgid "Library added to your libraries. Check \"Import library\" menu" -msgstr "" +msgstr "Llibreria afegida a les teves llibreries. Verifica el menú \"Importar llibreria\"" #: Preferences.java:106 msgid "Lithuaninan" -msgstr "" +msgstr "Lituà" #: ../../../processing/app/Sketch.java:1660 msgid "Low memory available, stability problems may occur" -msgstr "" +msgstr "Es disposa de poca memòria, es poden produir problemes d'estabilitat" #: Preferences.java:107 msgid "Marathi" -msgstr "" +msgstr "Marathi" #: Base.java:2112 msgid "Message" @@ -902,7 +908,7 @@ msgstr "Missatge" #: ../../../processing/app/preproc/PdePreprocessor.java:412 msgid "Missing the */ from the end of a /* comment */" -msgstr "" +msgstr "No es troba el */ del final del /* comentari */" #: Preferences.java:449 msgid "More preferences can be edited directly in the file" @@ -918,11 +924,11 @@ msgstr "Escolliu un nom per un nou fitxer:" #: ../../../processing/app/Preferences.java:149 msgid "Nepali" -msgstr "" +msgstr "Nepali" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 msgid "Network upload using programmer not supported" -msgstr "" +msgstr "Xarxa pujada fent servir programador no soportat" #: EditorToolbar.java:41 Editor.java:493 msgid "New" @@ -958,7 +964,7 @@ msgstr "Cap canvi necessari pel format automàtic." #: Editor.java:373 msgid "No files were added to the sketch." -msgstr "" +msgstr "No hi ha arxius afegits a l'sketch." #: Platform.java:167 msgid "No launcher available" @@ -975,16 +981,16 @@ msgstr "Hora d'aire fresc, seriosament." #: Editor.java:1872 #, java-format msgid "No reference available for \"{0}\"" -msgstr "" +msgstr "Cap referència disponible per \"{0}\"" #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." -msgstr "" +msgstr "No s´han trobat nuclis vàlids configurats! Sortin... " #: ../../../processing/app/debug/TargetPackage.java:63 #, java-format msgid "No valid hardware definitions found in folder {0}." -msgstr "" +msgstr "La definició de hardware trobat en el directori {0} no es vàlid." #: Base.java:191 msgid "Non-fatal error while setting the Look & Feel." @@ -996,22 +1002,22 @@ msgstr "Nop" #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" -msgstr "" +msgstr "Noruec Bokmâl" #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " "for tips on reducing your footprint." -msgstr "" +msgstr "Memòria insuficient; ves a http://www.arduino.cc/en/Guide/Troubleshooting#size pels consells de com reduir-ne la mida." #: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2145 Editor.java:2465 msgid "OK" -msgstr "" +msgstr "D'acord" #: Sketch.java:992 Editor.java:376 msgid "One file added to the sketch." -msgstr "" +msgstr "Un fitxer afegit al sketch." #: EditorToolbar.java:41 msgid "Open" @@ -1039,7 +1045,7 @@ msgstr "Configuració de la pàgina" #: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 msgid "Password:" -msgstr "" +msgstr "Contrasenya:" #: Editor.java:1189 Editor.java:2731 msgid "Paste" @@ -1047,7 +1053,7 @@ msgstr "Enganxa" #: Preferences.java:109 msgid "Persian" -msgstr "" +msgstr "Persa" #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." @@ -1059,23 +1065,23 @@ msgstr "Si us plau instal·la JDK 1.5 o posterior." #: Preferences.java:110 msgid "Polish" -msgstr "" +msgstr "Polonès" #: ../../../processing/app/Editor.java:718 msgid "Port" -msgstr "" +msgstr "Port" #: ../../../processing/app/Preferences.java:151 msgid "Portugese" -msgstr "" +msgstr "Portuguès" #: ../../../processing/app/Preferences.java:127 msgid "Portuguese (Brazil)" -msgstr "" +msgstr "Portuguès (Brasil)" #: ../../../processing/app/Preferences.java:128 msgid "Portuguese (Portugal)" -msgstr "" +msgstr "Portuguès (Portugal)" #: Preferences.java:295 Editor.java:583 msgid "Preferences" @@ -1099,7 +1105,7 @@ msgstr "Impressió cancel·lada." #: Editor.java:2547 msgid "Printing..." -msgstr "" +msgstr "Imprimint..." #: Base.java:1957 msgid "Problem Opening Folder" @@ -1115,11 +1121,11 @@ msgstr "Problema adjustant la plataforma." #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 msgid "Problem accessing board folder /www/sd" -msgstr "" +msgstr "Problema accedint a la carpeta de la tarja /www/sd" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 msgid "Problem accessing files in folder " -msgstr "" +msgstr "Problema accedint als arxius de la carpeta" #: Base.java:1673 msgid "Problem getting data folder" @@ -1138,17 +1144,11 @@ msgstr "Problema pujant a la placa. Visita per http://www.arduino.cc/en/Guide/Tr #: Sketch.java:355 Sketch.java:362 Sketch.java:373 msgid "Problem with rename" -msgstr "" - -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "Arduino només pot obrir els seus propis sketches\ni altres fitxers acabats en .ino o .pde" +msgstr "Problema amb el canvi de nom" #: ../../../processing/app/I18n.java:86 msgid "Processor" -msgstr "" +msgstr "Processador" #: Editor.java:704 msgid "Programmer" @@ -1193,11 +1193,11 @@ msgstr "Substituir amb:" #: Preferences.java:113 msgid "Romanian" -msgstr "" +msgstr "Romanès" #: Preferences.java:114 msgid "Russian" -msgstr "" +msgstr "Rus" #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529 #: Editor.java:2064 Editor.java:2468 @@ -1214,7 +1214,7 @@ msgstr "Guardat cancel·lat." #: Editor.java:2467 msgid "Save changes before export?" -msgstr "" +msgstr "Desa canvis abans d'exporta?" #: Editor.java:2020 #, java-format @@ -1227,7 +1227,7 @@ msgstr "Anomena i desa la carpeta de sketch..." #: Editor.java:2270 Editor.java:2308 msgid "Saving..." -msgstr "" +msgstr "Desant..." #: Base.java:1909 msgid "Select (or create new) folder for sketches..." @@ -1239,7 +1239,7 @@ msgstr "Selecciona-ho Tot" #: Base.java:2636 msgid "Select a zip file or a folder containing the library you'd like to add" -msgstr "" +msgstr "Selecciona el l fitxer zip o el directori que conté la llibreria que vols afegir" #: Sketch.java:975 msgid "Select an image or other data file to copy to your sketch" @@ -1251,7 +1251,7 @@ msgstr "Seleccioneu una ubicació pel nou sketchbook" #: ../../../processing/app/debug/Compiler.java:146 msgid "Selected board depends on '{0}' core (not installed)." -msgstr "" +msgstr "Tarja seleccionada depenent del nucli '{0}' (no instal·lat)." #: SerialMonitor.java:93 msgid "Send" @@ -1299,7 +1299,7 @@ msgstr "Mostra la carpeta del Sketch" #: ../../../processing/app/EditorStatus.java:468 msgid "Show verbose output during compilation" -msgstr "" +msgstr "Mostra resultats detallats durant la compilació" #: Preferences.java:387 msgid "Show verbose output during: " @@ -1340,7 +1340,7 @@ msgstr "Sketch massa gran; visita http://www.arduino.cc/en/Guide/Troubleshooting msgid "" "Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} " "bytes." -msgstr "" +msgstr "Sketch fa servir {0} bytes ({2}%%) del espai de magatzament del programa. El màxim son {1} bytes." #: Editor.java:510 msgid "Sketchbook" @@ -1356,11 +1356,11 @@ msgstr "Ubicació del Sketchbook:" #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" -msgstr "" +msgstr "Sketches (*.ino, *.pde)" #: ../../../processing/app/Preferences.java:152 msgid "Slovenian" -msgstr "" +msgstr "Eslovè" #: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967 msgid "" @@ -1382,7 +1382,7 @@ msgstr "Ho sentim, un sketch (o carpeta) anomenat \"{0}\" ja existeix." #: Preferences.java:115 msgid "Spanish" -msgstr "" +msgstr "Espanyol" #: Base.java:540 msgid "Sunshine" @@ -1390,19 +1390,19 @@ msgstr "Sol." #: ../../../processing/app/Preferences.java:153 msgid "Swedish" -msgstr "" +msgstr "Suec" #: Preferences.java:84 msgid "System Default" -msgstr "" +msgstr "Per defecte del sistema" #: Preferences.java:116 msgid "Tamil" -msgstr "" +msgstr "Tàmil" #: debug/Compiler.java:414 msgid "The 'BYTE' keyword is no longer supported." -msgstr "" +msgstr "La descripció 'BYTE' ha deixat d'estar suportada." #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." @@ -1426,7 +1426,7 @@ msgid "" "The file \"{0}\" needs to be inside\n" "a sketch folder named \"{1}\".\n" "Create this folder, move the file, and continue?" -msgstr "" +msgstr "L'arxiu \"{0}\" ha de trobar-se dins\nla carpeta de l'sketch anomenat \"{1}\".\nCrear aquesta carpeta, moure l'arxiu, i continua?" #: Base.java:1054 Base.java:2674 #, java-format @@ -1496,7 +1496,7 @@ msgstr "" #: ../../../processing/app/EditorStatus.java:467 msgid "This report would have more information with" -msgstr "" +msgstr "Aquest informe podria tenir més informació amb" #: Base.java:535 msgid "Time for a Break" @@ -1512,36 +1512,36 @@ msgstr "Solució de problemes" #: ../../../processing/app/Preferences.java:117 msgid "Turkish" -msgstr "" +msgstr "Turc" #: ../../../processing/app/Editor.java:2507 msgid "Type board password to access its console" -msgstr "" +msgstr "Introduïu la contrasenya de la tarja per accedir a la seva consola" #: ../../../processing/app/Sketch.java:1673 msgid "Type board password to upload a new sketch" -msgstr "" +msgstr "Introduïu la contrasenya de la tarja per pujar el nou sketch" #: ../../../processing/app/Preferences.java:118 msgid "Ukrainian" -msgstr "" +msgstr "Ucraïnès" #: ../../../processing/app/Editor.java:2524 #: ../../../processing/app/NetworkMonitor.java:145 msgid "Unable to connect: is the sketch using the bridge?" -msgstr "" +msgstr "No es pot conectar: el sketch està fent servir una passarela?" #: ../../../processing/app/NetworkMonitor.java:130 msgid "Unable to connect: retrying" -msgstr "" +msgstr "No es pot connectar: reintentant" #: ../../../processing/app/Editor.java:2526 msgid "Unable to connect: wrong password?" -msgstr "" +msgstr "No es pot conectar: Contrasenya incorrecte?" #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" -msgstr "" +msgstr "No es pot obrir el monitor sèrie" #: Sketch.java:1432 #, java-format @@ -1581,7 +1581,7 @@ msgstr "Pujada cancel·lada." #: ../../../processing/app/Sketch.java:1678 msgid "Upload cancelled" -msgstr "" +msgstr "Pujada cancel•lada" #: Editor.java:2378 msgid "Uploading to I/O Board..." @@ -1602,12 +1602,12 @@ msgstr "Utilitza un editor extern" #: ../../../processing/app/debug/Compiler.java:94 #, java-format msgid "Using library {0} in folder: {1} {2}" -msgstr "" +msgstr "Utilitzant llibreria {0} en carpeta: {1}{2}" #: ../../../processing/app/debug/Compiler.java:320 #, java-format msgid "Using previously compiled file: {0}" -msgstr "" +msgstr "Usant l'arxiu prèviament compilat: {0}" #: EditorToolbar.java:41 EditorToolbar.java:46 msgid "Verify" @@ -1619,11 +1619,11 @@ msgstr "Verifica / Compila" #: Preferences.java:400 msgid "Verify code after upload" -msgstr "" +msgstr "Comproveu el codi després de pujar-lo" #: ../../../processing/app/Preferences.java:154 msgid "Vietnamese" -msgstr "" +msgstr "Vietnamita" #: Editor.java:1105 msgid "Visit Arduino.cc" @@ -1698,11 +1698,11 @@ msgstr "Has arribat al límit diari d'autonomenar nous esboços. I si anem a fer #: Base.java:2638 msgid "ZIP files or folders" -msgstr "" +msgstr "Fitxers ZIP o directoris" #: Base.java:2661 msgid "Zip doesn't contain a library" -msgstr "" +msgstr "ZIP no conté cap llibreria" #: Sketch.java:364 #, java-format @@ -1713,10 +1713,10 @@ msgstr "\".{0}\" no és una extensió vàlida." #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." -msgstr "\"{0}\" conté caràcters desconeguts. Si aquest codi va ser creat amb una versió antiga de Arduino, podria utilitzar el menú Eines > Arregla la codificació i recarrega per actualitzar el sketch per tal d’usar una codificació UTF-8. Si no, haurà de suprimir els caràcters incorrectes per desfer-se del avis." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." +msgstr "" #: debug/Compiler.java:409 msgid "" @@ -1732,7 +1732,7 @@ msgid "" "As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" "Please use Serial.write() instead.\n" "\n" -msgstr "" +msgstr "\nA partir de Arduino 1.0, la descripció 'BYTE' ja no està suportada.\nSi us plau en el seu lloc feu servir Serial.write()\n\n" #: debug/Compiler.java:427 msgid "" @@ -1753,21 +1753,21 @@ msgid "" "\n" "As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n" "\n" -msgstr "" +msgstr "\nA partir del l'Arduino 1.0, la classe Udp en la llibreria Ethernet ha estat reanomenada a EthernetUdp\n\n" #: debug/Compiler.java:445 msgid "" "\n" "As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n" "\n" -msgstr "" +msgstr "\nA partir del l'Arduino 1.0, la funció Wire.receive() ha estat reanomenada a Wire.read() per coherència amb altres llibreries.\n" #: debug/Compiler.java:439 msgid "" "\n" "As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n" "\n" -msgstr "" +msgstr "\nA partir del l'Arduino 1.0, la funció Wire.send() ha estat reanomenada a Wire.write() per coherència amb altres llibreries.\n\n" #: SerialMonitor.java:130 SerialMonitor.java:133 msgid "baud" @@ -1779,7 +1779,7 @@ msgstr "Compliació " #: ../../../processing/app/NetworkMonitor.java:111 msgid "connected!" -msgstr "" +msgstr "Connectat!" #: Sketch.java:540 msgid "createNewFile() returned false" @@ -1787,7 +1787,7 @@ msgstr "createNewFile() ha retornat false" #: ../../../processing/app/EditorStatus.java:469 msgid "enabled in File > Preferences." -msgstr "" +msgstr "Activat en Fitxer>Preferències." #: Base.java:2090 msgid "environment" @@ -1799,7 +1799,7 @@ msgstr "http://arduino.cc/" #: ../../../processing/app/debug/Compiler.java:49 msgid "http://github.com/arduino/Arduino/issues" -msgstr "" +msgstr "http://github.com/arduino/Arduino/issues" #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" @@ -1839,7 +1839,7 @@ msgstr "El buffer de bytes readBytesUntil() és massa petit pels {0} bytes fins #: Sketch.java:647 msgid "removeCode: internal error.. could not find code" -msgstr "" +msgstr "eliminaCodi: error intern.. no es pot trobar el codi" #: Editor.java:932 msgid "serialMenu is null" @@ -1868,7 +1868,7 @@ msgstr "{0} ha retornat {1}" #: Editor.java:2213 #, java-format msgid "{0} | Arduino {1}" -msgstr "" +msgstr "{0} | Arduino {1}" #: Editor.java:1874 #, java-format diff --git a/arduino-core/src/processing/app/i18n/Resources_ca.properties b/arduino-core/src/processing/app/i18n/Resources_ca.properties index c435b2846..85fde94fc 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ca.properties +++ b/arduino-core/src/processing/app/i18n/Resources_ca.properties @@ -4,19 +4,19 @@ # David A. Mellis <>, 2012. # Translation to Catalan by Albert Segura # -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Catalan (http\://www.transifex.com/projects/p/arduino-ide-15/language/ca/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ca\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Catalan (http\://www.transifex.com/projects/p/arduino-ide-15/language/ca/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ca\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 -!\ \ (requires\ restart\ of\ Arduino)= +\ \ (requires\ restart\ of\ Arduino)=(es necessari reiniciar l'Arduino) #: debug/Compiler.java:455 -!'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo= +'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard' nom\u00e9s suportat en el Arduino Leonardo #: debug/Compiler.java:450 -!'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo= +'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' nom\u00e9s suportat en el Arduino Leonardo #: Preferences.java:478 -!(edit\ only\ when\ Arduino\ is\ not\ running)= +(edit\ only\ when\ Arduino\ is\ not\ running)=(nom\u00e9s editar quan l'Arduino no estigui funcionant) #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -25,7 +25,7 @@ \ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

    Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= Est\u00e0s segur que vols tancar?

    Tancant esbo\u00e7 d'Arduino. #: Editor.java:2053 -!\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Do\ you\ want\ to\ save\ changes\ to\ this\ sketch
    \ before\ closing?

    If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Do\ you\ want\ to\ save\ changes\ to\ this\ sketch
    \ before\ closing?

    If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= Vols des\u00e0 els canvis en aquest sketck
    abans de tancar?

    Si no es desen, els canvis es perdran. #: Sketch.java:398 #, java-format @@ -37,13 +37,13 @@ A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=La carpeta anome #: Base.java:2690 #, java-format -!A\ library\ named\ {0}\ already\ exists= +A\ library\ named\ {0}\ already\ exists=La llibreria anomenada {0} ja existeix #: UpdateCheck.java:103 -!A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?= +A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Una nova versi\u00f3 de l'Arduino es troba disponible,\nvols visitar la p\u00e0gina de baixades de l'Arduino? #: EditorConsole.java:153 -!A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.= +A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=S'ha produ\u00eft un problema en intentar obrir els\narxius utilitzats per emmagatzemar la consola de sortida. #: Editor.java:1116 About\ Arduino=Quant a Arduino @@ -61,10 +61,10 @@ An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ atte An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Un error desconegut ha succe\u00eft mentre es provava de carregar\ncodi especific de la plataforma per la seva maquina. #: Preferences.java:85 -!Arabic= +Arabic=\u00c0rab #: Preferences.java:86 -!Aragonese= +Aragonese=Aragon\u00e8s #: tools/Archiver.java:48 Archive\ Sketch=Arxiva Sketch @@ -76,13 +76,16 @@ Archive\ sketch\ as\:=Arxiva sketch com\: Archive\ sketch\ canceled.=Arxivat del sketch cancel\u00b7lat. #: tools/Archiver.java:75 -!Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.= +Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=L'arxivament del sketch ha estat cancelat per qu\u00e8\nel sketch no s\u00b4ha pogut desar adequadament. #: ../../../processing/app/I18n.java:83 -!Arduino\ ARM\ (32-bits)\ Boards= +Arduino\ ARM\ (32-bits)\ Boards=Targes Arduino ARM (32-bits) #: ../../../processing/app/I18n.java:82 -!Arduino\ AVR\ Boards= +Arduino\ AVR\ Boards=Targes Arduino AVR + +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino no pot funcionar perqu\u00e8 no pot\ncrear una carpeta per desar les prefer\u00e8ncies. @@ -94,7 +97,7 @@ Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ you Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino requereix una completa JDK\nper funcionar (nom\u00e9s JRE no \u00e9s suficient). Si us plau instal\u00b7la JDK 1.5 o posterior.\nM\u00e9s informaci\u00f3 pot ser trobada a la refer\u00e8ncia. #: ../../../processing/app/EditorStatus.java:471 -!Arduino\:\ = +Arduino\:\ =Arduino\: #: Sketch.java:588 #, java-format @@ -104,10 +107,10 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Esteu segur que voleu suprimir "{0 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Segur que voleu suprimir aquest sketch? #: ../../../processing/app/Preferences.java:137 -!Armenian= +Armenian=Armeni #: ../../../processing/app/Preferences.java:138 -!Asturian= +Asturian=Asturi\u00e0 #: tools/AutoFormat.java:91 Auto\ Format=Format autom\u00e0tic @@ -128,49 +131,49 @@ Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=Format autom\u00e0tic c Auto\ Format\ finished.=Format autom\u00e0tic finalitzat. #: Preferences.java:439 -!Automatically\ associate\ .ino\ files\ with\ Arduino= +Automatically\ associate\ .ino\ files\ with\ Arduino=Associaci\u00f3 autom\u00e0tica fitxers .ino amb Arduino #: SerialMonitor.java:110 Autoscroll=Despla\u00e7ament autom\u00e0tic #: Editor.java:2619 #, java-format -!Bad\ error\ line\:\ {0}= +Bad\ error\ line\:\ {0}=Error en la l\u00ednia\: {0} #: Editor.java:2136 Bad\ file\ selected=Fitxer seleccionat incorrecte #: ../../../processing/app/Preferences.java:139 -!Belarusian= +Belarusian=Bielor\u00fas #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 -!Board= +Board=Tarja #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format -!Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= +Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=Tarja {0}\:{1}\:{2} no defineix la prefer\u00e8ncia del ''build.board''. Auto-seleccionat per\: {3} #: ../../../processing/app/EditorStatus.java:472 -!Board\:\ = +Board\:\ =Tarja\: #: ../../../processing/app/Preferences.java:140 -!Bosnian= +Bosnian=Bosni #: SerialMonitor.java:112 Both\ NL\ &\ CR=Ambd\u00f3s NL & CR #: Preferences.java:81 -!Browse= +Browse=Navegar #: Sketch.java:1392 Sketch.java:1423 -!Build\ folder\ disappeared\ or\ could\ not\ be\ written= +Build\ folder\ disappeared\ or\ could\ not\ be\ written=Directori de compilaci\u00f3 desaparegut o no si pot escriure #: ../../../processing/app/Preferences.java:80 -!Bulgarian= +Bulgarian=B\u00falgar #: ../../../processing/app/Preferences.java:141 -!Burmese\ (Myanmar)= +Burmese\ (Myanmar)=Birm\u00e0 (Birm\u00e0nia) #: Editor.java:708 Burn\ Bootloader=Carrega Bootloader @@ -182,7 +185,7 @@ Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=La carrega !Can't\ open\ source\ sketch\!= #: ../../../processing/app/Preferences.java:92 -!Canadian\ French= +Canadian\ French=Franc\u00e8s Canadenc #: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2064 Editor.java:2145 Editor.java:2465 @@ -195,28 +198,28 @@ Cannot\ Rename=No es pot reanomenar Carriage\ return=Retorn de carro #: Preferences.java:87 -!Catalan= +Catalan=Catal\u00e0 #: Preferences.java:419 Check\ for\ updates\ on\ startup=Comprova actualitzacions al iniciar #: ../../../processing/app/Preferences.java:142 -!Chinese\ (China)= +Chinese\ (China)=Xin\u00e8s (Xina) #: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= +Chinese\ (Hong\ Kong)=Xin\u00e8s (Hong Kong) #: ../../../processing/app/Preferences.java:144 -!Chinese\ (Taiwan)= +Chinese\ (Taiwan)=Xin\u00e8s (Taiwan) #: ../../../processing/app/Preferences.java:143 -!Chinese\ (Taiwan)\ (Big5)= +Chinese\ (Taiwan)\ (Big5)=Xin\u00e8s (Taiwan) (Big5) #: Preferences.java:88 -!Chinese\ Simplified= +Chinese\ Simplified=Xin\u00e8s simplificat #: Preferences.java:89 -!Chinese\ Traditional= +Chinese\ Traditional=Xin\u00e8s tradicional #: Editor.java:521 Editor.java:2024 Close=Tanca @@ -241,67 +244,67 @@ Copy=Copia Copy\ as\ HTML=Copia com HTML #: ../../../processing/app/EditorStatus.java:455 -!Copy\ error\ messages= +Copy\ error\ messages=Copia missatges d'error #: Editor.java:1165 Editor.java:2715 Copy\ for\ Forum=Copia pel Forum #: Sketch.java:1089 #, java-format -!Could\ not\ add\ ''{0}''\ to\ the\ sketch.= +Could\ not\ add\ ''{0}''\ to\ the\ sketch.=No es pot afegir "{0}" al skecth. #: Editor.java:2188 -!Could\ not\ copy\ to\ a\ proper\ location.= +Could\ not\ copy\ to\ a\ proper\ location.=No s'ha pogut copiar en una ubicaci\u00f3 adequada. #: Editor.java:2179 -!Could\ not\ create\ the\ sketch\ folder.= +Could\ not\ create\ the\ sketch\ folder.=No s'ha pogut crear el directori del sketch. #: Editor.java:2206 -!Could\ not\ create\ the\ sketch.= +Could\ not\ create\ the\ sketch.=No s'ha pogut crear el sketch. #: Sketch.java:617 #, java-format -!Could\ not\ delete\ "{0}".= +Could\ not\ delete\ "{0}".=No es pot esborrar "{0}". #: Sketch.java:1066 #, java-format -!Could\ not\ delete\ the\ existing\ ''{0}''\ file.= +Could\ not\ delete\ the\ existing\ ''{0}''\ file.=No es pot esborrar el fitxer "{0}" existent. #: Base.java:2533 Base.java:2556 #, java-format -!Could\ not\ delete\ {0}= +Could\ not\ delete\ {0}=No es pot esborrar {0} #: ../../../processing/app/debug/TargetPlatform.java:74 #, java-format -!Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?= +Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?=No s'ha pogut trobar boards.txt a {0}. \u00c9s anterior a -1.5? #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 #, java-format -!Could\ not\ find\ tool\ {0}= +Could\ not\ find\ tool\ {0}=No es pot trobar l'eina {0} #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 #, java-format -!Could\ not\ find\ tool\ {0}\ from\ package\ {1}= +Could\ not\ find\ tool\ {0}\ from\ package\ {1}=No es pot trobar l'eina {0} del paquet {1} #: Base.java:1934 #, java-format -!Could\ not\ open\ the\ URL\n{0}= +Could\ not\ open\ the\ URL\n{0}=No es pot obrir el URL\n{0} #: Base.java:1958 #, java-format -!Could\ not\ open\ the\ folder\n{0}= +Could\ not\ open\ the\ folder\n{0}=No es pot obrir el directori\n{0} #: Sketch.java:1769 -!Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.= +Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=No es pot tornar a desar correctament l'sketch. En aquest punt pots tenir un problema,\ni poder ha arribat el moment de copiar i enganxar el teu codi en un altre editor de text. #: Sketch.java:1768 -!Could\ not\ re-save\ sketch= +Could\ not\ re-save\ sketch=No es pot tornar a desar l'sketch #: Theme.java:52 !Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= #: Preferences.java:219 -!Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= +Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=No es poden llegir les prefer\u00e8ncies inicials.\nNecessites tornar a instal\u00b7lar Arduino. #: Preferences.java:258 #, java-format @@ -309,7 +312,7 @@ Copy\ for\ Forum=Copia pel Forum #: Base.java:2482 #, java-format -!Could\ not\ remove\ old\ version\ of\ {0}= +Could\ not\ remove\ old\ version\ of\ {0}=No es pot esborrar l'anterior versi\u00f3 de {0} #: Sketch.java:483 Sketch.java:528 #, java-format @@ -326,31 +329,31 @@ Could\ not\ rename\ the\ sketch.\ (2)=No es pot reanomenar el sketch. (2) #: Base.java:2492 #, java-format -!Could\ not\ replace\ {0}= +Could\ not\ replace\ {0}=No es pot substituir {0} #: tools/Archiver.java:74 -!Couldn't\ archive\ sketch= +Couldn't\ archive\ sketch=No s\u00b4ha pogut arxivar el sketch #: Sketch.java:1647 Couldn't\ determine\ program\ size\:\ {0}=No es va poder determinar la mida del programa\: {0} #: Sketch.java:616 -!Couldn't\ do\ it= +Couldn't\ do\ it=No podria fer-ho #: debug/BasicUploader.java:209 -!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.= +Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=No es pot trobar la Tarja en el port seleccionat. Verifica que tens el port correctament seleccionat. Si es correcte, intenta pressionar el polsador de reset de la Tarja despr\u00e9s d'inicialitzar la pujada. #: ../../../processing/app/Preferences.java:82 -!Croatian= +Croatian=Croat #: Editor.java:1149 Editor.java:2699 Cut=Retalla #: ../../../processing/app/Preferences.java:83 -!Czech= +Czech=Txec #: Preferences.java:90 -!Danish= +Danish=Dan\u00e8s #: Editor.java:1224 Editor.java:2765 Decrease\ Indent=Disminuir el sagnat @@ -365,7 +368,7 @@ Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ Discard\ all\ changes\ and\ reload\ sketch?=Desfer tots els canvis i recarregar el sketch? #: ../../../processing/app/Preferences.java:438 -!Display\ line\ numbers= +Display\ line\ numbers=Mostra n\u00fameros de l\u00ednia. #: Editor.java:2064 Don't\ Save=No deseu @@ -386,10 +389,10 @@ Done\ printing.=Impressi\u00f3 finalitzada. Done\ uploading.=Pujada enllestida. #: Preferences.java:91 -!Dutch= +Dutch=Holand\u00e8s #: ../../../processing/app/Preferences.java:144 -!Dutch\ (Netherlands)= +Dutch\ (Netherlands)=Holand\u00e8s (Pa\u00efsos Baixos) #: Editor.java:1130 Edit=Edita @@ -398,13 +401,13 @@ Edit=Edita Editor\ font\ size\:\ =Mides del fonts del editor\: #: Preferences.java:353 -!Editor\ language\:\ = +Editor\ language\:\ =Editor d'idioma\: #: Preferences.java:92 -!English= +English=Angl\u00e8s #: ../../../processing/app/Preferences.java:145 -!English\ (United\ Kingdom)= +English\ (United\ Kingdom)=Angl\u00e8s (Regne Unit) #: Editor.java:1062 Environment=Entorn @@ -428,13 +431,13 @@ Error\ getting\ the\ Arduino\ data\ folder.=Error obtenint la carpeta data d'Ard Error\ inside\ Serial.{0}()=Error a dins del Serial.{0}() #: ../../../processing/app/Base.java:1232 -!Error\ loading\ libraries= +Error\ loading\ libraries=Error en carregar les llibreries #: ../../../processing/app/debug/TargetPlatform.java:95 #: ../../../processing/app/debug/TargetPlatform.java:106 #: ../../../processing/app/debug/TargetPlatform.java:117 #, java-format -!Error\ loading\ {0}= +Error\ loading\ {0}=Error en carregar {0} #: Serial.java:181 #, java-format @@ -458,30 +461,30 @@ Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ r Error\ while\ burning\ bootloader.=Error al carrega el bootloader. #: ../../../processing/app/Editor.java:2555 -!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=Error durant l\u2019enregistrament del bootloader\: no es troba el par\u00e0metre de configuraci\u00f3 {0} #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=Error durant la carrega de codi {0} #: Editor.java:2567 -!Error\ while\ printing.= +Error\ while\ printing.=Error durant la impressi\u00f3. #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 -!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= +Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=Error durant la pujada\: no es troba el par\u00e0metre de configuraci\u00f3 {0} #: Preferences.java:93 -!Estonian= +Estonian=Estoni\u00e0 #: ../../../processing/app/Preferences.java:146 -!Estonian\ (Estonia)= +Estonian\ (Estonia)=Est\u00f2nia (Est\u00f2nia) #: Editor.java:516 Examples=Exemples #: Editor.java:2482 -!Export\ canceled,\ changes\ must\ first\ be\ saved.= +Export\ canceled,\ changes\ must\ first\ be\ saved.=Exportaci\u00f3 cancelada, els canvis primer han de desar-se. #: Base.java:2100 FAQ.html=FAQ.html @@ -490,7 +493,7 @@ FAQ.html=FAQ.html File=Fitxer #: Preferences.java:94 -!Filipino= +Filipino=Filip\u00ed #: FindReplace.java:124 FindReplace.java:127 Find=Cerca @@ -511,46 +514,46 @@ Find...=Cerca... Find\:=Cerca\: #: ../../../processing/app/Preferences.java:147 -!Finnish= +Finnish=Fin\u00e8s #: tools/FixEncoding.java:41 tools/FixEncoding.java:58 #: tools/FixEncoding.java:79 Fix\ Encoding\ &\ Reload=Arregla la codificaci\u00f3 i recarrega #: Base.java:1851 -!For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n= +For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=Per obtenir informaci\u00f3 de com instal\u00b7lar llibreries, ves a\: http\://arduino.cc/en/Guide/Libraries\n #: debug/BasicUploader.java:80 -!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ = +Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =For\u00e7ant el reinici obrint/tancat el port a 1200bps #: Preferences.java:95 -!French= +French=Franc\u00e8s #: Editor.java:1097 Frequently\ Asked\ Questions=Preguntes M\u00e9s Freq\u00fcents #: Preferences.java:96 -!Galician= +Galician=Gallec #: ../../../processing/app/Preferences.java:94 -!Georgian= +Georgian=Georgi\u00e0 #: Preferences.java:97 -!German= +German=Alemany #: Editor.java:1054 Getting\ Started=Primers passos #: ../../../processing/app/Sketch.java:1646 #, java-format -!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.= +Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=Les variables globals fan servir {0} bytes ({2}%%) bytes de mem\u00f2ria din\u00e0mica, deixant {3} bytes per variables locals. M\u00e0xima \u00e9s de {1} bytes. #: ../../../processing/app/Sketch.java:1651 #, java-format -!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.= +Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=Les variables globlals fan servir {0} bytes de mem\u00f2ria din\u00e0mica. #: Preferences.java:98 -!Greek= +Greek=Grec #: Base.java:2085 Guide_Environment.html=Guide_Environment.html @@ -565,13 +568,13 @@ Guide_Troubleshooting.html=Guide_Troubleshooting.html Guide_Windows.html=Guide_Windows.html #: ../../../processing/app/Preferences.java:95 -!Hebrew= +Hebrew=Hebreu #: Editor.java:1015 Help=Ajuda #: Preferences.java:99 -!Hindi= +Hindi=Hindi #: Sketch.java:295 How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Per qu\u00e8 no prova de desar el sketch primer \nabans de provar de renombrar-lo? @@ -580,7 +583,7 @@ How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Per qu How\ very\ Borges\ of\ you=Que tant Borges de part teva #: Preferences.java:100 -!Hungarian= +Hungarian=Hongar\u00e8s #: FindReplace.java:96 Ignore\ Case=Ignora difer\u00e8ncies entre maj\u00fascules i min\u00fascules @@ -595,47 +598,47 @@ Ignoring\ sketch\ with\ bad\ name=Ignorant el sketch amb un nom incorrecte Import\ Library...=Importa biblioteca... #: ../../../processing/app/Sketch.java:736 -!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?= +In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=En Arduino 1.0, l'extensi\u00f3 per defecte del fitxer ha canviat\nde .pde a .ino. Els nous sketchs (incloent tots els creats amb\nla opci\u00f3 "Desar com") faran servir la nova extensi\u00f3. L'extensi\u00f3\ndels sketch existents s\u2019actualitzaran quan es dessin, per\u00f2 pots\ndesactivar-ho en el di\u00e0leg de Prefer\u00e8ncies.\n\nDesa sketch i actualitza l'extensi\u00f3? #: Editor.java:1216 Editor.java:2757 Increase\ Indent=Augmenta el sagnat #: Preferences.java:101 -!Indonesian= +Indonesian=Indonesi #: ../../../processing/app/Base.java:1204 #, java-format -!Invalid\ library\ found\ in\ {0}\:\ {1}= +Invalid\ library\ found\ in\ {0}\:\ {1}=Llibreria invalida trobada en {0}\: {1} #: Preferences.java:102 -!Italian= +Italian=Itali\u00e0 #: Preferences.java:103 -!Japanese= +Japanese=Japon\u00e8s #: Preferences.java:104 -!Korean= +Korean=Core\u00e0 #: Preferences.java:105 -!Latvian= +Latvian=Let\u00f3 #: Base.java:2699 -!Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu= +Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Llibreria afegida a les teves llibreries. Verifica el men\u00fa "Importar llibreria" #: Preferences.java:106 -!Lithuaninan= +Lithuaninan=Litu\u00e0 #: ../../../processing/app/Sketch.java:1660 -!Low\ memory\ available,\ stability\ problems\ may\ occur= +Low\ memory\ available,\ stability\ problems\ may\ occur=Es disposa de poca mem\u00f2ria, es poden produir problemes d'estabilitat #: Preferences.java:107 -!Marathi= +Marathi=Marathi #: Base.java:2112 Message=Missatge #: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=No es troba el */ del final del /* comentari */ #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Es poden editar m\u00e9s prefer\u00e8ncies directament en el fitxer @@ -647,10 +650,10 @@ More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Es poden editar m\u0 Name\ for\ new\ file\:=Escolliu un nom per un nou fitxer\: #: ../../../processing/app/Preferences.java:149 -!Nepali= +Nepali=Nepali #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 -!Network\ upload\ using\ programmer\ not\ supported= +Network\ upload\ using\ programmer\ not\ supported=Xarxa pujada fent servir programador no soportat #: EditorToolbar.java:41 Editor.java:493 New=Nou @@ -677,7 +680,7 @@ No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu No\ changes\ necessary\ for\ Auto\ Format.=Cap canvi necessari pel format autom\u00e0tic. #: Editor.java:373 -!No\ files\ were\ added\ to\ the\ sketch.= +No\ files\ were\ added\ to\ the\ sketch.=No hi ha arxius afegits a l'sketch. #: Platform.java:167 No\ launcher\ available=No hi ha llan\u00e7ador disponible @@ -690,14 +693,14 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Hora d'aire fresc, seriosame #: Editor.java:1872 #, java-format -!No\ reference\ available\ for\ "{0}"= +No\ reference\ available\ for\ "{0}"=Cap refer\u00e8ncia disponible per "{0}" #: ../../../processing/app/Base.java:309 -!No\ valid\ configured\ cores\ found\!\ Exiting...= +No\ valid\ configured\ cores\ found\!\ Exiting...=No s\u00b4han trobat nuclis v\u00e0lids configurats\! Sortin... #: ../../../processing/app/debug/TargetPackage.java:63 #, java-format -!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.= +No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=La definici\u00f3 de hardware trobat en el directori {0} no es v\u00e0lid. #: Base.java:191 Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Error no fatal mentre s'establien les prefer\u00e8ncies de l'aparen\u00e7a. @@ -706,17 +709,17 @@ Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Error no fatal mentre s'es Nope=Nop #: ../../../processing/app/Preferences.java:108 -!Norwegian\ Bokm\u00e5l= +Norwegian\ Bokm\u00e5l=Noruec Bokm\u00e2l #: ../../../processing/app/Sketch.java:1656 -!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.= +Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=Mem\u00f2ria insuficient; ves a http\://www.arduino.cc/en/Guide/Troubleshooting\#size pels consells de com reduir-ne la mida. #: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2145 Editor.java:2465 -!OK= +OK=D'acord #: Sketch.java:992 Editor.java:376 -!One\ file\ added\ to\ the\ sketch.= +One\ file\ added\ to\ the\ sketch.=Un fitxer afegit al sketch. #: EditorToolbar.java:41 Open=Obrir @@ -737,13 +740,13 @@ Open...=Obrir... Page\ Setup=Configuraci\u00f3 de la p\u00e0gina #: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 -!Password\:= +Password\:=Contrasenya\: #: Editor.java:1189 Editor.java:2731 Paste=Enganxa #: Preferences.java:109 -!Persian= +Persian=Persa #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Si us plau importeu la llibreria SPI del men\u00fa Sketch > Importa biblioteca. @@ -752,19 +755,19 @@ Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= Please\ install\ JDK\ 1.5\ or\ later=Si us plau instal\u00b7la JDK 1.5 o posterior. #: Preferences.java:110 -!Polish= +Polish=Polon\u00e8s #: ../../../processing/app/Editor.java:718 -!Port= +Port=Port #: ../../../processing/app/Preferences.java:151 -!Portugese= +Portugese=Portugu\u00e8s #: ../../../processing/app/Preferences.java:127 -!Portuguese\ (Brazil)= +Portuguese\ (Brazil)=Portugu\u00e8s (Brasil) #: ../../../processing/app/Preferences.java:128 -!Portuguese\ (Portugal)= +Portuguese\ (Portugal)=Portugu\u00e8s (Portugal) #: Preferences.java:295 Editor.java:583 Preferences=Prefer\u00e8ncies @@ -782,7 +785,7 @@ Print=Sortir Printing\ canceled.=Impressi\u00f3 cancel\u00b7lada. #: Editor.java:2547 -!Printing...= +Printing...=Imprimint... #: Base.java:1957 Problem\ Opening\ Folder=Problema obrint la carpeta @@ -794,10 +797,10 @@ Problem\ Opening\ URL=Problema obrint la URL Problem\ Setting\ the\ Platform=Problema adjustant la plataforma. #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 -!Problem\ accessing\ board\ folder\ /www/sd= +Problem\ accessing\ board\ folder\ /www/sd=Problema accedint a la carpeta de la tarja /www/sd #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 -!Problem\ accessing\ files\ in\ folder\ = +Problem\ accessing\ files\ in\ folder\ =Problema accedint als arxius de la carpeta #: Base.java:1673 Problem\ getting\ data\ folder=Problema obtenint la carpeta de data @@ -810,13 +813,10 @@ Problem\ moving\ {0}\ to\ the\ build\ folder=Problemes movent {0} a la carpeta d Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Problema pujant a la placa. Visita per http\://www.arduino.cc/en/Guide/Troubleshooting\#upload suggeriments. #: Sketch.java:355 Sketch.java:362 Sketch.java:373 -!Problem\ with\ rename= - -#: Editor.java:2137 -Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Arduino nom\u00e9s pot obrir els seus propis sketches\ni altres fitxers acabats en .ino o .pde +Problem\ with\ rename=Problema amb el canvi de nom #: ../../../processing/app/I18n.java:86 -!Processor= +Processor=Processador #: Editor.java:704 Programmer=Programador @@ -850,10 +850,10 @@ Replace\ the\ existing\ version\ of\ {0}?=Reempla\u00e7a la versi\u00f3 existent Replace\ with\:=Substituir amb\: #: Preferences.java:113 -!Romanian= +Romanian=Roman\u00e8s #: Preferences.java:114 -!Russian= +Russian=Rus #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529 #: Editor.java:2064 Editor.java:2468 @@ -866,7 +866,7 @@ Save\ As...=Anomena i desa... Save\ Canceled.=Guardat cancel\u00b7lat. #: Editor.java:2467 -!Save\ changes\ before\ export?= +Save\ changes\ before\ export?=Desa canvis abans d'exporta? #: Editor.java:2020 #, java-format @@ -876,7 +876,7 @@ Save\ changes\ to\ "{0}"?\ \ =Desar els canvis a "{0}"? Save\ sketch\ folder\ as...=Anomena i desa la carpeta de sketch... #: Editor.java:2270 Editor.java:2308 -!Saving...= +Saving...=Desant... #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=Seleccioni (o cre\u00ef) una carpeta pels sketches... @@ -885,7 +885,7 @@ Select\ (or\ create\ new)\ folder\ for\ sketches...=Seleccioni (o cre\u00ef) una Select\ All=Selecciona-ho Tot #: Base.java:2636 -!Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add= +Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=Selecciona el l fitxer zip o el directori que cont\u00e9 la llibreria que vols afegir #: Sketch.java:975 Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Seleccioni una imatge o un altre fitxer da dades per copiar el seu sketch @@ -894,7 +894,7 @@ Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Seleccioni Select\ new\ sketchbook\ location=Seleccioneu una ubicaci\u00f3 pel nou sketchbook #: ../../../processing/app/debug/Compiler.java:146 -!Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).= +Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=Tarja seleccionada depenent del nucli '{0}' (no instal\u00b7lat). #: SerialMonitor.java:93 Send=Envia @@ -925,7 +925,7 @@ Settings\ issues=Errors en les prefer\u00e8ncies Show\ Sketch\ Folder=Mostra la carpeta del Sketch #: ../../../processing/app/EditorStatus.java:468 -!Show\ verbose\ output\ during\ compilation= +Show\ verbose\ output\ during\ compilation=Mostra resultats detallats durant la compilaci\u00f3 #: Preferences.java:387 Show\ verbose\ output\ during\:\ =Mostra la sortida detallada durant\: @@ -953,7 +953,7 @@ Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ f #: ../../../processing/app/Sketch.java:1639 #, java-format -!Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.= +Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.=Sketch fa servir {0} bytes ({2}%%) del espai de magatzament del programa. El m\u00e0xim son {1} bytes. #: Editor.java:510 Sketchbook=Sketchbook @@ -965,10 +965,10 @@ Sketchbook\ folder\ disappeared=El directori Sketchbook ha desaparegut. Sketchbook\ location\:=Ubicaci\u00f3 del Sketchbook\: #: ../../../processing/app/Base.java:785 -!Sketches\ (*.ino,\ *.pde)= +Sketches\ (*.ino,\ *.pde)=Sketches (*.ino, *.pde) #: ../../../processing/app/Preferences.java:152 -!Slovenian= +Slovenian=Eslov\u00e8 #: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967 Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Alguns fitxers estan marcats com a "read-only", per tant haur\u00e0\nde desar de nou el sketch en una altre localitzaci\u00f3,\ni tornar-ho a provar. @@ -981,22 +981,22 @@ Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ ske Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Ho sentim, un sketch (o carpeta) anomenat "{0}" ja existeix. #: Preferences.java:115 -!Spanish= +Spanish=Espanyol #: Base.java:540 Sunshine=Sol. #: ../../../processing/app/Preferences.java:153 -!Swedish= +Swedish=Suec #: Preferences.java:84 -!System\ Default= +System\ Default=Per defecte del sistema #: Preferences.java:116 -!Tamil= +Tamil=T\u00e0mil #: debug/Compiler.java:414 -!The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.= +The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=La descripci\u00f3 'BYTE' ha deixat d'estar suportada. #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=La classe Client ha estat reanomenat a EthernetClient. @@ -1012,7 +1012,7 @@ The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=El missatge #: Editor.java:2147 #, java-format -!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?= +The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=L'arxiu "{0}" ha de trobar-se dins\nla carpeta de l'sketch anomenat "{1}".\nCrear aquesta carpeta, moure l'arxiu, i continua? #: Base.java:1054 Base.java:2674 #, java-format @@ -1044,7 +1044,7 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de !This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= #: ../../../processing/app/EditorStatus.java:467 -!This\ report\ would\ have\ more\ information\ with= +This\ report\ would\ have\ more\ information\ with=Aquest informe podria tenir m\u00e9s informaci\u00f3 amb #: Base.java:535 Time\ for\ a\ Break=Hora de descansar. @@ -1056,29 +1056,29 @@ Tools=Eines Troubleshooting=Soluci\u00f3 de problemes #: ../../../processing/app/Preferences.java:117 -!Turkish= +Turkish=Turc #: ../../../processing/app/Editor.java:2507 -!Type\ board\ password\ to\ access\ its\ console= +Type\ board\ password\ to\ access\ its\ console=Introdu\u00efu la contrasenya de la tarja per accedir a la seva consola #: ../../../processing/app/Sketch.java:1673 -!Type\ board\ password\ to\ upload\ a\ new\ sketch= +Type\ board\ password\ to\ upload\ a\ new\ sketch=Introdu\u00efu la contrasenya de la tarja per pujar el nou sketch #: ../../../processing/app/Preferences.java:118 -!Ukrainian= +Ukrainian=Ucra\u00efn\u00e8s #: ../../../processing/app/Editor.java:2524 #: ../../../processing/app/NetworkMonitor.java:145 -!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?= +Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=No es pot conectar\: el sketch est\u00e0 fent servir una passarela? #: ../../../processing/app/NetworkMonitor.java:130 -!Unable\ to\ connect\:\ retrying= +Unable\ to\ connect\:\ retrying=No es pot connectar\: reintentant #: ../../../processing/app/Editor.java:2526 -!Unable\ to\ connect\:\ wrong\ password?= +Unable\ to\ connect\:\ wrong\ password?=No es pot conectar\: Contrasenya incorrecte? #: ../../../processing/app/Editor.java:2512 -!Unable\ to\ open\ serial\ monitor= +Unable\ to\ open\ serial\ monitor=No es pot obrir el monitor s\u00e8rie #: Sketch.java:1432 #, java-format @@ -1106,7 +1106,7 @@ Upload\ Using\ Programmer=Carregar utilitzant un Programador Upload\ canceled.=Pujada cancel\u00b7lada. #: ../../../processing/app/Sketch.java:1678 -!Upload\ cancelled= +Upload\ cancelled=Pujada cancel\u2022lada #: Editor.java:2378 Uploading\ to\ I/O\ Board...=Pujant a la I/O de la Placa... @@ -1122,11 +1122,11 @@ Use\ external\ editor=Utilitza un editor extern #: ../../../processing/app/debug/Compiler.java:94 #, java-format -!Using\ library\ {0}\ in\ folder\:\ {1}\ {2}= +Using\ library\ {0}\ in\ folder\:\ {1}\ {2}=Utilitzant llibreria {0} en carpeta\: {1}{2} #: ../../../processing/app/debug/Compiler.java:320 #, java-format -!Using\ previously\ compiled\ file\:\ {0}= +Using\ previously\ compiled\ file\:\ {0}=Usant l'arxiu pr\u00e8viament compilat\: {0} #: EditorToolbar.java:41 EditorToolbar.java:46 Verify=Verifiqueu @@ -1135,10 +1135,10 @@ Verify=Verifiqueu Verify\ /\ Compile=Verifica / Compila #: Preferences.java:400 -!Verify\ code\ after\ upload= +Verify\ code\ after\ upload=Comproveu el codi despr\u00e9s de pujar-lo #: ../../../processing/app/Preferences.java:154 -!Vietnamese= +Vietnamese=Vietnamita #: Editor.java:1105 Visit\ Arduino.cc=Visita Arduino.cc @@ -1186,10 +1186,10 @@ You\ forgot\ your\ sketchbook=Ha oblidat el seu sketchbook You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Has arribat al l\u00edmit diari d'autonomenar nous esbo\u00e7os. I si anem a fer un tomb? #: Base.java:2638 -!ZIP\ files\ or\ folders= +ZIP\ files\ or\ folders=Fitxers ZIP o directoris #: Base.java:2661 -!Zip\ doesn't\ contain\ a\ library= +Zip\ doesn't\ contain\ a\ library=ZIP no cont\u00e9 cap llibreria #: Sketch.java:364 #, java-format @@ -1197,13 +1197,13 @@ You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day #: SketchCode.java:258 #, java-format -"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" cont\u00e9 car\u00e0cters desconeguts. Si aquest codi va ser creat amb una versi\u00f3 antiga de Arduino, podria utilitzar el men\u00fa Eines > Arregla la codificaci\u00f3 i recarrega per actualitzar el sketch per tal d\u2019usar una codificaci\u00f3 UTF-8. Si no, haur\u00e0 de suprimir els car\u00e0cters incorrectes per desfer-se del avis. +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 \nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nA partir de Arduino 0019, la llibreria Ethernet dep\u00e8n de la llibreria SPI.\nSembla que l'esta utilitzant o ho fa una altre llibreria que dep\u00e8n de la llibreria SPI.\n\n #: debug/Compiler.java:415 -!\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n= +\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nA partir de Arduino 1.0, la descripci\u00f3 'BYTE' ja no est\u00e0 suportada.\nSi us plau en el seu lloc feu servir Serial.write()\n\n #: debug/Compiler.java:427 \nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nA partir de Arduino 1.0, la classe Client de la llibreria Ethernet ha estat reanomenada a EthernetClient.\n\n @@ -1212,13 +1212,13 @@ You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day \nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nA partir de Arduino 1.0, la classe Server de la llibreria Ethernet ha estat reanomenada a EthernetServer.\n\n #: debug/Compiler.java:433 -!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n= +\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=\nA partir del l'Arduino 1.0, la classe Udp en la llibreria Ethernet ha estat reanomenada a EthernetUdp\n\n #: debug/Compiler.java:445 -!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n= +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nA partir del l'Arduino 1.0, la funci\u00f3 Wire.receive() ha estat reanomenada a Wire.read() per coher\u00e8ncia amb altres llibreries.\n #: debug/Compiler.java:439 -!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n= +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nA partir del l'Arduino 1.0, la funci\u00f3 Wire.send() ha estat reanomenada a Wire.write() per coher\u00e8ncia amb altres llibreries.\n\n #: SerialMonitor.java:130 SerialMonitor.java:133 baud=baud @@ -1227,13 +1227,13 @@ baud=baud compilation\ =Compliaci\u00f3 #: ../../../processing/app/NetworkMonitor.java:111 -!connected\!= +connected\!=Connectat\! #: Sketch.java:540 createNewFile()\ returned\ false=createNewFile() ha retornat false #: ../../../processing/app/EditorStatus.java:469 -!enabled\ in\ File\ >\ Preferences.= +enabled\ in\ File\ >\ Preferences.=Activat en Fitxer>Prefer\u00e8ncies. #: Base.java:2090 environment=entorn @@ -1242,7 +1242,7 @@ environment=entorn http\://arduino.cc/=http\://arduino.cc/ #: ../../../processing/app/debug/Compiler.java:49 -!http\://github.com/arduino/Arduino/issues= +http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1271,7 +1271,7 @@ platforms.html=platforms.html readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=El buffer de bytes readBytesUntil() \u00e9s massa petit pels {0} bytes fins i incloent el char {1} #: Sketch.java:647 -!removeCode\:\ internal\ error..\ could\ not\ find\ code= +removeCode\:\ internal\ error..\ could\ not\ find\ code=eliminaCodi\: error intern.. no es pot trobar el codi #: Editor.java:932 serialMenu\ is\ null=serialMenu es null @@ -1293,7 +1293,7 @@ upload=Pujar #: Editor.java:2213 #, java-format -!{0}\ |\ Arduino\ {1}= +{0}\ |\ Arduino\ {1}={0} | Arduino {1} #: Editor.java:1874 #, java-format diff --git a/arduino-core/src/processing/app/i18n/Resources_cs_CZ.po b/arduino-core/src/processing/app/i18n/Resources_cs_CZ.po index 532657b84..5348d426a 100644 --- a/arduino-core/src/processing/app/i18n/Resources_cs_CZ.po +++ b/arduino-core/src/processing/app/i18n/Resources_cs_CZ.po @@ -11,8 +11,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/arduino-ide-15/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -141,6 +141,12 @@ msgstr "Desky Arduino ARM (32-bits)" msgid "Arduino AVR Boards" msgstr "Desky Arduino AVR" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -358,7 +364,7 @@ msgstr "Kopírovat jako HTML" #: ../../../processing/app/EditorStatus.java:455 msgid "Copy error messages" -msgstr "" +msgstr "Okopírovat chybové zprávy" #: Editor.java:1165 Editor.java:2715 msgid "Copy for Forum" @@ -439,7 +445,7 @@ msgstr "Skicu nešlo znovu uložit" msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "Nebylo možné načíst téma s nastavením barev.\nPřeinstalujte Arduino." +msgstr "" #: Preferences.java:219 msgid "" @@ -534,7 +540,7 @@ msgstr "Zapomenout všechny změny a skicu znovu nahrát?" #: ../../../processing/app/Preferences.java:438 msgid "Display line numbers" -msgstr "" +msgstr "Zobrazit čísla řádků" #: Editor.java:2064 msgid "Don't Save" @@ -904,7 +910,7 @@ msgstr "Zpráva" #: ../../../processing/app/preproc/PdePreprocessor.java:412 msgid "Missing the */ from the end of a /* comment */" -msgstr "" +msgstr "Chybí ukončující znaky \"*/\" komentáře" #: Preferences.java:449 msgid "More preferences can be edited directly in the file" @@ -1142,12 +1148,6 @@ msgstr "Problém s přenosem dat na vývojovou desku (board). Na http://www.ardu msgid "Problem with rename" msgstr "Problém se změnou jména souboru" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "Arduino může otevírat pouze skici\na jiné soubory s příponou .ino či .pde" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "Procesor" @@ -1358,7 +1358,7 @@ msgstr "Umístění skicáře:" #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" -msgstr "" +msgstr "Skici (*.ino, *.pde)" #: ../../../processing/app/Preferences.java:152 msgid "Slovenian" @@ -1604,12 +1604,12 @@ msgstr "Použít externí editor" #: ../../../processing/app/debug/Compiler.java:94 #, java-format msgid "Using library {0} in folder: {1} {2}" -msgstr "" +msgstr "Užita knihovna {0} v adresáři: {1} {2}" #: ../../../processing/app/debug/Compiler.java:320 #, java-format msgid "Using previously compiled file: {0}" -msgstr "" +msgstr "Užit soubor skompilovaný již dříve: {0}" #: EditorToolbar.java:41 EditorToolbar.java:46 msgid "Verify" @@ -1715,10 +1715,10 @@ msgstr "\".{0}\" není podporované rozšíření." #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." -msgstr "\"{0}\" obsahuje nerpoznatelné znaky. V případě, že tento kód byl vytvořenstarší verzí Arduino, použij menu Tools -> Fix Encoding & Reload a kódování skici se překóduje na UTF-8. Když se to nepovede, smažte špatné znaky a toto upozornění se přestane objevovat." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." +msgstr "" #: debug/Compiler.java:409 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_cs_CZ.properties b/arduino-core/src/processing/app/i18n/Resources_cs_CZ.properties index a63a7c7e2..46ac82668 100644 --- a/arduino-core/src/processing/app/i18n/Resources_cs_CZ.properties +++ b/arduino-core/src/processing/app/i18n/Resources_cs_CZ.properties @@ -6,7 +6,7 @@ # Adam , 2012. # , 2012. # Michal Kocer , 2012. -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Czech (Czech Republic) (http\://www.transifex.com/projects/p/arduino-ide-15/language/cs_CZ/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: cs_CZ\nPlural-Forms\: nplurals\=3; plural\=(n\=\=1) ? 0 \: (n>\=2 && n<\=4) ? 1 \: 2;\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Czech (Czech Republic) (http\://www.transifex.com/projects/p/arduino-ide-15/language/cs_CZ/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: cs_CZ\nPlural-Forms\: nplurals\=3; plural\=(n\=\=1) ? 0 \: (n>\=2 && n<\=4) ? 1 \: 2;\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ (vy\u017eaduje restart programu Arduino) @@ -86,6 +86,9 @@ Arduino\ ARM\ (32-bits)\ Boards=Desky Arduino ARM (32-bits) #: ../../../processing/app/I18n.java:82 Arduino\ AVR\ Boards=Desky Arduino AVR +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino nem\u016f\u017ee b\u011b\u017eet, jeliko\u017e se mu nepoda\u0159ilo\nvytvo\u0159it adres\u00e1\u0159 pro ulo\u017een\u00ed va\u0161ich nastaven\u00ed. @@ -243,7 +246,7 @@ Copy=Kop\u00edrovat Copy\ as\ HTML=Kop\u00edrovat jako HTML #: ../../../processing/app/EditorStatus.java:455 -!Copy\ error\ messages= +Copy\ error\ messages=Okop\u00edrovat chybov\u00e9 zpr\u00e1vy #: Editor.java:1165 Editor.java:2715 Copy\ for\ Forum=Kop\u00edrovat pro u\u017eit\u00ed ve f\u00f3ru @@ -300,7 +303,7 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=Skicu ne\u0161lo znovu ulo\u017eit #: Theme.java:52 -Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Nebylo mo\u017en\u00e9 na\u010d\u00edst t\u00e9ma s nastaven\u00edm barev.\nP\u0159einstalujte Arduino. +!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Nebylo mo\u017en\u00e9 na\u010d\u00edst syst\u00e9mov\u00e9 nastaven\u00ed.\nP\u0159einstalujte Arduino. @@ -367,7 +370,7 @@ Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ Discard\ all\ changes\ and\ reload\ sketch?=Zapomenout v\u0161echny zm\u011bny a skicu znovu nahr\u00e1t? #: ../../../processing/app/Preferences.java:438 -!Display\ line\ numbers= +Display\ line\ numbers=Zobrazit \u010d\u00edsla \u0159\u00e1dk\u016f #: Editor.java:2064 Don't\ Save=Neukl\u00e1dat @@ -637,7 +640,7 @@ Marathi=Mar\u00e1th\u0161tina Message=Zpr\u00e1va #: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Chyb\u00ed ukon\u010duj\u00edc\u00ed znaky "*/" koment\u00e1\u0159e #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Dal\u0161\u00ed volby mohou b\u00fdt m\u011bn\u011bny p\u0159\u00edmo v souboru @@ -814,9 +817,6 @@ Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troublesh #: Sketch.java:355 Sketch.java:362 Sketch.java:373 Problem\ with\ rename=Probl\u00e9m se zm\u011bnou jm\u00e9na souboru -#: Editor.java:2137 -Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Arduino m\u016f\u017ee otev\u00edrat pouze skici\na jin\u00e9 soubory s p\u0159\u00edponou .ino \u010di .pde - #: ../../../processing/app/I18n.java:86 Processor=Procesor @@ -967,7 +967,7 @@ Sketchbook\ folder\ disappeared=Zmizel adres\u00e1\u0159 Skic\u00e1\u0159e. Sketchbook\ location\:=Um\u00edst\u011bn\u00ed skic\u00e1\u0159e\: #: ../../../processing/app/Base.java:785 -!Sketches\ (*.ino,\ *.pde)= +Sketches\ (*.ino,\ *.pde)=Skici (*.ino, *.pde) #: ../../../processing/app/Preferences.java:152 Slovenian=Slovin\u0161tina @@ -1124,11 +1124,11 @@ Use\ external\ editor=Pou\u017e\u00edt extern\u00ed editor #: ../../../processing/app/debug/Compiler.java:94 #, java-format -!Using\ library\ {0}\ in\ folder\:\ {1}\ {2}= +Using\ library\ {0}\ in\ folder\:\ {1}\ {2}=U\u017eita knihovna {0} v adres\u00e1\u0159i\: {1} {2} #: ../../../processing/app/debug/Compiler.java:320 #, java-format -!Using\ previously\ compiled\ file\:\ {0}= +Using\ previously\ compiled\ file\:\ {0}=U\u017eit soubor skompilovan\u00fd ji\u017e d\u0159\u00edve\: {0} #: EditorToolbar.java:41 EditorToolbar.java:46 Verify=Ov\u011b\u0159it @@ -1199,7 +1199,7 @@ Zip\ doesn't\ contain\ a\ library=ZIP neobsahuje knihovnu pro Arduino #: SketchCode.java:258 #, java-format -"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" obsahuje nerpoznateln\u00e9 znaky. V p\u0159\u00edpad\u011b, \u017ee tento k\u00f3d byl vytvo\u0159enstar\u0161\u00ed verz\u00ed Arduino, pou\u017eij menu Tools -> Fix Encoding & Reload a k\u00f3dov\u00e1n\u00ed skici se p\u0159ek\u00f3duje na UTF-8. Kdy\u017e se to nepovede, sma\u017ete \u0161patn\u00e9 znaky a toto upozorn\u011bn\u00ed se p\u0159estane objevovat. +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 \nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nOd verze Arduino 0019, knihovna Ethernet z\u00e1vis\u00ed na knihovn\u011b SPI.\nZd\u00e1 se, \u017ee ji\u017e vyuz\u017e\u00edv\u00e1te jin\u00e9 knihovny, kter\u00e1 z\u00e1vis\u00ed na knihovn\u011b SPI.\n\n diff --git a/arduino-core/src/processing/app/i18n/Resources_da_DK.po b/arduino-core/src/processing/app/i18n/Resources_da_DK.po index 42a3e1791..ffb5e5304 100644 --- a/arduino-core/src/processing/app/i18n/Resources_da_DK.po +++ b/arduino-core/src/processing/app/i18n/Resources_da_DK.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Danish (Denmark) (http://www.transifex.com/projects/p/arduino-ide-15/language/da_DK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -89,7 +89,7 @@ msgstr "Tilføj fil..." #: Base.java:963 msgid "Add Library..." -msgstr "" +msgstr "Tilføj bibliotek..." #: tools/FixEncoding.java:77 msgid "" @@ -114,15 +114,15 @@ msgstr "" #: tools/Archiver.java:48 msgid "Archive Sketch" -msgstr "" +msgstr "Arkivér skitse" #: tools/Archiver.java:109 msgid "Archive sketch as:" -msgstr "" +msgstr "Arkivér skitse som:" #: tools/Archiver.java:139 msgid "Archive sketch canceled." -msgstr "" +msgstr "Arkivering af skitsen annulleret." #: tools/Archiver.java:75 msgid "" @@ -138,6 +138,12 @@ msgstr "" msgid "Arduino AVR Boards" msgstr "" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -180,27 +186,27 @@ msgstr "" #: tools/AutoFormat.java:91 msgid "Auto Format" -msgstr "" +msgstr "Automatisk formatering" #: tools/AutoFormat.java:934 msgid "Auto Format Canceled: Too many left curly braces." -msgstr "" +msgstr "Automatisk formatering afbrudt: For mange venstre Tuborgparenteser." #: tools/AutoFormat.java:925 msgid "Auto Format Canceled: Too many left parentheses." -msgstr "" +msgstr "Automatisk formatering afbrudt: For mange venstre parenteser." #: tools/AutoFormat.java:931 msgid "Auto Format Canceled: Too many right curly braces." -msgstr "" +msgstr "Automatisk formatering afbrudt: For mange højre Tuborgparenteser." #: tools/AutoFormat.java:922 msgid "Auto Format Canceled: Too many right parentheses." -msgstr "" +msgstr "Automatisk formatering afbrudt: For mange højre parenteser." #: tools/AutoFormat.java:944 msgid "Auto Format finished." -msgstr "" +msgstr "Automatisk formatering udført." #: Preferences.java:439 msgid "Automatically associate .ino files with Arduino" @@ -282,7 +288,7 @@ msgstr "" #: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2064 Editor.java:2145 Editor.java:2465 msgid "Cancel" -msgstr "Afbryd" +msgstr "Annuller" #: Sketch.java:455 msgid "Cannot Rename" @@ -318,11 +324,11 @@ msgstr "" #: Preferences.java:88 msgid "Chinese Simplified" -msgstr "Kinesisk Simpel" +msgstr "Kinesisk, simpel" #: Preferences.java:89 msgid "Chinese Traditional" -msgstr "Kinesisk traditionel" +msgstr "Kinesisk, traditionel" #: Editor.java:521 Editor.java:2024 msgid "Close" @@ -347,11 +353,11 @@ msgstr "" #: Editor.java:1157 Editor.java:2707 msgid "Copy" -msgstr "Kopiere" +msgstr "Kopier" #: Editor.java:1177 Editor.java:2723 msgid "Copy as HTML" -msgstr "Kopiere som HTML" +msgstr "Kopier som HTML" #: ../../../processing/app/EditorStatus.java:455 msgid "Copy error messages" @@ -359,7 +365,7 @@ msgstr "" #: Editor.java:1165 Editor.java:2715 msgid "Copy for Forum" -msgstr "Kopiere fra forum" +msgstr "Kopier til forum" #: Sketch.java:1089 #, java-format @@ -763,7 +769,7 @@ msgstr "Tysk" #: Editor.java:1054 msgid "Getting Started" -msgstr "Kom igang" +msgstr "Kom i gang" #: ../../../processing/app/Sketch.java:1646 #, java-format @@ -1014,27 +1020,27 @@ msgstr "" #: EditorToolbar.java:41 msgid "Open" -msgstr "Åben" +msgstr "Åbn" #: Editor.java:2688 msgid "Open URL" -msgstr "Åben URL" +msgstr "Åbn URL" #: Base.java:636 msgid "Open an Arduino sketch..." -msgstr "" +msgstr "Åbn en Arduino skitse..." #: EditorToolbar.java:46 msgid "Open in Another Window" -msgstr "Åben i nyt vindue" +msgstr "Åbn i nyt vindue" #: Base.java:903 Editor.java:501 msgid "Open..." -msgstr "Åben..." +msgstr "Åbn..." #: Editor.java:563 msgid "Page Setup" -msgstr "Side opsætning" +msgstr "Sideopsætning" #: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 msgid "Password:" @@ -1090,19 +1096,19 @@ msgstr "" #: Editor.java:571 msgid "Print" -msgstr "Print" +msgstr "Udskriv" #: Editor.java:2571 msgid "Printing canceled." -msgstr "Print annulleret" +msgstr "Udskrift annulleret" #: Editor.java:2547 msgid "Printing..." -msgstr "Printer..." +msgstr "Udskriver..." #: Base.java:1957 msgid "Problem Opening Folder" -msgstr "Problem med at åbne biblotek" +msgstr "Problem med at åbne mappe" #: Base.java:1933 msgid "Problem Opening URL" @@ -1122,7 +1128,7 @@ msgstr "" #: Base.java:1673 msgid "Problem getting data folder" -msgstr "Problem med at åbne data bibloteket" +msgstr "Problem med at åbne datamappe" #: Sketch.java:1467 #, java-format @@ -1139,12 +1145,6 @@ msgstr "" msgid "Problem with rename" msgstr "Problem med at omdøde" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "" @@ -1697,7 +1697,7 @@ msgstr "" #: Base.java:2638 msgid "ZIP files or folders" -msgstr "ZIP filer eller biblioteker" +msgstr "ZIP filer eller mapper" #: Base.java:2661 msgid "Zip doesn't contain a library" @@ -1712,9 +1712,9 @@ msgstr "" #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." msgstr "" #: debug/Compiler.java:409 diff --git a/arduino-core/src/processing/app/i18n/Resources_da_DK.properties b/arduino-core/src/processing/app/i18n/Resources_da_DK.properties index 36b8a4d3f..c9d42185c 100644 --- a/arduino-core/src/processing/app/i18n/Resources_da_DK.properties +++ b/arduino-core/src/processing/app/i18n/Resources_da_DK.properties @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # Anders Bech Mellson <>, 2012. # -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Danish (Denmark) (http\://www.transifex.com/projects/p/arduino-ide-15/language/da_DK/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: da_DK\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Danish (Denmark) (http\://www.transifex.com/projects/p/arduino-ide-15/language/da_DK/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: da_DK\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 !\ \ (requires\ restart\ of\ Arduino)= @@ -51,7 +51,7 @@ About\ Arduino=Om Arduino Add\ File...=Tilf\u00f8j fil... #: Base.java:963 -!Add\ Library...= +Add\ Library...=Tilf\u00f8j bibliotek... #: tools/FixEncoding.java:77 !An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n= @@ -66,13 +66,13 @@ Arabic=Arabisk !Aragonese= #: tools/Archiver.java:48 -!Archive\ Sketch= +Archive\ Sketch=Arkiv\u00e9r skitse #: tools/Archiver.java:109 -!Archive\ sketch\ as\:= +Archive\ sketch\ as\:=Arkiv\u00e9r skitse som\: #: tools/Archiver.java:139 -!Archive\ sketch\ canceled.= +Archive\ sketch\ canceled.=Arkivering af skitsen annulleret. #: tools/Archiver.java:75 !Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.= @@ -83,6 +83,9 @@ Arabic=Arabisk #: ../../../processing/app/I18n.java:82 !Arduino\ AVR\ Boards= +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 !Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.= @@ -109,22 +112,22 @@ Arabic=Arabisk !Asturian= #: tools/AutoFormat.java:91 -!Auto\ Format= +Auto\ Format=Automatisk formatering #: tools/AutoFormat.java:934 -!Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.= +Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=Automatisk formatering afbrudt\: For mange venstre Tuborgparenteser. #: tools/AutoFormat.java:925 -!Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.= +Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=Automatisk formatering afbrudt\: For mange venstre parenteser. #: tools/AutoFormat.java:931 -!Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.= +Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=Automatisk formatering afbrudt\: For mange h\u00f8jre Tuborgparenteser. #: tools/AutoFormat.java:922 -!Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.= +Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=Automatisk formatering afbrudt\: For mange h\u00f8jre parenteser. #: tools/AutoFormat.java:944 -!Auto\ Format\ finished.= +Auto\ Format\ finished.=Automatisk formatering udf\u00f8rt. #: Preferences.java:439 !Automatically\ associate\ .ino\ files\ with\ Arduino= @@ -185,7 +188,7 @@ Arabic=Arabisk #: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2064 Editor.java:2145 Editor.java:2465 -Cancel=Afbryd +Cancel=Annuller #: Sketch.java:455 Cannot\ Rename=Kan ikke omd\u00f8be @@ -212,10 +215,10 @@ Cannot\ Rename=Kan ikke omd\u00f8be !Chinese\ (Taiwan)\ (Big5)= #: Preferences.java:88 -Chinese\ Simplified=Kinesisk Simpel +Chinese\ Simplified=Kinesisk, simpel #: Preferences.java:89 -Chinese\ Traditional=Kinesisk traditionel +Chinese\ Traditional=Kinesisk, traditionel #: Editor.java:521 Editor.java:2024 Close=Luk @@ -234,16 +237,16 @@ Close=Luk !Console\ Error= #: Editor.java:1157 Editor.java:2707 -Copy=Kopiere +Copy=Kopier #: Editor.java:1177 Editor.java:2723 -Copy\ as\ HTML=Kopiere som HTML +Copy\ as\ HTML=Kopier som HTML #: ../../../processing/app/EditorStatus.java:455 !Copy\ error\ messages= #: Editor.java:1165 Editor.java:2715 -Copy\ for\ Forum=Kopiere fra forum +Copy\ for\ Forum=Kopier til forum #: Sketch.java:1089 #, java-format @@ -538,7 +541,7 @@ Frequently\ Asked\ Questions=Ofte stillede sp\u00f8rgsm\u00e5l German=Tysk #: Editor.java:1054 -Getting\ Started=Kom igang +Getting\ Started=Kom i gang #: ../../../processing/app/Sketch.java:1646 #, java-format @@ -718,22 +721,22 @@ OK=Ok !One\ file\ added\ to\ the\ sketch.= #: EditorToolbar.java:41 -Open=\u00c5ben +Open=\u00c5bn #: Editor.java:2688 -Open\ URL=\u00c5ben URL +Open\ URL=\u00c5bn URL #: Base.java:636 -!Open\ an\ Arduino\ sketch...= +Open\ an\ Arduino\ sketch...=\u00c5bn en Arduino skitse... #: EditorToolbar.java:46 -Open\ in\ Another\ Window=\u00c5ben i nyt vindue +Open\ in\ Another\ Window=\u00c5bn i nyt vindue #: Base.java:903 Editor.java:501 -Open...=\u00c5ben... +Open...=\u00c5bn... #: Editor.java:563 -Page\ Setup=Side ops\u00e6tning +Page\ Setup=Sideops\u00e6tning #: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 Password\:=Adgangskode\: @@ -775,16 +778,16 @@ Previous=Forrige !Previous\ Tab= #: Editor.java:571 -Print=Print +Print=Udskriv #: Editor.java:2571 -Printing\ canceled.=Print annulleret +Printing\ canceled.=Udskrift annulleret #: Editor.java:2547 -Printing...=Printer... +Printing...=Udskriver... #: Base.java:1957 -Problem\ Opening\ Folder=Problem med at \u00e5bne biblotek +Problem\ Opening\ Folder=Problem med at \u00e5bne mappe #: Base.java:1933 Problem\ Opening\ URL=Problem med at \u00e5bne URL @@ -799,7 +802,7 @@ Problem\ Opening\ URL=Problem med at \u00e5bne URL !Problem\ accessing\ files\ in\ folder\ = #: Base.java:1673 -Problem\ getting\ data\ folder=Problem med at \u00e5bne data bibloteket +Problem\ getting\ data\ folder=Problem med at \u00e5bne datamappe #: Sketch.java:1467 #, java-format @@ -811,9 +814,6 @@ Problem\ getting\ data\ folder=Problem med at \u00e5bne data bibloteket #: Sketch.java:355 Sketch.java:362 Sketch.java:373 Problem\ with\ rename=Problem med at omd\u00f8de -#: Editor.java:2137 -!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= - #: ../../../processing/app/I18n.java:86 !Processor= @@ -1185,7 +1185,7 @@ You\ can't\ fool\ me=Du kan ikke snyde mig !You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?= #: Base.java:2638 -ZIP\ files\ or\ folders=ZIP filer eller biblioteker +ZIP\ files\ or\ folders=ZIP filer eller mapper #: Base.java:2661 !Zip\ doesn't\ contain\ a\ library= diff --git a/arduino-core/src/processing/app/i18n/Resources_de_DE.po b/arduino-core/src/processing/app/i18n/Resources_de_DE.po index eaf9da616..68bc1826b 100644 --- a/arduino-core/src/processing/app/i18n/Resources_de_DE.po +++ b/arduino-core/src/processing/app/i18n/Resources_de_DE.po @@ -9,8 +9,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/arduino-ide-15/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,7 +24,7 @@ msgstr " (erfordert Neustart von Arduino)" #: debug/Compiler.java:455 msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "'Keyboard' wird nur vom Arduino Leonardo unterstützt" +msgstr "'Tastatur' wird nur vom Arduino Leonardo unterstützt" #: debug/Compiler.java:450 msgid "'Mouse' only supported on the Arduino Leonardo" @@ -66,7 +66,7 @@ msgstr "Ein Ordner mit dem Namen \"{0}\" existiert bereits. Der Sketch kann nich #: Base.java:2690 #, java-format msgid "A library named {0} already exists" -msgstr "Eine Library namens {0} existiert nicht" +msgstr "Eine Bibliothek namens {0} existiert nicht" #: UpdateCheck.java:103 msgid "" @@ -90,7 +90,7 @@ msgstr "Datei hinzufügen" #: Base.java:963 msgid "Add Library..." -msgstr "Library hinzufügen..." +msgstr "Bibliothek hinzufügen..." #: tools/FixEncoding.java:77 msgid "" @@ -119,11 +119,11 @@ msgstr "Sketch archivieren" #: tools/Archiver.java:109 msgid "Archive sketch as:" -msgstr "Archiviere den Sketch unter ..." +msgstr "Archiviere den Sketch unter:" #: tools/Archiver.java:139 msgid "Archive sketch canceled." -msgstr "Die Archivierung des Sketches wurde abgebrochen." +msgstr "Archivierung des Sketches abgebrochen." #: tools/Archiver.java:75 msgid "" @@ -133,11 +133,17 @@ msgstr "Die Archivierung des Sketches wurde abgebrochen, da der\nSketch nicht or #: ../../../processing/app/I18n.java:83 msgid "Arduino ARM (32-bits) Boards" -msgstr "Arduino ARM (32-bit) Boards" +msgstr "Arduino ARM (32-bit) Platinen" #: ../../../processing/app/I18n.java:82 msgid "Arduino AVR Boards" -msgstr "Arduino AVR Boards" +msgstr "Arduino AVR Platinen" + +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" #: Base.java:1682 msgid "" @@ -227,18 +233,18 @@ msgstr "Weißrussisch" #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" -msgstr "Board" +msgstr "Platine" #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" "Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:" " {3}" -msgstr "Das Board {0}:{1}:{2} definiert keine \"build.board\"-Einstellung. Sie wurde automatisch auf {3} gesetzt." +msgstr "Die Platine {0}:{1}:{2} definiert keine \"Build.Platine\"-Einstellung. Sie wurde automatisch auf {3} gesetzt." #: ../../../processing/app/EditorStatus.java:472 msgid "Board: " -msgstr "Board: " +msgstr "Platine: " #: ../../../processing/app/Preferences.java:140 msgid "Bosnian" @@ -270,7 +276,7 @@ msgstr "Bootloader brennen" #: Editor.java:2504 msgid "Burning bootloader to I/O Board (this may take a minute)..." -msgstr "Brenne Bootloader auf das I/O Board (kann einige Minuten dauern)..." +msgstr "Brenne Bootloader auf die E/A-Platine (kann einige Minuten dauern)..." #: ../../../processing/app/Base.java:368 msgid "Can't open source sketch!" @@ -336,11 +342,11 @@ msgstr "Kommentieren/Kommentar aufheben" #: debug/Compiler.java:49 debug/Uploader.java:45 #, java-format msgid "Compiler error, please submit this code to {0}" -msgstr "Fehler beim Übersetzen, bitte den Quelltext an {0} senden" +msgstr "Kompilerfehler, bitte den Quelltext an {0} senden" #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." -msgstr "Übersetze den Sketch" +msgstr "Sketch wird kompiliert..." #: EditorConsole.java:152 msgid "Console Error" @@ -373,7 +379,7 @@ msgstr "Konnte nicht an einen korrekten Speicherort kopieren. " #: Editor.java:2179 msgid "Could not create the sketch folder." -msgstr "Der Sketch-Ordner konnte nicht angelegt werden" +msgstr "Der Sketch-Ordner konnte nicht angelegt werden." #: Editor.java:2206 msgid "Could not create the sketch." @@ -402,12 +408,12 @@ msgstr "Es konnte keine boards.txt in {0} gefunden werden. Ist sie noch von eine #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 #, java-format msgid "Could not find tool {0}" -msgstr "Konnte das Tool {0} nicht finden" +msgstr "Konnte das Werkzeug {0} nicht finden" #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 #, java-format msgid "Could not find tool {0} from package {1}" -msgstr "Konnte das Tool {0} aus dem Paket {1} nicht finden" +msgstr "Konnte das Werkzeug {0} aus dem Paket {1} nicht finden" #: Base.java:1934 #, java-format @@ -437,7 +443,7 @@ msgstr "Der Sketch konnte nicht neu gespeichert werden" msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "Die Einstellungen für das Farbschema konnten nicht gelesen werden.\nArduino muss neu installiert werden." +msgstr "" #: Preferences.java:219 msgid "" @@ -494,7 +500,7 @@ msgid "" "Couldn't find a Board on the selected port. Check that you have the correct " "port selected. If it is correct, try pressing the board's reset button " "after initiating the upload." -msgstr "An dem ausgewählten Port konnte kein Board gefunden werden,\nbitte die Auswahl des seriellen Ports überprüfen.\nIst diese korrekt, bitte das Board über die Reset-Taste\nnach dem Start des Hochladens neu starten." +msgstr "An dem ausgewählten Port konnte keine Platine gefunden werden. Bitte überprüfen Sie die korrekte Auswahl des seriellen Ports. Ist diese korrekt, bitte die Platine über die Reset-Taste nach dem Start des Hochladens neu starten." #: ../../../processing/app/Preferences.java:82 msgid "Croatian" @@ -524,7 +530,7 @@ msgstr "Löschen" msgid "" "Device is not responding, check the right serial port is selected or RESET " "the board right before exporting" -msgstr "Das Gerät reagiert nicht. Entweder ist der falsche Port ausgewählt,\noder das Board muss vor dem Export mit RESET neu gestartet werden" +msgstr "Das Gerät reagiert nicht. Entweder ist der falsche Port ausgewählt,\noder die Platine muss vor dem Export mit RESET neu gestartet werden" #: tools/FixEncoding.java:57 msgid "Discard all changes and reload sketch?" @@ -548,11 +554,11 @@ msgstr "Der Bootloader wurde gebrannt." #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." -msgstr "Übersetzen abgeschlossen." +msgstr "Kompilieren abgeschlossen." #: Editor.java:2564 msgid "Done printing." -msgstr "Drucken abgeschlossen" +msgstr "Drucken abgeschlossen." #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." @@ -602,7 +608,7 @@ msgstr "Fehler beim Hinzufügen der Datei" #: debug/Compiler.java:369 msgid "Error compiling." -msgstr "Fehler beim Übersetzen" +msgstr "Fehler beim Kompilieren." #: Base.java:1674 msgid "Error getting the Arduino data folder." @@ -830,7 +836,7 @@ msgstr "Groß/Kleinschreibung ignorieren" #: Base.java:1058 msgid "Ignoring bad library name" -msgstr "Der unzulässige Libraryname wurde ignoriert" +msgstr "Der unzulässige Bibliotheksname wurde ignoriert" #: Base.java:1436 msgid "Ignoring sketch with bad name" @@ -838,7 +844,7 @@ msgstr "Der unzulässige Sketchname wurde ignoriert" #: Editor.java:636 msgid "Import Library..." -msgstr "Library importieren" +msgstr "Bibliothek importieren..." #: ../../../processing/app/Sketch.java:736 msgid "" @@ -862,7 +868,7 @@ msgstr "Indonesisch" #: ../../../processing/app/Base.java:1204 #, java-format msgid "Invalid library found in {0}: {1}" -msgstr "Ungültige Library {0} in {1} gefunden" +msgstr "Ungültige Bibliothek {0} in {1} gefunden" #: Preferences.java:102 msgid "Italian" @@ -882,7 +888,7 @@ msgstr "Lettisch" #: Base.java:2699 msgid "Library added to your libraries. Check \"Import library\" menu" -msgstr "Die Library wurde zu Ihren Libraries hinzugefügt. Bitte im Menü \"Library importieren\" nachprüfen " +msgstr "Die Bibliothek wurde zu Ihren Bibliotheken hinzugefügt. Bitte im Menü \"Bibliothek importieren\" nachprüfen " #: Preferences.java:106 msgid "Lithuaninan" @@ -902,7 +908,7 @@ msgstr "Mitteilung" #: ../../../processing/app/preproc/PdePreprocessor.java:412 msgid "Missing the */ from the end of a /* comment */" -msgstr "" +msgstr "Das */ am Ende eines /* Kommentars */ fehlt" #: Preferences.java:449 msgid "More preferences can be edited directly in the file" @@ -950,7 +956,7 @@ msgstr "Nein" #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "Kein Board ausgewählt; bitte ein Board unter Werkzeuge > Board auswählen" +msgstr "Keine Platine ausgewählt; bitte eine Platine unter Werkzeuge > Platine auswählen" #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." @@ -988,7 +994,7 @@ msgstr "Im Ordner {0} wurden keine gültigen Hardwaredefinitionen gefunden." #: Base.java:191 msgid "Non-fatal error while setting the Look & Feel." -msgstr "Kleiner Fehler beim Einstellen des Look & Feel." +msgstr "Kleiner Fehler beim Einstellen des Erscheinungsbildes." #: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859 msgid "Nope" @@ -1051,7 +1057,7 @@ msgstr "Persisch" #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." -msgstr "Bitte die Bibliothek SPI aus dem Sketch > Library importieren-Menü importieren" +msgstr "Bitte die Bibliothek SPI aus dem Sketch > Bibliothek importieren-Menü importieren" #: Base.java:239 msgid "Please install JDK 1.5 or later" @@ -1115,7 +1121,7 @@ msgstr "Problem beim Aufbau der Plattform" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 msgid "Problem accessing board folder /www/sd" -msgstr "Problem beim Zugriff auf den Board-Ordner /www/sd" +msgstr "Problem beim Zugriff auf den Platinenordner /www/sd" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 msgid "Problem accessing files in folder " @@ -1128,24 +1134,18 @@ msgstr "Probleme beim Zugriff auf den Datenordner" #: Sketch.java:1467 #, java-format msgid "Problem moving {0} to the build folder" -msgstr "Probleme beim Verschieben von {0} in den build-Ordner" +msgstr "Probleme beim Verschieben von {0} in den Build-Ordner" #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " "http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions." -msgstr "Probleme beim Hochladen auf das Board. Hilfestellung dazu unter http://www.arduino.cc/en/Guide/Troubleshooting#upload ." +msgstr "Probleme beim Hochladen auf die Platine. Hilfestellung dazu unter http://www.arduino.cc/en/Guide/Troubleshooting#upload ." #: Sketch.java:355 Sketch.java:362 Sketch.java:373 msgid "Problem with rename" msgstr "Problem beim Umbenennen" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "Arduino kann nur seine eigenen Dateien öffnen,\nsowie Dateien mit der Endung .ino oder .pde" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "Prozessor" @@ -1239,7 +1239,7 @@ msgstr "Alles auswählen" #: Base.java:2636 msgid "Select a zip file or a folder containing the library you'd like to add" -msgstr "Bitte die zip-Datei oder einen Ordner mit der Library auswählen" +msgstr "Bitte die zip-Datei oder einen Ordner mit der Bibliothek auswählen" #: Sketch.java:975 msgid "Select an image or other data file to copy to your sketch" @@ -1251,7 +1251,7 @@ msgstr "Neuen Speicherort für das Sketchbook auswählen" #: ../../../processing/app/debug/Compiler.java:146 msgid "Selected board depends on '{0}' core (not installed)." -msgstr "Das ausgewählte Board benötigt den '{0}'-Kern (nicht installiert)." +msgstr "Die ausgewählte Platine benötigt den '{0}'-Kern (nicht installiert)." #: SerialMonitor.java:93 msgid "Send" @@ -1360,7 +1360,7 @@ msgstr "Sketche (*.ino, *.pde)" #: ../../../processing/app/Preferences.java:152 msgid "Slovenian" -msgstr "Slovenisch" +msgstr "Slowenisch" #: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967 msgid "" @@ -1402,19 +1402,19 @@ msgstr "Tamilisch" #: debug/Compiler.java:414 msgid "The 'BYTE' keyword is no longer supported." -msgstr "'BYTE' wird nicht länger unterstützt" +msgstr "Das 'BYTE' Schlüsselwort wird nicht mehr unterstützt." #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." -msgstr "Die Klasse Client wurde in EthernetClient umbenannt" +msgstr "Die Klasse Client wurde in EthernetClient umbenannt." #: debug/Compiler.java:420 msgid "The Server class has been renamed EthernetServer." -msgstr "Die Klasse Server wurde in EthernetServer umbenannt" +msgstr "Die Klasse Server wurde in EthernetServer umbenannt." #: debug/Compiler.java:432 msgid "The Udp class has been renamed EthernetUdp." -msgstr "Die Klasse Udp wurde in EthernetUdp umbenannt" +msgstr "Die Klasse Udp wurde in EthernetUdp umbenannt." #: Base.java:192 msgid "The error message follows, however Arduino should run fine." @@ -1434,7 +1434,7 @@ msgid "" "The library \"{0}\" cannot be used.\n" "Library names must contain only basic letters and numbers.\n" "(ASCII only and no spaces, and it cannot start with a number)" -msgstr "Der Libraryname \"{0}\" kann nicht verwendet werden.\nSie dürfen nur Zeichen oder Zahlen enthalten, keine Sonderzeichen\n(nur ASCII Zeichen, keine Leerzeichen und keine Zahl am Anfang)" +msgstr "Der Bibliotheksname \"{0}\" kann nicht verwendet werden.\nSie dürfen nur Zeichen oder Zahlen enthalten, keine Sonderzeichen\n(nur ASCII-Zeichen, keine Leerzeichen und keine Zahl am Anfang)" #: Sketch.java:374 msgid "" @@ -1516,11 +1516,11 @@ msgstr "Türkisch" #: ../../../processing/app/Editor.java:2507 msgid "Type board password to access its console" -msgstr "Tippe das Boardpasswort ein, um die Konsole aufzurufen" +msgstr "Tippen Sie das Platinenpasswort ein, um die Konsole aufzurufen" #: ../../../processing/app/Sketch.java:1673 msgid "Type board password to upload a new sketch" -msgstr "Tippe das Boardpasswort ein, um einen neuen Sketch hochzuladen" +msgstr "Tippen Sie das Platinenpasswort ein, um einen neuen Sketch hochzuladen" #: ../../../processing/app/Preferences.java:118 msgid "Ukrainian" @@ -1585,7 +1585,7 @@ msgstr "Hochladen abgebrochen" #: Editor.java:2378 msgid "Uploading to I/O Board..." -msgstr "Hochladen zum I/O Board..." +msgstr "Hochladen zur E/A-Platine..." #: Sketch.java:1622 msgid "Uploading..." @@ -1607,7 +1607,7 @@ msgstr "Verwende die Bibliothek {0} im Ordner: {1} {2}" #: ../../../processing/app/debug/Compiler.java:320 #, java-format msgid "Using previously compiled file: {0}" -msgstr "Verwende die bereits übersetzte Datei: {0}" +msgstr "Verwende die zuvor kompilierte Datei: {0}" #: EditorToolbar.java:41 EditorToolbar.java:46 msgid "Verify" @@ -1615,7 +1615,7 @@ msgstr "Verifizieren" #: Editor.java:609 msgid "Verify / Compile" -msgstr "Prüfen / Übersetzen" +msgstr "Überprüfen / Kompilieren" #: Preferences.java:400 msgid "Verify code after upload" @@ -1639,7 +1639,7 @@ msgstr "Wire.receive() wurde in Wire.read() umbenannt" #: debug/Compiler.java:438 msgid "Wire.send() has been renamed Wire.write()." -msgstr "Wire.send() wurde in Wire.write() umbenannt" +msgstr "Wire.send() wurde in Wire.write() umbenannt." #: FindReplace.java:105 msgid "Wrap Around" @@ -1649,7 +1649,7 @@ msgstr "Umbruch" msgid "" "Wrong microcontroller found. Did you select the right board from the Tools " "> Board menu?" -msgstr "Falscher Microcontroller gefunden. Ist das richtige Board im Menü Werkzeuge > Board ausgewählt?" +msgstr "Falscher Mikrocontroller gefunden. Ist die richtige Platine im Menü Werkzeuge > Platine ausgewählt?" #: Preferences.java:77 UpdateCheck.java:108 msgid "Yes" @@ -1702,7 +1702,7 @@ msgstr "ZIP-Dateien oder Ordner" #: Base.java:2661 msgid "Zip doesn't contain a library" -msgstr "Zip enthält keine Library" +msgstr "Zip enthält keine Bibliothek" #: Sketch.java:364 #, java-format @@ -1713,10 +1713,10 @@ msgstr "\".{0}\" ist keine zulässige Dateiendung" #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." -msgstr "\"{0}\" enthält unzulässige Zeichen. Wenn dieser Code mit einer älteren Version\nvon Arduino erstellt wurde, können Sie den Sketch über Werkzeuge -> Kodierung korrigieren\n& neu laden auf UTF-8-Kodierung umstellen.\nWenn das nicht funktioniert, müssen Sie die unzulässigen Zeichen von Hand löschen,\num diese Warnung abzuschalten." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." +msgstr "" #: debug/Compiler.java:409 msgid "" @@ -1724,7 +1724,7 @@ msgid "" "As of Arduino 0019, the Ethernet library depends on the SPI library.\n" "You appear to be using it or another library that depends on the SPI library.\n" "\n" -msgstr "\nSeit Arduino 0019 ist die Ethernet-Library von der SPI Bibliothek anhängig.\nEs sieht so aus, als würden Sie diese benutzen oder eine Library einsetzen, welche von der SPI-Library abhängt.\n\n" +msgstr "\nSeit Arduino 0019 ist die Ethernet-Bibliothek von der SPI-Bibliothek abhängig.\nEs sieht so aus, als würden Sie diese benutzen oder eine Bibliothek einsetzen, welche von der SPI-Bibliothek abhängt.\n\n" #: debug/Compiler.java:415 msgid "" @@ -1732,28 +1732,28 @@ msgid "" "As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" "Please use Serial.write() instead.\n" "\n" -msgstr "\nSeit Arduino 1.0 wird 'BYTE' nicht weiter unterstützt.\nBitte stattdessen Serial.write() verwenden.\n\n" +msgstr "\nSeit Arduino 1.0 wird der 'BYTE' Schlüsselwort nicht mehr unterstützt.\nBitte verwenden Sie stattdessen Serial.write().\n\n" #: debug/Compiler.java:427 msgid "" "\n" "As of Arduino 1.0, the Client class in the Ethernet library has been renamed to EthernetClient.\n" "\n" -msgstr "\nSeit Arduino 1.0 heißt die Klasse \"Client\" in der Ethernet-Library \"EthernetClient\" umbenannt.\n\n" +msgstr "\nMit Arduino 1.0 wurde die Klasse \"Client\" in der Ethernet-Bibliothek in \"EthernetClient\" umbenannt.\n\n" #: debug/Compiler.java:421 msgid "" "\n" "As of Arduino 1.0, the Server class in the Ethernet library has been renamed to EthernetServer.\n" "\n" -msgstr "\nSeit Arduino 1.0 heißt die Klasse \"Server\" in der Ethernet-Library \"EthernetServer\" umbenannt.\n\n" +msgstr "\nMit Arduino 1.0 wurde die Klasse \"Server\" in der Ethernet-Bibliothek in \"EthernetServer\" umbenannt.\n\n" #: debug/Compiler.java:433 msgid "" "\n" "As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n" "\n" -msgstr "\nSeit Arduino 1.0 heißt die Klasse \"Udp\" in der Ethernet-Library \"EthernetUdp\" umbenannt.\n\n" +msgstr "\nMit Arduino 1.0 wurde die Klasse \"Udp\" in der Ethernet-Bibliothek in \"EthernetUdp\" umbenannt.\n\n" #: debug/Compiler.java:445 msgid "" @@ -1775,7 +1775,7 @@ msgstr "Baud" #: Preferences.java:389 msgid "compilation " -msgstr "Übersetzung" +msgstr "Kompilierung" #: ../../../processing/app/NetworkMonitor.java:111 msgid "connected!" @@ -1849,7 +1849,7 @@ msgstr "serialMenu ist null" #, java-format msgid "" "the selected serial port {0} does not exist or your board is not connected" -msgstr "Der gewählte serielle Port {0} existiert nicht oder das Board ist nicht angeschlossen" +msgstr "Der gewählte serielle Port {0} existiert nicht oder die Platine ist nicht angeschlossen" #: Preferences.java:391 msgid "upload" diff --git a/arduino-core/src/processing/app/i18n/Resources_de_DE.properties b/arduino-core/src/processing/app/i18n/Resources_de_DE.properties index aa5946dc0..14ca19bc7 100644 --- a/arduino-core/src/processing/app/i18n/Resources_de_DE.properties +++ b/arduino-core/src/processing/app/i18n/Resources_de_DE.properties @@ -4,13 +4,13 @@ # # Translators: # , 2012. -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: German (Germany) (http\://www.transifex.com/projects/p/arduino-ide-15/language/de_DE/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: de_DE\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: German (Germany) (http\://www.transifex.com/projects/p/arduino-ide-15/language/de_DE/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: de_DE\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ (erfordert Neustart von Arduino) #: debug/Compiler.java:455 -'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard' wird nur vom Arduino Leonardo unterst\u00fctzt +'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Tastatur' wird nur vom Arduino Leonardo unterst\u00fctzt #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' wird nur vom Arduino Leonardo unterst\u00fctzt @@ -37,7 +37,7 @@ A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=Ein Ordner mit d #: Base.java:2690 #, java-format -A\ library\ named\ {0}\ already\ exists=Eine Library namens {0} existiert nicht +A\ library\ named\ {0}\ already\ exists=Eine Bibliothek namens {0} existiert nicht #: UpdateCheck.java:103 A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Eine neue Version von Arduino ist verf\u00fcgbar.\nZur Arduino Downloadseite wechseln? @@ -52,7 +52,7 @@ About\ Arduino=\u00dcber Arduino Add\ File...=Datei hinzuf\u00fcgen #: Base.java:963 -Add\ Library...=Library hinzuf\u00fcgen... +Add\ Library...=Bibliothek hinzuf\u00fcgen... #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Beim Korrigieren der Kodierung ist ein Fehler aufgetreten.\nVersuchen Sie nicht, den Sketch zu speichern, da dies die alte Version\n\u00fcberschreiben wird. Verwenden Sie \u00d6ffnen um den Sketch neu zu laden und versuchen Sie es erneut.\n @@ -70,19 +70,22 @@ Aragonese=Aragonesisch Archive\ Sketch=Sketch archivieren #: tools/Archiver.java:109 -Archive\ sketch\ as\:=Archiviere den Sketch unter ... +Archive\ sketch\ as\:=Archiviere den Sketch unter\: #: tools/Archiver.java:139 -Archive\ sketch\ canceled.=Die Archivierung des Sketches wurde abgebrochen. +Archive\ sketch\ canceled.=Archivierung des Sketches abgebrochen. #: tools/Archiver.java:75 Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=Die Archivierung des Sketches wurde abgebrochen, da der\nSketch nicht ordentlich gespeichert werden konnte. #: ../../../processing/app/I18n.java:83 -Arduino\ ARM\ (32-bits)\ Boards=Arduino ARM (32-bit) Boards +Arduino\ ARM\ (32-bits)\ Boards=Arduino ARM (32-bit) Platinen #: ../../../processing/app/I18n.java:82 -Arduino\ AVR\ Boards=Arduino AVR Boards +Arduino\ AVR\ Boards=Arduino AVR Platinen + +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino kann nicht laufen, da es den Ordner\nzum Speichern der Einstellungen nicht erstellen kann. @@ -145,14 +148,14 @@ Belarusian=Wei\u00dfrussisch #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 -Board=Board +Board=Platine #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format -Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=Das Board {0}\:{1}\:{2} definiert keine "build.board"-Einstellung. Sie wurde automatisch auf {3} gesetzt. +Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=Die Platine {0}\:{1}\:{2} definiert keine "Build.Platine"-Einstellung. Sie wurde automatisch auf {3} gesetzt. #: ../../../processing/app/EditorStatus.java:472 -Board\:\ =Board\: +Board\:\ =Platine\: #: ../../../processing/app/Preferences.java:140 Bosnian=Bosnisch @@ -176,7 +179,7 @@ Burmese\ (Myanmar)=Birmanisch (Myanmar) Burn\ Bootloader=Bootloader brennen #: Editor.java:2504 -Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Brenne Bootloader auf das I/O Board (kann einige Minuten dauern)... +Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Brenne Bootloader auf die E/A-Platine (kann einige Minuten dauern)... #: ../../../processing/app/Base.java:368 Can't\ open\ source\ sketch\!=Kann den Sketch nicht open-sourcen\! @@ -226,10 +229,10 @@ Comment/Uncomment=Kommentieren/Kommentar aufheben #: debug/Compiler.java:49 debug/Uploader.java:45 #, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Fehler beim \u00dcbersetzen, bitte den Quelltext an {0} senden +Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Kompilerfehler, bitte den Quelltext an {0} senden #: Sketch.java:1608 Editor.java:1890 -Compiling\ sketch...=\u00dcbersetze den Sketch +Compiling\ sketch...=Sketch wird kompiliert... #: EditorConsole.java:152 Console\ Error=Fehler auf der Konsole @@ -254,7 +257,7 @@ Could\ not\ add\ ''{0}''\ to\ the\ sketch.=Konnte {0} nicht dem Sketch hinzuf\u0 Could\ not\ copy\ to\ a\ proper\ location.=Konnte nicht an einen korrekten Speicherort kopieren. #: Editor.java:2179 -Could\ not\ create\ the\ sketch\ folder.=Der Sketch-Ordner konnte nicht angelegt werden +Could\ not\ create\ the\ sketch\ folder.=Der Sketch-Ordner konnte nicht angelegt werden. #: Editor.java:2206 Could\ not\ create\ the\ sketch.=Der Sketch konnte nicht angelegt werden. @@ -277,11 +280,11 @@ Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?=Es konnte keine boards. #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 #, java-format -Could\ not\ find\ tool\ {0}=Konnte das Tool {0} nicht finden +Could\ not\ find\ tool\ {0}=Konnte das Werkzeug {0} nicht finden #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 #, java-format -Could\ not\ find\ tool\ {0}\ from\ package\ {1}=Konnte das Tool {0} aus dem Paket {1} nicht finden +Could\ not\ find\ tool\ {0}\ from\ package\ {1}=Konnte das Werkzeug {0} aus dem Paket {1} nicht finden #: Base.java:1934 #, java-format @@ -298,7 +301,7 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=Der Sketch konnte nicht neu gespeichert werden #: Theme.java:52 -Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Die Einstellungen f\u00fcr das Farbschema konnten nicht gelesen werden.\nArduino muss neu installiert werden. +!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Die Standardeinstellungen konnten nicht geladen werden.\nSie m\u00fcssen Arduino neu installieren. @@ -338,7 +341,7 @@ Couldn't\ determine\ program\ size\:\ {0}=Die Programmgr\u00f6\u00dfe konnte nic Couldn't\ do\ it=Konnte nicht ausgef\u00fchrt werden #: debug/BasicUploader.java:209 -Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=An dem ausgew\u00e4hlten Port konnte kein Board gefunden werden,\nbitte die Auswahl des seriellen Ports \u00fcberpr\u00fcfen.\nIst diese korrekt, bitte das Board \u00fcber die Reset-Taste\nnach dem Start des Hochladens neu starten. +Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=An dem ausgew\u00e4hlten Port konnte keine Platine gefunden werden. Bitte \u00fcberpr\u00fcfen Sie die korrekte Auswahl des seriellen Ports. Ist diese korrekt, bitte die Platine \u00fcber die Reset-Taste nach dem Start des Hochladens neu starten. #: ../../../processing/app/Preferences.java:82 Croatian=Kroatisch @@ -359,7 +362,7 @@ Decrease\ Indent=Ausr\u00fccken Delete=L\u00f6schen #: debug/Uploader.java:199 -Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=Das Ger\u00e4t reagiert nicht. Entweder ist der falsche Port ausgew\u00e4hlt,\noder das Board muss vor dem Export mit RESET neu gestartet werden +Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=Das Ger\u00e4t reagiert nicht. Entweder ist der falsche Port ausgew\u00e4hlt,\noder die Platine muss vor dem Export mit RESET neu gestartet werden #: tools/FixEncoding.java:57 Discard\ all\ changes\ and\ reload\ sketch?=Alle \u00c4nderungen verwerfen und den Sketch neu laden? @@ -377,10 +380,10 @@ Done\ Saving.=Speichern abgeschlossen. Done\ burning\ bootloader.=Der Bootloader wurde gebrannt. #: Editor.java:1911 Editor.java:1928 -Done\ compiling.=\u00dcbersetzen abgeschlossen. +Done\ compiling.=Kompilieren abgeschlossen. #: Editor.java:2564 -Done\ printing.=Drucken abgeschlossen +Done\ printing.=Drucken abgeschlossen. #: Editor.java:2395 Editor.java:2431 Done\ uploading.=Hochladen abgeschlossen. @@ -418,7 +421,7 @@ Error=Fehler Error\ adding\ file=Fehler beim Hinzuf\u00fcgen der Datei #: debug/Compiler.java:369 -Error\ compiling.=Fehler beim \u00dcbersetzen +Error\ compiling.=Fehler beim Kompilieren. #: Base.java:1674 Error\ getting\ the\ Arduino\ data\ folder.=Fehler beim Zugriff auf den Datenordner @@ -586,13 +589,13 @@ Hungarian=Ungarisch Ignore\ Case=Gro\u00df/Kleinschreibung ignorieren #: Base.java:1058 -Ignoring\ bad\ library\ name=Der unzul\u00e4ssige Libraryname wurde ignoriert +Ignoring\ bad\ library\ name=Der unzul\u00e4ssige Bibliotheksname wurde ignoriert #: Base.java:1436 Ignoring\ sketch\ with\ bad\ name=Der unzul\u00e4ssige Sketchname wurde ignoriert #: Editor.java:636 -Import\ Library...=Library importieren +Import\ Library...=Bibliothek importieren... #: ../../../processing/app/Sketch.java:736 In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=Mit Arduino 1.0 hat sich die Dateiendung von .pde zu .ino\nge\u00e4ndert. Neue Sketche (auch die, welche mit "Speichern unter"\nerstellt wurden) werden diese neue Endung verwenden. Die\nDateiendung existierender Sketche werden beim Speichern\nge\u00e4ndert, was aber in den Voreinstellungen ge\u00e4ndert werden\nkann.\n\nSketch mit der neuen Dateiendung speichern? @@ -605,7 +608,7 @@ Indonesian=Indonesisch #: ../../../processing/app/Base.java:1204 #, java-format -Invalid\ library\ found\ in\ {0}\:\ {1}=Ung\u00fcltige Library {0} in {1} gefunden +Invalid\ library\ found\ in\ {0}\:\ {1}=Ung\u00fcltige Bibliothek {0} in {1} gefunden #: Preferences.java:102 Italian=Italienisch @@ -620,7 +623,7 @@ Korean=Koreanisch Latvian=Lettisch #: Base.java:2699 -Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Die Library wurde zu Ihren Libraries hinzugef\u00fcgt. Bitte im Men\u00fc "Library importieren" nachpr\u00fcfen +Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Die Bibliothek wurde zu Ihren Bibliotheken hinzugef\u00fcgt. Bitte im Men\u00fc "Bibliothek importieren" nachpr\u00fcfen #: Preferences.java:106 Lithuaninan=Litauisch @@ -635,7 +638,7 @@ Marathi=Marathisch Message=Mitteilung #: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Das */ am Ende eines /* Kommentars */ fehlt #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Mehr Voreinstellungen k\u00f6nnen direkt in der Datei bearbeitet werden @@ -671,7 +674,7 @@ Next\ Tab=N\u00e4chster Tab No=Nein #: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Kein Board ausgew\u00e4hlt; bitte ein Board unter Werkzeuge > Board ausw\u00e4hlen +No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Keine Platine ausgew\u00e4hlt; bitte eine Platine unter Werkzeuge > Platine ausw\u00e4hlen #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=F\u00fcr Automatische Formatierung bedarf es keiner \u00c4nderungen. @@ -700,7 +703,7 @@ No\ valid\ configured\ cores\ found\!\ Exiting...=Es wurden keine g\u00fcltig ko No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=Im Ordner {0} wurden keine g\u00fcltigen Hardwaredefinitionen gefunden. #: Base.java:191 -Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Kleiner Fehler beim Einstellen des Look & Feel. +Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Kleiner Fehler beim Einstellen des Erscheinungsbildes. #: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859 Nope=Nein @@ -746,7 +749,7 @@ Paste=Einf\u00fcgen Persian=Persisch #: debug/Compiler.java:408 -Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Bitte die Bibliothek SPI aus dem Sketch > Library importieren-Men\u00fc importieren +Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Bitte die Bibliothek SPI aus dem Sketch > Bibliothek importieren-Men\u00fc importieren #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=Bitte JDK 1.5 oder h\u00f6her installieren @@ -794,7 +797,7 @@ Problem\ Opening\ URL=Problem beim \u00d6ffnen der URL Problem\ Setting\ the\ Platform=Problem beim Aufbau der Plattform #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 -Problem\ accessing\ board\ folder\ /www/sd=Problem beim Zugriff auf den Board-Ordner /www/sd +Problem\ accessing\ board\ folder\ /www/sd=Problem beim Zugriff auf den Platinenordner /www/sd #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 Problem\ accessing\ files\ in\ folder\ =Problem beim Zugriff auf Dateien im Ordner @@ -804,17 +807,14 @@ Problem\ getting\ data\ folder=Probleme beim Zugriff auf den Datenordner #: Sketch.java:1467 #, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder=Probleme beim Verschieben von {0} in den build-Ordner +Problem\ moving\ {0}\ to\ the\ build\ folder=Probleme beim Verschieben von {0} in den Build-Ordner #: debug/Uploader.java:209 -Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Probleme beim Hochladen auf das Board. Hilfestellung dazu unter http\://www.arduino.cc/en/Guide/Troubleshooting\#upload . +Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Probleme beim Hochladen auf die Platine. Hilfestellung dazu unter http\://www.arduino.cc/en/Guide/Troubleshooting\#upload . #: Sketch.java:355 Sketch.java:362 Sketch.java:373 Problem\ with\ rename=Problem beim Umbenennen -#: Editor.java:2137 -Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Arduino kann nur seine eigenen Dateien \u00f6ffnen,\nsowie Dateien mit der Endung .ino oder .pde - #: ../../../processing/app/I18n.java:86 Processor=Prozessor @@ -885,7 +885,7 @@ Select\ (or\ create\ new)\ folder\ for\ sketches...=Bitte einen Ordner f\u00fcr Select\ All=Alles ausw\u00e4hlen #: Base.java:2636 -Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=Bitte die zip-Datei oder einen Ordner mit der Library ausw\u00e4hlen +Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=Bitte die zip-Datei oder einen Ordner mit der Bibliothek ausw\u00e4hlen #: Sketch.java:975 Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Bitte ein Bild oder eine andere Datei ausw\u00e4hlen, um sie in den Sketch zu kopieren @@ -894,7 +894,7 @@ Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Bitte ein B Select\ new\ sketchbook\ location=Neuen Speicherort f\u00fcr das Sketchbook ausw\u00e4hlen #: ../../../processing/app/debug/Compiler.java:146 -Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=Das ausgew\u00e4hlte Board ben\u00f6tigt den '{0}'-Kern (nicht installiert). +Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=Die ausgew\u00e4hlte Platine ben\u00f6tigt den '{0}'-Kern (nicht installiert). #: SerialMonitor.java:93 Send=Senden @@ -968,7 +968,7 @@ Sketchbook\ location\:=Sketchbook-Speicherort\: Sketches\ (*.ino,\ *.pde)=Sketche (*.ino, *.pde) #: ../../../processing/app/Preferences.java:152 -Slovenian=Slovenisch +Slovenian=Slowenisch #: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967 Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Einige Dateien sind als "schreibgesch\u00fctzt" gekennzeichnet.\nSie m\u00fcssen den Sketch an einem anderen Ort speichern und es dann erneut versuchen. @@ -996,16 +996,16 @@ System\ Default=Systemstandard Tamil=Tamilisch #: debug/Compiler.java:414 -The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.='BYTE' wird nicht l\u00e4nger unterst\u00fctzt +The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=Das 'BYTE' Schl\u00fcsselwort wird nicht mehr unterst\u00fctzt. #: debug/Compiler.java:426 -The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Die Klasse Client wurde in EthernetClient umbenannt +The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Die Klasse Client wurde in EthernetClient umbenannt. #: debug/Compiler.java:420 -The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Die Klasse Server wurde in EthernetServer umbenannt +The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Die Klasse Server wurde in EthernetServer umbenannt. #: debug/Compiler.java:432 -The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Die Klasse Udp wurde in EthernetUdp umbenannt +The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Die Klasse Udp wurde in EthernetUdp umbenannt. #: Base.java:192 The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=Es folgt eine Fehlermeldung, aber Arduino sollte weiterhin funktionieren. @@ -1016,7 +1016,7 @@ The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreat #: Base.java:1054 Base.java:2674 #, java-format -The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=Der Libraryname "{0}" kann nicht verwendet werden.\nSie d\u00fcrfen nur Zeichen oder Zahlen enthalten, keine Sonderzeichen\n(nur ASCII Zeichen, keine Leerzeichen und keine Zahl am Anfang) +The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=Der Bibliotheksname "{0}" kann nicht verwendet werden.\nSie d\u00fcrfen nur Zeichen oder Zahlen enthalten, keine Sonderzeichen\n(nur ASCII-Zeichen, keine Leerzeichen und keine Zahl am Anfang) #: Sketch.java:374 The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=Die Hauptdatei kann keine Dateierweiterungen nutzen.\n(Es ist vielleicht an der Zeit, sich auf eine "echte" Programmierumgebung einzustellen) @@ -1059,10 +1059,10 @@ Troubleshooting=Fehlersuche Turkish=T\u00fcrkisch #: ../../../processing/app/Editor.java:2507 -Type\ board\ password\ to\ access\ its\ console=Tippe das Boardpasswort ein, um die Konsole aufzurufen +Type\ board\ password\ to\ access\ its\ console=Tippen Sie das Platinenpasswort ein, um die Konsole aufzurufen #: ../../../processing/app/Sketch.java:1673 -Type\ board\ password\ to\ upload\ a\ new\ sketch=Tippe das Boardpasswort ein, um einen neuen Sketch hochzuladen +Type\ board\ password\ to\ upload\ a\ new\ sketch=Tippen Sie das Platinenpasswort ein, um einen neuen Sketch hochzuladen #: ../../../processing/app/Preferences.java:118 Ukrainian=Ukrainisch @@ -1109,7 +1109,7 @@ Upload\ canceled.=Hochladen abgebrochen. Upload\ cancelled=Hochladen abgebrochen #: Editor.java:2378 -Uploading\ to\ I/O\ Board...=Hochladen zum I/O Board... +Uploading\ to\ I/O\ Board...=Hochladen zur E/A-Platine... #: Sketch.java:1622 Uploading...=Hochladen... @@ -1126,13 +1126,13 @@ Using\ library\ {0}\ in\ folder\:\ {1}\ {2}=Verwende die Bibliothek {0} im Ordne #: ../../../processing/app/debug/Compiler.java:320 #, java-format -Using\ previously\ compiled\ file\:\ {0}=Verwende die bereits \u00fcbersetzte Datei\: {0} +Using\ previously\ compiled\ file\:\ {0}=Verwende die zuvor kompilierte Datei\: {0} #: EditorToolbar.java:41 EditorToolbar.java:46 Verify=Verifizieren #: Editor.java:609 -Verify\ /\ Compile=Pr\u00fcfen / \u00dcbersetzen +Verify\ /\ Compile=\u00dcberpr\u00fcfen / Kompilieren #: Preferences.java:400 Verify\ code\ after\ upload=Nach dem Hochladen Code \u00fcberpr\u00fcfen @@ -1150,13 +1150,13 @@ Warning=Warnung Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() wurde in Wire.read() umbenannt #: debug/Compiler.java:438 -Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() wurde in Wire.write() umbenannt +Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() wurde in Wire.write() umbenannt. #: FindReplace.java:105 Wrap\ Around=Umbruch #: debug/Uploader.java:213 -Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=Falscher Microcontroller gefunden. Ist das richtige Board im Men\u00fc Werkzeuge > Board ausgew\u00e4hlt? +Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=Falscher Mikrocontroller gefunden. Ist die richtige Platine im Men\u00fc Werkzeuge > Platine ausgew\u00e4hlt? #: Preferences.java:77 UpdateCheck.java:108 Yes=Ja @@ -1189,7 +1189,7 @@ You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day ZIP\ files\ or\ folders=ZIP-Dateien oder Ordner #: Base.java:2661 -Zip\ doesn't\ contain\ a\ library=Zip enth\u00e4lt keine Library +Zip\ doesn't\ contain\ a\ library=Zip enth\u00e4lt keine Bibliothek #: Sketch.java:364 #, java-format @@ -1197,22 +1197,22 @@ Zip\ doesn't\ contain\ a\ library=Zip enth\u00e4lt keine Library #: SketchCode.java:258 #, java-format -"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" enth\u00e4lt unzul\u00e4ssige Zeichen. Wenn dieser Code mit einer \u00e4lteren Version\nvon Arduino erstellt wurde, k\u00f6nnen Sie den Sketch \u00fcber Werkzeuge -> Kodierung korrigieren\n& neu laden auf UTF-8-Kodierung umstellen.\nWenn das nicht funktioniert, m\u00fcssen Sie die unzul\u00e4ssigen Zeichen von Hand l\u00f6schen,\num diese Warnung abzuschalten. +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 -\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nSeit Arduino 0019 ist die Ethernet-Library von der SPI Bibliothek anh\u00e4ngig.\nEs sieht so aus, als w\u00fcrden Sie diese benutzen oder eine Library einsetzen, welche von der SPI-Library abh\u00e4ngt.\n\n +\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nSeit Arduino 0019 ist die Ethernet-Bibliothek von der SPI-Bibliothek abh\u00e4ngig.\nEs sieht so aus, als w\u00fcrden Sie diese benutzen oder eine Bibliothek einsetzen, welche von der SPI-Bibliothek abh\u00e4ngt.\n\n #: debug/Compiler.java:415 -\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nSeit Arduino 1.0 wird 'BYTE' nicht weiter unterst\u00fctzt.\nBitte stattdessen Serial.write() verwenden.\n\n +\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nSeit Arduino 1.0 wird der 'BYTE' Schl\u00fcsselwort nicht mehr unterst\u00fctzt.\nBitte verwenden Sie stattdessen Serial.write().\n\n #: debug/Compiler.java:427 -\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nSeit Arduino 1.0 hei\u00dft die Klasse "Client" in der Ethernet-Library "EthernetClient" umbenannt.\n\n +\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nMit Arduino 1.0 wurde die Klasse "Client" in der Ethernet-Bibliothek in "EthernetClient" umbenannt.\n\n #: debug/Compiler.java:421 -\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nSeit Arduino 1.0 hei\u00dft die Klasse "Server" in der Ethernet-Library "EthernetServer" umbenannt.\n\n +\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nMit Arduino 1.0 wurde die Klasse "Server" in der Ethernet-Bibliothek in "EthernetServer" umbenannt.\n\n #: debug/Compiler.java:433 -\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=\nSeit Arduino 1.0 hei\u00dft die Klasse "Udp" in der Ethernet-Library "EthernetUdp" umbenannt.\n\n +\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=\nMit Arduino 1.0 wurde die Klasse "Udp" in der Ethernet-Bibliothek in "EthernetUdp" umbenannt.\n\n #: debug/Compiler.java:445 \nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nSeit Arduino 1.0 hei\u00dft die Funktion "Wire.receive()" "Wire.read()", um mit anderen Bibliotheken konsistent zu sein.\n\n @@ -1224,7 +1224,7 @@ Zip\ doesn't\ contain\ a\ library=Zip enth\u00e4lt keine Library baud=Baud #: Preferences.java:389 -compilation\ =\u00dcbersetzung +compilation\ =Kompilierung #: ../../../processing/app/NetworkMonitor.java:111 connected\!=Verbunden\! @@ -1278,7 +1278,7 @@ serialMenu\ is\ null=serialMenu ist null #: debug/Uploader.java:195 #, java-format -the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=Der gew\u00e4hlte serielle Port {0} existiert nicht oder das Board ist nicht angeschlossen +the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=Der gew\u00e4hlte serielle Port {0} existiert nicht oder die Platine ist nicht angeschlossen #: Preferences.java:391 upload=Hochladen diff --git a/arduino-core/src/processing/app/i18n/Resources_el_GR.po b/arduino-core/src/processing/app/i18n/Resources_el_GR.po index f6cf8a9d7..342e5c9c5 100644 --- a/arduino-core/src/processing/app/i18n/Resources_el_GR.po +++ b/arduino-core/src/processing/app/i18n/Resources_el_GR.po @@ -9,8 +9,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Greek (Greece) (http://www.transifex.com/projects/p/arduino-ide-15/language/el_GR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -139,6 +139,12 @@ msgstr "" msgid "Arduino AVR Boards" msgstr "" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -1140,12 +1146,6 @@ msgstr "" msgid "Problem with rename" msgstr "" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "" @@ -1713,10 +1713,10 @@ msgstr "" #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." -msgstr "Το {0} περιέχει άγνωστους χαρακτήρες. Αν αυτός ο κώδικας δημιουργήθηκε από παλαιότερη έκδοση επεξεργασίας, χρειάζεται να χρησιμοποιήσετε τα Εργαλεία -> Διόρθωση ωδικοποίησης & Ανανέωση Σχεδίου με χρήση UTF-8. Σε άλλη περίπτωση πρέπει να αφαιρέσετε τους άγνωστους χαρακτήρες για να μην ξαναεμφανιστεί αυτό το μήνυμα." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." +msgstr "" #: debug/Compiler.java:409 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_el_GR.properties b/arduino-core/src/processing/app/i18n/Resources_el_GR.properties index 733212607..687120610 100644 --- a/arduino-core/src/processing/app/i18n/Resources_el_GR.properties +++ b/arduino-core/src/processing/app/i18n/Resources_el_GR.properties @@ -4,7 +4,7 @@ # # Translators: # , 2012. -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Greek (Greece) (http\://www.transifex.com/projects/p/arduino-ide-15/language/el_GR/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: el_GR\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Greek (Greece) (http\://www.transifex.com/projects/p/arduino-ide-15/language/el_GR/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: el_GR\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(\u0391\u03c0\u03b1\u03b9\u03c4\u03b5\u03af\u03c4\u03b1\u03b9 \u03b5\u03c0\u03b1\u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03c4\u03bf\u03c5 Arduino) @@ -84,6 +84,9 @@ Aragonese=\u0391\u03c1\u03b1\u03b3\u03bf\u03bd\u03af\u03b1\u03c2 #: ../../../processing/app/I18n.java:82 !Arduino\ AVR\ Boards= +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=\u03a4\u03bf Arduino \u03b4\u03b5\u03bd \u03b5\u03ba\u03c4\u03b5\u03bb\u03b5\u03af\u03c4\u03b1\u03b9, \u03b4\u03b9\u03cc\u03c4\u03b9 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\n\u03bd\u03b1 \u03c6\u03c4\u03b9\u03ac\u03be\u03b5\u03b9 \u03ad\u03bd\u03b1 \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03b5\u03b9 \u03c4\u03b9\u03c2 \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03c3\u03b1\u03c2. @@ -812,9 +815,6 @@ Problem\ getting\ data\ folder=\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 #: Sketch.java:355 Sketch.java:362 Sketch.java:373 !Problem\ with\ rename= -#: Editor.java:2137 -!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= - #: ../../../processing/app/I18n.java:86 !Processor= @@ -1197,7 +1197,7 @@ Zip\ doesn't\ contain\ a\ library=\u03a4\u03bf \u03c3\u03c5\u03bc\u03c0\u03b9\u0 #: SketchCode.java:258 #, java-format -"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.=\u03a4\u03bf {0} \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03b5\u03b9 \u03ac\u03b3\u03bd\u03c9\u03c3\u03c4\u03bf\u03c5\u03c2 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03b5\u03c2. \u0391\u03bd \u03b1\u03c5\u03c4\u03cc\u03c2 \u03bf \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03b8\u03b7\u03ba\u03b5 \u03b1\u03c0\u03cc \u03c0\u03b1\u03bb\u03b1\u03b9\u03cc\u03c4\u03b5\u03c1\u03b7 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7 \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2, \u03c7\u03c1\u03b5\u03b9\u03ac\u03b6\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c4\u03b1 \u0395\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03b1 -> \u0394\u03b9\u03cc\u03c1\u03b8\u03c9\u03c3\u03b7 \u03c9\u03b4\u03b9\u03ba\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\u03c2 & \u0391\u03bd\u03b1\u03bd\u03ad\u03c9\u03c3\u03b7 \u03a3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 \u03bc\u03b5 \u03c7\u03c1\u03ae\u03c3\u03b7 UTF-8. \u03a3\u03b5 \u03ac\u03bb\u03bb\u03b7 \u03c0\u03b5\u03c1\u03af\u03c0\u03c4\u03c9\u03c3\u03b7 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b1\u03c6\u03b1\u03b9\u03c1\u03ad\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf\u03c5\u03c2 \u03ac\u03b3\u03bd\u03c9\u03c3\u03c4\u03bf\u03c5\u03c2 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03bc\u03b7\u03bd \u03be\u03b1\u03bd\u03b1\u03b5\u03bc\u03c6\u03b1\u03bd\u03b9\u03c3\u03c4\u03b5\u03af \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03bc\u03ae\u03bd\u03c5\u03bc\u03b1. +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 !\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n= diff --git a/arduino-core/src/processing/app/i18n/Resources_en.po b/arduino-core/src/processing/app/i18n/Resources_en.po index 21bc354a1..355dad557 100644 --- a/arduino-core/src/processing/app/i18n/Resources_en.po +++ b/arduino-core/src/processing/app/i18n/Resources_en.po @@ -8,9 +8,9 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" -"Language-Team: English\n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" +"Language-Team: English (http://www.transifex.com/projects/p/arduino-ide-15/language/en/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -37,7 +37,7 @@ msgstr "(edit only when Arduino is not running)" msgid "" "--verbose, --verbose-upload and --verbose-build can only be used together " "with --verify or --upload" -msgstr "" +msgstr "--verbose, --verbose-upload and --verbose-build can only be used together with --verify or --upload" #: Sketch.java:746 msgid ".pde -> .ino" @@ -108,6 +108,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "An error occurred while trying to fix the file encoding.\nDo not attempt to save this sketch as it may overwrite\nthe old version. Use Open to re-open the sketch and try again.\n" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "An error occurred while uploading the sketch" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "An error occurred while verifying the sketch" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "An error occurred while verifying/uploading the sketch" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -196,7 +210,7 @@ msgstr "Argument required for --curdir" #: ../../../processing/app/Base.java:385 msgid "Argument required for --get-pref" -msgstr "" +msgstr "Argument required for --get-pref" #: ../../../processing/app/Base.java:363 msgid "Argument required for --port" @@ -218,6 +232,10 @@ msgstr "Armenian" msgid "Asturian" msgstr "Asturian" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "Authorization required" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "Auto Format" @@ -259,6 +277,10 @@ msgstr "Bad error line: {0}" msgid "Bad file selected" msgstr "Bad file selected" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "Bad sketch primary file or bad sketch directory structure" + #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "Basque" @@ -322,7 +344,12 @@ msgstr "Burning bootloader to I/O Board (this may take a minute)..." #: ../../../processing/app/Base.java:379 #, java-format msgid "Can only pass one of: {0}" -msgstr "" +msgstr "Can only pass one of: {0}" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" +msgstr "Can't find the sketch in the specified path" #: ../../../processing/app/Preferences.java:92 msgid "Canadian French" @@ -339,7 +366,7 @@ msgstr "Cannot Rename" #: ../../../processing/app/Base.java:465 msgid "Cannot specify any sketch files" -msgstr "" +msgstr "Cannot specify any sketch files" #: SerialMonitor.java:112 msgid "Carriage return" @@ -596,6 +623,11 @@ msgstr "Done Saving." msgid "Done burning bootloader." msgstr "Done burning bootloader." +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "Done compiling" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "Done compiling." @@ -604,6 +636,10 @@ msgstr "Done compiling." msgid "Done printing." msgstr "Done printing." +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "Done uploading" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "Done uploading." @@ -707,6 +743,10 @@ msgstr "Error while burning bootloader." msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "Error while burning bootloader: missing '{0}' configuration parameter" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "Error while compiling: missing '{0}' configuration parameter" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -716,11 +756,25 @@ msgstr "Error while loading code {0}" msgid "Error while printing." msgstr "Error while printing." +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "Error while uploading" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "Error while uploading: missing '{0}' configuration parameter" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "Error while verifying" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "Error while verifying/uploading" + #: Preferences.java:93 msgid "Estonian" msgstr "Estonian" @@ -793,9 +847,10 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "For information on installing libraries, see: http://arduino.cc/en/Guide/Libraries\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " -msgstr "Forcing reset using 1200bps open/close on port " +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" +msgstr "Forcing reset using 1200bps open/close on port {0}" #: Preferences.java:95 msgid "French" @@ -945,7 +1000,7 @@ msgstr "Lithuaninan" #: ../../../processing/app/Sketch.java:1684 msgid "Low memory available, stability problems may occur." -msgstr "" +msgstr "Low memory available, stability problems may occur." #: Preferences.java:107 msgid "Marathi" @@ -959,6 +1014,10 @@ msgstr "Message" msgid "Missing the */ from the end of a /* comment */" msgstr "Missing the */ from the end of a /* comment */" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "Mode not supported" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "More preferences can be edited directly in the file" @@ -967,6 +1026,10 @@ msgstr "More preferences can be edited directly in the file" msgid "Moving" msgstr "Moving" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "Multiple files not supported" + #: ../../../processing/app/Base.java:395 msgid "Must specify exactly one sketch file" msgstr "Must specify exactly one sketch file" @@ -1011,6 +1074,10 @@ msgstr "Next Tab" msgid "No" msgstr "No" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "No athorization data found" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "No board selected; please choose a board from the Tools > Board menu." @@ -1019,6 +1086,10 @@ msgstr "No board selected; please choose a board from the Tools > Board menu." msgid "No changes necessary for Auto Format." msgstr "No changes necessary for Auto Format." +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "No command line parameters found" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "No files were added to the sketch." @@ -1031,6 +1102,10 @@ msgstr "No launcher available" msgid "No line ending" msgstr "No line ending" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "No parameters" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "No really, time for some fresh air for you." @@ -1040,6 +1115,15 @@ msgstr "No really, time for some fresh air for you." msgid "No reference available for \"{0}\"" msgstr "No reference available for \"{0}\"" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "No sketch" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "No sketchbook" + #: ../../../processing/app/Sketch.java:204 msgid "No valid code files found" msgstr "No valid code files found" @@ -1080,6 +1164,10 @@ msgstr "OK" msgid "One file added to the sketch." msgstr "One file added to the sketch." +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "Only --verify, --upload or --get-pref are supported" + #: EditorToolbar.java:41 msgid "Open" msgstr "Open" @@ -1135,7 +1223,7 @@ msgstr "Please install JDK 1.5 or later" #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 msgid "Please select a programmer from Tools->Programmer menu" -msgstr "" +msgstr "Please select a programmer from Tools->Programmer menu" #: Preferences.java:110 msgid "Polish" @@ -1299,13 +1387,17 @@ msgstr "Save changes to \"{0}\"? " msgid "Save sketch folder as..." msgstr "Save sketch folder as..." +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "Save when verifying or uploading" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "Saving..." #: ../../../processing/app/FindReplace.java:131 msgid "Search all Sketch Tabs" -msgstr "" +msgstr "Search all Sketch Tabs" #: Base.java:1909 msgid "Select (or create new) folder for sketches..." @@ -1418,6 +1510,10 @@ msgstr "Sketchbook folder disappeared" msgid "Sketchbook location:" msgstr "Sketchbook location:" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "Sketchbook path not defined" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "Sketches (*.ino, *.pde)" @@ -1468,6 +1564,10 @@ msgstr "Tamil" msgid "The 'BYTE' keyword is no longer supported." msgstr "The 'BYTE' keyword is no longer supported." +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "The --upload option supports only one file at a time" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "The Client class has been renamed EthernetClient." @@ -1555,7 +1655,7 @@ msgstr "The sketchbook folder no longer exists.\nArduino will switch to the defa msgid "" "Third-party platform.txt does not define compiler.path. Please report this " "to the third-party hardware maintainer." -msgstr "" +msgstr "Third-party platform.txt does not define compiler.path. Please report this to the third-party hardware maintainer." #: Sketch.java:1075 msgid "" @@ -1790,9 +1890,9 @@ msgstr "\".{0}\" is not a valid extension." #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." msgstr "\"{0}\" contains unrecognized characters.If this code was created with an older version of Arduino,you may need to use Tools -> Fix Encoding & Reload to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the bad characters to get rid of this warning." #: debug/Compiler.java:409 @@ -1903,17 +2003,6 @@ msgstr "name is null" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "readBytesUntil() byte buffer is too small for the {0} bytes up to and including char {1}" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "removeCode: internal error.. could not find code" - #: Editor.java:932 msgid "serialMenu is null" msgstr "serialMenu is null" diff --git a/arduino-core/src/processing/app/i18n/Resources_en.properties b/arduino-core/src/processing/app/i18n/Resources_en.properties index bf587e839..269c7e7c0 100644 --- a/arduino-core/src/processing/app/i18n/Resources_en.properties +++ b/arduino-core/src/processing/app/i18n/Resources_en.properties @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: English\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: en\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: English (http\://www.transifex.com/projects/p/arduino-ide-15/language/en/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: en\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ (requires restart of Arduino) @@ -18,7 +18,7 @@ (edit\ only\ when\ Arduino\ is\ not\ running)=(edit only when Arduino is not running) #: ../../../processing/app/Base.java:468 -!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= +--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload=--verbose, --verbose-upload and --verbose-build can only be used together with --verify or --upload #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -62,6 +62,17 @@ Albanian=Albanian #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=An error occurred while trying to fix the file encoding.\nDo not attempt to save this sketch as it may overwrite\nthe old version. Use Open to re-open the sketch and try again.\n +#: ../../../processing/app/BaseNoGui.java:528 +An\ error\ occurred\ while\ uploading\ the\ sketch=An error occurred while uploading the sketch + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +An\ error\ occurred\ while\ verifying\ the\ sketch=An error occurred while verifying the sketch + +#: ../../../processing/app/BaseNoGui.java:521 +An\ error\ occurred\ while\ verifying/uploading\ the\ sketch=An error occurred while verifying/uploading the sketch + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=An unknown error occurred while trying to load\nplatform-specific code for your machine. @@ -118,7 +129,7 @@ Argument\ required\ for\ --board=Argument required for --board Argument\ required\ for\ --curdir=Argument required for --curdir #: ../../../processing/app/Base.java:385 -!Argument\ required\ for\ --get-pref= +Argument\ required\ for\ --get-pref=Argument required for --get-pref #: ../../../processing/app/Base.java:363 Argument\ required\ for\ --port=Argument required for --port @@ -135,6 +146,9 @@ Armenian=Armenian #: ../../../processing/app/Preferences.java:138 Asturian=Asturian +#: ../../../processing/app/debug/Compiler.java:145 +Authorization\ required=Authorization required + #: tools/AutoFormat.java:91 Auto\ Format=Auto Format @@ -166,6 +180,9 @@ Bad\ error\ line\:\ {0}=Bad error line\: {0} #: Editor.java:2136 Bad\ file\ selected=Bad file selected +#: ../../../processing/app/debug/Compiler.java:89 +Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure=Bad sketch primary file or bad sketch directory structure + #: ../../../processing/app/Preferences.java:149 Basque=Basque @@ -212,7 +229,11 @@ Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Burning boo #: ../../../processing/app/Base.java:379 #, java-format -!Can\ only\ pass\ one\ of\:\ {0}= +Can\ only\ pass\ one\ of\:\ {0}=Can only pass one of\: {0} + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +Can't\ find\ the\ sketch\ in\ the\ specified\ path=Can't find the sketch in the specified path #: ../../../processing/app/Preferences.java:92 Canadian\ French=Canadian French @@ -225,7 +246,7 @@ Cancel=Cancel Cannot\ Rename=Cannot Rename #: ../../../processing/app/Base.java:465 -!Cannot\ specify\ any\ sketch\ files= +Cannot\ specify\ any\ sketch\ files=Cannot specify any sketch files #: SerialMonitor.java:112 Carriage\ return=Carriage return @@ -410,12 +431,19 @@ Done\ Saving.=Done Saving. #: Editor.java:2510 Done\ burning\ bootloader.=Done burning bootloader. +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +Done\ compiling=Done compiling + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=Done compiling. #: Editor.java:2564 Done\ printing.=Done printing. +#: ../../../processing/app/BaseNoGui.java:514 +Done\ uploading=Done uploading + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=Done uploading. @@ -494,6 +522,9 @@ Error\ while\ burning\ bootloader.=Error while burning bootloader. #: ../../../processing/app/Editor.java:2555 Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=Error while burning bootloader\: missing '{0}' configuration parameter +#: ../../../../../app/src/processing/app/Editor.java:1940 +Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter=Error while compiling\: missing '{0}' configuration parameter + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=Error while loading code {0} @@ -501,10 +532,21 @@ Error\ while\ loading\ code\ {0}=Error while loading code {0} #: Editor.java:2567 Error\ while\ printing.=Error while printing. +#: ../../../processing/app/BaseNoGui.java:528 +Error\ while\ uploading=Error while uploading + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=Error while uploading\: missing '{0}' configuration parameter +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +Error\ while\ verifying=Error while verifying + +#: ../../../processing/app/BaseNoGui.java:521 +Error\ while\ verifying/uploading=Error while verifying/uploading + #: Preferences.java:93 Estonian=Estonian @@ -558,8 +600,9 @@ Fix\ Encoding\ &\ Reload=Fix Encoding & Reload #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=For information on installing libraries, see\: http\://arduino.cc/en/Guide/Libraries\n -#: debug/BasicUploader.java:80 -Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =Forcing reset using 1200bps open/close on port +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}=Forcing reset using 1200bps open/close on port {0} #: Preferences.java:95 French=French @@ -664,7 +707,7 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Library add Lithuaninan=Lithuaninan #: ../../../processing/app/Sketch.java:1684 -!Low\ memory\ available,\ stability\ problems\ may\ occur.= +Low\ memory\ available,\ stability\ problems\ may\ occur.=Low memory available, stability problems may occur. #: Preferences.java:107 Marathi=Marathi @@ -675,12 +718,18 @@ Message=Message #: ../../../processing/app/preproc/PdePreprocessor.java:412 Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Missing the */ from the end of a /* comment */ +#: ../../../processing/app/BaseNoGui.java:455 +Mode\ not\ supported=Mode not supported + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=More preferences can be edited directly in the file #: Editor.java:2156 Moving=Moving +#: ../../../processing/app/BaseNoGui.java:484 +Multiple\ files\ not\ supported=Multiple files not supported + #: ../../../processing/app/Base.java:395 Must\ specify\ exactly\ one\ sketch\ file=Must specify exactly one sketch file @@ -714,12 +763,18 @@ Next\ Tab=Next Tab #: Preferences.java:78 UpdateCheck.java:108 No=No +#: ../../../processing/app/debug/Compiler.java:146 +No\ athorization\ data\ found=No athorization data found + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=No board selected; please choose a board from the Tools > Board menu. #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=No changes necessary for Auto Format. +#: ../../../processing/app/BaseNoGui.java:665 +No\ command\ line\ parameters\ found=No command line parameters found + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=No files were added to the sketch. @@ -729,6 +784,9 @@ No\ launcher\ available=No launcher available #: SerialMonitor.java:112 No\ line\ ending=No line ending +#: ../../../processing/app/BaseNoGui.java:665 +No\ parameters=No parameters + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=No really, time for some fresh air for you. @@ -736,6 +794,13 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=No really, time for some fre #, java-format No\ reference\ available\ for\ "{0}"=No reference available for "{0}" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +No\ sketch=No sketch + +#: ../../../processing/app/BaseNoGui.java:428 +No\ sketchbook=No sketchbook + #: ../../../processing/app/Sketch.java:204 No\ valid\ code\ files\ found=No valid code files found @@ -765,6 +830,9 @@ OK=OK #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=One file added to the sketch. +#: ../../../processing/app/BaseNoGui.java:455 +Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported=Only --verify, --upload or --get-pref are supported + #: EditorToolbar.java:41 Open=Open @@ -806,7 +874,7 @@ Please\ install\ JDK\ 1.5\ or\ later=Please install JDK 1.5 or later #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 -!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= +Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu=Please select a programmer from Tools->Programmer menu #: Preferences.java:110 Polish=Polish @@ -929,11 +997,14 @@ Save\ changes\ to\ "{0}"?\ \ =Save changes to "{0}"? #: Sketch.java:825 Save\ sketch\ folder\ as...=Save sketch folder as... +#: ../../../../../app/src/processing/app/Preferences.java:425 +Save\ when\ verifying\ or\ uploading=Save when verifying or uploading + #: Editor.java:2270 Editor.java:2308 Saving...=Saving... #: ../../../processing/app/FindReplace.java:131 -!Search\ all\ Sketch\ Tabs= +Search\ all\ Sketch\ Tabs=Search all Sketch Tabs #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=Select (or create new) folder for sketches... @@ -1013,6 +1084,9 @@ Sketchbook\ folder\ disappeared=Sketchbook folder disappeared #: Preferences.java:315 Sketchbook\ location\:=Sketchbook location\: +#: ../../../processing/app/BaseNoGui.java:428 +Sketchbook\ path\ not\ defined=Sketchbook path not defined + #: ../../../processing/app/Base.java:785 Sketches\ (*.ino,\ *.pde)=Sketches (*.ino, *.pde) @@ -1047,6 +1121,9 @@ Tamil=Tamil #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=The 'BYTE' keyword is no longer supported. +#: ../../../processing/app/BaseNoGui.java:484 +The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time=The --upload option supports only one file at a time + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=The Client class has been renamed EthernetClient. @@ -1090,7 +1167,7 @@ The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=The sketchbook folder no longer exists.\nArduino will switch to the default sketchbook\nlocation, and create a new sketchbook folder if\nnecessary. Arduino will then stop talking about\nhimself in the third person. #: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= +Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.=Third-party platform.txt does not define compiler.path. Please report this to the third-party hardware maintainer. #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=This file has already been copied to the\nlocation from which where you're trying to add it.\nI ain't not doin nuthin'. @@ -1319,13 +1396,6 @@ name\ is\ null=name is null #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() byte buffer is too small for the {0} bytes up to and including char {1} - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: internal error.. could not find code - #: Editor.java:932 serialMenu\ is\ null=serialMenu is null diff --git a/arduino-core/src/processing/app/i18n/Resources_en_GB.po b/arduino-core/src/processing/app/i18n/Resources_en_GB.po index 42da2feb1..7e014d41c 100644 --- a/arduino-core/src/processing/app/i18n/Resources_en_GB.po +++ b/arduino-core/src/processing/app/i18n/Resources_en_GB.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/arduino-ide-15/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -138,6 +138,12 @@ msgstr "Arduino ARM (32-bits) Boards" msgid "Arduino AVR Boards" msgstr "Arduino AVR Boards" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -355,7 +361,7 @@ msgstr "Copy as HTML" #: ../../../processing/app/EditorStatus.java:455 msgid "Copy error messages" -msgstr "" +msgstr "Copy error messages" #: Editor.java:1165 Editor.java:2715 msgid "Copy for Forum" @@ -436,7 +442,7 @@ msgstr "Could not re-save sketch" msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "Could not read color theme settings.\nYou'll need to reinstall Arduino." +msgstr "" #: Preferences.java:219 msgid "" @@ -531,7 +537,7 @@ msgstr "Discard all changes and reload sketch?" #: ../../../processing/app/Preferences.java:438 msgid "Display line numbers" -msgstr "" +msgstr "Display line numbers" #: Editor.java:2064 msgid "Don't Save" @@ -901,7 +907,7 @@ msgstr "Message" #: ../../../processing/app/preproc/PdePreprocessor.java:412 msgid "Missing the */ from the end of a /* comment */" -msgstr "" +msgstr "Missing the */ from the end of a /* comment */" #: Preferences.java:449 msgid "More preferences can be edited directly in the file" @@ -1139,12 +1145,6 @@ msgstr "Problem uploading to board. See http://www.arduino.cc/en/Guide/Troubles msgid "Problem with rename" msgstr "Problem with rename" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "Arduino can only open its own sketches\nand other files ending in .ino or .pde" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "Processor" @@ -1355,7 +1355,7 @@ msgstr "Sketchbook location:" #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" -msgstr "" +msgstr "Sketches (*.ino, *.pde)" #: ../../../processing/app/Preferences.java:152 msgid "Slovenian" @@ -1601,12 +1601,12 @@ msgstr "Use external editor" #: ../../../processing/app/debug/Compiler.java:94 #, java-format msgid "Using library {0} in folder: {1} {2}" -msgstr "" +msgstr "Using library {0} in folder: {1} {2}" #: ../../../processing/app/debug/Compiler.java:320 #, java-format msgid "Using previously compiled file: {0}" -msgstr "" +msgstr "Using previously compiled file: {0}" #: EditorToolbar.java:41 EditorToolbar.java:46 msgid "Verify" @@ -1712,10 +1712,10 @@ msgstr "\".{0}\" is not a valid extension." #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." -msgstr "\"{0}\" contains unrecognised characters.If this code was created with an older version of Arduino,you may need to use Tools -> Fix Encoding & Reload to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the bad characters to get rid of this warning." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." +msgstr "" #: debug/Compiler.java:409 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_en_GB.properties b/arduino-core/src/processing/app/i18n/Resources_en_GB.properties index 48b19ee98..90fc40597 100644 --- a/arduino-core/src/processing/app/i18n/Resources_en_GB.properties +++ b/arduino-core/src/processing/app/i18n/Resources_en_GB.properties @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: English (United Kingdom) (http\://www.transifex.com/projects/p/arduino-ide-15/language/en_GB/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: en_GB\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: English (United Kingdom) (http\://www.transifex.com/projects/p/arduino-ide-15/language/en_GB/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: en_GB\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ (requires restart of Arduino) @@ -83,6 +83,9 @@ Arduino\ ARM\ (32-bits)\ Boards=Arduino ARM (32-bits) Boards #: ../../../processing/app/I18n.java:82 Arduino\ AVR\ Boards=Arduino AVR Boards +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino cannot run because it could not\ncreate a folder to store your settings. @@ -240,7 +243,7 @@ Copy=Copy Copy\ as\ HTML=Copy as HTML #: ../../../processing/app/EditorStatus.java:455 -!Copy\ error\ messages= +Copy\ error\ messages=Copy error messages #: Editor.java:1165 Editor.java:2715 Copy\ for\ Forum=Copy for Forum @@ -297,7 +300,7 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=Could not re-save sketch #: Theme.java:52 -Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Could not read color theme settings.\nYou'll need to reinstall Arduino. +!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Could not read default settings.\nYou'll need to reinstall Arduino. @@ -364,7 +367,7 @@ Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ Discard\ all\ changes\ and\ reload\ sketch?=Discard all changes and reload sketch? #: ../../../processing/app/Preferences.java:438 -!Display\ line\ numbers= +Display\ line\ numbers=Display line numbers #: Editor.java:2064 Don't\ Save=Don't Save @@ -634,7 +637,7 @@ Marathi=Marathi Message=Message #: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Missing the */ from the end of a /* comment */ #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=More preferences can be edited directly in the file @@ -811,9 +814,6 @@ Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troublesh #: Sketch.java:355 Sketch.java:362 Sketch.java:373 Problem\ with\ rename=Problem with rename -#: Editor.java:2137 -Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Arduino can only open its own sketches\nand other files ending in .ino or .pde - #: ../../../processing/app/I18n.java:86 Processor=Processor @@ -964,7 +964,7 @@ Sketchbook\ folder\ disappeared=Sketchbook folder disappeared Sketchbook\ location\:=Sketchbook location\: #: ../../../processing/app/Base.java:785 -!Sketches\ (*.ino,\ *.pde)= +Sketches\ (*.ino,\ *.pde)=Sketches (*.ino, *.pde) #: ../../../processing/app/Preferences.java:152 Slovenian=Slovenian @@ -1121,11 +1121,11 @@ Use\ external\ editor=Use external editor #: ../../../processing/app/debug/Compiler.java:94 #, java-format -!Using\ library\ {0}\ in\ folder\:\ {1}\ {2}= +Using\ library\ {0}\ in\ folder\:\ {1}\ {2}=Using library {0} in folder\: {1} {2} #: ../../../processing/app/debug/Compiler.java:320 #, java-format -!Using\ previously\ compiled\ file\:\ {0}= +Using\ previously\ compiled\ file\:\ {0}=Using previously compiled file\: {0} #: EditorToolbar.java:41 EditorToolbar.java:46 Verify=Verify @@ -1196,7 +1196,7 @@ Zip\ doesn't\ contain\ a\ library=Zip doesn't contain a library #: SketchCode.java:258 #, java-format -"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" contains unrecognised characters.If this code was created with an older version of Arduino,you may need to use Tools -> Fix Encoding & Reload to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the bad characters to get rid of this warning. +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 \nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nAs of Arduino 0019, the Ethernet library depends on the SPI library.\nYou appear to be using it or another library that depends on the SPI library.\n\n diff --git a/arduino-core/src/processing/app/i18n/Resources_es.po b/arduino-core/src/processing/app/i18n/Resources_es.po index 78058959c..7bfcc1b06 100644 --- a/arduino-core/src/processing/app/i18n/Resources_es.po +++ b/arduino-core/src/processing/app/i18n/Resources_es.po @@ -10,8 +10,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/arduino-ide-15/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -140,6 +140,12 @@ msgstr "Placas Arduino AR; (32 bits)" msgid "Arduino AVR Boards" msgstr "Placas Arduino AVR" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -161,7 +167,7 @@ msgstr "Arduino necesita JDK ( no solo JRE) para funcionar.\nPor favor, instale #: ../../../processing/app/EditorStatus.java:471 msgid "Arduino: " -msgstr "" +msgstr "Arduino:" #: Sketch.java:588 #, java-format @@ -174,11 +180,11 @@ msgstr "¿Seguro que quieres borrar este programa?" #: ../../../processing/app/Preferences.java:137 msgid "Armenian" -msgstr "" +msgstr "Armenio" #: ../../../processing/app/Preferences.java:138 msgid "Asturian" -msgstr "" +msgstr "Asturiano" #: tools/AutoFormat.java:91 msgid "Auto Format" @@ -223,7 +229,7 @@ msgstr "Fichero mal Seleccionado" #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" -msgstr "" +msgstr "Beloruso" #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 @@ -243,7 +249,7 @@ msgstr "Placa:" #: ../../../processing/app/Preferences.java:140 msgid "Bosnian" -msgstr "" +msgstr "Bosnio" #: SerialMonitor.java:112 msgid "Both NL & CR" @@ -304,19 +310,19 @@ msgstr "Comprobar actualizaciones al iniciar" #: ../../../processing/app/Preferences.java:142 msgid "Chinese (China)" -msgstr "" +msgstr "Chino (China)" #: ../../../processing/app/Preferences.java:142 msgid "Chinese (Hong Kong)" -msgstr "" +msgstr "Chino (Hong Kong)" #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" -msgstr "" +msgstr "Chino (Taiwan)" #: ../../../processing/app/Preferences.java:143 msgid "Chinese (Taiwan) (Big5)" -msgstr "" +msgstr "Chino (Taiwan) (Big5)" #: Preferences.java:88 msgid "Chinese Simplified" @@ -357,7 +363,7 @@ msgstr "Copiar como HTML" #: ../../../processing/app/EditorStatus.java:455 msgid "Copy error messages" -msgstr "" +msgstr "Copiar mensajes de error" #: Editor.java:1165 Editor.java:2715 msgid "Copy for Forum" @@ -398,7 +404,7 @@ msgstr "No pude borrar {0}" #: ../../../processing/app/debug/TargetPlatform.java:74 #, java-format msgid "Could not find boards.txt in {0}. Is it pre-1.5?" -msgstr "" +msgstr "No se pudo encontrar boards.txt en {0}. Es pre-1.5?" #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 #, java-format @@ -438,7 +444,7 @@ msgstr "No se pudo salvar de nuevo el programa." msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "No se pudieron leer las preferencias de color.\nNecesitarás reinstalar Procesamiento." +msgstr "" #: Preferences.java:219 msgid "" @@ -533,7 +539,7 @@ msgstr "¿Descartar todos los cambios y recargar el programa?" #: ../../../processing/app/Preferences.java:438 msgid "Display line numbers" -msgstr "" +msgstr "Mostrar números de línea" #: Editor.java:2064 msgid "Don't Save" @@ -565,7 +571,7 @@ msgstr "Holandés" #: ../../../processing/app/Preferences.java:144 msgid "Dutch (Netherlands)" -msgstr "" +msgstr "Holandés (Holanda)" #: Editor.java:1130 msgid "Edit" @@ -585,7 +591,7 @@ msgstr "Inglés" #: ../../../processing/app/Preferences.java:145 msgid "English (United Kingdom)" -msgstr "" +msgstr "Ingles (Reino Unido)" #: Editor.java:1062 msgid "Environment" @@ -616,7 +622,7 @@ msgstr "Error interno del serie.{0}()" #: ../../../processing/app/Base.java:1232 msgid "Error loading libraries" -msgstr "" +msgstr "Error cargando librerias" #: ../../../processing/app/debug/TargetPlatform.java:95 #: ../../../processing/app/debug/TargetPlatform.java:106 @@ -656,7 +662,7 @@ msgstr "Error quemando bootloader" #: ../../../processing/app/Editor.java:2555 msgid "Error while burning bootloader: missing '{0}' configuration parameter" -msgstr "" +msgstr "Error mientras se cargaba el bootloader: falta parametro de configuración '{0}'" #: SketchCode.java:83 #, java-format @@ -678,7 +684,7 @@ msgstr "Estonio" #: ../../../processing/app/Preferences.java:146 msgid "Estonian (Estonia)" -msgstr "" +msgstr "Estonio (Estonia)" #: Editor.java:516 msgid "Examples" @@ -726,7 +732,7 @@ msgstr "Buscar:" #: ../../../processing/app/Preferences.java:147 msgid "Finnish" -msgstr "" +msgstr "Finés" #: tools/FixEncoding.java:41 tools/FixEncoding.java:58 #: tools/FixEncoding.java:79 @@ -777,7 +783,7 @@ msgstr "" #: ../../../processing/app/Sketch.java:1651 #, java-format msgid "Global variables use {0} bytes of dynamic memory." -msgstr "" +msgstr "Variables globales usan {0} bytes de memoria dinamica." #: Preferences.java:98 msgid "Greek" @@ -850,7 +856,7 @@ msgid "" "disable this in the Preferences dialog.\n" "\n" "Save sketch and update its extension?" -msgstr "" +msgstr "En Arduino 1.0, la extension por defecto ah cambiado de .pde a .ino. Los mnevos proyectos (incluidos aquellos creados mediante \"Guarsdar como\") usaran la nueva extensión. La extensión de los proyectos existentes se actualizara al guardar, pero puedes desactivar esta función desde el menu de Preferencias\n\nGuardar proyecto y actualizar su extensión?" #: Editor.java:1216 Editor.java:2757 msgid "Increase Indent" @@ -863,7 +869,7 @@ msgstr "Indonesio" #: ../../../processing/app/Base.java:1204 #, java-format msgid "Invalid library found in {0}: {1}" -msgstr "" +msgstr "Libreria invalidad encontrada en {0}: {1}" #: Preferences.java:102 msgid "Italian" @@ -919,7 +925,7 @@ msgstr "Nombre del nuevo fichero:" #: ../../../processing/app/Preferences.java:149 msgid "Nepali" -msgstr "" +msgstr "Nepalí" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 msgid "Network upload using programmer not supported" @@ -980,12 +986,12 @@ msgstr "No hay referencia disponible para \"{0}\"" #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." -msgstr "" +msgstr "No se encontraron nucleos configurados validos! Saliendo..." #: ../../../processing/app/debug/TargetPackage.java:63 #, java-format msgid "No valid hardware definitions found in folder {0}." -msgstr "" +msgstr "No se encontraron definiciones de hardware validas en la carpeta {0}." #: Base.java:191 msgid "Non-fatal error while setting the Look & Feel." @@ -1040,7 +1046,7 @@ msgstr "Configurar Página" #: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 msgid "Password:" -msgstr "" +msgstr "Contraseña:" #: Editor.java:1189 Editor.java:2731 msgid "Paste" @@ -1064,19 +1070,19 @@ msgstr "Polaco" #: ../../../processing/app/Editor.java:718 msgid "Port" -msgstr "" +msgstr "Puerto" #: ../../../processing/app/Preferences.java:151 msgid "Portugese" -msgstr "" +msgstr "Portugues" #: ../../../processing/app/Preferences.java:127 msgid "Portuguese (Brazil)" -msgstr "" +msgstr "Portugues (Brasil)" #: ../../../processing/app/Preferences.java:128 msgid "Portuguese (Portugal)" -msgstr "" +msgstr "Portugues (Portugal)" #: Preferences.java:295 Editor.java:583 msgid "Preferences" @@ -1141,12 +1147,6 @@ msgstr "Problema subiendo a la placa. Visita http://www.arduino.cc/en/Guide/Trou msgid "Problem with rename" msgstr "Problema al renombrar" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "El procesador sólo puede abrir sus propios programas\ny otros ficheros terminados en .ino o .pde" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "Procesador" @@ -1357,11 +1357,11 @@ msgstr "Localización de proyecto" #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" -msgstr "" +msgstr "Sketches (*.ino, *.pde)" #: ../../../processing/app/Preferences.java:152 msgid "Slovenian" -msgstr "" +msgstr "Esloveno" #: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967 msgid "" @@ -1391,7 +1391,7 @@ msgstr "Sol" #: ../../../processing/app/Preferences.java:153 msgid "Swedish" -msgstr "" +msgstr "Sueco" #: Preferences.java:84 msgid "System Default" @@ -1517,11 +1517,11 @@ msgstr "Turco" #: ../../../processing/app/Editor.java:2507 msgid "Type board password to access its console" -msgstr "" +msgstr "Teclee la contraseña de la placa para acceder a su consola" #: ../../../processing/app/Sketch.java:1673 msgid "Type board password to upload a new sketch" -msgstr "" +msgstr "Teclee la contraseña de la placa para subir un nuevo proyecto" #: ../../../processing/app/Preferences.java:118 msgid "Ukrainian" @@ -1534,15 +1534,15 @@ msgstr "" #: ../../../processing/app/NetworkMonitor.java:130 msgid "Unable to connect: retrying" -msgstr "" +msgstr "Imposible conectarse: reintentando" #: ../../../processing/app/Editor.java:2526 msgid "Unable to connect: wrong password?" -msgstr "" +msgstr "Imposible conectar: contraseña incorrecta?" #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" -msgstr "" +msgstr "Imposible abrir el monitor serial" #: Sketch.java:1432 #, java-format @@ -1582,7 +1582,7 @@ msgstr "Subida Cancelada." #: ../../../processing/app/Sketch.java:1678 msgid "Upload cancelled" -msgstr "" +msgstr "Carga cancelada" #: Editor.java:2378 msgid "Uploading to I/O Board..." @@ -1603,12 +1603,12 @@ msgstr "Usar editor externo" #: ../../../processing/app/debug/Compiler.java:94 #, java-format msgid "Using library {0} in folder: {1} {2}" -msgstr "" +msgstr "Utilizando biblioteca {0} en carpeta: {1} {2}" #: ../../../processing/app/debug/Compiler.java:320 #, java-format msgid "Using previously compiled file: {0}" -msgstr "" +msgstr "Utilizando archivo previamente compilado: {0}" #: EditorToolbar.java:41 EditorToolbar.java:46 msgid "Verify" @@ -1624,7 +1624,7 @@ msgstr "Verificar código después de subir" #: ../../../processing/app/Preferences.java:154 msgid "Vietnamese" -msgstr "" +msgstr "Vietnamés" #: Editor.java:1105 msgid "Visit Arduino.cc" @@ -1714,10 +1714,10 @@ msgstr "\".{0}\" no es una extensión válida" #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." -msgstr "\"{0}\" contiene caracteres irreconocibles. Si este código fue creado con una versión anterior del procesador, necesitará usar Herramientas > Reparar Codificación & Recargar para actualizar el programa para usar la codificación UTF-8. Sino, necesitará borrar los caracteres erróneos para eliminar este aviso." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." +msgstr "" #: debug/Compiler.java:409 msgid "" @@ -1780,7 +1780,7 @@ msgstr "Compilación" #: ../../../processing/app/NetworkMonitor.java:111 msgid "connected!" -msgstr "" +msgstr "Conectado!" #: Sketch.java:540 msgid "createNewFile() returned false" @@ -1788,7 +1788,7 @@ msgstr "createNewFile() retornó FALSO." #: ../../../processing/app/EditorStatus.java:469 msgid "enabled in File > Preferences." -msgstr "" +msgstr "activala desde Archivo > Preferencias" #: Base.java:2090 msgid "environment" diff --git a/arduino-core/src/processing/app/i18n/Resources_es.properties b/arduino-core/src/processing/app/i18n/Resources_es.properties index ec8328a4e..5a4b97eab 100644 --- a/arduino-core/src/processing/app/i18n/Resources_es.properties +++ b/arduino-core/src/processing/app/i18n/Resources_es.properties @@ -5,7 +5,7 @@ # Translators: # , 2012. # , 2012. -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Spanish (http\://www.transifex.com/projects/p/arduino-ide-15/language/es/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: es\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Spanish (http\://www.transifex.com/projects/p/arduino-ide-15/language/es/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: es\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(requiere reiniciar Arduino) @@ -85,6 +85,9 @@ Arduino\ ARM\ (32-bits)\ Boards=Placas Arduino AR; (32 bits) #: ../../../processing/app/I18n.java:82 Arduino\ AVR\ Boards=Placas Arduino AVR +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino no se puede ejecutar porque \u23ce\nno se pudo crear una carpeta para guardar la configuraci\u00f3n. @@ -95,7 +98,7 @@ Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ you Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino necesita JDK ( no solo JRE) para funcionar.\nPor favor, instale el JDK 1.5 o superior.\nPara mas informaci\u00f3n, consulte las referencias. #: ../../../processing/app/EditorStatus.java:471 -!Arduino\:\ = +Arduino\:\ =Arduino\: #: Sketch.java:588 #, java-format @@ -105,10 +108,10 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u00bfSeguro que quieres borrar "{ Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u00bfSeguro que quieres borrar este programa? #: ../../../processing/app/Preferences.java:137 -!Armenian= +Armenian=Armenio #: ../../../processing/app/Preferences.java:138 -!Asturian= +Asturian=Asturiano #: tools/AutoFormat.java:91 Auto\ Format=Auto Formato @@ -142,7 +145,7 @@ Bad\ error\ line\:\ {0}=L\u00ednea error\: {0} Bad\ file\ selected=Fichero mal Seleccionado #: ../../../processing/app/Preferences.java:139 -!Belarusian= +Belarusian=Beloruso #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 @@ -156,7 +159,7 @@ Board=Placa Board\:\ =Placa\: #: ../../../processing/app/Preferences.java:140 -!Bosnian= +Bosnian=Bosnio #: SerialMonitor.java:112 Both\ NL\ &\ CR=Ambos NL & CR @@ -202,16 +205,16 @@ Catalan=Catal\u00e1n Check\ for\ updates\ on\ startup=Comprobar actualizaciones al iniciar #: ../../../processing/app/Preferences.java:142 -!Chinese\ (China)= +Chinese\ (China)=Chino (China) #: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= +Chinese\ (Hong\ Kong)=Chino (Hong Kong) #: ../../../processing/app/Preferences.java:144 -!Chinese\ (Taiwan)= +Chinese\ (Taiwan)=Chino (Taiwan) #: ../../../processing/app/Preferences.java:143 -!Chinese\ (Taiwan)\ (Big5)= +Chinese\ (Taiwan)\ (Big5)=Chino (Taiwan) (Big5) #: Preferences.java:88 Chinese\ Simplified=Chino Simplificado @@ -242,7 +245,7 @@ Copy=Copiar Copy\ as\ HTML=Copiar como HTML #: ../../../processing/app/EditorStatus.java:455 -!Copy\ error\ messages= +Copy\ error\ messages=Copiar mensajes de error #: Editor.java:1165 Editor.java:2715 Copy\ for\ Forum=Copiar al Foro @@ -274,7 +277,7 @@ Could\ not\ delete\ {0}=No pude borrar {0} #: ../../../processing/app/debug/TargetPlatform.java:74 #, java-format -!Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?= +Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?=No se pudo encontrar boards.txt en {0}. Es pre-1.5? #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 #, java-format @@ -299,7 +302,7 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=No se pudo salvar de nuevo el programa. #: Theme.java:52 -Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=No se pudieron leer las preferencias de color.\nNecesitar\u00e1s reinstalar Procesamiento. +!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=No se pueden leer los ajustes predeterminados.\nNecesita reinstalar Arduino @@ -366,7 +369,7 @@ Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ Discard\ all\ changes\ and\ reload\ sketch?=\u00bfDescartar todos los cambios y recargar el programa? #: ../../../processing/app/Preferences.java:438 -!Display\ line\ numbers= +Display\ line\ numbers=Mostrar n\u00fameros de l\u00ednea #: Editor.java:2064 Don't\ Save=No Guardar @@ -390,7 +393,7 @@ Done\ uploading.=Subido Dutch=Holand\u00e9s #: ../../../processing/app/Preferences.java:144 -!Dutch\ (Netherlands)= +Dutch\ (Netherlands)=Holand\u00e9s (Holanda) #: Editor.java:1130 Edit=Editar @@ -405,7 +408,7 @@ Editor\ language\:\ =Editor de idioma\: English=Ingl\u00e9s #: ../../../processing/app/Preferences.java:145 -!English\ (United\ Kingdom)= +English\ (United\ Kingdom)=Ingles (Reino Unido) #: Editor.java:1062 Environment=Entorno @@ -429,7 +432,7 @@ Error\ getting\ the\ Arduino\ data\ folder.=Error obteniendo los datos de la car Error\ inside\ Serial.{0}()=Error interno del serie.{0}() #: ../../../processing/app/Base.java:1232 -!Error\ loading\ libraries= +Error\ loading\ libraries=Error cargando librerias #: ../../../processing/app/debug/TargetPlatform.java:95 #: ../../../processing/app/debug/TargetPlatform.java:106 @@ -459,7 +462,7 @@ Error\ touching\ serial\ port\ ''{0}''.=Error usando el puerto "{0}" Error\ while\ burning\ bootloader.=Error quemando bootloader #: ../../../processing/app/Editor.java:2555 -!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=Error mientras se cargaba el bootloader\: falta parametro de configuraci\u00f3n '{0}' #: SketchCode.java:83 #, java-format @@ -476,7 +479,7 @@ Error\ while\ printing.=Error al imprimir. Estonian=Estonio #: ../../../processing/app/Preferences.java:146 -!Estonian\ (Estonia)= +Estonian\ (Estonia)=Estonio (Estonia) #: Editor.java:516 Examples=Ejemplos @@ -512,7 +515,7 @@ Find...=Buscar... Find\:=Buscar\: #: ../../../processing/app/Preferences.java:147 -!Finnish= +Finnish=Fin\u00e9s #: tools/FixEncoding.java:41 tools/FixEncoding.java:58 #: tools/FixEncoding.java:79 @@ -548,7 +551,7 @@ Getting\ Started=Inicio R\u00e1pido #: ../../../processing/app/Sketch.java:1651 #, java-format -!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.= +Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=Variables globales usan {0} bytes de memoria dinamica. #: Preferences.java:98 Greek=Griego @@ -596,7 +599,7 @@ Ignoring\ sketch\ with\ bad\ name=Ignorando trabajo con nombre incorrecto. Import\ Library...=Importar Librer\u00eda... #: ../../../processing/app/Sketch.java:736 -!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?= +In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=En Arduino 1.0, la extension por defecto ah cambiado de .pde a .ino. Los mnevos proyectos (incluidos aquellos creados mediante "Guarsdar como") usaran la nueva extensi\u00f3n. La extensi\u00f3n de los proyectos existentes se actualizara al guardar, pero puedes desactivar esta funci\u00f3n desde el menu de Preferencias\n\nGuardar proyecto y actualizar su extensi\u00f3n? #: Editor.java:1216 Editor.java:2757 Increase\ Indent=Aumentar Sangr\u00eda @@ -606,7 +609,7 @@ Indonesian=Indonesio #: ../../../processing/app/Base.java:1204 #, java-format -!Invalid\ library\ found\ in\ {0}\:\ {1}= +Invalid\ library\ found\ in\ {0}\:\ {1}=Libreria invalidad encontrada en {0}\: {1} #: Preferences.java:102 Italian=Italiano @@ -648,7 +651,7 @@ Moving=Moviendo Name\ for\ new\ file\:=Nombre del nuevo fichero\: #: ../../../processing/app/Preferences.java:149 -!Nepali= +Nepali=Nepal\u00ed #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 !Network\ upload\ using\ programmer\ not\ supported= @@ -694,11 +697,11 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=No, en serio, toma un poco d No\ reference\ available\ for\ "{0}"=No hay referencia disponible para "{0}" #: ../../../processing/app/Base.java:309 -!No\ valid\ configured\ cores\ found\!\ Exiting...= +No\ valid\ configured\ cores\ found\!\ Exiting...=No se encontraron nucleos configurados validos\! Saliendo... #: ../../../processing/app/debug/TargetPackage.java:63 #, java-format -!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.= +No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=No se encontraron definiciones de hardware validas en la carpeta {0}. #: Base.java:191 Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Error no fatal mientras se configuraba el Look & Feel @@ -738,7 +741,7 @@ Open...=Abrir... Page\ Setup=Configurar P\u00e1gina #: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 -!Password\:= +Password\:=Contrase\u00f1a\: #: Editor.java:1189 Editor.java:2731 Paste=Pegar @@ -756,16 +759,16 @@ Please\ install\ JDK\ 1.5\ or\ later=Por favor, instale el JDK 1.5 o superior Polish=Polaco #: ../../../processing/app/Editor.java:718 -!Port= +Port=Puerto #: ../../../processing/app/Preferences.java:151 -!Portugese= +Portugese=Portugues #: ../../../processing/app/Preferences.java:127 -!Portuguese\ (Brazil)= +Portuguese\ (Brazil)=Portugues (Brasil) #: ../../../processing/app/Preferences.java:128 -!Portuguese\ (Portugal)= +Portuguese\ (Portugal)=Portugues (Portugal) #: Preferences.java:295 Editor.java:583 Preferences=Preferencias @@ -813,9 +816,6 @@ Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troublesh #: Sketch.java:355 Sketch.java:362 Sketch.java:373 Problem\ with\ rename=Problema al renombrar -#: Editor.java:2137 -Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=El procesador s\u00f3lo puede abrir sus propios programas\ny otros ficheros terminados en .ino o .pde - #: ../../../processing/app/I18n.java:86 Processor=Procesador @@ -966,10 +966,10 @@ Sketchbook\ folder\ disappeared=La carpeta Sketchbook no ha sido encontrada Sketchbook\ location\:=Localizaci\u00f3n de proyecto #: ../../../processing/app/Base.java:785 -!Sketches\ (*.ino,\ *.pde)= +Sketches\ (*.ino,\ *.pde)=Sketches (*.ino, *.pde) #: ../../../processing/app/Preferences.java:152 -!Slovenian= +Slovenian=Esloveno #: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967 Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Algunos ficheros son Solo Lectura, asi que necesitar\u00e1\nvolver a guardar en otra ubicaci\u00f3n\ne intentarlo de nuevo. @@ -988,7 +988,7 @@ Spanish=Espa\u00f1ol Sunshine=Sol #: ../../../processing/app/Preferences.java:153 -!Swedish= +Swedish=Sueco #: Preferences.java:84 System\ Default=Ajustes Iniciales @@ -1060,10 +1060,10 @@ Troubleshooting=Problemas Turkish=Turco #: ../../../processing/app/Editor.java:2507 -!Type\ board\ password\ to\ access\ its\ console= +Type\ board\ password\ to\ access\ its\ console=Teclee la contrase\u00f1a de la placa para acceder a su consola #: ../../../processing/app/Sketch.java:1673 -!Type\ board\ password\ to\ upload\ a\ new\ sketch= +Type\ board\ password\ to\ upload\ a\ new\ sketch=Teclee la contrase\u00f1a de la placa para subir un nuevo proyecto #: ../../../processing/app/Preferences.java:118 Ukrainian=Ucraniano @@ -1073,13 +1073,13 @@ Ukrainian=Ucraniano !Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?= #: ../../../processing/app/NetworkMonitor.java:130 -!Unable\ to\ connect\:\ retrying= +Unable\ to\ connect\:\ retrying=Imposible conectarse\: reintentando #: ../../../processing/app/Editor.java:2526 -!Unable\ to\ connect\:\ wrong\ password?= +Unable\ to\ connect\:\ wrong\ password?=Imposible conectar\: contrase\u00f1a incorrecta? #: ../../../processing/app/Editor.java:2512 -!Unable\ to\ open\ serial\ monitor= +Unable\ to\ open\ serial\ monitor=Imposible abrir el monitor serial #: Sketch.java:1432 #, java-format @@ -1107,7 +1107,7 @@ Upload\ Using\ Programmer=Subir Usando Programador Upload\ canceled.=Subida Cancelada. #: ../../../processing/app/Sketch.java:1678 -!Upload\ cancelled= +Upload\ cancelled=Carga cancelada #: Editor.java:2378 Uploading\ to\ I/O\ Board...=Subiendo a la Placa I/O... @@ -1123,11 +1123,11 @@ Use\ external\ editor=Usar editor externo #: ../../../processing/app/debug/Compiler.java:94 #, java-format -!Using\ library\ {0}\ in\ folder\:\ {1}\ {2}= +Using\ library\ {0}\ in\ folder\:\ {1}\ {2}=Utilizando biblioteca {0} en carpeta\: {1} {2} #: ../../../processing/app/debug/Compiler.java:320 #, java-format -!Using\ previously\ compiled\ file\:\ {0}= +Using\ previously\ compiled\ file\:\ {0}=Utilizando archivo previamente compilado\: {0} #: EditorToolbar.java:41 EditorToolbar.java:46 Verify=Verificar @@ -1139,7 +1139,7 @@ Verify\ /\ Compile=Verificar / Compilar Verify\ code\ after\ upload=Verificar c\u00f3digo despu\u00e9s de subir #: ../../../processing/app/Preferences.java:154 -!Vietnamese= +Vietnamese=Vietnam\u00e9s #: Editor.java:1105 Visit\ Arduino.cc=Visita Arduino.cc @@ -1198,7 +1198,7 @@ Zip\ doesn't\ contain\ a\ library=El fichero Zip no contiene librer\u00edas #: SketchCode.java:258 #, java-format -"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" contiene caracteres irreconocibles. Si este c\u00f3digo fue creado con una versi\u00f3n anterior del procesador, necesitar\u00e1 usar Herramientas > Reparar Codificaci\u00f3n & Recargar para actualizar el programa para usar la codificaci\u00f3n UTF-8. Sino, necesitar\u00e1 borrar los caracteres err\u00f3neos para eliminar este aviso. +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 \nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nComo en Arduino 0019, la librer\u00eda Ethernet depende de la librer\u00eda SPI.\nParece que la estas usando u otra librer\u00eda que depende de la libreria SPI.\n\n @@ -1228,13 +1228,13 @@ baud=baudio compilation\ =Compilaci\u00f3n #: ../../../processing/app/NetworkMonitor.java:111 -!connected\!= +connected\!=Conectado\! #: Sketch.java:540 createNewFile()\ returned\ false=createNewFile() retorn\u00f3 FALSO. #: ../../../processing/app/EditorStatus.java:469 -!enabled\ in\ File\ >\ Preferences.= +enabled\ in\ File\ >\ Preferences.=activala desde Archivo > Preferencias #: Base.java:2090 environment=entorno diff --git a/arduino-core/src/processing/app/i18n/Resources_et.po b/arduino-core/src/processing/app/i18n/Resources_et.po index 789f60c17..28ff4fdef 100644 --- a/arduino-core/src/processing/app/i18n/Resources_et.po +++ b/arduino-core/src/processing/app/i18n/Resources_et.po @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Estonian (http://www.transifex.com/projects/p/arduino-ide-15/language/et/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -137,6 +137,12 @@ msgstr "" msgid "Arduino AVR Boards" msgstr "" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -435,7 +441,7 @@ msgstr "Visandi uuesti salvestamine ebaõnnestus" msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "Ei saa avada värviteema seadeid.\nArduino tuleb uuesti paigaldada." +msgstr "" #: Preferences.java:219 msgid "" @@ -1138,12 +1144,6 @@ msgstr "Probleem plaadile üleslaadimisega. Vaata soovitusi probleemi lahendamis msgid "Problem with rename" msgstr "Probleem nime muutmisega" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "Avada saab ainult oma visandeid ning .ino või .pde laienditega faile." - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "" @@ -1711,10 +1711,10 @@ msgstr "\"{0}\" pole lubatud laiend." #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." -msgstr "\"{0}\" sisaldab tundmatuid tähemärke. Kui see kood on loodud vanema versiooniga, saab selle teisendada UTF-8'ks menüüst Tööriistad -> Paranda kooditabel ning laadi uuesti. Teine variant on vigased märgid käsitsi kustutada." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." +msgstr "" #: debug/Compiler.java:409 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_et.properties b/arduino-core/src/processing/app/i18n/Resources_et.properties index 800bb0356..bd69e11dc 100644 --- a/arduino-core/src/processing/app/i18n/Resources_et.properties +++ b/arduino-core/src/processing/app/i18n/Resources_et.properties @@ -2,7 +2,7 @@ # Copyright (C) 2012 # This file is distributed under the same license as the Arduino package. # Cougar , 2012. -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Estonian (http\://www.transifex.com/projects/p/arduino-ide-15/language/et/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: et\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Estonian (http\://www.transifex.com/projects/p/arduino-ide-15/language/et/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: et\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(vajab Arduino taask\u00e4ivitamist) @@ -82,6 +82,9 @@ Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ sav #: ../../../processing/app/I18n.java:82 !Arduino\ AVR\ Boards= +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Ei saa Arduinot k\u00e4ivitada kuna\nseadete kausta loomine ei \u00f5nnestunud. @@ -296,7 +299,7 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=Visandi uuesti salvestamine eba\u00f5nnestus #: Theme.java:52 -Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Ei saa avada v\u00e4rviteema seadeid.\nArduino tuleb uuesti paigaldada. +!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Ei saa lugeda vaikimisi seadeid.\nArduino tuleb uuesti paigaldada. @@ -810,9 +813,6 @@ Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troublesh #: Sketch.java:355 Sketch.java:362 Sketch.java:373 Problem\ with\ rename=Probleem nime muutmisega -#: Editor.java:2137 -Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Avada saab ainult oma visandeid ning .ino v\u00f5i .pde laienditega faile. - #: ../../../processing/app/I18n.java:86 !Processor= @@ -1195,7 +1195,7 @@ Zip\ doesn't\ contain\ a\ library=ZIP-is pole teeki #: SketchCode.java:258 #, java-format -"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" sisaldab tundmatuid t\u00e4hem\u00e4rke. Kui see kood on loodud vanema versiooniga, saab selle teisendada UTF-8'ks men\u00fc\u00fcst T\u00f6\u00f6riistad -> Paranda kooditabel ning laadi uuesti. Teine variant on vigased m\u00e4rgid k\u00e4sitsi kustutada. +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 \nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nAlates Arduino 0019 on Etherneti teegi kasutamiseks vaja SPI teeki.\nPaistab, et sa kasutad seda v\u00f5i m\u00f5nda muud teeki, mis s\u00f5ltub SPI teegist.\n diff --git a/arduino-core/src/processing/app/i18n/Resources_et_EE.po b/arduino-core/src/processing/app/i18n/Resources_et_EE.po index a9bf9293f..9bf04d313 100644 --- a/arduino-core/src/processing/app/i18n/Resources_et_EE.po +++ b/arduino-core/src/processing/app/i18n/Resources_et_EE.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/arduino-ide-15/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -138,6 +138,12 @@ msgstr "Arduino ARM (32 bit) plaadid" msgid "Arduino AVR Boards" msgstr "Arduino AVR plaadid" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -237,7 +243,7 @@ msgstr "" #: ../../../processing/app/EditorStatus.java:472 msgid "Board: " -msgstr "" +msgstr "Plaat:" #: ../../../processing/app/Preferences.java:140 msgid "Bosnian" @@ -355,7 +361,7 @@ msgstr "Kopeeri HTML-ina" #: ../../../processing/app/EditorStatus.java:455 msgid "Copy error messages" -msgstr "" +msgstr "Kopeeri veateade" #: Editor.java:1165 Editor.java:2715 msgid "Copy for Forum" @@ -436,7 +442,7 @@ msgstr "Visandi uuesti salvestamine ebaõnnestus" msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "Ei saa avada värviteema seadeid.\nArduino tuleb uuesti paigaldada." +msgstr "" #: Preferences.java:219 msgid "" @@ -1139,12 +1145,6 @@ msgstr "Probleem plaadile üleslaadimisega. http://www.arduino.cc/en/Guide/Troub msgid "Problem with rename" msgstr "Probleem nime muutmisega" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "Avada saab ainult oma visandeid ning .ino või .pde laienditega faile." - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "Processor" @@ -1712,10 +1712,10 @@ msgstr "\".{0}\" pole lubatud laiend." #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." -msgstr "\"{0}\" sisaldab tundmatuid tähemärke. Kui see kood on loodud vanema versiooniga, saab selle teisendada UTF-8'ks menüüst Tööriistad -> Paranda kooditabel ning laadi uuesti. Teine variant on vigased märgid käsitsi kustutada." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." +msgstr "" #: debug/Compiler.java:409 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_et_EE.properties b/arduino-core/src/processing/app/i18n/Resources_et_EE.properties index 33b914863..6e3be4339 100644 --- a/arduino-core/src/processing/app/i18n/Resources_et_EE.properties +++ b/arduino-core/src/processing/app/i18n/Resources_et_EE.properties @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Estonian (Estonia) (http\://www.transifex.com/projects/p/arduino-ide-15/language/et_EE/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: et_EE\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Estonian (Estonia) (http\://www.transifex.com/projects/p/arduino-ide-15/language/et_EE/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: et_EE\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ (vajab Arduino taask\u00e4ivitamist) @@ -83,6 +83,9 @@ Arduino\ ARM\ (32-bits)\ Boards=Arduino ARM (32 bit) plaadid #: ../../../processing/app/I18n.java:82 Arduino\ AVR\ Boards=Arduino AVR plaadid +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Ei saa Arduinot k\u00e4ivitada kuna seadete kausta\nloomine ei \u00f5nnestunud. @@ -151,7 +154,7 @@ Board=Plaat !Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= #: ../../../processing/app/EditorStatus.java:472 -!Board\:\ = +Board\:\ =Plaat\: #: ../../../processing/app/Preferences.java:140 !Bosnian= @@ -240,7 +243,7 @@ Copy=Kopeeri Copy\ as\ HTML=Kopeeri HTML-ina #: ../../../processing/app/EditorStatus.java:455 -!Copy\ error\ messages= +Copy\ error\ messages=Kopeeri veateade #: Editor.java:1165 Editor.java:2715 Copy\ for\ Forum=Kopeeri foorumi jaoks @@ -297,7 +300,7 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=Visandi uuesti salvestamine eba\u00f5nnestus #: Theme.java:52 -Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Ei saa avada v\u00e4rviteema seadeid.\nArduino tuleb uuesti paigaldada. +!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Ei saa avada vaikimisi seadeid.\nArduino tuleb uuesti paigaldada. @@ -811,9 +814,6 @@ Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troublesh #: Sketch.java:355 Sketch.java:362 Sketch.java:373 Problem\ with\ rename=Probleem nime muutmisega -#: Editor.java:2137 -Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Avada saab ainult oma visandeid ning .ino v\u00f5i .pde laienditega faile. - #: ../../../processing/app/I18n.java:86 Processor=Processor @@ -1196,7 +1196,7 @@ Zip\ doesn't\ contain\ a\ library=ZIP failis pole teeki #: SketchCode.java:258 #, java-format -"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" sisaldab tundmatuid t\u00e4hem\u00e4rke. Kui see kood on loodud vanema versiooniga, saab selle teisendada UTF-8'ks men\u00fc\u00fcst T\u00f6\u00f6riistad -> Paranda kooditabel ning laadi uuesti. Teine variant on vigased m\u00e4rgid k\u00e4sitsi kustutada. +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 \nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nAlates Arduino 0019 on Etherneti teegi kasutamiseks vaja SPI teeki.\nPaistab, et sa kasutad seda v\u00f5i m\u00f5nda muud teeki, mis s\u00f5ltub SPI teegist.\n\n diff --git a/arduino-core/src/processing/app/i18n/Resources_fa.po b/arduino-core/src/processing/app/i18n/Resources_fa.po index e48e40697..98b711a9c 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fa.po +++ b/arduino-core/src/processing/app/i18n/Resources_fa.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Persian (http://www.transifex.com/projects/p/arduino-ide-15/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,15 +19,15 @@ msgstr "" #: Preferences.java:358 Preferences.java:374 msgid " (requires restart of Arduino)" -msgstr " (نیازمند بازگشایی مجدد نمودن اردئینو)" +msgstr " (نیازمند بازگشایی مجدد نمودن آردئینو)" #: debug/Compiler.java:455 msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "" +msgstr "\"صفحه کلید\" فقط دربردهای آردوینو لئوناردو پشتیبانی می گردد" #: debug/Compiler.java:450 msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "" +msgstr "\"ماوس\" فقط دربردهای آردوینو لئوناردو پشتیبانی می گردد" #: Preferences.java:478 msgid "(edit only when Arduino is not running)" @@ -65,7 +65,7 @@ msgstr "یک پوشه به نام \"{0}\" در حال حاضر موجود است #: Base.java:2690 #, java-format msgid "A library named {0} already exists" -msgstr "" +msgstr "کتابخانه ای با نام {0} در حال حاضر موجود است" #: UpdateCheck.java:103 msgid "" @@ -89,7 +89,7 @@ msgstr "افزودن پرونده..." #: Base.java:963 msgid "Add Library..." -msgstr "" +msgstr "و کتابخانه ..." #: tools/FixEncoding.java:77 msgid "" @@ -106,11 +106,11 @@ msgstr "ایراد ناشناخته‌ای هنگام سعی در بارگیری #: Preferences.java:85 msgid "Arabic" -msgstr "" +msgstr "عربی" #: Preferences.java:86 msgid "Aragonese" -msgstr "" +msgstr "آراگونز" #: tools/Archiver.java:48 msgid "Archive Sketch" @@ -132,10 +132,16 @@ msgstr "بایگانی‌کردن طرح فسخ‌گردید به این دلی #: ../../../processing/app/I18n.java:83 msgid "Arduino ARM (32-bits) Boards" -msgstr "" +msgstr "برد آردئینو آرم (32 بایتی)" #: ../../../processing/app/I18n.java:82 msgid "Arduino AVR Boards" +msgstr "برد آردئینو ای وی آر (avr)" + +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" msgstr "" #: Base.java:1682 @@ -159,7 +165,7 @@ msgstr "آردئینو نیازمند یک JDK کامل (نه فقط یک JRE(\n #: ../../../processing/app/EditorStatus.java:471 msgid "Arduino: " -msgstr "" +msgstr "آردئینو:" #: Sketch.java:588 #, java-format @@ -172,11 +178,11 @@ msgstr "آیا شما مطمئن هستید که می‌خواهید این طر #: ../../../processing/app/Preferences.java:137 msgid "Armenian" -msgstr "" +msgstr "ارمنی" #: ../../../processing/app/Preferences.java:138 msgid "Asturian" -msgstr "" +msgstr "اتریشی" #: tools/AutoFormat.java:91 msgid "Auto Format" @@ -221,7 +227,7 @@ msgstr "پرونده انتخاب‌شدهٔ نامناسب" #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" -msgstr "" +msgstr "بلاروسی" #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 @@ -237,11 +243,11 @@ msgstr "" #: ../../../processing/app/EditorStatus.java:472 msgid "Board: " -msgstr "" +msgstr "برد:" #: ../../../processing/app/Preferences.java:140 msgid "Bosnian" -msgstr "" +msgstr "بوسنیایی" #: SerialMonitor.java:112 msgid "Both NL & CR" @@ -257,11 +263,11 @@ msgstr "ساختن پوشه مخفی شده‌است یا نمی‌توان نو #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" -msgstr "" +msgstr "بلغاری" #: ../../../processing/app/Preferences.java:141 msgid "Burmese (Myanmar)" -msgstr "" +msgstr "برمه ای (میانمار)" #: Editor.java:708 msgid "Burn Bootloader" @@ -277,7 +283,7 @@ msgstr "" #: ../../../processing/app/Preferences.java:92 msgid "Canadian French" -msgstr "" +msgstr "فرانسوی کانادایی" #: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2064 Editor.java:2145 Editor.java:2465 @@ -294,7 +300,7 @@ msgstr "بازگشت Carriage" #: Preferences.java:87 msgid "Catalan" -msgstr "" +msgstr "کاتالانی" #: Preferences.java:419 msgid "Check for updates on startup" @@ -302,27 +308,27 @@ msgstr "بررسی برای به‌روزرسانی‌ها در ابتدای ب #: ../../../processing/app/Preferences.java:142 msgid "Chinese (China)" -msgstr "" +msgstr "چینی (چین)" #: ../../../processing/app/Preferences.java:142 msgid "Chinese (Hong Kong)" -msgstr "" +msgstr "چینی (هنگ کنگ)" #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" -msgstr "" +msgstr "چینی (تایوان)" #: ../../../processing/app/Preferences.java:143 msgid "Chinese (Taiwan) (Big5)" -msgstr "" +msgstr "چینی (تایوان) (Big5)" #: Preferences.java:88 msgid "Chinese Simplified" -msgstr "" +msgstr "چینی ساده" #: Preferences.java:89 msgid "Chinese Traditional" -msgstr "" +msgstr "چینی سنتی" #: Editor.java:521 Editor.java:2024 msgid "Close" @@ -355,7 +361,7 @@ msgstr "رونوشت به عنوان اچ‌تی‌ام‌ال" #: ../../../processing/app/EditorStatus.java:455 msgid "Copy error messages" -msgstr "" +msgstr "پیغام خطا را کپی کنید" #: Editor.java:1165 Editor.java:2715 msgid "Copy for Forum" @@ -396,17 +402,17 @@ msgstr "نمی‌توان {0} را حذف نمود" #: ../../../processing/app/debug/TargetPlatform.java:74 #, java-format msgid "Could not find boards.txt in {0}. Is it pre-1.5?" -msgstr "" +msgstr "نمی تواند پیدا کند Could not find را در {0}. آیا pre-1.5 است؟" #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 #, java-format msgid "Could not find tool {0}" -msgstr "" +msgstr "نمی توان ابزار {0} را یافت" #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 #, java-format msgid "Could not find tool {0} from package {1}" -msgstr "" +msgstr "نمی توان ابزار {0} را از بسته {1} یافت" #: Base.java:1934 #, java-format @@ -436,7 +442,7 @@ msgstr "نمی‌تواند طرح را مجدداً ذخیره نمود" msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "نمی‌توان تنظیمات رنگ را خواند.\nشما می‌بایست که Arduino را مجدداً نصب نمایید." +msgstr "" #: Preferences.java:219 msgid "" @@ -493,11 +499,11 @@ msgid "" "Couldn't find a Board on the selected port. Check that you have the correct " "port selected. If it is correct, try pressing the board's reset button " "after initiating the upload." -msgstr "" +msgstr "بر روی پورت انتخابی بردی یافت نشد. کنترل کنید که آیا پورت صحیح را انتخاب نموده اید. اگر صحیح است سعی کنید دکمه رست برد را پس از شروع بارگذاری فشار دهید." #: ../../../processing/app/Preferences.java:82 msgid "Croatian" -msgstr "" +msgstr "کرواسیایی" #: Editor.java:1149 Editor.java:2699 msgid "Cut" @@ -505,11 +511,11 @@ msgstr "بریدن" #: ../../../processing/app/Preferences.java:83 msgid "Czech" -msgstr "" +msgstr "چکی (زبان کشور چک)" #: Preferences.java:90 msgid "Danish" -msgstr "" +msgstr "دانمارکی" #: Editor.java:1224 Editor.java:2765 msgid "Decrease Indent" @@ -531,7 +537,7 @@ msgstr "دورانداختن همهٔ تغییرات و بارگیری مجدد #: ../../../processing/app/Preferences.java:438 msgid "Display line numbers" -msgstr "" +msgstr "شماره خط را نمایش بده" #: Editor.java:2064 msgid "Don't Save" @@ -559,11 +565,11 @@ msgstr "بارگذاری انجام‌شد." #: Preferences.java:91 msgid "Dutch" -msgstr "" +msgstr "زبان ویرایشگر:" #: ../../../processing/app/Preferences.java:144 msgid "Dutch (Netherlands)" -msgstr "" +msgstr "هلندی" #: Editor.java:1130 msgid "Edit" @@ -575,15 +581,15 @@ msgstr "اندازهٔ قلم ویرایشگر" #: Preferences.java:353 msgid "Editor language: " -msgstr "" +msgstr "زبان ویرایشگر:" #: Preferences.java:92 msgid "English" -msgstr "" +msgstr "انگلیسی" #: ../../../processing/app/Preferences.java:145 msgid "English (United Kingdom)" -msgstr "" +msgstr "انگلیسی (بریتانیا)" #: Editor.java:1062 msgid "Environment" @@ -614,14 +620,14 @@ msgstr "خطای درونی. {0}()" #: ../../../processing/app/Base.java:1232 msgid "Error loading libraries" -msgstr "" +msgstr "خطا حین بارگیری کتابخانه ها" #: ../../../processing/app/debug/TargetPlatform.java:95 #: ../../../processing/app/debug/TargetPlatform.java:106 #: ../../../processing/app/debug/TargetPlatform.java:117 #, java-format msgid "Error loading {0}" -msgstr "" +msgstr "خطا به هنگام بارگیری {0}" #: Serial.java:181 #, java-format @@ -641,12 +647,12 @@ msgstr "خطای به هنگام خواندن پروندهٔ ترجیحات. ل #: ../../../cc/arduino/packages/DiscoveryManager.java:25 msgid "Error starting discovery method: " -msgstr "" +msgstr "خطا در شروع روش اکتشافی:" #: Serial.java:125 #, java-format msgid "Error touching serial port ''{0}''." -msgstr "" +msgstr "خطا به هنگام دسترسی به سریال پورت {0}" #: Editor.java:2512 Editor.java:2516 Editor.java:2520 msgid "Error while burning bootloader." @@ -668,15 +674,15 @@ msgstr "خطا هنگام چاپ‌کردن." #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" -msgstr "" +msgstr "خطا حین بارگذاری: پارامتر پیکربندی '{0}' از دست رفت." #: Preferences.java:93 msgid "Estonian" -msgstr "" +msgstr "استونیایی" #: ../../../processing/app/Preferences.java:146 msgid "Estonian (Estonia)" -msgstr "" +msgstr "استونیایی (استونی)" #: Editor.java:516 msgid "Examples" @@ -696,7 +702,7 @@ msgstr "پرونده" #: Preferences.java:94 msgid "Filipino" -msgstr "" +msgstr "فیلیپینی" #: FindReplace.java:124 FindReplace.java:127 msgid "Find" @@ -724,7 +730,7 @@ msgstr "یافتن:" #: ../../../processing/app/Preferences.java:147 msgid "Finnish" -msgstr "" +msgstr "فنلاندی" #: tools/FixEncoding.java:41 tools/FixEncoding.java:58 #: tools/FixEncoding.java:79 @@ -735,7 +741,7 @@ msgstr "خطازدایی کدگذاری و بارگیری مجدد" msgid "" "For information on installing libraries, see: " "http://arduino.cc/en/Guide/Libraries\n" -msgstr "" +msgstr "برای اطلاعات بیشتر درباره نصب کتابخانه ها مراجعه کنید به : see: http://arduino.cc/en/Guide/Libraries\n" #: debug/BasicUploader.java:80 msgid "Forcing reset using 1200bps open/close on port " @@ -743,7 +749,7 @@ msgstr "" #: Preferences.java:95 msgid "French" -msgstr "" +msgstr "فرانسوی" #: Editor.java:1097 msgid "Frequently Asked Questions" @@ -751,15 +757,15 @@ msgstr "سوال‌های متداول پرسیده‌شده" #: Preferences.java:96 msgid "Galician" -msgstr "" +msgstr "گالیسی" #: ../../../processing/app/Preferences.java:94 msgid "Georgian" -msgstr "" +msgstr "گرجی" #: Preferences.java:97 msgid "German" -msgstr "" +msgstr "آلمانی" #: Editor.java:1054 msgid "Getting Started" @@ -779,7 +785,7 @@ msgstr "" #: Preferences.java:98 msgid "Greek" -msgstr "" +msgstr "یونانی" #: Base.java:2085 msgid "Guide_Environment.html" @@ -799,7 +805,7 @@ msgstr "Guide_Windows.html" #: ../../../processing/app/Preferences.java:95 msgid "Hebrew" -msgstr "" +msgstr "عبری" #: Editor.java:1015 msgid "Help" @@ -807,7 +813,7 @@ msgstr "کمک" #: Preferences.java:99 msgid "Hindi" -msgstr "" +msgstr "هندی" #: Sketch.java:295 msgid "" @@ -821,7 +827,7 @@ msgstr "چه بورخسی هستید شما" #: Preferences.java:100 msgid "Hungarian" -msgstr "" +msgstr "مجار" #: FindReplace.java:96 msgid "Ignore Case" @@ -856,7 +862,7 @@ msgstr "افزایش تورفتگی" #: Preferences.java:101 msgid "Indonesian" -msgstr "" +msgstr "اندونزیایی" #: ../../../processing/app/Base.java:1204 #, java-format @@ -865,35 +871,35 @@ msgstr "" #: Preferences.java:102 msgid "Italian" -msgstr "" +msgstr "ایتالیایی" #: Preferences.java:103 msgid "Japanese" -msgstr "" +msgstr "ژاپنی" #: Preferences.java:104 msgid "Korean" -msgstr "" +msgstr "کره ای" #: Preferences.java:105 msgid "Latvian" -msgstr "" +msgstr "لتوانیایی" #: Base.java:2699 msgid "Library added to your libraries. Check \"Import library\" menu" -msgstr "" +msgstr "این کتابخانه به کتابخانه های شما اضافه گردید. منوی \"وارد سازی کتابخانه\" را کنترل کنید" #: Preferences.java:106 msgid "Lithuaninan" -msgstr "" +msgstr "لیتوانیایی" #: ../../../processing/app/Sketch.java:1660 msgid "Low memory available, stability problems may occur" -msgstr "" +msgstr "حافظه اندکی در دسترس است. ممکن است مشکل عدم پایداری بروز نماید" #: Preferences.java:107 msgid "Marathi" -msgstr "" +msgstr "مراتی" #: Base.java:2112 msgid "Message" @@ -917,7 +923,7 @@ msgstr "نام برای پروندهٔ جدید:" #: ../../../processing/app/Preferences.java:149 msgid "Nepali" -msgstr "" +msgstr "نپالی" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 msgid "Network upload using programmer not supported" @@ -995,7 +1001,7 @@ msgstr "نفی" #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" -msgstr "" +msgstr "نروژی" #: ../../../processing/app/Sketch.java:1656 msgid "" @@ -1006,7 +1012,7 @@ msgstr "" #: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2145 Editor.java:2465 msgid "OK" -msgstr "اوکی" +msgstr "تایید" #: Sketch.java:992 Editor.java:376 msgid "One file added to the sketch." @@ -1038,15 +1044,15 @@ msgstr "تنظیم صفحه" #: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 msgid "Password:" -msgstr "" +msgstr "رمز ورود" #: Editor.java:1189 Editor.java:2731 msgid "Paste" -msgstr "الساق" +msgstr "الصاق" #: Preferences.java:109 msgid "Persian" -msgstr "" +msgstr "فارسی" #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." @@ -1058,23 +1064,23 @@ msgstr "لطفاً JDK ۱.۵ یا بعدتر از آن را نصب کنید" #: Preferences.java:110 msgid "Polish" -msgstr "" +msgstr "لهستانی" #: ../../../processing/app/Editor.java:718 msgid "Port" -msgstr "" +msgstr "پورت" #: ../../../processing/app/Preferences.java:151 msgid "Portugese" -msgstr "" +msgstr "پرتغالی" #: ../../../processing/app/Preferences.java:127 msgid "Portuguese (Brazil)" -msgstr "" +msgstr "پرتغالی (برزیل)" #: ../../../processing/app/Preferences.java:128 msgid "Portuguese (Portugal)" -msgstr "" +msgstr "پرتغالی (پرتغال)" #: Preferences.java:295 Editor.java:583 msgid "Preferences" @@ -1114,11 +1120,11 @@ msgstr "اشکال تنظیم سکو" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 msgid "Problem accessing board folder /www/sd" -msgstr "" +msgstr "اشکال در دسترسی به پشه برد /www/sd" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 msgid "Problem accessing files in folder " -msgstr "" +msgstr "اشکال در دسترسی به پروند ها در پوشه" #: Base.java:1673 msgid "Problem getting data folder" @@ -1139,15 +1145,9 @@ msgstr "اشکال در بارگذاری به برد. http://www.arduino.cc/en/G msgid "Problem with rename" msgstr "مشکل با نام‌گذاری مجدد" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "Arduino فقط می‌تواند طرح‌های خودش را باز کند\nو سایر پرونده‌هایی که با .ino یا .pde پایان می‌پذیرند" - #: ../../../processing/app/I18n.java:86 msgid "Processor" -msgstr "" +msgstr "پردازشگر" #: Editor.java:704 msgid "Programmer" @@ -1192,11 +1192,11 @@ msgstr "جایگزین کردن:" #: Preferences.java:113 msgid "Romanian" -msgstr "" +msgstr "رومانیایی" #: Preferences.java:114 msgid "Russian" -msgstr "" +msgstr "روسی" #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529 #: Editor.java:2064 Editor.java:2468 @@ -1238,7 +1238,7 @@ msgstr "انتخاب همه" #: Base.java:2636 msgid "Select a zip file or a folder containing the library you'd like to add" -msgstr "" +msgstr "یک پرونده زیپ شده یا یک پوشه حاوی فایل کتابخانه ای که می خواهید اضافه کنید انتخاب نمایید" #: Sketch.java:975 msgid "Select an image or other data file to copy to your sketch" @@ -1355,11 +1355,11 @@ msgstr "موقعیت کتاب طرح:" #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" -msgstr "" +msgstr "طرح ها (*.ino, *.pde)" #: ../../../processing/app/Preferences.java:152 msgid "Slovenian" -msgstr "" +msgstr "اسلونیایی" #: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967 msgid "" @@ -1381,7 +1381,7 @@ msgstr "شرمنده، یک طرح (یا پرونده) نام‌دهی شده ب #: Preferences.java:115 msgid "Spanish" -msgstr "" +msgstr "اسپانیایی" #: Base.java:540 msgid "Sunshine" @@ -1389,15 +1389,15 @@ msgstr "طلوع" #: ../../../processing/app/Preferences.java:153 msgid "Swedish" -msgstr "" +msgstr "سوئدی" #: Preferences.java:84 msgid "System Default" -msgstr "" +msgstr "پیش فرض سیستم" #: Preferences.java:116 msgid "Tamil" -msgstr "" +msgstr "تامیل" #: debug/Compiler.java:414 msgid "The 'BYTE' keyword is no longer supported." @@ -1495,7 +1495,7 @@ msgstr "این پرونده در حال حاضر به موضعیتی که\nشم #: ../../../processing/app/EditorStatus.java:467 msgid "This report would have more information with" -msgstr "" +msgstr "این گزارش می تواند شامل اطلاعات بیشتری باشد با" #: Base.java:535 msgid "Time for a Break" @@ -1511,19 +1511,19 @@ msgstr "خطایابی" #: ../../../processing/app/Preferences.java:117 msgid "Turkish" -msgstr "" +msgstr "ترکی استانبولی" #: ../../../processing/app/Editor.java:2507 msgid "Type board password to access its console" -msgstr "" +msgstr " برای ورود به کنسول، رمز ورود برد راتایپ نمایید" #: ../../../processing/app/Sketch.java:1673 msgid "Type board password to upload a new sketch" -msgstr "" +msgstr "برای بارگیری یک طرح جدید، رمز ورود برد راتایپ نمایید" #: ../../../processing/app/Preferences.java:118 msgid "Ukrainian" -msgstr "" +msgstr "اوکراینی" #: ../../../processing/app/Editor.java:2524 #: ../../../processing/app/NetworkMonitor.java:145 @@ -1532,15 +1532,15 @@ msgstr "" #: ../../../processing/app/NetworkMonitor.java:130 msgid "Unable to connect: retrying" -msgstr "" +msgstr "ناتوان از اتصال: تلاش ادامه دارد" #: ../../../processing/app/Editor.java:2526 msgid "Unable to connect: wrong password?" -msgstr "" +msgstr "ناتوان از اتصال: آیا رمز ورود اشتباه است؟" #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" -msgstr "" +msgstr "ناتوان از گشودن نمایشگر سریال" #: Sketch.java:1432 #, java-format @@ -1576,11 +1576,11 @@ msgstr "بارگذاری به کمک پروگرامر" #: Editor.java:2403 Editor.java:2439 msgid "Upload canceled." -msgstr "بارگذاری ابطال گشت." +msgstr "بارگذاری لغو شد." #: ../../../processing/app/Sketch.java:1678 msgid "Upload cancelled" -msgstr "" +msgstr "بارگذاری لغو شد" #: Editor.java:2378 msgid "Uploading to I/O Board..." @@ -1618,11 +1618,11 @@ msgstr "بازبینی / کامپایل" #: Preferences.java:400 msgid "Verify code after upload" -msgstr "" +msgstr "پس از بارگذاری کد را بازبینی کن" #: ../../../processing/app/Preferences.java:154 msgid "Vietnamese" -msgstr "" +msgstr "ویتنامی" #: Editor.java:1105 msgid "Visit Arduino.cc" @@ -1697,11 +1697,11 @@ msgstr "شما به محدودهٔ نام‌گذاری خودکار برای ط #: Base.java:2638 msgid "ZIP files or folders" -msgstr "" +msgstr "پرونده های زیپ شده یا پوشه ها" #: Base.java:2661 msgid "Zip doesn't contain a library" -msgstr "" +msgstr "پرونده زیپ حاوی کتابخانه نیست" #: Sketch.java:364 #, java-format @@ -1712,10 +1712,10 @@ msgstr "\".{0}\" پسوند نامعتبری است." #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." -msgstr "\"{0}\" شامل نویسه‌های ناشناخته‌است. اگر این کد با نسخه‌های قدیمی‌تر Arduino درست‌شده‌است، شما احتمالاً نیازمند هستید که از Tools -> Fix Enconding & Reload برای به‌روزرسانی برای استفاده از کدگذاری UTF-8 استفاده کنید. وگرنه، شما ممکن‌است نیازمند حذف نویسه‌های نامناسب و برای رهایی از این اخطار شوید." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." +msgstr "" #: debug/Compiler.java:409 msgid "" @@ -1778,7 +1778,7 @@ msgstr "کامپایل‌نمودن" #: ../../../processing/app/NetworkMonitor.java:111 msgid "connected!" -msgstr "" +msgstr "اتصال برقرار شد!" #: Sketch.java:540 msgid "createNewFile() returned false" @@ -1798,7 +1798,7 @@ msgstr "http://arduino.cc/" #: ../../../processing/app/debug/Compiler.java:49 msgid "http://github.com/arduino/Arduino/issues" -msgstr "" +msgstr "http://github.com/arduino/Arduino/issues" #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" diff --git a/arduino-core/src/processing/app/i18n/Resources_fa.properties b/arduino-core/src/processing/app/i18n/Resources_fa.properties index 169f590d6..ec25979d2 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fa.properties +++ b/arduino-core/src/processing/app/i18n/Resources_fa.properties @@ -3,16 +3,16 @@ # This file is distributed under the same license as the Arduino IDE package. # Ebrahim Byagowi , 2012. # -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Persian (http\://www.transifex.com/projects/p/arduino-ide-15/language/fa/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fa\nPlural-Forms\: nplurals\=1; plural\=0;\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Persian (http\://www.transifex.com/projects/p/arduino-ide-15/language/fa/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fa\nPlural-Forms\: nplurals\=1; plural\=0;\n #: Preferences.java:358 Preferences.java:374 -\ \ (requires\ restart\ of\ Arduino)=\ (\u0646\u06cc\u0627\u0632\u0645\u0646\u062f \u0628\u0627\u0632\u06af\u0634\u0627\u06cc\u06cc \u0645\u062c\u062f\u062f \u0646\u0645\u0648\u062f\u0646 \u0627\u0631\u062f\u0626\u06cc\u0646\u0648) +\ \ (requires\ restart\ of\ Arduino)=\ (\u0646\u06cc\u0627\u0632\u0645\u0646\u062f \u0628\u0627\u0632\u06af\u0634\u0627\u06cc\u06cc \u0645\u062c\u062f\u062f \u0646\u0645\u0648\u062f\u0646 \u0622\u0631\u062f\u0626\u06cc\u0646\u0648) #: debug/Compiler.java:455 -!'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo= +'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo="\u0635\u0641\u062d\u0647 \u06a9\u0644\u06cc\u062f" \u0641\u0642\u0637 \u062f\u0631\u0628\u0631\u062f\u0647\u0627\u06cc \u0622\u0631\u062f\u0648\u06cc\u0646\u0648 \u0644\u0626\u0648\u0646\u0627\u0631\u062f\u0648 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0645\u06cc \u06af\u0631\u062f\u062f #: debug/Compiler.java:450 -!'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo= +'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo="\u0645\u0627\u0648\u0633" \u0641\u0642\u0637 \u062f\u0631\u0628\u0631\u062f\u0647\u0627\u06cc \u0622\u0631\u062f\u0648\u06cc\u0646\u0648 \u0644\u0626\u0648\u0646\u0627\u0631\u062f\u0648 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0645\u06cc \u06af\u0631\u062f\u062f #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0641\u0642\u0637 \u0628\u0647 \u0647\u0646\u06af\u0627\u0645\u06cc \u06a9\u0647 \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u062f\u0631\u062d\u0627\u0644 \u0627\u062c\u0631\u0627 \u0646\u06cc\u0633\u062a) @@ -36,7 +36,7 @@ A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=\u06cc\u06a9 \u0 #: Base.java:2690 #, java-format -!A\ library\ named\ {0}\ already\ exists= +A\ library\ named\ {0}\ already\ exists=\u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647 \u0627\u06cc \u0628\u0627 \u0646\u0627\u0645 {0} \u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u0645\u0648\u062c\u0648\u062f \u0627\u0633\u062a #: UpdateCheck.java:103 A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=\u0646\u0633\u062e\u0647\u0654 \u062c\u062f\u06cc\u062f \u0627\u0632 \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u0645\u0648\u062c\u0648\u062f \u0627\u0633\u062a\u060c\n\u0645\u0627\u06cc\u0644 \u0647\u0633\u062a\u06cc\u062f \u06a9\u0647 \u0635\u0641\u062d\u0647\u0654 \u0628\u0627\u0631\u06af\u06cc\u0631\u06cc \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u0631\u0627 \u0645\u0634\u0627\u0647\u062f\u0647 \u06a9\u0646\u06cc\u062f\u061f @@ -51,7 +51,7 @@ About\ Arduino=\u062f\u0631\u0628\u0627\u0631\u0647 \u0622\u0631\u062f\u0626\u06 Add\ File...=\u0627\u0641\u0632\u0648\u062f\u0646 \u067e\u0631\u0648\u0646\u062f\u0647... #: Base.java:963 -!Add\ Library...= +Add\ Library...=\u0648 \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647 ... #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=\u062e\u0637\u0627\u06cc\u06cc \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u0627\u0635\u0644\u0627\u062d \u06a9\u062f\u06af\u0630\u0627\u0631\u06cc \u067e\u0631\u0648\u0646\u062f\u0647 \u0631\u062e\u200c\u062f\u0627\u062f.\n\u0633\u0639\u06cc \u0646\u06a9\u0646\u06cc\u062f \u0627\u06cc\u0646 \u0637\u0631\u062d \u0631\u0627 \u0628\u0631 \u0631\u0648\u06cc \u0646\u0633\u062e\u0647\u0654 \u0642\u0628\u0644\u06cc \u0630\u062e\u06cc\u0631\u0647\u0654 \u06a9\u0646\u06cc\u062f.\n\u0627\u0632 \u0628\u0627\u0632\u06a9\u0631\u062f\u0646 \u0631\u0627 \u0628\u0627\u0632\u06a9\u0631\u062f\u0646 \u0645\u062c\u062f\u062f \u0637\u0631\u062d \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0646\u06cc\u062f \u0648 \u062f\u0648\u0628\u0627\u0631\u0647 \u0633\u0639\u06cc \u0646\u0645\u0627\u06cc\u06cc\u062f.\n @@ -60,10 +60,10 @@ An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ atte An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=\u0627\u06cc\u0631\u0627\u062f \u0646\u0627\u0634\u0646\u0627\u062e\u062a\u0647\u200c\u0627\u06cc \u0647\u0646\u06af\u0627\u0645 \u0633\u0639\u06cc \u062f\u0631 \u0628\u0627\u0631\u06af\u06cc\u0631\u06cc \u0631\u062e \u062f\u0627\u062f\n\u06a9\u062f \u062e\u0627\u0635 \u0633\u06a9\u0648 \u0628\u0631\u0627\u06cc \u0645\u0627\u0634\u06cc\u0646 \u0634\u0645\u0627. #: Preferences.java:85 -!Arabic= +Arabic=\u0639\u0631\u0628\u06cc #: Preferences.java:86 -!Aragonese= +Aragonese=\u0622\u0631\u0627\u06af\u0648\u0646\u0632 #: tools/Archiver.java:48 Archive\ Sketch=\u0628\u0627\u06cc\u06af\u0627\u0646\u06cc \u0637\u0631\u062d @@ -78,10 +78,13 @@ Archive\ sketch\ canceled.=\u0628\u0627\u06cc\u06af\u0627\u0646\u06cc\u200c\u06a Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=\u0628\u0627\u06cc\u06af\u0627\u0646\u06cc\u200c\u06a9\u0631\u062f\u0646 \u0637\u0631\u062d \u0641\u0633\u062e\u200c\u06af\u0631\u062f\u06cc\u062f \u0628\u0647 \u0627\u06cc\u0646 \u062f\u0644\u06cc\u0644 \u06a9\u0647\n\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u0637\u0631\u062d \u0631\u0627 \u0628\u0647 \u062f\u0631\u0633\u062a\u06cc \u0630\u062e\u06cc\u0631\u0647 \u0646\u0645\u0648\u062f. #: ../../../processing/app/I18n.java:83 -!Arduino\ ARM\ (32-bits)\ Boards= +Arduino\ ARM\ (32-bits)\ Boards=\u0628\u0631\u062f \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u0622\u0631\u0645 (32 \u0628\u0627\u06cc\u062a\u06cc) #: ../../../processing/app/I18n.java:82 -!Arduino\ AVR\ Boards= +Arduino\ AVR\ Boards=\u0628\u0631\u062f \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u0627\u06cc \u0648\u06cc \u0622\u0631 (avr) + +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=\u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f \u0627\u062c\u0631\u0627 \u0634\u0648\u062f \u0628\u0647 \u0627\u06cc\u0646 \u062f\u0644\u06cc\u0644 \u06a9\u0647 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f\n\u067e\u0648\u0634\u0647\u200c\u0627\u06cc \u0628\u0631\u0627\u06cc \u0630\u062e\u06cc\u0631\u0647\u0654 \u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0634\u0645\u0627 \u0628\u0633\u0627\u0632\u062f. @@ -93,7 +96,7 @@ Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ you Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=\u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u0646\u06cc\u0627\u0632\u0645\u0646\u062f \u06cc\u06a9 JDK \u06a9\u0627\u0645\u0644 (\u0646\u0647 \u0641\u0642\u0637 \u06cc\u06a9 JRE(\n\u0628\u0631\u0627\u06cc \u0627\u062c\u0631\u0627 \u0627\u0633\u062a. \u0644\u0637\u0641\u0627\u064b JDK \u06f1.\u06f5 \u06cc\u0627 \u0628\u0639\u062f \u0627\u0632 \u0622\u0646 \u0631\u0627 \u0646\u0635\u0628 \u06a9\u0646\u06cc\u062f.\n\u0627\u0637\u0644\u0627\u0639\u0627\u062a \u0628\u06cc\u0634\u062a\u0631 \u0631\u0627 \u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u062f\u0631 \u0645\u0631\u062c\u0639 \u06cc\u0627\u0641\u062a. #: ../../../processing/app/EditorStatus.java:471 -!Arduino\:\ = +Arduino\:\ =\u0622\u0631\u062f\u0626\u06cc\u0646\u0648\: #: Sketch.java:588 #, java-format @@ -103,10 +106,10 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u0622\u06cc\u0627 \u0634\u0645\u0 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u0622\u06cc\u0627 \u0634\u0645\u0627 \u0645\u0637\u0645\u0626\u0646 \u0647\u0633\u062a\u06cc\u062f \u06a9\u0647 \u0645\u06cc\u200c\u062e\u0648\u0627\u0647\u06cc\u062f \u0627\u06cc\u0646 \u0637\u0631\u062d \u0631\u0627 \u067e\u0627\u06a9 \u06a9\u0646\u06cc\u062f\u061f #: ../../../processing/app/Preferences.java:137 -!Armenian= +Armenian=\u0627\u0631\u0645\u0646\u06cc #: ../../../processing/app/Preferences.java:138 -!Asturian= +Asturian=\u0627\u062a\u0631\u06cc\u0634\u06cc #: tools/AutoFormat.java:91 Auto\ Format=\u0642\u0627\u0644\u0628\u200c\u0628\u0646\u062f\u06cc \u062e\u0648\u062f\u06a9\u0627\u0631 @@ -140,7 +143,7 @@ Bad\ error\ line\:\ {0}=\u062e\u0637\u0627\u06cc \u0646\u0627\u0645\u0646\u0627\ Bad\ file\ selected=\u067e\u0631\u0648\u0646\u062f\u0647 \u0627\u0646\u062a\u062e\u0627\u0628\u200c\u0634\u062f\u0647\u0654 \u0646\u0627\u0645\u0646\u0627\u0633\u0628 #: ../../../processing/app/Preferences.java:139 -!Belarusian= +Belarusian=\u0628\u0644\u0627\u0631\u0648\u0633\u06cc #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 @@ -151,10 +154,10 @@ Board=\u0628\u0631\u062f !Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= #: ../../../processing/app/EditorStatus.java:472 -!Board\:\ = +Board\:\ =\u0628\u0631\u062f\: #: ../../../processing/app/Preferences.java:140 -!Bosnian= +Bosnian=\u0628\u0648\u0633\u0646\u06cc\u0627\u06cc\u06cc #: SerialMonitor.java:112 Both\ NL\ &\ CR=\u0647\u0631 \u062f\u0648\u06cc NL \u0648 CR @@ -166,10 +169,10 @@ Browse=\u06cc\u0627\u0641\u062a\u0646 Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u0633\u0627\u062e\u062a\u0646 \u067e\u0648\u0634\u0647 \u0645\u062e\u0641\u06cc \u0634\u062f\u0647\u200c\u0627\u0633\u062a \u06cc\u0627 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u0646\u0648\u0634\u062a\u0647 \u0634\u0648\u062f #: ../../../processing/app/Preferences.java:80 -!Bulgarian= +Bulgarian=\u0628\u0644\u063a\u0627\u0631\u06cc #: ../../../processing/app/Preferences.java:141 -!Burmese\ (Myanmar)= +Burmese\ (Myanmar)=\u0628\u0631\u0645\u0647 \u0627\u06cc (\u0645\u06cc\u0627\u0646\u0645\u0627\u0631) #: Editor.java:708 Burn\ Bootloader=\u0633\u0648\u0632\u0627\u0646\u062f\u0646 \u0628\u0648\u062a\u200c\u0644\u0648\u062f\u0631 @@ -181,7 +184,7 @@ Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u0633\u064 !Can't\ open\ source\ sketch\!= #: ../../../processing/app/Preferences.java:92 -!Canadian\ French= +Canadian\ French=\u0641\u0631\u0627\u0646\u0633\u0648\u06cc \u06a9\u0627\u0646\u0627\u062f\u0627\u06cc\u06cc #: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2064 Editor.java:2145 Editor.java:2465 @@ -194,28 +197,28 @@ Cannot\ Rename=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u0646\u0627\u06 Carriage\ return=\u0628\u0627\u0632\u06af\u0634\u062a Carriage #: Preferences.java:87 -!Catalan= +Catalan=\u06a9\u0627\u062a\u0627\u0644\u0627\u0646\u06cc #: Preferences.java:419 Check\ for\ updates\ on\ startup=\u0628\u0631\u0631\u0633\u06cc \u0628\u0631\u0627\u06cc \u0628\u0647\u200c\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc\u200c\u0647\u0627 \u062f\u0631 \u0627\u0628\u062a\u062f\u0627\u06cc \u0628\u0627\u0644\u0627 \u0622\u0645\u062f\u0646 #: ../../../processing/app/Preferences.java:142 -!Chinese\ (China)= +Chinese\ (China)=\u0686\u06cc\u0646\u06cc (\u0686\u06cc\u0646) #: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= +Chinese\ (Hong\ Kong)=\u0686\u06cc\u0646\u06cc (\u0647\u0646\u06af \u06a9\u0646\u06af) #: ../../../processing/app/Preferences.java:144 -!Chinese\ (Taiwan)= +Chinese\ (Taiwan)=\u0686\u06cc\u0646\u06cc (\u062a\u0627\u06cc\u0648\u0627\u0646) #: ../../../processing/app/Preferences.java:143 -!Chinese\ (Taiwan)\ (Big5)= +Chinese\ (Taiwan)\ (Big5)=\u0686\u06cc\u0646\u06cc (\u062a\u0627\u06cc\u0648\u0627\u0646) (Big5) #: Preferences.java:88 -!Chinese\ Simplified= +Chinese\ Simplified=\u0686\u06cc\u0646\u06cc \u0633\u0627\u062f\u0647 #: Preferences.java:89 -!Chinese\ Traditional= +Chinese\ Traditional=\u0686\u06cc\u0646\u06cc \u0633\u0646\u062a\u06cc #: Editor.java:521 Editor.java:2024 Close=\u06cc\u0633\u062a\u0646 @@ -240,7 +243,7 @@ Copy=\u0631\u0648\u0646\u0648\u0634\u062a Copy\ as\ HTML=\u0631\u0648\u0646\u0648\u0634\u062a \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u0627\u0686\u200c\u062a\u06cc\u200c\u0627\u0645\u200c\u0627\u0644 #: ../../../processing/app/EditorStatus.java:455 -!Copy\ error\ messages= +Copy\ error\ messages=\u067e\u06cc\u063a\u0627\u0645 \u062e\u0637\u0627 \u0631\u0627 \u06a9\u067e\u06cc \u06a9\u0646\u06cc\u062f #: Editor.java:1165 Editor.java:2715 Copy\ for\ Forum=\u0631\u0648\u0646\u0648\u0634\u062a \u0628\u0631\u0627\u06cc \u062a\u0627\u0644\u0627\u0631 \u06af\u0641\u062a\u06af\u0648 @@ -272,15 +275,15 @@ Could\ not\ delete\ {0}=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 {0} \u0 #: ../../../processing/app/debug/TargetPlatform.java:74 #, java-format -!Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?= +Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?=\u0646\u0645\u06cc \u062a\u0648\u0627\u0646\u062f \u067e\u06cc\u062f\u0627 \u06a9\u0646\u062f Could not find \u0631\u0627 \u062f\u0631 {0}. \u0622\u06cc\u0627 pre-1.5 \u0627\u0633\u062a\u061f #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 #, java-format -!Could\ not\ find\ tool\ {0}= +Could\ not\ find\ tool\ {0}=\u0646\u0645\u06cc \u062a\u0648\u0627\u0646 \u0627\u0628\u0632\u0627\u0631 {0} \u0631\u0627 \u06cc\u0627\u0641\u062a #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 #, java-format -!Could\ not\ find\ tool\ {0}\ from\ package\ {1}= +Could\ not\ find\ tool\ {0}\ from\ package\ {1}=\u0646\u0645\u06cc \u062a\u0648\u0627\u0646 \u0627\u0628\u0632\u0627\u0631 {0} \u0631\u0627 \u0627\u0632 \u0628\u0633\u062a\u0647 {1} \u06cc\u0627\u0641\u062a #: Base.java:1934 #, java-format @@ -297,7 +300,7 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f \u0637\u0631\u062d \u0631\u0627 \u0645\u062c\u062f\u062f\u0627\u064b \u0630\u062e\u06cc\u0631\u0647 \u0646\u0645\u0648\u062f #: Theme.java:52 -Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0631\u0646\u06af \u0631\u0627 \u062e\u0648\u0627\u0646\u062f.\n\u0634\u0645\u0627 \u0645\u06cc\u200c\u0628\u0627\u06cc\u0633\u062a \u06a9\u0647 Arduino \u0631\u0627 \u0645\u062c\u062f\u062f\u0627\u064b \u0646\u0635\u0628 \u0646\u0645\u0627\u06cc\u06cc\u062f. +!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u067e\u06cc\u0634\u200c\u0641\u0631\u0636 \u0631\u0627 \u062e\u0648\u0627\u0646\u062f.\n\u0634\u0645\u0627 \u0645\u06cc\u200c\u0628\u0627\u06cc\u0633\u062a \u06a9\u0647 \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u0631\u0627 \u0645\u062c\u062f\u062f\u0627\u064b \u0646\u0635\u0628 \u06a9\u0646\u06cc\u062f. @@ -337,19 +340,19 @@ Couldn't\ determine\ program\ size\:\ {0}=\u0646\u0645\u06cc\u200c\u062a\u0648\u Couldn't\ do\ it=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u06cc\u062f \u0627\u0646\u062c\u0627\u0645\u0634 \u062f\u0647\u06cc\u062f #: debug/BasicUploader.java:209 -!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.= +Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=\u0628\u0631 \u0631\u0648\u06cc \u067e\u0648\u0631\u062a \u0627\u0646\u062a\u062e\u0627\u0628\u06cc \u0628\u0631\u062f\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f. \u06a9\u0646\u062a\u0631\u0644 \u06a9\u0646\u06cc\u062f \u06a9\u0647 \u0622\u06cc\u0627 \u067e\u0648\u0631\u062a \u0635\u062d\u06cc\u062d \u0631\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u0646\u0645\u0648\u062f\u0647 \u0627\u06cc\u062f. \u0627\u06af\u0631 \u0635\u062d\u06cc\u062d \u0627\u0633\u062a \u0633\u0639\u06cc \u06a9\u0646\u06cc\u062f \u062f\u06a9\u0645\u0647 \u0631\u0633\u062a \u0628\u0631\u062f \u0631\u0627 \u067e\u0633 \u0627\u0632 \u0634\u0631\u0648\u0639 \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0641\u0634\u0627\u0631 \u062f\u0647\u06cc\u062f. #: ../../../processing/app/Preferences.java:82 -!Croatian= +Croatian=\u06a9\u0631\u0648\u0627\u0633\u06cc\u0627\u06cc\u06cc #: Editor.java:1149 Editor.java:2699 Cut=\u0628\u0631\u06cc\u062f\u0646 #: ../../../processing/app/Preferences.java:83 -!Czech= +Czech=\u0686\u06a9\u06cc (\u0632\u0628\u0627\u0646 \u06a9\u0634\u0648\u0631 \u0686\u06a9) #: Preferences.java:90 -!Danish= +Danish=\u062f\u0627\u0646\u0645\u0627\u0631\u06a9\u06cc #: Editor.java:1224 Editor.java:2765 Decrease\ Indent=\u06a9\u0627\u0647\u0634 \u062a\u0648\u0631\u0641\u062a\u06af\u06cc @@ -364,7 +367,7 @@ Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ Discard\ all\ changes\ and\ reload\ sketch?=\u062f\u0648\u0631\u0627\u0646\u062f\u0627\u062e\u062a\u0646 \u0647\u0645\u0647\u0654 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u0648 \u0628\u0627\u0631\u06af\u06cc\u0631\u06cc \u0645\u062c\u062f\u062f \u0637\u0631\u062d\u061f #: ../../../processing/app/Preferences.java:438 -!Display\ line\ numbers= +Display\ line\ numbers=\u0634\u0645\u0627\u0631\u0647 \u062e\u0637 \u0631\u0627 \u0646\u0645\u0627\u06cc\u0634 \u0628\u062f\u0647 #: Editor.java:2064 Don't\ Save=\u0630\u062e\u06cc\u0631\u0647 \u0646\u06a9\u0646 @@ -385,10 +388,10 @@ Done\ printing.=\u0686\u0627\u067e\u200c\u06a9\u0631\u062f\u0646 \u0628\u0647 \u Done\ uploading.=\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0627\u0646\u062c\u0627\u0645\u200c\u0634\u062f. #: Preferences.java:91 -!Dutch= +Dutch=\u0632\u0628\u0627\u0646 \u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631\: #: ../../../processing/app/Preferences.java:144 -!Dutch\ (Netherlands)= +Dutch\ (Netherlands)=\u0647\u0644\u0646\u062f\u06cc #: Editor.java:1130 Edit=\u0648\u06cc\u0631\u0627\u06cc\u0634 @@ -397,13 +400,13 @@ Edit=\u0648\u06cc\u0631\u0627\u06cc\u0634 Editor\ font\ size\:\ =\u0627\u0646\u062f\u0627\u0632\u0647\u0654 \u0642\u0644\u0645 \u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631 #: Preferences.java:353 -!Editor\ language\:\ = +Editor\ language\:\ =\u0632\u0628\u0627\u0646 \u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631\: #: Preferences.java:92 -!English= +English=\u0627\u0646\u06af\u0644\u06cc\u0633\u06cc #: ../../../processing/app/Preferences.java:145 -!English\ (United\ Kingdom)= +English\ (United\ Kingdom)=\u0627\u0646\u06af\u0644\u06cc\u0633\u06cc (\u0628\u0631\u06cc\u062a\u0627\u0646\u06cc\u0627) #: Editor.java:1062 Environment=\u0645\u062d\u06cc\u0637 @@ -427,13 +430,13 @@ Error\ getting\ the\ Arduino\ data\ folder.=\u062e\u0637\u0627\u06cc \u06af\u063 Error\ inside\ Serial.{0}()=\u062e\u0637\u0627\u06cc \u062f\u0631\u0648\u0646\u06cc. {0}() #: ../../../processing/app/Base.java:1232 -!Error\ loading\ libraries= +Error\ loading\ libraries=\u062e\u0637\u0627 \u062d\u06cc\u0646 \u0628\u0627\u0631\u06af\u06cc\u0631\u06cc \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647 \u0647\u0627 #: ../../../processing/app/debug/TargetPlatform.java:95 #: ../../../processing/app/debug/TargetPlatform.java:106 #: ../../../processing/app/debug/TargetPlatform.java:117 #, java-format -!Error\ loading\ {0}= +Error\ loading\ {0}=\u062e\u0637\u0627 \u0628\u0647 \u0647\u0646\u06af\u0627\u0645 \u0628\u0627\u0631\u06af\u06cc\u0631\u06cc {0} #: Serial.java:181 #, java-format @@ -447,11 +450,11 @@ Error\ reading\ preferences=\u062e\u0637\u0627\u06cc \u062e\u0648\u0627\u0646\u0 Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=\u062e\u0637\u0627\u06cc \u0628\u0647 \u0647\u0646\u06af\u0627\u0645 \u062e\u0648\u0627\u0646\u062f\u0646 \u067e\u0631\u0648\u0646\u062f\u0647\u0654 \u062a\u0631\u062c\u06cc\u062d\u0627\u062a. \u0644\u0637\u0641\u0627\u064b {0} \u0631\u0627 \u062d\u0630\u0641 (\u06cc\u0627 \u0627\u0646\u062a\u0641\u0627\u0644)\n\u0648 \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u0631\u0627 \u0628\u0627\u0632\u06af\u0634\u0627\u06cc\u06cc \u0645\u062c\u062f\u062f \u06a9\u0646\u06cc\u062f. #: ../../../cc/arduino/packages/DiscoveryManager.java:25 -!Error\ starting\ discovery\ method\:\ = +Error\ starting\ discovery\ method\:\ =\u062e\u0637\u0627 \u062f\u0631 \u0634\u0631\u0648\u0639 \u0631\u0648\u0634 \u0627\u06a9\u062a\u0634\u0627\u0641\u06cc\: #: Serial.java:125 #, java-format -!Error\ touching\ serial\ port\ ''{0}''.= +Error\ touching\ serial\ port\ ''{0}''.=\u062e\u0637\u0627 \u0628\u0647 \u0647\u0646\u06af\u0627\u0645 \u062f\u0633\u062a\u0631\u0633\u06cc \u0628\u0647 \u0633\u0631\u06cc\u0627\u0644 \u067e\u0648\u0631\u062a {0} #: Editor.java:2512 Editor.java:2516 Editor.java:2520 Error\ while\ burning\ bootloader.=\u062e\u0637\u0627\u06cc \u0628\u0647 \u0647\u0646\u06af\u0627\u0645 \u0633\u0648\u0632\u0627\u0646\u062f\u0646 \u0628\u0648\u062a\u200c\u0644\u0648\u062f\u0631. @@ -468,13 +471,13 @@ Error\ while\ printing.=\u062e\u0637\u0627 \u0647\u0646\u06af\u0627\u0645 \u0686 #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 -!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= +Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=\u062e\u0637\u0627 \u062d\u06cc\u0646 \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc\: \u067e\u0627\u0631\u0627\u0645\u062a\u0631 \u067e\u06cc\u06a9\u0631\u0628\u0646\u062f\u06cc '{0}' \u0627\u0632 \u062f\u0633\u062a \u0631\u0641\u062a. #: Preferences.java:93 -!Estonian= +Estonian=\u0627\u0633\u062a\u0648\u0646\u06cc\u0627\u06cc\u06cc #: ../../../processing/app/Preferences.java:146 -!Estonian\ (Estonia)= +Estonian\ (Estonia)=\u0627\u0633\u062a\u0648\u0646\u06cc\u0627\u06cc\u06cc (\u0627\u0633\u062a\u0648\u0646\u06cc) #: Editor.java:516 Examples=\u0646\u0645\u0648\u0646\u0647\u200c\u0647\u0627 @@ -489,7 +492,7 @@ FAQ.html=FAQ.html File=\u067e\u0631\u0648\u0646\u062f\u0647 #: Preferences.java:94 -!Filipino= +Filipino=\u0641\u06cc\u0644\u06cc\u067e\u06cc\u0646\u06cc #: FindReplace.java:124 FindReplace.java:127 Find=\u06cc\u0627\u0641\u062a\u0646 @@ -510,32 +513,32 @@ Find...=\u06cc\u0627\u0641\u062a\u0646... Find\:=\u06cc\u0627\u0641\u062a\u0646\: #: ../../../processing/app/Preferences.java:147 -!Finnish= +Finnish=\u0641\u0646\u0644\u0627\u0646\u062f\u06cc #: tools/FixEncoding.java:41 tools/FixEncoding.java:58 #: tools/FixEncoding.java:79 Fix\ Encoding\ &\ Reload=\u062e\u0637\u0627\u0632\u062f\u0627\u06cc\u06cc \u06a9\u062f\u06af\u0630\u0627\u0631\u06cc \u0648 \u0628\u0627\u0631\u06af\u06cc\u0631\u06cc \u0645\u062c\u062f\u062f #: Base.java:1851 -!For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n= +For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=\u0628\u0631\u0627\u06cc \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u0628\u06cc\u0634\u062a\u0631 \u062f\u0631\u0628\u0627\u0631\u0647 \u0646\u0635\u0628 \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647 \u0647\u0627 \u0645\u0631\u0627\u062c\u0639\u0647 \u06a9\u0646\u06cc\u062f \u0628\u0647 \: see\: http\://arduino.cc/en/Guide/Libraries\n #: debug/BasicUploader.java:80 !Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ = #: Preferences.java:95 -!French= +French=\u0641\u0631\u0627\u0646\u0633\u0648\u06cc #: Editor.java:1097 Frequently\ Asked\ Questions=\u0633\u0648\u0627\u0644\u200c\u0647\u0627\u06cc \u0645\u062a\u062f\u0627\u0648\u0644 \u067e\u0631\u0633\u06cc\u062f\u0647\u200c\u0634\u062f\u0647 #: Preferences.java:96 -!Galician= +Galician=\u06af\u0627\u0644\u06cc\u0633\u06cc #: ../../../processing/app/Preferences.java:94 -!Georgian= +Georgian=\u06af\u0631\u062c\u06cc #: Preferences.java:97 -!German= +German=\u0622\u0644\u0645\u0627\u0646\u06cc #: Editor.java:1054 Getting\ Started=\u0634\u0631\u0648\u0639 \u06a9\u0627\u0631 @@ -549,7 +552,7 @@ Getting\ Started=\u0634\u0631\u0648\u0639 \u06a9\u0627\u0631 !Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.= #: Preferences.java:98 -!Greek= +Greek=\u06cc\u0648\u0646\u0627\u0646\u06cc #: Base.java:2085 Guide_Environment.html=Guide_Environment.html @@ -564,13 +567,13 @@ Guide_Troubleshooting.html=Guide_Troubleshooting.html Guide_Windows.html=Guide_Windows.html #: ../../../processing/app/Preferences.java:95 -!Hebrew= +Hebrew=\u0639\u0628\u0631\u06cc #: Editor.java:1015 Help=\u06a9\u0645\u06a9 #: Preferences.java:99 -!Hindi= +Hindi=\u0647\u0646\u062f\u06cc #: Sketch.java:295 How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=\u0686\u0637\u0648\u0631 \u0627\u0633\u062a \u0627\u0628\u062a\u062f\u0627 \u0637\u0631\u062d \u0631\u0627 \u0628\u06cc\u0634 \u0627\u0632 \u062a\u0644\u0627\u0634 \u0628\u0631\u0627\u06cc \u0646\u0627\u0645\u200c\u06af\u0630\u0627\u0631\u06cc\n\u0645\u062c\u062f\u062f \u0622\u0646 \u0630\u062e\u06cc\u0631\u0647 \u06a9\u0646\u06cc\u0645\u061f @@ -579,7 +582,7 @@ How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=\u0686 How\ very\ Borges\ of\ you=\u0686\u0647 \u0628\u0648\u0631\u062e\u0633\u06cc \u0647\u0633\u062a\u06cc\u062f \u0634\u0645\u0627 #: Preferences.java:100 -!Hungarian= +Hungarian=\u0645\u062c\u0627\u0631 #: FindReplace.java:96 Ignore\ Case=\u0646\u0627\u062f\u06cc\u062f\u0647\u200c\u06af\u0631\u0641\u062a\u0646 \u0628\u0632\u0631\u06af\u06cc/\u06a9\u0648\u0686\u06a9\u06cc @@ -600,35 +603,35 @@ Import\ Library...=\u0648\u0627\u0631\u062f\u0633\u0627\u0632\u06cc \u06a9\u062a Increase\ Indent=\u0627\u0641\u0632\u0627\u06cc\u0634 \u062a\u0648\u0631\u0641\u062a\u06af\u06cc #: Preferences.java:101 -!Indonesian= +Indonesian=\u0627\u0646\u062f\u0648\u0646\u0632\u06cc\u0627\u06cc\u06cc #: ../../../processing/app/Base.java:1204 #, java-format !Invalid\ library\ found\ in\ {0}\:\ {1}= #: Preferences.java:102 -!Italian= +Italian=\u0627\u06cc\u062a\u0627\u0644\u06cc\u0627\u06cc\u06cc #: Preferences.java:103 -!Japanese= +Japanese=\u0698\u0627\u067e\u0646\u06cc #: Preferences.java:104 -!Korean= +Korean=\u06a9\u0631\u0647 \u0627\u06cc #: Preferences.java:105 -!Latvian= +Latvian=\u0644\u062a\u0648\u0627\u0646\u06cc\u0627\u06cc\u06cc #: Base.java:2699 -!Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu= +Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=\u0627\u06cc\u0646 \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647 \u0628\u0647 \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647 \u0647\u0627\u06cc \u0634\u0645\u0627 \u0627\u0636\u0627\u0641\u0647 \u06af\u0631\u062f\u06cc\u062f. \u0645\u0646\u0648\u06cc "\u0648\u0627\u0631\u062f \u0633\u0627\u0632\u06cc \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647" \u0631\u0627 \u06a9\u0646\u062a\u0631\u0644 \u06a9\u0646\u06cc\u062f #: Preferences.java:106 -!Lithuaninan= +Lithuaninan=\u0644\u06cc\u062a\u0648\u0627\u0646\u06cc\u0627\u06cc\u06cc #: ../../../processing/app/Sketch.java:1660 -!Low\ memory\ available,\ stability\ problems\ may\ occur= +Low\ memory\ available,\ stability\ problems\ may\ occur=\u062d\u0627\u0641\u0638\u0647 \u0627\u0646\u062f\u06a9\u06cc \u062f\u0631 \u062f\u0633\u062a\u0631\u0633 \u0627\u0633\u062a. \u0645\u0645\u06a9\u0646 \u0627\u0633\u062a \u0645\u0634\u06a9\u0644 \u0639\u062f\u0645 \u067e\u0627\u06cc\u062f\u0627\u0631\u06cc \u0628\u0631\u0648\u0632 \u0646\u0645\u0627\u06cc\u062f #: Preferences.java:107 -!Marathi= +Marathi=\u0645\u0631\u0627\u062a\u06cc #: Base.java:2112 Message=\u067e\u06cc\u063a\u0627\u0645 @@ -646,7 +649,7 @@ Moving=\u0627\u0646\u062a\u0642\u0627\u0644 Name\ for\ new\ file\:=\u0646\u0627\u0645 \u0628\u0631\u0627\u06cc \u067e\u0631\u0648\u0646\u062f\u0647\u0654 \u062c\u062f\u06cc\u062f\: #: ../../../processing/app/Preferences.java:149 -!Nepali= +Nepali=\u0646\u067e\u0627\u0644\u06cc #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 !Network\ upload\ using\ programmer\ not\ supported= @@ -705,14 +708,14 @@ Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=\u062e\u0637\u0627\u06cc \ Nope=\u0646\u0641\u06cc #: ../../../processing/app/Preferences.java:108 -!Norwegian\ Bokm\u00e5l= +Norwegian\ Bokm\u00e5l=\u0646\u0631\u0648\u0698\u06cc #: ../../../processing/app/Sketch.java:1656 !Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.= #: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2145 Editor.java:2465 -OK=\u0627\u0648\u06a9\u06cc +OK=\u062a\u0627\u06cc\u06cc\u062f #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=\u06cc\u06a9 \u067e\u0631\u0648\u0646\u062f\u0647 \u0628\u0647 \u0637\u0631\u062d \u0627\u0641\u0632\u0648\u062f\u0647 \u0634\u062f. @@ -736,13 +739,13 @@ Open...=\u0628\u0627\u0632 \u06a9\u0631\u062f\u0646.... Page\ Setup=\u062a\u0646\u0638\u06cc\u0645 \u0635\u0641\u062d\u0647 #: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 -!Password\:= +Password\:=\u0631\u0645\u0632 \u0648\u0631\u0648\u062f #: Editor.java:1189 Editor.java:2731 -Paste=\u0627\u0644\u0633\u0627\u0642 +Paste=\u0627\u0644\u0635\u0627\u0642 #: Preferences.java:109 -!Persian= +Persian=\u0641\u0627\u0631\u0633\u06cc #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=\u0644\u0637\u0641\u0627\u064b \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647 SPI \u0631\u0627 \u0627\u0632 \u0645\u0646\u0648\u06cc \u0637\u0631\u062d > \u062f\u0631\u0648\u0646\u200c\u0633\u0627\u0632\u06cc \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647 \u062f\u0631\u0648\u0646\u200c\u0633\u0627\u0632\u06cc \u06a9\u0646\u06cc\u062f. @@ -751,19 +754,19 @@ Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= Please\ install\ JDK\ 1.5\ or\ later=\u0644\u0637\u0641\u0627\u064b JDK \u06f1.\u06f5 \u06cc\u0627 \u0628\u0639\u062f\u062a\u0631 \u0627\u0632 \u0622\u0646 \u0631\u0627 \u0646\u0635\u0628 \u06a9\u0646\u06cc\u062f #: Preferences.java:110 -!Polish= +Polish=\u0644\u0647\u0633\u062a\u0627\u0646\u06cc #: ../../../processing/app/Editor.java:718 -!Port= +Port=\u067e\u0648\u0631\u062a #: ../../../processing/app/Preferences.java:151 -!Portugese= +Portugese=\u067e\u0631\u062a\u063a\u0627\u0644\u06cc #: ../../../processing/app/Preferences.java:127 -!Portuguese\ (Brazil)= +Portuguese\ (Brazil)=\u067e\u0631\u062a\u063a\u0627\u0644\u06cc (\u0628\u0631\u0632\u06cc\u0644) #: ../../../processing/app/Preferences.java:128 -!Portuguese\ (Portugal)= +Portuguese\ (Portugal)=\u067e\u0631\u062a\u063a\u0627\u0644\u06cc (\u067e\u0631\u062a\u063a\u0627\u0644) #: Preferences.java:295 Editor.java:583 Preferences=\u062a\u0631\u062c\u06cc\u062d\u0627\u062a @@ -793,10 +796,10 @@ Problem\ Opening\ URL=\u0627\u0634\u06a9\u0627\u0644 \u0628\u0627\u0632\u06a9\u0 Problem\ Setting\ the\ Platform=\u0627\u0634\u06a9\u0627\u0644 \u062a\u0646\u0638\u06cc\u0645 \u0633\u06a9\u0648 #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 -!Problem\ accessing\ board\ folder\ /www/sd= +Problem\ accessing\ board\ folder\ /www/sd=\u0627\u0634\u06a9\u0627\u0644 \u062f\u0631 \u062f\u0633\u062a\u0631\u0633\u06cc \u0628\u0647 \u067e\u0634\u0647 \u0628\u0631\u062f /www/sd #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 -!Problem\ accessing\ files\ in\ folder\ = +Problem\ accessing\ files\ in\ folder\ =\u0627\u0634\u06a9\u0627\u0644 \u062f\u0631 \u062f\u0633\u062a\u0631\u0633\u06cc \u0628\u0647 \u067e\u0631\u0648\u0646\u062f \u0647\u0627 \u062f\u0631 \u067e\u0648\u0634\u0647 #: Base.java:1673 Problem\ getting\ data\ folder=\u0627\u0634\u06a9\u0627\u0644 \u06af\u0631\u0641\u062a\u0646 \u067e\u0648\u0634\u0647\u0654 \u062f\u0627\u062f\u0647\u200c\u0647\u0627 @@ -811,11 +814,8 @@ Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troublesh #: Sketch.java:355 Sketch.java:362 Sketch.java:373 Problem\ with\ rename=\u0645\u0634\u06a9\u0644 \u0628\u0627 \u0646\u0627\u0645\u200c\u06af\u0630\u0627\u0631\u06cc \u0645\u062c\u062f\u062f -#: Editor.java:2137 -Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Arduino \u0641\u0642\u0637 \u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f \u0637\u0631\u062d\u200c\u0647\u0627\u06cc \u062e\u0648\u062f\u0634 \u0631\u0627 \u0628\u0627\u0632 \u06a9\u0646\u062f\n\u0648 \u0633\u0627\u06cc\u0631 \u067e\u0631\u0648\u0646\u062f\u0647\u200c\u0647\u0627\u06cc\u06cc \u06a9\u0647 \u0628\u0627 .ino \u06cc\u0627 .pde \u067e\u0627\u06cc\u0627\u0646 \u0645\u06cc\u200c\u067e\u0630\u06cc\u0631\u0646\u062f - #: ../../../processing/app/I18n.java:86 -!Processor= +Processor=\u067e\u0631\u062f\u0627\u0632\u0634\u06af\u0631 #: Editor.java:704 Programmer=\u067e\u0631\u0648\u06af\u0631\u0627\u0645\u0631 @@ -849,10 +849,10 @@ Replace\ the\ existing\ version\ of\ {0}?=\u062c\u0627\u06cc\u06af\u0632\u06cc\u Replace\ with\:=\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u06a9\u0631\u062f\u0646\: #: Preferences.java:113 -!Romanian= +Romanian=\u0631\u0648\u0645\u0627\u0646\u06cc\u0627\u06cc\u06cc #: Preferences.java:114 -!Russian= +Russian=\u0631\u0648\u0633\u06cc #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529 #: Editor.java:2064 Editor.java:2468 @@ -884,7 +884,7 @@ Select\ (or\ create\ new)\ folder\ for\ sketches...=\u0627\u0646\u062a\u062e\u06 Select\ All=\u0627\u0646\u062a\u062e\u0627\u0628 \u0647\u0645\u0647 #: Base.java:2636 -!Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add= +Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=\u06cc\u06a9 \u067e\u0631\u0648\u0646\u062f\u0647 \u0632\u06cc\u067e \u0634\u062f\u0647 \u06cc\u0627 \u06cc\u06a9 \u067e\u0648\u0634\u0647 \u062d\u0627\u0648\u06cc \u0641\u0627\u06cc\u0644 \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647 \u0627\u06cc \u06a9\u0647 \u0645\u06cc \u062e\u0648\u0627\u0647\u06cc\u062f \u0627\u0636\u0627\u0641\u0647 \u06a9\u0646\u06cc\u062f \u0627\u0646\u062a\u062e\u0627\u0628 \u0646\u0645\u0627\u06cc\u06cc\u062f #: Sketch.java:975 Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=\u0627\u0646\u062a\u062e\u0627\u0628 \u06cc\u06a9 \u062a\u0635\u0648\u06cc\u0631 \u06cc\u0627 \u0633\u0627\u06cc\u0631 \u067e\u0631\u0648\u0646\u062f\u0647\u200c\u0647\u0627\u06cc \u062f\u0627\u062f\u0647\u200c\u0647\u0627 \u0628\u0631\u0627\u06cc \u0631\u0648\u0646\u0648\u0634\u062a \u0628\u0647 \u0637\u0631\u062d\u200c\u062a\u0627\u0646 @@ -964,10 +964,10 @@ Sketchbook\ folder\ disappeared=\u067e\u0648\u0634\u0647\u0654 \u06a9\u062a\u062 Sketchbook\ location\:=\u0645\u0648\u0642\u0639\u06cc\u062a \u06a9\u062a\u0627\u0628 \u0637\u0631\u062d\: #: ../../../processing/app/Base.java:785 -!Sketches\ (*.ino,\ *.pde)= +Sketches\ (*.ino,\ *.pde)=\u0637\u0631\u062d \u0647\u0627 (*.ino, *.pde) #: ../../../processing/app/Preferences.java:152 -!Slovenian= +Slovenian=\u0627\u0633\u0644\u0648\u0646\u06cc\u0627\u06cc\u06cc #: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967 Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=\u0628\u0639\u0636\u06cc \u0627\u0632 \u067e\u0631\u0648\u0646\u062f\u0647\u200c\u0647\u0627 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u00ab\u0641\u0642\u0637 \u062e\u0648\u0627\u0646\u062f\u0646\u06cc\u00bb \u0628\u0631\u0686\u0633\u067e\u200c\u06af\u0630\u0627\u0631\u06cc\n\u0634\u062f\u0647\u200c\u0627\u0646\u062f\u060c \u0628\u0646\u0627\u0628\u0631\u0627\u06cc\u0646 \u0634\u0645\u0627 \u0646\u06cc\u0627\u0632\u0645\u0646\u062f \u0622\u0646 \u0647\u0633\u062a\u06cc\u062f \u06a9\u0647 \u0637\u0631\u062d \u062f\u0648\u0628\u0627\u0631\u0647 \u062f\u0631\n\u0645\u062d\u0644 \u062f\u06cc\u06af\u0631\u06cc \u0630\u062e\u06cc\u0631\u0647 \u06a9\u0646\u06cc\u062f \u0648 \u0645\u062c\u062f\u062f\u0627\u064b \u062a\u0644\u0627\u0634 \u0646\u0645\u0627\u06cc\u06cc\u062f. @@ -980,19 +980,19 @@ Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ ske Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=\u0634\u0631\u0645\u0646\u062f\u0647\u060c \u06cc\u06a9 \u0637\u0631\u062d (\u06cc\u0627 \u067e\u0631\u0648\u0646\u062f\u0647) \u0646\u0627\u0645\u200c\u062f\u0647\u06cc \u0634\u062f\u0647 \u0628\u0627 "{0}" \u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u0645\u0648\u062c\u0648\u062f \u0627\u0633\u062a. #: Preferences.java:115 -!Spanish= +Spanish=\u0627\u0633\u067e\u0627\u0646\u06cc\u0627\u06cc\u06cc #: Base.java:540 Sunshine=\u0637\u0644\u0648\u0639 #: ../../../processing/app/Preferences.java:153 -!Swedish= +Swedish=\u0633\u0648\u0626\u062f\u06cc #: Preferences.java:84 -!System\ Default= +System\ Default=\u067e\u06cc\u0634 \u0641\u0631\u0636 \u0633\u06cc\u0633\u062a\u0645 #: Preferences.java:116 -!Tamil= +Tamil=\u062a\u0627\u0645\u06cc\u0644 #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=\u06a9\u0644\u06cc\u062f\u0648\u0627\u0698\u0647\u0654 'BYTE' \u062f\u06cc\u06af\u0631 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0646\u0645\u06cc\u200c\u06af\u0631\u062f\u062f. @@ -1043,7 +1043,7 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u0627\u06cc\u0646 \u067e\u0631\u0648\u0646\u062f\u0647 \u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u0628\u0647 \u0645\u0648\u0636\u0639\u06cc\u062a\u06cc \u06a9\u0647\n\u0634\u0645\u0627 \u0645\u06cc\u200c\u062e\u0648\u0627\u0647\u06cc\u062f \u0628\u06cc\u0627\u0641\u0632\u0627\u06cc\u06cc\u062f \u06a9\u067e\u06cc\u200c\u0634\u062f\u0647\u200c\u0627\u0633\u062a.\n\u0645\u0646 \u06a9\u0627\u0631\u06cc \u0646\u0645\u06cc\u200c\u06a9\u0646\u0645. #: ../../../processing/app/EditorStatus.java:467 -!This\ report\ would\ have\ more\ information\ with= +This\ report\ would\ have\ more\ information\ with=\u0627\u06cc\u0646 \u06af\u0632\u0627\u0631\u0634 \u0645\u06cc \u062a\u0648\u0627\u0646\u062f \u0634\u0627\u0645\u0644 \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u0628\u06cc\u0634\u062a\u0631\u06cc \u0628\u0627\u0634\u062f \u0628\u0627 #: Base.java:535 Time\ for\ a\ Break=\u0648\u0642\u062a \u0628\u0631\u0627\u06cc \u0627\u0633\u062a\u0631\u0627\u062d\u062a @@ -1055,29 +1055,29 @@ Tools=\u0627\u0628\u0632\u0627\u0631\u0647\u0627 Troubleshooting=\u062e\u0637\u0627\u06cc\u0627\u0628\u06cc #: ../../../processing/app/Preferences.java:117 -!Turkish= +Turkish=\u062a\u0631\u06a9\u06cc \u0627\u0633\u062a\u0627\u0646\u0628\u0648\u0644\u06cc #: ../../../processing/app/Editor.java:2507 -!Type\ board\ password\ to\ access\ its\ console= +Type\ board\ password\ to\ access\ its\ console=\ \u0628\u0631\u0627\u06cc \u0648\u0631\u0648\u062f \u0628\u0647 \u06a9\u0646\u0633\u0648\u0644\u060c \u0631\u0645\u0632 \u0648\u0631\u0648\u062f \u0628\u0631\u062f \u0631\u0627\u062a\u0627\u06cc\u067e \u0646\u0645\u0627\u06cc\u06cc\u062f #: ../../../processing/app/Sketch.java:1673 -!Type\ board\ password\ to\ upload\ a\ new\ sketch= +Type\ board\ password\ to\ upload\ a\ new\ sketch=\u0628\u0631\u0627\u06cc \u0628\u0627\u0631\u06af\u06cc\u0631\u06cc \u06cc\u06a9 \u0637\u0631\u062d \u062c\u062f\u06cc\u062f\u060c \u0631\u0645\u0632 \u0648\u0631\u0648\u062f \u0628\u0631\u062f \u0631\u0627\u062a\u0627\u06cc\u067e \u0646\u0645\u0627\u06cc\u06cc\u062f #: ../../../processing/app/Preferences.java:118 -!Ukrainian= +Ukrainian=\u0627\u0648\u06a9\u0631\u0627\u06cc\u0646\u06cc #: ../../../processing/app/Editor.java:2524 #: ../../../processing/app/NetworkMonitor.java:145 !Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?= #: ../../../processing/app/NetworkMonitor.java:130 -!Unable\ to\ connect\:\ retrying= +Unable\ to\ connect\:\ retrying=\u0646\u0627\u062a\u0648\u0627\u0646 \u0627\u0632 \u0627\u062a\u0635\u0627\u0644\: \u062a\u0644\u0627\u0634 \u0627\u062f\u0627\u0645\u0647 \u062f\u0627\u0631\u062f #: ../../../processing/app/Editor.java:2526 -!Unable\ to\ connect\:\ wrong\ password?= +Unable\ to\ connect\:\ wrong\ password?=\u0646\u0627\u062a\u0648\u0627\u0646 \u0627\u0632 \u0627\u062a\u0635\u0627\u0644\: \u0622\u06cc\u0627 \u0631\u0645\u0632 \u0648\u0631\u0648\u062f \u0627\u0634\u062a\u0628\u0627\u0647 \u0627\u0633\u062a\u061f #: ../../../processing/app/Editor.java:2512 -!Unable\ to\ open\ serial\ monitor= +Unable\ to\ open\ serial\ monitor=\u0646\u0627\u062a\u0648\u0627\u0646 \u0627\u0632 \u06af\u0634\u0648\u062f\u0646 \u0646\u0645\u0627\u06cc\u0634\u06af\u0631 \u0633\u0631\u06cc\u0627\u0644 #: Sketch.java:1432 #, java-format @@ -1102,10 +1102,10 @@ Upload=\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc Upload\ Using\ Programmer=\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0628\u0647 \u06a9\u0645\u06a9 \u067e\u0631\u0648\u06af\u0631\u0627\u0645\u0631 #: Editor.java:2403 Editor.java:2439 -Upload\ canceled.=\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0627\u0628\u0637\u0627\u0644 \u06af\u0634\u062a. +Upload\ canceled.=\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0644\u063a\u0648 \u0634\u062f. #: ../../../processing/app/Sketch.java:1678 -!Upload\ cancelled= +Upload\ cancelled=\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0644\u063a\u0648 \u0634\u062f #: Editor.java:2378 Uploading\ to\ I/O\ Board...=\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0628\u0647 \u0628\u0631\u062f I/O... @@ -1134,10 +1134,10 @@ Verify=\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc Verify\ /\ Compile=\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc / \u06a9\u0627\u0645\u067e\u0627\u06cc\u0644 #: Preferences.java:400 -!Verify\ code\ after\ upload= +Verify\ code\ after\ upload=\u067e\u0633 \u0627\u0632 \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u06a9\u062f \u0631\u0627 \u0628\u0627\u0632\u0628\u06cc\u0646\u06cc \u06a9\u0646 #: ../../../processing/app/Preferences.java:154 -!Vietnamese= +Vietnamese=\u0648\u06cc\u062a\u0646\u0627\u0645\u06cc #: Editor.java:1105 Visit\ Arduino.cc=\u0628\u0627\u0632\u062f\u06cc\u062f Arduino.cc @@ -1185,10 +1185,10 @@ You\ forgot\ your\ sketchbook=\u0634\u0645\u0627 \u06a9\u062a\u0627\u0628 \u0637 You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=\u0634\u0645\u0627 \u0628\u0647 \u0645\u062d\u062f\u0648\u062f\u0647\u0654 \u0646\u0627\u0645\u200c\u06af\u0630\u0627\u0631\u06cc \u062e\u0648\u062f\u06a9\u0627\u0631 \u0628\u0631\u0627\u06cc \u0637\u0631\u062d\u200c\u0647\u0627\u06cc \u0628\u0631\u0627\u06cc \u0627\u0645\u0631\u0648\u0632\n\u0631\u0633\u06cc\u062f\u0647\u200c\u0627\u06cc\u062f. \u0686\u0637\u0648\u0631 \u0627\u0633\u062a \u0628\u0647 \u062c\u0627\u06cc \u0622\u0646 \u06cc\u06a9 \u067e\u06cc\u0627\u062f\u0647\u200c\u0631\u0648\u06cc \u062f\u0627\u0634\u062a\u0647 \u0628\u0627\u0634\u06cc\u062f\u061f #: Base.java:2638 -!ZIP\ files\ or\ folders= +ZIP\ files\ or\ folders=\u067e\u0631\u0648\u0646\u062f\u0647 \u0647\u0627\u06cc \u0632\u06cc\u067e \u0634\u062f\u0647 \u06cc\u0627 \u067e\u0648\u0634\u0647 \u0647\u0627 #: Base.java:2661 -!Zip\ doesn't\ contain\ a\ library= +Zip\ doesn't\ contain\ a\ library=\u067e\u0631\u0648\u0646\u062f\u0647 \u0632\u06cc\u067e \u062d\u0627\u0648\u06cc \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647 \u0646\u06cc\u0633\u062a #: Sketch.java:364 #, java-format @@ -1196,7 +1196,7 @@ You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day #: SketchCode.java:258 #, java-format -"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" \u0634\u0627\u0645\u0644 \u0646\u0648\u06cc\u0633\u0647\u200c\u0647\u0627\u06cc \u0646\u0627\u0634\u0646\u0627\u062e\u062a\u0647\u200c\u0627\u0633\u062a. \u0627\u06af\u0631 \u0627\u06cc\u0646 \u06a9\u062f \u0628\u0627 \u0646\u0633\u062e\u0647\u200c\u0647\u0627\u06cc \u0642\u062f\u06cc\u0645\u06cc\u200c\u062a\u0631 Arduino \u062f\u0631\u0633\u062a\u200c\u0634\u062f\u0647\u200c\u0627\u0633\u062a\u060c \u0634\u0645\u0627 \u0627\u062d\u062a\u0645\u0627\u0644\u0627\u064b \u0646\u06cc\u0627\u0632\u0645\u0646\u062f \u0647\u0633\u062a\u06cc\u062f \u06a9\u0647 \u0627\u0632 Tools -> Fix Enconding & Reload \u0628\u0631\u0627\u06cc \u0628\u0647\u200c\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc \u0628\u0631\u0627\u06cc \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u06a9\u062f\u06af\u0630\u0627\u0631\u06cc UTF-8 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0646\u06cc\u062f. \u0648\u06af\u0631\u0646\u0647\u060c \u0634\u0645\u0627 \u0645\u0645\u06a9\u0646\u200c\u0627\u0633\u062a \u0646\u06cc\u0627\u0632\u0645\u0646\u062f \u062d\u0630\u0641 \u0646\u0648\u06cc\u0633\u0647\u200c\u0647\u0627\u06cc \u0646\u0627\u0645\u0646\u0627\u0633\u0628 \u0648 \u0628\u0631\u0627\u06cc \u0631\u0647\u0627\u06cc\u06cc \u0627\u0632 \u0627\u06cc\u0646 \u0627\u062e\u0637\u0627\u0631 \u0634\u0648\u06cc\u062f. +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 \nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\n\u0627\u0632 \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u06f0\u06f0\u06f1\u06f9\u060c \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647\u0654 Ethernet \u0628\u0647 \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647\u0654 SPI \u0648\u0627\u0628\u0633\u062a\u0647 \u0634\u062f\u0647\u200c\u0627\u0633\u062a.\n\u0634\u0645\u0627 \u0638\u0627\u0647\u0631\u0627\u064b \u0627\u0632 \u0622\u0646 \u06cc\u0627 \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647\u0654 \u062f\u06cc\u06af\u0631\u06cc \u06a9\u0647 \u0628\u0647 \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647\u0654 SPI \u0648\u0627\u0628\u0633\u062a\u0647\u200c\u0627\u0633\u062a \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0645\u06cc\u200c\u06a9\u0646\u06cc\u062f.\n\n @@ -1226,7 +1226,7 @@ You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day compilation\ =\u06a9\u0627\u0645\u067e\u0627\u06cc\u0644\u200c\u0646\u0645\u0648\u062f\u0646 #: ../../../processing/app/NetworkMonitor.java:111 -!connected\!= +connected\!=\u0627\u062a\u0635\u0627\u0644 \u0628\u0631\u0642\u0631\u0627\u0631 \u0634\u062f\! #: Sketch.java:540 createNewFile()\ returned\ false=createNewFile() \u0645\u0642\u062f\u0627\u0631 \u0641\u0627\u0644\u0633 \u0628\u0631\u06af\u0631\u062f\u0627\u0646\u062f @@ -1241,7 +1241,7 @@ environment=\u0645\u062d\u06cc\u0637 http\://arduino.cc/=http\://arduino.cc/ #: ../../../processing/app/debug/Compiler.java:49 -!http\://github.com/arduino/Arduino/issues= +http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software diff --git a/arduino-core/src/processing/app/i18n/Resources_fi.po b/arduino-core/src/processing/app/i18n/Resources_fi.po index a844a04b8..af64ab223 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fi.po +++ b/arduino-core/src/processing/app/i18n/Resources_fi.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Finnish (http://www.transifex.com/projects/p/arduino-ide-15/language/fi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -138,6 +138,12 @@ msgstr "Arduino ARM (32 bittinen) kortit" msgid "Arduino AVR Boards" msgstr "Arduino AVR kortit" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -436,7 +442,7 @@ msgstr "Sketsiä ei voitu tallentaa uudelleen" msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "Väriteeman asetuksia ei voitu lukea.\nAsenna Arduino uudelleen." +msgstr "" #: Preferences.java:219 msgid "" @@ -1139,12 +1145,6 @@ msgstr "Ongelma lähetettäessä levylle. Katsohttp://www.arduino.cc/en/Guide/Tr msgid "Problem with rename" msgstr "Nimeä ei voi muuttaa" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "Arduino voi avata vain omia sketsejään ja\nmuita tiedostoja, joiden pääte on .ino tai .pde" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "Prosessori" @@ -1712,10 +1712,10 @@ msgstr "\".{0}\" ei ole sopiva pääte." #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." -msgstr "\"{0}\" sisältää tuntemattomia merkkejä. Mikäli tämä koodi luotiin vanhemmalla Arduino versiolla, valitse Työkalut -> Korjaa koodaus ja avaa uudelleen, jotta sketsi käyttäisi UTF-8 koodausta. Mikäli tämä ei toimi, poista virheelliset merkit käsin päästäksesi eroon tästä varoituksesta." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." +msgstr "" #: debug/Compiler.java:409 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_fi.properties b/arduino-core/src/processing/app/i18n/Resources_fi.properties index 5a104163d..0dbdc2766 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fi.properties +++ b/arduino-core/src/processing/app/i18n/Resources_fi.properties @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Finnish (http\://www.transifex.com/projects/p/arduino-ide-15/language/fi/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fi\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Finnish (http\://www.transifex.com/projects/p/arduino-ide-15/language/fi/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fi\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ (vaatii Arduinon k\u00e4ynnist\u00e4misen uudelleen)s @@ -83,6 +83,9 @@ Arduino\ ARM\ (32-bits)\ Boards=Arduino ARM (32 bittinen) kortit #: ../../../processing/app/I18n.java:82 Arduino\ AVR\ Boards=Arduino AVR kortit +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino ei voi k\u00e4ynnisty\u00e4, koska\nse ei voi luoda kansiota asetuksillesi. @@ -297,7 +300,7 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=Sketsi\u00e4 ei voitu tallentaa uudelleen #: Theme.java:52 -Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=V\u00e4riteeman asetuksia ei voitu lukea.\nAsenna Arduino uudelleen. +!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Oletusasetuksia ei voitu lukea.\nAsenna Arduino uudelleen. @@ -811,9 +814,6 @@ Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troublesh #: Sketch.java:355 Sketch.java:362 Sketch.java:373 Problem\ with\ rename=Nime\u00e4 ei voi muuttaa -#: Editor.java:2137 -Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Arduino voi avata vain omia sketsej\u00e4\u00e4n ja\nmuita tiedostoja, joiden p\u00e4\u00e4te on .ino tai .pde - #: ../../../processing/app/I18n.java:86 Processor=Prosessori @@ -1196,7 +1196,7 @@ Zip\ doesn't\ contain\ a\ library=ZIP ei sis\u00e4ll\u00e4 kirjastoa #: SketchCode.java:258 #, java-format -"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" sis\u00e4lt\u00e4\u00e4 tuntemattomia merkkej\u00e4. Mik\u00e4li t\u00e4m\u00e4 koodi luotiin vanhemmalla Arduino versiolla, valitse Ty\u00f6kalut -> Korjaa koodaus ja avaa uudelleen, jotta sketsi k\u00e4ytt\u00e4isi UTF-8 koodausta. Mik\u00e4li t\u00e4m\u00e4 ei toimi, poista virheelliset merkit k\u00e4sin p\u00e4\u00e4st\u00e4ksesi eroon t\u00e4st\u00e4 varoituksesta. +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 \nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nArduinon versiosta 0019 l\u00e4htien Ethernet kirjasto vaatii SPI kirjaston.\nN\u00e4yt\u00e4t k\u00e4ytt\u00e4v\u00e4n sit\u00e4 tai jotain muuta kirjastoa joka vaatii SPI kirjaston.\n\n diff --git a/arduino-core/src/processing/app/i18n/Resources_fil.po b/arduino-core/src/processing/app/i18n/Resources_fil.po index 735f731f3..ce469f173 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fil.po +++ b/arduino-core/src/processing/app/i18n/Resources_fil.po @@ -9,8 +9,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Filipino (http://www.transifex.com/projects/p/arduino-ide-15/language/fil/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -139,6 +139,12 @@ msgstr "" msgid "Arduino AVR Boards" msgstr "" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -437,7 +443,7 @@ msgstr "Hindi mai-resave ang sketch" msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "Hindi mabasa ang color theme settings.\nKinakailangan mong i-reinstall ang Arduino." +msgstr "" #: Preferences.java:219 msgid "" @@ -1140,12 +1146,6 @@ msgstr "May problema sa pagupload sa board. Tignan ang http://www.arduino.cc/en/ msgid "Problem with rename" msgstr "May mali sa pag palit ng pangalan" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "Maari lamang buksan ng Arduino ang sariling sketches\nat iba pang file na may extension na .ino o .pde" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "" @@ -1713,10 +1713,10 @@ msgstr "\".{0}\" ay hindi tamang extension." #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." -msgstr "Ang \"{0}\" ay naglalaman ng hindi maintidihang titik. Kung ang code na ito ay ginawa mula sa lumang bersyon ng Arduino, Kinakailangan mong gamitin ang Mga Kasangkapan -> Itama ang Encoding at I-reload para magamit ang UTF-8 encoding sa sketch. Kung hindi naman ay kinakailangan mong alisin ang mga hindi maintidihang titik para maalis ang babalang ito." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." +msgstr "" #: debug/Compiler.java:409 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_fil.properties b/arduino-core/src/processing/app/i18n/Resources_fil.properties index a732d0abc..eaaf537d8 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fil.properties +++ b/arduino-core/src/processing/app/i18n/Resources_fil.properties @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # David A. Mellis <>, 2012. # Translation to Filipino by Marc Lester Tan -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Filipino (http\://www.transifex.com/projects/p/arduino-ide-15/language/fil/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fil\nPlural-Forms\: nplurals\=2; plural\=(n > 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Filipino (http\://www.transifex.com/projects/p/arduino-ide-15/language/fil/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fil\nPlural-Forms\: nplurals\=2; plural\=(n > 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ (kinakailangang i-restart ang Arduino) @@ -83,6 +83,9 @@ Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ sav #: ../../../processing/app/I18n.java:82 !Arduino\ AVR\ Boards= +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Ayaw gumana ng Arduino sapagkat hindi ito\nmakagawa ng folder kung saan ilalagay ang iyong settings. @@ -297,7 +300,7 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=Hindi mai-resave ang sketch #: Theme.java:52 -Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Hindi mabasa ang color theme settings.\nKinakailangan mong i-reinstall ang Arduino. +!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Hindi mabasa ang default settings.\nKinakailangan mong i-reinstall ang Arduino. @@ -811,9 +814,6 @@ Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troublesh #: Sketch.java:355 Sketch.java:362 Sketch.java:373 Problem\ with\ rename=May mali sa pag palit ng pangalan -#: Editor.java:2137 -Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Maari lamang buksan ng Arduino ang sariling sketches\nat iba pang file na may extension na .ino o .pde - #: ../../../processing/app/I18n.java:86 !Processor= @@ -1196,7 +1196,7 @@ You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day #: SketchCode.java:258 #, java-format -"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.=Ang "{0}" ay naglalaman ng hindi maintidihang titik. Kung ang code na ito ay ginawa mula sa lumang bersyon ng Arduino, Kinakailangan mong gamitin ang Mga Kasangkapan -> Itama ang Encoding at I-reload para magamit ang UTF-8 encoding sa sketch. Kung hindi naman ay kinakailangan mong alisin ang mga hindi maintidihang titik para maalis ang babalang ito. +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 \nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nMula sa Arduino 0019, ang Ethernet library ay nakasalalay sa SPI library.\nMaaaring ginagamit mo ito o kaya ibang library na nakasalalay sa SPI library.\n\n diff --git a/arduino-core/src/processing/app/i18n/Resources_fr.po b/arduino-core/src/processing/app/i18n/Resources_fr.po index bedca4780..62bb18ed1 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fr.po +++ b/arduino-core/src/processing/app/i18n/Resources_fr.po @@ -15,8 +15,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: French (http://www.transifex.com/projects/p/arduino-ide-15/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -145,6 +145,12 @@ msgstr "Cartes Arduino ARM (32-bits)" msgid "Arduino AVR Boards" msgstr "Cartes Arduino AVR" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -443,7 +449,7 @@ msgstr "Impossible de réenregistrer le croquis" msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "Impossible de lire les paramètres du thème de couleurs.\nVous devrez réinstaller Arduino." +msgstr "" #: Preferences.java:219 msgid "" @@ -908,7 +914,7 @@ msgstr "Message" #: ../../../processing/app/preproc/PdePreprocessor.java:412 msgid "Missing the */ from the end of a /* comment */" -msgstr "" +msgstr "Il manque */ à la fin du /* commentaire */" #: Preferences.java:449 msgid "More preferences can be edited directly in the file" @@ -1146,12 +1152,6 @@ msgstr "Problème de téléversement vers la carte. Voir http://www.arduino.cc/e msgid "Problem with rename" msgstr "Problème lors du renommage" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "Arduino ne peut ouvrir que ses propres croquis\nou les fichiers se terminant par .ino ou .pde" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "Processeur" @@ -1719,10 +1719,10 @@ msgstr "« .{0} » n''est pas une extension valide." #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." -msgstr "« {0} » contient des caractères non reconnus. Si le code a été créé avec une vieille version de Arduino, vous pouvez utiliser « Outils -> Réparer encodage & recharger » pour mettre le croquis à jour en UTF-8. Sinon, vous devrez supprimer les caractères invalides pour supprimer cet avertissement." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." +msgstr "" #: debug/Compiler.java:409 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_fr.properties b/arduino-core/src/processing/app/i18n/Resources_fr.properties index 5f5e842cc..094784341 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fr.properties +++ b/arduino-core/src/processing/app/i18n/Resources_fr.properties @@ -10,7 +10,7 @@ # , 2012. # Philippe Rivet , 2012. # , 2012. -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: French (http\://www.transifex.com/projects/p/arduino-ide-15/language/fr/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fr\nPlural-Forms\: nplurals\=2; plural\=(n > 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: French (http\://www.transifex.com/projects/p/arduino-ide-15/language/fr/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fr\nPlural-Forms\: nplurals\=2; plural\=(n > 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ (n\u00e9cessite un red\u00e9marrage d'Arduino) @@ -90,6 +90,9 @@ Arduino\ ARM\ (32-bits)\ Boards=Cartes Arduino ARM (32-bits) #: ../../../processing/app/I18n.java:82 Arduino\ AVR\ Boards=Cartes Arduino AVR +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino ne peut s'ex\u00e9cuter car il ne peut\ncr\u00e9er un dossier pour sauvegarder vos param\u00e8tres. @@ -304,7 +307,7 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=Impossible de r\u00e9enregistrer le croquis #: Theme.java:52 -Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Impossible de lire les param\u00e8tres du th\u00e8me de couleurs.\nVous devrez r\u00e9installer Arduino. +!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Impossible de lire les param\u00e8tres par d\u00e9faut.\nVous devrez r\u00e9installer l'environnement Arduino. @@ -641,7 +644,7 @@ Marathi=marathe Message=Message #: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Il manque */ \u00e0 la fin du /* commentaire */ #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Davantage de pr\u00e9f\u00e9rences peuvent \u00eatre \u00e9dit\u00e9es directement dans le fichier @@ -818,9 +821,6 @@ Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troublesh #: Sketch.java:355 Sketch.java:362 Sketch.java:373 Problem\ with\ rename=Probl\u00e8me lors du renommage -#: Editor.java:2137 -Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Arduino ne peut ouvrir que ses propres croquis\nou les fichiers se terminant par .ino ou .pde - #: ../../../processing/app/I18n.java:86 Processor=Processeur @@ -1203,7 +1203,7 @@ Zip\ doesn't\ contain\ a\ library=Le fichier Zip ne contient pas de biblioth\u00 #: SketchCode.java:258 #, java-format -"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.=\u00ab\u00a0{0}\u00a0\u00bb contient des caract\u00e8res non reconnus. Si le code a \u00e9t\u00e9 cr\u00e9\u00e9 avec une vieille version de Arduino, vous pouvez utiliser \u00ab Outils -> R\u00e9parer encodage & recharger \u00bb pour mettre le croquis \u00e0 jour en UTF-8. Sinon, vous devrez supprimer les caract\u00e8res invalides pour supprimer cet avertissement. +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 \nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nDepuis Arduino 0019, la biblioth\u00e8que Ethernet d\u00e9pend de la biblioth\u00e8que SPI.\nVous semblez l'utiliser ou une autre biblioth\u00e8que qui d\u00e9pend de la biblioth\u00e8que SPI.\n\n diff --git a/arduino-core/src/processing/app/i18n/Resources_fr_CA.po b/arduino-core/src/processing/app/i18n/Resources_fr_CA.po index d0d88a6dd..64bbe3385 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fr_CA.po +++ b/arduino-core/src/processing/app/i18n/Resources_fr_CA.po @@ -9,8 +9,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/arduino-ide-15/language/fr_CA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -139,6 +139,12 @@ msgstr "" msgid "Arduino AVR Boards" msgstr "" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -437,7 +443,7 @@ msgstr "Impossible de ré-enregistrer le croquis" msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "Impossible de lire les paramètres du thème de couleurs.\nVous devrez réinstaller Arduino." +msgstr "" #: Preferences.java:219 msgid "" @@ -1140,12 +1146,6 @@ msgstr "Problème de téléversement vers la carte. Voir http://www.arduino.cc/e msgid "Problem with rename" msgstr "Problème de renommage" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "Arduino ne peut ouvrir que ses propres croquis\nou les fichiers se terminant par .ino ou .pde" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "" @@ -1713,10 +1713,10 @@ msgstr "« .{0} » n'est pas une extension valide." #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." -msgstr "« {0} » contient des caractères non reconnus. Si le code a été créé avec une \nvieille version de Arduino, vous pouvez utiliser Outils -> Réparer encodage & \nrecharger pour mettre le croquis à jour en UTF-8. Sinon, vous devrez \nsupprimer les caractères invalides pour éviter cet avertissement." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." +msgstr "" #: debug/Compiler.java:409 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_fr_CA.properties b/arduino-core/src/processing/app/i18n/Resources_fr_CA.properties index 63fd79af1..a27af1a68 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fr_CA.properties +++ b/arduino-core/src/processing/app/i18n/Resources_fr_CA.properties @@ -4,7 +4,7 @@ # # Translators: # , 2012. -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: French (Canada) (http\://www.transifex.com/projects/p/arduino-ide-15/language/fr_CA/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fr_CA\nPlural-Forms\: nplurals\=2; plural\=(n > 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: French (Canada) (http\://www.transifex.com/projects/p/arduino-ide-15/language/fr_CA/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fr_CA\nPlural-Forms\: nplurals\=2; plural\=(n > 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ (n\u00e9cessite un red\u00e9marrage d'Arduino) @@ -84,6 +84,9 @@ Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ sav #: ../../../processing/app/I18n.java:82 !Arduino\ AVR\ Boards= +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino ne peut s'ex\u00e9cuter car il\nne peut cr\u00e9er un dossier pour sauvegarder vos param\u00e8tres. @@ -298,7 +301,7 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=Impossible de r\u00e9-enregistrer le croquis #: Theme.java:52 -Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Impossible de lire les param\u00e8tres du th\u00e8me de couleurs.\nVous devrez r\u00e9installer Arduino. +!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Impossible de lire les param\u00e8tres par d\u00e9faut.\nVous devrez r\u00e9installer Arduino. @@ -812,9 +815,6 @@ Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troublesh #: Sketch.java:355 Sketch.java:362 Sketch.java:373 Problem\ with\ rename=Probl\u00e8me de renommage -#: Editor.java:2137 -Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Arduino ne peut ouvrir que ses propres croquis\nou les fichiers se terminant par .ino ou .pde - #: ../../../processing/app/I18n.java:86 !Processor= @@ -1197,7 +1197,7 @@ Zip\ doesn't\ contain\ a\ library=Zip ne contient pas de biblioth\u00e8que #: SketchCode.java:258 #, java-format -"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.=\u00ab {0} \u00bb contient des caract\u00e8res non reconnus. Si le code a \u00e9t\u00e9 cr\u00e9\u00e9 avec une \nvieille version de Arduino, vous pouvez utiliser Outils -> R\u00e9parer encodage & \nrecharger pour mettre le croquis \u00e0 jour en UTF-8. Sinon, vous devrez \nsupprimer les caract\u00e8res invalides pour \u00e9viter cet avertissement. +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 \nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\n\nDepuis Arduino 0019, la biblioth\u00e8que Ethernet d\u00e9pend de la biblioth\u00e8que \nSPI.\nVous semblez l'utiliser ou une autre biblioth\u00e8que qui d\u00e9pend de la \nbiblioth\u00e8que SPI.\n diff --git a/arduino-core/src/processing/app/i18n/Resources_gl.po b/arduino-core/src/processing/app/i18n/Resources_gl.po index 6198c156d..0269dc1c4 100644 --- a/arduino-core/src/processing/app/i18n/Resources_gl.po +++ b/arduino-core/src/processing/app/i18n/Resources_gl.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Galician (http://www.transifex.com/projects/p/arduino-ide-15/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -138,6 +138,12 @@ msgstr "Placas Arduino ARM (32-bits)" msgid "Arduino AVR Boards" msgstr "Placas Arduino AVR" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -159,7 +165,7 @@ msgstr "Arduino require o JDK completo (non só o JRE)\npara funcionar. Por favo #: ../../../processing/app/EditorStatus.java:471 msgid "Arduino: " -msgstr "" +msgstr "Arduino:" #: Sketch.java:588 #, java-format @@ -436,7 +442,7 @@ msgstr "Non foi posíbel gardar de novo o sketch" msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "Non se pode ler a configuración do esquema de cor.\nNecesitarás volver a instalar Arduino." +msgstr "" #: Preferences.java:219 msgid "" @@ -614,14 +620,14 @@ msgstr "Erro dentro de Serial.{0}()" #: ../../../processing/app/Base.java:1232 msgid "Error loading libraries" -msgstr "" +msgstr "Erro ao cargar as bibliotecas" #: ../../../processing/app/debug/TargetPlatform.java:95 #: ../../../processing/app/debug/TargetPlatform.java:106 #: ../../../processing/app/debug/TargetPlatform.java:117 #, java-format msgid "Error loading {0}" -msgstr "" +msgstr "Erro ao cargar {0}" #: Serial.java:181 #, java-format @@ -848,7 +854,7 @@ msgid "" "disable this in the Preferences dialog.\n" "\n" "Save sketch and update its extension?" -msgstr "" +msgstr "En Arduino 1.0, a extensión predeterminada dos ficheiros cambiou\nde .pde a .ino. Os novos sketches (incluídos os creados\ncon «Gardar como») usarán a nova extensión. A extensión\ndos sketches existentes actualizarase ao gardar, pero podes\ndesactivar esta opción no diálogo de Preferencias.\n\nDesexa gardar o sketch e actualizar a súa extensión?" #: Editor.java:1216 Editor.java:2757 msgid "Increase Indent" @@ -861,7 +867,7 @@ msgstr "Indonesio" #: ../../../processing/app/Base.java:1204 #, java-format msgid "Invalid library found in {0}: {1}" -msgstr "" +msgstr "Encontrada unha biblioteca inválida en {0}: {1}" #: Preferences.java:102 msgid "Italian" @@ -889,7 +895,7 @@ msgstr "Lituano" #: ../../../processing/app/Sketch.java:1660 msgid "Low memory available, stability problems may occur" -msgstr "" +msgstr "Pouca memoria dispoñible, poden ocorrer problemas de estabilidade" #: Preferences.java:107 msgid "Marathi" @@ -1139,12 +1145,6 @@ msgstr "Problema cargando á tarjeta. Vea http://www.arduino.cc/en/Guide/Trouble msgid "Problem with rename" msgstr "Problema ao cambiar o nome" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "Arduino só pode abrir os seus propios sketches\ne outros ficheiros rematados en .ino ou .pde" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "Procesador" @@ -1298,7 +1298,7 @@ msgstr "Mostrar a carpeta do Sketch" #: ../../../processing/app/EditorStatus.java:468 msgid "Show verbose output during compilation" -msgstr "" +msgstr "Mostrar saída detallada durante a compilación" #: Preferences.java:387 msgid "Show verbose output during: " @@ -1712,10 +1712,10 @@ msgstr "«.{0}» non é unha extensión válida." #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." -msgstr "«{0}» contén caracteres irrecoñecíbeis. Se este código foi creado cunha versión antiga de Arduino poida que necesites usar Utilidades -> Corrixir a codificación e recargar para actualizar o sketch para usar a codificación UTF-8. Senón, poida que necesites borrar os caracteres erróneos para desfacerte deste aviso." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." +msgstr "" #: debug/Compiler.java:409 msgid "" @@ -1786,7 +1786,7 @@ msgstr "createNewFile() devolveu valor falso" #: ../../../processing/app/EditorStatus.java:469 msgid "enabled in File > Preferences." -msgstr "" +msgstr "activado en Ficheiro > Preferencias" #: Base.java:2090 msgid "environment" diff --git a/arduino-core/src/processing/app/i18n/Resources_gl.properties b/arduino-core/src/processing/app/i18n/Resources_gl.properties index f74af1f2a..6bb636435 100644 --- a/arduino-core/src/processing/app/i18n/Resources_gl.properties +++ b/arduino-core/src/processing/app/i18n/Resources_gl.properties @@ -3,7 +3,7 @@ # This file is distributed under the same license as the Arduino IDE package. # Diego Prado Gesto <>, 2012. # -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Galician (http\://www.transifex.com/projects/p/arduino-ide-15/language/gl/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: gl\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Galician (http\://www.transifex.com/projects/p/arduino-ide-15/language/gl/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: gl\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ (require reiniciar Arduino) @@ -83,6 +83,9 @@ Arduino\ ARM\ (32-bits)\ Boards=Placas Arduino ARM (32-bits) #: ../../../processing/app/I18n.java:82 Arduino\ AVR\ Boards=Placas Arduino AVR +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino non se pode executar porque non puido\ncrear unha carpeta para gardar a t\u00faa configuraci\u00f3n. @@ -93,7 +96,7 @@ Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ you Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino require o JDK completo (non s\u00f3 o JRE)\npara funcionar. Por favor instale o JDK 1.5 ou superior.\nPoder\u00e1 atopar m\u00e1is informaci\u00f3n na documentaci\u00f3n. #: ../../../processing/app/EditorStatus.java:471 -!Arduino\:\ = +Arduino\:\ =Arduino\: #: Sketch.java:588 #, java-format @@ -297,7 +300,7 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=Non foi pos\u00edbel gardar de novo o sketch #: Theme.java:52 -Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Non se pode ler a configuraci\u00f3n do esquema de cor.\nNecesitar\u00e1s volver a instalar Arduino. +!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Non se poden ler as configuraci\u00f3ns predeterminadas.\nNecesitar\u00e1s reinstalar Arduino. @@ -427,13 +430,13 @@ Error\ getting\ the\ Arduino\ data\ folder.=Error obtendo a carpeta de datos de Error\ inside\ Serial.{0}()=Erro dentro de Serial.{0}() #: ../../../processing/app/Base.java:1232 -!Error\ loading\ libraries= +Error\ loading\ libraries=Erro ao cargar as bibliotecas #: ../../../processing/app/debug/TargetPlatform.java:95 #: ../../../processing/app/debug/TargetPlatform.java:106 #: ../../../processing/app/debug/TargetPlatform.java:117 #, java-format -!Error\ loading\ {0}= +Error\ loading\ {0}=Erro ao cargar {0} #: Serial.java:181 #, java-format @@ -594,7 +597,7 @@ Ignoring\ sketch\ with\ bad\ name=Ignorando sketch con nome incorrecto Import\ Library...=Importar unha librar\u00eda... #: ../../../processing/app/Sketch.java:736 -!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?= +In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=En Arduino 1.0, a extensi\u00f3n predeterminada dos ficheiros cambiou\nde .pde a .ino. Os novos sketches (inclu\u00eddos os creados\ncon \u00abGardar como\u00bb) usar\u00e1n a nova extensi\u00f3n. A extensi\u00f3n\ndos sketches existentes actualizarase ao gardar, pero podes\ndesactivar esta opci\u00f3n no di\u00e1logo de Preferencias.\n\nDesexa gardar o sketch e actualizar a s\u00faa extensi\u00f3n? #: Editor.java:1216 Editor.java:2757 Increase\ Indent=Aumentar o sangrado @@ -604,7 +607,7 @@ Indonesian=Indonesio #: ../../../processing/app/Base.java:1204 #, java-format -!Invalid\ library\ found\ in\ {0}\:\ {1}= +Invalid\ library\ found\ in\ {0}\:\ {1}=Encontrada unha biblioteca inv\u00e1lida en {0}\: {1} #: Preferences.java:102 Italian=Italiano @@ -625,7 +628,7 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Engadiuse \ Lithuaninan=Lituano #: ../../../processing/app/Sketch.java:1660 -!Low\ memory\ available,\ stability\ problems\ may\ occur= +Low\ memory\ available,\ stability\ problems\ may\ occur=Pouca memoria dispo\u00f1ible, poden ocorrer problemas de estabilidade #: Preferences.java:107 Marathi=Marat\u00ed @@ -811,9 +814,6 @@ Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troublesh #: Sketch.java:355 Sketch.java:362 Sketch.java:373 Problem\ with\ rename=Problema ao cambiar o nome -#: Editor.java:2137 -Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Arduino s\u00f3 pode abrir os seus propios sketches\ne outros ficheiros rematados en .ino ou .pde - #: ../../../processing/app/I18n.java:86 Processor=Procesador @@ -924,7 +924,7 @@ Settings\ issues=Problemas de configuraci\u00f3n Show\ Sketch\ Folder=Mostrar a carpeta do Sketch #: ../../../processing/app/EditorStatus.java:468 -!Show\ verbose\ output\ during\ compilation= +Show\ verbose\ output\ during\ compilation=Mostrar sa\u00edda detallada durante a compilaci\u00f3n #: Preferences.java:387 Show\ verbose\ output\ during\:\ =Mostrar resultado detallado durante\: @@ -1196,7 +1196,7 @@ Zip\ doesn't\ contain\ a\ library=O arquivo zip non cont\u00e9n unha biblioteca #: SketchCode.java:258 #, java-format -"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.=\u00ab{0}\u00bb cont\u00e9n caracteres irreco\u00f1ec\u00edbeis. Se este c\u00f3digo foi creado cunha versi\u00f3n antiga de Arduino poida que necesites usar Utilidades -> Corrixir a codificaci\u00f3n e recargar para actualizar o sketch para usar a codificaci\u00f3n UTF-8. Sen\u00f3n, poida que necesites borrar os caracteres err\u00f3neos para desfacerte deste aviso. +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 \nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nDesde Arduino 0019, a librar\u00eda de Ethernet depende da librar\u00eda SPI.\nParece que est\u00e1s a usar esa librar\u00eda ou algunha outra librar\u00eda que depende da librar\u00eda SPI.\n\n @@ -1232,7 +1232,7 @@ compilation\ =compilaci\u00f3n createNewFile()\ returned\ false=createNewFile() devolveu valor falso #: ../../../processing/app/EditorStatus.java:469 -!enabled\ in\ File\ >\ Preferences.= +enabled\ in\ File\ >\ Preferences.=activado en Ficheiro > Preferencias #: Base.java:2090 environment=entorno diff --git a/arduino-core/src/processing/app/i18n/Resources_hi.po b/arduino-core/src/processing/app/i18n/Resources_hi.po index 954c427b0..2208d8f4e 100644 --- a/arduino-core/src/processing/app/i18n/Resources_hi.po +++ b/arduino-core/src/processing/app/i18n/Resources_hi.po @@ -9,8 +9,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/arduino-ide-15/language/hi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,7 +20,7 @@ msgstr "" #: Preferences.java:358 Preferences.java:374 msgid " (requires restart of Arduino)" -msgstr "अर्दुइनो को फिर से चालू करें " +msgstr "(अर्दुइनो को फिर से चालू करने की आवश्यक)" #: debug/Compiler.java:455 msgid "'Keyboard' only supported on the Arduino Leonardo" @@ -66,7 +66,7 @@ msgstr " \"{0}\" इस नाम की पुस्तिका पहले #: Base.java:2690 #, java-format msgid "A library named {0} already exists" -msgstr "" +msgstr "{0} ग्रन्थ पहले से मौजूद" #: UpdateCheck.java:103 msgid "" @@ -90,7 +90,7 @@ msgstr "फाइल जोङिये" #: Base.java:963 msgid "Add Library..." -msgstr "" +msgstr "ग्रन्थ जोड़े" #: tools/FixEncoding.java:77 msgid "" @@ -107,7 +107,7 @@ msgstr "मशीन के लिए विशिष्ट कोड लोड #: Preferences.java:85 msgid "Arabic" -msgstr "" +msgstr "अरबी" #: Preferences.java:86 msgid "Aragonese" @@ -133,10 +133,16 @@ msgstr "स्केच संग्रह कारण रद्द कर द #: ../../../processing/app/I18n.java:83 msgid "Arduino ARM (32-bits) Boards" -msgstr "" +msgstr "अर्दुइनो ARM (32 - बिट्स) बोर्ड " #: ../../../processing/app/I18n.java:82 msgid "Arduino AVR Boards" +msgstr "अर्दुइनो AVR बोर्ड " + +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" msgstr "" #: Base.java:1682 @@ -303,11 +309,11 @@ msgstr "शुरुआत में अद्यतन के लिए जा #: ../../../processing/app/Preferences.java:142 msgid "Chinese (China)" -msgstr "" +msgstr "चीनी (चीन)" #: ../../../processing/app/Preferences.java:142 msgid "Chinese (Hong Kong)" -msgstr "" +msgstr "चीनी (हॉन्ग कॉन्ग) " #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" @@ -319,7 +325,7 @@ msgstr "" #: Preferences.java:88 msgid "Chinese Simplified" -msgstr "" +msgstr "सरल चीनी " #: Preferences.java:89 msgid "Chinese Traditional" @@ -356,7 +362,7 @@ msgstr "HTML के रूप में कॉपी" #: ../../../processing/app/EditorStatus.java:455 msgid "Copy error messages" -msgstr "" +msgstr "त्रुटि सन्देश कॉपी " #: Editor.java:1165 Editor.java:2715 msgid "Copy for Forum" @@ -437,7 +443,7 @@ msgstr "आपकी स्केत्च री-सेव नहीं हो msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "आपको processing इन्स्टाल करनी पड़ेगा " +msgstr "" #: Preferences.java:219 msgid "" @@ -532,7 +538,7 @@ msgstr "सभ बदलाव रद्द करे और फिर से #: ../../../processing/app/Preferences.java:438 msgid "Display line numbers" -msgstr "" +msgstr "लाइन नंबर दिखाएँ " #: Editor.java:2064 msgid "Don't Save" @@ -576,11 +582,11 @@ msgstr "एडिटर फॉण्ट साइज़:" #: Preferences.java:353 msgid "Editor language: " -msgstr "" +msgstr "संपादक भाषा " #: Preferences.java:92 msgid "English" -msgstr "" +msgstr "अंग्रेजी " #: ../../../processing/app/Preferences.java:145 msgid "English (United Kingdom)" @@ -615,14 +621,14 @@ msgstr "सीरियल के अन्दर त्रुटी {0}()" #: ../../../processing/app/Base.java:1232 msgid "Error loading libraries" -msgstr "" +msgstr "पुस्तिका लोड करने में त्रुटि " #: ../../../processing/app/debug/TargetPlatform.java:95 #: ../../../processing/app/debug/TargetPlatform.java:106 #: ../../../processing/app/debug/TargetPlatform.java:117 #, java-format msgid "Error loading {0}" -msgstr "" +msgstr "{0} लोड करने में त्रुटि" #: Serial.java:181 #, java-format @@ -642,7 +648,7 @@ msgstr "प्रेफेरेंसस पढने में त्रुट #: ../../../cc/arduino/packages/DiscoveryManager.java:25 msgid "Error starting discovery method: " -msgstr "" +msgstr "खोज प्रक्रिया शुरू करने में त्रुटि " #: Serial.java:125 #, java-format @@ -744,7 +750,7 @@ msgstr "" #: Preferences.java:95 msgid "French" -msgstr "" +msgstr "फ़्रांसिसी " #: Editor.java:1097 msgid "Frequently Asked Questions" @@ -808,7 +814,7 @@ msgstr "मदद" #: Preferences.java:99 msgid "Hindi" -msgstr "" +msgstr "हिंदी " #: Sketch.java:295 msgid "" @@ -866,11 +872,11 @@ msgstr "" #: Preferences.java:102 msgid "Italian" -msgstr "" +msgstr "इतालवी " #: Preferences.java:103 msgid "Japanese" -msgstr "" +msgstr "जापानी " #: Preferences.java:104 msgid "Korean" @@ -894,7 +900,7 @@ msgstr "" #: Preferences.java:107 msgid "Marathi" -msgstr "" +msgstr "मराठी " #: Base.java:2112 msgid "Message" @@ -918,7 +924,7 @@ msgstr "नयी फाइल का नाम " #: ../../../processing/app/Preferences.java:149 msgid "Nepali" -msgstr "" +msgstr "नेपाली " #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 msgid "Network upload using programmer not supported" @@ -958,7 +964,7 @@ msgstr "ऑटो फॉर्मेट के लिए कोई बदला #: Editor.java:373 msgid "No files were added to the sketch." -msgstr "" +msgstr "स्केच में कोई फाइल नहीं जोड़ी गयी " #: Platform.java:167 msgid "No launcher available" @@ -1047,7 +1053,7 @@ msgstr "पेस्ट" #: Preferences.java:109 msgid "Persian" -msgstr "" +msgstr "पारसी " #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." @@ -1119,7 +1125,7 @@ msgstr "" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 msgid "Problem accessing files in folder " -msgstr "" +msgstr "पुस्तिका में फाइलो तक पहुचने में दिक्कत " #: Base.java:1673 msgid "Problem getting data folder" @@ -1140,12 +1146,6 @@ msgstr "बोर्ड मे अपलोड करने मे समस् msgid "Problem with rename" msgstr "नाम बदलने में मुश्किल " -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "प्रोसेसिंग केवल अपने ही स्केचेस खोल सकता है\nऔर दूसरी फाइल्स जिनका अंत .ino अथवा .pde से होता है" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "" @@ -1197,7 +1197,7 @@ msgstr "" #: Preferences.java:114 msgid "Russian" -msgstr "" +msgstr "रूसी " #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529 #: Editor.java:2064 Editor.java:2468 @@ -1398,7 +1398,7 @@ msgstr "" #: Preferences.java:116 msgid "Tamil" -msgstr "" +msgstr "तमिल " #: debug/Compiler.java:414 msgid "The 'BYTE' keyword is no longer supported." @@ -1581,7 +1581,7 @@ msgstr "उपलोड रद्द कर दिया गया " #: ../../../processing/app/Sketch.java:1678 msgid "Upload cancelled" -msgstr "" +msgstr "अपलोड कैंसिल किया गया " #: Editor.java:2378 msgid "Uploading to I/O Board..." @@ -1698,7 +1698,7 @@ msgstr "आप आज के दिन के नए स्केच के स #: Base.java:2638 msgid "ZIP files or folders" -msgstr "" +msgstr "ZIP फाइलें या पुस्तिकाएँ " #: Base.java:2661 msgid "Zip doesn't contain a library" @@ -1713,10 +1713,10 @@ msgstr "\".{0}\" एक वैध एक्ष्तेन्सिओन नह #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." -msgstr "\"{0}\"अपरिचित अक्षर ,अगर कोड प्रोसस्सिंग के पुराने संकरण में लिखा गया है आपको टूल्स खोलना पड़ेगा उसमे -> फिक्स एन्कोडिंग और रीलोड कीजिये ताकि UTF-8 एन्कोडिंग इस्तेमाल हो सके अगर ये सब नहीं करना तो आपको वो अक्षर मिटाने होंगे ताकि यह चेतावनी ना आये " +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." +msgstr "" #: debug/Compiler.java:409 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_hi.properties b/arduino-core/src/processing/app/i18n/Resources_hi.properties index 65056487c..2c3ad48d0 100644 --- a/arduino-core/src/processing/app/i18n/Resources_hi.properties +++ b/arduino-core/src/processing/app/i18n/Resources_hi.properties @@ -4,10 +4,10 @@ # Nishant Sood , 2012. # Parimal Naigaonkar , 2012. # -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Hindi (http\://www.transifex.com/projects/p/arduino-ide-15/language/hi/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: hi\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Hindi (http\://www.transifex.com/projects/p/arduino-ide-15/language/hi/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: hi\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 -\ \ (requires\ restart\ of\ Arduino)=\u0905\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u0915\u094b \u092b\u093f\u0930 \u0938\u0947 \u091a\u093e\u0932\u0942 \u0915\u0930\u0947\u0902 +\ \ (requires\ restart\ of\ Arduino)=(\u0905\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u0915\u094b \u092b\u093f\u0930 \u0938\u0947 \u091a\u093e\u0932\u0942 \u0915\u0930\u0928\u0947 \u0915\u0940 \u0906\u0935\u0936\u094d\u092f\u0915) #: debug/Compiler.java:455 !'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo= @@ -37,7 +37,7 @@ A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=\ "{0}" \u0907\u #: Base.java:2690 #, java-format -!A\ library\ named\ {0}\ already\ exists= +A\ library\ named\ {0}\ already\ exists={0} \u0917\u094d\u0930\u0928\u094d\u0925 \u092a\u0939\u0932\u0947 \u0938\u0947 \u092e\u094c\u091c\u0942\u0926 #: UpdateCheck.java:103 A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=\u0928\u092f\u093e \u0905\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u0938\u0949\u092b\u094d\u091f\u0935\u0947\u0930 \u0909\u092a\u0932\u092d\u094d\u0926 \u0939\u0948\n\u0915\u094d\u092f\u093e \u0906\u092a \u0905\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u0921\u093e\u0909\u0928\u0932\u094b\u0921 \u092a\u0947\u091c \u092a\u0947 \u091c\u093e\u0928\u093e \u091a\u093e\u0939\u0947\u0902\u0917\u0947 ? @@ -52,7 +52,7 @@ About\ Arduino=\u0906\u0930\u094d\u0921\u0941\u0907\u0928\u094b \u0915\u0947 \u0 Add\ File...=\u092b\u093e\u0907\u0932 \u091c\u094b\u0919\u093f\u092f\u0947 #: Base.java:963 -!Add\ Library...= +Add\ Library...=\u0917\u094d\u0930\u0928\u094d\u0925 \u091c\u094b\u095c\u0947 #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=\u092b\u093e\u0907\u0932 \u090f\u0928\u094d\u0915\u094b\u0921\u093f\u0902\u0917 \u092b\u093f\u0915\u094d\u0938 \u0915\u0930\u0924\u0947 \u0938\u092e\u092f \u092a\u094d\u0930\u0949\u092c\u094d\u0932\u092e \u0939\u094b \u0917\u092f\u0940 \n\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u094b \u0938\u0947\u0935 \u092e\u0924 \u0915\u0930\u093f\u090f \u0915\u094d\u092f\u0942\u0902\u0915\u093f \u0935\u094b \u092a\u0941\u0930\u093e\u0923\u0940 \u092b\u093e\u0907\u0932 \u0915\u094b \u092c\u0926\u0932 \u0926\u0947\u0917\u0940 \n\u0913\u092a\u0928 \u0906\u092a\u094d\u0936\u0928 \u0915\u094b \u0907\u0938\u094d\u0924\u0947\u092e\u093e\u0932 \u0915\u0940\u091c\u093f\u092f\u0947 \u0914\u0930 \u092b\u093f\u0930 \u0938\u0947 \u0915\u094b\u0936\u093f\u0936 \u0915\u0940\u091c\u093f\u092f\u0947 \n @@ -61,7 +61,7 @@ An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ atte An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=\u092e\u0936\u0940\u0928 \u0915\u0947 \u0932\u093f\u090f \u0935\u093f\u0936\u093f\u0937\u094d\u091f \u0915\u094b\u0921 \u0932\u094b\u0921 \u0915\u0930\u0928\u0947 \u0915\u093e \u092a\u094d\u0930\u092f\u093e\u0938 \u0915\u0930\u0924\u0947 \u0938\u092e\u092f \u090f\u0915 \u0905\u091c\u094d\u091e\u093e\u0924 \u0924\u094d\u0930\u0941\u091f\u093f \u0939\u0941\u0908 #: Preferences.java:85 -!Arabic= +Arabic=\u0905\u0930\u092c\u0940 #: Preferences.java:86 !Aragonese= @@ -79,10 +79,13 @@ Archive\ sketch\ canceled.=\u0938\u0902\u0917\u094d\u0930\u0939 \u0938\u094d\u09 Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=\u0938\u094d\u0915\u0947\u091a \u0938\u0902\u0917\u094d\u0930\u0939 \u0915\u093e\u0930\u0923 \u0930\u0926\u094d\u0926 \u0915\u0930 \u0926\u093f\u092f\u093e \u0917\u092f\u093e\n\u0938\u094d\u0915\u0947\u091a \u0920\u0940\u0915 \u0938\u0947 \u0928\u0939\u0940\u0902 save \u0939\u0941\u0906 #: ../../../processing/app/I18n.java:83 -!Arduino\ ARM\ (32-bits)\ Boards= +Arduino\ ARM\ (32-bits)\ Boards=\u0905\u0930\u094d\u0926\u0941\u0907\u0928\u094b ARM (32 - \u092c\u093f\u091f\u094d\u0938) \u092c\u094b\u0930\u094d\u0921 #: ../../../processing/app/I18n.java:82 -!Arduino\ AVR\ Boards= +Arduino\ AVR\ Boards=\u0905\u0930\u094d\u0926\u0941\u0907\u0928\u094b AVR \u092c\u094b\u0930\u094d\u0921 + +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=\u0906\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u0915\u094b \u0928\u0939\u0940\u0902 \u091a\u0932\u093e \u0938\u0915\u0924\u0947 \u0915\u094d\u092f\u094b\u0915\u093f \u0905\u092a\u0928\u0940 \u0938\u0947\u091f\u093f\u0902\u0917\u094d\u0938 \u0915\u094b \u0938\u094d\u091f\u094b\u0930 \u0915\u0930\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u092b\u093c\u094b\u0932\u094d\u0921\u0930 \u0928\u0939\u0940\u0902 \u092c\u0928\u093e \u0938\u0915\u0924\u093e @@ -201,10 +204,10 @@ Carriage\ return=Carriage return Check\ for\ updates\ on\ startup=\u0936\u0941\u0930\u0941\u0906\u0924 \u092e\u0947\u0902 \u0905\u0926\u094d\u092f\u0924\u0928 \u0915\u0947 \u0932\u093f\u090f \u091c\u093e\u0902\u091a\u0947\u0902 #: ../../../processing/app/Preferences.java:142 -!Chinese\ (China)= +Chinese\ (China)=\u091a\u0940\u0928\u0940 (\u091a\u0940\u0928) #: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= +Chinese\ (Hong\ Kong)=\u091a\u0940\u0928\u0940 (\u0939\u0949\u0928\u094d\u0917 \u0915\u0949\u0928\u094d\u0917) #: ../../../processing/app/Preferences.java:144 !Chinese\ (Taiwan)= @@ -213,7 +216,7 @@ Check\ for\ updates\ on\ startup=\u0936\u0941\u0930\u0941\u0906\u0924 \u092e\u0 !Chinese\ (Taiwan)\ (Big5)= #: Preferences.java:88 -!Chinese\ Simplified= +Chinese\ Simplified=\u0938\u0930\u0932 \u091a\u0940\u0928\u0940 #: Preferences.java:89 !Chinese\ Traditional= @@ -241,7 +244,7 @@ Copy=\u0915\u0949\u092a\u0940 Copy\ as\ HTML=HTML \u0915\u0947 \u0930\u0942\u092a \u092e\u0947\u0902 \u0915\u0949\u092a\u0940 #: ../../../processing/app/EditorStatus.java:455 -!Copy\ error\ messages= +Copy\ error\ messages=\u0924\u094d\u0930\u0941\u091f\u093f \u0938\u0928\u094d\u0926\u0947\u0936 \u0915\u0949\u092a\u0940 #: Editor.java:1165 Editor.java:2715 Copy\ for\ Forum=\u092b\u094b\u0930\u092e \u0915\u0947 \u0932\u093f\u092f\u0947 \u0915\u0949\u092a\u0940 @@ -298,7 +301,7 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=\u0906\u092a\u0915\u0940 \u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0930\u0940-\u0938\u0947\u0935 \u0928\u0939\u0940\u0902 \u0939\u094b \u092a\u093e\u0908 \u0939\u0948 #: Theme.java:52 -Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u0906\u092a\u0915\u094b processing \u0907\u0928\u094d\u0938\u094d\u091f\u093e\u0932 \u0915\u0930\u0928\u0940 \u092a\u095c\u0947\u0917\u093e +!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u0921\u093f\u092b\u094c\u0932\u094d\u091f \u0938\u0947\u0924\u094d\u0924\u093f\u0902\u0917\u094d\u0938 \u0938\u094d\u0924\u093e\u092a\u093f\u0924 \u0928\u0939\u0940\u0902 \u0939\u094b \u0938\u0915\u0940 \n\u0905\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u092b\u093f\u0930 \u0938\u0947 \u0907\u0928\u094d\u0938\u094d\u091f\u093e\u0932 \u0915\u0940\u091c\u093f\u092f\u0947 @@ -365,7 +368,7 @@ Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ Discard\ all\ changes\ and\ reload\ sketch?=\u0938\u092d \u092c\u0926\u0932\u093e\u0935 \u0930\u0926\u094d\u0926 \u0915\u0930\u0947 \u0914\u0930 \u092b\u093f\u0930 \u0938\u0947 \u0938\u094d\u0915\u0947\u0924\u094d\u091a \u091a\u0932\u093e\u092f\u0947\u0902 #: ../../../processing/app/Preferences.java:438 -!Display\ line\ numbers= +Display\ line\ numbers=\u0932\u093e\u0907\u0928 \u0928\u0902\u092c\u0930 \u0926\u093f\u0916\u093e\u090f\u0901 #: Editor.java:2064 Don't\ Save=\u0928 \u0938\u0939\u0947\u091c\u0947\u0902 @@ -398,10 +401,10 @@ Edit=\u0938\u0902\u092a\u093e\u0926\u093f\u0924 \u0915\u0930\u0947\u0902 Editor\ font\ size\:\ =\u090f\u0921\u093f\u091f\u0930 \u092b\u0949\u0923\u094d\u091f \u0938\u093e\u0907\u091c\u093c\: #: Preferences.java:353 -!Editor\ language\:\ = +Editor\ language\:\ =\u0938\u0902\u092a\u093e\u0926\u0915 \u092d\u093e\u0937\u093e #: Preferences.java:92 -!English= +English=\u0905\u0902\u0917\u094d\u0930\u0947\u091c\u0940 #: ../../../processing/app/Preferences.java:145 !English\ (United\ Kingdom)= @@ -428,13 +431,13 @@ Error\ getting\ the\ Arduino\ data\ folder.=\u0906\u0930\u094d\u0926\u0941\u0907 Error\ inside\ Serial.{0}()=\u0938\u0940\u0930\u093f\u092f\u0932 \u0915\u0947 \u0905\u0928\u094d\u0926\u0930 \u0924\u094d\u0930\u0941\u091f\u0940 {0}() #: ../../../processing/app/Base.java:1232 -!Error\ loading\ libraries= +Error\ loading\ libraries=\u092a\u0941\u0938\u094d\u0924\u093f\u0915\u093e \u0932\u094b\u0921 \u0915\u0930\u0928\u0947 \u092e\u0947\u0902 \u0924\u094d\u0930\u0941\u091f\u093f #: ../../../processing/app/debug/TargetPlatform.java:95 #: ../../../processing/app/debug/TargetPlatform.java:106 #: ../../../processing/app/debug/TargetPlatform.java:117 #, java-format -!Error\ loading\ {0}= +Error\ loading\ {0}={0} \u0932\u094b\u0921 \u0915\u0930\u0928\u0947 \u092e\u0947\u0902 \u0924\u094d\u0930\u0941\u091f\u093f #: Serial.java:181 #, java-format @@ -448,7 +451,7 @@ Error\ reading\ preferences=\u092a\u094d\u0930\u0947\u092b\u0947\u0930\u0947\u09 Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=\u092a\u094d\u0930\u0947\u092b\u0947\u0930\u0947\u0902\u0938\u0938 \u092a\u0922\u0928\u0947 \u092e\u0947\u0902 \u0924\u094d\u0930\u0941\u091f\u0940 ,\u0915\u0943\u092a\u094d\u092f\u093e \n{0} \u0915\u094b \u092e\u093f\u091f\u093e\u092f\u0947\u0902 \u092f\u093e \u0939\u091f\u093e\u092f\u0947\u0902 \u0914\u0930 \u0905\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u092a\u0941\u0928\u094d\u0939\u0947\u0902 \u091a\u093e\u0932\u0942 \u0915\u0930\u0947\u0902 #: ../../../cc/arduino/packages/DiscoveryManager.java:25 -!Error\ starting\ discovery\ method\:\ = +Error\ starting\ discovery\ method\:\ =\u0916\u094b\u091c \u092a\u094d\u0930\u0915\u094d\u0930\u093f\u092f\u093e \u0936\u0941\u0930\u0942 \u0915\u0930\u0928\u0947 \u092e\u0947\u0902 \u0924\u094d\u0930\u0941\u091f\u093f #: Serial.java:125 #, java-format @@ -524,7 +527,7 @@ Fix\ Encoding\ &\ Reload=\u090f\u0928\u094d\u0915\u094b\u0921\u093f\u0902\u0917 !Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ = #: Preferences.java:95 -!French= +French=\u095e\u094d\u0930\u093e\u0902\u0938\u093f\u0938\u0940 #: Editor.java:1097 Frequently\ Asked\ Questions=\u0905\u0915\u0938\u0930 \u092a\u0942\u091b\u0947 \u091c\u093e\u0928\u0947 \u0935\u093e\u0932\u0947 \u092a\u094d\u0930\u0936\u094d\u0928 @@ -571,7 +574,7 @@ Guide_Windows.html=Guide_Windows.html Help=\u092e\u0926\u0926 #: Preferences.java:99 -!Hindi= +Hindi=\u0939\u093f\u0902\u0926\u0940 #: Sketch.java:295 How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=\u092a\u0939\u0932\u0947 \u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u094b \u0938\u0947\u0935 \u0915\u0930 \u0932\u093f\u092f\u093e \u091c\u093e\u092f\u0947 \n\u0907\u0938\u0938\u0947 \u092a\u0939\u0932\u0947 \u0915\u0940 \u0909\u0938\u0915\u093e \u0928\u093e\u092e \u092c\u0926\u0932\u093e \u091c\u093e\u092f\u0947 ? @@ -608,10 +611,10 @@ Increase\ Indent=\u0907\u0928\u094d\u0921\u0947\u0928\u094d\u091f \u092c\u0922\u !Invalid\ library\ found\ in\ {0}\:\ {1}= #: Preferences.java:102 -!Italian= +Italian=\u0907\u0924\u093e\u0932\u0935\u0940 #: Preferences.java:103 -!Japanese= +Japanese=\u091c\u093e\u092a\u093e\u0928\u0940 #: Preferences.java:104 !Korean= @@ -629,7 +632,7 @@ Increase\ Indent=\u0907\u0928\u094d\u0921\u0947\u0928\u094d\u091f \u092c\u0922\u !Low\ memory\ available,\ stability\ problems\ may\ occur= #: Preferences.java:107 -!Marathi= +Marathi=\u092e\u0930\u093e\u0920\u0940 #: Base.java:2112 Message=\u0938\u0902\u0926\u0947\u0936 @@ -647,7 +650,7 @@ Moving=\u0917\u0924\u093f\u0936\u0940\u0932 Name\ for\ new\ file\:=\u0928\u092f\u0940 \u092b\u093e\u0907\u0932 \u0915\u093e \u0928\u093e\u092e #: ../../../processing/app/Preferences.java:149 -!Nepali= +Nepali=\u0928\u0947\u092a\u093e\u0932\u0940 #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 !Network\ upload\ using\ programmer\ not\ supported= @@ -677,7 +680,7 @@ No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu No\ changes\ necessary\ for\ Auto\ Format.=\u0911\u091f\u094b \u092b\u0949\u0930\u094d\u092e\u0947\u091f \u0915\u0947 \u0932\u093f\u090f \u0915\u094b\u0908 \u092c\u0926\u0932\u093e\u0935 \u091c\u0930\u0941\u0930\u0940 \u0928\u0939\u0940\u0902 \u0939\u0948\u0902 #: Editor.java:373 -!No\ files\ were\ added\ to\ the\ sketch.= +No\ files\ were\ added\ to\ the\ sketch.=\u0938\u094d\u0915\u0947\u091a \u092e\u0947\u0902 \u0915\u094b\u0908 \u092b\u093e\u0907\u0932 \u0928\u0939\u0940\u0902 \u091c\u094b\u095c\u0940 \u0917\u092f\u0940 #: Platform.java:167 No\ launcher\ available=\u0915\u094b\u0908 \u092a\u094d\u0930\u093e\u0930\u0902\u092d \u0915\u0930\u0924\u093e \u0909\u092a\u0932\u092d\u094d\u0926 \u0928\u0939\u0940\u0902 @@ -743,7 +746,7 @@ Page\ Setup=\u092a\u0943\u0937\u094d\u0920 \u0938\u0947\u091f\u0905\u092a Paste=\u092a\u0947\u0938\u094d\u091f #: Preferences.java:109 -!Persian= +Persian=\u092a\u093e\u0930\u0938\u0940 #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=\u0938\u094d\u0915\u0947\u091a \u0938\u0947 \u090f\u0938 \u092a\u0940 \u0906\u0908 \u0932\u093e\u092f\u092c\u094d\u0930\u0947\u0930\u0940 \u0915\u093e \u0906\u092f\u093e\u0924 \u0915\u0930\u0947\u0902 @@ -797,7 +800,7 @@ Problem\ Setting\ the\ Platform=\u092a\u094d\u0932\u0947\u091f\u092b\u093e\u0930 !Problem\ accessing\ board\ folder\ /www/sd= #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 -!Problem\ accessing\ files\ in\ folder\ = +Problem\ accessing\ files\ in\ folder\ =\u092a\u0941\u0938\u094d\u0924\u093f\u0915\u093e \u092e\u0947\u0902 \u092b\u093e\u0907\u0932\u094b \u0924\u0915 \u092a\u0939\u0941\u091a\u0928\u0947 \u092e\u0947\u0902 \u0926\u093f\u0915\u094d\u0915\u0924 #: Base.java:1673 Problem\ getting\ data\ folder=\u0921\u0947\u091f\u093e \u092b\u093c\u094b\u0932\u094d\u0921\u0930 \u0915\u094b \u0932\u0947\u0928\u0947 \u092e\u0947\u0902 \u0938\u092e\u0938\u094d\u092f\u093e \u0939\u0948 @@ -812,9 +815,6 @@ Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troublesh #: Sketch.java:355 Sketch.java:362 Sketch.java:373 Problem\ with\ rename=\u0928\u093e\u092e \u092c\u0926\u0932\u0928\u0947 \u092e\u0947\u0902 \u092e\u0941\u0936\u094d\u0915\u093f\u0932 -#: Editor.java:2137 -Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=\u092a\u094d\u0930\u094b\u0938\u0947\u0938\u093f\u0902\u0917 \u0915\u0947\u0935\u0932 \u0905\u092a\u0928\u0947 \u0939\u0940 \u0938\u094d\u0915\u0947\u091a\u0947\u0938 \u0916\u094b\u0932 \u0938\u0915\u0924\u093e \u0939\u0948\n\u0914\u0930 \u0926\u0942\u0938\u0930\u0940 \u092b\u093e\u0907\u0932\u094d\u0938 \u091c\u093f\u0928\u0915\u093e \u0905\u0902\u0924 .ino \u0905\u0925\u0935\u093e .pde \u0938\u0947 \u0939\u094b\u0924\u093e \u0939\u0948 - #: ../../../processing/app/I18n.java:86 !Processor= @@ -853,7 +853,7 @@ Replace\ with\:=\u0915\u0940 \u091c\u0917\u0939\: !Romanian= #: Preferences.java:114 -!Russian= +Russian=\u0930\u0942\u0938\u0940 #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529 #: Editor.java:2064 Editor.java:2468 @@ -993,7 +993,7 @@ Sunshine=\u0938\u0942\u0930\u094d\u092f \u0915\u093f\u0930\u0928 !System\ Default= #: Preferences.java:116 -!Tamil= +Tamil=\u0924\u092e\u093f\u0932 #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.='\u092c\u093e\u0907\u091f' \u0915\u0940\u0935\u0930\u094d\u0921 \u0905\u092c \u0938\u092e\u0930\u094d\u0925\u093f\u0924 \u0928\u0939\u0940\u0902 \u0939\u0948 @@ -1106,7 +1106,7 @@ Upload\ Using\ Programmer=\u092a\u094d\u0930\u094b\u0917\u094d\u0930\u093e\u092e Upload\ canceled.=\u0909\u092a\u0932\u094b\u0921 \u0930\u0926\u094d\u0926 \u0915\u0930 \u0926\u093f\u092f\u093e \u0917\u092f\u093e #: ../../../processing/app/Sketch.java:1678 -!Upload\ cancelled= +Upload\ cancelled=\u0905\u092a\u0932\u094b\u0921 \u0915\u0948\u0902\u0938\u093f\u0932 \u0915\u093f\u092f\u093e \u0917\u092f\u093e #: Editor.java:2378 Uploading\ to\ I/O\ Board...=\u0907/\u0913 \u092c\u094b\u0930\u094d\u0921 \u092a\u0930 \u0909\u092a\u0932\u094b\u0921 \u0939\u094b \u0930\u0939\u093e \u0939\u0948..... @@ -1186,7 +1186,7 @@ You\ forgot\ your\ sketchbook=\u0906\u092a \u0905\u092a\u0928\u0940 \u0938\u094d You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=\u0906\u092a \u0906\u091c \u0915\u0947 \u0926\u093f\u0928 \u0915\u0947 \u0928\u090f \u0938\u094d\u0915\u0947\u091a \u0915\u0947 \u0938\u094d\u0935\u0924\: \u0928\u093e\u092e\u0915\u0930\u0923 \u0915\u0940 \u0938\u0940\u092e\u093e \u0924\u0915 \u092a\u0939\u0941\u0901\u091a \u0917\u090f \u0939\u0948\u0902\n\u0907\u0938\u0915\u0947 \u092c\u091c\u093e\u092f \u091f\u0939\u0932\u0928\u0947 \u091c\u093e\u0928\u0947 \u0915\u0947 \u092c\u093e\u0930\u0947 \u092e\u0947 \u0915\u094d\u092f\u093e \u0916\u092f\u093e\u0932 \u0939\u0948? #: Base.java:2638 -!ZIP\ files\ or\ folders= +ZIP\ files\ or\ folders=ZIP \u092b\u093e\u0907\u0932\u0947\u0902 \u092f\u093e \u092a\u0941\u0938\u094d\u0924\u093f\u0915\u093e\u090f\u0901 #: Base.java:2661 !Zip\ doesn't\ contain\ a\ library= @@ -1197,7 +1197,7 @@ You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day #: SketchCode.java:258 #, java-format -"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}"\u0905\u092a\u0930\u093f\u091a\u093f\u0924 \u0905\u0915\u094d\u0937\u0930 ,\u0905\u0917\u0930 \u0915\u094b\u0921 \u092a\u094d\u0930\u094b\u0938\u0938\u094d\u0938\u093f\u0902\u0917 \u0915\u0947 \u092a\u0941\u0930\u093e\u0928\u0947 \u0938\u0902\u0915\u0930\u0923 \u092e\u0947\u0902 \u0932\u093f\u0916\u093e \u0917\u092f\u093e \u0939\u0948 \u0906\u092a\u0915\u094b \u091f\u0942\u0932\u094d\u0938 \u0916\u094b\u0932\u0928\u093e \u092a\u095c\u0947\u0917\u093e \u0909\u0938\u092e\u0947 -> \u092b\u093f\u0915\u094d\u0938 \u090f\u0928\u094d\u0915\u094b\u0921\u093f\u0902\u0917 \u0914\u0930 \u0930\u0940\u0932\u094b\u0921 \u0915\u0940\u091c\u093f\u092f\u0947 \u0924\u093e\u0915\u093f UTF-8 \u090f\u0928\u094d\u0915\u094b\u0921\u093f\u0902\u0917 \u0907\u0938\u094d\u0924\u0947\u092e\u093e\u0932 \u0939\u094b \u0938\u0915\u0947 \u0905\u0917\u0930 \u092f\u0947 \u0938\u092c \u0928\u0939\u0940\u0902 \u0915\u0930\u0928\u093e \u0924\u094b \u0906\u092a\u0915\u094b \u0935\u094b \u0905\u0915\u094d\u0937\u0930 \u092e\u093f\u091f\u093e\u0928\u0947 \u0939\u094b\u0902\u0917\u0947 \u0924\u093e\u0915\u093f \u092f\u0939 \u091a\u0947\u0924\u093e\u0935\u0928\u0940 \u0928\u093e \u0906\u092f\u0947 +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 \nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\n\u0906\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u0909\u0928\u094d\u0928\u0940\u0938 \u0924\u0915, \u0908\u0925\u0930\u0928\u0947\u091f \u0932\u093e\u092f\u092c\u094d\u0930\u0947\u0930\u0940 \u090f\u0938 \u092a\u0940 \u0906\u0908 \u0932\u093e\u092f\u092c\u094d\u0930\u0947\u0930\u0940 \u092a\u0930 \u0928\u093f\u0930\u094d\u092d\u0930 \u0915\u0930\u0924\u0940 \u0939\u0948\u0906\u092a \u092f\u0939 \u0905\u0925\u0935\u093e \u0926\u0942\u0938\u0930\u0940 \u0932\u093e\u092f\u092c\u094d\u0930\u0947\u0930\u0940 \u0909\u092a\u092f\u094b\u0917 \u0915\u0930\u0924\u0947 \u0939\u0941\u090f \u0926\u093f\u0916\u093e\u0908 \u0926\u0947 \u0930\u0939\u0947 \u0939\u0948\u0902 \u091c\u094b \u090f\u0938 \u092a\u0940 \u0906\u0908 \u092a\u0930 \u0928\u093f\u0930\u094d\u092d\u0930 \u0915\u0930\u0924\u0940 \u0939\u0948 \n diff --git a/arduino-core/src/processing/app/i18n/Resources_hr_HR.po b/arduino-core/src/processing/app/i18n/Resources_hr_HR.po index f333f7ccf..74d191860 100644 --- a/arduino-core/src/processing/app/i18n/Resources_hr_HR.po +++ b/arduino-core/src/processing/app/i18n/Resources_hr_HR.po @@ -9,8 +9,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Croatian (Croatia) (http://www.transifex.com/projects/p/arduino-ide-15/language/hr_HR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -139,6 +139,12 @@ msgstr "Arduino ARM (32-bitna) Pločica" msgid "Arduino AVR Boards" msgstr "Arduino AVR Pločica" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -173,11 +179,11 @@ msgstr "Želiš li sigurno obrisati skicu?" #: ../../../processing/app/Preferences.java:137 msgid "Armenian" -msgstr "" +msgstr "Armenian" #: ../../../processing/app/Preferences.java:138 msgid "Asturian" -msgstr "" +msgstr "Asturian" #: tools/AutoFormat.java:91 msgid "Auto Format" @@ -222,7 +228,7 @@ msgstr "Pogrešno odabrana datoteka" #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" -msgstr "" +msgstr "Belarusian" #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 @@ -234,15 +240,15 @@ msgstr "Pločica" msgid "" "Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:" " {3}" -msgstr "" +msgstr "Ploča {0}:{1}:{2} ne definira ''build.board'' postavke. Auto-podešavanje na: {3}" #: ../../../processing/app/EditorStatus.java:472 msgid "Board: " -msgstr "" +msgstr "Ploča: " #: ../../../processing/app/Preferences.java:140 msgid "Bosnian" -msgstr "" +msgstr "Bosnian" #: SerialMonitor.java:112 msgid "Both NL & CR" @@ -262,7 +268,7 @@ msgstr "Bulgarian" #: ../../../processing/app/Preferences.java:141 msgid "Burmese (Myanmar)" -msgstr "" +msgstr "Burmese (Myanmar)" #: Editor.java:708 msgid "Burn Bootloader" @@ -303,19 +309,19 @@ msgstr "Provjeri promjene pri pokretanju" #: ../../../processing/app/Preferences.java:142 msgid "Chinese (China)" -msgstr "" +msgstr "Chinese (China)" #: ../../../processing/app/Preferences.java:142 msgid "Chinese (Hong Kong)" -msgstr "" +msgstr "Chinese (Hong Kong)" #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" -msgstr "" +msgstr "Chinese (Taiwan)" #: ../../../processing/app/Preferences.java:143 msgid "Chinese (Taiwan) (Big5)" -msgstr "" +msgstr "Chinese (Taiwan) (Big5)" #: Preferences.java:88 msgid "Chinese Simplified" @@ -340,7 +346,7 @@ msgstr "Greška kompajlera, molimo prijavite taj kod na {0}" #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." -msgstr "Kompajliranje skice..." +msgstr "Prevođenje skice..." #: EditorConsole.java:152 msgid "Console Error" @@ -356,7 +362,7 @@ msgstr "Kopiraj kao HTML" #: ../../../processing/app/EditorStatus.java:455 msgid "Copy error messages" -msgstr "" +msgstr "Kopiranje poruke o grešci" #: Editor.java:1165 Editor.java:2715 msgid "Copy for Forum" @@ -397,17 +403,17 @@ msgstr "Nemogu obrisati {0}" #: ../../../processing/app/debug/TargetPlatform.java:74 #, java-format msgid "Could not find boards.txt in {0}. Is it pre-1.5?" -msgstr "" +msgstr "Nije moguče naći boards.txt u {0}. Da li je verzija prije -1.5?" #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 #, java-format msgid "Could not find tool {0}" -msgstr "" +msgstr "Nije moguće naći alat {0}" #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 #, java-format msgid "Could not find tool {0} from package {1}" -msgstr "" +msgstr "Nije moguće naći alat {0} iz paketa {1}" #: Base.java:1934 #, java-format @@ -437,7 +443,7 @@ msgstr "Nemogu ponovno pohraniti skicu." msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "Nemože se pročitati definicija boja.\nPotrebno je ponovna instalacija Arduino-a." +msgstr "" #: Preferences.java:219 msgid "" @@ -532,7 +538,7 @@ msgstr "Odbaci sve promjene i ponovno učitaj skicu ?" #: ../../../processing/app/Preferences.java:438 msgid "Display line numbers" -msgstr "" +msgstr "Prikaži brojeve linija" #: Editor.java:2064 msgid "Don't Save" @@ -564,7 +570,7 @@ msgstr "Dutch" #: ../../../processing/app/Preferences.java:144 msgid "Dutch (Netherlands)" -msgstr "" +msgstr "Dutch (Netherlands)" #: Editor.java:1130 msgid "Edit" @@ -584,7 +590,7 @@ msgstr "English" #: ../../../processing/app/Preferences.java:145 msgid "English (United Kingdom)" -msgstr "" +msgstr "English (United Kingdom)" #: Editor.java:1062 msgid "Environment" @@ -615,14 +621,14 @@ msgstr "Greška na Serial.{0}()" #: ../../../processing/app/Base.java:1232 msgid "Error loading libraries" -msgstr "" +msgstr "Greška očitavanja ˙biblioteka" #: ../../../processing/app/debug/TargetPlatform.java:95 #: ../../../processing/app/debug/TargetPlatform.java:106 #: ../../../processing/app/debug/TargetPlatform.java:117 #, java-format msgid "Error loading {0}" -msgstr "" +msgstr "Greška očitavanja ˙{0}" #: Serial.java:181 #, java-format @@ -642,7 +648,7 @@ msgstr "Greška pri čitanju datoteke s preporučenim vrijednostima. Obriši (il #: ../../../cc/arduino/packages/DiscoveryManager.java:25 msgid "Error starting discovery method: " -msgstr "" +msgstr "Greška pokretanja metode pronalaženja: " #: Serial.java:125 #, java-format @@ -655,7 +661,7 @@ msgstr "Greska pri zapisu bootloadera." #: ../../../processing/app/Editor.java:2555 msgid "Error while burning bootloader: missing '{0}' configuration parameter" -msgstr "" +msgstr "Greška kod programiranja bootloader-a: nedostaje '{0}' konfiguracijski parametar" #: SketchCode.java:83 #, java-format @@ -669,7 +675,7 @@ msgstr "Greška pri tiskanju." #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" -msgstr "" +msgstr "Greška prilikom prebacivanja: nedostaje '{0}' konfiguracijski parametar" #: Preferences.java:93 msgid "Estonian" @@ -677,7 +683,7 @@ msgstr "Estonian" #: ../../../processing/app/Preferences.java:146 msgid "Estonian (Estonia)" -msgstr "" +msgstr "Estonian (Estonia)" #: Editor.java:516 msgid "Examples" @@ -725,7 +731,7 @@ msgstr "Pronađi:" #: ../../../processing/app/Preferences.java:147 msgid "Finnish" -msgstr "" +msgstr "Finnish" #: tools/FixEncoding.java:41 tools/FixEncoding.java:58 #: tools/FixEncoding.java:79 @@ -771,12 +777,12 @@ msgstr "Krenimo od poćetka" msgid "" "Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes " "for local variables. Maximum is {1} bytes." -msgstr "" +msgstr "Globalne promjenjljive koriste {0} bajtova ({2}%%) RAM-a, ostalo je {3} bajtova za lokalne promjenjljive. Maximim je {1} bajtova." #: ../../../processing/app/Sketch.java:1651 #, java-format msgid "Global variables use {0} bytes of dynamic memory." -msgstr "" +msgstr "Globalne promjenjljive koriste {0} bajtova RAM-a" #: Preferences.java:98 msgid "Greek" @@ -849,7 +855,7 @@ msgid "" "disable this in the Preferences dialog.\n" "\n" "Save sketch and update its extension?" -msgstr "" +msgstr "In Arduino 1.0, osnovna ektenzija je izmjenjena\niz .pde u .ino. Nove skice (uključujuči tek kreirane\nsa \"Pohrani kao\") će korisiti novu ekstenziju. \nEkstenzije postojećih skica će biti ažururane kod pohranjivanja,\nali i to možete zabraniti u dijalogu postavki,\n\nPohraniti skicu i ažurirati ekstenziju?" #: Editor.java:1216 Editor.java:2757 msgid "Increase Indent" @@ -862,7 +868,7 @@ msgstr "Indonesian" #: ../../../processing/app/Base.java:1204 #, java-format msgid "Invalid library found in {0}: {1}" -msgstr "" +msgstr "Neispravna biblioteka u {0}: {1}" #: Preferences.java:102 msgid "Italian" @@ -890,7 +896,7 @@ msgstr "Lithuaninan" #: ../../../processing/app/Sketch.java:1660 msgid "Low memory available, stability problems may occur" -msgstr "" +msgstr "Premalo memorije dostupno, mogu se pojaviti problemi sa stabilnošču." #: Preferences.java:107 msgid "Marathi" @@ -902,7 +908,7 @@ msgstr "Poruka" #: ../../../processing/app/preproc/PdePreprocessor.java:412 msgid "Missing the */ from the end of a /* comment */" -msgstr "" +msgstr "Nedostaje */ na kraju bloka /* komentar */" #: Preferences.java:449 msgid "More preferences can be edited directly in the file" @@ -918,11 +924,11 @@ msgstr "Naziv nove datoteke:" #: ../../../processing/app/Preferences.java:149 msgid "Nepali" -msgstr "" +msgstr "Nepali" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 msgid "Network upload using programmer not supported" -msgstr "" +msgstr "Mrežno prebacivanje uporabom programatora nije moguće" #: EditorToolbar.java:41 Editor.java:493 msgid "New" @@ -979,12 +985,12 @@ msgstr "Ne postoji referenca za \"{0}\"" #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." -msgstr "" +msgstr "Nije pronađena valida osnova. Izlazak..." #: ../../../processing/app/debug/TargetPackage.java:63 #, java-format msgid "No valid hardware definitions found in folder {0}." -msgstr "" +msgstr "Nije pronađena definicija hardwera u mapi {0}." #: Base.java:191 msgid "Non-fatal error while setting the Look & Feel." @@ -1002,7 +1008,7 @@ msgstr "Norwegian Bokmål" msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " "for tips on reducing your footprint." -msgstr "" +msgstr "Nema dovoljno memorije; vidi http://www.arduino.cc/en/Guide/Troubleshooting#size za savjete kako smanjiti program." #: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2145 Editor.java:2465 @@ -1039,7 +1045,7 @@ msgstr "Postavke stranice" #: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 msgid "Password:" -msgstr "" +msgstr "Lozinka:" #: Editor.java:1189 Editor.java:2731 msgid "Paste" @@ -1063,19 +1069,19 @@ msgstr "Polish" #: ../../../processing/app/Editor.java:718 msgid "Port" -msgstr "" +msgstr "Port" #: ../../../processing/app/Preferences.java:151 msgid "Portugese" -msgstr "" +msgstr "Portugese" #: ../../../processing/app/Preferences.java:127 msgid "Portuguese (Brazil)" -msgstr "" +msgstr "Portuguese (Brazil)" #: ../../../processing/app/Preferences.java:128 msgid "Portuguese (Portugal)" -msgstr "" +msgstr "Portuguese (Portugal)" #: Preferences.java:295 Editor.java:583 msgid "Preferences" @@ -1115,11 +1121,11 @@ msgstr "Greška pri postavljanju platforme" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 msgid "Problem accessing board folder /www/sd" -msgstr "" +msgstr "Problem pri pristupu mapi ploče /www/sd" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 msgid "Problem accessing files in folder " -msgstr "" +msgstr "Problem pri pristupu datotekama u mapi" #: Base.java:1673 msgid "Problem getting data folder" @@ -1140,12 +1146,6 @@ msgstr "Problem prijenosa na pločicu. vidi http://www.arduino.cc/en/Guide/Troub msgid "Problem with rename" msgstr "Problem s preimenovanjem" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "Arduino može pokrenuti samo vlastitu skicu\ni druge datoteke s sufiksom .ino ili .pde" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "Procesor" @@ -1251,7 +1251,7 @@ msgstr "Odaberi novu lokaciju za bilježnicu s skicama" #: ../../../processing/app/debug/Compiler.java:146 msgid "Selected board depends on '{0}' core (not installed)." -msgstr "" +msgstr "Izabrana ploča zavisi od '{0}' osnove (nije instalirana)" #: SerialMonitor.java:93 msgid "Send" @@ -1299,7 +1299,7 @@ msgstr "Prikaži mapu s skicama" #: ../../../processing/app/EditorStatus.java:468 msgid "Show verbose output during compilation" -msgstr "" +msgstr "Prikaži opširne poruke prilikom prevođenja" #: Preferences.java:387 msgid "Show verbose output during: " @@ -1340,7 +1340,7 @@ msgstr "Skica je prevelika: vidi http://www.arduino.cc/en/Guide/Troubleshooting# msgid "" "Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} " "bytes." -msgstr "" +msgstr "Skica koristi {0} bytes ({2}%%) od prostora za program. Maximum je {1} bajtova." #: Editor.java:510 msgid "Sketchbook" @@ -1356,11 +1356,11 @@ msgstr "Lokacija skica:" #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" -msgstr "" +msgstr "Skice (*.ino, *.pde)" #: ../../../processing/app/Preferences.java:152 msgid "Slovenian" -msgstr "" +msgstr "Slovenian" #: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967 msgid "" @@ -1390,7 +1390,7 @@ msgstr "Sunčeve zrake" #: ../../../processing/app/Preferences.java:153 msgid "Swedish" -msgstr "" +msgstr "Swedish" #: Preferences.java:84 msgid "System Default" @@ -1496,7 +1496,7 @@ msgstr "Datoteka je vć kopirana na\nmjesto" #: ../../../processing/app/EditorStatus.java:467 msgid "This report would have more information with" -msgstr "" +msgstr "Ovo izvješće imaće više informacija sa" #: Base.java:535 msgid "Time for a Break" @@ -1516,11 +1516,11 @@ msgstr "Turkish" #: ../../../processing/app/Editor.java:2507 msgid "Type board password to access its console" -msgstr "" +msgstr "Unesite lozinku ploče za pristup konzoli" #: ../../../processing/app/Sketch.java:1673 msgid "Type board password to upload a new sketch" -msgstr "" +msgstr "Unesite lozinku ploče da se prebaci nava skica" #: ../../../processing/app/Preferences.java:118 msgid "Ukrainian" @@ -1529,19 +1529,19 @@ msgstr "Ukrainian" #: ../../../processing/app/Editor.java:2524 #: ../../../processing/app/NetworkMonitor.java:145 msgid "Unable to connect: is the sketch using the bridge?" -msgstr "" +msgstr "Nije moguča konekcija: dali skica koristi bridge?" #: ../../../processing/app/NetworkMonitor.java:130 msgid "Unable to connect: retrying" -msgstr "" +msgstr "Nima konekcije: ponovni pokušaj" #: ../../../processing/app/Editor.java:2526 msgid "Unable to connect: wrong password?" -msgstr "" +msgstr "Nije moguča konekcija: pogrešna lozinka?" #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" -msgstr "" +msgstr "Ne može se otvoriti prozor serijske komunikacije" #: Sketch.java:1432 #, java-format @@ -1581,7 +1581,7 @@ msgstr "Prenošenje prekinuto." #: ../../../processing/app/Sketch.java:1678 msgid "Upload cancelled" -msgstr "" +msgstr "Prenos prekinut!" #: Editor.java:2378 msgid "Uploading to I/O Board..." @@ -1602,12 +1602,12 @@ msgstr "Korištenje vanjskog editora" #: ../../../processing/app/debug/Compiler.java:94 #, java-format msgid "Using library {0} in folder: {1} {2}" -msgstr "" +msgstr "Upotreba biblioteke {0} u mapi: {1}{2}" #: ../../../processing/app/debug/Compiler.java:320 #, java-format msgid "Using previously compiled file: {0}" -msgstr "" +msgstr "Upotreba prethodno kompajlirane datoteke: {0}" #: EditorToolbar.java:41 EditorToolbar.java:46 msgid "Verify" @@ -1623,7 +1623,7 @@ msgstr "Provjera koda nakon prijenosa" #: ../../../processing/app/Preferences.java:154 msgid "Vietnamese" -msgstr "" +msgstr "Vietnamese" #: Editor.java:1105 msgid "Visit Arduino.cc" @@ -1688,7 +1688,7 @@ msgstr "Zaboravili ste mapu s skicama" #: ../../../processing/app/AbstractMonitor.java:92 msgid "" "You've pressed {0} but nothing was sent. Should you select a line ending?" -msgstr "" +msgstr "Pritisnuli ste {0}, ali ništa nije poslano. Da li ste izabrali kraj linije?" #: Base.java:536 msgid "" @@ -1713,10 +1713,10 @@ msgstr "\".{0}\" nije valjana ekstenzija." #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." -msgstr "\"{0}\" sadrži nepoznate znakove. Ako je ovaj kod napravljen s starijom verzijom alata, potrebno je upotrijebiti Alati -> Popravi enkoding i ponovno učitaj kako bi se popravila skica i upotrijebio UTF-8 enkoding. Ako to nije slučaj potrebno je ručno popraviti znakove, kako bi se izbjeglo ovo upozorenje." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." +msgstr "" #: debug/Compiler.java:409 msgid "" @@ -1779,7 +1779,7 @@ msgstr "kompajliranje" #: ../../../processing/app/NetworkMonitor.java:111 msgid "connected!" -msgstr "" +msgstr "spojeno!" #: Sketch.java:540 msgid "createNewFile() returned false" @@ -1787,7 +1787,7 @@ msgstr "createNewFile() vratio je false" #: ../../../processing/app/EditorStatus.java:469 msgid "enabled in File > Preferences." -msgstr "" +msgstr "omogućeno u File > Preferences." #: Base.java:2090 msgid "environment" diff --git a/arduino-core/src/processing/app/i18n/Resources_hr_HR.properties b/arduino-core/src/processing/app/i18n/Resources_hr_HR.properties index bcfdf04dd..bbb50b7e4 100644 --- a/arduino-core/src/processing/app/i18n/Resources_hr_HR.properties +++ b/arduino-core/src/processing/app/i18n/Resources_hr_HR.properties @@ -4,7 +4,7 @@ # # Translators: # , 2012. -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Croatian (Croatia) (http\://www.transifex.com/projects/p/arduino-ide-15/language/hr_HR/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: hr_HR\nPlural-Forms\: nplurals\=3; plural\=n%10\=\=1 && n%100\!\=11 ? 0 \: n%10>\=2 && n%10<\=4 && (n%100<10 || n%100>\=20) ? 1 \: 2;\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Croatian (Croatia) (http\://www.transifex.com/projects/p/arduino-ide-15/language/hr_HR/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: hr_HR\nPlural-Forms\: nplurals\=3; plural\=n%10\=\=1 && n%100\!\=11 ? 0 \: n%10>\=2 && n%10<\=4 && (n%100<10 || n%100>\=20) ? 1 \: 2;\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ (potrebno ponovno pokretanje Arduina) @@ -84,6 +84,9 @@ Arduino\ ARM\ (32-bits)\ Boards=Arduino ARM (32-bitna) Plo\u010dica #: ../../../processing/app/I18n.java:82 Arduino\ AVR\ Boards=Arduino AVR Plo\u010dica +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino se nemo\u017ee pokrenuti zbog nemogu\u010dnosti\nkreiranja mape za pohranjivanje postavki. @@ -104,10 +107,10 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u017deli\u0161 li sigurno obrisat Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u017deli\u0161 li sigurno obrisati skicu? #: ../../../processing/app/Preferences.java:137 -!Armenian= +Armenian=Armenian #: ../../../processing/app/Preferences.java:138 -!Asturian= +Asturian=Asturian #: tools/AutoFormat.java:91 Auto\ Format=Auto Formatiranje @@ -141,7 +144,7 @@ Bad\ error\ line\:\ {0}=Gre\u0161ka u liniji\: {0} Bad\ file\ selected=Pogre\u0161no odabrana datoteka #: ../../../processing/app/Preferences.java:139 -!Belarusian= +Belarusian=Belarusian #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 @@ -149,13 +152,13 @@ Board=Plo\u010dica #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format -!Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= +Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=Plo\u010da {0}\:{1}\:{2} ne definira ''build.board'' postavke. Auto-pode\u0161avanje na\: {3} #: ../../../processing/app/EditorStatus.java:472 -!Board\:\ = +Board\:\ =Plo\u010da\: #: ../../../processing/app/Preferences.java:140 -!Bosnian= +Bosnian=Bosnian #: SerialMonitor.java:112 Both\ NL\ &\ CR=Oba NL & CR @@ -170,7 +173,7 @@ Build\ folder\ disappeared\ or\ could\ not\ be\ written=Mapa za kompajliranje je Bulgarian=Bulgarian #: ../../../processing/app/Preferences.java:141 -!Burmese\ (Myanmar)= +Burmese\ (Myanmar)=Burmese (Myanmar) #: Editor.java:708 Burn\ Bootloader=Zapi\u0161i Bootloader @@ -201,16 +204,16 @@ Catalan=Catalan Check\ for\ updates\ on\ startup=Provjeri promjene pri pokretanju #: ../../../processing/app/Preferences.java:142 -!Chinese\ (China)= +Chinese\ (China)=Chinese (China) #: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= +Chinese\ (Hong\ Kong)=Chinese (Hong Kong) #: ../../../processing/app/Preferences.java:144 -!Chinese\ (Taiwan)= +Chinese\ (Taiwan)=Chinese (Taiwan) #: ../../../processing/app/Preferences.java:143 -!Chinese\ (Taiwan)\ (Big5)= +Chinese\ (Taiwan)\ (Big5)=Chinese (Taiwan) (Big5) #: Preferences.java:88 Chinese\ Simplified=Chinese Simplified @@ -229,7 +232,7 @@ Comment/Uncomment=Komentiraj/odkomentiraj Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Gre\u0161ka kompajlera, molimo prijavite taj kod na {0} #: Sketch.java:1608 Editor.java:1890 -Compiling\ sketch...=Kompajliranje skice... +Compiling\ sketch...=Prevo\u0111enje skice... #: EditorConsole.java:152 Console\ Error=Gre\u0161ka s konzolom @@ -241,7 +244,7 @@ Copy=Kopiraj Copy\ as\ HTML=Kopiraj kao HTML #: ../../../processing/app/EditorStatus.java:455 -!Copy\ error\ messages= +Copy\ error\ messages=Kopiranje poruke o gre\u0161ci #: Editor.java:1165 Editor.java:2715 Copy\ for\ Forum=Kopiraj na forum @@ -273,15 +276,15 @@ Could\ not\ delete\ {0}=Nemogu obrisati {0} #: ../../../processing/app/debug/TargetPlatform.java:74 #, java-format -!Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?= +Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?=Nije mogu\u010de na\u0107i boards.txt u {0}. Da li je verzija prije -1.5? #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 #, java-format -!Could\ not\ find\ tool\ {0}= +Could\ not\ find\ tool\ {0}=Nije mogu\u0107e na\u0107i alat {0} #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 #, java-format -!Could\ not\ find\ tool\ {0}\ from\ package\ {1}= +Could\ not\ find\ tool\ {0}\ from\ package\ {1}=Nije mogu\u0107e na\u0107i alat {0} iz paketa {1} #: Base.java:1934 #, java-format @@ -298,7 +301,7 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=Nemogu ponovno pohraniti skicu. #: Theme.java:52 -Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Nemo\u017ee se pro\u010ditati definicija boja.\nPotrebno je ponovno instalirati Arduino. +!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Nemogu pro\u010ditati osnovne postavke.\nPotrebno je ponovno instalirati Arduino. @@ -365,7 +368,7 @@ Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ Discard\ all\ changes\ and\ reload\ sketch?=Odbaci sve promjene i ponovno u\u010ditaj skicu ? #: ../../../processing/app/Preferences.java:438 -!Display\ line\ numbers= +Display\ line\ numbers=Prika\u017ei brojeve linija #: Editor.java:2064 Don't\ Save=Nemoj snimiti @@ -389,7 +392,7 @@ Done\ uploading.=Preno\u0161enje zavr\u0161eno. Dutch=Dutch #: ../../../processing/app/Preferences.java:144 -!Dutch\ (Netherlands)= +Dutch\ (Netherlands)=Dutch (Netherlands) #: Editor.java:1130 Edit=Uredi @@ -404,7 +407,7 @@ Editor\ language\:\ =Jezik editora\: English=English #: ../../../processing/app/Preferences.java:145 -!English\ (United\ Kingdom)= +English\ (United\ Kingdom)=English (United Kingdom) #: Editor.java:1062 Environment=Okolina @@ -428,13 +431,13 @@ Error\ getting\ the\ Arduino\ data\ folder.=Gre\u0161ka pri dohvatu Arduino mape Error\ inside\ Serial.{0}()=Gre\u0161ka na Serial.{0}() #: ../../../processing/app/Base.java:1232 -!Error\ loading\ libraries= +Error\ loading\ libraries=Gre\u0161ka o\u010ditavanja \u02d9biblioteka #: ../../../processing/app/debug/TargetPlatform.java:95 #: ../../../processing/app/debug/TargetPlatform.java:106 #: ../../../processing/app/debug/TargetPlatform.java:117 #, java-format -!Error\ loading\ {0}= +Error\ loading\ {0}=Gre\u0161ka o\u010ditavanja \u02d9{0} #: Serial.java:181 #, java-format @@ -448,7 +451,7 @@ Error\ reading\ preferences=Gre\u0161ka pri \u010ditanju preporu\u010denih vrije Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Gre\u0161ka pri \u010ditanju datoteke s preporu\u010denim vrijednostima. Obri\u0161i (ili \nizmjesti) {0} datoteku i ponovno pokreni Arduino. #: ../../../cc/arduino/packages/DiscoveryManager.java:25 -!Error\ starting\ discovery\ method\:\ = +Error\ starting\ discovery\ method\:\ =Gre\u0161ka pokretanja metode pronala\u017eenja\: #: Serial.java:125 #, java-format @@ -458,7 +461,7 @@ Error\ touching\ serial\ port\ ''{0}''.=Gre\u0161ka pri provjeri serijskog porta Error\ while\ burning\ bootloader.=Greska pri zapisu bootloadera. #: ../../../processing/app/Editor.java:2555 -!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=Gre\u0161ka kod programiranja bootloader-a\: nedostaje '{0}' konfiguracijski parametar #: SketchCode.java:83 #, java-format @@ -469,13 +472,13 @@ Error\ while\ printing.=Gre\u0161ka pri tiskanju. #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 -!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= +Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=Gre\u0161ka prilikom prebacivanja\: nedostaje '{0}' konfiguracijski parametar #: Preferences.java:93 Estonian=Estonian #: ../../../processing/app/Preferences.java:146 -!Estonian\ (Estonia)= +Estonian\ (Estonia)=Estonian (Estonia) #: Editor.java:516 Examples=Primjeri @@ -511,7 +514,7 @@ Find...=Prona\u0111i... Find\:=Prona\u0111i\: #: ../../../processing/app/Preferences.java:147 -!Finnish= +Finnish=Finnish #: tools/FixEncoding.java:41 tools/FixEncoding.java:58 #: tools/FixEncoding.java:79 @@ -543,11 +546,11 @@ Getting\ Started=Krenimo od po\u0107etka #: ../../../processing/app/Sketch.java:1646 #, java-format -!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.= +Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=Globalne promjenjljive koriste {0} bajtova ({2}%%) RAM-a, ostalo je {3} bajtova za lokalne promjenjljive. Maximim je {1} bajtova. #: ../../../processing/app/Sketch.java:1651 #, java-format -!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.= +Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=Globalne promjenjljive koriste {0} bajtova RAM-a #: Preferences.java:98 Greek=German @@ -595,7 +598,7 @@ Ignoring\ sketch\ with\ bad\ name=Presko\u010di skicu s lo\u0161im imenom Import\ Library...=Unesi Biblioteku... #: ../../../processing/app/Sketch.java:736 -!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?= +In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=In Arduino 1.0, osnovna ektenzija je izmjenjena\niz .pde u .ino. Nove skice (uklju\u010duju\u010di tek kreirane\nsa "Pohrani kao") \u0107e korisiti novu ekstenziju. \nEkstenzije postoje\u0107ih skica \u0107e biti a\u017eururane kod pohranjivanja,\nali i to mo\u017eete zabraniti u dijalogu postavki,\n\nPohraniti skicu i a\u017eurirati ekstenziju? #: Editor.java:1216 Editor.java:2757 Increase\ Indent=Pove\u010daj razmak @@ -605,7 +608,7 @@ Indonesian=Indonesian #: ../../../processing/app/Base.java:1204 #, java-format -!Invalid\ library\ found\ in\ {0}\:\ {1}= +Invalid\ library\ found\ in\ {0}\:\ {1}=Neispravna biblioteka u {0}\: {1} #: Preferences.java:102 Italian=Italian @@ -626,7 +629,7 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Biblioteka Lithuaninan=Lithuaninan #: ../../../processing/app/Sketch.java:1660 -!Low\ memory\ available,\ stability\ problems\ may\ occur= +Low\ memory\ available,\ stability\ problems\ may\ occur=Premalo memorije dostupno, mogu se pojaviti problemi sa stabilno\u0161\u010du. #: Preferences.java:107 Marathi=Marathi @@ -635,7 +638,7 @@ Marathi=Marathi Message=Poruka #: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Nedostaje */ na kraju bloka /* komentar */ #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Vi\u0161e preporu\u010denih vrijednosti mogu\u0107e je promjeniti direktno ure\u0111ivanjem datoteke @@ -647,10 +650,10 @@ Moving=Pomakni Name\ for\ new\ file\:=Naziv nove datoteke\: #: ../../../processing/app/Preferences.java:149 -!Nepali= +Nepali=Nepali #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 -!Network\ upload\ using\ programmer\ not\ supported= +Network\ upload\ using\ programmer\ not\ supported=Mre\u017eno prebacivanje uporabom programatora nije mogu\u0107e #: EditorToolbar.java:41 Editor.java:493 New=Novo @@ -693,11 +696,11 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Stvarno ? Vrijeme je za malo No\ reference\ available\ for\ "{0}"=Ne postoji referenca za "{0}" #: ../../../processing/app/Base.java:309 -!No\ valid\ configured\ cores\ found\!\ Exiting...= +No\ valid\ configured\ cores\ found\!\ Exiting...=Nije prona\u0111ena valida osnova. Izlazak... #: ../../../processing/app/debug/TargetPackage.java:63 #, java-format -!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.= +No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=Nije prona\u0111ena definicija hardwera u mapi {0}. #: Base.java:191 Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Upozorenje pri postavljanju parametara radne okoline. @@ -709,7 +712,7 @@ Nope=Ni\u0161ta Norwegian\ Bokm\u00e5l=Norwegian Bokm\u00e5l #: ../../../processing/app/Sketch.java:1656 -!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.= +Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=Nema dovoljno memorije; vidi http\://www.arduino.cc/en/Guide/Troubleshooting\#size za savjete kako smanjiti program. #: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2145 Editor.java:2465 @@ -737,7 +740,7 @@ Open...=Otvaranje... Page\ Setup=Postavke stranice #: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 -!Password\:= +Password\:=Lozinka\: #: Editor.java:1189 Editor.java:2731 Paste=Zaljepi @@ -755,16 +758,16 @@ Please\ install\ JDK\ 1.5\ or\ later=Molim instalirajte JDK 1.5 ili ve\u0107i Polish=Polish #: ../../../processing/app/Editor.java:718 -!Port= +Port=Port #: ../../../processing/app/Preferences.java:151 -!Portugese= +Portugese=Portugese #: ../../../processing/app/Preferences.java:127 -!Portuguese\ (Brazil)= +Portuguese\ (Brazil)=Portuguese (Brazil) #: ../../../processing/app/Preferences.java:128 -!Portuguese\ (Portugal)= +Portuguese\ (Portugal)=Portuguese (Portugal) #: Preferences.java:295 Editor.java:583 Preferences=Preporu\u010dene vrijednosti @@ -794,10 +797,10 @@ Problem\ Opening\ URL=Problem s otvaranjem URL-a Problem\ Setting\ the\ Platform=Gre\u0161ka pri postavljanju platforme #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 -!Problem\ accessing\ board\ folder\ /www/sd= +Problem\ accessing\ board\ folder\ /www/sd=Problem pri pristupu mapi plo\u010de /www/sd #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 -!Problem\ accessing\ files\ in\ folder\ = +Problem\ accessing\ files\ in\ folder\ =Problem pri pristupu datotekama u mapi #: Base.java:1673 Problem\ getting\ data\ folder=Problem pri dohvatu mape s podacima. @@ -812,9 +815,6 @@ Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troublesh #: Sketch.java:355 Sketch.java:362 Sketch.java:373 Problem\ with\ rename=Problem s preimenovanjem -#: Editor.java:2137 -Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Arduino mo\u017ee pokrenuti samo vlastitu skicu\ni druge datoteke s sufiksom .ino ili .pde - #: ../../../processing/app/I18n.java:86 Processor=Procesor @@ -894,7 +894,7 @@ Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Odabir Select\ new\ sketchbook\ location=Odaberi novu lokaciju za bilje\u017enicu s skicama #: ../../../processing/app/debug/Compiler.java:146 -!Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).= +Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=Izabrana plo\u010da zavisi od '{0}' osnove (nije instalirana) #: SerialMonitor.java:93 Send=Po\u0161alji @@ -925,7 +925,7 @@ Settings\ issues=Problem s postavkama Show\ Sketch\ Folder=Prika\u017ei mapu s skicama #: ../../../processing/app/EditorStatus.java:468 -!Show\ verbose\ output\ during\ compilation= +Show\ verbose\ output\ during\ compilation=Prika\u017ei op\u0161irne poruke prilikom prevo\u0111enja #: Preferences.java:387 Show\ verbose\ output\ during\:\ =Prika\u017ei detaljan ispis pri\: @@ -953,7 +953,7 @@ Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ f #: ../../../processing/app/Sketch.java:1639 #, java-format -!Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.= +Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.=Skica koristi {0} bytes ({2}%%) od prostora za program. Maximum je {1} bajtova. #: Editor.java:510 Sketchbook=Zbirka skica @@ -965,10 +965,10 @@ Sketchbook\ folder\ disappeared=Nestala je mapa s biljznicam s skicama Sketchbook\ location\:=Lokacija skica\: #: ../../../processing/app/Base.java:785 -!Sketches\ (*.ino,\ *.pde)= +Sketches\ (*.ino,\ *.pde)=Skice (*.ino, *.pde) #: ../../../processing/app/Preferences.java:152 -!Slovenian= +Slovenian=Slovenian #: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967 Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Neke datoteke skice su ozna\u010dene s "samo za \u010ditanje", te \u0107e ih\ntrebati ponovno snimitina na drugu lokaciju\ni poku\u0161ati ponovno. @@ -987,7 +987,7 @@ Spanish=Spanish Sunshine=Sun\u010deve zrake #: ../../../processing/app/Preferences.java:153 -!Swedish= +Swedish=Swedish #: Preferences.java:84 System\ Default=Osnovne sistemske postavke @@ -1044,7 +1044,7 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Datoteka je v\u0107 kopirana na\nmjesto #: ../../../processing/app/EditorStatus.java:467 -!This\ report\ would\ have\ more\ information\ with= +This\ report\ would\ have\ more\ information\ with=Ovo izvje\u0161\u0107e ima\u0107e vi\u0161e informacija sa #: Base.java:535 Time\ for\ a\ Break=Vrijeme za pauzu @@ -1059,26 +1059,26 @@ Troubleshooting=Pronala\u017eenej gre\u0161aka Turkish=Turkish #: ../../../processing/app/Editor.java:2507 -!Type\ board\ password\ to\ access\ its\ console= +Type\ board\ password\ to\ access\ its\ console=Unesite lozinku plo\u010de za pristup konzoli #: ../../../processing/app/Sketch.java:1673 -!Type\ board\ password\ to\ upload\ a\ new\ sketch= +Type\ board\ password\ to\ upload\ a\ new\ sketch=Unesite lozinku plo\u010de da se prebaci nava skica #: ../../../processing/app/Preferences.java:118 Ukrainian=Ukrainian #: ../../../processing/app/Editor.java:2524 #: ../../../processing/app/NetworkMonitor.java:145 -!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?= +Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=Nije mogu\u010da konekcija\: dali skica koristi bridge? #: ../../../processing/app/NetworkMonitor.java:130 -!Unable\ to\ connect\:\ retrying= +Unable\ to\ connect\:\ retrying=Nima konekcije\: ponovni poku\u0161aj #: ../../../processing/app/Editor.java:2526 -!Unable\ to\ connect\:\ wrong\ password?= +Unable\ to\ connect\:\ wrong\ password?=Nije mogu\u010da konekcija\: pogre\u0161na lozinka? #: ../../../processing/app/Editor.java:2512 -!Unable\ to\ open\ serial\ monitor= +Unable\ to\ open\ serial\ monitor=Ne mo\u017ee se otvoriti prozor serijske komunikacije #: Sketch.java:1432 #, java-format @@ -1106,7 +1106,7 @@ Upload\ Using\ Programmer=Prijenos pomo\u0107u Programmera Upload\ canceled.=Preno\u0161enje prekinuto. #: ../../../processing/app/Sketch.java:1678 -!Upload\ cancelled= +Upload\ cancelled=Prenos prekinut\! #: Editor.java:2378 Uploading\ to\ I/O\ Board...=Preno\u0161enje na I/O plo\u010du... @@ -1122,11 +1122,11 @@ Use\ external\ editor=Kori\u0161tenje vanjskog editora #: ../../../processing/app/debug/Compiler.java:94 #, java-format -!Using\ library\ {0}\ in\ folder\:\ {1}\ {2}= +Using\ library\ {0}\ in\ folder\:\ {1}\ {2}=Upotreba biblioteke {0} u mapi\: {1}{2} #: ../../../processing/app/debug/Compiler.java:320 #, java-format -!Using\ previously\ compiled\ file\:\ {0}= +Using\ previously\ compiled\ file\:\ {0}=Upotreba prethodno kompajlirane datoteke\: {0} #: EditorToolbar.java:41 EditorToolbar.java:46 Verify=Provjeri @@ -1138,7 +1138,7 @@ Verify\ /\ Compile=Provjeri/Kompajliraj Verify\ code\ after\ upload=Provjera koda nakon prijenosa #: ../../../processing/app/Preferences.java:154 -!Vietnamese= +Vietnamese=Vietnamese #: Editor.java:1105 Visit\ Arduino.cc=Posjeti Arduino.cc @@ -1180,7 +1180,7 @@ You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ g You\ forgot\ your\ sketchbook=Zaboravili ste mapu s skicama #: ../../../processing/app/AbstractMonitor.java:92 -!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?= +You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=Pritisnuli ste {0}, ali ni\u0161ta nije poslano. Da li ste izabrali kraj linije? #: Base.java:536 You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Dosegnuli ste limit za automatsko postaljanje imena skicama.\nRecimo da se malo odmorite ? @@ -1197,7 +1197,7 @@ Zip\ doesn't\ contain\ a\ library=ZIP ne sadr\u017ei biblioteku #: SketchCode.java:258 #, java-format -"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" sadr\u017ei nepoznate znakove. Ako je ovaj kod napravljen s starijom verzijom alata, potrebno je upotrijebiti Alati -> Popravi enkoding i ponovno u\u010ditaj kako bi se popravila skica i upotrijebio UTF-8 enkoding. Ako to nije slu\u010daj potrebno je ru\u010dno popraviti znakove, kako bi se izbjeglo ovo upozorenje. +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 \nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nOd Arduino 0019, Ethernet biblioteka ovisi o SPI biblioteci.\nIzgleda da ju koristite ili neka druga biblioteka ovisi o SPI biblioteci.\n\n @@ -1227,13 +1227,13 @@ baud=baud compilation\ =kompajliranje #: ../../../processing/app/NetworkMonitor.java:111 -!connected\!= +connected\!=spojeno\! #: Sketch.java:540 createNewFile()\ returned\ false=createNewFile() vratio je false #: ../../../processing/app/EditorStatus.java:469 -!enabled\ in\ File\ >\ Preferences.= +enabled\ in\ File\ >\ Preferences.=omogu\u0107eno u File > Preferences. #: Base.java:2090 environment=okolina diff --git a/arduino-core/src/processing/app/i18n/Resources_hu.po b/arduino-core/src/processing/app/i18n/Resources_hu.po index e156d0b59..94b5caf0c 100644 --- a/arduino-core/src/processing/app/i18n/Resources_hu.po +++ b/arduino-core/src/processing/app/i18n/Resources_hu.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Hungarian (http://www.transifex.com/projects/p/arduino-ide-15/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,7 +35,7 @@ msgstr "(csak akkor szerkeszthető, ha az Arduino nem fut)" #: Sketch.java:746 msgid ".pde -> .ino" -msgstr "" +msgstr ".pde -> .ino" #: Base.java:773 msgid "" @@ -50,7 +50,7 @@ msgid "" " font: 11pt \"Lucida Grande\"; margin-top: 8px } Do you " "want to save changes to this sketch
    before closing?

    If you don't " "save, your changes will be lost." -msgstr "" +msgstr " Szeretné menteni a változtatásokat ezen a Sketchen
    mielött bezárná?

    Ha nem menti el, a változtatások elvesznek." #: Sketch.java:398 #, java-format @@ -60,18 +60,18 @@ msgstr "A \"{0}\" file már létezik a \"{1}\" mappában!" #: Editor.java:2169 #, java-format msgid "A folder named \"{0}\" already exists. Can't open sketch." -msgstr "" +msgstr "Ez a mappa \"{0}\" már létezik. Sketchet nem lehet megnyitni." #: Base.java:2690 #, java-format msgid "A library named {0} already exists" -msgstr "" +msgstr "Ezen a néven {0} könyvtár már létezik" #: UpdateCheck.java:103 msgid "" "A new version of Arduino is available,\n" "would you like to visit the Arduino download page?" -msgstr "" +msgstr "Elérhetö az Arduino új verziója. Szeretnéd meglátogatni az Arduino letöltö oldalát?" #: EditorConsole.java:153 msgid "" @@ -81,11 +81,11 @@ msgstr "" #: Editor.java:1116 msgid "About Arduino" -msgstr "" +msgstr "Arduinoról" #: Editor.java:650 msgid "Add File..." -msgstr "" +msgstr "Fájl hozzáadása..." #: Base.java:963 msgid "Add Library..." @@ -106,19 +106,19 @@ msgstr "Rendszerfüggő kód betöltése során\\n hiba lépett fel. A hiba az #: Preferences.java:85 msgid "Arabic" -msgstr "" +msgstr "Arab" #: Preferences.java:86 msgid "Aragonese" -msgstr "" +msgstr "Aragóniai" #: tools/Archiver.java:48 msgid "Archive Sketch" -msgstr "" +msgstr "Sketch arhiválása" #: tools/Archiver.java:109 msgid "Archive sketch as:" -msgstr "" +msgstr "Sketch arhiválása másként:" #: tools/Archiver.java:139 msgid "Archive sketch canceled." @@ -138,6 +138,12 @@ msgstr "" msgid "Arduino AVR Boards" msgstr "" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -159,7 +165,7 @@ msgstr "Az Arduino futtatásához teljes telepítésű JDK (Java Fejlesztői Kö #: ../../../processing/app/EditorStatus.java:471 msgid "Arduino: " -msgstr "" +msgstr "Arduino: " #: Sketch.java:588 #, java-format @@ -1139,12 +1145,6 @@ msgstr "Hiba a feltöltés során. A hiba elhárítása a http://www.arduino.cc/ msgid "Problem with rename" msgstr "Hiba az átnevezés során" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "" @@ -1712,9 +1712,9 @@ msgstr " \".{0}\" nem megfelelő kiterjesztés." #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." msgstr "" #: debug/Compiler.java:409 diff --git a/arduino-core/src/processing/app/i18n/Resources_hu.properties b/arduino-core/src/processing/app/i18n/Resources_hu.properties index e7e03781f..09ceb3e7d 100644 --- a/arduino-core/src/processing/app/i18n/Resources_hu.properties +++ b/arduino-core/src/processing/app/i18n/Resources_hu.properties @@ -2,8 +2,8 @@ # Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # Robert Cseh , 2012. -# -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Hungarian (http\://www.transifex.com/projects/p/arduino-ide-15/language/hu/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: hu\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +# +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Hungarian (http\://www.transifex.com/projects/p/arduino-ide-15/language/hu/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: hu\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(Arduino \u00fajraind\u00edt\u00e1sa sz\u00fcks\u00e9ges) @@ -18,13 +18,13 @@ (edit\ only\ when\ Arduino\ is\ not\ running)=(csak akkor szerkeszthet\u0151, ha az Arduino nem fut) #: Sketch.java:746 -!.pde\ ->\ .ino= +.pde\ ->\ .ino=.pde -> .ino #: Base.java:773 \ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

    Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= Biztosan ki akarsz l\u00e9pni?

    Az utols\u00f3 Sketch bez\u00e1r\u00e1s\u00e1val az Arduino kil\u00e9p. #: Editor.java:2053 -!\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Do\ you\ want\ to\ save\ changes\ to\ this\ sketch
    \ before\ closing?

    If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Do\ you\ want\ to\ save\ changes\ to\ this\ sketch
    \ before\ closing?

    If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= Szeretn\u00e9 menteni a v\u00e1ltoztat\u00e1sokat ezen a Sketchen
    miel\u00f6tt bez\u00e1rn\u00e1?

    Ha nem menti el, a v\u00e1ltoztat\u00e1sok elvesznek. #: Sketch.java:398 #, java-format @@ -32,23 +32,23 @@ A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=A "{0}" file m\u00e1r l\u00e9t #: Editor.java:2169 #, java-format -!A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.= +A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=Ez a mappa "{0}" m\u00e1r l\u00e9tezik. Sketchet nem lehet megnyitni. #: Base.java:2690 #, java-format -!A\ library\ named\ {0}\ already\ exists= +A\ library\ named\ {0}\ already\ exists=Ezen a n\u00e9ven {0} k\u00f6nyvt\u00e1r m\u00e1r l\u00e9tezik #: UpdateCheck.java:103 -!A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?= +A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=El\u00e9rhet\u00f6 az Arduino \u00faj verzi\u00f3ja. Szeretn\u00e9d megl\u00e1togatni az Arduino let\u00f6lt\u00f6 oldal\u00e1t? #: EditorConsole.java:153 !A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.= #: Editor.java:1116 -!About\ Arduino= +About\ Arduino=Arduinor\u00f3l #: Editor.java:650 -!Add\ File...= +Add\ File...=F\u00e1jl hozz\u00e1ad\u00e1sa... #: Base.java:963 Add\ Library...=F\u00fcggv\u00e9nyk\u00f6nyvt\u00e1r hozz\u00e1ad\u00e1sa... @@ -60,16 +60,16 @@ Add\ Library...=F\u00fcggv\u00e9nyk\u00f6nyvt\u00e1r hozz\u00e1ad\u00e1sa... An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Rendszerf\u00fcgg\u0151 k\u00f3d bet\u00f6lt\u00e9se sor\u00e1n\\n hiba l\u00e9pett fel. A hiba az \u00d6n g\u00e9p\u00e9ben van. #: Preferences.java:85 -!Arabic= +Arabic=Arab #: Preferences.java:86 -!Aragonese= +Aragonese=Arag\u00f3niai #: tools/Archiver.java:48 -!Archive\ Sketch= +Archive\ Sketch=Sketch arhiv\u00e1l\u00e1sa #: tools/Archiver.java:109 -!Archive\ sketch\ as\:= +Archive\ sketch\ as\:=Sketch arhiv\u00e1l\u00e1sa m\u00e1sk\u00e9nt\: #: tools/Archiver.java:139 !Archive\ sketch\ canceled.= @@ -83,6 +83,9 @@ An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ #: ../../../processing/app/I18n.java:82 !Arduino\ AVR\ Boards= +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino nem futtathat\u00f3, mert nem hozhat\u00f3 l\u00e9tre\\na felhaszn\u00e1l\u00f3i be\u00e1ll\u00edt\u00e1sok mapp\u00e1ja. @@ -93,7 +96,7 @@ Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ you Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Az Arduino futtat\u00e1s\u00e1hoz teljes telep\u00edt\u00e9s\u0171 JDK (Java Fejleszt\u0151i K\u00f6rnyezet) /nsz\u00fcks\u00e9ges, nem elegend\u0151 csak a JRE (Java futtat\u00f3k\u00f6rnyezet)./nA JDK 1.5 vagy \u00fajabb szofver telep\u00edt\u00e9se sz\u00fcks\u00e9ges./nB\u0151vebb inform\u00e1ci\u00f3 a Referenci\u00e1k k\u00f6zt tal\u00e1lhat\u00f3. #: ../../../processing/app/EditorStatus.java:471 -!Arduino\:\ = +Arduino\:\ =Arduino\: #: Sketch.java:588 #, java-format @@ -811,9 +814,6 @@ Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troublesh #: Sketch.java:355 Sketch.java:362 Sketch.java:373 Problem\ with\ rename=Hiba az \u00e1tnevez\u00e9s sor\u00e1n -#: Editor.java:2137 -!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= - #: ../../../processing/app/I18n.java:86 !Processor= diff --git a/arduino-core/src/processing/app/i18n/Resources_hy.po b/arduino-core/src/processing/app/i18n/Resources_hy.po index 4fb0b72ed..e2e17d1c3 100644 --- a/arduino-core/src/processing/app/i18n/Resources_hy.po +++ b/arduino-core/src/processing/app/i18n/Resources_hy.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/arduino-ide-15/language/hy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -138,6 +138,12 @@ msgstr "" msgid "Arduino AVR Boards" msgstr "" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -1139,12 +1145,6 @@ msgstr "" msgid "Problem with rename" msgstr "" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "" @@ -1712,9 +1712,9 @@ msgstr "" #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." msgstr "" #: debug/Compiler.java:409 diff --git a/arduino-core/src/processing/app/i18n/Resources_hy.properties b/arduino-core/src/processing/app/i18n/Resources_hy.properties index e8e550ba0..e672e730e 100644 --- a/arduino-core/src/processing/app/i18n/Resources_hy.properties +++ b/arduino-core/src/processing/app/i18n/Resources_hy.properties @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Armenian (http\://www.transifex.com/projects/p/arduino-ide-15/language/hy/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: hy\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Armenian (http\://www.transifex.com/projects/p/arduino-ide-15/language/hy/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: hy\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 !\ \ (requires\ restart\ of\ Arduino)= @@ -83,6 +83,9 @@ Arabic=\u0531\u0580\u0561\u0562\u0565\u0580\u0565\u0576 #: ../../../processing/app/I18n.java:82 !Arduino\ AVR\ Boards= +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 !Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.= @@ -811,9 +814,6 @@ Previous=\u0546\u0561\u056d\u056f\u056b\u0576 #: Sketch.java:355 Sketch.java:362 Sketch.java:373 !Problem\ with\ rename= -#: Editor.java:2137 -!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= - #: ../../../processing/app/I18n.java:86 !Processor= diff --git a/arduino-core/src/processing/app/i18n/Resources_in.po b/arduino-core/src/processing/app/i18n/Resources_in.po index 25fc7e152..ef964ccb3 100644 --- a/arduino-core/src/processing/app/i18n/Resources_in.po +++ b/arduino-core/src/processing/app/i18n/Resources_in.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/arduino-ide-15/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -138,6 +138,12 @@ msgstr "" msgid "Arduino AVR Boards" msgstr "" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -1139,12 +1145,6 @@ msgstr "" msgid "Problem with rename" msgstr "" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "" @@ -1712,9 +1712,9 @@ msgstr "" #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." msgstr "" #: debug/Compiler.java:409 diff --git a/arduino-core/src/processing/app/i18n/Resources_it_IT.po b/arduino-core/src/processing/app/i18n/Resources_it_IT.po index 8c3fe4e77..393b586b0 100644 --- a/arduino-core/src/processing/app/i18n/Resources_it_IT.po +++ b/arduino-core/src/processing/app/i18n/Resources_it_IT.po @@ -11,8 +11,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:51+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:15+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Italian (Italy) (http://www.transifex.com/projects/p/arduino-ide-15/language/it_IT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -141,6 +141,12 @@ msgstr "Schede Arduino ARM (32-bits)" msgid "Arduino AVR Boards" msgstr "Schede Arduino AVR" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -439,7 +445,7 @@ msgstr "Impossibile salvare nuovamente lo sketch" msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "Impossibile leggere le impostazioni del tema dei colori.\nDevi reinstallare Arduino" +msgstr "" #: Preferences.java:219 msgid "" @@ -904,7 +910,7 @@ msgstr "Messaggio" #: ../../../processing/app/preproc/PdePreprocessor.java:412 msgid "Missing the */ from the end of a /* comment */" -msgstr "" +msgstr "Manca il */ finale di un /* commento */" #: Preferences.java:449 msgid "More preferences can be edited directly in the file" @@ -1142,12 +1148,6 @@ msgstr "Problema di caricamento sulla scheda. Guarda http://www.arduino.cc/en/Gu msgid "Problem with rename" msgstr "Problemi con il cambio di nome" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "Arduino può aprire solo i propri sketch\ne i file con estensione .ino o .pde" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "Processore" @@ -1715,10 +1715,10 @@ msgstr "\".{0}\" non è un'estensione valida" #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." -msgstr "{0} contiene caratteri non riconosciuti. Se il codice è stato creato con una versione\nprecedente di Arduino, potrebbe essere necessario usare \"Strumenti -> Correggi codifica e\nricarica\" per aggiornare lo sketch alla codifica UTF-8. In alternativa devi cancellare i caratteri errati per sbarazzarti questo avviso" +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." +msgstr "" #: debug/Compiler.java:409 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_it_IT.properties b/arduino-core/src/processing/app/i18n/Resources_it_IT.properties index 21886be05..ca1469f51 100644 --- a/arduino-core/src/processing/app/i18n/Resources_it_IT.properties +++ b/arduino-core/src/processing/app/i18n/Resources_it_IT.properties @@ -6,7 +6,7 @@ # Deiv Xile , 2012. # , 2012. # , 2012. -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:51+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Italian (Italy) (http\://www.transifex.com/projects/p/arduino-ide-15/language/it_IT/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: it_IT\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:15+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Italian (Italy) (http\://www.transifex.com/projects/p/arduino-ide-15/language/it_IT/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: it_IT\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(richiede il riavvio di Arduino) @@ -86,6 +86,9 @@ Arduino\ ARM\ (32-bits)\ Boards=Schede Arduino ARM (32-bits) #: ../../../processing/app/I18n.java:82 Arduino\ AVR\ Boards=Schede Arduino AVR +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino non pu\u00f2 avviarsi perch\u00e8 non riesce a\ncreare la cartella dove salvare le impostazioni @@ -300,7 +303,7 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=Impossibile salvare nuovamente lo sketch #: Theme.java:52 -Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Impossibile leggere le impostazioni del tema dei colori.\nDevi reinstallare Arduino +!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Impossibile leggere le impostazioni predefinite.\nDevi reinstallare Arduino @@ -637,7 +640,7 @@ Marathi=Marathi Message=Messaggio #: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Manca il */ finale di un /* commento */ #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Altre impostazioni possono essere modificate direttamente nel file @@ -814,9 +817,6 @@ Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troublesh #: Sketch.java:355 Sketch.java:362 Sketch.java:373 Problem\ with\ rename=Problemi con il cambio di nome -#: Editor.java:2137 -Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Arduino pu\u00f2 aprire solo i propri sketch\ne i file con estensione .ino o .pde - #: ../../../processing/app/I18n.java:86 Processor=Processore @@ -1199,7 +1199,7 @@ Zip\ doesn't\ contain\ a\ library=Il file ZIP non contiene una libreria #: SketchCode.java:258 #, java-format -"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.={0} contiene caratteri non riconosciuti. Se il codice \u00e8 stato creato con una versione\nprecedente di Arduino, potrebbe essere necessario usare "Strumenti -> Correggi codifica e\nricarica" per aggiornare lo sketch alla codifica UTF-8. In alternativa devi cancellare i caratteri errati per sbarazzarti questo avviso +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 \nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nA partire da Arduino 0019, la libreria Ethernet dipende dalla libreria SPI.\nSembra che tu stia usando quella o un'altra libreria che dipende\ndalla libreria SPI\n diff --git a/arduino-core/src/processing/app/i18n/Resources_iw.po b/arduino-core/src/processing/app/i18n/Resources_iw.po index cffcd3cd1..9dc5ed83f 100644 --- a/arduino-core/src/processing/app/i18n/Resources_iw.po +++ b/arduino-core/src/processing/app/i18n/Resources_iw.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/arduino-ide-15/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -138,6 +138,12 @@ msgstr "לוחות ARM ארדווינו (32 - סיביות)" msgid "Arduino AVR Boards" msgstr "לוחות ארדווינו AVR" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -159,7 +165,7 @@ msgstr "ארדואינו דורש JDK מלא (לא רק JRE) כדי לרוץ.\n #: ../../../processing/app/EditorStatus.java:471 msgid "Arduino: " -msgstr "" +msgstr "ארדואינו:" #: Sketch.java:588 #, java-format @@ -172,11 +178,11 @@ msgstr "האם אתה בטוח שאתה רוצה למחוק את הסקיצה ה #: ../../../processing/app/Preferences.java:137 msgid "Armenian" -msgstr "" +msgstr "ארמנית" #: ../../../processing/app/Preferences.java:138 msgid "Asturian" -msgstr "" +msgstr "אוסטרית" #: tools/AutoFormat.java:91 msgid "Auto Format" @@ -221,7 +227,7 @@ msgstr "נבחר קובץ לא תקין" #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" -msgstr "" +msgstr "בלארוסית" #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 @@ -233,15 +239,15 @@ msgstr "לוח" msgid "" "Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:" " {3}" -msgstr "" +msgstr "לוח {0}:{1}:{2} אינו מסוגל להגדיר את העדפת \"build.board\". שונה-אוטומטית ל: {3}" #: ../../../processing/app/EditorStatus.java:472 msgid "Board: " -msgstr "" +msgstr "לוח:" #: ../../../processing/app/Preferences.java:140 msgid "Bosnian" -msgstr "" +msgstr "בוסנית" #: SerialMonitor.java:112 msgid "Both NL & CR" @@ -261,7 +267,7 @@ msgstr "בולגרית" #: ../../../processing/app/Preferences.java:141 msgid "Burmese (Myanmar)" -msgstr "" +msgstr "ב" #: Editor.java:708 msgid "Burn Bootloader" @@ -302,19 +308,19 @@ msgstr "בדוק עדכונים בהפעלה" #: ../../../processing/app/Preferences.java:142 msgid "Chinese (China)" -msgstr "" +msgstr "סינית (סין(מנדרינית))" #: ../../../processing/app/Preferences.java:142 msgid "Chinese (Hong Kong)" -msgstr "" +msgstr "סינית (הונג קונג(יְוֵה))" #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" -msgstr "" +msgstr "סינית (טאיוואן (מִין))" #: ../../../processing/app/Preferences.java:143 msgid "Chinese (Taiwan) (Big5)" -msgstr "" +msgstr "סין (טיוואן) (Big5)" #: Preferences.java:88 msgid "Chinese Simplified" @@ -355,7 +361,7 @@ msgstr "העתק כ HTML" #: ../../../processing/app/EditorStatus.java:455 msgid "Copy error messages" -msgstr "" +msgstr "העתק הודעות שגיאה" #: Editor.java:1165 Editor.java:2715 msgid "Copy for Forum" @@ -396,17 +402,17 @@ msgstr "לא ניתן למחוק את {0}" #: ../../../processing/app/debug/TargetPlatform.java:74 #, java-format msgid "Could not find boards.txt in {0}. Is it pre-1.5?" -msgstr "" +msgstr "לא ניתן למצוא את boards.txt ב{0}. Is it pre-1.5?" #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 #, java-format msgid "Could not find tool {0}" -msgstr "" +msgstr "לא ניתן למצוא את הכלי {0}" #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 #, java-format msgid "Could not find tool {0} from package {1}" -msgstr "" +msgstr "לא ניתן למצוא את הכלי {0} מחבילה {1}" #: Base.java:1934 #, java-format @@ -436,7 +442,7 @@ msgstr "לא ניתן לשמור מחדש את הסקיצה" msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "לא נית לקרוא את הגדרות ערכת הצבעים.\nצריך להתקין מחדש עיבוד." +msgstr "" #: Preferences.java:219 msgid "" @@ -531,7 +537,7 @@ msgstr "להתעלם מכל השינויים ולטעון מחדש את הסקי #: ../../../processing/app/Preferences.java:438 msgid "Display line numbers" -msgstr "" +msgstr "הצג מספור שורות" #: Editor.java:2064 msgid "Don't Save" @@ -563,7 +569,7 @@ msgstr "הולנדית" #: ../../../processing/app/Preferences.java:144 msgid "Dutch (Netherlands)" -msgstr "" +msgstr "נורבגית (נורבגיה)" #: Editor.java:1130 msgid "Edit" @@ -583,7 +589,7 @@ msgstr "אנגלית" #: ../../../processing/app/Preferences.java:145 msgid "English (United Kingdom)" -msgstr "" +msgstr "אנגלית (הממלכה המאוחדת)" #: Editor.java:1062 msgid "Environment" @@ -614,14 +620,14 @@ msgstr "שגיאה בסיריאל. {0}()" #: ../../../processing/app/Base.java:1232 msgid "Error loading libraries" -msgstr "" +msgstr "שגיאה בטעינה הספריות" #: ../../../processing/app/debug/TargetPlatform.java:95 #: ../../../processing/app/debug/TargetPlatform.java:106 #: ../../../processing/app/debug/TargetPlatform.java:117 #, java-format msgid "Error loading {0}" -msgstr "" +msgstr "שגיאה בטעינה {0}" #: Serial.java:181 #, java-format @@ -641,7 +647,7 @@ msgstr "ארעה שגיאה בקריאת קובץ ההעדפות.\nאנא מחק #: ../../../cc/arduino/packages/DiscoveryManager.java:25 msgid "Error starting discovery method: " -msgstr "" +msgstr "שגיאה בהתחלת הליך גילוי:" #: Serial.java:125 #, java-format @@ -654,7 +660,7 @@ msgstr "שגיאה אירעה בעת צריבת תוכנת הפעלה." #: ../../../processing/app/Editor.java:2555 msgid "Error while burning bootloader: missing '{0}' configuration parameter" -msgstr "" +msgstr "שגיה במהלך צריבת bootloader: פרמטר הגדרות '{0}' חסר" #: SketchCode.java:83 #, java-format @@ -668,7 +674,7 @@ msgstr "שגיאה בתהליך ההדפסה." #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" -msgstr "" +msgstr "שגיאה במהלך העלאת תכנית: פרמטר הגדרות '{0}' חסר" #: Preferences.java:93 msgid "Estonian" @@ -676,7 +682,7 @@ msgstr "אסטונית" #: ../../../processing/app/Preferences.java:146 msgid "Estonian (Estonia)" -msgstr "" +msgstr "אסטונית (אסטוניה)" #: Editor.java:516 msgid "Examples" @@ -724,7 +730,7 @@ msgstr "חפש:" #: ../../../processing/app/Preferences.java:147 msgid "Finnish" -msgstr "" +msgstr "פינית" #: tools/FixEncoding.java:41 tools/FixEncoding.java:58 #: tools/FixEncoding.java:79 @@ -770,12 +776,12 @@ msgstr "מתחילים" msgid "" "Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes " "for local variables. Maximum is {1} bytes." -msgstr "" +msgstr "משתנים גלובלים משתמשים ב-{0} בייט ({2}%%) של זיכרון דינמי, משאיר {3} בייט לאחסון משתנים מקומיים. מרב המקום הוא {1} בייטים." #: ../../../processing/app/Sketch.java:1651 #, java-format msgid "Global variables use {0} bytes of dynamic memory." -msgstr "" +msgstr "משתמשים גלובלים משתמשים ב{0} בייט של זכרון דינמי." #: Preferences.java:98 msgid "Greek" @@ -848,7 +854,7 @@ msgid "" "disable this in the Preferences dialog.\n" "\n" "Save sketch and update its extension?" -msgstr "" +msgstr "בארדואינו גרסה 1.0, סיומת הקובץ לברירת המחדל השתנתה\nמסיומת .pde לסיומת .ino. סקיצות חדשות (כולל אלו שנוצרו ע\"י\nלחיצה על \"שמירה בשם\") ישתמשו בסיומת החדשה. הסיומת של\nקבצים ישנים תעודכן במהלך שמירה, אולם ניתן לבטל אפשרות זו\nבחלון ההעדפות.\n\nלשמור סקיצה זו ולעדכן את הסיומת שלה?" #: Editor.java:1216 Editor.java:2757 msgid "Increase Indent" @@ -861,7 +867,7 @@ msgstr "אינדונזית" #: ../../../processing/app/Base.java:1204 #, java-format msgid "Invalid library found in {0}: {1}" -msgstr "" +msgstr "ספרייה לא קבילה נמצאה ב{0}: {1}" #: Preferences.java:102 msgid "Italian" @@ -889,7 +895,7 @@ msgstr "ליטאית" #: ../../../processing/app/Sketch.java:1660 msgid "Low memory available, stability problems may occur" -msgstr "" +msgstr "זכרון זמין נמוך, בעיות יציבות עלולות להופיע." #: Preferences.java:107 msgid "Marathi" @@ -901,7 +907,7 @@ msgstr "הודעה" #: ../../../processing/app/preproc/PdePreprocessor.java:412 msgid "Missing the */ from the end of a /* comment */" -msgstr "" +msgstr "חסר סימן /* מסוף /* הערה*/" #: Preferences.java:449 msgid "More preferences can be edited directly in the file" @@ -917,11 +923,11 @@ msgstr "שם קובץ חדש:" #: ../../../processing/app/Preferences.java:149 msgid "Nepali" -msgstr "" +msgstr "נפאלית" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 msgid "Network upload using programmer not supported" -msgstr "" +msgstr "העלאת רשת בשימוש דרך (?) אינה נתמכת." #: EditorToolbar.java:41 Editor.java:493 msgid "New" @@ -978,7 +984,7 @@ msgstr "אין ייחוס זמין ל \"{0}\"" #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." -msgstr "" +msgstr "לא נמצאו ליבות תקינות-מוגדרות! יוצא..." #: ../../../processing/app/debug/TargetPackage.java:63 #, java-format @@ -1038,7 +1044,7 @@ msgstr "הגדרות עמוד" #: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 msgid "Password:" -msgstr "" +msgstr "סיסמה:" #: Editor.java:1189 Editor.java:2731 msgid "Paste" @@ -1062,19 +1068,19 @@ msgstr "פולנית" #: ../../../processing/app/Editor.java:718 msgid "Port" -msgstr "" +msgstr "פתחה" #: ../../../processing/app/Preferences.java:151 msgid "Portugese" -msgstr "" +msgstr "פורטוגזית" #: ../../../processing/app/Preferences.java:127 msgid "Portuguese (Brazil)" -msgstr "" +msgstr "פורטוגזית (ברזיל)" #: ../../../processing/app/Preferences.java:128 msgid "Portuguese (Portugal)" -msgstr "" +msgstr "פורטוגזית (פורטוגל)" #: Preferences.java:295 Editor.java:583 msgid "Preferences" @@ -1139,12 +1145,6 @@ msgstr "בעיה בטעינה ללוח בקר ב: http://www.arduino.cc/en/Guide msgid "Problem with rename" msgstr "בעיה בשינוי שם" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "העיבוד יכול לפתוח רק את הסקיצות של עצמו\nוקבצים שמסתיימים ב ino. או pde." - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "מעבד" @@ -1389,7 +1389,7 @@ msgstr "אור שמש" #: ../../../processing/app/Preferences.java:153 msgid "Swedish" -msgstr "" +msgstr "שבדית" #: Preferences.java:84 msgid "System Default" @@ -1580,7 +1580,7 @@ msgstr "העלאה בוטלה." #: ../../../processing/app/Sketch.java:1678 msgid "Upload cancelled" -msgstr "" +msgstr "העלאה בוטלה" #: Editor.java:2378 msgid "Uploading to I/O Board..." @@ -1622,7 +1622,7 @@ msgstr "אמת את הקוד בסיום ההעלאה" #: ../../../processing/app/Preferences.java:154 msgid "Vietnamese" -msgstr "" +msgstr "וויאטנאמית" #: Editor.java:1105 msgid "Visit Arduino.cc" @@ -1712,10 +1712,10 @@ msgstr "\".{0}\" היא לא סיומת חוקית" #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." -msgstr "\"{0}\" מכיל תווים לא מזוהים. אם הקוד נכתב בגירסה ישנה יותר, ייתכן שתצטרך להשתמש ב- כלים -> \"תקן קידוד וטען מחדש\" כדי לעדכן את הסקיצה לשימוש בקידוד UTF-8. אם לא, ייתכן ותצטרך למחוק את התווים הלא מזוהים כדי להיפטר מהערה זו." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." +msgstr "" #: debug/Compiler.java:409 msgid "" @@ -1778,7 +1778,7 @@ msgstr "קומפילציה" #: ../../../processing/app/NetworkMonitor.java:111 msgid "connected!" -msgstr "" +msgstr "מחובר!" #: Sketch.java:540 msgid "createNewFile() returned false" @@ -1786,7 +1786,7 @@ msgstr "createNewFile() החזיר ערך שלילי" #: ../../../processing/app/EditorStatus.java:469 msgid "enabled in File > Preferences." -msgstr "" +msgstr "מאופשר ב קובץ > העדפות" #: Base.java:2090 msgid "environment" diff --git a/arduino-core/src/processing/app/i18n/Resources_ja_JP.po b/arduino-core/src/processing/app/i18n/Resources_ja_JP.po index 39c948e7c..81d252916 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ja_JP.po +++ b/arduino-core/src/processing/app/i18n/Resources_ja_JP.po @@ -9,8 +9,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/arduino-ide-15/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -139,6 +139,12 @@ msgstr "Arduino ARM (32ビット) ボード" msgid "Arduino AVR Boards" msgstr "Arduino AVR ボード" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -437,7 +443,7 @@ msgstr "スケッチを保存し直すことができませんでした。" msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "カラーテーマの設定を読み込めません。\nArduinoを再インストールしてください。" +msgstr "" #: Preferences.java:219 msgid "" @@ -1140,12 +1146,6 @@ msgstr "マイコンボードに書き込もうとしましたが、エラーが msgid "Problem with rename" msgstr "スケッチの名前を変更できませんでした。" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "このIDEは、ファイル名が拡張子.inoまたは.pdeで\n終わるファイルだけを開くことができます。" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "プロセッサ" @@ -1713,10 +1713,10 @@ msgstr "拡張子「.{0}」は、使えません。" #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." -msgstr "「{0}」には、認識できない文字が含まれています。もしも、古いバージョンのIDEでこのスケッチを作成していた場合には、「ツール」メニューの「エンコーディングの修正」を実行する事によって、ファイルのエンコーディングをUTF-8に変更してください。そうでない場合には、これらの認識できない文字を手作業で削除していただく必要があります。" +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." +msgstr "" #: debug/Compiler.java:409 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_ja_JP.properties b/arduino-core/src/processing/app/i18n/Resources_ja_JP.properties index 23d7794f8..bf80d4f45 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ja_JP.properties +++ b/arduino-core/src/processing/app/i18n/Resources_ja_JP.properties @@ -4,7 +4,7 @@ # Shigeru KANEMOTO . # #, fuzzy -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Japanese (Japan) (http\://www.transifex.com/projects/p/arduino-ide-15/language/ja_JP/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ja_JP\nPlural-Forms\: nplurals\=1; plural\=0;\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Japanese (Japan) (http\://www.transifex.com/projects/p/arduino-ide-15/language/ja_JP/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ja_JP\nPlural-Forms\: nplurals\=1; plural\=0;\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ \u5909\u66f4\u306e\u53cd\u6620\u306b\u306fArduino IDE\u306e\u518d\u8d77\u52d5\u304c\u5fc5\u8981 @@ -84,6 +84,9 @@ Arduino\ ARM\ (32-bits)\ Boards=Arduino ARM (32\u30d3\u30c3\u30c8) \u30dc\u30fc\ #: ../../../processing/app/I18n.java:82 Arduino\ AVR\ Boards=Arduino AVR \u30dc\u30fc\u30c9 +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=\u8a2d\u5b9a\u3092\u4fdd\u5b58\u3059\u308b\u305f\u3081\u306e\u30d5\u30a9\u30eb\u30c0\u3092\u4f5c\u6210\u3067\u304d\u306a\u3044\u305f\u3081\u3001\u52d5\u4f5c\u3092\u505c\u6b62\u3057\u307e\u3059\u3002 @@ -298,7 +301,7 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=\u30b9\u30b1\u30c3\u30c1\u3092\u4fdd\u5b58\u3057\u76f4\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 #: Theme.java:52 -Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u30ab\u30e9\u30fc\u30c6\u30fc\u30de\u306e\u8a2d\u5b9a\u3092\u8aad\u307f\u8fbc\u3081\u307e\u305b\u3093\u3002\nArduino IDE\u3092\u518d\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u304f\u3060\u3055\u3044\u3002 +!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u65e2\u5b9a\u306e\u8a2d\u5b9a\u3092\u8aad\u307f\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002\nArduino IDE\u3092\u3082\u3046\u4e00\u5ea6\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u304f\u3060\u3055\u3044\u3002 @@ -812,9 +815,6 @@ Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troublesh #: Sketch.java:355 Sketch.java:362 Sketch.java:373 Problem\ with\ rename=\u30b9\u30b1\u30c3\u30c1\u306e\u540d\u524d\u3092\u5909\u66f4\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 -#: Editor.java:2137 -Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=\u3053\u306eIDE\u306f\u3001\u30d5\u30a1\u30a4\u30eb\u540d\u304c\u62e1\u5f35\u5b50.ino\u307e\u305f\u306f.pde\u3067\n\u7d42\u308f\u308b\u30d5\u30a1\u30a4\u30eb\u3060\u3051\u3092\u958b\u304f\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002 - #: ../../../processing/app/I18n.java:86 Processor=\u30d7\u30ed\u30bb\u30c3\u30b5 @@ -1197,7 +1197,7 @@ Zip\ doesn't\ contain\ a\ library=\u6307\u5b9a\u3055\u308c\u305fZIP\u30d5\u30a1\ #: SketchCode.java:258 #, java-format -"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.=\u300c{0}\u300d\u306b\u306f\u3001\u8a8d\u8b58\u3067\u304d\u306a\u3044\u6587\u5b57\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u3059\u3002\u3082\u3057\u3082\u3001\u53e4\u3044\u30d0\u30fc\u30b8\u30e7\u30f3\u306eIDE\u3067\u3053\u306e\u30b9\u30b1\u30c3\u30c1\u3092\u4f5c\u6210\u3057\u3066\u3044\u305f\u5834\u5408\u306b\u306f\u3001\u300c\u30c4\u30fc\u30eb\u300d\u30e1\u30cb\u30e5\u30fc\u306e\u300c\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u306e\u4fee\u6b63\u300d\u3092\u5b9f\u884c\u3059\u308b\u4e8b\u306b\u3088\u3063\u3066\u3001\u30d5\u30a1\u30a4\u30eb\u306e\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u3092UTF-8\u306b\u5909\u66f4\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u305d\u3046\u3067\u306a\u3044\u5834\u5408\u306b\u306f\u3001\u3053\u308c\u3089\u306e\u8a8d\u8b58\u3067\u304d\u306a\u3044\u6587\u5b57\u3092\u624b\u4f5c\u696d\u3067\u524a\u9664\u3057\u3066\u3044\u305f\u3060\u304f\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002 +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 \nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nArduino 0019\u4ee5\u964d\u3001Ethernet\u30e9\u30a4\u30d6\u30e9\u30ea\u306fSPI\u30e9\u30a4\u30d6\u30e9\u30ea\u306b\u4f9d\u5b58\u3057\u3066\u3044\u307e\u3059\u3002\nEthernet\u30e9\u30a4\u30d6\u30e9\u30ea\u307e\u305f\u306f\u305d\u306e\u4ed6\u306e\u3001SPI\u30e9\u30a4\u30d6\u30e9\u30ea\u306b\u4f9d\u5b58\u3059\u308b\u30e9\u30a4\u30d6\u30e9\u30ea\u3092\u4f7f\u7528\u3057\u3066\u3044\u308b\u3088\u3046\u3067\u3059\u306d\u3002\n\n diff --git a/arduino-core/src/processing/app/i18n/Resources_ka_GE.po b/arduino-core/src/processing/app/i18n/Resources_ka_GE.po index 5564db4c1..353cd1685 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ka_GE.po +++ b/arduino-core/src/processing/app/i18n/Resources_ka_GE.po @@ -9,8 +9,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/arduino-ide-15/language/ka_GE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -139,6 +139,12 @@ msgstr "Arduino-ის ARM (32-ბიტი) დაფები" msgid "Arduino AVR Boards" msgstr "Arduino-ის AVR დაფები" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -177,7 +183,7 @@ msgstr "სომხური" #: ../../../processing/app/Preferences.java:138 msgid "Asturian" -msgstr "" +msgstr "ავსტრიული" #: tools/AutoFormat.java:91 msgid "Auto Format" @@ -254,7 +260,7 @@ msgstr "ნახვა" #: Sketch.java:1392 Sketch.java:1423 msgid "Build folder disappeared or could not be written" -msgstr "ასაწყობი საქაღალდი არ მოიძებნა, არ შეუძლებელია მასში ჩაწერა" +msgstr "ასაწყობი საქაღალდე არ მოიძებნა, ან შეუძლებელია მასში ჩაწერა" #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" @@ -437,7 +443,7 @@ msgstr "ჩანახატის ხელახლა შენახვა msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "შეუძლებელია ფერების გაფორმების ამოკითხვა.\nგთხოვთ გადააყენოთ Arduino." +msgstr "" #: Preferences.java:219 msgid "" @@ -838,7 +844,7 @@ msgstr "ჩანახატის ბათილი სახელი უგ #: Editor.java:636 msgid "Import Library..." -msgstr "ბიბლიოთეკის შემოტანა" +msgstr "ბიბლიოთეკის შემოტანა..." #: ../../../processing/app/Sketch.java:736 msgid "" @@ -902,7 +908,7 @@ msgstr "შეტყობინება" #: ../../../processing/app/preproc/PdePreprocessor.java:412 msgid "Missing the */ from the end of a /* comment */" -msgstr "" +msgstr "არ მოიძებნება */ დაბოლოება კომენტარის ბლოკიდან /* კომენტარი */" #: Preferences.java:449 msgid "More preferences can be edited directly in the file" @@ -979,7 +985,7 @@ msgstr "ცნობა \"{0}\"-თვის მიუწვდომელი #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." -msgstr "" +msgstr "არ მოიძებნა გამართული ბირთვები! ითიშება..." #: ../../../processing/app/debug/TargetPackage.java:63 #, java-format @@ -1140,12 +1146,6 @@ msgstr "დაფაზე ატვირთვის შეცდომა. msgid "Problem with rename" msgstr "პრობლემა გადარქმევისას" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "Arduino-ს შეუძლია გახსნას მხოლოდ მისთვის \nგანკუთვნილი ჩანახატები და ფაილები .ino და .pde" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "პროცესორი" @@ -1291,7 +1291,7 @@ msgstr "მიმდეცრობითი პორტი {0} ვერ მ #: Base.java:1681 msgid "Settings issues" -msgstr "" +msgstr "მომართვის დაბრკოლება" #: Editor.java:641 msgid "Show Sketch Folder" @@ -1713,10 +1713,10 @@ msgstr "\".{0}\" არ არის სწორი გაფართოებ #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." -msgstr "\"{0}\" მოიცავს ამოუცნობ სიმბოლოებს. თუ ეს კოდი შექმნილი იყო Arduino-ის ძველი ვერსიის მეშვეობით, გამოიყენეთ 'ხელსაწყოები' -> 'კოდირების შეკეთება & გადატვირთვა' რათა ჩანახატი გადაყვანილი იყოს UTF-8 კოდირებაში. თუ არა, მოძებნეთ და წაშალეთ აკრძალული სიმბოლოები, რათა მოაშოროთ ეს გაფრთხილება." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." +msgstr "" #: debug/Compiler.java:409 msgid "" @@ -1839,7 +1839,7 @@ msgstr "readBytesUntil() ბაიტური ბუფერი მეტი #: Sketch.java:647 msgid "removeCode: internal error.. could not find code" -msgstr "removeCode: შინახაგინ შეცდომა... კოდი არ მოიძებნა" +msgstr "removeCode: შინაგანი შეცდომა... კოდი არ მოიძებნა" #: Editor.java:932 msgid "serialMenu is null" diff --git a/arduino-core/src/processing/app/i18n/Resources_ka_GE.properties b/arduino-core/src/processing/app/i18n/Resources_ka_GE.properties index 8c29c71e1..d408798e1 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ka_GE.properties +++ b/arduino-core/src/processing/app/i18n/Resources_ka_GE.properties @@ -4,7 +4,7 @@ # # Translators: # , 2012. -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Georgian (Georgia) (http\://www.transifex.com/projects/p/arduino-ide-15/language/ka_GE/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ka_GE\nPlural-Forms\: nplurals\=1; plural\=0;\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Georgian (Georgia) (http\://www.transifex.com/projects/p/arduino-ide-15/language/ka_GE/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ka_GE\nPlural-Forms\: nplurals\=1; plural\=0;\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(\u10db\u10dd\u10d8\u10d7\u10ee\u10dd\u10d5\u10e1 \u10d2\u10d0\u10e0\u10d4\u10db\u10dd\u10e1 \u10ee\u10d4\u10da\u10d0\u10ee\u10da\u10d0 \u10d2\u10d0\u10e8\u10d5\u10d4\u10d1\u10d0\u10e1) @@ -84,6 +84,9 @@ Arduino\ ARM\ (32-bits)\ Boards=Arduino-\u10d8\u10e1 ARM (32-\u10d1\u10d8\u10e2\ #: ../../../processing/app/I18n.java:82 Arduino\ AVR\ Boards=Arduino-\u10d8\u10e1 AVR \u10d3\u10d0\u10e4\u10d4\u10d1\u10d8 +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino \u10d5\u10d4\u10e0 \u10d2\u10d0\u10d8\u10e8\u10d5\u10d4\u10d1\u10d0, \u10e0\u10d0\u10d3\u10d2\u10d0\u10dc \u10db\u10d0\u10dc \u10d5\u10d4\u10e0 \u10e8\u10d4\u10eb\u10da\u10dd\n\u10db\u10dd\u10db\u10d0\u10e0\u10d7\u10d5\u10d8\u10e1 \u10db\u10dd\u10dc\u10d0\u10ea\u10d4\u10db\u10d4\u10d1\u10d8\u10e1\u10d7\u10d5\u10d8\u10e1 \u10e1\u10d0\u10e5\u10d0\u10e6\u10d0\u10da\u10d3\u10d8\u10e1 \u10e8\u10d4\u10e5\u10db\u10dc\u10d0. @@ -107,7 +110,7 @@ Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u10dc\u10d0\u10db\u10d3\u1 Armenian=\u10e1\u10dd\u10db\u10ee\u10e3\u10e0\u10d8 #: ../../../processing/app/Preferences.java:138 -!Asturian= +Asturian=\u10d0\u10d5\u10e1\u10e2\u10e0\u10d8\u10e3\u10da\u10d8 #: tools/AutoFormat.java:91 Auto\ Format=\u10d0\u10d5\u10e2\u10dd\u10d3\u10d0\u10e4\u10dd\u10e0\u10db\u10d0\u10e2\u10d4\u10d1\u10d0 @@ -164,7 +167,7 @@ Both\ NL\ &\ CR=\u10dd\u10e0\u10d8\u10d5\u10d4 NL \u10d3\u10d0 CR Browse=\u10dc\u10d0\u10ee\u10d5\u10d0 #: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u10d0\u10e1\u10d0\u10ec\u10e7\u10dd\u10d1\u10d8 \u10e1\u10d0\u10e5\u10d0\u10e6\u10d0\u10da\u10d3\u10d8 \u10d0\u10e0 \u10db\u10dd\u10d8\u10eb\u10d4\u10d1\u10dc\u10d0, \u10d0\u10e0 \u10e8\u10d4\u10e3\u10eb\u10da\u10d4\u10d1\u10d4\u10da\u10d8\u10d0 \u10db\u10d0\u10e1\u10e8\u10d8 \u10e9\u10d0\u10ec\u10d4\u10e0\u10d0 +Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u10d0\u10e1\u10d0\u10ec\u10e7\u10dd\u10d1\u10d8 \u10e1\u10d0\u10e5\u10d0\u10e6\u10d0\u10da\u10d3\u10d4 \u10d0\u10e0 \u10db\u10dd\u10d8\u10eb\u10d4\u10d1\u10dc\u10d0, \u10d0\u10dc \u10e8\u10d4\u10e3\u10eb\u10da\u10d4\u10d1\u10d4\u10da\u10d8\u10d0 \u10db\u10d0\u10e1\u10e8\u10d8 \u10e9\u10d0\u10ec\u10d4\u10e0\u10d0 #: ../../../processing/app/Preferences.java:80 Bulgarian=\u10d1\u10e3\u10da\u10d2\u10d0\u10e0\u10e3\u10da\u10d8 @@ -298,7 +301,7 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=\u10e9\u10d0\u10dc\u10d0\u10ee\u10d0\u10e2\u10d8\u10e1 \u10ee\u10d4\u10da\u10d0\u10ee\u10da\u10d0 \u10e8\u10d4\u10dc\u10d0\u10ee\u10d5\u10d0 \u10d5\u10d4\u10e0 \u10db\u10dd\u10ee\u10d4\u10e0\u10ee\u10d3\u10d0 #: Theme.java:52 -Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u10e8\u10d4\u10e3\u10eb\u10da\u10d4\u10d1\u10d4\u10da\u10d8\u10d0 \u10e4\u10d4\u10e0\u10d4\u10d1\u10d8\u10e1 \u10d2\u10d0\u10e4\u10dd\u10e0\u10db\u10d4\u10d1\u10d8\u10e1 \u10d0\u10db\u10dd\u10d9\u10d8\u10d7\u10ee\u10d5\u10d0.\n\u10e1\u10d0\u10e1\u10e3\u10e0\u10d5\u10d4\u10da\u10d8\u10d0 \u10d2\u10d0\u10d3\u10d0\u10d0\u10e7\u10d4\u10dc\u10dd\u10d7 Arduino. +!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u10e8\u10d4\u10e3\u10eb\u10da\u10d4\u10d1\u10d4\u10da\u10d8\u10d0 \u10dc\u10d0\u10d2\u10e3\u10da\u10d8\u10e1\u10ee\u10db\u10d4\u10d1\u10d8 \u10db\u10dd\u10db\u10d0\u10e0\u10d7\u10d5\u10d8\u10e1 \u10ec\u10d0\u10d9\u10d8\u10d7\u10ee\u10d5\u10d0.\n\u10d2\u10d7\u10ee\u10dd\u10d5\u10d7 \u10d2\u10d0\u10d3\u10d0\u10d0\u10e7\u10d4\u10dc\u10dd\u10d7 Arduino. @@ -592,7 +595,7 @@ Ignoring\ bad\ library\ name=\u10d1\u10d8\u10d1\u10da\u10d8\u10dd\u10d7\u10d4\u1 Ignoring\ sketch\ with\ bad\ name=\u10e9\u10d0\u10dc\u10d0\u10ee\u10d0\u10e2\u10d8\u10e1 \u10d1\u10d0\u10d7\u10d8\u10da\u10d8 \u10e1\u10d0\u10ee\u10d4\u10da\u10d8 \u10e3\u10d2\u10e3\u10da\u10d4\u10d1\u10d4\u10da\u10e7\u10dd\u10e4\u10d8\u10da\u10d8\u10d0 #: Editor.java:636 -Import\ Library...=\u10d1\u10d8\u10d1\u10da\u10d8\u10dd\u10d7\u10d4\u10d9\u10d8\u10e1 \u10e8\u10d4\u10db\u10dd\u10e2\u10d0\u10dc\u10d0 +Import\ Library...=\u10d1\u10d8\u10d1\u10da\u10d8\u10dd\u10d7\u10d4\u10d9\u10d8\u10e1 \u10e8\u10d4\u10db\u10dd\u10e2\u10d0\u10dc\u10d0... #: ../../../processing/app/Sketch.java:736 In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=\u10d0\u10e0\u10d3\u10e3\u10d8\u10dc\u10dd 1.0 \u10d5\u10d4\u10e0\u10e1\u10d8\u10d0\u10e8\u10d8, \u10e4\u10d0\u10d8\u10da\u10d7\u10d0 \u10dc\u10d0\u10d2\u10e3\u10da\u10d8\u10e1\u10ee\u10db\u10d4\u10d1\u10d8 \u10d2\u10d0\u10e4\u10d0\u10e0\u10d7\u10dd\u10d4\u10d1\u10d0\n\u10e8\u10d4\u10ea\u10d5\u10da\u10d8\u10d0\u10d8\u10d0 .pde-\u10d3\u10d0\u10dc .ino-\u10d6\u10d4. \u10d0\u10ee\u10d0\u10da\u10d8 \u10e9\u10d0\u10dc\u10d0\u10ee\u10d0\u10e2\u10d4\u10d1\u10d8 (\u10d0\u10e1\u10d4\u10d5\u10d4 \u10e8\u10d4\u10e5\u10db\u10dc\u10d8\u10da\u10d8 \n\u10e6\u10d8\u10da\u10d0\u10d9\u10d8\u10d7 "\u10e8\u10d4\u10dc\u10d0\u10ee\u10d5\u10d0 \u10e0\u10dd\u10d2\u10dd\u10e0\u10ea") \u10d2\u10d0\u10db\u10dd\u10d8\u10e7\u10d4\u10dc\u10d4\u10d1\u10d4\u10dc \u10d0\u10ee\u10d0\u10da \u10d2\u10d0\u10e4\u10d0\u10e0\u10d7\u10dd\u10d4\u10d1\u10d0\u10e1.\n\u10d0\u10e0\u10e1\u10d4\u10d1\u10e3\u10da\u10d8 \u10e9\u10d0\u10dc\u10d0\u10ee\u10d0\u10e2\u10d4\u10d1\u10d8\u10e1 \u10d2\u10d0\u10e4\u10d0\u10e0\u10d7\u10dd\u10d4\u10d1\u10d4\u10d1\u10d8 \u10d2\u10d0\u10dc\u10d0\u10ee\u10da\u10d3\u10d4\u10d1\u10d0 \u10e8\u10d4\u10dc\u10d0\u10ee\u10d5\u10d8\u10e1\u10d0\u10e1,\n\u10d7\u10e3\u10db\u10ea\u10d0 \u10e8\u10d4\u10d2\u10d8\u10eb\u10da\u10d8\u10d0\u10d7 \u10d2\u10d0\u10d7\u10d8\u10e8\u10dd\u10d7 \u10d4\u10e1 \u10db\u10dd\u10db\u10d0\u10e0\u10d7\u10d5\u10d8\u10e1 \u10e4\u10d0\u10dc\u10ef\u10d0\u10e0\u10d0\u10e8\u10d8.\n\n\u10d2\u10e1\u10e3\u10e0\u10d7 \u10e9\u10d0\u10dc\u10d0\u10ee\u10d0\u10e2\u10d8\u10e1 \u10e8\u10d4\u10dc\u10d0\u10ee\u10d5\u10d0 \u10d3\u10d0 \u10d2\u10d0\u10e4\u10d0\u10e0\u10d7\u10dd\u10d4\u10d1\u10d8\u10e1 \u10d2\u10d0\u10dc\u10d0\u10ee\u10da\u10d4\u10d1\u10d0? @@ -635,7 +638,7 @@ Marathi=\u10db\u10d0\u10e0\u10d0\u10d7\u10f0\u10d8 Message=\u10e8\u10d4\u10e2\u10e7\u10dd\u10d1\u10d8\u10dc\u10d4\u10d1\u10d0 #: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=\u10d0\u10e0 \u10db\u10dd\u10d8\u10eb\u10d4\u10d1\u10dc\u10d4\u10d1\u10d0 */ \u10d3\u10d0\u10d1\u10dd\u10da\u10dd\u10d4\u10d1\u10d0 \u10d9\u10dd\u10db\u10d4\u10dc\u10e2\u10d0\u10e0\u10d8\u10e1 \u10d1\u10da\u10dd\u10d9\u10d8\u10d3\u10d0\u10dc /* \u10d9\u10dd\u10db\u10d4\u10dc\u10e2\u10d0\u10e0\u10d8 */ #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\u10db\u10d4\u10e2\u10d8 \u10ea\u10d5\u10da\u10d8\u10da\u10d4\u10d1\u10d8\u10e1 \u10e8\u10d4\u10e2\u10d0\u10dc\u10d0 \u10e8\u10d4\u10e1\u10d0\u10eb\u10da\u10d4\u10d1\u10d4\u10da\u10d8\u10d0 \u10e3\u10e8\u10e3\u10d0\u10da\u10dd\u10d3 \u10e4\u10d0\u10d8\u10da\u10d8\u10d3\u10d0\u10dc @@ -693,7 +696,7 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u10db\u10d0\u10e0\u10d7\u10 No\ reference\ available\ for\ "{0}"=\u10ea\u10dc\u10dd\u10d1\u10d0 "{0}"-\u10d7\u10d5\u10d8\u10e1 \u10db\u10d8\u10e3\u10ec\u10d5\u10d3\u10dd\u10db\u10d4\u10da\u10d8\u10d0 #: ../../../processing/app/Base.java:309 -!No\ valid\ configured\ cores\ found\!\ Exiting...= +No\ valid\ configured\ cores\ found\!\ Exiting...=\u10d0\u10e0 \u10db\u10dd\u10d8\u10eb\u10d4\u10d1\u10dc\u10d0 \u10d2\u10d0\u10db\u10d0\u10e0\u10d7\u10e3\u10da\u10d8 \u10d1\u10d8\u10e0\u10d7\u10d5\u10d4\u10d1\u10d8\! \u10d8\u10d7\u10d8\u10e8\u10d4\u10d1\u10d0... #: ../../../processing/app/debug/TargetPackage.java:63 #, java-format @@ -812,9 +815,6 @@ Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troublesh #: Sketch.java:355 Sketch.java:362 Sketch.java:373 Problem\ with\ rename=\u10de\u10e0\u10dd\u10d1\u10da\u10d4\u10db\u10d0 \u10d2\u10d0\u10d3\u10d0\u10e0\u10e5\u10db\u10d4\u10d5\u10d8\u10e1\u10d0\u10e1 -#: Editor.java:2137 -Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Arduino-\u10e1 \u10e8\u10d4\u10e3\u10eb\u10da\u10d8\u10d0 \u10d2\u10d0\u10ee\u10e1\u10dc\u10d0\u10e1 \u10db\u10ee\u10dd\u10da\u10dd\u10d3 \u10db\u10d8\u10e1\u10d7\u10d5\u10d8\u10e1 \n\u10d2\u10d0\u10dc\u10d9\u10e3\u10d7\u10d5\u10dc\u10d8\u10da\u10d8 \u10e9\u10d0\u10dc\u10d0\u10ee\u10d0\u10e2\u10d4\u10d1\u10d8 \u10d3\u10d0 \u10e4\u10d0\u10d8\u10da\u10d4\u10d1\u10d8 .ino \u10d3\u10d0 .pde - #: ../../../processing/app/I18n.java:86 Processor=\u10de\u10e0\u10dd\u10ea\u10d4\u10e1\u10dd\u10e0\u10d8 @@ -919,7 +919,7 @@ Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=\u10db\u10d8\u10db\u10d3\u10d4\u10ea\u10e0\u10dd\u10d1\u10d8\u10d7\u10d8 \u10de\u10dd\u10e0\u10e2\u10d8 {0} \u10d5\u10d4\u10e0 \u10db\u10dd\u10d8\u10eb\u10d4\u10d1\u10dc\u10d0.\n\u10d2\u10e1\u10e3\u10e0\u10d7 \u10e1\u10ea\u10d0\u10d3\u10dd\u10d7 \u10e1\u10ee\u10d5\u10d0 \u10db\u10d8\u10db\u10d3\u10d4\u10d5\u10e0\u10dd\u10d1\u10d8\u10d7\u10d8 \u10de\u10dd\u10e0\u10e2\u10d8\u10d7? #: Base.java:1681 -!Settings\ issues= +Settings\ issues=\u10db\u10dd\u10db\u10d0\u10e0\u10d7\u10d5\u10d8\u10e1 \u10d3\u10d0\u10d1\u10e0\u10d9\u10dd\u10da\u10d4\u10d1\u10d0 #: Editor.java:641 Show\ Sketch\ Folder=\u10d0\u10da\u10d1\u10dd\u10db\u10d8\u10e1 \u10e1\u10d0\u10e5\u10d0\u10e6\u10d0\u10da\u10d3\u10d8\u10e1 \u10d2\u10d0\u10ee\u10e1\u10dc\u10d0 @@ -1197,7 +1197,7 @@ Zip\ doesn't\ contain\ a\ library=Zip \u10d0\u10e0\u10e5\u10d8\u10d5\u10d8 \u10 #: SketchCode.java:258 #, java-format -"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" \u10db\u10dd\u10d8\u10ea\u10d0\u10d5\u10e1 \u10d0\u10db\u10dd\u10e3\u10ea\u10dc\u10dd\u10d1 \u10e1\u10d8\u10db\u10d1\u10dd\u10da\u10dd\u10d4\u10d1\u10e1. \u10d7\u10e3 \u10d4\u10e1 \u10d9\u10dd\u10d3\u10d8 \u10e8\u10d4\u10e5\u10db\u10dc\u10d8\u10da\u10d8 \u10d8\u10e7\u10dd Arduino-\u10d8\u10e1 \u10eb\u10d5\u10d4\u10da\u10d8 \u10d5\u10d4\u10e0\u10e1\u10d8\u10d8\u10e1 \u10db\u10d4\u10e8\u10d5\u10d4\u10dd\u10d1\u10d8\u10d7, \u10d2\u10d0\u10db\u10dd\u10d8\u10e7\u10d4\u10dc\u10d4\u10d7 '\u10ee\u10d4\u10da\u10e1\u10d0\u10ec\u10e7\u10dd\u10d4\u10d1\u10d8' -> '\u10d9\u10dd\u10d3\u10d8\u10e0\u10d4\u10d1\u10d8\u10e1 \u10e8\u10d4\u10d9\u10d4\u10d7\u10d4\u10d1\u10d0 & \u10d2\u10d0\u10d3\u10d0\u10e2\u10d5\u10d8\u10e0\u10d7\u10d5\u10d0' \u10e0\u10d0\u10d7\u10d0 \u10e9\u10d0\u10dc\u10d0\u10ee\u10d0\u10e2\u10d8 \u10d2\u10d0\u10d3\u10d0\u10e7\u10d5\u10d0\u10dc\u10d8\u10da\u10d8 \u10d8\u10e7\u10dd\u10e1 UTF-8 \u10d9\u10dd\u10d3\u10d8\u10e0\u10d4\u10d1\u10d0\u10e8\u10d8. \u10d7\u10e3 \u10d0\u10e0\u10d0, \u10db\u10dd\u10eb\u10d4\u10d1\u10dc\u10d4\u10d7 \u10d3\u10d0 \u10ec\u10d0\u10e8\u10d0\u10da\u10d4\u10d7 \u10d0\u10d9\u10e0\u10eb\u10d0\u10da\u10e3\u10da\u10d8 \u10e1\u10d8\u10db\u10d1\u10dd\u10da\u10dd\u10d4\u10d1\u10d8, \u10e0\u10d0\u10d7\u10d0 \u10db\u10dd\u10d0\u10e8\u10dd\u10e0\u10dd\u10d7 \u10d4\u10e1 \u10d2\u10d0\u10e4\u10e0\u10d7\u10ee\u10d8\u10da\u10d4\u10d1\u10d0. +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 \nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nArduino 0019 \u10d5\u10d4\u10e0\u10e1\u10d8\u10d8\u10d3\u10d0\u10dc Ethernet \u10d1\u10d8\u10d1\u10da\u10d8\u10dd\u10d7\u10d4\u10d9\u10d0 \u10d3\u10d0\u10db\u10dd\u10d9\u10d8\u10d3\u10d4\u10d1\u10e3\u10da\u10d8\u10d0 SPI \u10d1\u10d8\u10d1\u10da\u10d8\u10dd\u10d7\u10d4\u10d9\u10d0\u10d6\u10d4.\n\u10e0\u10dd\u10d2\u10dd\u10e0\u10ea \u10e9\u10d0\u10dc\u10e1, \u10d7\u10e5\u10d5\u10d4\u10dc \u10d8\u10e7\u10d4\u10dc\u10d4\u10d1\u10d7 \u10db\u10d0\u10e1, \u10d0\u10dc \u10e1\u10ee\u10d5\u10d0 \u10d1\u10d8\u10d1\u10d8\u10da\u10d8\u10dd\u10d7\u10d4\u10d9\u10d0\u10e1, \u10e0\u10dd\u10db\u10d4\u10da\u10d8\u10ea \u10d3\u10d0\u10db\u10dd\u10d9\u10d8\u10d3\u10d4\u10d1\u10e3\u10da\u10d8\u10d0 SPI-\u10d6\u10d4.\n\n @@ -1271,7 +1271,7 @@ platforms.html=platforms.html readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() \u10d1\u10d0\u10d8\u10e2\u10e3\u10e0\u10d8 \u10d1\u10e3\u10e4\u10d4\u10e0\u10d8 \u10db\u10d4\u10e2\u10d8\u10e1\u10db\u10d4\u10e2\u10d0\u10d3 \u10db\u10ea\u10d8\u10e0\u10d4\u10d0 {0} \u10d1\u10d0\u10d8\u10e2\u10d8\u10e1\u10d7\u10d5\u10d8\u10e1 char {1}-\u10d3\u10d4 \u10d3\u10d0 \u10db\u10d8\u10e1 \u10e9\u10d0\u10d7\u10d5\u10da\u10d8\u10d7 #: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: \u10e8\u10d8\u10dc\u10d0\u10ee\u10d0\u10d2\u10d8\u10dc \u10e8\u10d4\u10ea\u10d3\u10dd\u10db\u10d0... \u10d9\u10dd\u10d3\u10d8 \u10d0\u10e0 \u10db\u10dd\u10d8\u10eb\u10d4\u10d1\u10dc\u10d0 +removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: \u10e8\u10d8\u10dc\u10d0\u10d2\u10d0\u10dc\u10d8 \u10e8\u10d4\u10ea\u10d3\u10dd\u10db\u10d0... \u10d9\u10dd\u10d3\u10d8 \u10d0\u10e0 \u10db\u10dd\u10d8\u10eb\u10d4\u10d1\u10dc\u10d0 #: Editor.java:932 serialMenu\ is\ null=serialMenu \u10d0\u10e0\u10d8\u10e1 \u10d1\u10d0\u10d7\u10d8\u10da\u10d8 diff --git a/arduino-core/src/processing/app/i18n/Resources_ko_KR.po b/arduino-core/src/processing/app/i18n/Resources_ko_KR.po index 95ba2abf2..1bd6622e7 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ko_KR.po +++ b/arduino-core/src/processing/app/i18n/Resources_ko_KR.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Korean (Korea) (http://www.transifex.com/projects/p/arduino-ide-15/language/ko_KR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -138,6 +138,12 @@ msgstr "아두이노 ARM (32-비트) 보드" msgid "Arduino AVR Boards" msgstr "아두이노 AVR 보드" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -436,7 +442,7 @@ msgstr "재 저장을 할 수 없습니다" msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "컬러 테마를 읽을 수 없습니다.\n프로세싱을 다시 설치해야 합니다." +msgstr "" #: Preferences.java:219 msgid "" @@ -901,7 +907,7 @@ msgstr "메시지" #: ../../../processing/app/preproc/PdePreprocessor.java:412 msgid "Missing the */ from the end of a /* comment */" -msgstr "" +msgstr "*/ 가 주석 처리 끝에 빠졌습니다. (/* 주석 */)" #: Preferences.java:449 msgid "More preferences can be edited directly in the file" @@ -1139,12 +1145,6 @@ msgstr "보드에 업로딩중에 문제 발생. 다음을 참고하세요.http msgid "Problem with rename" msgstr "이름 바꾸기 문제" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "프로세싱은 자체 스케치와 .ino 나 .pde로 끝나는 파일을\n열수 있습니니다. " - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "프로세서" @@ -1712,10 +1712,10 @@ msgstr "\".{0}\" 는 확장자로 사용할 수 없습니다." #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." -msgstr "\"{0}\"에 인식할 수 없는 문자가 포함되어 있습니다. 만약 이 코드가이전 버전의 프로세싱으로 만들어졌다면, 툴 -> 인코딩 수정 & 다시 로드 로 UTF-8 인토딩으로 업데이트 할 수 있습니다.아니면 잘못된 문자를 삭제하여 이 경고를 제거할 수 있습니다." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." +msgstr "" #: debug/Compiler.java:409 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_ko_KR.properties b/arduino-core/src/processing/app/i18n/Resources_ko_KR.properties index 5353f1ada..a20d53400 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ko_KR.properties +++ b/arduino-core/src/processing/app/i18n/Resources_ko_KR.properties @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # Jinbuhm Kim , 2012. # -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Korean (Korea) (http\://www.transifex.com/projects/p/arduino-ide-15/language/ko_KR/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ko_KR\nPlural-Forms\: nplurals\=1; plural\=0;\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Korean (Korea) (http\://www.transifex.com/projects/p/arduino-ide-15/language/ko_KR/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ko_KR\nPlural-Forms\: nplurals\=1; plural\=0;\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ (\uc544\ub450\uc774\ub178\ub97c \uc7ac\uc2dc\uc791\ud574\uc57c \ud568) @@ -83,6 +83,9 @@ Arduino\ ARM\ (32-bits)\ Boards=\uc544\ub450\uc774\ub178 ARM (32-\ube44\ud2b8) \ #: ../../../processing/app/I18n.java:82 Arduino\ AVR\ Boards=\uc544\ub450\uc774\ub178 AVR \ubcf4\ub4dc +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=\uc124\uc815\uc744 \uc800\uc7a5\ud558\uae30 \uc704\ud55c \ud3f4\ub354\ub97c \uc0dd\uc131\ud558\uc9c0 \ubabb\ud574\uc11c\n\uc544\ub450\uc774\ub178\ub97c \uc2e4\ud589\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. @@ -297,7 +300,7 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=\uc7ac \uc800\uc7a5\uc744 \ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4 #: Theme.java:52 -Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\uceec\ub7ec \ud14c\ub9c8\ub97c \uc77d\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.\n\ud504\ub85c\uc138\uc2f1\uc744 \ub2e4\uc2dc \uc124\uce58\ud574\uc57c \ud569\ub2c8\ub2e4. +!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\uae30\ubcf8 \uc124\uc815\uc744 \uc77d\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.\n\uc544\ub450\uc774\ub178\ub97c \ub2e4\uc2dc \uc124\uce58\ud574\uc57c \ud569\ub2c8\ub2e4. @@ -634,7 +637,7 @@ Marathi=\ub9c8\ub77c\ud2f0\uc5b4 Message=\uba54\uc2dc\uc9c0 #: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=*/ \uac00 \uc8fc\uc11d \ucc98\ub9ac \ub05d\uc5d0 \ube60\uc84c\uc2b5\ub2c8\ub2e4. (/* \uc8fc\uc11d */) #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\ucd94\uac00\uc801\uc778 \ud658\uacbd \uc124\uc815\uc740 \ud30c\uc77c\uc5d0\uc11c \uc9c1\uc811 \ud3b8\uc9d1\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4 @@ -811,9 +814,6 @@ Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troublesh #: Sketch.java:355 Sketch.java:362 Sketch.java:373 Problem\ with\ rename=\uc774\ub984 \ubc14\uafb8\uae30 \ubb38\uc81c -#: Editor.java:2137 -Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=\ud504\ub85c\uc138\uc2f1\uc740 \uc790\uccb4 \uc2a4\ucf00\uce58\uc640 .ino \ub098 .pde\ub85c \ub05d\ub098\ub294 \ud30c\uc77c\uc744\n\uc5f4\uc218 \uc788\uc2b5\ub2c8\ub2c8\ub2e4. - #: ../../../processing/app/I18n.java:86 Processor=\ud504\ub85c\uc138\uc11c @@ -1196,7 +1196,7 @@ Zip\ doesn't\ contain\ a\ library=Zip \ud30c\uc77c\uc774 \ub77c\uc774\ube0c\ub7e #: SketchCode.java:258 #, java-format -"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}"\uc5d0 \uc778\uc2dd\ud560 \uc218 \uc5c6\ub294 \ubb38\uc790\uac00 \ud3ec\ud568\ub418\uc5b4 \uc788\uc2b5\ub2c8\ub2e4. \ub9cc\uc57d \uc774 \ucf54\ub4dc\uac00\uc774\uc804 \ubc84\uc804\uc758 \ud504\ub85c\uc138\uc2f1\uc73c\ub85c \ub9cc\ub4e4\uc5b4\uc84c\ub2e4\uba74, \ud234 -> \uc778\ucf54\ub529 \uc218\uc815 & \ub2e4\uc2dc \ub85c\ub4dc \ub85c UTF-8 \uc778\ud1a0\ub529\uc73c\ub85c \uc5c5\ub370\uc774\ud2b8 \ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.\uc544\ub2c8\uba74 \uc798\ubabb\ub41c \ubb38\uc790\ub97c \uc0ad\uc81c\ud558\uc5ec \uc774 \uacbd\uace0\ub97c \uc81c\uac70\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 \nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\n\uc544\ub450\uc774\ub178 0019 \uacbd\uc6b0, \uc774\ub354\ub137 \ub77c\uc774\ube0c\ub7ec\ub9ac\ub294 SPI\ub77c\uc774\ube0c\ub7ec\ub9ac\uc5d0 \uc758\uc874\ud569\ub2c8\ub2e4.\n\uc774 \uc0ac\uc774\ube0c\ub7ec\ub9ac\ub97c \uc0ac\uc6a9\ud558\uac70\ub098 SPI \ub77c\uc774\ube0c\ub7ec\ub9ac\uc5d0 \uc758\uc874\uc801\uc778\n\ub2e4\ub978 \ub77c\uc774\ube0c\ub7ec\ub9ac\ub97c \uc0ac\uc6a9\ud558\ub294 \uac83 \uac19\uc2b5\ub2c8\ub2e4.\n diff --git a/arduino-core/src/processing/app/i18n/Resources_lt_LT.po b/arduino-core/src/processing/app/i18n/Resources_lt_LT.po index 5f50666a9..9d021f34d 100644 --- a/arduino-core/src/processing/app/i18n/Resources_lt_LT.po +++ b/arduino-core/src/processing/app/i18n/Resources_lt_LT.po @@ -9,8 +9,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/arduino-ide-15/language/lt_LT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -139,6 +139,12 @@ msgstr "" msgid "Arduino AVR Boards" msgstr "" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -1140,12 +1146,6 @@ msgstr "" msgid "Problem with rename" msgstr "" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "" @@ -1713,9 +1713,9 @@ msgstr "" #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." msgstr "" #: debug/Compiler.java:409 diff --git a/arduino-core/src/processing/app/i18n/Resources_lt_LT.properties b/arduino-core/src/processing/app/i18n/Resources_lt_LT.properties index b1269d30a..5a8575821 100644 --- a/arduino-core/src/processing/app/i18n/Resources_lt_LT.properties +++ b/arduino-core/src/processing/app/i18n/Resources_lt_LT.properties @@ -4,7 +4,7 @@ # Laimutis Palivonas , 2012 # #, fuzzy -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Lithuanian (Lithuania) (http\://www.transifex.com/projects/p/arduino-ide-15/language/lt_LT/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: lt_LT\nPlural-Forms\: nplurals\=3; plural\=(n%10\=\=1 && n%100\!\=11 ? 0 \: n%10>\=2 && (n%100<10 || n%100>\=20) ? 1 \: 2);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Lithuanian (Lithuania) (http\://www.transifex.com/projects/p/arduino-ide-15/language/lt_LT/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: lt_LT\nPlural-Forms\: nplurals\=3; plural\=(n%10\=\=1 && n%100\!\=11 ? 0 \: n%10>\=2 && (n%100<10 || n%100>\=20) ? 1 \: 2);\n #: Preferences.java:358 Preferences.java:374 !\ \ (requires\ restart\ of\ Arduino)= @@ -84,6 +84,9 @@ Add\ Library...=Prid\u0117ti bibleotek\u0105... #: ../../../processing/app/I18n.java:82 !Arduino\ AVR\ Boards= +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 !Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.= @@ -812,9 +815,6 @@ Problem\ Opening\ URL=Problema atidarant nuorod\u0105 #: Sketch.java:355 Sketch.java:362 Sketch.java:373 !Problem\ with\ rename= -#: Editor.java:2137 -!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= - #: ../../../processing/app/I18n.java:86 !Processor= diff --git a/arduino-core/src/processing/app/i18n/Resources_lv_LV.po b/arduino-core/src/processing/app/i18n/Resources_lv_LV.po index 9bc7f8ab6..13d3d837a 100644 --- a/arduino-core/src/processing/app/i18n/Resources_lv_LV.po +++ b/arduino-core/src/processing/app/i18n/Resources_lv_LV.po @@ -9,8 +9,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Latvian (Latvia) (http://www.transifex.com/projects/p/arduino-ide-15/language/lv_LV/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -139,6 +139,12 @@ msgstr "" msgid "Arduino AVR Boards" msgstr "" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -437,7 +443,7 @@ msgstr "Neizdevās pa jaunam saglabāt skici." msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "Nevar nolasīt krāsu tēmas iestatījumus.\nJums vajadzēs pārinstalēt Arduino." +msgstr "" #: Preferences.java:219 msgid "" @@ -1140,12 +1146,6 @@ msgstr "Neizdevās augšupielādēt platē. Apmeklējiet http://www.arduino.cc/e msgid "Problem with rename" msgstr "Problēma ar pārsaukšanu" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "\"Arduino\" var atvērt tikai paša skices\nun citus failus, kas beidzas ar .ino vai .pde" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "" @@ -1713,10 +1713,10 @@ msgstr "\".{0}\" nav derīgs paplašinājums." #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." -msgstr "\"{0}\" satur nezināmas rakstzīmes. Ja šis kods tika izveidots ar vecāku Arduino versiju, jums var vajadzēt izmantot Rīki > Salabot kodējumu un pārlādēt funkciju, lai atjauninātu skici, lai izmantotu UTF-8 kodējumu. Ja ne, jums var vajadzēt izdzēst nekorektās rakstzīmes, lai atbrīvotos no šī ziņojuma." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." +msgstr "" #: debug/Compiler.java:409 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_lv_LV.properties b/arduino-core/src/processing/app/i18n/Resources_lv_LV.properties index 1226b9dac..cc3af2433 100644 --- a/arduino-core/src/processing/app/i18n/Resources_lv_LV.properties +++ b/arduino-core/src/processing/app/i18n/Resources_lv_LV.properties @@ -4,7 +4,7 @@ # # Translators: # Kristofers , 2012. -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Latvian (Latvia) (http\://www.transifex.com/projects/p/arduino-ide-15/language/lv_LV/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: lv_LV\nPlural-Forms\: nplurals\=3; plural\=(n%10\=\=1 && n%100\!\=11 ? 0 \: n \!\= 0 ? 1 \: 2);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Latvian (Latvia) (http\://www.transifex.com/projects/p/arduino-ide-15/language/lv_LV/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: lv_LV\nPlural-Forms\: nplurals\=3; plural\=(n%10\=\=1 && n%100\!\=11 ? 0 \: n \!\= 0 ? 1 \: 2);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ (b\u016bs nepiecie\u0161ams p\u0101rstart\u0113t Arduino) @@ -84,6 +84,9 @@ Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ sav #: ../../../processing/app/I18n.java:82 !Arduino\ AVR\ Boards= +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino nevar tikt palaists, jo tas nevar \nizveidot mapi, kur saglab\u0101t j\u016bsu iestat\u012bjumus. @@ -298,7 +301,7 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=Neizdev\u0101s pa jaunam saglab\u0101t skici. #: Theme.java:52 -Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Nevar nolas\u012bt kr\u0101su t\u0113mas iestat\u012bjumus.\nJums vajadz\u0113s p\u0101rinstal\u0113t Arduino. +!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Nevar nolas\u012bt noklus\u0113juma iestat\u012bjumus.\nJums vajadz\u0113s p\u0101rinstal\u0113t Arduino. @@ -812,9 +815,6 @@ Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troublesh #: Sketch.java:355 Sketch.java:362 Sketch.java:373 Problem\ with\ rename=Probl\u0113ma ar p\u0101rsauk\u0161anu -#: Editor.java:2137 -Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde="Arduino" var atv\u0113rt tikai pa\u0161a skices\nun citus failus, kas beidzas ar .ino vai .pde - #: ../../../processing/app/I18n.java:86 !Processor= @@ -1197,7 +1197,7 @@ Zip\ doesn't\ contain\ a\ library=Zip fails nesatur bibliot\u0113ku #: SketchCode.java:258 #, java-format -"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" satur nezin\u0101mas rakstz\u012bmes. Ja \u0161is kods tika izveidots ar vec\u0101ku Arduino versiju, jums var vajadz\u0113t izmantot R\u012bki > Salabot kod\u0113jumu un p\u0101rl\u0101d\u0113t funkciju, lai atjaunin\u0101tu skici, lai izmantotu UTF-8 kod\u0113jumu. Ja ne, jums var vajadz\u0113t izdz\u0113st nekorekt\u0101s rakstz\u012bmes, lai atbr\u012bvotos no \u0161\u012b zi\u0146ojuma. +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 \nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nKop\u0161 Arduino 0019 Ethernet bibliot\u0113ka ir atkar\u012bga no SPI bibliot\u0113kas.\nIzskat\u0101s, ka j\u016bs izmantojat to vai citu bibliot\u0113ku, kas ir atkar\u012bga no SPI bibliot\u0113kas.\n\n diff --git a/arduino-core/src/processing/app/i18n/Resources_mr.po b/arduino-core/src/processing/app/i18n/Resources_mr.po index 4e38599a3..aefd14e11 100644 --- a/arduino-core/src/processing/app/i18n/Resources_mr.po +++ b/arduino-core/src/processing/app/i18n/Resources_mr.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Marathi (http://www.transifex.com/projects/p/arduino-ide-15/language/mr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -138,6 +138,12 @@ msgstr "" msgid "Arduino AVR Boards" msgstr "" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -1139,12 +1145,6 @@ msgstr "" msgid "Problem with rename" msgstr "" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "" @@ -1712,9 +1712,9 @@ msgstr "" #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." msgstr "" #: debug/Compiler.java:409 diff --git a/arduino-core/src/processing/app/i18n/Resources_mr.properties b/arduino-core/src/processing/app/i18n/Resources_mr.properties index a120e98bb..f0b4653b6 100644 --- a/arduino-core/src/processing/app/i18n/Resources_mr.properties +++ b/arduino-core/src/processing/app/i18n/Resources_mr.properties @@ -2,8 +2,8 @@ # Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # Sarvesh S. Karkhanis <>, 2012. -# -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Marathi (http\://www.transifex.com/projects/p/arduino-ide-15/language/mr/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: mr\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +# +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Marathi (http\://www.transifex.com/projects/p/arduino-ide-15/language/mr/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: mr\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 !\ \ (requires\ restart\ of\ Arduino)= @@ -83,6 +83,9 @@ Add\ File...=\u092b\u093e\u0908\u0932 \u0938\u093e\u092e\u0940\u0932 \u0915\u093 #: ../../../processing/app/I18n.java:82 !Arduino\ AVR\ Boards= +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 !Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.= @@ -811,9 +814,6 @@ Print=\u091b\u093e\u092a\u093e #: Sketch.java:355 Sketch.java:362 Sketch.java:373 !Problem\ with\ rename= -#: Editor.java:2137 -!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= - #: ../../../processing/app/I18n.java:86 !Processor= diff --git a/arduino-core/src/processing/app/i18n/Resources_my_MM.po b/arduino-core/src/processing/app/i18n/Resources_my_MM.po index 0da2780ee..eb953064f 100644 --- a/arduino-core/src/processing/app/i18n/Resources_my_MM.po +++ b/arduino-core/src/processing/app/i18n/Resources_my_MM.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/arduino-ide-15/language/my_MM/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -138,6 +138,12 @@ msgstr "" msgid "Arduino AVR Boards" msgstr "" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -1139,12 +1145,6 @@ msgstr "" msgid "Problem with rename" msgstr "" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "" @@ -1712,9 +1712,9 @@ msgstr "" #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." msgstr "" #: debug/Compiler.java:409 diff --git a/arduino-core/src/processing/app/i18n/Resources_my_MM.properties b/arduino-core/src/processing/app/i18n/Resources_my_MM.properties index ea58ff783..0b21c65f4 100644 --- a/arduino-core/src/processing/app/i18n/Resources_my_MM.properties +++ b/arduino-core/src/processing/app/i18n/Resources_my_MM.properties @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Burmese (Myanmar) (http\://www.transifex.com/projects/p/arduino-ide-15/language/my_MM/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: my_MM\nPlural-Forms\: nplurals\=1; plural\=0;\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Burmese (Myanmar) (http\://www.transifex.com/projects/p/arduino-ide-15/language/my_MM/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: my_MM\nPlural-Forms\: nplurals\=1; plural\=0;\n #: Preferences.java:358 Preferences.java:374 !\ \ (requires\ restart\ of\ Arduino)= @@ -83,6 +83,9 @@ #: ../../../processing/app/I18n.java:82 !Arduino\ AVR\ Boards= +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 !Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.= @@ -811,9 +814,6 @@ #: Sketch.java:355 Sketch.java:362 Sketch.java:373 !Problem\ with\ rename= -#: Editor.java:2137 -!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= - #: ../../../processing/app/I18n.java:86 !Processor= diff --git a/arduino-core/src/processing/app/i18n/Resources_nb_NO.po b/arduino-core/src/processing/app/i18n/Resources_nb_NO.po index 6303fc419..a98f0586f 100644 --- a/arduino-core/src/processing/app/i18n/Resources_nb_NO.po +++ b/arduino-core/src/processing/app/i18n/Resources_nb_NO.po @@ -9,8 +9,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/arduino-ide-15/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -139,6 +139,12 @@ msgstr "Arduino ARM (32-bits) Kort" msgid "Arduino AVR Boards" msgstr "Arduino AVR kort" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -407,7 +413,7 @@ msgstr "Fant ikke verktøyet {0}" #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 #, java-format msgid "Could not find tool {0} from package {1}" -msgstr "" +msgstr "Fant ikke verktøyet {0} fra pakken {1}" #: Base.java:1934 #, java-format @@ -437,7 +443,7 @@ msgstr "Kunne ikke lagre skissen på nytt" msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "Kan ikke lese innstillinger for fargeskjema.\\n Du må installere Arduino på nytt." +msgstr "" #: Preferences.java:219 msgid "" @@ -849,7 +855,7 @@ msgid "" "disable this in the Preferences dialog.\n" "\n" "Save sketch and update its extension?" -msgstr "" +msgstr "Fra Arduino 1.0 har standard filtypen blitt endret\nfra .pde til .ino. Nye skisser (også de oppretten via \n\"Lagre som\") vil benytte den nye filtypen. Eksisterende\nskisser vil bli oppdatert med den nye filtype ved lagring.\nDette kan deaktiveres i dialogen for innstillinger.\n\nLagre skissen og oppdater filtypen?" #: Editor.java:1216 Editor.java:2757 msgid "Increase Indent" @@ -979,7 +985,7 @@ msgstr "Ingen referanse tilgjengelig for \"{0}\"" #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." -msgstr "" +msgstr "Fant ingen gyldige kjerner konfigurert! Avslutter..." #: ../../../processing/app/debug/TargetPackage.java:63 #, java-format @@ -1140,12 +1146,6 @@ msgstr "Problemer ved opplasting til kortet. Se http://www.arduino.cc/en/Guide/T msgid "Problem with rename" msgstr "Omdøping feilet" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "Arduino kan kun åpne egne skisser\nog andre filer som slutter med .ino eller .pde" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "Prosessor" @@ -1251,7 +1251,7 @@ msgstr "Velg en ny plassering for skisseboken" #: ../../../processing/app/debug/Compiler.java:146 msgid "Selected board depends on '{0}' core (not installed)." -msgstr "" +msgstr "Valgt kort avhenger av '{0}' kjerne (ikke installert)" #: SerialMonitor.java:93 msgid "Send" @@ -1713,10 +1713,10 @@ msgstr "\".{0}\" er ikke en gyldig filtype" #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." -msgstr "\"{0}\" inneholder ukjente karakterer. Hvis denne kildekoden var laget med en eldre versjon av Arduino, må du kanskje bruke Verktøy -> Fiks tegnkoding & Last på nytt for å oppdatere skissen til å benytte UTF-8 koding. Hvis ikke må du kanskje slette de ukjente karakterene for å blit kvitt denne feilmeldingen." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." +msgstr "" #: debug/Compiler.java:409 msgid "" @@ -1787,7 +1787,7 @@ msgstr "createNewFile() returnerte negativ" #: ../../../processing/app/EditorStatus.java:469 msgid "enabled in File > Preferences." -msgstr "" +msgstr "skrudd på i Fil > Innstillnger" #: Base.java:2090 msgid "environment" diff --git a/arduino-core/src/processing/app/i18n/Resources_nb_NO.properties b/arduino-core/src/processing/app/i18n/Resources_nb_NO.properties index 03f4e4432..be0d57b4e 100644 --- a/arduino-core/src/processing/app/i18n/Resources_nb_NO.properties +++ b/arduino-core/src/processing/app/i18n/Resources_nb_NO.properties @@ -4,7 +4,7 @@ # # Translators: # , 2012. -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Norwegian Bokm\u00e5l (Norway) (http\://www.transifex.com/projects/p/arduino-ide-15/language/nb_NO/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: nb_NO\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Norwegian Bokm\u00e5l (Norway) (http\://www.transifex.com/projects/p/arduino-ide-15/language/nb_NO/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: nb_NO\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ (krever omstart av Arduino) @@ -84,6 +84,9 @@ Arduino\ ARM\ (32-bits)\ Boards=Arduino ARM (32-bits) Kort #: ../../../processing/app/I18n.java:82 Arduino\ AVR\ Boards=Arduino AVR kort +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino kan ikke kj\u00f8re fordi det ikke var mulig\n\u00e5 opprette en mappe for dine innstillinger. @@ -281,7 +284,7 @@ Could\ not\ find\ tool\ {0}=Fant ikke verkt\u00f8yet {0} #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 #, java-format -!Could\ not\ find\ tool\ {0}\ from\ package\ {1}= +Could\ not\ find\ tool\ {0}\ from\ package\ {1}=Fant ikke verkt\u00f8yet {0} fra pakken {1} #: Base.java:1934 #, java-format @@ -298,7 +301,7 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=Kunne ikke lagre skissen p\u00e5 nytt #: Theme.java:52 -Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Kan ikke lese innstillinger for fargeskjema.\\n Du m\u00e5 installere Arduino p\u00e5 nytt. +!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Kunne ikke lese standard innstillinger.\nDu m\u00e5 installere Arduino p\u00e5 nytt. @@ -595,7 +598,7 @@ Ignoring\ sketch\ with\ bad\ name=Overser skisse med ugyldig navn Import\ Library...=Importer bibliotek... #: ../../../processing/app/Sketch.java:736 -!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?= +In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=Fra Arduino 1.0 har standard filtypen blitt endret\nfra .pde til .ino. Nye skisser (ogs\u00e5 de oppretten via \n"Lagre som") vil benytte den nye filtypen. Eksisterende\nskisser vil bli oppdatert med den nye filtype ved lagring.\nDette kan deaktiveres i dialogen for innstillinger.\n\nLagre skissen og oppdater filtypen? #: Editor.java:1216 Editor.java:2757 Increase\ Indent=Mer innrykk @@ -693,7 +696,7 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u00c6rlig talt, n\u00e5 er No\ reference\ available\ for\ "{0}"=Ingen referanse tilgjengelig for "{0}" #: ../../../processing/app/Base.java:309 -!No\ valid\ configured\ cores\ found\!\ Exiting...= +No\ valid\ configured\ cores\ found\!\ Exiting...=Fant ingen gyldige kjerner konfigurert\! Avslutter... #: ../../../processing/app/debug/TargetPackage.java:63 #, java-format @@ -812,9 +815,6 @@ Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troublesh #: Sketch.java:355 Sketch.java:362 Sketch.java:373 Problem\ with\ rename=Omd\u00f8ping feilet -#: Editor.java:2137 -Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Arduino kan kun \u00e5pne egne skisser\nog andre filer som slutter med .ino eller .pde - #: ../../../processing/app/I18n.java:86 Processor=Prosessor @@ -894,7 +894,7 @@ Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Velg et bil Select\ new\ sketchbook\ location=Velg en ny plassering for skisseboken #: ../../../processing/app/debug/Compiler.java:146 -!Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).= +Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=Valgt kort avhenger av '{0}' kjerne (ikke installert) #: SerialMonitor.java:93 Send=Send @@ -1197,7 +1197,7 @@ Zip\ doesn't\ contain\ a\ library=Zipfilen inneholder ikke noe bibliotek #: SketchCode.java:258 #, java-format -"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" inneholder ukjente karakterer. Hvis denne kildekoden var laget med en eldre versjon av Arduino, m\u00e5 du kanskje bruke Verkt\u00f8y -> Fiks tegnkoding & Last p\u00e5 nytt for \u00e5 oppdatere skissen til \u00e5 benytte UTF-8 koding. Hvis ikke m\u00e5 du kanskje slette de ukjente karakterene for \u00e5 blit kvitt denne feilmeldingen. +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 \nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nFra Arduino 0019, er Ethernet bilioteket avhengig av SPI biblioteket.\nDet ser ut som du benytter et bibliotek som er avhangig av SPI biblioteket.\n\n @@ -1233,7 +1233,7 @@ compilation\ =kompilering createNewFile()\ returned\ false=createNewFile() returnerte negativ #: ../../../processing/app/EditorStatus.java:469 -!enabled\ in\ File\ >\ Preferences.= +enabled\ in\ File\ >\ Preferences.=skrudd p\u00e5 i Fil > Innstillnger #: Base.java:2090 environment=milj\u00f8 diff --git a/arduino-core/src/processing/app/i18n/Resources_ne.po b/arduino-core/src/processing/app/i18n/Resources_ne.po index d7da18ea6..ade1e8ae7 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ne.po +++ b/arduino-core/src/processing/app/i18n/Resources_ne.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/arduino-ide-15/language/ne/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -138,6 +138,12 @@ msgstr "" msgid "Arduino AVR Boards" msgstr "" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -1139,12 +1145,6 @@ msgstr "" msgid "Problem with rename" msgstr "" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "" @@ -1712,9 +1712,9 @@ msgstr "" #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." msgstr "" #: debug/Compiler.java:409 diff --git a/arduino-core/src/processing/app/i18n/Resources_ne.properties b/arduino-core/src/processing/app/i18n/Resources_ne.properties index 4fac790cf..e39b2500b 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ne.properties +++ b/arduino-core/src/processing/app/i18n/Resources_ne.properties @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Nepali (http\://www.transifex.com/projects/p/arduino-ide-15/language/ne/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ne\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Nepali (http\://www.transifex.com/projects/p/arduino-ide-15/language/ne/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ne\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 !\ \ (requires\ restart\ of\ Arduino)= @@ -83,6 +83,9 @@ Arabic=\u0905\u0930\u092c\u0940 #: ../../../processing/app/I18n.java:82 !Arduino\ AVR\ Boards= +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 !Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.= @@ -811,9 +814,6 @@ Previous=\u092a\u0942\u0930\u094d\u0935 #: Sketch.java:355 Sketch.java:362 Sketch.java:373 !Problem\ with\ rename= -#: Editor.java:2137 -!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= - #: ../../../processing/app/I18n.java:86 !Processor= diff --git a/arduino-core/src/processing/app/i18n/Resources_nl.po b/arduino-core/src/processing/app/i18n/Resources_nl.po index fb5f69c78..bfe7144f4 100644 --- a/arduino-core/src/processing/app/i18n/Resources_nl.po +++ b/arduino-core/src/processing/app/i18n/Resources_nl.po @@ -10,8 +10,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/arduino-ide-15/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,7 +21,7 @@ msgstr "" #: Preferences.java:358 Preferences.java:374 msgid " (requires restart of Arduino)" -msgstr "(vereist een herstart van Arduino)" +msgstr "(herstart van Arduino nodig)" #: debug/Compiler.java:455 msgid "'Keyboard' only supported on the Arduino Leonardo" @@ -33,7 +33,7 @@ msgstr "'Mouse' kan alleen met de Arduino Leonardo worden gebruikt" #: Preferences.java:478 msgid "(edit only when Arduino is not running)" -msgstr "(enkel bewerken wanneer Arduino niet draait)" +msgstr "(alleen bewerken wanneer Arduino niet wordt uitgevoerd)" #: Sketch.java:746 msgid ".pde -> .ino" @@ -44,7 +44,7 @@ msgid "" " Are you " "sure you want to Quit?

    Closing the last open sketch will quit Arduino." -msgstr " Ben je zeker dat je wil afsluiten?

    Het afsluiten van de laatste schets heeft het afsluiten van Arduino tot gevolg." +msgstr " Weet u zeker dat u wilt afsluiten?

    Het afsluiten van de laatste schets heeft het afsluiten van Arduino tot gevolg." #: Editor.java:2053 msgid "" @@ -52,34 +52,34 @@ msgid "" " font: 11pt \"Lucida Grande\"; margin-top: 8px } Do you " "want to save changes to this sketch
    before closing?

    If you don't " "save, your changes will be lost." -msgstr " Wil jde de aanpassingen aan deze schets opslaan
    voor het sluiten?

    Indien je dit niet doet, gaan je aanpassingen verloren." +msgstr " Wilt u voor het sluiten de wijzigingen van deze schets
    opslaan?

    Indien u dit niet doet, gaan de wijzigingen verloren." #: Sketch.java:398 #, java-format msgid "A file named \"{0}\" already exists in \"{1}\"" -msgstr "Er bestaat reeds een bestand genaamd \"{0}\" in \"{1}\"" +msgstr "Er bestaat al een bestand met de naam \"{0}\" in \"{1}\"" #: Editor.java:2169 #, java-format msgid "A folder named \"{0}\" already exists. Can't open sketch." -msgstr "Een map genaamd \"{0}\" bestaat reeds. Kan schets niet openen." +msgstr "Er bestaat al een map met de naam \"{0}\". Kan de schets niet openen." #: Base.java:2690 #, java-format msgid "A library named {0} already exists" -msgstr "Er bestaat reeds een bibiliotheek genaamd {0}" +msgstr "Er bestaat al een bibliotheek met de naam {0}" #: UpdateCheck.java:103 msgid "" "A new version of Arduino is available,\n" "would you like to visit the Arduino download page?" -msgstr "Er is een nieuwe versie van Arduino beschikbaar,\nwil je de Arduino download pagina openen?" +msgstr "Er is een nieuwe versie van Arduino beschikbaar.\nWilt u naar de Arduino downloadpagina?" #: EditorConsole.java:153 msgid "" "A problem occurred while trying to open the\n" "files used to store the console output." -msgstr "Er is een probleem opgetreden bij het openen\nvan de bestanden voor de console output." +msgstr "Er is een probleem opgetreden bij het openen\nvan de bestanden voor opslag van de console-uitvoer." #: Editor.java:1116 msgid "About Arduino" @@ -98,13 +98,13 @@ msgid "" "An error occurred while trying to fix the file encoding.\n" "Do not attempt to save this sketch as it may overwrite\n" "the old version. Use Open to re-open the sketch and try again.\n" -msgstr "Er is een fout opgetreden bij het repareren van de bestandscodering.\nProbeer deze schets niet op te slaan omdat een oudere\nversie eventueel overschreven wordt. Gebruik Open om de schets opnieuw te openen en probeer het nogmaals.\n" +msgstr "Er is een fout opgetreden bij het repareren van de bestandscodering.\nProbeer deze schets niet op te slaan omdat een oudere versie\nmogelijk overschreven wordt. Gebruik Openen om de schets opnieuw te openen en probeer het nogmaals.\n" #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" "platform-specific code for your machine." -msgstr "Er trad een onbekende fout op bij het laden\nvan de platform-specifieke code voor jouw machine." +msgstr "Er is een onbekende fout opgetreden bij het laden\nvan de platform-specifieke code voor uw machine." #: Preferences.java:85 msgid "Arabic" @@ -120,37 +120,43 @@ msgstr "Schets archiveren" #: tools/Archiver.java:109 msgid "Archive sketch as:" -msgstr "Archiveer schets als:" +msgstr "Schets archiveren als:" #: tools/Archiver.java:139 msgid "Archive sketch canceled." -msgstr "Het archiveren van de schets werd geannuleerd." +msgstr "Het archiveren van de schets is geannuleerd." #: tools/Archiver.java:75 msgid "" "Archiving the sketch has been canceled because\n" "the sketch couldn't save properly." -msgstr "Het archiveren van de schets werd geannuleerd omdat\nde schets niet goed kon worden opgeslagen." +msgstr "Het archiveren van de schets is geannuleerd, omdat\nde schets niet goed kon worden opgeslagen." #: ../../../processing/app/I18n.java:83 msgid "Arduino ARM (32-bits) Boards" -msgstr "" +msgstr "Arduino ARM (32-bits)-borden" #: ../../../processing/app/I18n.java:82 msgid "Arduino AVR Boards" +msgstr "Arduino AVR-borden" + +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" msgstr "" #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" "create a folder to store your settings." -msgstr "Arduino kan niet opstarten omdat er geen\nmap kon worden gevonden om de instellingen op te slaan." +msgstr "Arduino kan niet opstarten, omdat er geen map kan\nworden aangemaakt om de instellingen in op te slaan." #: Base.java:1889 msgid "" "Arduino cannot run because it could not\n" "create a folder to store your sketchbook." -msgstr "Arduino kan niet opstarten omdat het de map voor het \nopslaan van je schetsboeken niet kon aanmaken." +msgstr "Arduino kan niet opstarten, omdat er geen map kan\nworden aangemaakt om het schetsboek in op te slaan." #: Base.java:240 msgid "" @@ -166,19 +172,19 @@ msgstr "Arduino: " #: Sketch.java:588 #, java-format msgid "Are you sure you want to delete \"{0}\"?" -msgstr "Ben je zeker dat je \"{0}\" wil verwijderen?" +msgstr "Weet u zeker dat u \"{0}\" wilt verwijderen?" #: Sketch.java:587 msgid "Are you sure you want to delete this sketch?" -msgstr "Ben je zeker dat je deze schets wil verwijderen?" +msgstr "Weet u zeker dat u deze schets wilt verwijderen?" #: ../../../processing/app/Preferences.java:137 msgid "Armenian" -msgstr "" +msgstr "Armeens" #: ../../../processing/app/Preferences.java:138 msgid "Asturian" -msgstr "" +msgstr "Asturisch" #: tools/AutoFormat.java:91 msgid "Auto Format" @@ -206,7 +212,7 @@ msgstr "Automatische opmaak voltooid." #: Preferences.java:439 msgid "Automatically associate .ino files with Arduino" -msgstr "Associeer .ino bestanden automatisch met Arduino" +msgstr "Automatisch .ino bestanden associëren met Arduino" #: SerialMonitor.java:110 msgid "Autoscroll" @@ -223,27 +229,27 @@ msgstr "Foutief bestand geselecteerd" #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" -msgstr "" +msgstr "Witrussisch" #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" -msgstr "" +msgstr "Board" #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" "Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:" " {3}" -msgstr "" +msgstr "Board {0}:{1}:{2} definieert geen ''build.board''-voorkeur. Auto-ingesteld op: {3}" #: ../../../processing/app/EditorStatus.java:472 msgid "Board: " -msgstr "" +msgstr "Board:" #: ../../../processing/app/Preferences.java:140 msgid "Bosnian" -msgstr "" +msgstr "Bosnisch" #: SerialMonitor.java:112 msgid "Both NL & CR" @@ -263,15 +269,15 @@ msgstr "Bulgaars" #: ../../../processing/app/Preferences.java:141 msgid "Burmese (Myanmar)" -msgstr "" +msgstr "Burmees (Myanmar)" #: Editor.java:708 msgid "Burn Bootloader" -msgstr "Brand Bootloader" +msgstr "Bootloader branden\n " #: Editor.java:2504 msgid "Burning bootloader to I/O Board (this may take a minute)..." -msgstr "Brand bootloader naar I/O Board (dit kan een minuut duren)..." +msgstr "Bootloader naar I/O-board branden (dit kan even duren)..." #: ../../../processing/app/Base.java:368 msgid "Can't open source sketch!" @@ -284,7 +290,7 @@ msgstr "Canadees Frans" #: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2064 Editor.java:2145 Editor.java:2465 msgid "Cancel" -msgstr "Annuleer" +msgstr "Annuleren" #: Sketch.java:455 msgid "Cannot Rename" @@ -292,7 +298,7 @@ msgstr "Hernoemen mislukt" #: SerialMonitor.java:112 msgid "Carriage return" -msgstr "Carriage return" +msgstr "Regelterugloop" #: Preferences.java:87 msgid "Catalan" @@ -300,23 +306,23 @@ msgstr "Catalaans" #: Preferences.java:419 msgid "Check for updates on startup" -msgstr "Controleer op updates tijdens het opstarten" +msgstr "Tijdens het opstarten op updates controleren" #: ../../../processing/app/Preferences.java:142 msgid "Chinese (China)" -msgstr "" +msgstr "Chinees (China)" #: ../../../processing/app/Preferences.java:142 msgid "Chinese (Hong Kong)" -msgstr "" +msgstr "Chinees (Hongkong)" #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" -msgstr "" +msgstr "Chinees (Taiwan)" #: ../../../processing/app/Preferences.java:143 msgid "Chinese (Taiwan) (Big5)" -msgstr "" +msgstr "Chinees (Taiwan) (Big5)" #: Preferences.java:88 msgid "Chinese Simplified" @@ -332,12 +338,12 @@ msgstr "Sluiten" #: Editor.java:1208 Editor.java:2749 msgid "Comment/Uncomment" -msgstr "Markeren als commentaar / markering wissen" +msgstr "Opmerking maken/opmerking wissen" #: debug/Compiler.java:49 debug/Uploader.java:45 #, java-format msgid "Compiler error, please submit this code to {0}" -msgstr "Compiler fout, gelieve deze code op te sturen naar {0}" +msgstr "Compiler-fout. Gelieve deze code op te sturen naar {0}" #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." @@ -345,7 +351,7 @@ msgstr "Bezig met het compileren van de schets..." #: EditorConsole.java:152 msgid "Console Error" -msgstr "Console fout" +msgstr "Console-fout" #: Editor.java:1157 Editor.java:2707 msgid "Copy" @@ -353,98 +359,98 @@ msgstr "Kopiëren" #: Editor.java:1177 Editor.java:2723 msgid "Copy as HTML" -msgstr "Kopieer als HTML" +msgstr "Kopiëren als HTML" #: ../../../processing/app/EditorStatus.java:455 msgid "Copy error messages" -msgstr "" +msgstr "Foutmeldingen kopiëren" #: Editor.java:1165 Editor.java:2715 msgid "Copy for Forum" -msgstr "Kopieer voor Forum" +msgstr "Kopiëren voor het Forum" #: Sketch.java:1089 #, java-format msgid "Could not add ''{0}'' to the sketch." -msgstr "''{0}'' kon niet aan de schets worden toegevoegd." +msgstr "Kan ''{0}'' niet aan de schets toevoegen." #: Editor.java:2188 msgid "Could not copy to a proper location." -msgstr "Kon niet kopiëren naar de juiste locatie." +msgstr "Kan niet naar de juiste locatie kopiëren." #: Editor.java:2179 msgid "Could not create the sketch folder." -msgstr "Kon de schets map niet creëren." +msgstr "Kan de schetsmap niet aanmaken." #: Editor.java:2206 msgid "Could not create the sketch." -msgstr "Kon de schets niet creëren." +msgstr "Kan de schets niet aanmaken." #: Sketch.java:617 #, java-format msgid "Could not delete \"{0}\"." -msgstr "Kon \"{0}\" niet verwijderen" +msgstr "Kan \"{0}\" niet verwijderen" #: Sketch.java:1066 #, java-format msgid "Could not delete the existing ''{0}'' file." -msgstr "Het huidige bestand ''{0}'' kon niet worden verwijderd." +msgstr "Kan het bestand ''{0}'' niet verwijderen." #: Base.java:2533 Base.java:2556 #, java-format msgid "Could not delete {0}" -msgstr "Kon {0} niet verwijderen" +msgstr "Kan {0} niet verwijderen" #: ../../../processing/app/debug/TargetPlatform.java:74 #, java-format msgid "Could not find boards.txt in {0}. Is it pre-1.5?" -msgstr "" +msgstr "Kan boards.txt niet vinden in {0}. Is het van voor versie 1.5?" #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 #, java-format msgid "Could not find tool {0}" -msgstr "" +msgstr "Kan hulpmiddel {0} niet vinden." #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 #, java-format msgid "Could not find tool {0} from package {1}" -msgstr "" +msgstr "Kan hulpmiddel {0} uit pakket {1} niet vinden." #: Base.java:1934 #, java-format msgid "" "Could not open the URL\n" "{0}" -msgstr "Kon de URL niet openen\n{0}" +msgstr "Kan de URL {0}\nniet openen" #: Base.java:1958 #, java-format msgid "" "Could not open the folder\n" "{0}" -msgstr "Kon de map niet openen\n{0}" +msgstr "Kan de map {0}\nniet openen" #: Sketch.java:1769 msgid "" "Could not properly re-save the sketch. You may be in trouble at this point,\n" "and it might be time to copy and paste your code to another text editor." -msgstr "Kon de schets niet opnieuw opslaan. Ik vrees dat je in de problemen zit,\nen dat het tijd is om de code in een andere tekst editor te plakken." +msgstr "Kan de schets niet opnieuw opslaan. U hebt nu een probleem.\nHet is gewenst om de code naar een andere tekst-editor te kopiëren en te plakken." #: Sketch.java:1768 msgid "Could not re-save sketch" -msgstr "De schets kon niet opnieuw worden opgeslagen." +msgstr "De schets kan niet opnieuw worden opgeslagen." #: Theme.java:52 msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "Kan kleurenschema instellingen niet lezen.\nHerinstallatie van Arduino is noodzakelijk." +msgstr "" #: Preferences.java:219 msgid "" "Could not read default settings.\n" "You'll need to reinstall Arduino." -msgstr "Kon de standaard instellingen niet lezen.\nJe zal Arduino moeten herinstalleren." +msgstr "Kan de standaard instellingen niet lezen.\nU moet Arduino opnieuw installeren." #: Preferences.java:258 #, java-format @@ -454,48 +460,48 @@ msgstr "Kon de voorkeuren niet lezen van {0}" #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" -msgstr "Kon de oude versie van {0} niet verwijderen" +msgstr "Kan de oude versie van {0} niet verwijderen" #: Sketch.java:483 Sketch.java:528 #, java-format msgid "Could not rename \"{0}\" to \"{1}\"" -msgstr "Kon \"{0}\" niet hernoemen naar \"{1}\"" +msgstr "Kan \"{0}\" niet hernoemen naar \"{1}\"" #: Sketch.java:475 msgid "Could not rename the sketch. (0)" -msgstr "Hernoemen van de schets mislukt. (0)" +msgstr "Hernoemen van schets (0) is mislukt." #: Sketch.java:496 msgid "Could not rename the sketch. (1)" -msgstr "Kon de schets niet hernoemen. (1)" +msgstr "Kan schets (1) niet hernoemen." #: Sketch.java:503 msgid "Could not rename the sketch. (2)" -msgstr "Kon de schets niet hernoemen. (2)" +msgstr "Kan schets (2) niet hernoemen." #: Base.java:2492 #, java-format msgid "Could not replace {0}" -msgstr "Kon {0} niet vervangen" +msgstr "Kan {0} niet vervangen" #: tools/Archiver.java:74 msgid "Couldn't archive sketch" -msgstr "Kon de schets niet archiveren" +msgstr "Kan de schets niet archiveren" #: Sketch.java:1647 msgid "Couldn't determine program size: {0}" -msgstr "Programma grootte kon niet worden vastgesteld: {0}" +msgstr "Kan de programmagrootte niet vaststellen: {0}" #: Sketch.java:616 msgid "Couldn't do it" -msgstr "Mislukt" +msgstr "Niet uitvoerbaar" #: debug/BasicUploader.java:209 msgid "" "Couldn't find a Board on the selected port. Check that you have the correct " "port selected. If it is correct, try pressing the board's reset button " "after initiating the upload." -msgstr "Kan geen Board vinden op de geselecteerde poort. Kijk na of je de correcte poort hebt geselecteerd. Indien deze correct is, probeer op de reset knop van het board te duwen nadat je de upload hebt geinitialiseerd." +msgstr "Kan op de geselecteerde poort geen board vinden. Controleer of u de correcte poort hebt geselecteerd. Indien deze correct is, druk dan op de resetknop van het board nadat u de upload hebt geïnitialiseerd." #: ../../../processing/app/Preferences.java:82 msgid "Croatian" @@ -525,15 +531,15 @@ msgstr "Verwijderen" msgid "" "Device is not responding, check the right serial port is selected or RESET " "the board right before exporting" -msgstr "Het apparaat antwoordt niet, kijk na of de correcte seriële poort is geselecteerd of RESET het board vlak voor de export." +msgstr "Het apparaat antwoordt niet. Controleer of de correcte seriële poort is geselecteerd of RESET het board vlak voor het exporteren." #: tools/FixEncoding.java:57 msgid "Discard all changes and reload sketch?" -msgstr "Wijzigingen annuleren and schets opnieuw laden?" +msgstr "Alle wijzigingen annuleren en schets opnieuw laden?" #: ../../../processing/app/Preferences.java:438 msgid "Display line numbers" -msgstr "" +msgstr "Regelnummers weergeven" #: Editor.java:2064 msgid "Don't Save" @@ -545,7 +551,7 @@ msgstr "Opslaan voltooid." #: Editor.java:2510 msgid "Done burning bootloader." -msgstr "Klaar met het branden van de bootoader." +msgstr "Klaar met het branden van de bootloader." #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." @@ -573,7 +579,7 @@ msgstr "Bewerken" #: Preferences.java:370 msgid "Editor font size: " -msgstr "Editor lettertype grootte:" +msgstr "Editor lettertypegrootte:" #: Preferences.java:353 msgid "Editor language: " @@ -585,7 +591,7 @@ msgstr "Engels" #: ../../../processing/app/Preferences.java:145 msgid "English (United Kingdom)" -msgstr "Engels (GB)" +msgstr "Engels (UK)" #: Editor.java:1062 msgid "Environment" @@ -599,7 +605,7 @@ msgstr "Fout" #: Sketch.java:1065 Sketch.java:1088 msgid "Error adding file" -msgstr "Probleem bij het toevoegen van het bestand" +msgstr "Fout bij het toevoegen van het bestand" #: debug/Compiler.java:369 msgid "Error compiling." @@ -607,12 +613,12 @@ msgstr "Fout bij het compileren." #: Base.java:1674 msgid "Error getting the Arduino data folder." -msgstr "Fout tijdens het openen van de Arduino data map." +msgstr "Fout bij het openen van de Arduino datamap." #: Serial.java:593 #, java-format msgid "Error inside Serial.{0}()" -msgstr "Fout is Serial.{0}()" +msgstr "Fout in Serial.{0}()" #: ../../../processing/app/Base.java:1232 msgid "Error loading libraries" @@ -639,11 +645,11 @@ msgstr "Fout bij het inlezen van de voorkeuren" msgid "" "Error reading the preferences file. Please delete (or move)\n" "{0} and restart Arduino." -msgstr "Fout bij het inlezen van het voorkeurenbestand. Gelieve {0}\nte verwijderen (of verplaatsen) en Arduino te herstarten." +msgstr "Fout bij het inlezen van het voorkeurenbestand. Gelieve {0}\nte verwijderen (of te verplaatsen) en Arduino te herstarten." #: ../../../cc/arduino/packages/DiscoveryManager.java:25 msgid "Error starting discovery method: " -msgstr "" +msgstr "Fout bij starten van de ontdekkingsmethode:" #: Serial.java:125 #, java-format @@ -652,33 +658,33 @@ msgstr "Fout bij het aanspreken van de seriële poort \"{0}\"" #: Editor.java:2512 Editor.java:2516 Editor.java:2520 msgid "Error while burning bootloader." -msgstr "Fout tijdens het branden van de bootloader." +msgstr "Fout bij het branden van de bootloader." #: ../../../processing/app/Editor.java:2555 msgid "Error while burning bootloader: missing '{0}' configuration parameter" -msgstr "" +msgstr "Fout bij het branden van de bootloader: configuratie-parameter '{0}' ontbreekt" #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" -msgstr "Fout bij het laden van de code {0}" +msgstr "Fout bij het laden van code {0}" #: Editor.java:2567 msgid "Error while printing." -msgstr "Fout tijdens het afdrukken." +msgstr "Fout bij het afdrukken." #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" -msgstr "" +msgstr "Fout bij het uploaden: configuratie-parameter '{0}' ontbreekt" #: Preferences.java:93 msgid "Estonian" -msgstr "Ests" +msgstr "Estisch" #: ../../../processing/app/Preferences.java:146 msgid "Estonian (Estonia)" -msgstr "" +msgstr "Estisch (Estland)" #: Editor.java:516 msgid "Examples" @@ -686,7 +692,7 @@ msgstr "Voorbeelden" #: Editor.java:2482 msgid "Export canceled, changes must first be saved." -msgstr "Exporteren geannuleerd, wijzigingen moeten eerst worden opgeslagen." +msgstr "Exporteren is geannuleerd, wijzigingen moeten eerst worden opgeslagen." #: Base.java:2100 msgid "FAQ.html" @@ -714,7 +720,7 @@ msgstr "Vorige zoeken" #: Editor.java:1086 Editor.java:2775 msgid "Find in Reference" -msgstr "Zoek in naslagwerk" +msgstr "Zoeken in naslagwerk" #: Editor.java:1234 msgid "Find..." @@ -726,22 +732,22 @@ msgstr "Zoeken:" #: ../../../processing/app/Preferences.java:147 msgid "Finnish" -msgstr "" +msgstr "Fins" #: tools/FixEncoding.java:41 tools/FixEncoding.java:58 #: tools/FixEncoding.java:79 msgid "Fix Encoding & Reload" -msgstr "Repareer Codering & Herlaad" +msgstr "Codering repareren en opnieuw laden" #: Base.java:1851 msgid "" "For information on installing libraries, see: " "http://arduino.cc/en/Guide/Libraries\n" -msgstr "Meer info over het installeren van bibliotheken vind je op: http://arduino.cc/en/Guide/Libraries\n" +msgstr "Meer info over het installeren van bibliotheken op: http://arduino.cc/en/Guide/Libraries\n" #: debug/BasicUploader.java:80 msgid "Forcing reset using 1200bps open/close on port " -msgstr "Een reset wordt geforceerd (1200bps open/close) op poort" +msgstr "Een reset wordt geforceerd (met 1200bps openen/sluiten) op poort" #: Preferences.java:95 msgid "French" @@ -753,7 +759,7 @@ msgstr "Veelgestelde vragen" #: Preferences.java:96 msgid "Galician" -msgstr "Galicisch" +msgstr "Gallicisch" #: ../../../processing/app/Preferences.java:94 msgid "Georgian" @@ -772,12 +778,12 @@ msgstr "Aan de slag" msgid "" "Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes " "for local variables. Maximum is {1} bytes." -msgstr "" +msgstr "Globale variabelen gebruiken {0} bytes ({2}%%) van het dynamisch geheugen. Resteren {3} bytes voor lokale variabelen. Maximum is {1} bytes." #: ../../../processing/app/Sketch.java:1651 #, java-format msgid "Global variables use {0} bytes of dynamic memory." -msgstr "" +msgstr "Globale variabelen gebruiken {0} bytes van het dynamisch geheugen." #: Preferences.java:98 msgid "Greek" @@ -815,11 +821,11 @@ msgstr "Hindi" msgid "" "How about saving the sketch first \n" "before trying to rename it?" -msgstr "Misschien moet je de schets eerst opslaan\nalvorens je hem tracht te hernoemen?" +msgstr "U kunt beter de schets eerst opslaan\nvoordat u deze probeert te hernoemen?" #: Sketch.java:882 msgid "How very Borges of you" -msgstr "Wel erg Drs. P van je" +msgstr "'How very Borges of you'" #: Preferences.java:100 msgid "Hungarian" @@ -827,11 +833,11 @@ msgstr "Hongaars" #: FindReplace.java:96 msgid "Ignore Case" -msgstr "Niet Hoofdlettergevoelig" +msgstr "Hoofdletters negeren" #: Base.java:1058 msgid "Ignoring bad library name" -msgstr "De foutieve bibliotheeknaam wordt genegeerd" +msgstr "Een foutieve bibliotheeknaam wordt genegeerd" #: Base.java:1436 msgid "Ignoring sketch with bad name" @@ -839,7 +845,7 @@ msgstr "De schets met slechte naam wordt genegeerd" #: Editor.java:636 msgid "Import Library..." -msgstr "Importeer Bibliotheek..." +msgstr "Bibliotheek importeren..." #: ../../../processing/app/Sketch.java:736 msgid "" @@ -850,7 +856,7 @@ msgid "" "disable this in the Preferences dialog.\n" "\n" "Save sketch and update its extension?" -msgstr "In Arduino 1.0 is de standaard bestandsextensie veranderd van .pde naar .ino. Nieuwe schetsen (inclusief degene aangemaakt door \"Opslaan als\") zullen de nieuwe extensie gebruiken. De extensie van bestaande schetsen zal veranderd worden bij opslaan, maar dit kan worden afgezet in het Voorkeuren scherm. Schets opslaan en de extensie veranderen?" +msgstr "In Arduino 1.0 is de standaard bestandsextensie veranderd van .pde naar .ino. Nieuwe schetsen (inclusief die aangemaakt zijn door \"Opslaan als\") gebruiken de nieuwe extensie. De extensie van bestaande schetsen wordt bij opslaan aangepast. U kunt dit overigens uitschakelen in het voorkeurendialoogvenster.\n Schets opslaan en de extensie aanpassen?" #: Editor.java:1216 Editor.java:2757 msgid "Increase Indent" @@ -883,7 +889,7 @@ msgstr "Lets" #: Base.java:2699 msgid "Library added to your libraries. Check \"Import library\" menu" -msgstr "Bibliotheek toegevoegd. Kijk het \"Bibliotheek toevoegen\" menu na." +msgstr "Bibliotheek toegevoegd aan uw bibliotheken. Controleer het \"Bibliotheek importeren\"-menu." #: Preferences.java:106 msgid "Lithuaninan" @@ -891,7 +897,7 @@ msgstr "Litouws" #: ../../../processing/app/Sketch.java:1660 msgid "Low memory available, stability problems may occur" -msgstr "Weinig geheugen beschikbaar, er kunnen zich stabiliteitsproblemen voordoen" +msgstr "Weinig geheugen beschikbaar; er kunnen zich stabiliteitsproblemen voordoen" #: Preferences.java:107 msgid "Marathi" @@ -903,7 +909,7 @@ msgstr "Boodschap" #: ../../../processing/app/preproc/PdePreprocessor.java:412 msgid "Missing the */ from the end of a /* comment */" -msgstr "" +msgstr "De */ aan het einde van een /* opmerking */ ontbreekt" #: Preferences.java:449 msgid "More preferences can be edited directly in the file" @@ -919,11 +925,11 @@ msgstr "Naam voor het nieuwe bestand:" #: ../../../processing/app/Preferences.java:149 msgid "Nepali" -msgstr "" +msgstr "Nepalees" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 msgid "Network upload using programmer not supported" -msgstr "" +msgstr "Netwerk-upload met de programmer wordt niet ondersteund" #: EditorToolbar.java:41 Editor.java:493 msgid "New" @@ -931,7 +937,7 @@ msgstr "Nieuw" #: EditorToolbar.java:46 msgid "New Editor Window" -msgstr "Nieuw Venster" +msgstr "Nieuw bewerkingsvenster" #: EditorHeader.java:292 msgid "New Tab" @@ -939,11 +945,11 @@ msgstr "Nieuw tabblad" #: SerialMonitor.java:112 msgid "Newline" -msgstr "Nieuwe Regel" +msgstr "Nieuwe regel" #: EditorHeader.java:340 msgid "Next Tab" -msgstr "Volgend tabblad" +msgstr "Volgende tabblad" #: Preferences.java:78 UpdateCheck.java:108 msgid "No" @@ -951,7 +957,7 @@ msgstr "Nee" #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "Geen board geselecteerd; kies een board in het Werktuigen > Board menu." +msgstr "Geen board geselecteerd; kies een board in het menu Hulpmiddelen > Board" #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." @@ -959,7 +965,7 @@ msgstr "Geen aanpassingen noodzakelijk voor automatische opmaak." #: Editor.java:373 msgid "No files were added to the sketch." -msgstr "Er zijn geen nieuw bestanden toegevoegd aan de schets." +msgstr "Er zijn geen nieuw bestanden aan de schets toegevoegd." #: Platform.java:167 msgid "No launcher available" @@ -967,11 +973,11 @@ msgstr "Geen launcher beschikbaar" #: SerialMonitor.java:112 msgid "No line ending" -msgstr "Doorlopende regel" +msgstr "Geen regeleinde" #: Base.java:541 msgid "No really, time for some fresh air for you." -msgstr "Nee, echt, tijd voor een beetje frisse lucht." +msgstr "Nee, echt, even tijd voor een beetje frisse lucht." #: Editor.java:1872 #, java-format @@ -980,16 +986,16 @@ msgstr "Geen naslagwerk beschikbaar voor \"{0}\"" #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." -msgstr "Geen geldige geconfigureerde kernen gevonden! Opwindend..." +msgstr "Geen geldig geconfigureerde kernen gevonden! Opwindend..." #: ../../../processing/app/debug/TargetPackage.java:63 #, java-format msgid "No valid hardware definitions found in folder {0}." -msgstr "" +msgstr "Geen geldige hardware-definities gevonden in map {0}." #: Base.java:191 msgid "Non-fatal error while setting the Look & Feel." -msgstr "Niet-fatale fout bij het instellen van de Look & Feel" +msgstr "Niet-fatale fout bij het instellen van de 'Look & Feel'." #: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859 msgid "Nope" @@ -997,13 +1003,13 @@ msgstr "Neen" #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" -msgstr "" +msgstr "Noors Bokmål" #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " "for tips on reducing your footprint." -msgstr "Niet genoeg geheugen: ga naar http://www.arduino.cc/en/Guide/Troubleshooting#size voor tips over het verkleinen van de voetafdruk." +msgstr "Niet genoeg geheugen: ga naar http://www.arduino.cc/en/Guide/Troubleshooting#size voor tips over het verkleinen van uw voetafdruk." #: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2145 Editor.java:2465 @@ -1012,23 +1018,23 @@ msgstr "OK" #: Sketch.java:992 Editor.java:376 msgid "One file added to the sketch." -msgstr "Een bestand werd toegevoegd aan de schets." +msgstr "Er is een bestand toegevoegd aan de schets." #: EditorToolbar.java:41 msgid "Open" -msgstr "Open" +msgstr "Openen" #: Editor.java:2688 msgid "Open URL" -msgstr "Open URL" +msgstr "URL openen" #: Base.java:636 msgid "Open an Arduino sketch..." -msgstr "Open een Arduino schets" +msgstr "Een Arduino-schets openen" #: EditorToolbar.java:46 msgid "Open in Another Window" -msgstr "Open in een Ander Venster" +msgstr "In een ander venster openen" #: Base.java:903 Editor.java:501 msgid "Open..." @@ -1052,7 +1058,7 @@ msgstr "Perzisch" #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." -msgstr "Gelieve de SPI bibliotheek te importeren via het Schets -> Importeer bibliotheek menu." +msgstr "Gelieve de SPI-bibliotheek te importeren via het menu Schets -> Bibliotheek importeren." #: Base.java:239 msgid "Please install JDK 1.5 or later" @@ -1088,7 +1094,7 @@ msgstr "Vorige" #: EditorHeader.java:326 msgid "Previous Tab" -msgstr "Vorig tabblad" +msgstr "Vorige tabblad" #: Editor.java:571 msgid "Print" @@ -1096,7 +1102,7 @@ msgstr "Afdrukken" #: Editor.java:2571 msgid "Printing canceled." -msgstr "Afdrukken werd geannuleerd." +msgstr "Afdrukken is geannuleerd." #: Editor.java:2547 msgid "Printing..." @@ -1116,20 +1122,20 @@ msgstr "Probleem met het instellen van het platform." #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 msgid "Problem accessing board folder /www/sd" -msgstr "" +msgstr "Probleem met het openen van de board-map /www/sd" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 msgid "Problem accessing files in folder " -msgstr "Probleem met het ophalen van bestanden uit de map" +msgstr "Probleem met het openen van bestanden in de map" #: Base.java:1673 msgid "Problem getting data folder" -msgstr "Probleem met het ophalen van de data map." +msgstr "Probleem met het openen van de data-map." #: Sketch.java:1467 #, java-format msgid "Problem moving {0} to the build folder" -msgstr "Er is een probleem opgetreden tijdens het verplaatsen van {0} naar de build folder" +msgstr "Er is een probleem opgetreden bij het verplaatsen van {0} naar de build-map" #: debug/Uploader.java:209 msgid "" @@ -1141,19 +1147,13 @@ msgstr "Probleem bij het uploaden naar het board. Zie http://www.arduino.cc/en/G msgid "Problem with rename" msgstr "Probleem bij het hernoemen" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "Arduino kan enkel zijn eigen schetsen en andere \nbestanden eindigend op .ino of .pde openen." - #: ../../../processing/app/I18n.java:86 msgid "Processor" -msgstr "" +msgstr "Processor" #: Editor.java:704 msgid "Programmer" -msgstr "Programmeerapparaat" +msgstr "Programmer" #: Base.java:783 Editor.java:593 msgid "Quit" @@ -1161,7 +1161,7 @@ msgstr "Afsluiten" #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" -msgstr "Herhalen" +msgstr "Opnieuw doen" #: Editor.java:1078 msgid "Reference" @@ -1190,7 +1190,7 @@ msgstr "De huidige versie van {0} vervangen?" #: FindReplace.java:81 msgid "Replace with:" -msgstr "Vervang door:" +msgstr "Vervangen door:" #: Preferences.java:113 msgid "Romanian" @@ -1215,7 +1215,7 @@ msgstr "Opslaan geannuleerd." #: Editor.java:2467 msgid "Save changes before export?" -msgstr "Wijzingen opslaan voor exporteren?" +msgstr "Wijzingen voor het exporteren opslaan?" #: Editor.java:2020 #, java-format @@ -1224,7 +1224,7 @@ msgstr "Gemaakte wijzigingen in \"{0}\" opslaan? " #: Sketch.java:825 msgid "Save sketch folder as..." -msgstr "Schets map opslaan als..." +msgstr "Schetsmap opslaan als..." #: Editor.java:2270 Editor.java:2308 msgid "Saving..." @@ -1232,7 +1232,7 @@ msgstr "Opslaan..." #: Base.java:1909 msgid "Select (or create new) folder for sketches..." -msgstr "Kies een map (of maak een nieuwe) voor schetsen..." +msgstr "Een map voor schetsen kiezen (of aanmaken)..." #: Editor.java:1198 Editor.java:2739 msgid "Select All" @@ -1240,19 +1240,19 @@ msgstr "Alles selecteren" #: Base.java:2636 msgid "Select a zip file or a folder containing the library you'd like to add" -msgstr "Selecteer een zipfile of een map die de bibliotheek bevat die je wil toevoegen." +msgstr "Selecteer een zipfile of een map die de bibliotheek bevat die u wilt toevoegen." #: Sketch.java:975 msgid "Select an image or other data file to copy to your sketch" -msgstr "Selecteer een afbeelding of ander bestand om naar je schets te kopiëren." +msgstr "Selecteer een afbeelding of ander data-bestand om naar uw schets te kopiëren." #: Preferences.java:330 msgid "Select new sketchbook location" -msgstr "Kies een nieuwe schetsboek locatie:" +msgstr "Kies een nieuwe schetsboeklocatie:" #: ../../../processing/app/debug/Compiler.java:146 msgid "Selected board depends on '{0}' core (not installed)." -msgstr "" +msgstr "Geselecteerde board is afhankelijk van '{0}' versie (niet geïnstalleerd)." #: SerialMonitor.java:93 msgid "Send" @@ -1260,7 +1260,7 @@ msgstr "Verzenden" #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 msgid "Serial Monitor" -msgstr "Seriële Monitor" +msgstr "Seriële monitor" #: Serial.java:174 #, java-format @@ -1281,14 +1281,14 @@ msgstr "Seriële poort \"{0}\" is reeds in gebruik. Probeer andere programma's a msgid "" "Serial port ''{0}'' not found. Did you select the right one from the Tools >" " Serial Port menu?" -msgstr "Seriële poort \"{0}\" werd niet gevonden. Heb je de correcte gekozen in het Werktuigen -> Seriële poort menu?" +msgstr "Seriële poort \"{0}\" is niet gevonden. Hebt u de juiste gekozen in het menu Hulpmiddelen > Poort?" #: Editor.java:2343 #, java-format msgid "" "Serial port {0} not found.\n" "Retry the upload with another serial port?" -msgstr "Seriele poort {0} niet gevonden.\nOpnieuw uploaden met een andere seriële poort?" +msgstr "Seriële poort {0} is niet gevonden.\nProbeer de upload met een andere seriële poort." #: Base.java:1681 msgid "Settings issues" @@ -1296,15 +1296,15 @@ msgstr "Problemen met de instellingen" #: Editor.java:641 msgid "Show Sketch Folder" -msgstr "Toon Schets folder" +msgstr "Schetsmap weergeven" #: ../../../processing/app/EditorStatus.java:468 msgid "Show verbose output during compilation" -msgstr "Toon uitgebreide uitvoer gedurende compilatie" +msgstr "Tijdens de compilatie uitgebreide uitvoer weergeven" #: Preferences.java:387 msgid "Show verbose output during: " -msgstr "Toon uitgebreide uitvoer gedurende:" +msgstr "Uitgebreide uitvoer weergeven tijdens:" #: Editor.java:607 msgid "Sketch" @@ -1324,7 +1324,7 @@ msgstr "Schets is Alleen-Lezen" #: Sketch.java:294 msgid "Sketch is Untitled" -msgstr "Naamloze Schets" +msgstr "Schets zonder naam" #: Sketch.java:720 msgid "Sketch is read-only" @@ -1341,7 +1341,7 @@ msgstr "Schets is te groot; ga naar http://www.arduino.cc/en/Guide/Troubleshooti msgid "" "Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} " "bytes." -msgstr "" +msgstr "De schets gebruikt {0} bytes ({2}%%) programma-opslagruimte. Maximum is {1} bytes." #: Editor.java:510 msgid "Sketchbook" @@ -1353,33 +1353,33 @@ msgstr "De map met schetsboeken is verdwenen" #: Preferences.java:315 msgid "Sketchbook location:" -msgstr "Schetsboek locatie:" +msgstr "Schetsboeklocatie:" #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" -msgstr "" +msgstr "Schetsen (*.ino, *.pde)" #: ../../../processing/app/Preferences.java:152 msgid "Slovenian" -msgstr "" +msgstr "Sloveens" #: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967 msgid "" "Some files are marked \"read-only\", so you'll\n" "need to re-save the sketch in another location,\n" "and try again." -msgstr "Een aantal bestanden zijn \"Alleen-lezen\" gemarkeerd, dus je zal\nde schets opnieuw moeten opslaan op een andere locatie,\nen opnieuw proberen." +msgstr "Een aantal bestanden is gemarkeerd als \"alleen-lezen\". \nU moet de schets dus op een andere locatie opslaan." #: Sketch.java:721 msgid "" "Some files are marked \"read-only\", so you'll\n" "need to re-save this sketch to another location." -msgstr "Sommige bestanden zijn als \"alleen-lezen\" aangeduid,\ndus deze schets moet op een andere locatie worden opgeslagen." +msgstr "Sommige bestanden zijn gemarkeerd als \"alleen-lezen\" .\nU moet de schets dus op een andere locatie opslaan." #: Sketch.java:457 #, java-format msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." -msgstr "Sorry, er bestaat al een schets (of folder) genaamd \"{0}\"." +msgstr "Sorry, er bestaat al een schets (of map) met de naam \"{0}\"." #: Preferences.java:115 msgid "Spanish" @@ -1395,7 +1395,7 @@ msgstr "Zweeds" #: Preferences.java:84 msgid "System Default" -msgstr "Standaardinstellingen" +msgstr "Systeemstandaard" #: Preferences.java:116 msgid "Tamil" @@ -1403,23 +1403,23 @@ msgstr "Tamil" #: debug/Compiler.java:414 msgid "The 'BYTE' keyword is no longer supported." -msgstr "De term 'BYTE' is niet langer ondersteund." +msgstr "De term 'BYTE' wordt niet langer ondersteund." #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." -msgstr "De Client klasse is hernoemd tot EthernetClient" +msgstr "De Client-klasse is hernoemd naar EthernetClient" #: debug/Compiler.java:420 msgid "The Server class has been renamed EthernetServer." -msgstr "De Server klasse is hernoemd tot EthernetServer" +msgstr "De Server-klasse is hernoemd naar EthernetServer" #: debug/Compiler.java:432 msgid "The Udp class has been renamed EthernetUdp." -msgstr "De Udp klasse is hernoemd tot EthernetUdp" +msgstr "De Udp-klasse is hernoemd naar EthernetUdp" #: Base.java:192 msgid "The error message follows, however Arduino should run fine." -msgstr "De foutboodschap volgt, Arduino zou echter zonder problemen moeten draaien." +msgstr "De foutmelding volgt. Overigens moet Arduino zonder problemen draaien." #: Editor.java:2147 #, java-format @@ -1427,7 +1427,7 @@ msgid "" "The file \"{0}\" needs to be inside\n" "a sketch folder named \"{1}\".\n" "Create this folder, move the file, and continue?" -msgstr "Het bestand {0} moet zich\n in een map genaamd \"{1}\" bevinden.\nMoet de map gecreëerd en het bestand verplaats worden om door te gaan?" +msgstr "Het bestand {0} moet zich in een\nschetsmap met de naam \"{1}\" bevinden.\nDeze map aanmaken, het bestand verplaatsen en doorgaan?" #: Base.java:1054 Base.java:2674 #, java-format @@ -1435,7 +1435,7 @@ msgid "" "The library \"{0}\" cannot be used.\n" "Library names must contain only basic letters and numbers.\n" "(ASCII only and no spaces, and it cannot start with a number)" -msgstr "De bibliotheek \"{0}\" kan niet worden gebruikt.\nBibliotheeknamen mogen enkel eenvoudige letters en cijfers bevatten.\n(Enkel ASCII en geen spaties, en de naam mag niet met een cijfer beginnen)" +msgstr "Bibliotheek \"{0}\" kan niet worden gebruikt.\nBibliotheeknamen mogen alleen eenvoudige letters en cijfers bevatten.\n(Alleen ASCII en geen spaties en een naam mag niet met een cijfer beginnen)" #: Sketch.java:374 msgid "" @@ -1446,14 +1446,14 @@ msgstr "Het hoofdbestand mag geen extensie gebruiken.\n(Het is misschien tijd om #: Sketch.java:356 msgid "The name cannot start with a period." -msgstr "De naam kan niet met een punt beginnen." +msgstr "De naam mag niet met een punt beginnen." #: Base.java:1412 msgid "" "The selected sketch no longer exists.\n" "You may need to restart Arduino to update\n" "the sketchbook menu." -msgstr "De geselecteerde schets bestaat niet meer.\nMisschien moet je Arduino herstarten om het\nschetsboek menu bij te werken." +msgstr "De geselecteerde schets bestaat niet meer.\nU moet Arduino opnieuw starten om het\nschetsboek-menu bij te werken." #: Base.java:1430 #, java-format @@ -1463,14 +1463,14 @@ msgid "" "(ASCII-only with no spaces, and it cannot start with a number).\n" "To get rid of this message, remove the sketch from\n" "{1}" -msgstr "De schets \"{0}\" kan niet worden gebruikt.\nDe namen van schetsen mogen enkel eenvoudige letters en cijfers bevatten.\n(Enkel ASCII zonder spaties, en het mag niet met een cijfer beginnen).\nVermijd deze boodschap door de schets te verwijderen uit \n{1}" +msgstr "Schets \"{0}\" kan niet worden gebruikt.\nDe namen van schetsen mogen alleen eenvoudige letters en cijfers bevatten.\n(Alleen ASCII en geen spaties en een naam mag niet met een cijfer beginnen).\nVermijd deze boodschap door de schets te verwijderen uit \n{1}" #: Sketch.java:1755 msgid "" "The sketch folder has disappeared.\n" " Will attempt to re-save in the same location,\n" "but anything besides the code will be lost." -msgstr "De map met schetsen is verdwenen.\nZal proberen opnieuw op dezelfde locatie op te slaan,\nmaar alles behalve de code zal verloren zijn." +msgstr "De map met schetsen is verdwenen.\nEr wordt geprobeerd opnieuw op dezelfde locatie op te slaan,\nmaar alles behalve de code zal verloren zijn." #: Sketch.java:2018 msgid "" @@ -1486,14 +1486,14 @@ msgid "" "location, and create a new sketchbook folder if\n" "necessary. Arduino will then stop talking about\n" "himself in the third person." -msgstr "De map met schetsboeken bestaat niet meer.\nArduino zal overschakelen op de standaard schetsboek\nlocatie, en een nieuwe map met schetsboeken aanmaken\nindien nodig. Arduino zal daarna ophouden over zichzelf te\npraten in de derde persoon." +msgstr "De schetsboekmap bestaat niet meer.\nArduino zal overschakelen naar de standaard schetsboeklocatie,\nen, indien nodig, een nieuwe schetsboekmap aanmaken.\nArduino zal daarna ophouden over zichzelf te\npraten in de derde persoon." #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" "location from which where you're trying to add it.\n" "I ain't not doin nuthin'." -msgstr "Dit bestand is reeds gekopieërd naar de locatie\nwaar je het aan probeert toe te voegen.\nIk doe lekker niets." +msgstr "Dit bestand is al gekopieerd naar de locatie\nvanwaar u het probeert toe te voegen.\nIk doe niets onzinnigs!." #: ../../../processing/app/EditorStatus.java:467 msgid "This report would have more information with" @@ -1505,7 +1505,7 @@ msgstr "Tijd voor een pauze" #: Editor.java:663 msgid "Tools" -msgstr "Werktuigen" +msgstr "Hulpmiddelen" #: Editor.java:1070 msgid "Troubleshooting" @@ -1517,11 +1517,11 @@ msgstr "Turks" #: ../../../processing/app/Editor.java:2507 msgid "Type board password to access its console" -msgstr "" +msgstr "Type het wachtwoord van het board in voor toegang tot het console" #: ../../../processing/app/Sketch.java:1673 msgid "Type board password to upload a new sketch" -msgstr "" +msgstr "Type het wachtwoord van het board in om een nieuwe schets te uploaden" #: ../../../processing/app/Preferences.java:118 msgid "Ukrainian" @@ -1530,19 +1530,19 @@ msgstr "Oekraïens" #: ../../../processing/app/Editor.java:2524 #: ../../../processing/app/NetworkMonitor.java:145 msgid "Unable to connect: is the sketch using the bridge?" -msgstr "" +msgstr "Geen verbinding: gebruikt de schets de bridge?" #: ../../../processing/app/NetworkMonitor.java:130 msgid "Unable to connect: retrying" -msgstr "" +msgstr "Niet verbonden: nieuwe poging" #: ../../../processing/app/Editor.java:2526 msgid "Unable to connect: wrong password?" -msgstr "Kan niet verbinden: verkeerde wachtwoord?" +msgstr "Geen verbinding: verkeerde wachtwoord?" #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" -msgstr "" +msgstr "De seriële monitor kan niet geopend worden" #: Sketch.java:1432 #, java-format @@ -1558,15 +1558,15 @@ msgid "" "Unspecified platform, no launcher available.\n" "To enable opening URLs or folders, add a \n" "\"launcher=/path/to/app\" line to preferences.txt" -msgstr "Platform niet gespecifieerd, geen launcher beschikbaar.\nOm het openen van URLs of mappen mogelijk te maken, voeg\neen lijn: \"launcher=/pad/naar/app\" toe aan preferences.txt" +msgstr "Onbekend platform, geen launcher beschikbaar.\nOm het openen van URLs of mappen mogelijk te maken:\nvoeg een regel \"launcher=/pad/naar/app\" toe aan preferences.txt" #: UpdateCheck.java:111 msgid "Update" -msgstr "Update" +msgstr "Updaten" #: Preferences.java:428 msgid "Update sketch files to new extension on save (.pde -> .ino)" -msgstr "Bij opslaan de schets bestanden updaten naar de nieuwe extensie (.pde -> .ino)" +msgstr "Bij het opslaan de schetsbestanden aanpassen aan de nieuwe extensie (.pde -> .ino)" #: EditorToolbar.java:41 Editor.java:545 msgid "Upload" @@ -1574,7 +1574,7 @@ msgstr "Uploaden" #: EditorToolbar.java:46 Editor.java:553 msgid "Upload Using Programmer" -msgstr "Uploaden met Programmer" +msgstr "Uploaden met programmer" #: Editor.java:2403 Editor.java:2439 msgid "Upload canceled." @@ -1582,11 +1582,11 @@ msgstr "Uploaden geannuleerd." #: ../../../processing/app/Sketch.java:1678 msgid "Upload cancelled" -msgstr "Upload geannuleerd" +msgstr "Uploaden geannuleerd" #: Editor.java:2378 msgid "Uploading to I/O Board..." -msgstr "Bezig met uploaden naar I/O Board..." +msgstr "Bezig met uploaden naar I/O-board..." #: Sketch.java:1622 msgid "Uploading..." @@ -1594,37 +1594,37 @@ msgstr "Bezig met uploaden..." #: Editor.java:1269 msgid "Use Selection For Find" -msgstr "Gebruik selectie voor zoekactie" +msgstr "Selectie gebruiken voor zoekactie" #: Preferences.java:409 msgid "Use external editor" -msgstr "Gebruik externe editor" +msgstr "Externe editor gebruiken" #: ../../../processing/app/debug/Compiler.java:94 #, java-format msgid "Using library {0} in folder: {1} {2}" -msgstr "" +msgstr "Bibliotheek {0} in map: {1} {2} wordt gebruikt" #: ../../../processing/app/debug/Compiler.java:320 #, java-format msgid "Using previously compiled file: {0}" -msgstr "" +msgstr "Vorige gecompileerde bestand {0} wordt gebruikt." #: EditorToolbar.java:41 EditorToolbar.java:46 msgid "Verify" -msgstr "Verifieer" +msgstr "Verifiëren" #: Editor.java:609 msgid "Verify / Compile" -msgstr "Verifieer / Compileer" +msgstr "Verifiëren / Compileren" #: Preferences.java:400 msgid "Verify code after upload" -msgstr "Verifieer code na uploaden" +msgstr "Code na uploaden verifiëren" #: ../../../processing/app/Preferences.java:154 msgid "Vietnamese" -msgstr "" +msgstr "Vietnamees" #: Editor.java:1105 msgid "Visit Arduino.cc" @@ -1636,11 +1636,11 @@ msgstr "Waarschuwing" #: debug/Compiler.java:444 msgid "Wire.receive() has been renamed Wire.read()." -msgstr "Wire.receive() is hernoemd tot Wire.read()." +msgstr "Wire.receive() is hernoemd naar Wire.read()." #: debug/Compiler.java:438 msgid "Wire.send() has been renamed Wire.write()." -msgstr "Wire.send() is hernoemd tot Wire.write()." +msgstr "Wire.send() is hernoemd naar Wire.write()." #: FindReplace.java:105 msgid "Wrap Around" @@ -1650,7 +1650,7 @@ msgstr "Automatische terugloop" msgid "" "Wrong microcontroller found. Did you select the right board from the Tools " "> Board menu?" -msgstr "Verkeerde microcontroller gevonden. Heb je het correcte board geselecteerd uit het Werktuigen -> Board menu?" +msgstr "Verkeerde microcontroller gevonden. Hebt u het correcte board geselecteerd in het menu Hulpmiddelen > Board?" #: Preferences.java:77 UpdateCheck.java:108 msgid "Yes" @@ -1658,52 +1658,52 @@ msgstr "Ja" #: Sketch.java:1074 msgid "You can't fool me" -msgstr "Je kan me niet belazeren" +msgstr "Je kunt me niet belazeren" #: Sketch.java:411 msgid "You can't have a .cpp file with the same name as the sketch." -msgstr "Je kan geen .cpp bestand hebben met dezelfde naam als de schets" +msgstr "U mag geen .cpp-bestand hebben met dezelfde naam als de schets." #: Sketch.java:421 msgid "" "You can't rename the sketch to \"{0}\"\n" "because the sketch already has a .cpp file with that name." -msgstr "De schets kan niet worden hernoemd naar \"{0}\"\nomdat de schets al een .ccp bestand bevat met dezelfde naam." +msgstr "De schets kan niet hernoemd worden naar \"{0}\",\nomdat de schets al een .ccp-bestand met deze naam bevat." #: Sketch.java:861 msgid "" "You can't save the sketch as \"{0}\"\n" "because the sketch already has a .cpp file with that name." -msgstr "De schets kan niet worden opgeslagen als \"{0}\"\nomdat de schets al een .ccp bestand bevat met dezelfde naam." +msgstr "De schets kan niet worden opgeslagen als \"{0}\"\nomdat de schets al een .ccp-bestand met deze naam bevat." #: Sketch.java:883 msgid "" "You cannot save the sketch into a folder\n" "inside itself. This would go on forever." -msgstr "Je kan geen schets opslaan in een folder\nbinnen zichzelf. Dit zou eindeloos doorgaan." +msgstr "U kunt een schets niet opslaan in een map\nbinnen zichzelf. Dit zou eindeloos doorgaan." #: Base.java:1888 msgid "You forgot your sketchbook" -msgstr "Je bent je schetsboek vergeten" +msgstr "U vergeet uw schetsboek" #: ../../../processing/app/AbstractMonitor.java:92 msgid "" "You've pressed {0} but nothing was sent. Should you select a line ending?" -msgstr "" +msgstr "U hebt {0} ingedrukt, maar er is niets verstuurd. Moet u een regeleinde toevoegen?" #: Base.java:536 msgid "" "You've reached the limit for auto naming of new sketches\n" "for the day. How about going for a walk instead?" -msgstr "Je hebt de limiet bereikt voor het automatisch benoemen van schetsen\nvoor vandaag. Misschien moet je maar eens een wandelingetje maken?" +msgstr "U hebt voor vandaag de limiet bereikt voor het automatisch\nbenoemen van nieuwe schetsen." #: Base.java:2638 msgid "ZIP files or folders" -msgstr "ZIP bestanden of mappen" +msgstr "ZIP-bestanden of -mappen" #: Base.java:2661 msgid "Zip doesn't contain a library" -msgstr "De zipfile bevat geen bibliotheek" +msgstr "Het Zip-bestand bevat geen bibliotheek" #: Sketch.java:364 #, java-format @@ -1714,10 +1714,10 @@ msgstr "\".{0}\" is geen geldige extensie." #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." -msgstr "\"{0}\" bevat onherkenbare karakters. Indien deze code met een oudere versie van Arduino is aangemaakt, moet je misschien Extra -> Fix Encoding & Reload gebruiken om de schets UTF-8 te laten gebruiken. Indien niet, wis dan de verkeerde karakters om deze waarschuwing te vermijden." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." +msgstr "" #: debug/Compiler.java:409 msgid "" @@ -1725,7 +1725,7 @@ msgid "" "As of Arduino 0019, the Ethernet library depends on the SPI library.\n" "You appear to be using it or another library that depends on the SPI library.\n" "\n" -msgstr "\nSinds Arduino 0019 is de Ethernet bibliotheek afhankelijk van de SPI bibliotheek.\nHet lijkt alsof je deze gebruikt of een andere bibliotheek die afhankelijk is van de SPI bibliotheek.\n\n" +msgstr "\nVanaf Arduino 0019 is de Ethernet-bibliotheek afhankelijk van de SPI-bibliotheek.\nHet lijkt alsof u deze gebruikt of een andere bibliotheek die afhankelijk is van de SPI-bibliotheek.\n\n" #: debug/Compiler.java:415 msgid "" @@ -1733,42 +1733,42 @@ msgid "" "As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" "Please use Serial.write() instead.\n" "\n" -msgstr "\nVanaf Arduino 1.0 wordt het 'BYTE' keyword niet langer ondersteund.\nGelieve Serial.write() te gebruiken.\n\n" +msgstr "\nVanaf Arduino 1.0 wordt de term 'BYTE' niet langer ondersteund.\nGebruik in plaats daarvan Serial.write().\n\n" #: debug/Compiler.java:427 msgid "" "\n" "As of Arduino 1.0, the Client class in the Ethernet library has been renamed to EthernetClient.\n" "\n" -msgstr "\nSinds Arduino 1.0 is de Client klasse in de Ethernet bibliotheek hernoemd tot EthernetClient\n\n" +msgstr "\nVanaf Arduino 1.0 is de Client-klasse in de Ethernet-bibliotheek hernoemd naar EthernetClient\n\n" #: debug/Compiler.java:421 msgid "" "\n" "As of Arduino 1.0, the Server class in the Ethernet library has been renamed to EthernetServer.\n" "\n" -msgstr "\nSinds Arduino 1.0 is de Server klasse in de Ethernet bibliotheek hernoemd tot EthernetServer.\n\n" +msgstr "\nVanaf Arduino 1.0 is de Server-klasse in de Ethernet-bibliotheek hernoemd naar EthernetServer.\n\n" #: debug/Compiler.java:433 msgid "" "\n" "As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n" "\n" -msgstr "\nSinds Arduino 1.0 is de Udp klasse in de Ethernet bibliotheek hernoemd tot EthernetUdp\n" +msgstr "\nVanaf Arduino 1.0 is de Udp-klasse in de Ethernet-bibliotheek hernoemd naar EthernetUdp\n" #: debug/Compiler.java:445 msgid "" "\n" "As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n" "\n" -msgstr "\nSinds Arduino 1.0 is de Wire.receive() functie hernoemd tot Wire.read() voor consistentie met andere bibliotheken.\n\n" +msgstr "\nVanaf Arduino 1.0 is de Wire.receive() functie hernoemd naar Wire.read() voor consistentie met andere bibliotheken.\n\n" #: debug/Compiler.java:439 msgid "" "\n" "As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n" "\n" -msgstr "\nSinds Arduino 1.0 is de Wire.send() functie hernoemd tot Wire.write() voor consistentie met andere bibliotheken.\n\n" +msgstr "\nVanaf Arduino 1.0 is de Wire.send() functie hernoemd naar Wire.write() voor consistentie met andere bibliotheken.\n\n" #: SerialMonitor.java:130 SerialMonitor.java:133 msgid "baud" @@ -1784,7 +1784,7 @@ msgstr "verbonden!" #: Sketch.java:540 msgid "createNewFile() returned false" -msgstr "createNewFile() heeft false teruggegeven" +msgstr "createNewFile() heeft false geantwoord" #: ../../../processing/app/EditorStatus.java:469 msgid "enabled in File > Preferences." @@ -1792,7 +1792,7 @@ msgstr "ingeschakeld in Bestand > Voorkeuren." #: Base.java:2090 msgid "environment" -msgstr "environment" +msgstr "omgeving" #: Editor.java:1108 msgid "http://arduino.cc/" @@ -1817,7 +1817,7 @@ msgstr "http://www.arduino.cc/playground/Learning/Linux" #: Preferences.java:625 #, java-format msgid "ignoring invalid font size {0}" -msgstr "Ongeldige lettertypegrootte wordt genegeerd {0}" +msgstr "Ongeldige lettertypegrootte {0} wordt genegeerd" #: Base.java:2080 msgid "index.html" @@ -1825,7 +1825,7 @@ msgstr "index.html" #: Editor.java:936 Editor.java:943 msgid "name is null" -msgstr "naam is null" +msgstr "naam is leeg" #: Base.java:2090 msgid "platforms.html" @@ -1836,21 +1836,21 @@ msgstr "platforms.html" msgid "" "readBytesUntil() byte buffer is too small for the {0} bytes up to and " "including char {1}" -msgstr "readBytesUntil() byte buffer is te klein voor de {0} bytes tot en met karakter {1}" +msgstr "readBytesUntil() byte buffer is te klein voor de {0} bytes tot en met teken {1}" #: Sketch.java:647 msgid "removeCode: internal error.. could not find code" -msgstr "removeCode: interne fout. Kon de code niet vinden" +msgstr "removeCode: interne fout.. geen code gevonden" #: Editor.java:932 msgid "serialMenu is null" -msgstr "serialMenu is null" +msgstr "serialMenu is leeg" #: debug/Uploader.java:195 #, java-format msgid "" "the selected serial port {0} does not exist or your board is not connected" -msgstr "de geselecteerde seriële poort {0} bestaat niet of je board is niet aangesloten." +msgstr "de geselecteerde seriële poort {0} bestaat niet of uw board is niet aangesloten." #: Preferences.java:391 msgid "upload" @@ -1864,7 +1864,7 @@ msgstr "{0} bestanden zijn toegevoegd aan de schets." #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" -msgstr "{0} gaf {1} terug" +msgstr "{0} antwoordde {1}" #: Editor.java:2213 #, java-format diff --git a/arduino-core/src/processing/app/i18n/Resources_nl.properties b/arduino-core/src/processing/app/i18n/Resources_nl.properties index c261d7aa1..661c16f0b 100644 --- a/arduino-core/src/processing/app/i18n/Resources_nl.properties +++ b/arduino-core/src/processing/app/i18n/Resources_nl.properties @@ -5,10 +5,10 @@ # Translators: # , 2012. # , 2012. -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Dutch (http\://www.transifex.com/projects/p/arduino-ide-15/language/nl/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: nl\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Dutch (http\://www.transifex.com/projects/p/arduino-ide-15/language/nl/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: nl\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 -\ \ (requires\ restart\ of\ Arduino)=(vereist een herstart van Arduino) +\ \ (requires\ restart\ of\ Arduino)=(herstart van Arduino nodig) #: debug/Compiler.java:455 'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard' kan alleen met de Arduino Leonardo worden gebruikt @@ -17,34 +17,34 @@ 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' kan alleen met de Arduino Leonardo worden gebruikt #: Preferences.java:478 -(edit\ only\ when\ Arduino\ is\ not\ running)=(enkel bewerken wanneer Arduino niet draait) +(edit\ only\ when\ Arduino\ is\ not\ running)=(alleen bewerken wanneer Arduino niet wordt uitgevoerd) #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino #: Base.java:773 -\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

    Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= Ben je zeker dat je wil afsluiten?

    Het afsluiten van de laatste schets heeft het afsluiten van Arduino tot gevolg. +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

    Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= Weet u zeker dat u wilt afsluiten?

    Het afsluiten van de laatste schets heeft het afsluiten van Arduino tot gevolg. #: Editor.java:2053 -\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Do\ you\ want\ to\ save\ changes\ to\ this\ sketch
    \ before\ closing?

    If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= Wil jde de aanpassingen aan deze schets opslaan
    voor het sluiten?

    Indien je dit niet doet, gaan je aanpassingen verloren. +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Do\ you\ want\ to\ save\ changes\ to\ this\ sketch
    \ before\ closing?

    If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= Wilt u voor het sluiten de wijzigingen van deze schets
    opslaan?

    Indien u dit niet doet, gaan de wijzigingen verloren. #: Sketch.java:398 #, java-format -A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=Er bestaat reeds een bestand genaamd "{0}" in "{1}" +A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=Er bestaat al een bestand met de naam "{0}" in "{1}" #: Editor.java:2169 #, java-format -A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=Een map genaamd "{0}" bestaat reeds. Kan schets niet openen. +A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=Er bestaat al een map met de naam "{0}". Kan de schets niet openen. #: Base.java:2690 #, java-format -A\ library\ named\ {0}\ already\ exists=Er bestaat reeds een bibiliotheek genaamd {0} +A\ library\ named\ {0}\ already\ exists=Er bestaat al een bibliotheek met de naam {0} #: UpdateCheck.java:103 -A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Er is een nieuwe versie van Arduino beschikbaar,\nwil je de Arduino download pagina openen? +A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Er is een nieuwe versie van Arduino beschikbaar.\nWilt u naar de Arduino downloadpagina? #: EditorConsole.java:153 -A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=Er is een probleem opgetreden bij het openen\nvan de bestanden voor de console output. +A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=Er is een probleem opgetreden bij het openen\nvan de bestanden voor opslag van de console-uitvoer. #: Editor.java:1116 About\ Arduino=Over Arduino @@ -56,10 +56,10 @@ Add\ File...=Bestand toevoegen... Add\ Library...=Bibliotheek toevoegen\u2026 #: tools/FixEncoding.java:77 -An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Er is een fout opgetreden bij het repareren van de bestandscodering.\nProbeer deze schets niet op te slaan omdat een oudere\nversie eventueel overschreven wordt. Gebruik Open om de schets opnieuw te openen en probeer het nogmaals.\n +An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Er is een fout opgetreden bij het repareren van de bestandscodering.\nProbeer deze schets niet op te slaan omdat een oudere versie\nmogelijk overschreven wordt. Gebruik Openen om de schets opnieuw te openen en probeer het nogmaals.\n #: Base.java:228 -An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Er trad een onbekende fout op bij het laden\nvan de platform-specifieke code voor jouw machine. +An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Er is een onbekende fout opgetreden bij het laden\nvan de platform-specifieke code voor uw machine. #: Preferences.java:85 Arabic=Arabisch @@ -71,25 +71,28 @@ Aragonese=Aragonees Archive\ Sketch=Schets archiveren #: tools/Archiver.java:109 -Archive\ sketch\ as\:=Archiveer schets als\: +Archive\ sketch\ as\:=Schets archiveren als\: #: tools/Archiver.java:139 -Archive\ sketch\ canceled.=Het archiveren van de schets werd geannuleerd. +Archive\ sketch\ canceled.=Het archiveren van de schets is geannuleerd. #: tools/Archiver.java:75 -Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=Het archiveren van de schets werd geannuleerd omdat\nde schets niet goed kon worden opgeslagen. +Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=Het archiveren van de schets is geannuleerd, omdat\nde schets niet goed kon worden opgeslagen. #: ../../../processing/app/I18n.java:83 -!Arduino\ ARM\ (32-bits)\ Boards= +Arduino\ ARM\ (32-bits)\ Boards=Arduino ARM (32-bits)-borden #: ../../../processing/app/I18n.java:82 -!Arduino\ AVR\ Boards= +Arduino\ AVR\ Boards=Arduino AVR-borden + +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= #: Base.java:1682 -Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino kan niet opstarten omdat er geen\nmap kon worden gevonden om de instellingen op te slaan. +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino kan niet opstarten, omdat er geen map kan\nworden aangemaakt om de instellingen in op te slaan. #: Base.java:1889 -Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino kan niet opstarten omdat het de map voor het \nopslaan van je schetsboeken niet kon aanmaken. +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino kan niet opstarten, omdat er geen map kan\nworden aangemaakt om het schetsboek in op te slaan. #: Base.java:240 Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino vereist een volledige JDK (niet enkel een JRE)\nom op te kunnen starten. Gelieve JDK 1.5 of later te installeren.\nMeer informatie kan in het naslagwerk worden gevonden. @@ -99,16 +102,16 @@ Arduino\:\ =Arduino\: #: Sketch.java:588 #, java-format -Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Ben je zeker dat je "{0}" wil verwijderen? +Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Weet u zeker dat u "{0}" wilt verwijderen? #: Sketch.java:587 -Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Ben je zeker dat je deze schets wil verwijderen? +Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Weet u zeker dat u deze schets wilt verwijderen? #: ../../../processing/app/Preferences.java:137 -!Armenian= +Armenian=Armeens #: ../../../processing/app/Preferences.java:138 -!Asturian= +Asturian=Asturisch #: tools/AutoFormat.java:91 Auto\ Format=Automatische opmaak @@ -129,7 +132,7 @@ Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=Automatische opmaak gea Auto\ Format\ finished.=Automatische opmaak voltooid. #: Preferences.java:439 -Automatically\ associate\ .ino\ files\ with\ Arduino=Associeer .ino bestanden automatisch met Arduino +Automatically\ associate\ .ino\ files\ with\ Arduino=Automatisch .ino bestanden associ\u00ebren met Arduino #: SerialMonitor.java:110 Autoscroll=Autoscroll @@ -142,21 +145,21 @@ Bad\ error\ line\:\ {0}=Ernstige fout regel\: {0} Bad\ file\ selected=Foutief bestand geselecteerd #: ../../../processing/app/Preferences.java:139 -!Belarusian= +Belarusian=Witrussisch #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 -!Board= +Board=Board #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format -!Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= +Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=Board {0}\:{1}\:{2} definieert geen ''build.board''-voorkeur. Auto-ingesteld op\: {3} #: ../../../processing/app/EditorStatus.java:472 -!Board\:\ = +Board\:\ =Board\: #: ../../../processing/app/Preferences.java:140 -!Bosnian= +Bosnian=Bosnisch #: SerialMonitor.java:112 Both\ NL\ &\ CR=Zowel NL als CR @@ -171,13 +174,13 @@ Build\ folder\ disappeared\ or\ could\ not\ be\ written=De map met bouwpogingen Bulgarian=Bulgaars #: ../../../processing/app/Preferences.java:141 -!Burmese\ (Myanmar)= +Burmese\ (Myanmar)=Burmees (Myanmar) #: Editor.java:708 -Burn\ Bootloader=Brand Bootloader +Burn\ Bootloader=Bootloader branden\n #: Editor.java:2504 -Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Brand bootloader naar I/O Board (dit kan een minuut duren)... +Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Bootloader naar I/O-board branden (dit kan even duren)... #: ../../../processing/app/Base.java:368 !Can't\ open\ source\ sketch\!= @@ -187,31 +190,31 @@ Canadian\ French=Canadees Frans #: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2064 Editor.java:2145 Editor.java:2465 -Cancel=Annuleer +Cancel=Annuleren #: Sketch.java:455 Cannot\ Rename=Hernoemen mislukt #: SerialMonitor.java:112 -Carriage\ return=Carriage return +Carriage\ return=Regelterugloop #: Preferences.java:87 Catalan=Catalaans #: Preferences.java:419 -Check\ for\ updates\ on\ startup=Controleer op updates tijdens het opstarten +Check\ for\ updates\ on\ startup=Tijdens het opstarten op updates controleren #: ../../../processing/app/Preferences.java:142 -!Chinese\ (China)= +Chinese\ (China)=Chinees (China) #: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= +Chinese\ (Hong\ Kong)=Chinees (Hongkong) #: ../../../processing/app/Preferences.java:144 -!Chinese\ (Taiwan)= +Chinese\ (Taiwan)=Chinees (Taiwan) #: ../../../processing/app/Preferences.java:143 -!Chinese\ (Taiwan)\ (Big5)= +Chinese\ (Taiwan)\ (Big5)=Chinees (Taiwan) (Big5) #: Preferences.java:88 Chinese\ Simplified=Chinees Vereenvoudigd @@ -223,86 +226,86 @@ Chinese\ Traditional=Chinees Traditioneel Close=Sluiten #: Editor.java:1208 Editor.java:2749 -Comment/Uncomment=Markeren als commentaar / markering wissen +Comment/Uncomment=Opmerking maken/opmerking wissen #: debug/Compiler.java:49 debug/Uploader.java:45 #, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Compiler fout, gelieve deze code op te sturen naar {0} +Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Compiler-fout. Gelieve deze code op te sturen naar {0} #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=Bezig met het compileren van de schets... #: EditorConsole.java:152 -Console\ Error=Console fout +Console\ Error=Console-fout #: Editor.java:1157 Editor.java:2707 Copy=Kopi\u00ebren #: Editor.java:1177 Editor.java:2723 -Copy\ as\ HTML=Kopieer als HTML +Copy\ as\ HTML=Kopi\u00ebren als HTML #: ../../../processing/app/EditorStatus.java:455 -!Copy\ error\ messages= +Copy\ error\ messages=Foutmeldingen kopi\u00ebren #: Editor.java:1165 Editor.java:2715 -Copy\ for\ Forum=Kopieer voor Forum +Copy\ for\ Forum=Kopi\u00ebren voor het Forum #: Sketch.java:1089 #, java-format -Could\ not\ add\ ''{0}''\ to\ the\ sketch.=''{0}'' kon niet aan de schets worden toegevoegd. +Could\ not\ add\ ''{0}''\ to\ the\ sketch.=Kan ''{0}'' niet aan de schets toevoegen. #: Editor.java:2188 -Could\ not\ copy\ to\ a\ proper\ location.=Kon niet kopi\u00ebren naar de juiste locatie. +Could\ not\ copy\ to\ a\ proper\ location.=Kan niet naar de juiste locatie kopi\u00ebren. #: Editor.java:2179 -Could\ not\ create\ the\ sketch\ folder.=Kon de schets map niet cre\u00ebren. +Could\ not\ create\ the\ sketch\ folder.=Kan de schetsmap niet aanmaken. #: Editor.java:2206 -Could\ not\ create\ the\ sketch.=Kon de schets niet cre\u00ebren. +Could\ not\ create\ the\ sketch.=Kan de schets niet aanmaken. #: Sketch.java:617 #, java-format -Could\ not\ delete\ "{0}".=Kon "{0}" niet verwijderen +Could\ not\ delete\ "{0}".=Kan "{0}" niet verwijderen #: Sketch.java:1066 #, java-format -Could\ not\ delete\ the\ existing\ ''{0}''\ file.=Het huidige bestand ''{0}'' kon niet worden verwijderd. +Could\ not\ delete\ the\ existing\ ''{0}''\ file.=Kan het bestand ''{0}'' niet verwijderen. #: Base.java:2533 Base.java:2556 #, java-format -Could\ not\ delete\ {0}=Kon {0} niet verwijderen +Could\ not\ delete\ {0}=Kan {0} niet verwijderen #: ../../../processing/app/debug/TargetPlatform.java:74 #, java-format -!Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?= +Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?=Kan boards.txt niet vinden in {0}. Is het van voor versie 1.5? #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 #, java-format -!Could\ not\ find\ tool\ {0}= +Could\ not\ find\ tool\ {0}=Kan hulpmiddel {0} niet vinden. #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 #, java-format -!Could\ not\ find\ tool\ {0}\ from\ package\ {1}= +Could\ not\ find\ tool\ {0}\ from\ package\ {1}=Kan hulpmiddel {0} uit pakket {1} niet vinden. #: Base.java:1934 #, java-format -Could\ not\ open\ the\ URL\n{0}=Kon de URL niet openen\n{0} +Could\ not\ open\ the\ URL\n{0}=Kan de URL {0}\nniet openen #: Base.java:1958 #, java-format -Could\ not\ open\ the\ folder\n{0}=Kon de map niet openen\n{0} +Could\ not\ open\ the\ folder\n{0}=Kan de map {0}\nniet openen #: Sketch.java:1769 -Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=Kon de schets niet opnieuw opslaan. Ik vrees dat je in de problemen zit,\nen dat het tijd is om de code in een andere tekst editor te plakken. +Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=Kan de schets niet opnieuw opslaan. U hebt nu een probleem.\nHet is gewenst om de code naar een andere tekst-editor te kopi\u00ebren en te plakken. #: Sketch.java:1768 -Could\ not\ re-save\ sketch=De schets kon niet opnieuw worden opgeslagen. +Could\ not\ re-save\ sketch=De schets kan niet opnieuw worden opgeslagen. #: Theme.java:52 -Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Kan kleurenschema instellingen niet lezen.\nHerinstallatie van Arduino is noodzakelijk. +!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= #: Preferences.java:219 -Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Kon de standaard instellingen niet lezen.\nJe zal Arduino moeten herinstalleren. +Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Kan de standaard instellingen niet lezen.\nU moet Arduino opnieuw installeren. #: Preferences.java:258 #, java-format @@ -310,36 +313,36 @@ Could\ not\ read\ preferences\ from\ {0}=Kon de voorkeuren niet lezen van {0} #: Base.java:2482 #, java-format -Could\ not\ remove\ old\ version\ of\ {0}=Kon de oude versie van {0} niet verwijderen +Could\ not\ remove\ old\ version\ of\ {0}=Kan de oude versie van {0} niet verwijderen #: Sketch.java:483 Sketch.java:528 #, java-format -Could\ not\ rename\ "{0}"\ to\ "{1}"=Kon "{0}" niet hernoemen naar "{1}" +Could\ not\ rename\ "{0}"\ to\ "{1}"=Kan "{0}" niet hernoemen naar "{1}" #: Sketch.java:475 -Could\ not\ rename\ the\ sketch.\ (0)=Hernoemen van de schets mislukt. (0) +Could\ not\ rename\ the\ sketch.\ (0)=Hernoemen van schets (0) is mislukt. #: Sketch.java:496 -Could\ not\ rename\ the\ sketch.\ (1)=Kon de schets niet hernoemen. (1) +Could\ not\ rename\ the\ sketch.\ (1)=Kan schets (1) niet hernoemen. #: Sketch.java:503 -Could\ not\ rename\ the\ sketch.\ (2)=Kon de schets niet hernoemen. (2) +Could\ not\ rename\ the\ sketch.\ (2)=Kan schets (2) niet hernoemen. #: Base.java:2492 #, java-format -Could\ not\ replace\ {0}=Kon {0} niet vervangen +Could\ not\ replace\ {0}=Kan {0} niet vervangen #: tools/Archiver.java:74 -Couldn't\ archive\ sketch=Kon de schets niet archiveren +Couldn't\ archive\ sketch=Kan de schets niet archiveren #: Sketch.java:1647 -Couldn't\ determine\ program\ size\:\ {0}=Programma grootte kon niet worden vastgesteld\: {0} +Couldn't\ determine\ program\ size\:\ {0}=Kan de programmagrootte niet vaststellen\: {0} #: Sketch.java:616 -Couldn't\ do\ it=Mislukt +Couldn't\ do\ it=Niet uitvoerbaar #: debug/BasicUploader.java:209 -Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=Kan geen Board vinden op de geselecteerde poort. Kijk na of je de correcte poort hebt geselecteerd. Indien deze correct is, probeer op de reset knop van het board te duwen nadat je de upload hebt geinitialiseerd. +Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=Kan op de geselecteerde poort geen board vinden. Controleer of u de correcte poort hebt geselecteerd. Indien deze correct is, druk dan op de resetknop van het board nadat u de upload hebt ge\u00efnitialiseerd. #: ../../../processing/app/Preferences.java:82 Croatian=Kroatisch @@ -360,13 +363,13 @@ Decrease\ Indent=Insprong verkleinen Delete=Verwijderen #: debug/Uploader.java:199 -Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=Het apparaat antwoordt niet, kijk na of de correcte seri\u00eble poort is geselecteerd of RESET het board vlak voor de export. +Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=Het apparaat antwoordt niet. Controleer of de correcte seri\u00eble poort is geselecteerd of RESET het board vlak voor het exporteren. #: tools/FixEncoding.java:57 -Discard\ all\ changes\ and\ reload\ sketch?=Wijzigingen annuleren and schets opnieuw laden? +Discard\ all\ changes\ and\ reload\ sketch?=Alle wijzigingen annuleren en schets opnieuw laden? #: ../../../processing/app/Preferences.java:438 -!Display\ line\ numbers= +Display\ line\ numbers=Regelnummers weergeven #: Editor.java:2064 Don't\ Save=Niet opslaan @@ -375,7 +378,7 @@ Don't\ Save=Niet opslaan Done\ Saving.=Opslaan voltooid. #: Editor.java:2510 -Done\ burning\ bootloader.=Klaar met het branden van de bootoader. +Done\ burning\ bootloader.=Klaar met het branden van de bootloader. #: Editor.java:1911 Editor.java:1928 Done\ compiling.=Compileren voltooid. @@ -396,7 +399,7 @@ Dutch\ (Netherlands)=Nederlands (NL) Edit=Bewerken #: Preferences.java:370 -Editor\ font\ size\:\ =Editor lettertype grootte\: +Editor\ font\ size\:\ =Editor lettertypegrootte\: #: Preferences.java:353 Editor\ language\:\ =Taal voor editor\: @@ -405,7 +408,7 @@ Editor\ language\:\ =Taal voor editor\: English=Engels #: ../../../processing/app/Preferences.java:145 -English\ (United\ Kingdom)=Engels (GB) +English\ (United\ Kingdom)=Engels (UK) #: Editor.java:1062 Environment=Omgeving @@ -416,17 +419,17 @@ Environment=Omgeving Error=Fout #: Sketch.java:1065 Sketch.java:1088 -Error\ adding\ file=Probleem bij het toevoegen van het bestand +Error\ adding\ file=Fout bij het toevoegen van het bestand #: debug/Compiler.java:369 Error\ compiling.=Fout bij het compileren. #: Base.java:1674 -Error\ getting\ the\ Arduino\ data\ folder.=Fout tijdens het openen van de Arduino data map. +Error\ getting\ the\ Arduino\ data\ folder.=Fout bij het openen van de Arduino datamap. #: Serial.java:593 #, java-format -Error\ inside\ Serial.{0}()=Fout is Serial.{0}() +Error\ inside\ Serial.{0}()=Fout in Serial.{0}() #: ../../../processing/app/Base.java:1232 Error\ loading\ libraries=Fout bij het inlezen van de bibliotheken @@ -446,43 +449,43 @@ Error\ reading\ preferences=Fout bij het inlezen van de voorkeuren #: Preferences.java:279 #, java-format -Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Fout bij het inlezen van het voorkeurenbestand. Gelieve {0}\nte verwijderen (of verplaatsen) en Arduino te herstarten. +Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Fout bij het inlezen van het voorkeurenbestand. Gelieve {0}\nte verwijderen (of te verplaatsen) en Arduino te herstarten. #: ../../../cc/arduino/packages/DiscoveryManager.java:25 -!Error\ starting\ discovery\ method\:\ = +Error\ starting\ discovery\ method\:\ =Fout bij starten van de ontdekkingsmethode\: #: Serial.java:125 #, java-format Error\ touching\ serial\ port\ ''{0}''.=Fout bij het aanspreken van de seri\u00eble poort "{0}" #: Editor.java:2512 Editor.java:2516 Editor.java:2520 -Error\ while\ burning\ bootloader.=Fout tijdens het branden van de bootloader. +Error\ while\ burning\ bootloader.=Fout bij het branden van de bootloader. #: ../../../processing/app/Editor.java:2555 -!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=Fout bij het branden van de bootloader\: configuratie-parameter '{0}' ontbreekt #: SketchCode.java:83 #, java-format -Error\ while\ loading\ code\ {0}=Fout bij het laden van de code {0} +Error\ while\ loading\ code\ {0}=Fout bij het laden van code {0} #: Editor.java:2567 -Error\ while\ printing.=Fout tijdens het afdrukken. +Error\ while\ printing.=Fout bij het afdrukken. #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 -!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= +Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=Fout bij het uploaden\: configuratie-parameter '{0}' ontbreekt #: Preferences.java:93 -Estonian=Ests +Estonian=Estisch #: ../../../processing/app/Preferences.java:146 -!Estonian\ (Estonia)= +Estonian\ (Estonia)=Estisch (Estland) #: Editor.java:516 Examples=Voorbeelden #: Editor.java:2482 -Export\ canceled,\ changes\ must\ first\ be\ saved.=Exporteren geannuleerd, wijzigingen moeten eerst worden opgeslagen. +Export\ canceled,\ changes\ must\ first\ be\ saved.=Exporteren is geannuleerd, wijzigingen moeten eerst worden opgeslagen. #: Base.java:2100 FAQ.html=FAQ.html @@ -503,7 +506,7 @@ Find\ Next=Volgende zoeken Find\ Previous=Vorige zoeken #: Editor.java:1086 Editor.java:2775 -Find\ in\ Reference=Zoek in naslagwerk +Find\ in\ Reference=Zoeken in naslagwerk #: Editor.java:1234 Find...=Zoeken... @@ -512,17 +515,17 @@ Find...=Zoeken... Find\:=Zoeken\: #: ../../../processing/app/Preferences.java:147 -!Finnish= +Finnish=Fins #: tools/FixEncoding.java:41 tools/FixEncoding.java:58 #: tools/FixEncoding.java:79 -Fix\ Encoding\ &\ Reload=Repareer Codering & Herlaad +Fix\ Encoding\ &\ Reload=Codering repareren en opnieuw laden #: Base.java:1851 -For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=Meer info over het installeren van bibliotheken vind je op\: http\://arduino.cc/en/Guide/Libraries\n +For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=Meer info over het installeren van bibliotheken op\: http\://arduino.cc/en/Guide/Libraries\n #: debug/BasicUploader.java:80 -Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =Een reset wordt geforceerd (1200bps open/close) op poort +Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =Een reset wordt geforceerd (met 1200bps openen/sluiten) op poort #: Preferences.java:95 French=Frans @@ -531,7 +534,7 @@ French=Frans Frequently\ Asked\ Questions=Veelgestelde vragen #: Preferences.java:96 -Galician=Galicisch +Galician=Gallicisch #: ../../../processing/app/Preferences.java:94 Georgian=Georgisch @@ -544,11 +547,11 @@ Getting\ Started=Aan de slag #: ../../../processing/app/Sketch.java:1646 #, java-format -!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.= +Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=Globale variabelen gebruiken {0} bytes ({2}%%) van het dynamisch geheugen. Resteren {3} bytes voor lokale variabelen. Maximum is {1} bytes. #: ../../../processing/app/Sketch.java:1651 #, java-format -!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.= +Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=Globale variabelen gebruiken {0} bytes van het dynamisch geheugen. #: Preferences.java:98 Greek=Grieks @@ -575,28 +578,28 @@ Help=Help Hindi=Hindi #: Sketch.java:295 -How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Misschien moet je de schets eerst opslaan\nalvorens je hem tracht te hernoemen? +How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=U kunt beter de schets eerst opslaan\nvoordat u deze probeert te hernoemen? #: Sketch.java:882 -How\ very\ Borges\ of\ you=Wel erg Drs. P van je +How\ very\ Borges\ of\ you='How very Borges of you' #: Preferences.java:100 Hungarian=Hongaars #: FindReplace.java:96 -Ignore\ Case=Niet Hoofdlettergevoelig +Ignore\ Case=Hoofdletters negeren #: Base.java:1058 -Ignoring\ bad\ library\ name=De foutieve bibliotheeknaam wordt genegeerd +Ignoring\ bad\ library\ name=Een foutieve bibliotheeknaam wordt genegeerd #: Base.java:1436 Ignoring\ sketch\ with\ bad\ name=De schets met slechte naam wordt genegeerd #: Editor.java:636 -Import\ Library...=Importeer Bibliotheek... +Import\ Library...=Bibliotheek importeren... #: ../../../processing/app/Sketch.java:736 -In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=In Arduino 1.0 is de standaard bestandsextensie veranderd van .pde naar .ino. Nieuwe schetsen (inclusief degene aangemaakt door "Opslaan als") zullen de nieuwe extensie gebruiken. De extensie van bestaande schetsen zal veranderd worden bij opslaan, maar dit kan worden afgezet in het Voorkeuren scherm. Schets opslaan en de extensie veranderen? +In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=In Arduino 1.0 is de standaard bestandsextensie veranderd van .pde naar .ino. Nieuwe schetsen (inclusief die aangemaakt zijn door "Opslaan als") gebruiken de nieuwe extensie. De extensie van bestaande schetsen wordt bij opslaan aangepast. U kunt dit overigens uitschakelen in het voorkeurendialoogvenster.\n Schets opslaan en de extensie aanpassen? #: Editor.java:1216 Editor.java:2757 Increase\ Indent=Insprong vergroten @@ -621,13 +624,13 @@ Korean=Koreaans Latvian=Lets #: Base.java:2699 -Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Bibliotheek toegevoegd. Kijk het "Bibliotheek toevoegen" menu na. +Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Bibliotheek toegevoegd aan uw bibliotheken. Controleer het "Bibliotheek importeren"-menu. #: Preferences.java:106 Lithuaninan=Litouws #: ../../../processing/app/Sketch.java:1660 -Low\ memory\ available,\ stability\ problems\ may\ occur=Weinig geheugen beschikbaar, er kunnen zich stabiliteitsproblemen voordoen +Low\ memory\ available,\ stability\ problems\ may\ occur=Weinig geheugen beschikbaar; er kunnen zich stabiliteitsproblemen voordoen #: Preferences.java:107 Marathi=Marathi @@ -636,7 +639,7 @@ Marathi=Marathi Message=Boodschap #: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=De */ aan het einde van een /* opmerking */ ontbreekt #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Meer voorkeuren kunnen rechtstreeks in het bestand worden bewerkt @@ -648,88 +651,88 @@ Moving=Bezig met verplaatsen Name\ for\ new\ file\:=Naam voor het nieuwe bestand\: #: ../../../processing/app/Preferences.java:149 -!Nepali= +Nepali=Nepalees #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 -!Network\ upload\ using\ programmer\ not\ supported= +Network\ upload\ using\ programmer\ not\ supported=Netwerk-upload met de programmer wordt niet ondersteund #: EditorToolbar.java:41 Editor.java:493 New=Nieuw #: EditorToolbar.java:46 -New\ Editor\ Window=Nieuw Venster +New\ Editor\ Window=Nieuw bewerkingsvenster #: EditorHeader.java:292 New\ Tab=Nieuw tabblad #: SerialMonitor.java:112 -Newline=Nieuwe Regel +Newline=Nieuwe regel #: EditorHeader.java:340 -Next\ Tab=Volgend tabblad +Next\ Tab=Volgende tabblad #: Preferences.java:78 UpdateCheck.java:108 No=Nee #: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Geen board geselecteerd; kies een board in het Werktuigen > Board menu. +No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Geen board geselecteerd; kies een board in het menu Hulpmiddelen > Board #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Geen aanpassingen noodzakelijk voor automatische opmaak. #: Editor.java:373 -No\ files\ were\ added\ to\ the\ sketch.=Er zijn geen nieuw bestanden toegevoegd aan de schets. +No\ files\ were\ added\ to\ the\ sketch.=Er zijn geen nieuw bestanden aan de schets toegevoegd. #: Platform.java:167 No\ launcher\ available=Geen launcher beschikbaar #: SerialMonitor.java:112 -No\ line\ ending=Doorlopende regel +No\ line\ ending=Geen regeleinde #: Base.java:541 -No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Nee, echt, tijd voor een beetje frisse lucht. +No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Nee, echt, even tijd voor een beetje frisse lucht. #: Editor.java:1872 #, java-format No\ reference\ available\ for\ "{0}"=Geen naslagwerk beschikbaar voor "{0}" #: ../../../processing/app/Base.java:309 -No\ valid\ configured\ cores\ found\!\ Exiting...=Geen geldige geconfigureerde kernen gevonden\! Opwindend... +No\ valid\ configured\ cores\ found\!\ Exiting...=Geen geldig geconfigureerde kernen gevonden\! Opwindend... #: ../../../processing/app/debug/TargetPackage.java:63 #, java-format -!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.= +No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=Geen geldige hardware-definities gevonden in map {0}. #: Base.java:191 -Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Niet-fatale fout bij het instellen van de Look & Feel +Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Niet-fatale fout bij het instellen van de 'Look & Feel'. #: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859 Nope=Neen #: ../../../processing/app/Preferences.java:108 -!Norwegian\ Bokm\u00e5l= +Norwegian\ Bokm\u00e5l=Noors Bokm\u00e5l #: ../../../processing/app/Sketch.java:1656 -Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=Niet genoeg geheugen\: ga naar http\://www.arduino.cc/en/Guide/Troubleshooting\#size voor tips over het verkleinen van de voetafdruk. +Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=Niet genoeg geheugen\: ga naar http\://www.arduino.cc/en/Guide/Troubleshooting\#size voor tips over het verkleinen van uw voetafdruk. #: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2145 Editor.java:2465 OK=OK #: Sketch.java:992 Editor.java:376 -One\ file\ added\ to\ the\ sketch.=Een bestand werd toegevoegd aan de schets. +One\ file\ added\ to\ the\ sketch.=Er is een bestand toegevoegd aan de schets. #: EditorToolbar.java:41 -Open=Open +Open=Openen #: Editor.java:2688 -Open\ URL=Open URL +Open\ URL=URL openen #: Base.java:636 -Open\ an\ Arduino\ sketch...=Open een Arduino schets +Open\ an\ Arduino\ sketch...=Een Arduino-schets openen #: EditorToolbar.java:46 -Open\ in\ Another\ Window=Open in een Ander Venster +Open\ in\ Another\ Window=In een ander venster openen #: Base.java:903 Editor.java:501 Open...=Openen... @@ -747,7 +750,7 @@ Paste=Plakken Persian=Perzisch #: debug/Compiler.java:408 -Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Gelieve de SPI bibliotheek te importeren via het Schets -> Importeer bibliotheek menu. +Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Gelieve de SPI-bibliotheek te importeren via het menu Schets -> Bibliotheek importeren. #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=Gelieve JDK 1.5 of later te installeren @@ -774,13 +777,13 @@ Preferences=Voorkeuren Previous=Vorige #: EditorHeader.java:326 -Previous\ Tab=Vorig tabblad +Previous\ Tab=Vorige tabblad #: Editor.java:571 Print=Afdrukken #: Editor.java:2571 -Printing\ canceled.=Afdrukken werd geannuleerd. +Printing\ canceled.=Afdrukken is geannuleerd. #: Editor.java:2547 Printing...=Afdrukken... @@ -795,17 +798,17 @@ Problem\ Opening\ URL=Probleem met het openen van de URL Problem\ Setting\ the\ Platform=Probleem met het instellen van het platform. #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 -!Problem\ accessing\ board\ folder\ /www/sd= +Problem\ accessing\ board\ folder\ /www/sd=Probleem met het openen van de board-map /www/sd #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 -Problem\ accessing\ files\ in\ folder\ =Probleem met het ophalen van bestanden uit de map +Problem\ accessing\ files\ in\ folder\ =Probleem met het openen van bestanden in de map #: Base.java:1673 -Problem\ getting\ data\ folder=Probleem met het ophalen van de data map. +Problem\ getting\ data\ folder=Probleem met het openen van de data-map. #: Sketch.java:1467 #, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder=Er is een probleem opgetreden tijdens het verplaatsen van {0} naar de build folder +Problem\ moving\ {0}\ to\ the\ build\ folder=Er is een probleem opgetreden bij het verplaatsen van {0} naar de build-map #: debug/Uploader.java:209 Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Probleem bij het uploaden naar het board. Zie http\://www.arduino.cc/en/Guide/Troubleshooting\#upload voor suggesties. @@ -813,20 +816,17 @@ Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troublesh #: Sketch.java:355 Sketch.java:362 Sketch.java:373 Problem\ with\ rename=Probleem bij het hernoemen -#: Editor.java:2137 -Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Arduino kan enkel zijn eigen schetsen en andere \nbestanden eindigend op .ino of .pde openen. - #: ../../../processing/app/I18n.java:86 -!Processor= +Processor=Processor #: Editor.java:704 -Programmer=Programmeerapparaat +Programmer=Programmer #: Base.java:783 Editor.java:593 Quit=Afsluiten #: Editor.java:1138 Editor.java:1140 Editor.java:1390 -Redo=Herhalen +Redo=Opnieuw doen #: Editor.java:1078 Reference=Naslagwerk @@ -848,7 +848,7 @@ Replace\ All=Alle vervangen Replace\ the\ existing\ version\ of\ {0}?=De huidige versie van {0} vervangen? #: FindReplace.java:81 -Replace\ with\:=Vervang door\: +Replace\ with\:=Vervangen door\: #: Preferences.java:113 Romanian=Roemeens @@ -867,41 +867,41 @@ Save\ As...=Opslaan als... Save\ Canceled.=Opslaan geannuleerd. #: Editor.java:2467 -Save\ changes\ before\ export?=Wijzingen opslaan voor exporteren? +Save\ changes\ before\ export?=Wijzingen voor het exporteren opslaan? #: Editor.java:2020 #, java-format Save\ changes\ to\ "{0}"?\ \ =Gemaakte wijzigingen in "{0}" opslaan? #: Sketch.java:825 -Save\ sketch\ folder\ as...=Schets map opslaan als... +Save\ sketch\ folder\ as...=Schetsmap opslaan als... #: Editor.java:2270 Editor.java:2308 Saving...=Opslaan... #: Base.java:1909 -Select\ (or\ create\ new)\ folder\ for\ sketches...=Kies een map (of maak een nieuwe) voor schetsen... +Select\ (or\ create\ new)\ folder\ for\ sketches...=Een map voor schetsen kiezen (of aanmaken)... #: Editor.java:1198 Editor.java:2739 Select\ All=Alles selecteren #: Base.java:2636 -Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=Selecteer een zipfile of een map die de bibliotheek bevat die je wil toevoegen. +Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=Selecteer een zipfile of een map die de bibliotheek bevat die u wilt toevoegen. #: Sketch.java:975 -Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Selecteer een afbeelding of ander bestand om naar je schets te kopi\u00ebren. +Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Selecteer een afbeelding of ander data-bestand om naar uw schets te kopi\u00ebren. #: Preferences.java:330 -Select\ new\ sketchbook\ location=Kies een nieuwe schetsboek locatie\: +Select\ new\ sketchbook\ location=Kies een nieuwe schetsboeklocatie\: #: ../../../processing/app/debug/Compiler.java:146 -!Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).= +Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=Geselecteerde board is afhankelijk van '{0}' versie (niet ge\u00efnstalleerd). #: SerialMonitor.java:93 Send=Verzenden #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 -Serial\ Monitor=Seri\u00eble Monitor +Serial\ Monitor=Seri\u00eble monitor #: Serial.java:174 #, java-format @@ -913,23 +913,23 @@ Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ ma #: Serial.java:194 #, java-format -Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Seri\u00eble poort "{0}" werd niet gevonden. Heb je de correcte gekozen in het Werktuigen -> Seri\u00eble poort menu? +Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Seri\u00eble poort "{0}" is niet gevonden. Hebt u de juiste gekozen in het menu Hulpmiddelen > Poort? #: Editor.java:2343 #, java-format -Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Seriele poort {0} niet gevonden.\nOpnieuw uploaden met een andere seri\u00eble poort? +Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Seri\u00eble poort {0} is niet gevonden.\nProbeer de upload met een andere seri\u00eble poort. #: Base.java:1681 Settings\ issues=Problemen met de instellingen #: Editor.java:641 -Show\ Sketch\ Folder=Toon Schets folder +Show\ Sketch\ Folder=Schetsmap weergeven #: ../../../processing/app/EditorStatus.java:468 -Show\ verbose\ output\ during\ compilation=Toon uitgebreide uitvoer gedurende compilatie +Show\ verbose\ output\ during\ compilation=Tijdens de compilatie uitgebreide uitvoer weergeven #: Preferences.java:387 -Show\ verbose\ output\ during\:\ =Toon uitgebreide uitvoer gedurende\: +Show\ verbose\ output\ during\:\ =Uitgebreide uitvoer weergeven tijdens\: #: Editor.java:607 Sketch=Schets @@ -944,7 +944,7 @@ Sketch\ Does\ Not\ Exist=De schets bestaat niet Sketch\ is\ Read-Only=Schets is Alleen-Lezen #: Sketch.java:294 -Sketch\ is\ Untitled=Naamloze Schets +Sketch\ is\ Untitled=Schets zonder naam #: Sketch.java:720 Sketch\ is\ read-only=De schets is gemarkeerd als alleen-lezen @@ -954,7 +954,7 @@ Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ f #: ../../../processing/app/Sketch.java:1639 #, java-format -!Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.= +Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.=De schets gebruikt {0} bytes ({2}%%) programma-opslagruimte. Maximum is {1} bytes. #: Editor.java:510 Sketchbook=Schetsboek @@ -963,23 +963,23 @@ Sketchbook=Schetsboek Sketchbook\ folder\ disappeared=De map met schetsboeken is verdwenen #: Preferences.java:315 -Sketchbook\ location\:=Schetsboek locatie\: +Sketchbook\ location\:=Schetsboeklocatie\: #: ../../../processing/app/Base.java:785 -!Sketches\ (*.ino,\ *.pde)= +Sketches\ (*.ino,\ *.pde)=Schetsen (*.ino, *.pde) #: ../../../processing/app/Preferences.java:152 -!Slovenian= +Slovenian=Sloveens #: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967 -Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Een aantal bestanden zijn "Alleen-lezen" gemarkeerd, dus je zal\nde schets opnieuw moeten opslaan op een andere locatie,\nen opnieuw proberen. +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Een aantal bestanden is gemarkeerd als "alleen-lezen". \nU moet de schets dus op een andere locatie opslaan. #: Sketch.java:721 -Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=Sommige bestanden zijn als "alleen-lezen" aangeduid,\ndus deze schets moet op een andere locatie worden opgeslagen. +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=Sommige bestanden zijn gemarkeerd als "alleen-lezen" .\nU moet de schets dus op een andere locatie opslaan. #: Sketch.java:457 #, java-format -Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Sorry, er bestaat al een schets (of folder) genaamd "{0}". +Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Sorry, er bestaat al een schets (of map) met de naam "{0}". #: Preferences.java:115 Spanish=Spaans @@ -991,58 +991,58 @@ Sunshine=Zonneschijn Swedish=Zweeds #: Preferences.java:84 -System\ Default=Standaardinstellingen +System\ Default=Systeemstandaard #: Preferences.java:116 Tamil=Tamil #: debug/Compiler.java:414 -The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=De term 'BYTE' is niet langer ondersteund. +The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=De term 'BYTE' wordt niet langer ondersteund. #: debug/Compiler.java:426 -The\ Client\ class\ has\ been\ renamed\ EthernetClient.=De Client klasse is hernoemd tot EthernetClient +The\ Client\ class\ has\ been\ renamed\ EthernetClient.=De Client-klasse is hernoemd naar EthernetClient #: debug/Compiler.java:420 -The\ Server\ class\ has\ been\ renamed\ EthernetServer.=De Server klasse is hernoemd tot EthernetServer +The\ Server\ class\ has\ been\ renamed\ EthernetServer.=De Server-klasse is hernoemd naar EthernetServer #: debug/Compiler.java:432 -The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=De Udp klasse is hernoemd tot EthernetUdp +The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=De Udp-klasse is hernoemd naar EthernetUdp #: Base.java:192 -The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=De foutboodschap volgt, Arduino zou echter zonder problemen moeten draaien. +The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=De foutmelding volgt. Overigens moet Arduino zonder problemen draaien. #: Editor.java:2147 #, java-format -The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=Het bestand {0} moet zich\n in een map genaamd "{1}" bevinden.\nMoet de map gecre\u00eberd en het bestand verplaats worden om door te gaan? +The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=Het bestand {0} moet zich in een\nschetsmap met de naam "{1}" bevinden.\nDeze map aanmaken, het bestand verplaatsen en doorgaan? #: Base.java:1054 Base.java:2674 #, java-format -The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=De bibliotheek "{0}" kan niet worden gebruikt.\nBibliotheeknamen mogen enkel eenvoudige letters en cijfers bevatten.\n(Enkel ASCII en geen spaties, en de naam mag niet met een cijfer beginnen) +The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=Bibliotheek "{0}" kan niet worden gebruikt.\nBibliotheeknamen mogen alleen eenvoudige letters en cijfers bevatten.\n(Alleen ASCII en geen spaties en een naam mag niet met een cijfer beginnen) #: Sketch.java:374 The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=Het hoofdbestand mag geen extensie gebruiken.\n(Het is misschien tijd om over te stappen op een\n"echte" programmeeromgeving) #: Sketch.java:356 -The\ name\ cannot\ start\ with\ a\ period.=De naam kan niet met een punt beginnen. +The\ name\ cannot\ start\ with\ a\ period.=De naam mag niet met een punt beginnen. #: Base.java:1412 -The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=De geselecteerde schets bestaat niet meer.\nMisschien moet je Arduino herstarten om het\nschetsboek menu bij te werken. +The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=De geselecteerde schets bestaat niet meer.\nU moet Arduino opnieuw starten om het\nschetsboek-menu bij te werken. #: Base.java:1430 #, java-format -The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=De schets "{0}" kan niet worden gebruikt.\nDe namen van schetsen mogen enkel eenvoudige letters en cijfers bevatten.\n(Enkel ASCII zonder spaties, en het mag niet met een cijfer beginnen).\nVermijd deze boodschap door de schets te verwijderen uit \n{1} +The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=Schets "{0}" kan niet worden gebruikt.\nDe namen van schetsen mogen alleen eenvoudige letters en cijfers bevatten.\n(Alleen ASCII en geen spaties en een naam mag niet met een cijfer beginnen).\nVermijd deze boodschap door de schets te verwijderen uit \n{1} #: Sketch.java:1755 -The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=De map met schetsen is verdwenen.\nZal proberen opnieuw op dezelfde locatie op te slaan,\nmaar alles behalve de code zal verloren zijn. +The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=De map met schetsen is verdwenen.\nEr wordt geprobeerd opnieuw op dezelfde locatie op te slaan,\nmaar alles behalve de code zal verloren zijn. #: Sketch.java:2018 The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=De naam van de schets moest veranderd worden. Namen van schetsen kunnen enkel bestaan\nuit ASCII karakters en cijfers (maar ze mogen niet met een cijfer beginnen).\nZe moeten ook minder dan 64 karakters lang zijn. #: Base.java:259 -The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=De map met schetsboeken bestaat niet meer.\nArduino zal overschakelen op de standaard schetsboek\nlocatie, en een nieuwe map met schetsboeken aanmaken\nindien nodig. Arduino zal daarna ophouden over zichzelf te\npraten in de derde persoon. +The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=De schetsboekmap bestaat niet meer.\nArduino zal overschakelen naar de standaard schetsboeklocatie,\nen, indien nodig, een nieuwe schetsboekmap aanmaken.\nArduino zal daarna ophouden over zichzelf te\npraten in de derde persoon. #: Sketch.java:1075 -This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Dit bestand is reeds gekopie\u00ebrd naar de locatie\nwaar je het aan probeert toe te voegen.\nIk doe lekker niets. +This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Dit bestand is al gekopieerd naar de locatie\nvanwaar u het probeert toe te voegen.\nIk doe niets onzinnigs\!. #: ../../../processing/app/EditorStatus.java:467 This\ report\ would\ have\ more\ information\ with=Dit rapport zou meer informatie hebben met @@ -1051,7 +1051,7 @@ This\ report\ would\ have\ more\ information\ with=Dit rapport zou meer informat Time\ for\ a\ Break=Tijd voor een pauze #: Editor.java:663 -Tools=Werktuigen +Tools=Hulpmiddelen #: Editor.java:1070 Troubleshooting=Problemen oplossen @@ -1060,26 +1060,26 @@ Troubleshooting=Problemen oplossen Turkish=Turks #: ../../../processing/app/Editor.java:2507 -!Type\ board\ password\ to\ access\ its\ console= +Type\ board\ password\ to\ access\ its\ console=Type het wachtwoord van het board in voor toegang tot het console #: ../../../processing/app/Sketch.java:1673 -!Type\ board\ password\ to\ upload\ a\ new\ sketch= +Type\ board\ password\ to\ upload\ a\ new\ sketch=Type het wachtwoord van het board in om een nieuwe schets te uploaden #: ../../../processing/app/Preferences.java:118 Ukrainian=Oekra\u00efens #: ../../../processing/app/Editor.java:2524 #: ../../../processing/app/NetworkMonitor.java:145 -!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?= +Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=Geen verbinding\: gebruikt de schets de bridge? #: ../../../processing/app/NetworkMonitor.java:130 -!Unable\ to\ connect\:\ retrying= +Unable\ to\ connect\:\ retrying=Niet verbonden\: nieuwe poging #: ../../../processing/app/Editor.java:2526 -Unable\ to\ connect\:\ wrong\ password?=Kan niet verbinden\: verkeerde wachtwoord? +Unable\ to\ connect\:\ wrong\ password?=Geen verbinding\: verkeerde wachtwoord? #: ../../../processing/app/Editor.java:2512 -!Unable\ to\ open\ serial\ monitor= +Unable\ to\ open\ serial\ monitor=De seri\u00eble monitor kan niet geopend worden #: Sketch.java:1432 #, java-format @@ -1089,57 +1089,57 @@ Uncaught\ exception\ type\:\ {0}=Niet opgevangen exception type\: {0} Undo=Ongedaan maken #: Platform.java:168 -Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Platform niet gespecifieerd, geen launcher beschikbaar.\nOm het openen van URLs of mappen mogelijk te maken, voeg\neen lijn\: "launcher\=/pad/naar/app" toe aan preferences.txt +Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Onbekend platform, geen launcher beschikbaar.\nOm het openen van URLs of mappen mogelijk te maken\:\nvoeg een regel "launcher\=/pad/naar/app" toe aan preferences.txt #: UpdateCheck.java:111 -Update=Update +Update=Updaten #: Preferences.java:428 -Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Bij opslaan de schets bestanden updaten naar de nieuwe extensie (.pde -> .ino) +Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Bij het opslaan de schetsbestanden aanpassen aan de nieuwe extensie (.pde -> .ino) #: EditorToolbar.java:41 Editor.java:545 Upload=Uploaden #: EditorToolbar.java:46 Editor.java:553 -Upload\ Using\ Programmer=Uploaden met Programmer +Upload\ Using\ Programmer=Uploaden met programmer #: Editor.java:2403 Editor.java:2439 Upload\ canceled.=Uploaden geannuleerd. #: ../../../processing/app/Sketch.java:1678 -Upload\ cancelled=Upload geannuleerd +Upload\ cancelled=Uploaden geannuleerd #: Editor.java:2378 -Uploading\ to\ I/O\ Board...=Bezig met uploaden naar I/O Board... +Uploading\ to\ I/O\ Board...=Bezig met uploaden naar I/O-board... #: Sketch.java:1622 Uploading...=Bezig met uploaden... #: Editor.java:1269 -Use\ Selection\ For\ Find=Gebruik selectie voor zoekactie +Use\ Selection\ For\ Find=Selectie gebruiken voor zoekactie #: Preferences.java:409 -Use\ external\ editor=Gebruik externe editor +Use\ external\ editor=Externe editor gebruiken #: ../../../processing/app/debug/Compiler.java:94 #, java-format -!Using\ library\ {0}\ in\ folder\:\ {1}\ {2}= +Using\ library\ {0}\ in\ folder\:\ {1}\ {2}=Bibliotheek {0} in map\: {1} {2} wordt gebruikt #: ../../../processing/app/debug/Compiler.java:320 #, java-format -!Using\ previously\ compiled\ file\:\ {0}= +Using\ previously\ compiled\ file\:\ {0}=Vorige gecompileerde bestand {0} wordt gebruikt. #: EditorToolbar.java:41 EditorToolbar.java:46 -Verify=Verifieer +Verify=Verifi\u00ebren #: Editor.java:609 -Verify\ /\ Compile=Verifieer / Compileer +Verify\ /\ Compile=Verifi\u00ebren / Compileren #: Preferences.java:400 -Verify\ code\ after\ upload=Verifieer code na uploaden +Verify\ code\ after\ upload=Code na uploaden verifi\u00ebren #: ../../../processing/app/Preferences.java:154 -!Vietnamese= +Vietnamese=Vietnamees #: Editor.java:1105 Visit\ Arduino.cc=Bezoek Arduino.cc @@ -1148,49 +1148,49 @@ Visit\ Arduino.cc=Bezoek Arduino.cc Warning=Waarschuwing #: debug/Compiler.java:444 -Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() is hernoemd tot Wire.read(). +Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() is hernoemd naar Wire.read(). #: debug/Compiler.java:438 -Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() is hernoemd tot Wire.write(). +Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() is hernoemd naar Wire.write(). #: FindReplace.java:105 Wrap\ Around=Automatische terugloop #: debug/Uploader.java:213 -Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=Verkeerde microcontroller gevonden. Heb je het correcte board geselecteerd uit het Werktuigen -> Board menu? +Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=Verkeerde microcontroller gevonden. Hebt u het correcte board geselecteerd in het menu Hulpmiddelen > Board? #: Preferences.java:77 UpdateCheck.java:108 Yes=Ja #: Sketch.java:1074 -You\ can't\ fool\ me=Je kan me niet belazeren +You\ can't\ fool\ me=Je kunt me niet belazeren #: Sketch.java:411 -You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Je kan geen .cpp bestand hebben met dezelfde naam als de schets +You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=U mag geen .cpp-bestand hebben met dezelfde naam als de schets. #: Sketch.java:421 -You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=De schets kan niet worden hernoemd naar "{0}"\nomdat de schets al een .ccp bestand bevat met dezelfde naam. +You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=De schets kan niet hernoemd worden naar "{0}",\nomdat de schets al een .ccp-bestand met deze naam bevat. #: Sketch.java:861 -You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=De schets kan niet worden opgeslagen als "{0}"\nomdat de schets al een .ccp bestand bevat met dezelfde naam. +You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=De schets kan niet worden opgeslagen als "{0}"\nomdat de schets al een .ccp-bestand met deze naam bevat. #: Sketch.java:883 -You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Je kan geen schets opslaan in een folder\nbinnen zichzelf. Dit zou eindeloos doorgaan. +You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=U kunt een schets niet opslaan in een map\nbinnen zichzelf. Dit zou eindeloos doorgaan. #: Base.java:1888 -You\ forgot\ your\ sketchbook=Je bent je schetsboek vergeten +You\ forgot\ your\ sketchbook=U vergeet uw schetsboek #: ../../../processing/app/AbstractMonitor.java:92 -!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?= +You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=U hebt {0} ingedrukt, maar er is niets verstuurd. Moet u een regeleinde toevoegen? #: Base.java:536 -You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Je hebt de limiet bereikt voor het automatisch benoemen van schetsen\nvoor vandaag. Misschien moet je maar eens een wandelingetje maken? +You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=U hebt voor vandaag de limiet bereikt voor het automatisch\nbenoemen van nieuwe schetsen. #: Base.java:2638 -ZIP\ files\ or\ folders=ZIP bestanden of mappen +ZIP\ files\ or\ folders=ZIP-bestanden of -mappen #: Base.java:2661 -Zip\ doesn't\ contain\ a\ library=De zipfile bevat geen bibliotheek +Zip\ doesn't\ contain\ a\ library=Het Zip-bestand bevat geen bibliotheek #: Sketch.java:364 #, java-format @@ -1198,28 +1198,28 @@ Zip\ doesn't\ contain\ a\ library=De zipfile bevat geen bibliotheek #: SketchCode.java:258 #, java-format -"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" bevat onherkenbare karakters. Indien deze code met een oudere versie van Arduino is aangemaakt, moet je misschien Extra -> Fix Encoding & Reload gebruiken om de schets UTF-8 te laten gebruiken. Indien niet, wis dan de verkeerde karakters om deze waarschuwing te vermijden. +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 -\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nSinds Arduino 0019 is de Ethernet bibliotheek afhankelijk van de SPI bibliotheek.\nHet lijkt alsof je deze gebruikt of een andere bibliotheek die afhankelijk is van de SPI bibliotheek.\n\n +\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nVanaf Arduino 0019 is de Ethernet-bibliotheek afhankelijk van de SPI-bibliotheek.\nHet lijkt alsof u deze gebruikt of een andere bibliotheek die afhankelijk is van de SPI-bibliotheek.\n\n #: debug/Compiler.java:415 -\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nVanaf Arduino 1.0 wordt het 'BYTE' keyword niet langer ondersteund.\nGelieve Serial.write() te gebruiken.\n\n +\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nVanaf Arduino 1.0 wordt de term 'BYTE' niet langer ondersteund.\nGebruik in plaats daarvan Serial.write().\n\n #: debug/Compiler.java:427 -\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nSinds Arduino 1.0 is de Client klasse in de Ethernet bibliotheek hernoemd tot EthernetClient\n\n +\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nVanaf Arduino 1.0 is de Client-klasse in de Ethernet-bibliotheek hernoemd naar EthernetClient\n\n #: debug/Compiler.java:421 -\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nSinds Arduino 1.0 is de Server klasse in de Ethernet bibliotheek hernoemd tot EthernetServer.\n\n +\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nVanaf Arduino 1.0 is de Server-klasse in de Ethernet-bibliotheek hernoemd naar EthernetServer.\n\n #: debug/Compiler.java:433 -\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=\nSinds Arduino 1.0 is de Udp klasse in de Ethernet bibliotheek hernoemd tot EthernetUdp\n +\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=\nVanaf Arduino 1.0 is de Udp-klasse in de Ethernet-bibliotheek hernoemd naar EthernetUdp\n #: debug/Compiler.java:445 -\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nSinds Arduino 1.0 is de Wire.receive() functie hernoemd tot Wire.read() voor consistentie met andere bibliotheken.\n\n +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nVanaf Arduino 1.0 is de Wire.receive() functie hernoemd naar Wire.read() voor consistentie met andere bibliotheken.\n\n #: debug/Compiler.java:439 -\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nSinds Arduino 1.0 is de Wire.send() functie hernoemd tot Wire.write() voor consistentie met andere bibliotheken.\n\n +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nVanaf Arduino 1.0 is de Wire.send() functie hernoemd naar Wire.write() voor consistentie met andere bibliotheken.\n\n #: SerialMonitor.java:130 SerialMonitor.java:133 baud=baud @@ -1231,13 +1231,13 @@ compilation\ =compilatie connected\!=verbonden\! #: Sketch.java:540 -createNewFile()\ returned\ false=createNewFile() heeft false teruggegeven +createNewFile()\ returned\ false=createNewFile() heeft false geantwoord #: ../../../processing/app/EditorStatus.java:469 enabled\ in\ File\ >\ Preferences.=ingeschakeld in Bestand > Voorkeuren. #: Base.java:2090 -environment=environment +environment=omgeving #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ @@ -1256,30 +1256,30 @@ http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playgrou #: Preferences.java:625 #, java-format -ignoring\ invalid\ font\ size\ {0}=Ongeldige lettertypegrootte wordt genegeerd {0} +ignoring\ invalid\ font\ size\ {0}=Ongeldige lettertypegrootte {0} wordt genegeerd #: Base.java:2080 index.html=index.html #: Editor.java:936 Editor.java:943 -name\ is\ null=naam is null +name\ is\ null=naam is leeg #: Base.java:2090 platforms.html=platforms.html #: Serial.java:451 #, java-format -readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() byte buffer is te klein voor de {0} bytes tot en met karakter {1} +readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() byte buffer is te klein voor de {0} bytes tot en met teken {1} #: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: interne fout. Kon de code niet vinden +removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: interne fout.. geen code gevonden #: Editor.java:932 -serialMenu\ is\ null=serialMenu is null +serialMenu\ is\ null=serialMenu is leeg #: debug/Uploader.java:195 #, java-format -the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=de geselecteerde seri\u00eble poort {0} bestaat niet of je board is niet aangesloten. +the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=de geselecteerde seri\u00eble poort {0} bestaat niet of uw board is niet aangesloten. #: Preferences.java:391 upload=uploaden @@ -1290,7 +1290,7 @@ upload=uploaden #: debug/Compiler.java:365 #, java-format -{0}\ returned\ {1}={0} gaf {1} terug +{0}\ returned\ {1}={0} antwoordde {1} #: Editor.java:2213 #, java-format diff --git a/arduino-core/src/processing/app/i18n/Resources_nl_NL.po b/arduino-core/src/processing/app/i18n/Resources_nl_NL.po index 7c55b2e1c..3f1385524 100644 --- a/arduino-core/src/processing/app/i18n/Resources_nl_NL.po +++ b/arduino-core/src/processing/app/i18n/Resources_nl_NL.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/arduino-ide-15/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -138,6 +138,12 @@ msgstr "" msgid "Arduino AVR Boards" msgstr "" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -1139,12 +1145,6 @@ msgstr "" msgid "Problem with rename" msgstr "" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "" @@ -1712,9 +1712,9 @@ msgstr "" #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." msgstr "" #: debug/Compiler.java:409 diff --git a/arduino-core/src/processing/app/i18n/Resources_nl_NL.properties b/arduino-core/src/processing/app/i18n/Resources_nl_NL.properties index 7475f5c30..2f5f79cee 100644 --- a/arduino-core/src/processing/app/i18n/Resources_nl_NL.properties +++ b/arduino-core/src/processing/app/i18n/Resources_nl_NL.properties @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Dutch (Netherlands) (http\://www.transifex.com/projects/p/arduino-ide-15/language/nl_NL/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: nl_NL\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Dutch (Netherlands) (http\://www.transifex.com/projects/p/arduino-ide-15/language/nl_NL/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: nl_NL\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 !\ \ (requires\ restart\ of\ Arduino)= @@ -83,6 +83,9 @@ Aragonese=Aragonees #: ../../../processing/app/I18n.java:82 !Arduino\ AVR\ Boards= +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino kan niet werken omdat er geen map voor je instellingen kon worden aangemaakt. @@ -811,9 +814,6 @@ Problem\ getting\ data\ folder=Probleem bij het verkrijgen van de data-map #: Sketch.java:355 Sketch.java:362 Sketch.java:373 !Problem\ with\ rename= -#: Editor.java:2137 -!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= - #: ../../../processing/app/I18n.java:86 !Processor= diff --git a/arduino-core/src/processing/app/i18n/Resources_pl.po b/arduino-core/src/processing/app/i18n/Resources_pl.po index ae2c0240b..81391c4be 100644 --- a/arduino-core/src/processing/app/i18n/Resources_pl.po +++ b/arduino-core/src/processing/app/i18n/Resources_pl.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Polish (http://www.transifex.com/projects/p/arduino-ide-15/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -138,6 +138,12 @@ msgstr "Arduino ARM (32-bit) Płyty" msgid "Arduino AVR Boards" msgstr "Arduino AVR Płyty" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -436,7 +442,7 @@ msgstr "Nie można ponownie zapisać szkicu" msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "Nie można odczytać ustawień tematu kolorów.\nMusisz przeinstalować Procesowanie." +msgstr "" #: Preferences.java:219 msgid "" @@ -901,7 +907,7 @@ msgstr "Wiadomości" #: ../../../processing/app/preproc/PdePreprocessor.java:412 msgid "Missing the */ from the end of a /* comment */" -msgstr "" +msgstr "Brak */ na końcu lini /* komentarz */" #: Preferences.java:449 msgid "More preferences can be edited directly in the file" @@ -1139,12 +1145,6 @@ msgstr "Problem z wgrywaniem na płyte. Sprawdź http://www.arduino.cc/en/Guide/ msgid "Problem with rename" msgstr "Problem z zmianą nazwy" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "Procesowanie może otwierać tylko własne szkice\ni inne pliki kończące się na .ino lub .pde" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "Procesor" @@ -1712,10 +1712,10 @@ msgstr "\".{0}\" nie jest poprawnym rozszerzeniem." #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." -msgstr "\"{0}\" zawiera nierozpoznany symbol. Jeśli kod był stworzony w starszej wersji programu, musisz użyć Narzędzia > Napraw kodowanie i Wgraj ponownie w celu aktualizacji szkicu do kodowania UTF-8. Jeśli nie, musisz usunąć zły symbol żeby pozbyć się ostrzeżenia. " +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." +msgstr "" #: debug/Compiler.java:409 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_pl.properties b/arduino-core/src/processing/app/i18n/Resources_pl.properties index d03aaa29b..6c7502128 100644 --- a/arduino-core/src/processing/app/i18n/Resources_pl.properties +++ b/arduino-core/src/processing/app/i18n/Resources_pl.properties @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # Maciej Wojnicki, Maciej W\u00f3jciga <>, 2012. # -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Polish (http\://www.transifex.com/projects/p/arduino-ide-15/language/pl/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: pl\nPlural-Forms\: nplurals\=3; plural\=(n\=\=1 ? 0 \: n%10>\=2 && n%10<\=4 && (n%100<10 || n%100>\=20) ? 1 \: 2);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Polish (http\://www.transifex.com/projects/p/arduino-ide-15/language/pl/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: pl\nPlural-Forms\: nplurals\=3; plural\=(n\=\=1 ? 0 \: n%10>\=2 && n%10<\=4 && (n%100<10 || n%100>\=20) ? 1 \: 2);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(wymagany restart Arduino) @@ -83,6 +83,9 @@ Arduino\ ARM\ (32-bits)\ Boards=Arduino ARM (32-bit) P\u0142yty #: ../../../processing/app/I18n.java:82 Arduino\ AVR\ Boards=Arduino AVR P\u0142yty +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino nie mo\u017ce wystartowa\u0107 poniewa\u017c nie mo\u017cna\nutworzy\u0107 folderu do zapisu twoich ustawie\u0144. @@ -297,7 +300,7 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=Nie mo\u017cna ponownie zapisa\u0107 szkicu #: Theme.java:52 -Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Nie mo\u017cna odczyta\u0107 ustawie\u0144 tematu kolor\u00f3w.\nMusisz przeinstalowa\u0107 Procesowanie. +!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Nie mo\u017cna odczyta\u0107 domy\u015blnych ustawie\u0144.\nMusisz przeinstalowa\u0107 Arduino. @@ -634,7 +637,7 @@ Marathi=Marathi Message=Wiadomo\u015bci #: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Brak */ na ko\u0144cu lini /* komentarz */ #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Wi\u0119cej preferencji mo\u017ce by\u0107 edytowanych bezpo\u015brednio w pliku @@ -811,9 +814,6 @@ Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troublesh #: Sketch.java:355 Sketch.java:362 Sketch.java:373 Problem\ with\ rename=Problem z zmian\u0105 nazwy -#: Editor.java:2137 -Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Procesowanie mo\u017ce otwiera\u0107 tylko w\u0142asne szkice\ni inne pliki ko\u0144cz\u0105ce si\u0119 na .ino lub .pde - #: ../../../processing/app/I18n.java:86 Processor=Procesor @@ -1196,7 +1196,7 @@ Zip\ doesn't\ contain\ a\ library=ZIP nie zawiera biblioteki #: SketchCode.java:258 #, java-format -"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" zawiera nierozpoznany symbol. Je\u015bli kod by\u0142 stworzony w starszej wersji programu, musisz u\u017cy\u0107 Narz\u0119dzia > Napraw kodowanie i Wgraj ponownie w celu aktualizacji szkicu do kodowania UTF-8. Je\u015bli nie, musisz usun\u0105\u0107 z\u0142y symbol \u017ceby pozby\u0107 si\u0119 ostrze\u017cenia. +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 \nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nOd 0019 Arduino biblioteka Ethernet-owa zale\u017cy od biblioteki SPI .\nWydaje si\u0119 \u017ce jej u\u017cywasz lub u\u017cywasz innej biblioteki zale\u017cnej od SPI.\n\n diff --git a/arduino-core/src/processing/app/i18n/Resources_pt.po b/arduino-core/src/processing/app/i18n/Resources_pt.po index 25f3ecd79..a19175e86 100644 --- a/arduino-core/src/processing/app/i18n/Resources_pt.po +++ b/arduino-core/src/processing/app/i18n/Resources_pt.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Portuguese (http://www.transifex.com/projects/p/arduino-ide-15/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -138,6 +138,12 @@ msgstr "" msgid "Arduino AVR Boards" msgstr "" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -1139,12 +1145,6 @@ msgstr "" msgid "Problem with rename" msgstr "" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "" @@ -1712,9 +1712,9 @@ msgstr "" #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." msgstr "" #: debug/Compiler.java:409 diff --git a/arduino-core/src/processing/app/i18n/Resources_pt.properties b/arduino-core/src/processing/app/i18n/Resources_pt.properties index 7e4c41c21..e22e62bd7 100644 --- a/arduino-core/src/processing/app/i18n/Resources_pt.properties +++ b/arduino-core/src/processing/app/i18n/Resources_pt.properties @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Portuguese (http\://www.transifex.com/projects/p/arduino-ide-15/language/pt/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: pt\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Portuguese (http\://www.transifex.com/projects/p/arduino-ide-15/language/pt/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: pt\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 !\ \ (requires\ restart\ of\ Arduino)= @@ -83,6 +83,9 @@ #: ../../../processing/app/I18n.java:82 !Arduino\ AVR\ Boards= +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 !Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.= @@ -811,9 +814,6 @@ #: Sketch.java:355 Sketch.java:362 Sketch.java:373 !Problem\ with\ rename= -#: Editor.java:2137 -!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= - #: ../../../processing/app/I18n.java:86 !Processor= diff --git a/arduino-core/src/processing/app/i18n/Resources_pt_BR.po b/arduino-core/src/processing/app/i18n/Resources_pt_BR.po index f4b8a12f5..69da36c83 100644 --- a/arduino-core/src/processing/app/i18n/Resources_pt_BR.po +++ b/arduino-core/src/processing/app/i18n/Resources_pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/arduino-ide-15/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -48,7 +48,7 @@ msgid "" " Are you " "sure you want to Quit?

    Closing the last open sketch will quit Arduino." -msgstr "Fechar o último sketch finalizará o Arduino." +msgstr " \nTem certeza de que deseja sair?

    Fechar o último sketck aberto finalizará o Arduino." #: Editor.java:2053 msgid "" @@ -91,7 +91,7 @@ msgstr "Sobre Arduino" #: Editor.java:650 msgid "Add File..." -msgstr "Adicionar arquivo..." +msgstr "Adicionar Arquivo..." #: Base.java:963 msgid "Add Library..." @@ -120,7 +120,7 @@ msgstr "Aragonês" #: tools/Archiver.java:48 msgid "Archive Sketch" -msgstr "Arquivar sketch" +msgstr "Arquivar Sketch" #: tools/Archiver.java:109 msgid "Archive sketch as:" @@ -144,6 +144,12 @@ msgstr "Placas Arduino ARM (32-bits)" msgid "Arduino AVR Boards" msgstr "Placas Arduino AVR" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -442,7 +448,7 @@ msgstr "Não foi possível salvar novamente o sketch" msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "Não foi possível ler as configurações do esquema de cores.\nVocê terá que reinstalar o Arduino." +msgstr "" #: Preferences.java:219 msgid "" @@ -907,7 +913,7 @@ msgstr "Mensagem" #: ../../../processing/app/preproc/PdePreprocessor.java:412 msgid "Missing the */ from the end of a /* comment */" -msgstr "" +msgstr "Falta o */ do final de um /* comentário */" #: Preferences.java:449 msgid "More preferences can be edited directly in the file" @@ -1056,7 +1062,7 @@ msgstr "Persa" #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." -msgstr "Por favor, importe a biblioteca SPI a partir do menu Sketch > Importar biblioteca." +msgstr "Favor importar a biblioteca SPI a partir do menu Sketch > Importar biblioteca." #: Base.java:239 msgid "Please install JDK 1.5 or later" @@ -1145,12 +1151,6 @@ msgstr "Problema ao carregar para a placa. Veja http://www.arduino.cc/en/Guide/T msgid "Problem with rename" msgstr "Problema ao renomear" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "O processamento só pode abrir seus próprios sketches\ne outros arquivos terminados em .ino ou .pde" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "Processador" @@ -1718,10 +1718,10 @@ msgstr "\".{0}\" não é uma extensão válida." #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." -msgstr "\"{0}\" contem caracteres não reconhecidos. Se este código foi criado usando uma versão antiga do Arduino, você pode usar o menu Ferramentas -> Corrigir codificação e recarregar para atualizar o sketch e usar a codificação UTF-8. Caso contrário, você terá que excluir os caracteres errados para não ver mais este aviso." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." +msgstr "" #: debug/Compiler.java:409 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_pt_BR.properties b/arduino-core/src/processing/app/i18n/Resources_pt_BR.properties index 8553b97e9..2f6103d55 100644 --- a/arduino-core/src/processing/app/i18n/Resources_pt_BR.properties +++ b/arduino-core/src/processing/app/i18n/Resources_pt_BR.properties @@ -8,7 +8,7 @@ # Hugo Lavalle , 2012. # Armando Neto , 2012. # Radam\u00e9s Ajna , 2012. -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Portuguese (Brazil) (http\://www.transifex.com/projects/p/arduino-ide-15/language/pt_BR/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: pt_BR\nPlural-Forms\: nplurals\=2; plural\=(n > 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Portuguese (Brazil) (http\://www.transifex.com/projects/p/arduino-ide-15/language/pt_BR/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: pt_BR\nPlural-Forms\: nplurals\=2; plural\=(n > 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(requer reinicializa\u00e7\u00e3o do Arduino) @@ -26,7 +26,7 @@ .pde\ ->\ .ino=.pde -> .ino #: Base.java:773 -\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

    Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.=Fechar o \u00faltimo sketch finalizar\u00e1 o Arduino. +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

    Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= \nTem certeza de que deseja sair?

    Fechar o \u00faltimo sketck aberto finalizar\u00e1 o Arduino. #: Editor.java:2053 \ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Do\ you\ want\ to\ save\ changes\ to\ this\ sketch
    \ before\ closing?

    If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= Voc\u00ea deseja salvar as altera\u00e7\u00f5es para este sketch
    antes de fechar?

    Se voc\u00ea n\u00e3o salvar, suas altera\u00e7\u00f5es ser\u00e3o perdidas. @@ -53,7 +53,7 @@ A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ About\ Arduino=Sobre Arduino #: Editor.java:650 -Add\ File...=Adicionar arquivo... +Add\ File...=Adicionar Arquivo... #: Base.java:963 Add\ Library...=Adicionar Biblioteca... @@ -71,7 +71,7 @@ Arabic=\u00c1rabe Aragonese=Aragon\u00eas #: tools/Archiver.java:48 -Archive\ Sketch=Arquivar sketch +Archive\ Sketch=Arquivar Sketch #: tools/Archiver.java:109 Archive\ sketch\ as\:=Arquivar sketch como\: @@ -88,6 +88,9 @@ Arduino\ ARM\ (32-bits)\ Boards=Placas Arduino ARM (32-bits) #: ../../../processing/app/I18n.java:82 Arduino\ AVR\ Boards=Placas Arduino AVR +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=O Arduino n\u00e3o pode rodar porque n\u00e3o consegue \\n criar uma pasta para armazenar as suas configura\u00e7\u00f5es. @@ -302,7 +305,7 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=N\u00e3o foi poss\u00edvel salvar novamente o sketch #: Theme.java:52 -Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=N\u00e3o foi poss\u00edvel ler as configura\u00e7\u00f5es do esquema de cores.\nVoc\u00ea ter\u00e1 que reinstalar o Arduino. +!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=N\u00e3o foi poss\u00edvel ler as configura\u00e7\u00f5es padr\u00e3o.\nVoc\u00ea ter\u00e1 que reinstalar o Arduino. @@ -639,7 +642,7 @@ Marathi=Marathi Message=Mensagem #: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Falta o */ do final de um /* coment\u00e1rio */ #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Mais prefer\u00eancias podem ser editadas diretamente no arquivo @@ -750,7 +753,7 @@ Paste=Colar Persian=Persa #: debug/Compiler.java:408 -Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Por favor, importe a biblioteca SPI a partir do menu Sketch > Importar biblioteca. +Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Favor importar a biblioteca SPI a partir do menu Sketch > Importar biblioteca. #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=Por favor, instale o JDK 1.5 ou superior. @@ -816,9 +819,6 @@ Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troublesh #: Sketch.java:355 Sketch.java:362 Sketch.java:373 Problem\ with\ rename=Problema ao renomear -#: Editor.java:2137 -Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=O processamento s\u00f3 pode abrir seus pr\u00f3prios sketches\ne outros arquivos terminados em .ino ou .pde - #: ../../../processing/app/I18n.java:86 Processor=Processador @@ -1201,7 +1201,7 @@ Zip\ doesn't\ contain\ a\ library=O arquivo zip n\u00e3o cont\u00e9m uma bibliot #: SketchCode.java:258 #, java-format -"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" contem caracteres n\u00e3o reconhecidos. Se este c\u00f3digo foi criado usando uma vers\u00e3o antiga do Arduino, voc\u00ea pode usar o menu Ferramentas -> Corrigir codifica\u00e7\u00e3o e recarregar para atualizar o sketch e usar a codifica\u00e7\u00e3o UTF-8. Caso contr\u00e1rio, voc\u00ea ter\u00e1 que excluir os caracteres errados para n\u00e3o ver mais este aviso. +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 \nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nComo o Arduino 0019, a biblioteca Ethernet depende da biblioteca SPI.\nParece que voc\u00ea j\u00e1 est\u00e1 usando ela ou outra biblioteca que depende da biblioteca SPI.\n\n diff --git a/arduino-core/src/processing/app/i18n/Resources_pt_PT.po b/arduino-core/src/processing/app/i18n/Resources_pt_PT.po index 7ef8b4430..e8d04f2d3 100644 --- a/arduino-core/src/processing/app/i18n/Resources_pt_PT.po +++ b/arduino-core/src/processing/app/i18n/Resources_pt_PT.po @@ -15,8 +15,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/arduino-ide-15/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -145,6 +145,12 @@ msgstr "Placas Arduino ARM (32-bits)" msgid "Arduino AVR Boards" msgstr "Placas Arduino AVR" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -228,7 +234,7 @@ msgstr "Ficheiro incorreto selecionado " #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" -msgstr "" +msgstr "Bielorrusso" #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 @@ -248,7 +254,7 @@ msgstr "Placa:" #: ../../../processing/app/Preferences.java:140 msgid "Bosnian" -msgstr "" +msgstr "Bósnio" #: SerialMonitor.java:112 msgid "Both NL & CR" @@ -309,19 +315,19 @@ msgstr "Procurar por atualizações ao iniciar" #: ../../../processing/app/Preferences.java:142 msgid "Chinese (China)" -msgstr "" +msgstr "Chinês (China)" #: ../../../processing/app/Preferences.java:142 msgid "Chinese (Hong Kong)" -msgstr "" +msgstr "Chinês (Hong Kong)" #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" -msgstr "" +msgstr "Chinês (Taiwan)" #: ../../../processing/app/Preferences.java:143 msgid "Chinese (Taiwan) (Big5)" -msgstr "" +msgstr "Chinês (Taiwan) (Big5)" #: Preferences.java:88 msgid "Chinese Simplified" @@ -362,7 +368,7 @@ msgstr "Copiar para HTML" #: ../../../processing/app/EditorStatus.java:455 msgid "Copy error messages" -msgstr "" +msgstr "Copiar mensagens de erro" #: Editor.java:1165 Editor.java:2715 msgid "Copy for Forum" @@ -443,7 +449,7 @@ msgstr "Não foi possível voltar a guardar o rascunho" msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "Não foi possível ler as definições de tema de cor.\nTerá de reinstalar o Arduino." +msgstr "" #: Preferences.java:219 msgid "" @@ -538,7 +544,7 @@ msgstr "Esquecer quaisquer alterações e recarregar o rascunho?" #: ../../../processing/app/Preferences.java:438 msgid "Display line numbers" -msgstr "" +msgstr "Mostrar numeros de linha" #: Editor.java:2064 msgid "Don't Save" @@ -570,7 +576,7 @@ msgstr "Holandês" #: ../../../processing/app/Preferences.java:144 msgid "Dutch (Netherlands)" -msgstr "" +msgstr "Holandês (Holanda)" #: Editor.java:1130 msgid "Edit" @@ -590,7 +596,7 @@ msgstr "Inglês" #: ../../../processing/app/Preferences.java:145 msgid "English (United Kingdom)" -msgstr "" +msgstr "Inglês (Reino Unido)" #: Editor.java:1062 msgid "Environment" @@ -648,7 +654,7 @@ msgstr "Erro ao ler o ficheiro de preferências. Por favor apague (ou mova)\n{0} #: ../../../cc/arduino/packages/DiscoveryManager.java:25 msgid "Error starting discovery method: " -msgstr "" +msgstr "Erro ao iniciar o método de descoberta:" #: Serial.java:125 #, java-format @@ -661,7 +667,7 @@ msgstr "Erro ao gravar o bootloader." #: ../../../processing/app/Editor.java:2555 msgid "Error while burning bootloader: missing '{0}' configuration parameter" -msgstr "" +msgstr "Erro ao gravar o bootloader: parâmetro de configuração '{0}' não encontrado" #: SketchCode.java:83 #, java-format @@ -675,7 +681,7 @@ msgstr "Erro ao imprimir." #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" -msgstr "" +msgstr "Erro durante o upload: parâmetro de configuração '{0}' não encontrado" #: Preferences.java:93 msgid "Estonian" @@ -683,7 +689,7 @@ msgstr "Estónio" #: ../../../processing/app/Preferences.java:146 msgid "Estonian (Estonia)" -msgstr "" +msgstr "Estónio (Estonia)" #: Editor.java:516 msgid "Examples" @@ -731,7 +737,7 @@ msgstr "Procurar:" #: ../../../processing/app/Preferences.java:147 msgid "Finnish" -msgstr "" +msgstr "Finlandês" #: tools/FixEncoding.java:41 tools/FixEncoding.java:58 #: tools/FixEncoding.java:79 @@ -777,12 +783,12 @@ msgstr "Primeiros passos" msgid "" "Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes " "for local variables. Maximum is {1} bytes." -msgstr "" +msgstr "Variáveis globais usam {0} bytes ({2}%%) de memória dinâmica, restando {3} bytes para variáveis locais. O maximo é {1} bytes." #: ../../../processing/app/Sketch.java:1651 #, java-format msgid "Global variables use {0} bytes of dynamic memory." -msgstr "" +msgstr "Variáveis globais usam {0} bytes de memória dinâmica." #: Preferences.java:98 msgid "Greek" @@ -908,7 +914,7 @@ msgstr "Mensagem" #: ../../../processing/app/preproc/PdePreprocessor.java:412 msgid "Missing the */ from the end of a /* comment */" -msgstr "" +msgstr "Falta o */ do final do /* comentário */" #: Preferences.java:449 msgid "More preferences can be edited directly in the file" @@ -924,11 +930,11 @@ msgstr "Nome para o novo ficheiro:" #: ../../../processing/app/Preferences.java:149 msgid "Nepali" -msgstr "" +msgstr "Nepalês" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 msgid "Network upload using programmer not supported" -msgstr "" +msgstr "Upload de rede usando o programador não é suportado" #: EditorToolbar.java:41 Editor.java:493 msgid "New" @@ -990,7 +996,7 @@ msgstr "Não foram encontrados núcleos configurados válidos! A sair..." #: ../../../processing/app/debug/TargetPackage.java:63 #, java-format msgid "No valid hardware definitions found in folder {0}." -msgstr "" +msgstr "Não foram encontradas definições de hardware válidas na directoria {0}." #: Base.java:191 msgid "Non-fatal error while setting the Look & Feel." @@ -1045,7 +1051,7 @@ msgstr "Configuração da Página" #: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 msgid "Password:" -msgstr "" +msgstr "Palavra passe:" #: Editor.java:1189 Editor.java:2731 msgid "Paste" @@ -1069,19 +1075,19 @@ msgstr "Polaco" #: ../../../processing/app/Editor.java:718 msgid "Port" -msgstr "" +msgstr "Porta" #: ../../../processing/app/Preferences.java:151 msgid "Portugese" -msgstr "" +msgstr "Português" #: ../../../processing/app/Preferences.java:127 msgid "Portuguese (Brazil)" -msgstr "" +msgstr "Português (Brasil)" #: ../../../processing/app/Preferences.java:128 msgid "Portuguese (Portugal)" -msgstr "" +msgstr "Português (Portugal)" #: Preferences.java:295 Editor.java:583 msgid "Preferences" @@ -1121,11 +1127,11 @@ msgstr "Ocorreu um problema ao definir a Plataforma" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 msgid "Problem accessing board folder /www/sd" -msgstr "" +msgstr "Problema ao aceder à directoria /www/sd da placa" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 msgid "Problem accessing files in folder " -msgstr "" +msgstr "Problema ao aceder aos ficheiros na directoria" #: Base.java:1673 msgid "Problem getting data folder" @@ -1146,12 +1152,6 @@ msgstr "Problema a carregar para a placa. Vê http://www.arduino.cc/en/Guide/Tro msgid "Problem with rename" msgstr "Problema com a mudança de nome" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "O Arduino só consegue abrir os seus próprios rascunhos\ne outros ficheiros com extensão .ino ou .pde" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "Processador" @@ -1346,7 +1346,7 @@ msgstr "O rascunho é demasiado grande; veja http://www.arduino.cc/en/Guide/Trou msgid "" "Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} " "bytes." -msgstr "" +msgstr "O rascunho usa {0} bytes ({2}%%) do espaço de armazenamento do programa. O máximo é {1} bytes." #: Editor.java:510 msgid "Sketchbook" @@ -1362,11 +1362,11 @@ msgstr "Localização do bloco de rascunhos:" #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" -msgstr "" +msgstr "Rascunhos (*.ino, *.pde)" #: ../../../processing/app/Preferences.java:152 msgid "Slovenian" -msgstr "" +msgstr "Esloveno" #: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967 msgid "" @@ -1396,7 +1396,7 @@ msgstr "Sol" #: ../../../processing/app/Preferences.java:153 msgid "Swedish" -msgstr "" +msgstr "Sueco" #: Preferences.java:84 msgid "System Default" @@ -1522,11 +1522,11 @@ msgstr "Turco" #: ../../../processing/app/Editor.java:2507 msgid "Type board password to access its console" -msgstr "" +msgstr "Introduza a palavra passe da placa para aceder à consola" #: ../../../processing/app/Sketch.java:1673 msgid "Type board password to upload a new sketch" -msgstr "" +msgstr "Introduza a palavra passe da placa para fazer upload de um novo rascunho" #: ../../../processing/app/Preferences.java:118 msgid "Ukrainian" @@ -1535,19 +1535,19 @@ msgstr "Ucraniano" #: ../../../processing/app/Editor.java:2524 #: ../../../processing/app/NetworkMonitor.java:145 msgid "Unable to connect: is the sketch using the bridge?" -msgstr "" +msgstr "Erro ao estabelecer ligação: o rascunho está a usar a ponte?" #: ../../../processing/app/NetworkMonitor.java:130 msgid "Unable to connect: retrying" -msgstr "" +msgstr "Erro ao estabelecer ligação: a tentar" #: ../../../processing/app/Editor.java:2526 msgid "Unable to connect: wrong password?" -msgstr "" +msgstr "Erro ao estabelecer ligação: palavra passe errada?" #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" -msgstr "" +msgstr "Erro ao abrir o monitor série." #: Sketch.java:1432 #, java-format @@ -1587,7 +1587,7 @@ msgstr "Carregamento cancelado" #: ../../../processing/app/Sketch.java:1678 msgid "Upload cancelled" -msgstr "" +msgstr "Upload cancelado" #: Editor.java:2378 msgid "Uploading to I/O Board..." @@ -1608,12 +1608,12 @@ msgstr "Usar um editor externo" #: ../../../processing/app/debug/Compiler.java:94 #, java-format msgid "Using library {0} in folder: {1} {2}" -msgstr "" +msgstr "A usar a biblioteca {0} na directoria: {1} {2}" #: ../../../processing/app/debug/Compiler.java:320 #, java-format msgid "Using previously compiled file: {0}" -msgstr "" +msgstr "A usar o ficheiro previamente compilado: {0}" #: EditorToolbar.java:41 EditorToolbar.java:46 msgid "Verify" @@ -1629,7 +1629,7 @@ msgstr "Verificar o código após o upload" #: ../../../processing/app/Preferences.java:154 msgid "Vietnamese" -msgstr "" +msgstr "Vietnamita" #: Editor.java:1105 msgid "Visit Arduino.cc" @@ -1694,7 +1694,7 @@ msgstr "Esqueceste-te do teu caderno de rascunhos" #: ../../../processing/app/AbstractMonitor.java:92 msgid "" "You've pressed {0} but nothing was sent. Should you select a line ending?" -msgstr "" +msgstr "Pressionou {0} mas nada foi enviado. Necessita seleccionar um caracter terminador?" #: Base.java:536 msgid "" @@ -1719,10 +1719,10 @@ msgstr "\".{0}\" não é uma extensão válida." #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." -msgstr "\"{0}\" contém caracteres desconhecidos. Se este código tiver sido criado com uma versão mais antiga do Arduino, poderá ser necessário usar \"Ferramentas -> Corrigir Codificação e Recarregar para atualizar o rascunho para UTF-8. Caso contrário, terá que eliminar os caracteres desconhecidos para deixar de ver este aviso." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." +msgstr "" #: debug/Compiler.java:409 msgid "" @@ -1785,7 +1785,7 @@ msgstr "compilação" #: ../../../processing/app/NetworkMonitor.java:111 msgid "connected!" -msgstr "" +msgstr "ligado!" #: Sketch.java:540 msgid "createNewFile() returned false" diff --git a/arduino-core/src/processing/app/i18n/Resources_pt_PT.properties b/arduino-core/src/processing/app/i18n/Resources_pt_PT.properties index a0b9f6d87..d66b12ac7 100644 --- a/arduino-core/src/processing/app/i18n/Resources_pt_PT.properties +++ b/arduino-core/src/processing/app/i18n/Resources_pt_PT.properties @@ -10,7 +10,7 @@ # , 2012. # , 2012. # , 2012. -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Portuguese (Portugal) (http\://www.transifex.com/projects/p/arduino-ide-15/language/pt_PT/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: pt_PT\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Portuguese (Portugal) (http\://www.transifex.com/projects/p/arduino-ide-15/language/pt_PT/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: pt_PT\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(requer rein\u00edcio do Arduino) @@ -90,6 +90,9 @@ Arduino\ ARM\ (32-bits)\ Boards=Placas Arduino ARM (32-bits) #: ../../../processing/app/I18n.java:82 Arduino\ AVR\ Boards=Placas Arduino AVR +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=O Arduino n\u00e3o pode ser executado porque n\u00e3o foi\nposs\u00edvel criar uma pasta para guardar as configura\u00e7\u00f5es. @@ -147,7 +150,7 @@ Bad\ error\ line\:\ {0}=Erro na linha\: {0} Bad\ file\ selected=Ficheiro incorreto selecionado #: ../../../processing/app/Preferences.java:139 -!Belarusian= +Belarusian=Bielorrusso #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 @@ -161,7 +164,7 @@ Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-se Board\:\ =Placa\: #: ../../../processing/app/Preferences.java:140 -!Bosnian= +Bosnian=B\u00f3snio #: SerialMonitor.java:112 Both\ NL\ &\ CR=Nova linha e retorno de linha @@ -207,16 +210,16 @@ Catalan=Catal\u00e3o Check\ for\ updates\ on\ startup=Procurar por atualiza\u00e7\u00f5es ao iniciar #: ../../../processing/app/Preferences.java:142 -!Chinese\ (China)= +Chinese\ (China)=Chin\u00eas (China) #: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= +Chinese\ (Hong\ Kong)=Chin\u00eas (Hong Kong) #: ../../../processing/app/Preferences.java:144 -!Chinese\ (Taiwan)= +Chinese\ (Taiwan)=Chin\u00eas (Taiwan) #: ../../../processing/app/Preferences.java:143 -!Chinese\ (Taiwan)\ (Big5)= +Chinese\ (Taiwan)\ (Big5)=Chin\u00eas (Taiwan) (Big5) #: Preferences.java:88 Chinese\ Simplified=Chin\u00eas Simplificado @@ -247,7 +250,7 @@ Copy=Copiar Copy\ as\ HTML=Copiar para HTML #: ../../../processing/app/EditorStatus.java:455 -!Copy\ error\ messages= +Copy\ error\ messages=Copiar mensagens de erro #: Editor.java:1165 Editor.java:2715 Copy\ for\ Forum=Copiar para o F\u00f3rum @@ -304,7 +307,7 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=N\u00e3o foi poss\u00edvel voltar a guardar o rascunho #: Theme.java:52 -Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=N\u00e3o foi poss\u00edvel ler as defini\u00e7\u00f5es de tema de cor.\nTer\u00e1 de reinstalar o Arduino. +!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=N\u00e3o foi poss\u00edvel ler as configura\u00e7\u00f5es predefinidas.\u23ce Ter\u00e1s de reinstalar o Arduino. @@ -371,7 +374,7 @@ Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ Discard\ all\ changes\ and\ reload\ sketch?=Esquecer quaisquer altera\u00e7\u00f5es e recarregar o rascunho? #: ../../../processing/app/Preferences.java:438 -!Display\ line\ numbers= +Display\ line\ numbers=Mostrar numeros de linha #: Editor.java:2064 Don't\ Save=N\u00e3o Guardar @@ -395,7 +398,7 @@ Done\ uploading.=Carregamento completo Dutch=Holand\u00eas #: ../../../processing/app/Preferences.java:144 -!Dutch\ (Netherlands)= +Dutch\ (Netherlands)=Holand\u00eas (Holanda) #: Editor.java:1130 Edit=Editar @@ -410,7 +413,7 @@ Editor\ language\:\ =Linguagem do editor\: English=Ingl\u00eas #: ../../../processing/app/Preferences.java:145 -!English\ (United\ Kingdom)= +English\ (United\ Kingdom)=Ingl\u00eas (Reino Unido) #: Editor.java:1062 Environment=Ambiente @@ -454,7 +457,7 @@ Error\ reading\ preferences=Erro ao ler as prefer\u00eancias Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Erro ao ler o ficheiro de prefer\u00eancias. Por favor apague (ou mova)\n{0} e reinicie o Arduino. #: ../../../cc/arduino/packages/DiscoveryManager.java:25 -!Error\ starting\ discovery\ method\:\ = +Error\ starting\ discovery\ method\:\ =Erro ao iniciar o m\u00e9todo de descoberta\: #: Serial.java:125 #, java-format @@ -464,7 +467,7 @@ Error\ touching\ serial\ port\ ''{0}''.=Erro ao tocar a porta s\u00e9rie "{0}". Error\ while\ burning\ bootloader.=Erro ao gravar o bootloader. #: ../../../processing/app/Editor.java:2555 -!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=Erro ao gravar o bootloader\: par\u00e2metro de configura\u00e7\u00e3o '{0}' n\u00e3o encontrado #: SketchCode.java:83 #, java-format @@ -475,13 +478,13 @@ Error\ while\ printing.=Erro ao imprimir. #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 -!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= +Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=Erro durante o upload\: par\u00e2metro de configura\u00e7\u00e3o '{0}' n\u00e3o encontrado #: Preferences.java:93 Estonian=Est\u00f3nio #: ../../../processing/app/Preferences.java:146 -!Estonian\ (Estonia)= +Estonian\ (Estonia)=Est\u00f3nio (Estonia) #: Editor.java:516 Examples=Exemplos @@ -517,7 +520,7 @@ Find...=Procurar... Find\:=Procurar\: #: ../../../processing/app/Preferences.java:147 -!Finnish= +Finnish=Finland\u00eas #: tools/FixEncoding.java:41 tools/FixEncoding.java:58 #: tools/FixEncoding.java:79 @@ -549,11 +552,11 @@ Getting\ Started=Primeiros passos #: ../../../processing/app/Sketch.java:1646 #, java-format -!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.= +Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=Vari\u00e1veis globais usam {0} bytes ({2}%%) de mem\u00f3ria din\u00e2mica, restando {3} bytes para vari\u00e1veis locais. O maximo \u00e9 {1} bytes. #: ../../../processing/app/Sketch.java:1651 #, java-format -!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.= +Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=Vari\u00e1veis globais usam {0} bytes de mem\u00f3ria din\u00e2mica. #: Preferences.java:98 Greek=Grego @@ -641,7 +644,7 @@ Marathi=Marata Message=Mensagem #: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Falta o */ do final do /* coment\u00e1rio */ #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Outras prefer\u00eancias podem ser alteradas diretamente no ficheiro @@ -653,10 +656,10 @@ Moving=A mover Name\ for\ new\ file\:=Nome para o novo ficheiro\: #: ../../../processing/app/Preferences.java:149 -!Nepali= +Nepali=Nepal\u00eas #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 -!Network\ upload\ using\ programmer\ not\ supported= +Network\ upload\ using\ programmer\ not\ supported=Upload de rede usando o programador n\u00e3o \u00e9 suportado #: EditorToolbar.java:41 Editor.java:493 New=Novo @@ -703,7 +706,7 @@ No\ valid\ configured\ cores\ found\!\ Exiting...=N\u00e3o foram encontrados n\u #: ../../../processing/app/debug/TargetPackage.java:63 #, java-format -!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.= +No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=N\u00e3o foram encontradas defini\u00e7\u00f5es de hardware v\u00e1lidas na directoria {0}. #: Base.java:191 Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Erro n\u00e3o fatal ao configurar aspeto. @@ -743,7 +746,7 @@ Open...=Abrir... Page\ Setup=Configura\u00e7\u00e3o da P\u00e1gina #: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 -!Password\:= +Password\:=Palavra passe\: #: Editor.java:1189 Editor.java:2731 Paste=Colar @@ -761,16 +764,16 @@ Please\ install\ JDK\ 1.5\ or\ later=Por favor instale o JDK 1.5 ou superior Polish=Polaco #: ../../../processing/app/Editor.java:718 -!Port= +Port=Porta #: ../../../processing/app/Preferences.java:151 -!Portugese= +Portugese=Portugu\u00eas #: ../../../processing/app/Preferences.java:127 -!Portuguese\ (Brazil)= +Portuguese\ (Brazil)=Portugu\u00eas (Brasil) #: ../../../processing/app/Preferences.java:128 -!Portuguese\ (Portugal)= +Portuguese\ (Portugal)=Portugu\u00eas (Portugal) #: Preferences.java:295 Editor.java:583 Preferences=Prefer\u00eancias @@ -800,10 +803,10 @@ Problem\ Opening\ URL=Problema ao abrir URL Problem\ Setting\ the\ Platform=Ocorreu um problema ao definir a Plataforma #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 -!Problem\ accessing\ board\ folder\ /www/sd= +Problem\ accessing\ board\ folder\ /www/sd=Problema ao aceder \u00e0 directoria /www/sd da placa #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 -!Problem\ accessing\ files\ in\ folder\ = +Problem\ accessing\ files\ in\ folder\ =Problema ao aceder aos ficheiros na directoria #: Base.java:1673 Problem\ getting\ data\ folder=Problema ao obter a pasta de dados @@ -818,9 +821,6 @@ Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troublesh #: Sketch.java:355 Sketch.java:362 Sketch.java:373 Problem\ with\ rename=Problema com a mudan\u00e7a de nome -#: Editor.java:2137 -Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=O Arduino s\u00f3 consegue abrir os seus pr\u00f3prios rascunhos\ne outros ficheiros com extens\u00e3o .ino ou .pde - #: ../../../processing/app/I18n.java:86 Processor=Processador @@ -959,7 +959,7 @@ Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ f #: ../../../processing/app/Sketch.java:1639 #, java-format -!Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.= +Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.=O rascunho usa {0} bytes ({2}%%) do espa\u00e7o de armazenamento do programa. O m\u00e1ximo \u00e9 {1} bytes. #: Editor.java:510 Sketchbook=Bloco de rascunhos @@ -971,10 +971,10 @@ Sketchbook\ folder\ disappeared=A pasta do bloco de rascunhos desapareceu. Sketchbook\ location\:=Localiza\u00e7\u00e3o do bloco de rascunhos\: #: ../../../processing/app/Base.java:785 -!Sketches\ (*.ino,\ *.pde)= +Sketches\ (*.ino,\ *.pde)=Rascunhos (*.ino, *.pde) #: ../../../processing/app/Preferences.java:152 -!Slovenian= +Slovenian=Esloveno #: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967 Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Alguns ficheiros est\u00e3o marcados "leitura apenas", ter\u00e1 que gravar o rascunho noutra localiza\u00e7\u00e3o, \\n e tentar de novo. @@ -993,7 +993,7 @@ Spanish=Espanhol Sunshine=Sol #: ../../../processing/app/Preferences.java:153 -!Swedish= +Swedish=Sueco #: Preferences.java:84 System\ Default=Omiss\u00e3o do Sistema @@ -1065,26 +1065,26 @@ Troubleshooting=Solu\u00e7\u00e3o de problemas Turkish=Turco #: ../../../processing/app/Editor.java:2507 -!Type\ board\ password\ to\ access\ its\ console= +Type\ board\ password\ to\ access\ its\ console=Introduza a palavra passe da placa para aceder \u00e0 consola #: ../../../processing/app/Sketch.java:1673 -!Type\ board\ password\ to\ upload\ a\ new\ sketch= +Type\ board\ password\ to\ upload\ a\ new\ sketch=Introduza a palavra passe da placa para fazer upload de um novo rascunho #: ../../../processing/app/Preferences.java:118 Ukrainian=Ucraniano #: ../../../processing/app/Editor.java:2524 #: ../../../processing/app/NetworkMonitor.java:145 -!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?= +Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=Erro ao estabelecer liga\u00e7\u00e3o\: o rascunho est\u00e1 a usar a ponte? #: ../../../processing/app/NetworkMonitor.java:130 -!Unable\ to\ connect\:\ retrying= +Unable\ to\ connect\:\ retrying=Erro ao estabelecer liga\u00e7\u00e3o\: a tentar #: ../../../processing/app/Editor.java:2526 -!Unable\ to\ connect\:\ wrong\ password?= +Unable\ to\ connect\:\ wrong\ password?=Erro ao estabelecer liga\u00e7\u00e3o\: palavra passe errada? #: ../../../processing/app/Editor.java:2512 -!Unable\ to\ open\ serial\ monitor= +Unable\ to\ open\ serial\ monitor=Erro ao abrir o monitor s\u00e9rie. #: Sketch.java:1432 #, java-format @@ -1112,7 +1112,7 @@ Upload\ Using\ Programmer=Upload Usando o Programador Upload\ canceled.=Carregamento cancelado #: ../../../processing/app/Sketch.java:1678 -!Upload\ cancelled= +Upload\ cancelled=Upload cancelado #: Editor.java:2378 Uploading\ to\ I/O\ Board...=A carregar para a placa E/S... @@ -1128,11 +1128,11 @@ Use\ external\ editor=Usar um editor externo #: ../../../processing/app/debug/Compiler.java:94 #, java-format -!Using\ library\ {0}\ in\ folder\:\ {1}\ {2}= +Using\ library\ {0}\ in\ folder\:\ {1}\ {2}=A usar a biblioteca {0} na directoria\: {1} {2} #: ../../../processing/app/debug/Compiler.java:320 #, java-format -!Using\ previously\ compiled\ file\:\ {0}= +Using\ previously\ compiled\ file\:\ {0}=A usar o ficheiro previamente compilado\: {0} #: EditorToolbar.java:41 EditorToolbar.java:46 Verify=Verificar @@ -1144,7 +1144,7 @@ Verify\ /\ Compile=Verificar / Compilar Verify\ code\ after\ upload=Verificar o c\u00f3digo ap\u00f3s o upload #: ../../../processing/app/Preferences.java:154 -!Vietnamese= +Vietnamese=Vietnamita #: Editor.java:1105 Visit\ Arduino.cc=Visitar Arduino.cc @@ -1186,7 +1186,7 @@ You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ g You\ forgot\ your\ sketchbook=Esqueceste-te do teu caderno de rascunhos #: ../../../processing/app/AbstractMonitor.java:92 -!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?= +You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=Pressionou {0} mas nada foi enviado. Necessita seleccionar um caracter terminador? #: Base.java:536 You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Chegou ao limite para a atribui\u00e7\u00e3o autom\u00e1tica de nomes de\nnovos rascunhos por hoje. Que tal ir dar um passeio? @@ -1203,7 +1203,7 @@ Zip\ doesn't\ contain\ a\ library=O Zip n\u00e3o cont\u00e9m uma biblioteca #: SketchCode.java:258 #, java-format -"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" cont\u00e9m caracteres desconhecidos. Se este c\u00f3digo tiver sido criado com uma vers\u00e3o mais antiga do Arduino, poder\u00e1 ser necess\u00e1rio usar "Ferramentas -> Corrigir Codifica\u00e7\u00e3o e Recarregar para atualizar o rascunho para UTF-8. Caso contr\u00e1rio, ter\u00e1 que eliminar os caracteres desconhecidos para deixar de ver este aviso. +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 \nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nDesde o Arduino 0019 que a biblioteca Ethernet depende da biblioteca SPI.\nParece estar a usar essa ou outra biblioteca que depende da biblioteca SPI.\n\n @@ -1233,7 +1233,7 @@ baud=baud compilation\ =compila\u00e7\u00e3o #: ../../../processing/app/NetworkMonitor.java:111 -!connected\!= +connected\!=ligado\! #: Sketch.java:540 createNewFile()\ returned\ false=createNewFile() devolveu falso diff --git a/arduino-core/src/processing/app/i18n/Resources_ro.po b/arduino-core/src/processing/app/i18n/Resources_ro.po index 2ed6da471..d1a2d1a83 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ro.po +++ b/arduino-core/src/processing/app/i18n/Resources_ro.po @@ -11,8 +11,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/arduino-ide-15/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -141,6 +141,12 @@ msgstr "Plăcii Arduino ARM (32-bits)" msgid "Arduino AVR Boards" msgstr "Plăci Arduino AVR" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -439,7 +445,7 @@ msgstr "Nu am putut re-salva schiţa." msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "Nu pot citi setările culorilor pentru tema.\nEste necesara reinstalarea aplicaţiei." +msgstr "" #: Preferences.java:219 msgid "" @@ -904,7 +910,7 @@ msgstr "Mesaj" #: ../../../processing/app/preproc/PdePreprocessor.java:412 msgid "Missing the */ from the end of a /* comment */" -msgstr "" +msgstr "Lipsă */ din sfârșitul unui /*comentariu*/" #: Preferences.java:449 msgid "More preferences can be edited directly in the file" @@ -1142,12 +1148,6 @@ msgstr "Probleme la încărcarea aplicaţiei. Vezi http://www.arduino.cc/en/Gui msgid "Problem with rename" msgstr "Problemă la redenumire" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "Se pot deschide doar propriile schiţe\nsau alte fişiere cu extensia .ino sau .pde" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "Preocesorul" @@ -1715,10 +1715,10 @@ msgstr "\".{0}\" nu este o extensie acceptata." #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." -msgstr "\"{0}\" conţine caractere necunoscute. Dacă acest cod a fost realizat într-o versiune mai veche, încearcă sa foloseşti Instrumente-> Corectare codare & reiniţializează pentru a modifica schiţa şi a folosi codarea UTF-8. În caz contrar e nevoie să ştergi caracterele necunoscute pentru a înlătura acest avertisment." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." +msgstr "" #: debug/Compiler.java:409 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_ro.properties b/arduino-core/src/processing/app/i18n/Resources_ro.properties index f79ddc424..af684c08e 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ro.properties +++ b/arduino-core/src/processing/app/i18n/Resources_ro.properties @@ -6,7 +6,7 @@ # , 2012. # , 2013. # Pop Gheorghe , 2013. -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Romanian (http\://www.transifex.com/projects/p/arduino-ide-15/language/ro/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ro\nPlural-Forms\: nplurals\=3; plural\=(n\=\=1?0\:(((n%100>19)||((n%100\=\=0)&&(n\!\=0)))?2\:1));\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Romanian (http\://www.transifex.com/projects/p/arduino-ide-15/language/ro/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ro\nPlural-Forms\: nplurals\=3; plural\=(n\=\=1?0\:(((n%100>19)||((n%100\=\=0)&&(n\!\=0)))?2\:1));\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(este necesar\u0103 repornirea editorului Arduino) @@ -86,6 +86,9 @@ Arduino\ ARM\ (32-bits)\ Boards=Pl\u0103cii Arduino ARM (32-bits) #: ../../../processing/app/I18n.java:82 Arduino\ AVR\ Boards=Pl\u0103ci Arduino AVR +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino nu a putut porni deoarece\nnu poate crea un director \u00een care s\u0103-\u015fi salveze set\u0103rile. @@ -300,7 +303,7 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=Nu am putut re-salva schi\u0163a. #: Theme.java:52 -Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Nu pot citi set\u0103rile culorilor pentru tema.\nEste necesara reinstalarea aplica\u0163iei. +!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Nu s-a putut citi set\u0103rile implicite.\nVa trebui s\u0103 reinstalezi Arduino IDE. @@ -637,7 +640,7 @@ Marathi=Marathi Message=Mesaj #: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Lips\u0103 */ din sf\u00e2r\u0219itul unui /*comentariu*/ #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Alte preferin\u0163e pot fi editate direct \u00een fi\u015fier @@ -814,9 +817,6 @@ Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troublesh #: Sketch.java:355 Sketch.java:362 Sketch.java:373 Problem\ with\ rename=Problem\u0103 la redenumire -#: Editor.java:2137 -Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Se pot deschide doar propriile schi\u0163e\nsau alte fi\u015fiere cu extensia .ino sau .pde - #: ../../../processing/app/I18n.java:86 Processor=Preocesorul @@ -1199,7 +1199,7 @@ Zip\ doesn't\ contain\ a\ library=Fi\u015fierul arhiv\u0103 nu con\u0163ine o bi #: SketchCode.java:258 #, java-format -"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" con\u0163ine caractere necunoscute. Dac\u0103 acest cod a fost realizat \u00eentr-o versiune mai veche, \u00eencearc\u0103 sa folose\u015fti Instrumente-> Corectare codare & reini\u0163ializeaz\u0103 pentru a modifica schi\u0163a \u015fi a folosi codarea UTF-8. \u00cen caz contrar e nevoie s\u0103 \u015ftergi caracterele necunoscute pentru a \u00eenl\u0103tura acest avertisment. +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 \nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\n\u00cencep\u00e2nd cu versiunea Arduino 0019, biblioteca Ethernet depinde de biblioteca SPI.\nSe pare ca mai folosi\u0163i o bibliotec\u0103 care depinde de biblioteca SPI.\n diff --git a/arduino-core/src/processing/app/i18n/Resources_ru.po b/arduino-core/src/processing/app/i18n/Resources_ru.po index 3821d9126..175448a87 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ru.po +++ b/arduino-core/src/processing/app/i18n/Resources_ru.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Russian (http://www.transifex.com/projects/p/arduino-ide-15/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,7 +31,7 @@ msgstr "Поддержка мыши только в Arduino Leonardo" #: Preferences.java:478 msgid "(edit only when Arduino is not running)" -msgstr "(редактировать, только когда Arduino не работает)" +msgstr "(редактировать, только когда Arduino не запущен)" #: Sketch.java:746 msgid ".pde -> .ino" @@ -71,13 +71,13 @@ msgstr "Библиотека с именем {0} уже существует" msgid "" "A new version of Arduino is available,\n" "would you like to visit the Arduino download page?" -msgstr "" +msgstr "Доступна новая версия Arduino,\nвы хотите перейти на страницу загрузки Arduino?" #: EditorConsole.java:153 msgid "" "A problem occurred while trying to open the\n" "files used to store the console output." -msgstr "" +msgstr "Возникла проблема при попытке открыть\nфайл, использованный для хранения вывода в консоль." #: Editor.java:1116 msgid "About Arduino" @@ -138,6 +138,12 @@ msgstr "Платы Arduino ARM (32-bits)" msgid "Arduino AVR Boards" msgstr "Платы Arduino AVR" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -148,7 +154,7 @@ msgstr "Arduino не может работать, потому что он не msgid "" "Arduino cannot run because it could not\n" "create a folder to store your sketchbook." -msgstr "Arduino не может работать, потому что он не смог создать папку для хранения sketchbook." +msgstr "Arduino не может работать, потому что он не смог создать папку для хранения ваших скетчей." #: Base.java:240 msgid "" @@ -159,7 +165,7 @@ msgstr "Arduino требует запустить полный JDK (не тол #: ../../../processing/app/EditorStatus.java:471 msgid "Arduino: " -msgstr "" +msgstr "Arduino: " #: Sketch.java:588 #, java-format @@ -172,35 +178,35 @@ msgstr "Вы действительно хотите удалить этот э #: ../../../processing/app/Preferences.java:137 msgid "Armenian" -msgstr "" +msgstr "Армянский" #: ../../../processing/app/Preferences.java:138 msgid "Asturian" -msgstr "" +msgstr "Астурийский" #: tools/AutoFormat.java:91 msgid "Auto Format" -msgstr "" +msgstr "АвтоФорматирование" #: tools/AutoFormat.java:934 msgid "Auto Format Canceled: Too many left curly braces." -msgstr "" +msgstr "АвтоФорматирование прервано: слишком много левых фигурных скобок." #: tools/AutoFormat.java:925 msgid "Auto Format Canceled: Too many left parentheses." -msgstr "" +msgstr "АвтоФорматирование прервано: слишком много левых скобок." #: tools/AutoFormat.java:931 msgid "Auto Format Canceled: Too many right curly braces." -msgstr "" +msgstr "АвтоФорматирование прервано: слишком много правых фигурных скобок." #: tools/AutoFormat.java:922 msgid "Auto Format Canceled: Too many right parentheses." -msgstr "" +msgstr "АвтоФорматирование прервано: слишком много правых скобок." #: tools/AutoFormat.java:944 msgid "Auto Format finished." -msgstr "" +msgstr "АвтоФорматирование завершено." #: Preferences.java:439 msgid "Automatically associate .ino files with Arduino" @@ -221,7 +227,7 @@ msgstr "Это плохой файл" #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" -msgstr "" +msgstr "Белорусский" #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 @@ -237,11 +243,11 @@ msgstr "" #: ../../../processing/app/EditorStatus.java:472 msgid "Board: " -msgstr "" +msgstr "Плата" #: ../../../processing/app/Preferences.java:140 msgid "Bosnian" -msgstr "" +msgstr "Боснийский" #: SerialMonitor.java:112 msgid "Both NL & CR" @@ -265,11 +271,11 @@ msgstr "" #: Editor.java:708 msgid "Burn Bootloader" -msgstr "" +msgstr "Записать Загрузчик" #: Editor.java:2504 msgid "Burning bootloader to I/O Board (this may take a minute)..." -msgstr "" +msgstr "Загрузка бутлоадера в плату (это может занять минуту)..." #: ../../../processing/app/Base.java:368 msgid "Can't open source sketch!" @@ -302,19 +308,19 @@ msgstr "Проверять обновления при запуске" #: ../../../processing/app/Preferences.java:142 msgid "Chinese (China)" -msgstr "" +msgstr "Китайский (Китай)" #: ../../../processing/app/Preferences.java:142 msgid "Chinese (Hong Kong)" -msgstr "" +msgstr "Китайский (Гонконг)" #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" -msgstr "" +msgstr "Китайский (Тайвань)" #: ../../../processing/app/Preferences.java:143 msgid "Chinese (Taiwan) (Big5)" -msgstr "" +msgstr "Китайский (Тайвань) (Big5)" #: Preferences.java:88 msgid "Chinese Simplified" @@ -355,7 +361,7 @@ msgstr "Копировать в HTML" #: ../../../processing/app/EditorStatus.java:455 msgid "Copy error messages" -msgstr "" +msgstr "Скопировать сообщение об ошибке" #: Editor.java:1165 Editor.java:2715 msgid "Copy for Forum" @@ -368,7 +374,7 @@ msgstr "Невозможно добавить ''{0}'' в эскиз." #: Editor.java:2188 msgid "Could not copy to a proper location." -msgstr "" +msgstr "Не могу скопировать в правильное место" #: Editor.java:2179 msgid "Could not create the sketch folder." @@ -401,7 +407,7 @@ msgstr "" #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 #, java-format msgid "Could not find tool {0}" -msgstr "" +msgstr "Не найден инструмент {0}" #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 #, java-format @@ -461,7 +467,7 @@ msgstr "\"{0}\" в \"{1}\" не переименовывается" #: Sketch.java:475 msgid "Could not rename the sketch. (0)" -msgstr "Невозможно переименовать эскиз. (0)" +msgstr "Невозможно переименовать скетч. (0)" #: Sketch.java:496 msgid "Could not rename the sketch. (1)" @@ -493,7 +499,7 @@ msgid "" "Couldn't find a Board on the selected port. Check that you have the correct " "port selected. If it is correct, try pressing the board's reset button " "after initiating the upload." -msgstr "" +msgstr "Не получается увидеть Плату на выбранном порту. Проверьте, что вы выбрали правильный порт. Если порт выбран правильно, попробуйте нажать кнопку reset на плате после начала загрузки" #: ../../../processing/app/Preferences.java:82 msgid "Croatian" @@ -523,15 +529,15 @@ msgstr "Удалить" msgid "" "Device is not responding, check the right serial port is selected or RESET " "the board right before exporting" -msgstr "" +msgstr "Плата не отвечает, проверьте правильность выбора последовательного порта и/или нажмите RESET на плате перед экспортом" #: tools/FixEncoding.java:57 msgid "Discard all changes and reload sketch?" -msgstr "" +msgstr "Отменить все изменения и перезагрузить скетч?" #: ../../../processing/app/Preferences.java:438 msgid "Display line numbers" -msgstr "" +msgstr "Показать номера строк" #: Editor.java:2064 msgid "Don't Save" @@ -543,7 +549,7 @@ msgstr "Сохранили." #: Editor.java:2510 msgid "Done burning bootloader." -msgstr "" +msgstr "Запись загрузчика завершена" #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." @@ -587,7 +593,7 @@ msgstr "" #: Editor.java:1062 msgid "Environment" -msgstr "" +msgstr "Окружение" #: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481 #: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543 @@ -614,7 +620,7 @@ msgstr "" #: ../../../processing/app/Base.java:1232 msgid "Error loading libraries" -msgstr "" +msgstr "Ошибка при загрузке библиотек" #: ../../../processing/app/debug/TargetPlatform.java:95 #: ../../../processing/app/debug/TargetPlatform.java:106 @@ -626,7 +632,7 @@ msgstr "" #: Serial.java:181 #, java-format msgid "Error opening serial port ''{0}''." -msgstr "" +msgstr "Ошибка открытия последовательного порта \"{0}\"" #: Preferences.java:277 msgid "Error reading preferences" @@ -646,11 +652,11 @@ msgstr "" #: Serial.java:125 #, java-format msgid "Error touching serial port ''{0}''." -msgstr "" +msgstr "Ошибка создания последовательного порта \"{0}\"" #: Editor.java:2512 Editor.java:2516 Editor.java:2520 msgid "Error while burning bootloader." -msgstr "" +msgstr "Ошибка при записи загрузчика" #: ../../../processing/app/Editor.java:2555 msgid "Error while burning bootloader: missing '{0}' configuration parameter" @@ -676,7 +682,7 @@ msgstr "Эстонский - Estonian" #: ../../../processing/app/Preferences.java:146 msgid "Estonian (Estonia)" -msgstr "" +msgstr "Эстонский (Эстония)" #: Editor.java:516 msgid "Examples" @@ -684,7 +690,7 @@ msgstr "Образцы" #: Editor.java:2482 msgid "Export canceled, changes must first be saved." -msgstr "" +msgstr "Экспорт отменен, изменения должны быть сохранены." #: Base.java:2100 msgid "FAQ.html" @@ -712,7 +718,7 @@ msgstr "Найти предыдущее" #: Editor.java:1086 Editor.java:2775 msgid "Find in Reference" -msgstr "" +msgstr "Найти в справочнике" #: Editor.java:1234 msgid "Find..." @@ -724,12 +730,12 @@ msgstr "Что:" #: ../../../processing/app/Preferences.java:147 msgid "Finnish" -msgstr "" +msgstr "Финский" #: tools/FixEncoding.java:41 tools/FixEncoding.java:58 #: tools/FixEncoding.java:79 msgid "Fix Encoding & Reload" -msgstr "" +msgstr "Исправить кодировку и перезагрузить." #: Base.java:1851 msgid "" @@ -739,7 +745,7 @@ msgstr "За информацией по установке библиотек, #: debug/BasicUploader.java:80 msgid "Forcing reset using 1200bps open/close on port " -msgstr "" +msgstr "Перезагрузка платы открытием/закрытием порта на 1200bps" #: Preferences.java:95 msgid "French" @@ -747,7 +753,7 @@ msgstr "Французский - French" #: Editor.java:1097 msgid "Frequently Asked Questions" -msgstr "" +msgstr "Часто Задаваемые Вопросы" #: Preferences.java:96 msgid "Galician" @@ -763,7 +769,7 @@ msgstr "Немецкий - German" #: Editor.java:1054 msgid "Getting Started" -msgstr "" +msgstr "Начинающим" #: ../../../processing/app/Sketch.java:1646 #, java-format @@ -889,7 +895,7 @@ msgstr "Литовский - Lithuaninan" #: ../../../processing/app/Sketch.java:1660 msgid "Low memory available, stability problems may occur" -msgstr "" +msgstr "Мало памяти, могут возникнуть проблемы со стабильностью" #: Preferences.java:107 msgid "Marathi" @@ -957,11 +963,11 @@ msgstr "" #: Editor.java:373 msgid "No files were added to the sketch." -msgstr "" +msgstr "Файлы не были добавлены в скетч" #: Platform.java:167 msgid "No launcher available" -msgstr "" +msgstr "Загрузчик не доступен" #: SerialMonitor.java:112 msgid "No line ending" @@ -974,7 +980,7 @@ msgstr "Да хорош, пора тебе пойти проветриться." #: Editor.java:1872 #, java-format msgid "No reference available for \"{0}\"" -msgstr "" +msgstr "В справочнике нет ничего похожего на \"{0}\"" #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." @@ -1038,7 +1044,7 @@ msgstr "Настройки страницы" #: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 msgid "Password:" -msgstr "" +msgstr "Пароль:" #: Editor.java:1189 Editor.java:2731 msgid "Paste" @@ -1062,19 +1068,19 @@ msgstr "Польский - " #: ../../../processing/app/Editor.java:718 msgid "Port" -msgstr "" +msgstr "Порт" #: ../../../processing/app/Preferences.java:151 msgid "Portugese" -msgstr "" +msgstr "Португальский" #: ../../../processing/app/Preferences.java:127 msgid "Portuguese (Brazil)" -msgstr "" +msgstr "Португальский (Бразилия)" #: ../../../processing/app/Preferences.java:128 msgid "Portuguese (Portugal)" -msgstr "" +msgstr "Португальский (Португалия)" #: Preferences.java:295 Editor.java:583 msgid "Preferences" @@ -1118,7 +1124,7 @@ msgstr "" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 msgid "Problem accessing files in folder " -msgstr "" +msgstr "Проблема с доступом к файлам в папке" #: Base.java:1673 msgid "Problem getting data folder" @@ -1139,12 +1145,6 @@ msgstr "Проблема загрузки на плату. Для достиже msgid "Problem with rename" msgstr "Не переименовывается" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "Процессор" @@ -1163,7 +1163,7 @@ msgstr "Повторить" #: Editor.java:1078 msgid "Reference" -msgstr "" +msgstr "Справочник" #: EditorHeader.java:300 msgid "Rename" @@ -1246,7 +1246,7 @@ msgstr "Выберите файл, чтоб скопировать его в в #: Preferences.java:330 msgid "Select new sketchbook location" -msgstr "Выберите новое расположение Sketchbook" +msgstr "Выберите новое расположение папки скетчей" #: ../../../processing/app/debug/Compiler.java:146 msgid "Selected board depends on '{0}' core (not installed)." @@ -1279,7 +1279,7 @@ msgstr "" msgid "" "Serial port ''{0}'' not found. Did you select the right one from the Tools >" " Serial Port menu?" -msgstr "" +msgstr "Последовательный порт ''{0}'' не существует. Вы выбрали правильный в меню Инструменты > Порт ?" #: Editor.java:2343 #, java-format @@ -1298,7 +1298,7 @@ msgstr "Показать папку эскиза" #: ../../../processing/app/EditorStatus.java:468 msgid "Show verbose output during compilation" -msgstr "" +msgstr "Отображать вывод во время компиляции" #: Preferences.java:387 msgid "Show verbose output during: " @@ -1314,7 +1314,7 @@ msgstr "Эскиз пропал" #: Base.java:1411 msgid "Sketch Does Not Exist" -msgstr "Эскиз не существует" +msgstr "Скетч не существует" #: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966 msgid "Sketch is Read-Only" @@ -1322,11 +1322,11 @@ msgstr "Эскизы только для чтения" #: Sketch.java:294 msgid "Sketch is Untitled" -msgstr "Эскиз не назван" +msgstr "Не задано имя скетча" #: Sketch.java:720 msgid "Sketch is read-only" -msgstr "Эскиз только для чтения" +msgstr "Скетч только для чтения" #: Sketch.java:1653 msgid "" @@ -1343,7 +1343,7 @@ msgstr "" #: Editor.java:510 msgid "Sketchbook" -msgstr "" +msgstr "Папка со скетчами" #: Base.java:258 msgid "Sketchbook folder disappeared" @@ -1351,7 +1351,7 @@ msgstr "Исчезла папка Sketchbook" #: Preferences.java:315 msgid "Sketchbook location:" -msgstr "Размещение Sketchbook" +msgstr "Размещение папки скетчей" #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" @@ -1389,7 +1389,7 @@ msgstr "Солнечный свет" #: ../../../processing/app/Preferences.java:153 msgid "Swedish" -msgstr "" +msgstr "Шведский" #: Preferences.java:84 msgid "System Default" @@ -1507,7 +1507,7 @@ msgstr "Инструменты" #: Editor.java:1070 msgid "Troubleshooting" -msgstr "" +msgstr "Решение проблем" #: ../../../processing/app/Preferences.java:117 msgid "Turkish" @@ -1564,7 +1564,7 @@ msgstr "Обновление" #: Preferences.java:428 msgid "Update sketch files to new extension on save (.pde -> .ino)" -msgstr "Конвертировать файлы эскизов в новый формат (.pde -> .ino)" +msgstr "Конвертировать файлы скетчей в новый формат (.pde -> .ino)" #: EditorToolbar.java:41 Editor.java:545 msgid "Upload" @@ -1572,7 +1572,7 @@ msgstr "Вгрузить" #: EditorToolbar.java:46 Editor.java:553 msgid "Upload Using Programmer" -msgstr "Вгрузить через программатор" +msgstr "Загрузить через программатор" #: Editor.java:2403 Editor.java:2439 msgid "Upload canceled." @@ -1618,11 +1618,11 @@ msgstr "Проверить / Скомпилировать" #: Preferences.java:400 msgid "Verify code after upload" -msgstr "Проверить код после вгрузки" +msgstr "Проверить код после загрузки" #: ../../../processing/app/Preferences.java:154 msgid "Vietnamese" -msgstr "" +msgstr "Вьетнамский" #: Editor.java:1105 msgid "Visit Arduino.cc" @@ -1634,7 +1634,7 @@ msgstr "Предупреждение" #: debug/Compiler.java:444 msgid "Wire.receive() has been renamed Wire.read()." -msgstr "" +msgstr "Wire.receive() переименовано в Wire.read()." #: debug/Compiler.java:438 msgid "Wire.send() has been renamed Wire.write()." @@ -1712,10 +1712,10 @@ msgstr "Файлы \".{0}\" не поддерживаются." #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." -msgstr "\"{0}\" содержит нераспознанные символы. Если этот код был создан в более старой версии программы, возможно, поможет использовать Сервис -> Исправить кодировку И Перезагрузить, - чтобы обновить скетч в кодировке UTF-8. Если нет, то, возможно, потребуется удалить плохие символы, чтобы избавиться от этого предупреждения." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." +msgstr "" #: debug/Compiler.java:409 msgid "" @@ -1852,7 +1852,7 @@ msgstr "" #: Preferences.java:391 msgid "upload" -msgstr "Вгрузить" +msgstr "Загрузить" #: Editor.java:380 #, java-format diff --git a/arduino-core/src/processing/app/i18n/Resources_ru.properties b/arduino-core/src/processing/app/i18n/Resources_ru.properties index fa67389a7..7acda03eb 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ru.properties +++ b/arduino-core/src/processing/app/i18n/Resources_ru.properties @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # David A. Mellis <>, 2012. # -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Russian (http\://www.transifex.com/projects/p/arduino-ide-15/language/ru/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ru\nPlural-Forms\: nplurals\=3; plural\=(n%10\=\=1 && n%100\!\=11 ? 0 \: n%10>\=2 && n%10<\=4 && (n%100<10 || n%100>\=20) ? 1 \: 2);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Russian (http\://www.transifex.com/projects/p/arduino-ide-15/language/ru/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ru\nPlural-Forms\: nplurals\=3; plural\=(n%10\=\=1 && n%100\!\=11 ? 0 \: n%10>\=2 && n%10<\=4 && (n%100<10 || n%100>\=20) ? 1 \: 2);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(\u043d\u0443\u0436\u0435\u043d \u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u043a Arduino) @@ -15,7 +15,7 @@ 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u041f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430 \u043c\u044b\u0448\u0438 \u0442\u043e\u043b\u044c\u043a\u043e \u0432 Arduino Leonardo #: Preferences.java:478 -(edit\ only\ when\ Arduino\ is\ not\ running)=(\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c, \u0442\u043e\u043b\u044c\u043a\u043e \u043a\u043e\u0433\u0434\u0430 Arduino \u043d\u0435 \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442) +(edit\ only\ when\ Arduino\ is\ not\ running)=(\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c, \u0442\u043e\u043b\u044c\u043a\u043e \u043a\u043e\u0433\u0434\u0430 Arduino \u043d\u0435 \u0437\u0430\u043f\u0443\u0449\u0435\u043d) #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -39,10 +39,10 @@ A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=\u041f\u0430\u04 A\ library\ named\ {0}\ already\ exists=\u0411\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430 \u0441 \u0438\u043c\u0435\u043d\u0435\u043c {0} \u0443\u0436\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442 #: UpdateCheck.java:103 -!A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?= +A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=\u0414\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u043d\u043e\u0432\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f Arduino,\n\u0432\u044b \u0445\u043e\u0442\u0438\u0442\u0435 \u043f\u0435\u0440\u0435\u0439\u0442\u0438 \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438 Arduino? #: EditorConsole.java:153 -!A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.= +A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=\u0412\u043e\u0437\u043d\u0438\u043a\u043b\u0430 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0430 \u043f\u0440\u0438 \u043f\u043e\u043f\u044b\u0442\u043a\u0435 \u043e\u0442\u043a\u0440\u044b\u0442\u044c\n\u0444\u0430\u0439\u043b, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0434\u043b\u044f \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0432\u044b\u0432\u043e\u0434\u0430 \u0432 \u043a\u043e\u043d\u0441\u043e\u043b\u044c. #: Editor.java:1116 About\ Arduino=\u041e\u0431 Arduino @@ -83,17 +83,20 @@ Arduino\ ARM\ (32-bits)\ Boards=\u041f\u043b\u0430\u0442\u044b Arduino ARM (32-b #: ../../../processing/app/I18n.java:82 Arduino\ AVR\ Boards=\u041f\u043b\u0430\u0442\u044b Arduino AVR +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0440\u0430\u0431\u043e\u0442\u0430\u0442\u044c, \u043f\u043e\u0442\u043e\u043c\u0443 \u0447\u0442\u043e \u043e\u043d \u043d\u0435 \u0441\u043c\u043e\u0433 \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u0430\u043f\u043a\u0443 \u0434\u043b\u044f \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043a. #: Base.java:1889 -Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0440\u0430\u0431\u043e\u0442\u0430\u0442\u044c, \u043f\u043e\u0442\u043e\u043c\u0443 \u0447\u0442\u043e \u043e\u043d \u043d\u0435 \u0441\u043c\u043e\u0433 \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u0430\u043f\u043a\u0443 \u0434\u043b\u044f \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f sketchbook. +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0440\u0430\u0431\u043e\u0442\u0430\u0442\u044c, \u043f\u043e\u0442\u043e\u043c\u0443 \u0447\u0442\u043e \u043e\u043d \u043d\u0435 \u0441\u043c\u043e\u0433 \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u0430\u043f\u043a\u0443 \u0434\u043b\u044f \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0432\u0430\u0448\u0438\u0445 \u0441\u043a\u0435\u0442\u0447\u0435\u0439. #: Base.java:240 Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino \u0442\u0440\u0435\u0431\u0443\u0435\u0442 \u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u043f\u043e\u043b\u043d\u044b\u0439 JDK (\u043d\u0435 \u0442\u043e\u043b\u044c\u043a\u043e JRE). \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0435 JDK 1.5 \u0438\u043b\u0438 \u0431\u043e\u043b\u0435\u0435 \u043d\u043e\u0432\u044b\u0439. \n\u0411\u043e\u043b\u0435\u0435 \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u0443\u044e \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043c\u043e\u0436\u043d\u043e \u043d\u0430\u0439\u0442\u0438 \u0432 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438. #: ../../../processing/app/EditorStatus.java:471 -!Arduino\:\ = +Arduino\:\ =Arduino\: #: Sketch.java:588 #, java-format @@ -103,28 +106,28 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u0412\u044b \u0434\u0435\u0439\u0 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u044d\u0442\u043e\u0442 \u044d\u0441\u043a\u0438\u0437? #: ../../../processing/app/Preferences.java:137 -!Armenian= +Armenian=\u0410\u0440\u043c\u044f\u043d\u0441\u043a\u0438\u0439 #: ../../../processing/app/Preferences.java:138 -!Asturian= +Asturian=\u0410\u0441\u0442\u0443\u0440\u0438\u0439\u0441\u043a\u0438\u0439 #: tools/AutoFormat.java:91 -!Auto\ Format= +Auto\ Format=\u0410\u0432\u0442\u043e\u0424\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 #: tools/AutoFormat.java:934 -!Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.= +Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=\u0410\u0432\u0442\u043e\u0424\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043f\u0440\u0435\u0440\u0432\u0430\u043d\u043e\: \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u043c\u043d\u043e\u0433\u043e \u043b\u0435\u0432\u044b\u0445 \u0444\u0438\u0433\u0443\u0440\u043d\u044b\u0445 \u0441\u043a\u043e\u0431\u043e\u043a. #: tools/AutoFormat.java:925 -!Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.= +Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=\u0410\u0432\u0442\u043e\u0424\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043f\u0440\u0435\u0440\u0432\u0430\u043d\u043e\: \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u043c\u043d\u043e\u0433\u043e \u043b\u0435\u0432\u044b\u0445 \u0441\u043a\u043e\u0431\u043e\u043a. #: tools/AutoFormat.java:931 -!Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.= +Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=\u0410\u0432\u0442\u043e\u0424\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043f\u0440\u0435\u0440\u0432\u0430\u043d\u043e\: \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u043c\u043d\u043e\u0433\u043e \u043f\u0440\u0430\u0432\u044b\u0445 \u0444\u0438\u0433\u0443\u0440\u043d\u044b\u0445 \u0441\u043a\u043e\u0431\u043e\u043a. #: tools/AutoFormat.java:922 -!Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.= +Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=\u0410\u0432\u0442\u043e\u0424\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043f\u0440\u0435\u0440\u0432\u0430\u043d\u043e\: \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u043c\u043d\u043e\u0433\u043e \u043f\u0440\u0430\u0432\u044b\u0445 \u0441\u043a\u043e\u0431\u043e\u043a. #: tools/AutoFormat.java:944 -!Auto\ Format\ finished.= +Auto\ Format\ finished.=\u0410\u0432\u0442\u043e\u0424\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043e. #: Preferences.java:439 Automatically\ associate\ .ino\ files\ with\ Arduino=\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0430\u0441\u0441\u043e\u0446\u0438\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0444\u0430\u0439\u043b\u044b .ino \u0441 Arduino @@ -140,7 +143,7 @@ Bad\ error\ line\:\ {0}=\u041f\u043b\u043e\u0445\u0430\u044f \u043e\u0448\u0438\ Bad\ file\ selected=\u042d\u0442\u043e \u043f\u043b\u043e\u0445\u043e\u0439 \u0444\u0430\u0439\u043b #: ../../../processing/app/Preferences.java:139 -!Belarusian= +Belarusian=\u0411\u0435\u043b\u043e\u0440\u0443\u0441\u0441\u043a\u0438\u0439 #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 @@ -151,10 +154,10 @@ Board=\u041f\u043b\u0430\u0442\u0430 !Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= #: ../../../processing/app/EditorStatus.java:472 -!Board\:\ = +Board\:\ =\u041f\u043b\u0430\u0442\u0430 #: ../../../processing/app/Preferences.java:140 -!Bosnian= +Bosnian=\u0411\u043e\u0441\u043d\u0438\u0439\u0441\u043a\u0438\u0439 #: SerialMonitor.java:112 Both\ NL\ &\ CR=\u041e\u0431\u0430 NL & CR @@ -172,10 +175,10 @@ Bulgarian=\u0411\u043e\u043b\u0433\u0430\u0440\u0441\u043a\u0438\u0439 - Bulgari !Burmese\ (Myanmar)= #: Editor.java:708 -!Burn\ Bootloader= +Burn\ Bootloader=\u0417\u0430\u043f\u0438\u0441\u0430\u0442\u044c \u0417\u0430\u0433\u0440\u0443\u0437\u0447\u0438\u043a #: Editor.java:2504 -!Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...= +Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u0431\u0443\u0442\u043b\u043e\u0430\u0434\u0435\u0440\u0430 \u0432 \u043f\u043b\u0430\u0442\u0443 (\u044d\u0442\u043e \u043c\u043e\u0436\u0435\u0442 \u0437\u0430\u043d\u044f\u0442\u044c \u043c\u0438\u043d\u0443\u0442\u0443)... #: ../../../processing/app/Base.java:368 Can't\ open\ source\ sketch\!=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043e\u0442\u043a\u0440\u044b\u0442\u044c \u044d\u0441\u043a\u0438\u0437\! @@ -200,16 +203,16 @@ Catalan=\u041a\u0430\u0442\u0430\u043b\u043e\u043d\u0441\u043a\u0438\u0439 - Cat Check\ for\ updates\ on\ startup=\u041f\u0440\u043e\u0432\u0435\u0440\u044f\u0442\u044c \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u043f\u0440\u0438 \u0437\u0430\u043f\u0443\u0441\u043a\u0435 #: ../../../processing/app/Preferences.java:142 -!Chinese\ (China)= +Chinese\ (China)=\u041a\u0438\u0442\u0430\u0439\u0441\u043a\u0438\u0439 (\u041a\u0438\u0442\u0430\u0439) #: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= +Chinese\ (Hong\ Kong)=\u041a\u0438\u0442\u0430\u0439\u0441\u043a\u0438\u0439 (\u0413\u043e\u043d\u043a\u043e\u043d\u0433) #: ../../../processing/app/Preferences.java:144 -!Chinese\ (Taiwan)= +Chinese\ (Taiwan)=\u041a\u0438\u0442\u0430\u0439\u0441\u043a\u0438\u0439 (\u0422\u0430\u0439\u0432\u0430\u043d\u044c) #: ../../../processing/app/Preferences.java:143 -!Chinese\ (Taiwan)\ (Big5)= +Chinese\ (Taiwan)\ (Big5)=\u041a\u0438\u0442\u0430\u0439\u0441\u043a\u0438\u0439 (\u0422\u0430\u0439\u0432\u0430\u043d\u044c) (Big5) #: Preferences.java:88 Chinese\ Simplified=\u041a\u0438\u0442\u0430\u0439\u0441\u043a\u0438\u0439 \u0443\u043f\u0440\u043e\u0449\u0451\u043d\u043d\u044b\u0439 - Chinese Simplified @@ -240,7 +243,7 @@ Copy=\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c Copy\ as\ HTML=\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432 HTML #: ../../../processing/app/EditorStatus.java:455 -!Copy\ error\ messages= +Copy\ error\ messages=\u0421\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u043e\u0431 \u043e\u0448\u0438\u0431\u043a\u0435 #: Editor.java:1165 Editor.java:2715 Copy\ for\ Forum=\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0434\u043b\u044f \u0444\u043e\u0440\u0443\u043c\u0430 @@ -250,7 +253,7 @@ Copy\ for\ Forum=\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u Could\ not\ add\ ''{0}''\ to\ the\ sketch.=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c ''{0}'' \u0432 \u044d\u0441\u043a\u0438\u0437. #: Editor.java:2188 -!Could\ not\ copy\ to\ a\ proper\ location.= +Could\ not\ copy\ to\ a\ proper\ location.=\u041d\u0435 \u043c\u043e\u0433\u0443 \u0441\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432 \u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e\u0435 \u043c\u0435\u0441\u0442\u043e #: Editor.java:2179 Could\ not\ create\ the\ sketch\ folder.=\u041f\u0430\u043f\u043a\u0430 \u0434\u043b\u044f \u044d\u0441\u043a\u0438\u0437\u043e\u0432 \u043d\u0435 \u0441\u043e\u0437\u0434\u0430\u0451\u0442\u0441\u044f. @@ -276,7 +279,7 @@ Could\ not\ delete\ {0}={0} \u043d\u0435 \u0443\u0434\u0430\u043b\u044f\u0435\u0 #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 #, java-format -!Could\ not\ find\ tool\ {0}= +Could\ not\ find\ tool\ {0}=\u041d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442 {0} #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 #, java-format @@ -315,7 +318,7 @@ Could\ not\ remove\ old\ version\ of\ {0}=\u0421\u0442\u0430\u0440\u0430\u044f \ Could\ not\ rename\ "{0}"\ to\ "{1}"="{0}" \u0432 "{1}" \u043d\u0435 \u043f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u044b\u0432\u0430\u0435\u0442\u0441\u044f #: Sketch.java:475 -Could\ not\ rename\ the\ sketch.\ (0)=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u0442\u044c \u044d\u0441\u043a\u0438\u0437. (0) +Could\ not\ rename\ the\ sketch.\ (0)=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u0442\u044c \u0441\u043a\u0435\u0442\u0447. (0) #: Sketch.java:496 Could\ not\ rename\ the\ sketch.\ (1)=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u0442\u044c \u044d\u0441\u043a\u0438\u0437. (1) @@ -337,7 +340,7 @@ Couldn't\ determine\ program\ size\:\ {0}=\u041d\u0435 \u0443\u0434\u0430\u043b\ Couldn't\ do\ it=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u044d\u0442\u043e \u0441\u0434\u0435\u043b\u0430\u0442\u044c #: debug/BasicUploader.java:209 -!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.= +Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=\u041d\u0435 \u043f\u043e\u043b\u0443\u0447\u0430\u0435\u0442\u0441\u044f \u0443\u0432\u0438\u0434\u0435\u0442\u044c \u041f\u043b\u0430\u0442\u0443 \u043d\u0430 \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u043e\u043c \u043f\u043e\u0440\u0442\u0443. \u041f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435, \u0447\u0442\u043e \u0432\u044b \u0432\u044b\u0431\u0440\u0430\u043b\u0438 \u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u044b\u0439 \u043f\u043e\u0440\u0442. \u0415\u0441\u043b\u0438 \u043f\u043e\u0440\u0442 \u0432\u044b\u0431\u0440\u0430\u043d \u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e, \u043f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u043d\u0430\u0436\u0430\u0442\u044c \u043a\u043d\u043e\u043f\u043a\u0443 reset \u043d\u0430 \u043f\u043b\u0430\u0442\u0435 \u043f\u043e\u0441\u043b\u0435 \u043d\u0430\u0447\u0430\u043b\u0430 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438 #: ../../../processing/app/Preferences.java:82 Croatian=\u0425\u043e\u0440\u0432\u0430\u0442\u0441\u043a\u0438\u0439 - Croatian @@ -358,13 +361,13 @@ Decrease\ Indent=\u0423\u043c\u0435\u043d\u044c\u0448\u0438\u0442\u044c \u043e\u Delete=\u0423\u0434\u0430\u043b\u0438\u0442\u044c #: debug/Uploader.java:199 -!Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting= +Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=\u041f\u043b\u0430\u0442\u0430 \u043d\u0435 \u043e\u0442\u0432\u0435\u0447\u0430\u0435\u0442, \u043f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435 \u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u0432\u044b\u0431\u043e\u0440\u0430 \u043f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u043f\u043e\u0440\u0442\u0430 \u0438/\u0438\u043b\u0438 \u043d\u0430\u0436\u043c\u0438\u0442\u0435 RESET \u043d\u0430 \u043f\u043b\u0430\u0442\u0435 \u043f\u0435\u0440\u0435\u0434 \u044d\u043a\u0441\u043f\u043e\u0440\u0442\u043e\u043c #: tools/FixEncoding.java:57 -!Discard\ all\ changes\ and\ reload\ sketch?= +Discard\ all\ changes\ and\ reload\ sketch?=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0432\u0441\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0438 \u043f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u0441\u043a\u0435\u0442\u0447? #: ../../../processing/app/Preferences.java:438 -!Display\ line\ numbers= +Display\ line\ numbers=\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u043d\u043e\u043c\u0435\u0440\u0430 \u0441\u0442\u0440\u043e\u043a #: Editor.java:2064 Don't\ Save=\u041d\u0435 \u0441\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c @@ -373,7 +376,7 @@ Don't\ Save=\u041d\u0435 \u0441\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c Done\ Saving.=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u043b\u0438. #: Editor.java:2510 -!Done\ burning\ bootloader.= +Done\ burning\ bootloader.=\u0417\u0430\u043f\u0438\u0441\u044c \u0437\u0430\u0433\u0440\u0443\u0437\u0447\u0438\u043a\u0430 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0430 #: Editor.java:1911 Editor.java:1928 Done\ compiling.=\u041a\u043e\u043c\u043f\u0438\u043b\u044f\u0446\u0438\u044f \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0430 @@ -406,7 +409,7 @@ English=\u0410\u043d\u0433\u043b\u0438\u0439\u0441\u043a\u0438\u0439 - English !English\ (United\ Kingdom)= #: Editor.java:1062 -!Environment= +Environment=\u041e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u0435 #: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481 #: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543 @@ -427,7 +430,7 @@ Error\ getting\ the\ Arduino\ data\ folder.=\u041e\u0448\u0438\u0431\u043a\u0430 !Error\ inside\ Serial.{0}()= #: ../../../processing/app/Base.java:1232 -!Error\ loading\ libraries= +Error\ loading\ libraries=\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0435 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a #: ../../../processing/app/debug/TargetPlatform.java:95 #: ../../../processing/app/debug/TargetPlatform.java:106 @@ -437,7 +440,7 @@ Error\ getting\ the\ Arduino\ data\ folder.=\u041e\u0448\u0438\u0431\u043a\u0430 #: Serial.java:181 #, java-format -!Error\ opening\ serial\ port\ ''{0}''.= +Error\ opening\ serial\ port\ ''{0}''.=\u041e\u0448\u0438\u0431\u043a\u0430 \u043e\u0442\u043a\u0440\u044b\u0442\u0438\u044f \u043f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u043f\u043e\u0440\u0442\u0430 "{0}" #: Preferences.java:277 Error\ reading\ preferences=\u041e\u0448\u0438\u0431\u043a\u0430 \u0447\u0442\u0435\u043d\u0438\u044f \u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043a @@ -451,10 +454,10 @@ Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ r #: Serial.java:125 #, java-format -!Error\ touching\ serial\ port\ ''{0}''.= +Error\ touching\ serial\ port\ ''{0}''.=\u041e\u0448\u0438\u0431\u043a\u0430 \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u043f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u043f\u043e\u0440\u0442\u0430 "{0}" #: Editor.java:2512 Editor.java:2516 Editor.java:2520 -!Error\ while\ burning\ bootloader.= +Error\ while\ burning\ bootloader.=\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0437\u0430\u043f\u0438\u0441\u0438 \u0437\u0430\u0433\u0440\u0443\u0437\u0447\u0438\u043a\u0430 #: ../../../processing/app/Editor.java:2555 !Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= @@ -474,13 +477,13 @@ Error\ while\ printing.=\u041d\u0435 \u043d\u0430\u043f\u0435\u0447\u0430\u0442\ Estonian=\u042d\u0441\u0442\u043e\u043d\u0441\u043a\u0438\u0439 - Estonian #: ../../../processing/app/Preferences.java:146 -!Estonian\ (Estonia)= +Estonian\ (Estonia)=\u042d\u0441\u0442\u043e\u043d\u0441\u043a\u0438\u0439 (\u042d\u0441\u0442\u043e\u043d\u0438\u044f) #: Editor.java:516 Examples=\u041e\u0431\u0440\u0430\u0437\u0446\u044b #: Editor.java:2482 -!Export\ canceled,\ changes\ must\ first\ be\ saved.= +Export\ canceled,\ changes\ must\ first\ be\ saved.=\u042d\u043a\u0441\u043f\u043e\u0440\u0442 \u043e\u0442\u043c\u0435\u043d\u0435\u043d, \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0434\u043e\u043b\u0436\u043d\u044b \u0431\u044b\u0442\u044c \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u044b. #: Base.java:2100 FAQ.html=FAQ.html @@ -501,7 +504,7 @@ Find\ Next=\u041d\u0430\u0439\u0442\u0438 \u0434\u0430\u043b\u0435\u0435 Find\ Previous=\u041d\u0430\u0439\u0442\u0438 \u043f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0435\u0435 #: Editor.java:1086 Editor.java:2775 -!Find\ in\ Reference= +Find\ in\ Reference=\u041d\u0430\u0439\u0442\u0438 \u0432 \u0441\u043f\u0440\u0430\u0432\u043e\u0447\u043d\u0438\u043a\u0435 #: Editor.java:1234 Find...=\u041d\u0430\u0439\u0442\u0438... @@ -510,23 +513,23 @@ Find...=\u041d\u0430\u0439\u0442\u0438... Find\:=\u0427\u0442\u043e\: #: ../../../processing/app/Preferences.java:147 -!Finnish= +Finnish=\u0424\u0438\u043d\u0441\u043a\u0438\u0439 #: tools/FixEncoding.java:41 tools/FixEncoding.java:58 #: tools/FixEncoding.java:79 -!Fix\ Encoding\ &\ Reload= +Fix\ Encoding\ &\ Reload=\u0418\u0441\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0443 \u0438 \u043f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c. #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=\u0417\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0435\u0439 \u043f\u043e \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0435 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a, \u043a\u0443\u0440\u0438\u0442\u044c\: http\://arduino.cc/en/Guide/Libraries\n #: debug/BasicUploader.java:80 -!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ = +Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =\u041f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u043f\u043b\u0430\u0442\u044b \u043e\u0442\u043a\u0440\u044b\u0442\u0438\u0435\u043c/\u0437\u0430\u043a\u0440\u044b\u0442\u0438\u0435\u043c \u043f\u043e\u0440\u0442\u0430 \u043d\u0430 1200bps #: Preferences.java:95 French=\u0424\u0440\u0430\u043d\u0446\u0443\u0437\u0441\u043a\u0438\u0439 - French #: Editor.java:1097 -!Frequently\ Asked\ Questions= +Frequently\ Asked\ Questions=\u0427\u0430\u0441\u0442\u043e \u0417\u0430\u0434\u0430\u0432\u0430\u0435\u043c\u044b\u0435 \u0412\u043e\u043f\u0440\u043e\u0441\u044b #: Preferences.java:96 Galician=\u0413\u0430\u043b\u0438\u0441\u0438\u0439\u0441\u043a\u0438\u0439 - Galician @@ -538,7 +541,7 @@ Georgian=\u0413\u0440\u0443\u0437\u0438\u043d\u0441\u043a\u0438\u0439 - Georgian German=\u041d\u0435\u043c\u0435\u0446\u043a\u0438\u0439 - German #: Editor.java:1054 -!Getting\ Started= +Getting\ Started=\u041d\u0430\u0447\u0438\u043d\u0430\u044e\u0449\u0438\u043c #: ../../../processing/app/Sketch.java:1646 #, java-format @@ -625,7 +628,7 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=\u0411\u043 Lithuaninan=\u041b\u0438\u0442\u043e\u0432\u0441\u043a\u0438\u0439 - Lithuaninan #: ../../../processing/app/Sketch.java:1660 -!Low\ memory\ available,\ stability\ problems\ may\ occur= +Low\ memory\ available,\ stability\ problems\ may\ occur=\u041c\u0430\u043b\u043e \u043f\u0430\u043c\u044f\u0442\u0438, \u043c\u043e\u0433\u0443\u0442 \u0432\u043e\u0437\u043d\u0438\u043a\u043d\u0443\u0442\u044c \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b \u0441\u043e \u0441\u0442\u0430\u0431\u0438\u043b\u044c\u043d\u043e\u0441\u0442\u044c\u044e #: Preferences.java:107 Marathi=M\u0430\u0440\u0430\u0442\u0445\u0438 - Marathi @@ -676,10 +679,10 @@ No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu !No\ changes\ necessary\ for\ Auto\ Format.= #: Editor.java:373 -!No\ files\ were\ added\ to\ the\ sketch.= +No\ files\ were\ added\ to\ the\ sketch.=\u0424\u0430\u0439\u043b\u044b \u043d\u0435 \u0431\u044b\u043b\u0438 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u044b \u0432 \u0441\u043a\u0435\u0442\u0447 #: Platform.java:167 -!No\ launcher\ available= +No\ launcher\ available=\u0417\u0430\u0433\u0440\u0443\u0437\u0447\u0438\u043a \u043d\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u0435\u043d #: SerialMonitor.java:112 No\ line\ ending=\u041d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d \u043a\u043e\u043d\u0435\u0446 \u0441\u0442\u0440\u043e\u043a\u0438 @@ -689,7 +692,7 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u0414\u0430 \u0445\u043e\u0 #: Editor.java:1872 #, java-format -!No\ reference\ available\ for\ "{0}"= +No\ reference\ available\ for\ "{0}"=\u0412 \u0441\u043f\u0440\u0430\u0432\u043e\u0447\u043d\u0438\u043a\u0435 \u043d\u0435\u0442 \u043d\u0438\u0447\u0435\u0433\u043e \u043f\u043e\u0445\u043e\u0436\u0435\u0433\u043e \u043d\u0430 "{0}" #: ../../../processing/app/Base.java:309 !No\ valid\ configured\ cores\ found\!\ Exiting...= @@ -736,7 +739,7 @@ Open...=\u041e\u0442\u043a\u0440\u044b\u0442\u044c... Page\ Setup=\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b #: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 -!Password\:= +Password\:=\u041f\u0430\u0440\u043e\u043b\u044c\: #: Editor.java:1189 Editor.java:2731 Paste=\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c @@ -754,16 +757,16 @@ Please\ install\ JDK\ 1.5\ or\ later=\u041f\u043e\u0436\u0430\u043b\u0443\u0439\ Polish=\u041f\u043e\u043b\u044c\u0441\u043a\u0438\u0439 - #: ../../../processing/app/Editor.java:718 -!Port= +Port=\u041f\u043e\u0440\u0442 #: ../../../processing/app/Preferences.java:151 -!Portugese= +Portugese=\u041f\u043e\u0440\u0442\u0443\u0433\u0430\u043b\u044c\u0441\u043a\u0438\u0439 #: ../../../processing/app/Preferences.java:127 -!Portuguese\ (Brazil)= +Portuguese\ (Brazil)=\u041f\u043e\u0440\u0442\u0443\u0433\u0430\u043b\u044c\u0441\u043a\u0438\u0439 (\u0411\u0440\u0430\u0437\u0438\u043b\u0438\u044f) #: ../../../processing/app/Preferences.java:128 -!Portuguese\ (Portugal)= +Portuguese\ (Portugal)=\u041f\u043e\u0440\u0442\u0443\u0433\u0430\u043b\u044c\u0441\u043a\u0438\u0439 (\u041f\u043e\u0440\u0442\u0443\u0433\u0430\u043b\u0438\u044f) #: Preferences.java:295 Editor.java:583 Preferences=\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 @@ -796,7 +799,7 @@ Problem\ Setting\ the\ Platform=\u041e\u0448\u0438\u0431\u043a\u0430 \u043d\u043 !Problem\ accessing\ board\ folder\ /www/sd= #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 -!Problem\ accessing\ files\ in\ folder\ = +Problem\ accessing\ files\ in\ folder\ =\u041f\u0440\u043e\u0431\u043b\u0435\u043c\u0430 \u0441 \u0434\u043e\u0441\u0442\u0443\u043f\u043e\u043c \u043a \u0444\u0430\u0439\u043b\u0430\u043c \u0432 \u043f\u0430\u043f\u043a\u0435 #: Base.java:1673 Problem\ getting\ data\ folder=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u043f\u0430\u043f\u043a\u0443 \u0441 \u0434\u0430\u043d\u043d\u044b\u043c\u0438 @@ -811,9 +814,6 @@ Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troublesh #: Sketch.java:355 Sketch.java:362 Sketch.java:373 Problem\ with\ rename=\u041d\u0435 \u043f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u044b\u0432\u0430\u0435\u0442\u0441\u044f -#: Editor.java:2137 -!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= - #: ../../../processing/app/I18n.java:86 Processor=\u041f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0440 @@ -827,7 +827,7 @@ Quit=\u0412\u044b\u0445\u043e\u0434 Redo=\u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u044c #: Editor.java:1078 -!Reference= +Reference=\u0421\u043f\u0440\u0430\u0432\u043e\u0447\u043d\u0438\u043a #: EditorHeader.java:300 Rename=\u041f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u0442\u044c @@ -890,7 +890,7 @@ Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0444\u0430\u0439\u043b, \u0447\u0442\u043e\u0431 \u0441\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0435\u0433\u043e \u0432 \u0432\u0430\u0448 \u044d\u0441\u043a\u0438\u0437 #: Preferences.java:330 -Select\ new\ sketchbook\ location=\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u043d\u043e\u0432\u043e\u0435 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 Sketchbook +Select\ new\ sketchbook\ location=\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u043d\u043e\u0432\u043e\u0435 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u043f\u0430\u043f\u043a\u0438 \u0441\u043a\u0435\u0442\u0447\u0435\u0439 #: ../../../processing/app/debug/Compiler.java:146 !Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).= @@ -911,7 +911,7 @@ Serial\ Monitor=\u041c\u043e\u043d\u0438\u0442\u043e\u0440 \u043f\u043e\u0441\u0 #: Serial.java:194 #, java-format -!Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?= +Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=\u041f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u043f\u043e\u0440\u0442 ''{0}'' \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442. \u0412\u044b \u0432\u044b\u0431\u0440\u0430\u043b\u0438 \u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u044b\u0439 \u0432 \u043c\u0435\u043d\u044e \u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b > \u041f\u043e\u0440\u0442 ? #: Editor.java:2343 #, java-format @@ -924,7 +924,7 @@ Settings\ issues=\u041f\u0440\u043e\u0431\u043b\u0435\u043c\u044b \u0432 \u043d\ Show\ Sketch\ Folder=\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u043f\u0430\u043f\u043a\u0443 \u044d\u0441\u043a\u0438\u0437\u0430 #: ../../../processing/app/EditorStatus.java:468 -!Show\ verbose\ output\ during\ compilation= +Show\ verbose\ output\ during\ compilation=\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c \u0432\u044b\u0432\u043e\u0434 \u0432\u043e \u0432\u0440\u0435\u043c\u044f \u043a\u043e\u043c\u043f\u0438\u043b\u044f\u0446\u0438\u0438 #: Preferences.java:387 Show\ verbose\ output\ during\:\ =\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u044b\u0439 \u0432\u044b\u0432\u043e\u0434\: @@ -936,16 +936,16 @@ Sketch=\u042d\u0441\u043a\u0438\u0437 Sketch\ Disappeared=\u042d\u0441\u043a\u0438\u0437 \u043f\u0440\u043e\u043f\u0430\u043b #: Base.java:1411 -Sketch\ Does\ Not\ Exist=\u042d\u0441\u043a\u0438\u0437 \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442 +Sketch\ Does\ Not\ Exist=\u0421\u043a\u0435\u0442\u0447 \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442 #: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966 Sketch\ is\ Read-Only=\u042d\u0441\u043a\u0438\u0437\u044b \u0442\u043e\u043b\u044c\u043a\u043e \u0434\u043b\u044f \u0447\u0442\u0435\u043d\u0438\u044f #: Sketch.java:294 -Sketch\ is\ Untitled=\u042d\u0441\u043a\u0438\u0437 \u043d\u0435 \u043d\u0430\u0437\u0432\u0430\u043d +Sketch\ is\ Untitled=\u041d\u0435 \u0437\u0430\u0434\u0430\u043d\u043e \u0438\u043c\u044f \u0441\u043a\u0435\u0442\u0447\u0430 #: Sketch.java:720 -Sketch\ is\ read-only=\u042d\u0441\u043a\u0438\u0437 \u0442\u043e\u043b\u044c\u043a\u043e \u0434\u043b\u044f \u0447\u0442\u0435\u043d\u0438\u044f +Sketch\ is\ read-only=\u0421\u043a\u0435\u0442\u0447 \u0442\u043e\u043b\u044c\u043a\u043e \u0434\u043b\u044f \u0447\u0442\u0435\u043d\u0438\u044f #: Sketch.java:1653 Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=\u042d\u0441\u043a\u0438\u0437 \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u0431\u043e\u043b\u044c\u0448\u043e\u0439; \u0433\u043b\u044f\u043d\u044c http\://www.arduino.cc/en/Guide/Troubleshooting\#size \u0434\u043b\u044f \u0441\u043e\u0432\u0435\u0442\u043e\u0432 \u043f\u043e \u0434\u0438\u0435\u0442\u0435. @@ -955,13 +955,13 @@ Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ f !Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.= #: Editor.java:510 -!Sketchbook= +Sketchbook=\u041f\u0430\u043f\u043a\u0430 \u0441\u043e \u0441\u043a\u0435\u0442\u0447\u0430\u043c\u0438 #: Base.java:258 Sketchbook\ folder\ disappeared=\u0418\u0441\u0447\u0435\u0437\u043b\u0430 \u043f\u0430\u043f\u043a\u0430 Sketchbook #: Preferences.java:315 -Sketchbook\ location\:=\u0420\u0430\u0437\u043c\u0435\u0449\u0435\u043d\u0438\u0435 Sketchbook +Sketchbook\ location\:=\u0420\u0430\u0437\u043c\u0435\u0449\u0435\u043d\u0438\u0435 \u043f\u0430\u043f\u043a\u0438 \u0441\u043a\u0435\u0442\u0447\u0435\u0439 #: ../../../processing/app/Base.java:785 !Sketches\ (*.ino,\ *.pde)= @@ -986,7 +986,7 @@ Spanish=\u0418\u0441\u043f\u0430\u043d\u0441\u043a\u0438\u0439 - Spanish Sunshine=\u0421\u043e\u043b\u043d\u0435\u0447\u043d\u044b\u0439 \u0441\u0432\u0435\u0442 #: ../../../processing/app/Preferences.java:153 -!Swedish= +Swedish=\u0428\u0432\u0435\u0434\u0441\u043a\u0438\u0439 #: Preferences.java:84 System\ Default=\u0421\u0438\u0441\u0442\u0435\u043c\u0430 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e @@ -1052,7 +1052,7 @@ Time\ for\ a\ Break=\u041f\u043e\u0440\u0430 \u043d\u0430 \u043f\u0435\u0440\u04 Tools=\u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b #: Editor.java:1070 -!Troubleshooting= +Troubleshooting=\u0420\u0435\u0448\u0435\u043d\u0438\u0435 \u043f\u0440\u043e\u0431\u043b\u0435\u043c #: ../../../processing/app/Preferences.java:117 Turkish=\u0422\u0443\u0440\u0435\u0446\u043a\u0438\u0439 - Turkish @@ -1093,13 +1093,13 @@ Undo=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c Update=\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 #: Preferences.java:428 -Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0444\u0430\u0439\u043b\u044b \u044d\u0441\u043a\u0438\u0437\u043e\u0432 \u0432 \u043d\u043e\u0432\u044b\u0439 \u0444\u043e\u0440\u043c\u0430\u0442 (.pde -> .ino) +Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0444\u0430\u0439\u043b\u044b \u0441\u043a\u0435\u0442\u0447\u0435\u0439 \u0432 \u043d\u043e\u0432\u044b\u0439 \u0444\u043e\u0440\u043c\u0430\u0442 (.pde -> .ino) #: EditorToolbar.java:41 Editor.java:545 Upload=\u0412\u0433\u0440\u0443\u0437\u0438\u0442\u044c #: EditorToolbar.java:46 Editor.java:553 -Upload\ Using\ Programmer=\u0412\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u0447\u0435\u0440\u0435\u0437 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0430\u0442\u043e\u0440 +Upload\ Using\ Programmer=\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u0447\u0435\u0440\u0435\u0437 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0430\u0442\u043e\u0440 #: Editor.java:2403 Editor.java:2439 Upload\ canceled.=\u0412\u0433\u0440\u0443\u0437\u043a\u0430 \u043e\u0442\u043c\u0435\u043d\u0435\u043d\u0430. @@ -1134,10 +1134,10 @@ Verify=\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c Verify\ /\ Compile=\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c / \u0421\u043a\u043e\u043c\u043f\u0438\u043b\u0438\u0440\u043e\u0432\u0430\u0442\u044c #: Preferences.java:400 -Verify\ code\ after\ upload=\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u043a\u043e\u0434 \u043f\u043e\u0441\u043b\u0435 \u0432\u0433\u0440\u0443\u0437\u043a\u0438 +Verify\ code\ after\ upload=\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c \u043a\u043e\u0434 \u043f\u043e\u0441\u043b\u0435 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438 #: ../../../processing/app/Preferences.java:154 -!Vietnamese= +Vietnamese=\u0412\u044c\u0435\u0442\u043d\u0430\u043c\u0441\u043a\u0438\u0439 #: Editor.java:1105 Visit\ Arduino.cc=\u041f\u043e\u0441\u0435\u0442\u0438\u0442\u044c Arduino.cc @@ -1146,7 +1146,7 @@ Visit\ Arduino.cc=\u041f\u043e\u0441\u0435\u0442\u0438\u0442\u044c Arduino.cc Warning=\u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0435 #: debug/Compiler.java:444 -!Wire.receive()\ has\ been\ renamed\ Wire.read().= +Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() \u043f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d\u043e \u0432 Wire.read(). #: debug/Compiler.java:438 Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() \u0431\u044b\u043b \u043f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d \u0432 Wire.write(). @@ -1196,7 +1196,7 @@ Zip\ doesn't\ contain\ a\ library=\u0412 \u044d\u0442\u043e\u0439 ZIP-\u043f\u04 #: SketchCode.java:258 #, java-format -"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u043d\u0435\u0440\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d\u043d\u044b\u0435 \u0441\u0438\u043c\u0432\u043e\u043b\u044b. \u0415\u0441\u043b\u0438 \u044d\u0442\u043e\u0442 \u043a\u043e\u0434 \u0431\u044b\u043b \u0441\u043e\u0437\u0434\u0430\u043d \u0432 \u0431\u043e\u043b\u0435\u0435 \u0441\u0442\u0430\u0440\u043e\u0439 \u0432\u0435\u0440\u0441\u0438\u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u044b, \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e, \u043f\u043e\u043c\u043e\u0436\u0435\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0421\u0435\u0440\u0432\u0438\u0441 -> \u0418\u0441\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0443 \u0418 \u041f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c, - \u0447\u0442\u043e\u0431\u044b \u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0441\u043a\u0435\u0442\u0447 \u0432 \u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0435 UTF-8. \u0415\u0441\u043b\u0438 \u043d\u0435\u0442, \u0442\u043e, \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e, \u043f\u043e\u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u043f\u043b\u043e\u0445\u0438\u0435 \u0441\u0438\u043c\u0432\u043e\u043b\u044b, \u0447\u0442\u043e\u0431\u044b \u0438\u0437\u0431\u0430\u0432\u0438\u0442\u044c\u0441\u044f \u043e\u0442 \u044d\u0442\u043e\u0433\u043e \u043f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u044f. +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 !\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n= @@ -1280,7 +1280,7 @@ removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: \u0432\u043 !the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected= #: Preferences.java:391 -upload=\u0412\u0433\u0440\u0443\u0437\u0438\u0442\u044c +upload=\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c #: Editor.java:380 #, java-format diff --git a/arduino-core/src/processing/app/i18n/Resources_sl_SI.po b/arduino-core/src/processing/app/i18n/Resources_sl_SI.po index 9342d8d09..522be5641 100644 --- a/arduino-core/src/processing/app/i18n/Resources_sl_SI.po +++ b/arduino-core/src/processing/app/i18n/Resources_sl_SI.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/projects/p/arduino-ide-15/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -138,6 +138,12 @@ msgstr "Arduino ARM (32-bits) Plošče" msgid "Arduino AVR Boards" msgstr "Arduino AVR Plošče" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -436,7 +442,7 @@ msgstr "Skice ni bilo mogoče ponovno shraniti" msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "Privzeti nastavitev ni bilo mogoče prebrati.⏎\nMoral/a boš ponovno naložiti Arduino." +msgstr "" #: Preferences.java:219 msgid "" @@ -1139,12 +1145,6 @@ msgstr "Težava pri nalaganju na ploščico. Za predloge poglej na http://www.ar msgid "Problem with rename" msgstr "Problem pri preimenovanju" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "Arduino lahko odpre le lastne skice⏎ in ostale datoteke, ki se končajo na .ino ali .pde" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "Procesor" @@ -1712,10 +1712,10 @@ msgstr "\".{0}\" ni veljavna končnica." #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." -msgstr "\"{0}\" vsebuje nepoznane znake. Če je ta koda bila ustvarjena s starejšo različico Arduina, uporabi Orodja -> Popravi kodiranje in ponovno naloži za po posodobitev skice v UTF-8 kodiranje. Druga možnost je da izbrišeš neveljavne znake, če se želiš znebiti tega opozorila." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." +msgstr "" #: debug/Compiler.java:409 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_sl_SI.properties b/arduino-core/src/processing/app/i18n/Resources_sl_SI.properties index a2747f1c9..6fe449e03 100644 --- a/arduino-core/src/processing/app/i18n/Resources_sl_SI.properties +++ b/arduino-core/src/processing/app/i18n/Resources_sl_SI.properties @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # \u010crtomir Gorup , 2012. # -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Slovenian (Slovenia) (http\://www.transifex.com/projects/p/arduino-ide-15/language/sl_SI/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: sl_SI\nPlural-Forms\: nplurals\=4; plural\=(n%100\=\=1 ? 0 \: n%100\=\=2 ? 1 \: n%100\=\=3 || n%100\=\=4 ? 2 \: 3);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Slovenian (Slovenia) (http\://www.transifex.com/projects/p/arduino-ide-15/language/sl_SI/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: sl_SI\nPlural-Forms\: nplurals\=4; plural\=(n%100\=\=1 ? 0 \: n%100\=\=2 ? 1 \: n%100\=\=3 || n%100\=\=4 ? 2 \: 3);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(potreben je ponovni zagon Arduino okolja) @@ -83,6 +83,9 @@ Arduino\ ARM\ (32-bits)\ Boards=Arduino ARM (32-bits) Plo\u0161\u010de #: ../../../processing/app/I18n.java:82 Arduino\ AVR\ Boards=Arduino AVR Plo\u0161\u010de +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino se ne more zagnati, ker ni mogel\u23ce ustvariti mape za shranjevanje tvojih nastavitev. @@ -297,7 +300,7 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=Skice ni bilo mogo\u010de ponovno shraniti #: Theme.java:52 -Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Privzeti nastavitev ni bilo mogo\u010de prebrati.\u23ce\nMoral/a bo\u0161 ponovno nalo\u017eiti Arduino. +!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Privzeti nastavitev ni bilo mogo\u010de prebrati.\u23ce\nMoral/a bo\u0161 ponovno nalo\u017eiti Arduino. @@ -811,9 +814,6 @@ Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troublesh #: Sketch.java:355 Sketch.java:362 Sketch.java:373 Problem\ with\ rename=Problem pri preimenovanju -#: Editor.java:2137 -Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Arduino lahko odpre le lastne skice\u23ce in ostale datoteke, ki se kon\u010dajo na .ino ali .pde - #: ../../../processing/app/I18n.java:86 Processor=Procesor @@ -1196,7 +1196,7 @@ Zip\ doesn't\ contain\ a\ library=Zip ne vsebuje knji\u017enice #: SketchCode.java:258 #, java-format -"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" vsebuje nepoznane znake. \u010ce je ta koda bila ustvarjena s starej\u0161o razli\u010dico Arduina, uporabi Orodja -> Popravi kodiranje in ponovno nalo\u017ei za po posodobitev skice v UTF-8 kodiranje. Druga mo\u017enost je da izbri\u0161e\u0161 neveljavne znake, \u010de se \u017eeli\u0161 znebiti tega opozorila. +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 \nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nOd Arduino 0019 naprej je Ethernet knji\u017enica odvisna od SPI knji\u017enice.\u23ce\nZgleda, da uporablja\u0161 Ethernet ali drugo knji\u017enico, ki je odvisna od SPI knji\u017enice.\u23ce\n\u23ce\n diff --git a/arduino-core/src/processing/app/i18n/Resources_sq.po b/arduino-core/src/processing/app/i18n/Resources_sq.po index 9a9046f93..595e74b30 100644 --- a/arduino-core/src/processing/app/i18n/Resources_sq.po +++ b/arduino-core/src/processing/app/i18n/Resources_sq.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/arduino-ide-15/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,11 +23,11 @@ msgstr "(kerkohet rinisja e Arduinos)" #: debug/Compiler.java:455 msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "" +msgstr "\"Tastiera\" perkrahet vetem ne Arduino Leonardo" #: debug/Compiler.java:450 msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "" +msgstr "\"Miu\" perkrahet vetem ne Arduino Leonardo" #: Preferences.java:478 msgid "(edit only when Arduino is not running)" @@ -77,7 +77,7 @@ msgstr "Nje version i ri i arduinos eshte i mundur,\ndo te deshironit te viziton msgid "" "A problem occurred while trying to open the\n" "files used to store the console output." -msgstr "" +msgstr "Nje problem ndodhi gjate hapjes se\nskedareve te perdorur per te ruajtur daljen e panelit te komandimit." #: Editor.java:1116 msgid "About Arduino" @@ -93,20 +93,20 @@ msgstr "Shto librari..." #: ../../../processing/app/Preferences.java:96 msgid "Albanian" -msgstr "" +msgstr "Shqip" #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" "Do not attempt to save this sketch as it may overwrite\n" "the old version. Use Open to re-open the sketch and try again.\n" -msgstr "" +msgstr "Ndodhi një gabim gjatë enkodimit të rregullimit të dosjes.\nMos e provo ta ruash këtë skicë sepse mund të mbishkruhet\nmbi versionin e vjetër. Përdor Open për të rihapur skicën dhe provoje sërish.\n" #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" "platform-specific code for your machine." -msgstr "" +msgstr "Nje problem i panjohur ndodhi gjate ngarkimit\nte nje platforme-specifike te koduar per paisjen tuaj." #: Preferences.java:85 msgid "Arabic" @@ -114,7 +114,7 @@ msgstr "Arabisht" #: Preferences.java:86 msgid "Aragonese" -msgstr "" +msgstr "Aragoneze" #: tools/Archiver.java:48 msgid "Archive Sketch" @@ -142,6 +142,12 @@ msgstr "Borde Arduino ARM (32 Bit)" msgid "Arduino AVR Boards" msgstr "Borde Arduino AVR" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -159,7 +165,7 @@ msgid "" "Arduino requires a full JDK (not just a JRE)\n" "to run. Please install JDK 1.5 or later.\n" "More information can be found in the reference." -msgstr "" +msgstr "Arduino kerkon paketen e plote JDK (jo vetemJRE)\nper te punuar. Ju lutem instaloni versionin 1.5 te JDK-se ose nje me te ri.\nMe shume informacione mund te gjenden ne reference." #: ../../../processing/app/EditorStatus.java:471 msgid "Arduino: " @@ -176,23 +182,23 @@ msgstr "Jeni i sigurte se doni ta fshini kete skice" #: ../../../processing/app/Base.java:356 msgid "Argument required for --board" -msgstr "" +msgstr "Kerkohet argument per --bordin" #: ../../../processing/app/Base.java:370 msgid "Argument required for --curdir" -msgstr "" +msgstr "Kerkohet argument per --curdir" #: ../../../processing/app/Base.java:363 msgid "Argument required for --port" -msgstr "" +msgstr "Kerkohet argument per --porten" #: ../../../processing/app/Base.java:377 msgid "Argument required for --pref" -msgstr "" +msgstr "Kerkohet argument per --pref" #: ../../../processing/app/Base.java:384 msgid "Argument required for --preferences-file" -msgstr "" +msgstr "Kerkohet argument per --preferences-file" #: ../../../processing/app/Preferences.java:137 msgid "Armenian" @@ -208,19 +214,19 @@ msgstr "Formatim automatik" #: tools/AutoFormat.java:934 msgid "Auto Format Canceled: Too many left curly braces." -msgstr "" +msgstr "Auto Format Kancelohet: Shumë kllapa të dredhura të majta." #: tools/AutoFormat.java:925 msgid "Auto Format Canceled: Too many left parentheses." -msgstr "" +msgstr "Formatimi automatik u anullua: Ka shume kllapa ne te majte" #: tools/AutoFormat.java:931 msgid "Auto Format Canceled: Too many right curly braces." -msgstr "" +msgstr "Auto Format Kancelohet: Shumë kllapa të dredhura të djathta." #: tools/AutoFormat.java:922 msgid "Auto Format Canceled: Too many right parentheses." -msgstr "" +msgstr "Formatimi automatik u anullua: Ka shume kllapa ne te djathte" #: tools/AutoFormat.java:944 msgid "Auto Format finished." @@ -245,7 +251,7 @@ msgstr "Zgjedhja e nje skedari te keq" #: ../../../processing/app/Preferences.java:149 msgid "Basque" -msgstr "" +msgstr "Baske" #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" @@ -261,7 +267,7 @@ msgstr "Bord" msgid "" "Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:" " {3}" -msgstr "" +msgstr "Bordi {0}:{1}:{2} nuk percakton preferencen \"build.board\". Vetvendosje ne: {3}" #: ../../../processing/app/EditorStatus.java:472 msgid "Board: " @@ -273,7 +279,7 @@ msgstr "Boshnjak" #: SerialMonitor.java:112 msgid "Both NL & CR" -msgstr "" +msgstr "Te dyja NL & CR" #: Preferences.java:81 msgid "Browse" @@ -281,11 +287,11 @@ msgstr "Shfleto" #: Sketch.java:1392 Sketch.java:1423 msgid "Build folder disappeared or could not be written" -msgstr "" +msgstr "Ndertimi i dosjes u zhduk ose nuk mund te shkruhen te dhena" #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" -msgstr "" +msgstr "Opsionet e ndertimit ndryshuan, duke u rindertuar e gjitha" #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" @@ -318,7 +324,7 @@ msgstr "Nuk mund te ri emertoj" #: SerialMonitor.java:112 msgid "Carriage return" -msgstr "" +msgstr "Kthim vlere" #: Preferences.java:87 msgid "Catalan" @@ -363,7 +369,7 @@ msgstr "Komento/Ckomento" #: debug/Compiler.java:49 debug/Uploader.java:45 #, java-format msgid "Compiler error, please submit this code to {0}" -msgstr "Gabim i kompiluesit , ju lutemi dergoni kete kot tek {0}" +msgstr "Gabim i kompiluesit , ju lutemi dergoni kete kod tek {0}" #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." @@ -371,7 +377,7 @@ msgstr "Duke kompiluar skicen..." #: EditorConsole.java:152 msgid "Console Error" -msgstr "" +msgstr "Gabim paneli" #: Editor.java:1157 Editor.java:2707 msgid "Copy" @@ -454,7 +460,7 @@ msgstr "Nuk mund te hap folderin\n{0}" msgid "" "Could not properly re-save the sketch. You may be in trouble at this point,\n" "and it might be time to copy and paste your code to another text editor." -msgstr "" +msgstr "Nuk arriti tamam qe te ri-ruante skicen. Ju mund te jeni ne probleme ne kete pike,\ndhe mund te jete koha qe te kopjoni dhe te ngjisni kodin tuaj ne nje tjeter tekst ndryshues tjeter." #: Sketch.java:1768 msgid "Could not re-save sketch" @@ -470,11 +476,11 @@ msgstr "" msgid "" "Could not read default settings.\n" "You'll need to reinstall Arduino." -msgstr "" +msgstr "Nuk mund ti lexoje te dhenat e parapercaktuara .\nJu nevojitet qe te instaloni perseri Arduino." #: ../../../processing/app/Sketch.java:1525 msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "" +msgstr "Nuk arrin te lexoje preferencat e ndertimit te meparshme te skedarit, duke u rindertuar te gjitha" #: Base.java:2482 #, java-format @@ -505,7 +511,7 @@ msgstr "Nuk mund te zevendesohet {0}" #: ../../../processing/app/Sketch.java:1579 msgid "Could not write build preferences file" -msgstr "" +msgstr "Nuk arrin te shkruaje preferencat e ndertimit te skedarit" #: tools/Archiver.java:74 msgid "Couldn't archive sketch" @@ -524,7 +530,7 @@ msgid "" "Couldn't find a Board on the selected port. Check that you have the correct " "port selected. If it is correct, try pressing the board's reset button " "after initiating the upload." -msgstr "" +msgstr "Nuk arriti te gjente nje bord ne portat e selektuara. Kontrollo qe ju keni selektuar portat e sakta. Nese jane ne rregull, provo duke shtypur butonin per ta ristartuar bordin pasi keni bere ngarkimin." #: ../../../processing/app/Preferences.java:82 msgid "Croatian" @@ -554,7 +560,7 @@ msgstr "Fshi" msgid "" "Device is not responding, check the right serial port is selected or RESET " "the board right before exporting" -msgstr "" +msgstr "Pajisja nuk po përgjigjet, shiko nëse është zgjedhur porti i duhur serial ose bëj RESET bordit para eksportimit" #: tools/FixEncoding.java:57 msgid "Discard all changes and reload sketch?" @@ -657,11 +663,11 @@ msgstr "Gabim gjate ngarkimint {0}" #: Serial.java:181 #, java-format msgid "Error opening serial port ''{0}''." -msgstr "" +msgstr "Gabim duke hapur porten seriale \"{0}\"" #: Preferences.java:277 msgid "Error reading preferences" -msgstr "Gabim gjete leximit te parapelqimeve" +msgstr "Gabim gjete leximit te pelqimeve" #: Preferences.java:279 #, java-format @@ -677,7 +683,7 @@ msgstr "Gabim ne nisjen e metodes se zbulimit :" #: Serial.java:125 #, java-format msgid "Error touching serial port ''{0}''." -msgstr "" +msgstr "Gabim në prekjen e portit serial ''{0}''." #: Editor.java:2512 Editor.java:2516 Editor.java:2520 msgid "Error while burning bootloader." @@ -703,7 +709,7 @@ msgstr "Gabim gjate ngarkimit: mungon '{0}' parametra e konfigurimit" #: Preferences.java:93 msgid "Estonian" -msgstr "" +msgstr "Estonez" #: ../../../processing/app/Preferences.java:146 msgid "Estonian (Estonia)" @@ -724,7 +730,7 @@ msgstr "FAQ.html" #: ../../../processing/app/Base.java:416 #, java-format msgid "Failed to open sketch: \"{0}\"" -msgstr "" +msgstr "Deshtoi per te hapur skicen: \"{0}\"" #: Editor.java:491 msgid "File" @@ -765,7 +771,7 @@ msgstr "Finlandisht" #: tools/FixEncoding.java:41 tools/FixEncoding.java:58 #: tools/FixEncoding.java:79 msgid "Fix Encoding & Reload" -msgstr "" +msgstr "Rregullo kodimin & Rifreskoje" #: Base.java:1851 msgid "" @@ -775,7 +781,7 @@ msgstr "Per me teper informacion ne instalimin e librarive, shiko http://arduino #: debug/BasicUploader.java:80 msgid "Forcing reset using 1200bps open/close on port " -msgstr "" +msgstr "Rifreskim i detyrueshem duke perdorur 1200bps hapje/mbyllje ne porte" #: Preferences.java:95 msgid "French" @@ -787,7 +793,7 @@ msgstr "Pyetje te shpeshta" #: Preferences.java:96 msgid "Galician" -msgstr "" +msgstr "Galisian" #: ../../../processing/app/Preferences.java:94 msgid "Georgian" @@ -849,11 +855,11 @@ msgstr "Hindu" msgid "" "How about saving the sketch first \n" "before trying to rename it?" -msgstr "" +msgstr "Si thua sikur te ruani skicen fillimisht \ndhe pastaj te provoni ta riemertoni ate ?" #: Sketch.java:882 msgid "How very Borges of you" -msgstr "" +msgstr "Gabim, eshte e pamundur!" #: Preferences.java:100 msgid "Hungarian" @@ -884,7 +890,7 @@ msgid "" "disable this in the Preferences dialog.\n" "\n" "Save sketch and update its extension?" -msgstr "" +msgstr "Ne Arduino 1.0, skedari me shtese i parapercaktuar ka ndryshuar\nnga .pde ne .ino. Skica te reja (duke perfshire dhe ato qe jan krijuar)\nnga \"Ruajtja Si\" do te perdori nje shtese te re. Shtesa \ne skicave ekzistuese do te perditesohet ne ruajtje, por ti\n mund ta caktivizosh kete ne dialogun e preferencave" #: Editor.java:1216 Editor.java:2757 msgid "Increase Indent" @@ -913,7 +919,7 @@ msgstr "Koreane" #: Preferences.java:105 msgid "Latvian" -msgstr "" +msgstr "Letonisht" #: Base.java:2699 msgid "Library added to your libraries. Check \"Import library\" menu" @@ -929,7 +935,7 @@ msgstr "Memorie e ulet ne dispozicion; probleme me stabilitetin mund te ndodhin" #: Preferences.java:107 msgid "Marathi" -msgstr "" +msgstr "Gjuha Marathi" #: Base.java:2112 msgid "Message" @@ -937,7 +943,7 @@ msgstr "Mesazh" #: ../../../processing/app/preproc/PdePreprocessor.java:412 msgid "Missing the */ from the end of a /* comment */" -msgstr "" +msgstr "Mungon */ nga fundi i /* komenti */" #: Preferences.java:449 msgid "More preferences can be edited directly in the file" @@ -945,15 +951,15 @@ msgstr "Me shume parapelqime mund te redaktohen drejperdrejt gjate hapjes se ske #: Editor.java:2156 msgid "Moving" -msgstr "Duke levizur" +msgstr "Sposto" #: ../../../processing/app/Base.java:395 msgid "Must specify exactly one sketch file" -msgstr "" +msgstr "Duhet te specifikoje saktesisht nje skedar skice." #: ../../../processing/app/Preferences.java:158 msgid "N'Ko" -msgstr "" +msgstr " N'ko " #: Sketch.java:282 msgid "Name for new file:" @@ -997,7 +1003,7 @@ msgstr "Nuk eshte zgjedhur asnje bord; ju lutem zgjidhni bordin nga Veglat > Men #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." -msgstr "" +msgstr "Jo ndryshime te nevojshme per vete formatim." #: Editor.java:373 msgid "No files were added to the sketch." @@ -1005,7 +1011,7 @@ msgstr "Asnje dokument nuk u shtua tek skica." #: Platform.java:167 msgid "No launcher available" -msgstr "" +msgstr "Nuk ka leshim te mundshem" #: SerialMonitor.java:112 msgid "No line ending" @@ -1022,11 +1028,11 @@ msgstr "Asnje reference ne dispozicion per \"{0}\"" #: ../../../processing/app/Sketch.java:204 msgid "No valid code files found" -msgstr "" +msgstr "Asnje kode i sakte nuk u gjet." #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." -msgstr "" +msgstr "Nuk u gjeten berthama te vlefshme ne berthame! Dalja..." #: ../../../processing/app/debug/TargetPackage.java:63 #, java-format @@ -1035,7 +1041,7 @@ msgstr "Nuk ka percaktime te duhura per pajisjen hard ne skede {0}." #: Base.java:191 msgid "Non-fatal error while setting the Look & Feel." -msgstr "" +msgstr "Gabim jo fatal gjatë rregullimit të Pamjes dhe Mjedisit" #: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859 msgid "Nope" @@ -1043,7 +1049,7 @@ msgstr "Jo lale" #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" -msgstr "" +msgstr "Norvegjisht" #: ../../../processing/app/Sketch.java:1656 msgid "" @@ -1082,7 +1088,7 @@ msgstr "Hap..." #: Editor.java:563 msgid "Page Setup" -msgstr "" +msgstr "Rregullimi i faqes" #: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 msgid "Password:" @@ -1098,7 +1104,7 @@ msgstr "Persisht" #: ../../../processing/app/Preferences.java:161 msgid "Persian (Iran)" -msgstr "" +msgstr "Persisht" #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." @@ -1106,7 +1112,7 @@ msgstr "Ju lutem importoni librarin SPI nga menuja Sktech > Import Library" #: ../../../processing/app/debug/Compiler.java:529 msgid "Please import the Wire library from the Sketch > Import Library menu." -msgstr "" +msgstr "Ju lutem importoni librarine Wire nga menuja Sketch > Import Library." #: Base.java:239 msgid "Please install JDK 1.5 or later" @@ -1189,18 +1195,12 @@ msgstr "Gabim gjate spostimit te {0} ne skedarin e ndertimit" msgid "" "Problem uploading to board. See " "http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions." -msgstr "" +msgstr "Problem gjate ngarkimit ne bord. Shiko http://www.arduino.cc/en/Guide/Troubleshooting#upload per sugjerime" #: Sketch.java:355 Sketch.java:362 Sketch.java:373 msgid "Problem with rename" msgstr "Probleme me riemertimin" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "Procesor" @@ -1298,7 +1298,7 @@ msgstr "Zgjidhni nje skedar zip ose nje dosje qe te permbaje librarire qe ju do #: Sketch.java:975 msgid "Select an image or other data file to copy to your sketch" -msgstr "" +msgstr "Selektoni nje imazh ose te dhena te tjera ne skedar per ti kopjuar ne skicen tuaj." #: Preferences.java:330 msgid "Select new sketchbook location" @@ -1321,14 +1321,14 @@ msgstr "Monitor serial" msgid "" "Serial port ''{0}'' not found. Did you select the right one from the Tools >" " Serial Port menu?" -msgstr "" +msgstr "Porta seriale \"{0}\" nuk gjindet. A e selektuat ate qe duhet ne te djathten tek Mjetet > Menuja e portave seriale?" #: Editor.java:2343 #, java-format msgid "" "Serial port {0} not found.\n" "Retry the upload with another serial port?" -msgstr "" +msgstr "Porta seriale {0} nuk u gjet.\nProvoni serish ngarkimin me nje porte tjeter seriale." #: Base.java:1681 msgid "Settings issues" @@ -1340,15 +1340,15 @@ msgstr "Shfaq folderin e skices" #: ../../../processing/app/EditorStatus.java:468 msgid "Show verbose output during compilation" -msgstr "" +msgstr "Trego outputin e hollesishem gjate kompilimit" #: Preferences.java:387 msgid "Show verbose output during: " -msgstr "" +msgstr "Shfaq fjalet me te shpeshta gjate daljes:" #: Editor.java:607 msgid "Sketch" -msgstr "Sketch" +msgstr "Skice" #: Sketch.java:1754 msgid "Sketch Disappeared" @@ -1374,7 +1374,7 @@ msgstr "Skica eshte vetem per lexim" msgid "" "Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " "tips on reducing it." -msgstr "" +msgstr "Skica shume e madhe; shiko http://www.arduino.cc/en/Guide/Troubleshooting#size ose keshilla per ta reduktuar ate." #: ../../../processing/app/Sketch.java:1639 #, java-format @@ -1439,23 +1439,23 @@ msgstr "Te dhenat e parapercaktuara te sistemit" #: Preferences.java:116 msgid "Tamil" -msgstr "" +msgstr "Gjuha Tamil" #: debug/Compiler.java:414 msgid "The 'BYTE' keyword is no longer supported." -msgstr "" +msgstr "Fjala 'BYTE' nuk suportohet me." #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." -msgstr "" +msgstr "Klasa e klientit eshte riemeruar EthernetClient." #: debug/Compiler.java:420 msgid "The Server class has been renamed EthernetServer." -msgstr "" +msgstr "Klasa e serverit eshte riemeruar EthernetServer." #: debug/Compiler.java:432 msgid "The Udp class has been renamed EthernetUdp." -msgstr "" +msgstr "Klasa Udp eshte riemeruar ne EthernetUdp." #: Base.java:192 msgid "The error message follows, however Arduino should run fine." @@ -1467,7 +1467,7 @@ msgid "" "The file \"{0}\" needs to be inside\n" "a sketch folder named \"{1}\".\n" "Create this folder, move the file, and continue?" -msgstr "" +msgstr "Skedari \"{0}\" duhet te jete brenda\nnje skice skedari te quajtur \"{1}\".\nKrijo kete skedar, zhvendose skedarin, dhe vazhdo?" #: Base.java:1054 Base.java:2674 #, java-format @@ -1475,14 +1475,14 @@ msgid "" "The library \"{0}\" cannot be used.\n" "Library names must contain only basic letters and numbers.\n" "(ASCII only and no spaces, and it cannot start with a number)" -msgstr "" +msgstr "Libraria \"{0}\" nuk mund te perdoret.\nEmrat e librarive duhet te kene vetem shkronja dhe numra normal.\n(Vetem ASCI dhe jo hapesira, dhe nuk mund te filloje me nje numer)" #: Sketch.java:374 msgid "" "The main file can't use an extension.\n" "(It may be time for your to graduate to a\n" "\"real\" programming environment)" -msgstr "" +msgstr "Skedari kryesor nuk mund te perdore shtesa.\n(Mund te jete koha per ty qe te rritesh ne nje\nmjedis te vertete programimi)" #: Sketch.java:356 msgid "The name cannot start with a period." @@ -1510,14 +1510,14 @@ msgid "" "The sketch folder has disappeared.\n" " Will attempt to re-save in the same location,\n" "but anything besides the code will be lost." -msgstr "" +msgstr "Dosja e skices eshte zhdukur.\nDoni qe te provoni ta ruani perseri ne te njejtin vend,\npor cdo gje tjeter pervec kodit do te humbasi." #: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" "They should also be less than 64 characters long." -msgstr "" +msgstr "Emri i skices duhet qe te modifikohet. Emrat e skicave konsistojne vetem \nnga karaktere ASCII dhe numra (por nuk mund te fillojne me nje numer.)\nAto duhet te jene me te shkurtra se 64 karaktere." #: Base.java:259 msgid "" @@ -1526,14 +1526,14 @@ msgid "" "location, and create a new sketchbook folder if\n" "necessary. Arduino will then stop talking about\n" "himself in the third person." -msgstr "" +msgstr "Skedari i sketchbook nuk egziston me.\nArduino do te kaloje ne vendodhjen e sketchbook-ut\nte parapercaktuar, dhe do te krijoje nje skedar te ri sketchbook-u\nnese eshte e nevojshme. Arduino pastaj do te ndaloje se foluri \nper veten ne veten e trete." #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" "location from which where you're trying to add it.\n" "I ain't not doin nuthin'." -msgstr "" +msgstr "Kjo dosje është kopjuar në\nvendndodhjen nga ku po mundohesh ta shtosh.\nVeprimi nuk mund të realizohet." #: ../../../processing/app/EditorStatus.java:467 msgid "This report would have more information with" @@ -1587,7 +1587,7 @@ msgstr "E pa mundur per te hapur monitorin serial" #: Sketch.java:1432 #, java-format msgid "Uncaught exception type: {0}" -msgstr "" +msgstr "Përjashtim i pakapur i tipit: {0}" #: Editor.java:1133 Editor.java:1355 msgid "Undo" @@ -1598,11 +1598,11 @@ msgid "" "Unspecified platform, no launcher available.\n" "To enable opening URLs or folders, add a \n" "\"launcher=/path/to/app\" line to preferences.txt" -msgstr "" +msgstr "Platforme e paspecifikuar, nuk eshte asnje startues ne dizpozicion.\nPer te mundesuar hapjen e URL ose skedareve, shtoni nje \nrrjesht \"launcher=/path/to/app\" tek preferences.txt" #: UpdateCheck.java:111 msgid "Update" -msgstr "Rifresko" +msgstr "Perditeso" #: Preferences.java:428 msgid "Update sketch files to new extension on save (.pde -> .ino)" @@ -1614,7 +1614,7 @@ msgstr "Ngarko" #: EditorToolbar.java:46 Editor.java:553 msgid "Upload Using Programmer" -msgstr "Ngarko duke perdorur programues" +msgstr "Ngarko duke perdorur programuesin" #: Editor.java:2403 Editor.java:2439 msgid "Upload canceled." @@ -1675,7 +1675,7 @@ msgstr "Vizito Arduino.cc" msgid "" "WARNING: library {0} claims to run on {1} architecture(s) and may be " "incompatible with your current board which runs on {2} architecture(s)." -msgstr "" +msgstr "Paralajmerim: libraria {0} pretendon se po funksionon ne arkitekture (n) {1} dhe mund te jete i papershtatshem me bordin aktual qe po funksionon ne arkitekture (n) {2}." #: Base.java:2128 msgid "Warning" @@ -1687,7 +1687,7 @@ msgstr "Wire.receive() eshte ri emertuar me Wire.read()." #: debug/Compiler.java:438 msgid "Wire.send() has been renamed Wire.write()." -msgstr "" +msgstr "Wire.send() eshte riemeruar Wire.write()." #: FindReplace.java:105 msgid "Wrap Around" @@ -1697,7 +1697,7 @@ msgstr "Mbeshtill perreth" msgid "" "Wrong microcontroller found. Did you select the right board from the Tools " "> Board menu?" -msgstr "" +msgstr "U gjet nje mikrokontrollues gabim. A e selektuat bordin e sakte nga menuja Tools > Board?" #: Preferences.java:77 UpdateCheck.java:108 msgid "Yes" @@ -1705,7 +1705,7 @@ msgstr "Po" #: Sketch.java:1074 msgid "You can't fool me" -msgstr "Ti nuk mund te me genjes mua" +msgstr "Ti nuk mund te me genjesh mua" #: Sketch.java:411 msgid "You can't have a .cpp file with the same name as the sketch." @@ -1727,7 +1727,7 @@ msgstr "Ju nuk mund te ruani skicen si \"{0}\"\nsepse skica ekziston njehere si msgid "" "You cannot save the sketch into a folder\n" "inside itself. This would go on forever." -msgstr "" +msgstr "Ju nuk mund ta ruani skicen brenda nje dosje\nBrenda vetes. Kjo mund te vazhdoje pambarimisht" #: Base.java:1888 msgid "You forgot your sketchbook" @@ -1742,7 +1742,7 @@ msgstr "Ju keni shtypur {0} por asgje nuk eshte derguar. Duhet ju te zgjidhni nj msgid "" "You've reached the limit for auto naming of new sketches\n" "for the day. How about going for a walk instead?" -msgstr "" +msgstr "Ju keni arritur limitin per vete nderrimin e skicave te reja\nper sot. Si thoni qe te shkojme per ecje nderkohe?" #: Base.java:2638 msgid "ZIP files or folders" @@ -1755,16 +1755,16 @@ msgstr "Skedari zip nuk mund te permbaje asnje librari" #: Sketch.java:364 #, java-format msgid "\".{0}\" is not a valid extension." -msgstr "" +msgstr "\".{0}\" nuk eshte nje shtese e vlefshme." #: SketchCode.java:258 #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." -msgstr "\"{0}\" permban karaktere te panjohura. Ne qofte se ky kod eshte krijuar me nje version te vjeter ose e perpunuar , ju nevojitet qe te perdorni Veglat --> Rregullo enkodimin & Rifresko perditesimin qe skica te perdori enkodimin UTF-8. Ne qofte se jo ju duhet te fshini karakterin e demtuar qe te hiqni kete mesazh." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." +msgstr "" #: debug/Compiler.java:409 msgid "" @@ -1772,7 +1772,7 @@ msgid "" "As of Arduino 0019, the Ethernet library depends on the SPI library.\n" "You appear to be using it or another library that depends on the SPI library.\n" "\n" -msgstr "" +msgstr "\nQë nga Arduino 0019, libraria e Ethernet varet nga libraria SPI.\nMesa duket ti po përdor atë ose një librari që varet nga libraria SPI.\n" #: debug/Compiler.java:415 msgid "" @@ -1780,42 +1780,42 @@ msgid "" "As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" "Please use Serial.write() instead.\n" "\n" -msgstr "" +msgstr "\nQë nga Arduino 1.0, fjala kyçe 'BYTE' nuk suportohet më.\nJu lutem, përdorni Serial.write()\n" #: debug/Compiler.java:427 msgid "" "\n" "As of Arduino 1.0, the Client class in the Ethernet library has been renamed to EthernetClient.\n" "\n" -msgstr "" +msgstr "\nQë nga Arduino 1.0, klasa Client në librarinë Ethernet është riemëruar EthernetClientr.\n\n" #: debug/Compiler.java:421 msgid "" "\n" "As of Arduino 1.0, the Server class in the Ethernet library has been renamed to EthernetServer.\n" "\n" -msgstr "" +msgstr "\nQë nga Arduino 1.0, klasa Server në librarinë Ethernet është riemëruar EthernetServer.\n\n" #: debug/Compiler.java:433 msgid "" "\n" "As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n" "\n" -msgstr "" +msgstr "\nQë nga Arduino 1.0, klasa Udp në librarinë Ethernet është riemëruar EthernetUdp\n" #: debug/Compiler.java:445 msgid "" "\n" "As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n" "\n" -msgstr "" +msgstr "\nQë nga Arduino 1.0, funksioni Wire. receive() është riemëruar Wire.read() për përputhje me libraritë e tjera.\n" #: debug/Compiler.java:439 msgid "" "\n" "As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n" "\n" -msgstr "" +msgstr "\nQë nga Arduino 1.0, funksioni Wire.send() është riemëruar Wire.write() për përputhje me libraritë e tjera.\n" #: SerialMonitor.java:130 SerialMonitor.java:133 msgid "baud" @@ -1823,7 +1823,7 @@ msgstr "baud" #: Preferences.java:389 msgid "compilation " -msgstr "" +msgstr "kompilim" #: ../../../processing/app/NetworkMonitor.java:111 msgid "connected!" @@ -1883,11 +1883,11 @@ msgstr "platforma.html" msgid "" "readBytesUntil() byte buffer is too small for the {0} bytes up to and " "including char {1}" -msgstr "" +msgstr "Buffer i readBytesUntil () eshte shume i vogel per {0} byte deri ne char {1}" #: Sketch.java:647 msgid "removeCode: internal error.. could not find code" -msgstr "" +msgstr "removeCode: gabim i brendshem.. nuk arrin te gjeje kodin" #: Editor.java:932 msgid "serialMenu is null" @@ -1897,12 +1897,12 @@ msgstr "serialMenu eshte bosh" #, java-format msgid "" "the selected serial port {0} does not exist or your board is not connected" -msgstr "" +msgstr "porti serial {0} i zgjedhur nuk ekziston ose bordi yt nuk është i lidhur" #: ../../../processing/app/Base.java:389 #, java-format msgid "unknown option: {0}" -msgstr "" +msgstr "opsion i panjohur: {0}" #: Preferences.java:391 msgid "upload" @@ -1931,41 +1931,41 @@ msgstr "{0}.html" #: ../../../processing/app/Base.java:519 #, java-format msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" -msgstr "" +msgstr "{0}: Argument i pavlefshem per --pref, duhet te jete i formes \"pref=value\"" #: ../../../processing/app/Base.java:476 #, java-format msgid "" "{0}: Invalid board name, it should be of the form \"package:arch:board\" or " "\"package:arch:board:options\"" -msgstr "" +msgstr "{0}: Emer bordi i pavlefshem, duhet te jete i formes \"package:arch:board\" ose \"package:arch:board:options\"" #: ../../../processing/app/Base.java:509 #, java-format msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" -msgstr "" +msgstr "{0}: Opsion i pavlefshem per \"{1}\" opsion per bord \"{2}\"" #: ../../../processing/app/Base.java:507 #, java-format msgid "{0}: Invalid option for board \"{1}\"" -msgstr "" +msgstr "{0}: Opsion invalid per bordin \"{1}\"" #: ../../../processing/app/Base.java:502 #, java-format msgid "{0}: Invalid option, should be of the form \"name=value\"" -msgstr "" +msgstr "{0}: Opsion invalid, duhet te jete ne formen \"name=value\"" #: ../../../processing/app/Base.java:486 #, java-format msgid "{0}: Unknown architecture" -msgstr "" +msgstr "{0}: Arkitekture e panjohur" #: ../../../processing/app/Base.java:491 #, java-format msgid "{0}: Unknown board" -msgstr "" +msgstr "{0}: Bord i panjohur" #: ../../../processing/app/Base.java:481 #, java-format msgid "{0}: Unknown package" -msgstr "" +msgstr "{0}: Pakete e panjohur" diff --git a/arduino-core/src/processing/app/i18n/Resources_sq.properties b/arduino-core/src/processing/app/i18n/Resources_sq.properties index 4c0978d3e..d6656d9ed 100644 --- a/arduino-core/src/processing/app/i18n/Resources_sq.properties +++ b/arduino-core/src/processing/app/i18n/Resources_sq.properties @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Albanian (http\://www.transifex.com/projects/p/arduino-ide-15/language/sq/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: sq\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Albanian (http\://www.transifex.com/projects/p/arduino-ide-15/language/sq/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: sq\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(kerkohet rinisja e Arduinos) #: debug/Compiler.java:455 -!'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo= +'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo="Tastiera" perkrahet vetem ne Arduino Leonardo #: debug/Compiler.java:450 -!'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo= +'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo="Miu" perkrahet vetem ne Arduino Leonardo #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(redaktoni vetem kur Arduino nuk eshte duke ekzekutuar) @@ -42,7 +42,7 @@ A\ library\ named\ {0}\ already\ exists=Nje librari e emerteruar {0} ekziston ta A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Nje version i ri i arduinos eshte i mundur,\ndo te deshironit te vizitonit faqen e shkarkimeve? #: EditorConsole.java:153 -!A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.= +A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=Nje problem ndodhi gjate hapjes se\nskedareve te perdorur per te ruajtur daljen e panelit te komandimit. #: Editor.java:1116 About\ Arduino=Rreth Arduino @@ -54,19 +54,19 @@ Add\ File...=Shto Dokument.. Add\ Library...=Shto librari... #: ../../../processing/app/Preferences.java:96 -!Albanian= +Albanian=Shqip #: tools/FixEncoding.java:77 -!An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n= +An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Ndodhi nj\u00eb gabim gjat\u00eb enkodimit t\u00eb rregullimit t\u00eb dosjes.\nMos e provo ta ruash k\u00ebt\u00eb skic\u00eb sepse mund t\u00eb mbishkruhet\nmbi versionin e vjet\u00ebr. P\u00ebrdor Open p\u00ebr t\u00eb rihapur skic\u00ebn dhe provoje s\u00ebrish.\n #: Base.java:228 -!An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.= +An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Nje problem i panjohur ndodhi gjate ngarkimit\nte nje platforme-specifike te koduar per paisjen tuaj. #: Preferences.java:85 Arabic=Arabisht #: Preferences.java:86 -!Aragonese= +Aragonese=Aragoneze #: tools/Archiver.java:48 Archive\ Sketch=Arkivo Skicen @@ -86,6 +86,9 @@ Arduino\ ARM\ (32-bits)\ Boards=Borde Arduino ARM (32 Bit) #: ../../../processing/app/I18n.java:82 Arduino\ AVR\ Boards=Borde Arduino AVR +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino nuk mund te ekzekutohet sepse\nnuk mund te krijoje nje dosje qe te ruaje rregullimet. @@ -93,7 +96,7 @@ Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ you Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino nuk mund te punoj sepse ai nuk mund\nte krijoj nje folder per te ruajtur librarin tuaj te skicave. #: Base.java:240 -!Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.= +Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino kerkon paketen e plote JDK (jo vetemJRE)\nper te punuar. Ju lutem instaloni versionin 1.5 te JDK-se ose nje me te ri.\nMe shume informacione mund te gjenden ne reference. #: ../../../processing/app/EditorStatus.java:471 Arduino\:\ =Arduino\: @@ -106,19 +109,19 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Jeni i sigurt se doni ta fshini "{ Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Jeni i sigurte se doni ta fshini kete skice #: ../../../processing/app/Base.java:356 -!Argument\ required\ for\ --board= +Argument\ required\ for\ --board=Kerkohet argument per --bordin #: ../../../processing/app/Base.java:370 -!Argument\ required\ for\ --curdir= +Argument\ required\ for\ --curdir=Kerkohet argument per --curdir #: ../../../processing/app/Base.java:363 -!Argument\ required\ for\ --port= +Argument\ required\ for\ --port=Kerkohet argument per --porten #: ../../../processing/app/Base.java:377 -!Argument\ required\ for\ --pref= +Argument\ required\ for\ --pref=Kerkohet argument per --pref #: ../../../processing/app/Base.java:384 -!Argument\ required\ for\ --preferences-file= +Argument\ required\ for\ --preferences-file=Kerkohet argument per --preferences-file #: ../../../processing/app/Preferences.java:137 Armenian=Armen @@ -130,16 +133,16 @@ Asturian=Asturian Auto\ Format=Formatim automatik #: tools/AutoFormat.java:934 -!Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.= +Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=Auto Format Kancelohet\: Shum\u00eb kllapa t\u00eb dredhura t\u00eb majta. #: tools/AutoFormat.java:925 -!Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.= +Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=Formatimi automatik u anullua\: Ka shume kllapa ne te majte #: tools/AutoFormat.java:931 -!Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.= +Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=Auto Format Kancelohet\: Shum\u00eb kllapa t\u00eb dredhura t\u00eb djathta. #: tools/AutoFormat.java:922 -!Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.= +Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=Formatimi automatik u anullua\: Ka shume kllapa ne te djathte #: tools/AutoFormat.java:944 Auto\ Format\ finished.=Formatimi automatik perfundoi. @@ -158,7 +161,7 @@ Bad\ error\ line\:\ {0}=Gabim ne rrjesht\: {0} Bad\ file\ selected=Zgjedhja e nje skedari te keq #: ../../../processing/app/Preferences.java:149 -!Basque= +Basque=Baske #: ../../../processing/app/Preferences.java:139 Belarusian=Bjellorus @@ -169,7 +172,7 @@ Board=Bord #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format -!Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= +Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=Bordi {0}\:{1}\:{2} nuk percakton preferencen "build.board". Vetvendosje ne\: {3} #: ../../../processing/app/EditorStatus.java:472 Board\:\ =Bordi\: @@ -178,16 +181,16 @@ Board\:\ =Bordi\: Bosnian=Boshnjak #: SerialMonitor.java:112 -!Both\ NL\ &\ CR= +Both\ NL\ &\ CR=Te dyja NL & CR #: Preferences.java:81 Browse=Shfleto #: Sketch.java:1392 Sketch.java:1423 -!Build\ folder\ disappeared\ or\ could\ not\ be\ written= +Build\ folder\ disappeared\ or\ could\ not\ be\ written=Ndertimi i dosjes u zhduk ose nuk mund te shkruhen te dhena #: ../../../processing/app/Sketch.java:1530 -!Build\ options\ changed,\ rebuilding\ all= +Build\ options\ changed,\ rebuilding\ all=Opsionet e ndertimit ndryshuan, duke u rindertuar e gjitha #: ../../../processing/app/Preferences.java:80 Bulgarian=Bullgarisht @@ -212,7 +215,7 @@ Cancel=Anullo Cannot\ Rename=Nuk mund te ri emertoj #: SerialMonitor.java:112 -!Carriage\ return= +Carriage\ return=Kthim vlere #: Preferences.java:87 Catalan=Katalane @@ -246,13 +249,13 @@ Comment/Uncomment=Komento/Ckomento #: debug/Compiler.java:49 debug/Uploader.java:45 #, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Gabim i kompiluesit , ju lutemi dergoni kete kot tek {0} +Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Gabim i kompiluesit , ju lutemi dergoni kete kod tek {0} #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=Duke kompiluar skicen... #: EditorConsole.java:152 -!Console\ Error= +Console\ Error=Gabim paneli #: Editor.java:1157 Editor.java:2707 Copy=Kopjo @@ -312,7 +315,7 @@ Could\ not\ open\ the\ URL\n{0}=Nuk mund te hap URL\n{0} Could\ not\ open\ the\ folder\n{0}=Nuk mund te hap folderin\n{0} #: Sketch.java:1769 -!Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.= +Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=Nuk arriti tamam qe te ri-ruante skicen. Ju mund te jeni ne probleme ne kete pike,\ndhe mund te jete koha qe te kopjoni dhe te ngjisni kodin tuaj ne nje tjeter tekst ndryshues tjeter. #: Sketch.java:1768 Could\ not\ re-save\ sketch=Nuk mund te ri ruaj skicen @@ -321,10 +324,10 @@ Could\ not\ re-save\ sketch=Nuk mund te ri ruaj skicen !Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= #: Preferences.java:219 -!Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= +Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Nuk mund ti lexoje te dhenat e parapercaktuara .\nJu nevojitet qe te instaloni perseri Arduino. #: ../../../processing/app/Sketch.java:1525 -!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= +Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=Nuk arrin te lexoje preferencat e ndertimit te meparshme te skedarit, duke u rindertuar te gjitha #: Base.java:2482 #, java-format @@ -348,7 +351,7 @@ Could\ not\ rename\ the\ sketch.\ (2)=Nuk mund te ri emertoj skicen. (2) Could\ not\ replace\ {0}=Nuk mund te zevendesohet {0} #: ../../../processing/app/Sketch.java:1579 -!Could\ not\ write\ build\ preferences\ file= +Could\ not\ write\ build\ preferences\ file=Nuk arrin te shkruaje preferencat e ndertimit te skedarit #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Nuk mund te arkivohet skica @@ -360,7 +363,7 @@ Couldn't\ determine\ program\ size\:\ {0}=Nuk mund te percaktoj madhesine e prog Couldn't\ do\ it=Nuk mund ta beje #: debug/BasicUploader.java:209 -!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.= +Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=Nuk arriti te gjente nje bord ne portat e selektuara. Kontrollo qe ju keni selektuar portat e sakta. Nese jane ne rregull, provo duke shtypur butonin per ta ristartuar bordin pasi keni bere ngarkimin. #: ../../../processing/app/Preferences.java:82 Croatian=Kroatisht @@ -381,7 +384,7 @@ Decrease\ Indent=Pakeso dhembezimin Delete=Fshi #: debug/Uploader.java:199 -!Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting= +Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=Pajisja nuk po p\u00ebrgjigjet, shiko n\u00ebse \u00ebsht\u00eb zgjedhur porti i duhur serial ose b\u00ebj RESET bordit para eksportimit #: tools/FixEncoding.java:57 Discard\ all\ changes\ and\ reload\ sketch?=Hiq cdo ndryshim dhe ringarko skicen @@ -460,10 +463,10 @@ Error\ loading\ {0}=Gabim gjate ngarkimint {0} #: Serial.java:181 #, java-format -!Error\ opening\ serial\ port\ ''{0}''.= +Error\ opening\ serial\ port\ ''{0}''.=Gabim duke hapur porten seriale "{0}" #: Preferences.java:277 -Error\ reading\ preferences=Gabim gjete leximit te parapelqimeve +Error\ reading\ preferences=Gabim gjete leximit te pelqimeve #: Preferences.java:279 #, java-format @@ -474,7 +477,7 @@ Error\ starting\ discovery\ method\:\ =Gabim ne nisjen e metodes se zbulimit \: #: Serial.java:125 #, java-format -!Error\ touching\ serial\ port\ ''{0}''.= +Error\ touching\ serial\ port\ ''{0}''.=Gabim n\u00eb prekjen e portit serial ''{0}''. #: Editor.java:2512 Editor.java:2516 Editor.java:2520 Error\ while\ burning\ bootloader.=Gabim gjate djegjes se bootloaderit. @@ -494,7 +497,7 @@ Error\ while\ printing.=Gabim gjate printimit. Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=Gabim gjate ngarkimit\: mungon '{0}' parametra e konfigurimit #: Preferences.java:93 -!Estonian= +Estonian=Estonez #: ../../../processing/app/Preferences.java:146 Estonian\ (Estonia)=Estonez (Estonia) @@ -510,7 +513,7 @@ FAQ.html=FAQ.html #: ../../../processing/app/Base.java:416 #, java-format -!Failed\ to\ open\ sketch\:\ "{0}"= +Failed\ to\ open\ sketch\:\ "{0}"=Deshtoi per te hapur skicen\: "{0}" #: Editor.java:491 File=Dokument @@ -541,13 +544,13 @@ Finnish=Finlandisht #: tools/FixEncoding.java:41 tools/FixEncoding.java:58 #: tools/FixEncoding.java:79 -!Fix\ Encoding\ &\ Reload= +Fix\ Encoding\ &\ Reload=Rregullo kodimin & Rifreskoje #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=Per me teper informacion ne instalimin e librarive, shiko http\://arduino.cc/en/Guide/Libraries\n #: debug/BasicUploader.java:80 -!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ = +Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =Rifreskim i detyrueshem duke perdorur 1200bps hapje/mbyllje ne porte #: Preferences.java:95 French=Frengjisht @@ -556,7 +559,7 @@ French=Frengjisht Frequently\ Asked\ Questions=Pyetje te shpeshta #: Preferences.java:96 -!Galician= +Galician=Galisian #: ../../../processing/app/Preferences.java:94 Georgian=Gjeorgisht @@ -600,10 +603,10 @@ Help=Ndihme Hindi=Hindu #: Sketch.java:295 -!How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?= +How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Si thua sikur te ruani skicen fillimisht \ndhe pastaj te provoni ta riemertoni ate ? #: Sketch.java:882 -!How\ very\ Borges\ of\ you= +How\ very\ Borges\ of\ you=Gabim, eshte e pamundur\! #: Preferences.java:100 Hungarian=Hungarisht @@ -621,7 +624,7 @@ Ignoring\ sketch\ with\ bad\ name=Duke injoruar skicen me emer te keq Import\ Library...=Importo ilbrari... #: ../../../processing/app/Sketch.java:736 -!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?= +In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=Ne Arduino 1.0, skedari me shtese i parapercaktuar ka ndryshuar\nnga .pde ne .ino. Skica te reja (duke perfshire dhe ato qe jan krijuar)\nnga "Ruajtja Si" do te perdori nje shtese te re. Shtesa \ne skicave ekzistuese do te perditesohet ne ruajtje, por ti\n mund ta caktivizosh kete ne dialogun e preferencave #: Editor.java:1216 Editor.java:2757 Increase\ Indent=Rrit dhembezimin @@ -643,7 +646,7 @@ Japanese=Japonisht Korean=Koreane #: Preferences.java:105 -!Latvian= +Latvian=Letonisht #: Base.java:2699 Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Libraria u shtua ne librarite tuaja . Kontrolloni menune e "Importuesit te librarive" @@ -655,25 +658,25 @@ Lithuaninan=Lituanisht Low\ memory\ available,\ stability\ problems\ may\ occur=Memorie e ulet ne dispozicion; probleme me stabilitetin mund te ndodhin #: Preferences.java:107 -!Marathi= +Marathi=Gjuha Marathi #: Base.java:2112 Message=Mesazh #: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Mungon */ nga fundi i /* komenti */ #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Me shume parapelqime mund te redaktohen drejperdrejt gjate hapjes se skedarit #: Editor.java:2156 -Moving=Duke levizur +Moving=Sposto #: ../../../processing/app/Base.java:395 -!Must\ specify\ exactly\ one\ sketch\ file= +Must\ specify\ exactly\ one\ sketch\ file=Duhet te specifikoje saktesisht nje skedar skice. #: ../../../processing/app/Preferences.java:158 -!N'Ko= +N'Ko=\ N'ko #: Sketch.java:282 Name\ for\ new\ file\:=Emri per skedarin e ri @@ -706,13 +709,13 @@ No=Jo No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Nuk eshte zgjedhur asnje bord; ju lutem zgjidhni bordin nga Veglat > Menuja e bordit. #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 -!No\ changes\ necessary\ for\ Auto\ Format.= +No\ changes\ necessary\ for\ Auto\ Format.=Jo ndryshime te nevojshme per vete formatim. #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=Asnje dokument nuk u shtua tek skica. #: Platform.java:167 -!No\ launcher\ available= +No\ launcher\ available=Nuk ka leshim te mundshem #: SerialMonitor.java:112 No\ line\ ending=Asnje linje mbyllese @@ -725,23 +728,23 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Jo seriozisht , koha per pak No\ reference\ available\ for\ "{0}"=Asnje reference ne dispozicion per "{0}" #: ../../../processing/app/Sketch.java:204 -!No\ valid\ code\ files\ found= +No\ valid\ code\ files\ found=Asnje kode i sakte nuk u gjet. #: ../../../processing/app/Base.java:309 -!No\ valid\ configured\ cores\ found\!\ Exiting...= +No\ valid\ configured\ cores\ found\!\ Exiting...=Nuk u gjeten berthama te vlefshme ne berthame\! Dalja... #: ../../../processing/app/debug/TargetPackage.java:63 #, java-format No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=Nuk ka percaktime te duhura per pajisjen hard ne skede {0}. #: Base.java:191 -!Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.= +Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Gabim jo fatal gjat\u00eb rregullimit t\u00eb Pamjes dhe Mjedisit #: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859 Nope=Jo lale #: ../../../processing/app/Preferences.java:108 -!Norwegian\ Bokm\u00e5l= +Norwegian\ Bokm\u00e5l=Norvegjisht #: ../../../processing/app/Sketch.java:1656 Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=Nuk ka memorie te mjaftueshme; shiko http\://www.arduino.cc/en/Guide/Troubleshooting\#size ne reduktimin e gjurmes tuaj @@ -769,7 +772,7 @@ Open\ in\ Another\ Window=Hape ne nje dritare te re Open...=Hap... #: Editor.java:563 -!Page\ Setup= +Page\ Setup=Rregullimi i faqes #: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 Password\:=Fjalekalim\: @@ -781,13 +784,13 @@ Paste=Ngjit Persian=Persisht #: ../../../processing/app/Preferences.java:161 -!Persian\ (Iran)= +Persian\ (Iran)=Persisht #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Ju lutem importoni librarin SPI nga menuja Sktech > Import Library #: ../../../processing/app/debug/Compiler.java:529 -!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= +Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Ju lutem importoni librarine Wire nga menuja Sketch > Import Library. #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=Ju lutem instaloni JDK 1.5 ose nje version me te vone @@ -848,14 +851,11 @@ Problem\ getting\ data\ folder=Problem gjate marrjes te dhenave nga folderi Problem\ moving\ {0}\ to\ the\ build\ folder=Gabim gjate spostimit te {0} ne skedarin e ndertimit #: debug/Uploader.java:209 -!Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.= +Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Problem gjate ngarkimit ne bord. Shiko http\://www.arduino.cc/en/Guide/Troubleshooting\#upload per sugjerime #: Sketch.java:355 Sketch.java:362 Sketch.java:373 Problem\ with\ rename=Probleme me riemertimin -#: Editor.java:2137 -!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= - #: ../../../processing/app/I18n.java:86 Processor=Procesor @@ -929,7 +929,7 @@ Select\ All=Zgjidhi te gjitha Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=Zgjidhni nje skedar zip ose nje dosje qe te permbaje librarire qe ju do te deshironi te shtoni #: Sketch.java:975 -!Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch= +Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Selektoni nje imazh ose te dhena te tjera ne skedar per ti kopjuar ne skicen tuaj. #: Preferences.java:330 Select\ new\ sketchbook\ location=Zgjidhni vendodhjen e re te librit te skicave @@ -945,11 +945,11 @@ Serial\ Monitor=Monitor serial #: Serial.java:194 #, java-format -!Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?= +Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Porta seriale "{0}" nuk gjindet. A e selektuat ate qe duhet ne te djathten tek Mjetet > Menuja e portave seriale? #: Editor.java:2343 #, java-format -!Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?= +Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Porta seriale {0} nuk u gjet.\nProvoni serish ngarkimin me nje porte tjeter seriale. #: Base.java:1681 Settings\ issues=Probleme me ceshtjet @@ -958,13 +958,13 @@ Settings\ issues=Probleme me ceshtjet Show\ Sketch\ Folder=Shfaq folderin e skices #: ../../../processing/app/EditorStatus.java:468 -!Show\ verbose\ output\ during\ compilation= +Show\ verbose\ output\ during\ compilation=Trego outputin e hollesishem gjate kompilimit #: Preferences.java:387 -!Show\ verbose\ output\ during\:\ = +Show\ verbose\ output\ during\:\ =Shfaq fjalet me te shpeshta gjate daljes\: #: Editor.java:607 -Sketch=Sketch +Sketch=Skice #: Sketch.java:1754 Sketch\ Disappeared=Skica u zhduk @@ -982,7 +982,7 @@ Sketch\ is\ Untitled=Skica eshte e pa titulluar Sketch\ is\ read-only=Skica eshte vetem per lexim #: Sketch.java:1653 -!Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.= +Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=Skica shume e madhe; shiko http\://www.arduino.cc/en/Guide/Troubleshooting\#size ose keshilla per ta reduktuar ate. #: ../../../processing/app/Sketch.java:1639 #, java-format @@ -1026,33 +1026,33 @@ Swedish=Suedisht System\ Default=Te dhenat e parapercaktuara te sistemit #: Preferences.java:116 -!Tamil= +Tamil=Gjuha Tamil #: debug/Compiler.java:414 -!The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.= +The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=Fjala 'BYTE' nuk suportohet me. #: debug/Compiler.java:426 -!The\ Client\ class\ has\ been\ renamed\ EthernetClient.= +The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Klasa e klientit eshte riemeruar EthernetClient. #: debug/Compiler.java:420 -!The\ Server\ class\ has\ been\ renamed\ EthernetServer.= +The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Klasa e serverit eshte riemeruar EthernetServer. #: debug/Compiler.java:432 -!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.= +The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Klasa Udp eshte riemeruar ne EthernetUdp. #: Base.java:192 The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=Mesazhi i gabimit t\u00eb ndjek megjithat\u00eb Arduino do t\u00eb vazhdoj\u00eb n\u00eb rregull. #: Editor.java:2147 #, java-format -!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?= +The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=Skedari "{0}" duhet te jete brenda\nnje skice skedari te quajtur "{1}".\nKrijo kete skedar, zhvendose skedarin, dhe vazhdo? #: Base.java:1054 Base.java:2674 #, java-format -!The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)= +The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=Libraria "{0}" nuk mund te perdoret.\nEmrat e librarive duhet te kene vetem shkronja dhe numra normal.\n(Vetem ASCI dhe jo hapesira, dhe nuk mund te filloje me nje numer) #: Sketch.java:374 -!The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)= +The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=Skedari kryesor nuk mund te perdore shtesa.\n(Mund te jete koha per ty qe te rritesh ne nje\nmjedis te vertete programimi) #: Sketch.java:356 The\ name\ cannot\ start\ with\ a\ period.=Emri nuk mund te filloj me nje pike. @@ -1065,16 +1065,16 @@ The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=Skica "{0}" nuk mund te perdoret\nEmertimet e skicave duhet te permbajne vetem germa dhe numra\n(ASCII dhe pa hapesire , dhe nuk mund te fillojne me nje numer).\nPer te hequr qafe kete mesazh, hiqni skicen nga\n{1} #: Sketch.java:1755 -!The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.= +The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Dosja e skices eshte zhdukur.\nDoni qe te provoni ta ruani perseri ne te njejtin vend,\npor cdo gje tjeter pervec kodit do te humbasi. #: ../../../processing/app/Sketch.java:2028 -!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.=Emri i skices duhet qe te modifikohet. Emrat e skicave konsistojne vetem \nnga karaktere ASCII dhe numra (por nuk mund te fillojne me nje numer.)\nAto duhet te jene me te shkurtra se 64 karaktere. #: Base.java:259 -!The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.= +The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Skedari i sketchbook nuk egziston me.\nArduino do te kaloje ne vendodhjen e sketchbook-ut\nte parapercaktuar, dhe do te krijoje nje skedar te ri sketchbook-u\nnese eshte e nevojshme. Arduino pastaj do te ndaloje se foluri \nper veten ne veten e trete. #: Sketch.java:1075 -!This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= +This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Kjo dosje \u00ebsht\u00eb kopjuar n\u00eb\nvendndodhjen nga ku po mundohesh ta shtosh.\nVeprimi nuk mund t\u00eb realizohet. #: ../../../processing/app/EditorStatus.java:467 This\ report\ would\ have\ more\ information\ with=Ky raport do t\u00eb ket\u00eb m\u00eb shum\u00eb informacion me @@ -1115,16 +1115,16 @@ Unable\ to\ open\ serial\ monitor=E pa mundur per te hapur monitorin serial #: Sketch.java:1432 #, java-format -!Uncaught\ exception\ type\:\ {0}= +Uncaught\ exception\ type\:\ {0}=P\u00ebrjashtim i pakapur i tipit\: {0} #: Editor.java:1133 Editor.java:1355 Undo=Kthe #: Platform.java:168 -!Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt= +Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Platforme e paspecifikuar, nuk eshte asnje startues ne dizpozicion.\nPer te mundesuar hapjen e URL ose skedareve, shtoni nje \nrrjesht "launcher\=/path/to/app" tek preferences.txt #: UpdateCheck.java:111 -Update=Rifresko +Update=Perditeso #: Preferences.java:428 Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Perditeso dosjet e skices ne formatin e ri dhe ruaj (.pde -->.ino) @@ -1133,7 +1133,7 @@ Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Perditeso Upload=Ngarko #: EditorToolbar.java:46 Editor.java:553 -Upload\ Using\ Programmer=Ngarko duke perdorur programues +Upload\ Using\ Programmer=Ngarko duke perdorur programuesin #: Editor.java:2403 Editor.java:2439 Upload\ canceled.=Ngarkimi u anullua. @@ -1178,7 +1178,7 @@ Visit\ Arduino.cc=Vizito Arduino.cc #: ../../../processing/app/debug/Compiler.java:115 #, java-format -!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= +WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=Paralajmerim\: libraria {0} pretendon se po funksionon ne arkitekture (n) {1} dhe mund te jete i papershtatshem me bordin aktual qe po funksionon ne arkitekture (n) {2}. #: Base.java:2128 Warning=Paralajmerim @@ -1187,19 +1187,19 @@ Warning=Paralajmerim Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() eshte ri emertuar me Wire.read(). #: debug/Compiler.java:438 -!Wire.send()\ has\ been\ renamed\ Wire.write().= +Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() eshte riemeruar Wire.write(). #: FindReplace.java:105 Wrap\ Around=Mbeshtill perreth #: debug/Uploader.java:213 -!Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?= +Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=U gjet nje mikrokontrollues gabim. A e selektuat bordin e sakte nga menuja Tools > Board? #: Preferences.java:77 UpdateCheck.java:108 Yes=Po #: Sketch.java:1074 -You\ can't\ fool\ me=Ti nuk mund te me genjes mua +You\ can't\ fool\ me=Ti nuk mund te me genjesh mua #: Sketch.java:411 You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Ju nuk mund te keni nje skedar .cpp me emer te njejte si nje skice @@ -1211,7 +1211,7 @@ You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Ju nuk mund te ruani skicen si "{0}"\nsepse skica ekziston njehere si nje skedar .cpp me ate emertim #: Sketch.java:883 -!You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.= +You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Ju nuk mund ta ruani skicen brenda nje dosje\nBrenda vetes. Kjo mund te vazhdoje pambarimisht #: Base.java:1888 You\ forgot\ your\ sketchbook=You harruat librin tuaj te skicave @@ -1220,7 +1220,7 @@ You\ forgot\ your\ sketchbook=You harruat librin tuaj te skicave You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=Ju keni shtypur {0} por asgje nuk eshte derguar. Duhet ju te zgjidhni nje mbyllje rrjeshti? #: Base.java:536 -!You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?= +You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Ju keni arritur limitin per vete nderrimin e skicave te reja\nper sot. Si thoni qe te shkojme per ecje nderkohe? #: Base.java:2638 ZIP\ files\ or\ folders=Skedar zip ose dosje @@ -1230,38 +1230,38 @@ Zip\ doesn't\ contain\ a\ library=Skedari zip nuk mund te permbaje asnje librari #: Sketch.java:364 #, java-format -!".{0}"\ is\ not\ a\ valid\ extension.= +".{0}"\ is\ not\ a\ valid\ extension.=".{0}" nuk eshte nje shtese e vlefshme. #: SketchCode.java:258 #, java-format -"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" permban karaktere te panjohura. Ne qofte se ky kod eshte krijuar me nje version te vjeter ose e perpunuar , ju nevojitet qe te perdorni Veglat --> Rregullo enkodimin & Rifresko perditesimin qe skica te perdori enkodimin UTF-8. Ne qofte se jo ju duhet te fshini karakterin e demtuar qe te hiqni kete mesazh. +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 -!\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n= +\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nQ\u00eb nga Arduino 0019, libraria e Ethernet varet nga libraria SPI.\nMesa duket ti po p\u00ebrdor at\u00eb ose nj\u00eb librari q\u00eb varet nga libraria SPI.\n #: debug/Compiler.java:415 -!\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n= +\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nQ\u00eb nga Arduino 1.0, fjala ky\u00e7e 'BYTE' nuk suportohet m\u00eb.\nJu lutem, p\u00ebrdorni Serial.write()\n #: debug/Compiler.java:427 -!\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n= +\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nQ\u00eb nga Arduino 1.0, klasa Client n\u00eb librarin\u00eb Ethernet \u00ebsht\u00eb riem\u00ebruar EthernetClientr.\n\n #: debug/Compiler.java:421 -!\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n= +\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nQ\u00eb nga Arduino 1.0, klasa Server n\u00eb librarin\u00eb Ethernet \u00ebsht\u00eb riem\u00ebruar EthernetServer.\n\n #: debug/Compiler.java:433 -!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n= +\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=\nQ\u00eb nga Arduino 1.0, klasa Udp n\u00eb librarin\u00eb Ethernet \u00ebsht\u00eb riem\u00ebruar EthernetUdp\n #: debug/Compiler.java:445 -!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n= +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nQ\u00eb nga Arduino 1.0, funksioni Wire. receive() \u00ebsht\u00eb riem\u00ebruar Wire.read() p\u00ebr p\u00ebrputhje me librarit\u00eb e tjera.\n #: debug/Compiler.java:439 -!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n= +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nQ\u00eb nga Arduino 1.0, funksioni Wire.send() \u00ebsht\u00eb riem\u00ebruar Wire.write() p\u00ebr p\u00ebrputhje me librarit\u00eb e tjera.\n #: SerialMonitor.java:130 SerialMonitor.java:133 baud=baud #: Preferences.java:389 -!compilation\ = +compilation\ =kompilim #: ../../../processing/app/NetworkMonitor.java:111 connected\!=lidhur\! @@ -1305,21 +1305,21 @@ platforms.html=platforma.html #: Serial.java:451 #, java-format -!readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}= +readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=Buffer i readBytesUntil () eshte shume i vogel per {0} byte deri ne char {1} #: Sketch.java:647 -!removeCode\:\ internal\ error..\ could\ not\ find\ code= +removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: gabim i brendshem.. nuk arrin te gjeje kodin #: Editor.java:932 serialMenu\ is\ null=serialMenu eshte bosh #: debug/Uploader.java:195 #, java-format -!the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected= +the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=porti serial {0} i zgjedhur nuk ekziston ose bordi yt nuk \u00ebsht\u00eb i lidhur #: ../../../processing/app/Base.java:389 #, java-format -!unknown\ option\:\ {0}= +unknown\ option\:\ {0}=opsion i panjohur\: {0} #: Preferences.java:391 upload=ngarko @@ -1342,32 +1342,32 @@ upload=ngarko #: ../../../processing/app/Base.java:519 #, java-format -!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= +{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"={0}\: Argument i pavlefshem per --pref, duhet te jete i formes "pref\=value" #: ../../../processing/app/Base.java:476 #, java-format -!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= +{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"={0}\: Emer bordi i pavlefshem, duhet te jete i formes "package\:arch\:board" ose "package\:arch\:board\:options" #: ../../../processing/app/Base.java:509 #, java-format -!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= +{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"={0}\: Opsion i pavlefshem per "{1}" opsion per bord "{2}" #: ../../../processing/app/Base.java:507 #, java-format -!{0}\:\ Invalid\ option\ for\ board\ "{1}"= +{0}\:\ Invalid\ option\ for\ board\ "{1}"={0}\: Opsion invalid per bordin "{1}" #: ../../../processing/app/Base.java:502 #, java-format -!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= +{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"={0}\: Opsion invalid, duhet te jete ne formen "name\=value" #: ../../../processing/app/Base.java:486 #, java-format -!{0}\:\ Unknown\ architecture= +{0}\:\ Unknown\ architecture={0}\: Arkitekture e panjohur #: ../../../processing/app/Base.java:491 #, java-format -!{0}\:\ Unknown\ board= +{0}\:\ Unknown\ board={0}\: Bord i panjohur #: ../../../processing/app/Base.java:481 #, java-format -!{0}\:\ Unknown\ package= +{0}\:\ Unknown\ package={0}\: Pakete e panjohur diff --git a/arduino-core/src/processing/app/i18n/Resources_sv.po b/arduino-core/src/processing/app/i18n/Resources_sv.po index a22375b37..8fd8b69b1 100644 --- a/arduino-core/src/processing/app/i18n/Resources_sv.po +++ b/arduino-core/src/processing/app/i18n/Resources_sv.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/arduino-ide-15/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,7 +42,7 @@ msgid "" " Are you " "sure you want to Quit?

    Closing the last open sketch will quit Arduino." -msgstr "" +msgstr " Är du säker på att du vill avsluta?

    När du stänger den sista öppna sketchen avslutas Arduino IDE." #: Editor.java:2053 msgid "" @@ -138,6 +138,12 @@ msgstr "" msgid "Arduino AVR Boards" msgstr "" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -217,7 +223,7 @@ msgstr "" #: Editor.java:2136 msgid "Bad file selected" -msgstr "" +msgstr "Ogiltig fil har valts" #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" @@ -226,7 +232,7 @@ msgstr "Vitryska" #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" -msgstr "" +msgstr "Kort" #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format @@ -237,7 +243,7 @@ msgstr "" #: ../../../processing/app/EditorStatus.java:472 msgid "Board: " -msgstr "" +msgstr "Kort:" #: ../../../processing/app/Preferences.java:140 msgid "Bosnian" @@ -355,7 +361,7 @@ msgstr "Kopiera som HTML" #: ../../../processing/app/EditorStatus.java:455 msgid "Copy error messages" -msgstr "" +msgstr "Kopiera felmeddelanden" #: Editor.java:1165 Editor.java:2715 msgid "Copy for Forum" @@ -376,7 +382,7 @@ msgstr "Kan ej skapa sketchmappen." #: Editor.java:2206 msgid "Could not create the sketch." -msgstr "" +msgstr "Kunde inte skapa sketchen" #: Sketch.java:617 #, java-format @@ -426,7 +432,7 @@ msgstr "Kunde ej öppna mappen\n{0}" msgid "" "Could not properly re-save the sketch. You may be in trouble at this point,\n" "and it might be time to copy and paste your code to another text editor." -msgstr "" +msgstr "Din sketch kunde inte sparas igen. Du kan ha allvarliga problem i det här läget, och det kan vara dags att \"klipp-o-klistra\" över texten till en annan texteditor." #: Sketch.java:1768 msgid "Could not re-save sketch" @@ -436,7 +442,7 @@ msgstr "Kunde ej spara om sketchen" msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "Kunde ej läsa färginställningarna för temat.\nDu måste ominstallera Arduino." +msgstr "" #: Preferences.java:219 msgid "" @@ -523,15 +529,15 @@ msgstr "Ta bort" msgid "" "Device is not responding, check the right serial port is selected or RESET " "the board right before exporting" -msgstr "" +msgstr "Enheten svarar inte. Kontrollera att rätt serieport är vald, eller gör RESET på kortet just innan export." #: tools/FixEncoding.java:57 msgid "Discard all changes and reload sketch?" -msgstr "" +msgstr "Kasta bort alla ändringar och ladda om sketchen?" #: ../../../processing/app/Preferences.java:438 msgid "Display line numbers" -msgstr "" +msgstr "Visa radnummer" #: Editor.java:2064 msgid "Don't Save" @@ -739,7 +745,7 @@ msgstr "För mer information om att installera bibliotek, gå till http://arduin #: debug/BasicUploader.java:80 msgid "Forcing reset using 1200bps open/close on port " -msgstr "" +msgstr "Tvingar återställning genom 1200bps öppning/stängning av port" #: Preferences.java:95 msgid "French" @@ -889,7 +895,7 @@ msgstr "Lituanska" #: ../../../processing/app/Sketch.java:1660 msgid "Low memory available, stability problems may occur" -msgstr "" +msgstr "Lite minne tillgängligt, problem med stabiliteten kan inträffa" #: Preferences.java:107 msgid "Marathi" @@ -937,7 +943,7 @@ msgstr "Ny flik" #: SerialMonitor.java:112 msgid "Newline" -msgstr "Ny linje" +msgstr "Ny rad" #: EditorHeader.java:340 msgid "Next Tab" @@ -949,7 +955,7 @@ msgstr "Nej" #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "" +msgstr "Inget kort har valts. Välj ett kort från menyn Verktyg > Kort" #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." @@ -957,7 +963,7 @@ msgstr "Inga ändringar behövs för autoformat" #: Editor.java:373 msgid "No files were added to the sketch." -msgstr "" +msgstr "Inga filer har lagts till i sketchen" #: Platform.java:167 msgid "No launcher available" @@ -965,7 +971,7 @@ msgstr "" #: SerialMonitor.java:112 msgid "No line ending" -msgstr "Ingen linjeändelse" +msgstr "Inget radslut" #: Base.java:541 msgid "No really, time for some fresh air for you." @@ -987,7 +993,7 @@ msgstr "" #: Base.java:191 msgid "Non-fatal error while setting the Look & Feel." -msgstr "" +msgstr "Icke-fatalt fel vid inställningar av Look & Feel" #: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859 msgid "Nope" @@ -1001,7 +1007,7 @@ msgstr "" msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " "for tips on reducing your footprint." -msgstr "" +msgstr "Otillräckligt minne; se http://www.arduino.cc/en/Guide/Troubleshooting#size för tips om hur du kan minska storleken" #: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2145 Editor.java:2465 @@ -1038,7 +1044,7 @@ msgstr "Utskriftsformat" #: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 msgid "Password:" -msgstr "" +msgstr "Lösenord:" #: Editor.java:1189 Editor.java:2731 msgid "Paste" @@ -1110,7 +1116,7 @@ msgstr "Problem att öppna URL" #: Base.java:227 msgid "Problem Setting the Platform" -msgstr "" +msgstr "Problem vid inställning av plattformen" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 msgid "Problem accessing board folder /www/sd" @@ -1139,12 +1145,6 @@ msgstr "Problem vid uppladdning till brädan. Se http://www.arduino.cc/en/Guide/ msgid "Problem with rename" msgstr "Problem med namnbyte" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "Processor" @@ -1258,7 +1258,7 @@ msgstr "Skicka" #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 msgid "Serial Monitor" -msgstr "" +msgstr "Seriell monitor" #: Serial.java:174 #, java-format @@ -1355,7 +1355,7 @@ msgstr "Sketchbookplats:" #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" -msgstr "" +msgstr "Sketcher (*.ino, *.pde)" #: ../../../processing/app/Preferences.java:152 msgid "Slovenian" @@ -1536,11 +1536,11 @@ msgstr "Kan inte ansluta: försöker igen" #: ../../../processing/app/Editor.java:2526 msgid "Unable to connect: wrong password?" -msgstr "" +msgstr "Kunde inte ansluta: fel lösenord?" #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" -msgstr "" +msgstr "Kunde inte öppna den seriella monitorn" #: Sketch.java:1432 #, java-format @@ -1584,7 +1584,7 @@ msgstr "Uppladdning avbruten" #: Editor.java:2378 msgid "Uploading to I/O Board..." -msgstr "" +msgstr "Laddar upp till I/O-kortet" #: Sketch.java:1622 msgid "Uploading..." @@ -1648,7 +1648,7 @@ msgstr "Radbyte" msgid "" "Wrong microcontroller found. Did you select the right board from the Tools " "> Board menu?" -msgstr "" +msgstr "Fel mikrokontroller hittades. Har du valt rätt kort från menyn Verktyg > Kort?" #: Preferences.java:77 UpdateCheck.java:108 msgid "Yes" @@ -1712,10 +1712,10 @@ msgstr "\".{0}\" är inte en godkänd filändelse." #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." -msgstr "\"{0}\" innehåller okända tecken. Om detta programmet var skapat med en äldre version av Arduino behöver du kanske använda Verktyg -> Fixa teckenkodning & Ladda om för att uppdatera skissen till att använda UTF-8. Om inte behöver du kanske ta bort okända tecken för att bli kvitt detta felmeddelande." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." +msgstr "" #: debug/Compiler.java:409 msgid "" @@ -1857,7 +1857,7 @@ msgstr "Ladda upp" #: Editor.java:380 #, java-format msgid "{0} files added to the sketch." -msgstr "" +msgstr "{0} filer har lagts till i sketchen" #: debug/Compiler.java:365 #, java-format diff --git a/arduino-core/src/processing/app/i18n/Resources_sv.properties b/arduino-core/src/processing/app/i18n/Resources_sv.properties index a9021f545..c93ab4d69 100644 --- a/arduino-core/src/processing/app/i18n/Resources_sv.properties +++ b/arduino-core/src/processing/app/i18n/Resources_sv.properties @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Swedish (http\://www.transifex.com/projects/p/arduino-ide-15/language/sv/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: sv\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Swedish (http\://www.transifex.com/projects/p/arduino-ide-15/language/sv/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: sv\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(kr\u00e4ver omstart av Arduino) @@ -21,7 +21,7 @@ .pde\ ->\ .ino=.pde->.ino #: Base.java:773 -!\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

    Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

    Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= \u00c4r du s\u00e4ker p\u00e5 att du vill avsluta?

    N\u00e4r du st\u00e4nger den sista \u00f6ppna sketchen avslutas Arduino IDE. #: Editor.java:2053 !\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Do\ you\ want\ to\ save\ changes\ to\ this\ sketch
    \ before\ closing?

    If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= @@ -83,6 +83,9 @@ Archive\ sketch\ canceled.=Arkivering avbruten. #: ../../../processing/app/I18n.java:82 !Arduino\ AVR\ Boards= +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino kan ej startas eftersom att det ej kunde skapa en mapp f\u00f6r att spara dina inst\u00e4llningar. @@ -137,21 +140,21 @@ Autoscroll=Autoscrolla !Bad\ error\ line\:\ {0}= #: Editor.java:2136 -!Bad\ file\ selected= +Bad\ file\ selected=Ogiltig fil har valts #: ../../../processing/app/Preferences.java:139 Belarusian=Vitryska #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 -!Board= +Board=Kort #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format !Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= #: ../../../processing/app/EditorStatus.java:472 -!Board\:\ = +Board\:\ =Kort\: #: ../../../processing/app/Preferences.java:140 Bosnian=Bosniska @@ -240,7 +243,7 @@ Copy=Kopiera Copy\ as\ HTML=Kopiera som HTML #: ../../../processing/app/EditorStatus.java:455 -!Copy\ error\ messages= +Copy\ error\ messages=Kopiera felmeddelanden #: Editor.java:1165 Editor.java:2715 Copy\ for\ Forum=Kopiera som foruminl\u00e4gg @@ -256,7 +259,7 @@ Could\ not\ copy\ to\ a\ proper\ location.=Kunde inte kopiera till en giltig pla Could\ not\ create\ the\ sketch\ folder.=Kan ej skapa sketchmappen. #: Editor.java:2206 -!Could\ not\ create\ the\ sketch.= +Could\ not\ create\ the\ sketch.=Kunde inte skapa sketchen #: Sketch.java:617 #, java-format @@ -291,13 +294,13 @@ Could\ not\ open\ the\ URL\n{0}=Kunde ej \u00f6ppna URL\n{0} Could\ not\ open\ the\ folder\n{0}=Kunde ej \u00f6ppna mappen\n{0} #: Sketch.java:1769 -!Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.= +Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=Din sketch kunde inte sparas igen. Du kan ha allvarliga problem i det h\u00e4r l\u00e4get, och det kan vara dags att "klipp-o-klistra" \u00f6ver texten till en annan texteditor. #: Sketch.java:1768 Could\ not\ re-save\ sketch=Kunde ej spara om sketchen #: Theme.java:52 -Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Kunde ej l\u00e4sa f\u00e4rginst\u00e4llningarna f\u00f6r temat.\nDu m\u00e5ste ominstallera Arduino. +!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Kunde ej l\u00e4sa standardinst\u00e4llningarna.\nDu m\u00e5ste installera om Arduino. @@ -358,13 +361,13 @@ Decrease\ Indent=Minska indrag Delete=Ta bort #: debug/Uploader.java:199 -!Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting= +Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=Enheten svarar inte. Kontrollera att r\u00e4tt serieport \u00e4r vald, eller g\u00f6r RESET p\u00e5 kortet just innan export. #: tools/FixEncoding.java:57 -!Discard\ all\ changes\ and\ reload\ sketch?= +Discard\ all\ changes\ and\ reload\ sketch?=Kasta bort alla \u00e4ndringar och ladda om sketchen? #: ../../../processing/app/Preferences.java:438 -!Display\ line\ numbers= +Display\ line\ numbers=Visa radnummer #: Editor.java:2064 Don't\ Save=Spara inte @@ -520,7 +523,7 @@ Fix\ Encoding\ &\ Reload=Fixa teckenkodningen och ladda om For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=F\u00f6r mer information om att installera bibliotek, g\u00e5 till http\://arduino.cc/en/Guide/Libraries\n #: debug/BasicUploader.java:80 -!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ = +Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =Tvingar \u00e5terst\u00e4llning genom 1200bps \u00f6ppning/st\u00e4ngning av port #: Preferences.java:95 French=Franska @@ -625,7 +628,7 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Biblioteket Lithuaninan=Lituanska #: ../../../processing/app/Sketch.java:1660 -!Low\ memory\ available,\ stability\ problems\ may\ occur= +Low\ memory\ available,\ stability\ problems\ may\ occur=Lite minne tillg\u00e4ngligt, problem med stabiliteten kan intr\u00e4ffa #: Preferences.java:107 Marathi=Marathi @@ -661,7 +664,7 @@ New\ Editor\ Window=Nytt redigeringsf\u00f6nster New\ Tab=Ny flik #: SerialMonitor.java:112 -Newline=Ny linje +Newline=Ny rad #: EditorHeader.java:340 Next\ Tab=N\u00e4sta flik @@ -670,19 +673,19 @@ Next\ Tab=N\u00e4sta flik No=Nej #: debug/Compiler.java:126 -!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.= +No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Inget kort har valts. V\u00e4lj ett kort fr\u00e5n menyn Verktyg > Kort #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Inga \u00e4ndringar beh\u00f6vs f\u00f6r autoformat #: Editor.java:373 -!No\ files\ were\ added\ to\ the\ sketch.= +No\ files\ were\ added\ to\ the\ sketch.=Inga filer har lagts till i sketchen #: Platform.java:167 !No\ launcher\ available= #: SerialMonitor.java:112 -No\ line\ ending=Ingen linje\u00e4ndelse +No\ line\ ending=Inget radslut #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Nej, seri\u00f6st, dags f\u00f6r lite frisk luft f\u00f6r dig. @@ -699,7 +702,7 @@ No\ reference\ available\ for\ "{0}"=Det saknas inl\u00e4gg i referensmaterialet !No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.= #: Base.java:191 -!Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.= +Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Icke-fatalt fel vid inst\u00e4llningar av Look & Feel #: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859 Nope=Nepp @@ -708,7 +711,7 @@ Nope=Nepp !Norwegian\ Bokm\u00e5l= #: ../../../processing/app/Sketch.java:1656 -!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.= +Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=Otillr\u00e4ckligt minne; se http\://www.arduino.cc/en/Guide/Troubleshooting\#size f\u00f6r tips om hur du kan minska storleken #: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2145 Editor.java:2465 @@ -736,7 +739,7 @@ Open...=\u00d6ppna... Page\ Setup=Utskriftsformat #: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 -!Password\:= +Password\:=L\u00f6senord\: #: Editor.java:1189 Editor.java:2731 Paste=Klistra in @@ -790,7 +793,7 @@ Problem\ Opening\ Folder=Problem att \u00f6ppna mapp Problem\ Opening\ URL=Problem att \u00f6ppna URL #: Base.java:227 -!Problem\ Setting\ the\ Platform= +Problem\ Setting\ the\ Platform=Problem vid inst\u00e4llning av plattformen #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 !Problem\ accessing\ board\ folder\ /www/sd= @@ -811,9 +814,6 @@ Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troublesh #: Sketch.java:355 Sketch.java:362 Sketch.java:373 Problem\ with\ rename=Problem med namnbyte -#: Editor.java:2137 -!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= - #: ../../../processing/app/I18n.java:86 Processor=Processor @@ -899,7 +899,7 @@ Select\ new\ sketchbook\ location=V\u00e4lj ny plats f\u00f6r sketchbook\: Send=Skicka #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 -!Serial\ Monitor= +Serial\ Monitor=Seriell monitor #: Serial.java:174 #, java-format @@ -964,7 +964,7 @@ Sketchbook\ folder\ disappeared=Sketchbookmappen f\u00f6rsvann Sketchbook\ location\:=Sketchbookplats\: #: ../../../processing/app/Base.java:785 -!Sketches\ (*.ino,\ *.pde)= +Sketches\ (*.ino,\ *.pde)=Sketcher (*.ino, *.pde) #: ../../../processing/app/Preferences.java:152 !Slovenian= @@ -1074,10 +1074,10 @@ Ukrainian=Ukrainska Unable\ to\ connect\:\ retrying=Kan inte ansluta\: f\u00f6rs\u00f6ker igen #: ../../../processing/app/Editor.java:2526 -!Unable\ to\ connect\:\ wrong\ password?= +Unable\ to\ connect\:\ wrong\ password?=Kunde inte ansluta\: fel l\u00f6senord? #: ../../../processing/app/Editor.java:2512 -!Unable\ to\ open\ serial\ monitor= +Unable\ to\ open\ serial\ monitor=Kunde inte \u00f6ppna den seriella monitorn #: Sketch.java:1432 #, java-format @@ -1108,7 +1108,7 @@ Upload\ canceled.=Uppladdning avbruten. Upload\ cancelled=Uppladdning avbruten #: Editor.java:2378 -!Uploading\ to\ I/O\ Board...= +Uploading\ to\ I/O\ Board...=Laddar upp till I/O-kortet #: Sketch.java:1622 Uploading...=Laddar upp... @@ -1155,7 +1155,7 @@ Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() har bytt namn till Wi Wrap\ Around=Radbyte #: debug/Uploader.java:213 -!Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?= +Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=Fel mikrokontroller hittades. Har du valt r\u00e4tt kort fr\u00e5n menyn Verktyg > Kort? #: Preferences.java:77 UpdateCheck.java:108 Yes=Ja @@ -1196,7 +1196,7 @@ Zip\ doesn't\ contain\ a\ library=Zipfilen inneh\u00e5ller ej ett bibliotek. #: SketchCode.java:258 #, java-format -"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" inneh\u00e5ller ok\u00e4nda tecken. Om detta programmet var skapat med en \u00e4ldre version av Arduino beh\u00f6ver du kanske anv\u00e4nda Verktyg -> Fixa teckenkodning & Ladda om f\u00f6r att uppdatera skissen till att anv\u00e4nda UTF-8. Om inte beh\u00f6ver du kanske ta bort ok\u00e4nda tecken f\u00f6r att bli kvitt detta felmeddelande. +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 \nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nFr\u00e5n och med Arduino 0019, \u00e4r Ethernet biblioteket beroende av SPI biblioteket.\nDet ser ut som om du anv\u00e4nder det eller annat bibliotek som \u00e4r beroende av SPI biblioteket.\n\n @@ -1284,7 +1284,7 @@ upload=Ladda upp #: Editor.java:380 #, java-format -!{0}\ files\ added\ to\ the\ sketch.= +{0}\ files\ added\ to\ the\ sketch.={0} filer har lagts till i sketchen #: debug/Compiler.java:365 #, java-format diff --git a/arduino-core/src/processing/app/i18n/Resources_ta.po b/arduino-core/src/processing/app/i18n/Resources_ta.po index e1995e754..37e579c00 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ta.po +++ b/arduino-core/src/processing/app/i18n/Resources_ta.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Tamil (http://www.transifex.com/projects/p/arduino-ide-15/language/ta/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -89,7 +89,7 @@ msgstr "கோப்பை சேர்" #: Base.java:963 msgid "Add Library..." -msgstr "" +msgstr "நூலகத்தை சேர்..." #: tools/FixEncoding.java:77 msgid "" @@ -138,6 +138,12 @@ msgstr "" msgid "Arduino AVR Boards" msgstr "" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -155,7 +161,7 @@ msgid "" "Arduino requires a full JDK (not just a JRE)\n" "to run. Please install JDK 1.5 or later.\n" "More information can be found in the reference." -msgstr "Arduinoவிற்கு முழு JDK தேவை (JRE மற்றும் கூடாது). \nJDK 1.5 (அ) புதியதை நிறுவவும்.\nமேலும் விவரங்களை குறிப்பில் காணலாம்." +msgstr "Arduinoவிற்கு முழு JDK தேவை (JRE மட்டும் கூடாது). \nJDK 1.5 (அ) புதியதை நிறுவவும்.\nமேலும் விவரங்களை குறிப்பில் காணலாம்." #: ../../../processing/app/EditorStatus.java:471 msgid "Arduino: " @@ -436,7 +442,7 @@ msgstr "வரைவை மறுபடியும் சேமிக்க இ msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "வண்ண கரு அமைப்புகளை படிக்க முடியவில்லை.\nநீங்கள் செயல்முறையை மீண்டும் நிறுவ வேண்டும்." +msgstr "" #: Preferences.java:219 msgid "" @@ -1139,12 +1145,6 @@ msgstr "பலகைக்கு பதிவேற்றம் செய்வ msgid "Problem with rename" msgstr "பெயர்மாற்றத்தில் பிரச்சனை எழுந்துள்ளது" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "செயலாக்கத்தால் அதனுடைய வரைவுகள் மற்றும்\n.ino அல்லது .pde நீட்டுதல் கொண்ட கோப்புகளை மட்டுமே திறக்க முடியும்" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "" @@ -1712,9 +1712,9 @@ msgstr "\".{0}\" சரியான நீடிப்பு கிடையா #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." msgstr "" #: debug/Compiler.java:409 diff --git a/arduino-core/src/processing/app/i18n/Resources_ta.properties b/arduino-core/src/processing/app/i18n/Resources_ta.properties index 0d4380243..09ee35ee5 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ta.properties +++ b/arduino-core/src/processing/app/i18n/Resources_ta.properties @@ -2,8 +2,8 @@ # Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the Arduino IDE package. # Ram Kumar.Y , 2012. -# -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Tamil (http\://www.transifex.com/projects/p/arduino-ide-15/language/ta/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ta\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +# +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Tamil (http\://www.transifex.com/projects/p/arduino-ide-15/language/ta/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ta\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ (Arduino \u0bae\u0bb1\u0bc1\u0ba4\u0bc1\u0bb5\u0b95\u0bcd\u0b95\u0bae\u0bcd \u0ba4\u0bc7\u0bb5\u0bc8\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1) @@ -51,7 +51,7 @@ About\ Arduino=Arduino \u0baa\u0bb1\u0bcd\u0bb1\u0bbf Add\ File...=\u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc8 \u0b9a\u0bc7\u0bb0\u0bcd #: Base.java:963 -!Add\ Library...= +Add\ Library...=\u0ba8\u0bc2\u0bb2\u0b95\u0ba4\u0bcd\u0ba4\u0bc8 \u0b9a\u0bc7\u0bb0\u0bcd... #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=\u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1 \u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bcd\u0b9f\u0bc8 \u0b9a\u0bb0\u0bbf\u0b9a\u0bc6\u0baf\u0bcd\u0baf \u0bae\u0bc1\u0baf\u0bb2\u0bc1\u0bae\u0bcd\u0baa\u0bcb\u0ba4\u0bc1 \u0b92\u0bb0\u0bc1 \u0baa\u0bbf\u0bb4\u0bc8 \u0b8f\u0bb1\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1.\n\u0b87\u0ba8\u0bcd\u0ba4\u0bbf\u0baf \u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0baf\u0bb2\u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bbe\u0bae\u0bcd. \u0b8f\u0ba9\u0bc6\u0ba9\u0bcd\u0bb1\u0bbe\u0bb2\u0bcd, \u0b85\u0ba4\u0bc1 \u0baa\u0bb4\u0bc8\u0baf \u0baa\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0bc8 \n\u0bae\u0bb1\u0bcd\u0bb1\u0bbf\u0baf\u0bae\u0bc8\u0ba4\u0bcd\u0ba4\u0bc1\u0bb5\u0bbf\u0b9f\u0bc1\u0bae\u0bcd. \u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0bae\u0bb1\u0bc1\u0baa\u0b9f\u0bbf\u0baf\u0bc1\u0bae\u0bcd \u0ba4\u0bbf\u0bb1\u0ba8\u0bcd\u0ba4\u0bc1 \u0bae\u0bc1\u0baf\u0bb1\u0bcd\u0b9a\u0bbf\u0ba4\u0bcd\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbe\u0bb0\u0bcd\u0b95\u0bcd\u0b95\u0bb5\u0bc1\u0bae\u0bcd.\n @@ -83,6 +83,9 @@ Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ sav #: ../../../processing/app/I18n.java:82 !Arduino\ AVR\ Boards= +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino \u0b87\u0baf\u0b99\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8, \u0b8f\u0ba9\u0bc6\u0ba9\u0bcd\u0bb1\u0bbe\u0bb2\u0bcd \u0b89\u0b99\u0bcd\u0b95\u0bb3\u0bcd \n\u0b85\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bc8 \u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95 \u0b92\u0bb0\u0bc1 \u0b89\u0bb1\u0bc8\u0baf\u0bc8 \u0b89\u0bb0\u0bc1\u0bb5\u0bbe\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8. @@ -90,7 +93,7 @@ Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ you Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino \u0b87\u0baf\u0b99\u0bcd\u0b95\u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8 \u0b8f\u0ba9\u0bc6\u0ba9\u0bcd\u0bb1\u0bbe\u0bb2\u0bcd,\n\u0bb5\u0bb0\u0bc8\u0bb5\u0bc1\u0baa\u0bcd\u0baa\u0bc1\u0ba4\u0bcd\u0ba4\u0b95\u0ba4\u0bcd\u0ba4\u0bc8 \u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95 \u0b89\u0bb1\u0bc8\u0baf\u0bc8 \u0b89\u0bb0\u0bc1\u0bb5\u0bbe\u0b95\u0bcd\u0b95\u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8. #: Base.java:240 -Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino\u0bb5\u0bbf\u0bb1\u0bcd\u0b95\u0bc1 \u0bae\u0bc1\u0bb4\u0bc1 JDK \u0ba4\u0bc7\u0bb5\u0bc8 (JRE \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0b95\u0bc2\u0b9f\u0bbe\u0ba4\u0bc1). \nJDK 1.5 (\u0b85) \u0baa\u0bc1\u0ba4\u0bbf\u0baf\u0ba4\u0bc8 \u0ba8\u0bbf\u0bb1\u0bc1\u0bb5\u0bb5\u0bc1\u0bae\u0bcd.\n\u0bae\u0bc7\u0bb2\u0bc1\u0bae\u0bcd \u0bb5\u0bbf\u0bb5\u0bb0\u0b99\u0bcd\u0b95\u0bb3\u0bc8 \u0b95\u0bc1\u0bb1\u0bbf\u0baa\u0bcd\u0baa\u0bbf\u0bb2\u0bcd \u0b95\u0bbe\u0ba3\u0bb2\u0bbe\u0bae\u0bcd. +Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino\u0bb5\u0bbf\u0bb1\u0bcd\u0b95\u0bc1 \u0bae\u0bc1\u0bb4\u0bc1 JDK \u0ba4\u0bc7\u0bb5\u0bc8 (JRE \u0bae\u0b9f\u0bcd\u0b9f\u0bc1\u0bae\u0bcd \u0b95\u0bc2\u0b9f\u0bbe\u0ba4\u0bc1). \nJDK 1.5 (\u0b85) \u0baa\u0bc1\u0ba4\u0bbf\u0baf\u0ba4\u0bc8 \u0ba8\u0bbf\u0bb1\u0bc1\u0bb5\u0bb5\u0bc1\u0bae\u0bcd.\n\u0bae\u0bc7\u0bb2\u0bc1\u0bae\u0bcd \u0bb5\u0bbf\u0bb5\u0bb0\u0b99\u0bcd\u0b95\u0bb3\u0bc8 \u0b95\u0bc1\u0bb1\u0bbf\u0baa\u0bcd\u0baa\u0bbf\u0bb2\u0bcd \u0b95\u0bbe\u0ba3\u0bb2\u0bbe\u0bae\u0bcd. #: ../../../processing/app/EditorStatus.java:471 !Arduino\:\ = @@ -297,7 +300,7 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=\u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0bae\u0bb1\u0bc1\u0baa\u0b9f\u0bbf\u0baf\u0bc1\u0bae\u0bcd \u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95 \u0b87\u0baf\u0bb2\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8 #: Theme.java:52 -Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u0bb5\u0ba3\u0bcd\u0ba3 \u0b95\u0bb0\u0bc1 \u0b85\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bc8 \u0baa\u0b9f\u0bbf\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8.\n\u0ba8\u0bc0\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b9a\u0bc6\u0baf\u0bb2\u0bcd\u0bae\u0bc1\u0bb1\u0bc8\u0baf\u0bc8 \u0bae\u0bc0\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd \u0ba8\u0bbf\u0bb1\u0bc1\u0bb5 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd. +!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u0b87\u0baf\u0bb2\u0bcd\u0baa\u0bc1\u0ba8\u0bbf\u0bb2\u0bc8 \u0b85\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bc8 \u0baa\u0b9f\u0bbf\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8.\n\u0ba8\u0bc0\u0b99\u0bcd\u0b95\u0bb3\u0bcd Arduino\u0bb5\u0bc8 \u0bae\u0bc0\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd \u0ba8\u0bbf\u0bb1\u0bc1\u0bb5 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd. @@ -811,9 +814,6 @@ Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troublesh #: Sketch.java:355 Sketch.java:362 Sketch.java:373 Problem\ with\ rename=\u0baa\u0bc6\u0baf\u0bb0\u0bcd\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0ba4\u0bcd\u0ba4\u0bbf\u0bb2\u0bcd \u0baa\u0bbf\u0bb0\u0b9a\u0bcd\u0b9a\u0ba9\u0bc8 \u0b8e\u0bb4\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1 -#: Editor.java:2137 -Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=\u0b9a\u0bc6\u0baf\u0bb2\u0bbe\u0b95\u0bcd\u0b95\u0ba4\u0bcd\u0ba4\u0bbe\u0bb2\u0bcd \u0b85\u0ba4\u0ba9\u0bc1\u0b9f\u0bc8\u0baf \u0bb5\u0bb0\u0bc8\u0bb5\u0bc1\u0b95\u0bb3\u0bcd \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd\n.ino \u0b85\u0bb2\u0bcd\u0bb2\u0ba4\u0bc1 .pde \u0ba8\u0bc0\u0b9f\u0bcd\u0b9f\u0bc1\u0ba4\u0bb2\u0bcd \u0b95\u0bca\u0ba3\u0bcd\u0b9f \u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bc8 \u0bae\u0b9f\u0bcd\u0b9f\u0bc1\u0bae\u0bc7 \u0ba4\u0bbf\u0bb1\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bc1\u0bae\u0bcd - #: ../../../processing/app/I18n.java:86 !Processor= diff --git a/arduino-core/src/processing/app/i18n/Resources_tr.po b/arduino-core/src/processing/app/i18n/Resources_tr.po index a5149cd83..6905e9831 100644 --- a/arduino-core/src/processing/app/i18n/Resources_tr.po +++ b/arduino-core/src/processing/app/i18n/Resources_tr.po @@ -12,8 +12,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/arduino-ide-15/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -46,7 +46,7 @@ msgid "" " Are you " "sure you want to Quit?

    Closing the last open sketch will quit Arduino." -msgstr " Çıkmak istediğinizden emin misiniz?

    Son açık çalışmayı kapatmak Arduino'dan çıkmanıza sebep olacaktır." +msgstr " Çıkmak istediğine emin misin?

    Son açık çalışmayı kapatmak Arduino'dan çıkmanıza sebep olacaktır." #: Editor.java:2053 msgid "" @@ -81,7 +81,7 @@ msgstr "Yeni bir Arduino sürümü mevcut,\nArduino indirme sayfasına gitmek is msgid "" "A problem occurred while trying to open the\n" "files used to store the console output." -msgstr "Konsol çıkışını kaydetmek için kullanılan\ndosyaları açarken bir sorun oluştu." +msgstr "Konsol çıktısı kaydetmek için kullanılan\ndosyaları açarken sorun oluştu." #: Editor.java:1116 msgid "About Arduino" @@ -100,13 +100,13 @@ msgid "" "An error occurred while trying to fix the file encoding.\n" "Do not attempt to save this sketch as it may overwrite\n" "the old version. Use Open to re-open the sketch and try again.\n" -msgstr "Dosya kodlamasını düzeltmeye çalışırken bir hata oluştu.\nEski sürümün üzerine yazma ihtimaline karşı bu taslağı kaydetmeye çalışmayın.\nAç komutunu kullanarak taslağı açın ve tekrar deneyin.\n" +msgstr "Dosya kodlamasını düzeltmeye çalışırken bir hata oluştu.\nEski sürümün üzerine yazma ihtimaline karşı bu taslağı kaydetmeye çalışmayın.\nAç komutunu kullanarak dosyayı yeniden açın ve tekrar deneyin.\n" #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" "platform-specific code for your machine." -msgstr "Cihazınıza ait platforma özel kod yüklenirken\nbilinmeyen bir hata oluştu." +msgstr "Cihazınızın platformuna özel kod yüklenirken\nbilinmeyen bir hata oluştu." #: Preferences.java:85 msgid "Arabic" @@ -142,11 +142,17 @@ msgstr "Arduino ARM (32-bit) Kartlar" msgid "Arduino AVR Boards" msgstr "Arduino AVR Kartlar" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" "create a folder to store your settings." -msgstr "Ayarların saklanması için dosya oluşturulamadığından Arduino başlatılamıyor." +msgstr "Ayarların saklanması için dosya \noluşturulamadığından Arduino başlatılamıyor." #: Base.java:1889 msgid "" @@ -159,7 +165,7 @@ msgid "" "Arduino requires a full JDK (not just a JRE)\n" "to run. Please install JDK 1.5 or later.\n" "More information can be found in the reference." -msgstr "Arduino, çalışmak için yalnızca JRE'ye değil, tam JDK setine ihtiyaç duyar. Lütfen JDK'nın 1.5 veya daha yeni bir sürümünü kurun. Daha fazla bilgi referans bölümünde bulunabilir." +msgstr "Arduino, çalışmak için yalnızca JRE'ye değil, tam JDK\nsetine ihtiyaç duyar. Lütfen JDK'nın 1.5 veya daha yeni\nbir sürümünü kurun. Daha fazla bilgi referans bölümünde\nbulunabilir." #: ../../../processing/app/EditorStatus.java:471 msgid "Arduino: " @@ -237,7 +243,7 @@ msgstr "Kart" msgid "" "Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:" " {3}" -msgstr "" +msgstr "Kart {0}: {1}: {2} 'build.board' tercihini tanımlamayacak. Otomatik ayar: {3}" #: ../../../processing/app/EditorStatus.java:472 msgid "Board: " @@ -249,7 +255,7 @@ msgstr "Boşnakça" #: SerialMonitor.java:112 msgid "Both NL & CR" -msgstr "NL & CR birlikte" +msgstr "Satır başı - yeni satır birlikte" #: Preferences.java:81 msgid "Browse" @@ -339,7 +345,7 @@ msgstr "Yorum yap / Yorumu kaldır" #: debug/Compiler.java:49 debug/Uploader.java:45 #, java-format msgid "Compiler error, please submit this code to {0}" -msgstr "Delrleyici hatası {0} kodu gönderin" +msgstr "Delrleyici hatası. Lütfen bu kodu {0}'a gönderin." #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." @@ -359,7 +365,7 @@ msgstr "HTML olarak Kopyala" #: ../../../processing/app/EditorStatus.java:455 msgid "Copy error messages" -msgstr "" +msgstr "Hata mesajlarını kopyala" #: Editor.java:1165 Editor.java:2715 msgid "Copy for Forum" @@ -400,12 +406,12 @@ msgstr "{0} silinemedi" #: ../../../processing/app/debug/TargetPlatform.java:74 #, java-format msgid "Could not find boards.txt in {0}. Is it pre-1.5?" -msgstr "" +msgstr "{0} içerisinde boards.txt dosyası bulunamadı. Bu dosyanın versiyonu pre-1.5 mi ?" #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 #, java-format msgid "Could not find tool {0}" -msgstr "Araç bulunamadı {0}" +msgstr "Araç bulunamadı: {0}" #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 #, java-format @@ -417,7 +423,7 @@ msgstr "{1} Paketindeki {0} aracı bulunamadı" msgid "" "Could not open the URL\n" "{0}" -msgstr "{0} URL'i açamıyor" +msgstr "URL Açılamadı\n{0}" #: Base.java:1958 #, java-format @@ -440,7 +446,7 @@ msgstr "Çalışma yeniden kaydedilemedi" msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "Renk şeması ayarları okunamadı.\nArduino'yu yeniden kurmanız gerekiyor." +msgstr "" #: Preferences.java:219 msgid "" @@ -535,7 +541,7 @@ msgstr "Tüm değişikliklerden vazgeçip taslağı yenilemek istiyor musunuz?" #: ../../../processing/app/Preferences.java:438 msgid "Display line numbers" -msgstr "" +msgstr "Satır numaralarını göster" #: Editor.java:2064 msgid "Don't Save" @@ -575,7 +581,7 @@ msgstr "Düzenle" #: Preferences.java:370 msgid "Editor font size: " -msgstr "Editor font boyutu." +msgstr "Editor font boyutu:" #: Preferences.java:353 msgid "Editor language: " @@ -601,47 +607,47 @@ msgstr "Hata" #: Sketch.java:1065 Sketch.java:1088 msgid "Error adding file" -msgstr "Dosya eklemede hata" +msgstr "Dosya ekleme sırasında hata oluştu." #: debug/Compiler.java:369 msgid "Error compiling." -msgstr "Derleme Hatası" +msgstr "Derleme sırasında hata oluştu." #: Base.java:1674 msgid "Error getting the Arduino data folder." -msgstr "Arduino veri klasörüne ulaşmakta hata" +msgstr "Arduino veri klasörüne ulaşırken hata oluştu." #: Serial.java:593 #, java-format msgid "Error inside Serial.{0}()" -msgstr "Serial.{0}() içerisinde hata" +msgstr "Serial.{0}() 'da hata" #: ../../../processing/app/Base.java:1232 msgid "Error loading libraries" -msgstr "Kütüphaneleri eklemede hata" +msgstr "Kütüphaneler yüklenirken hata oluştu." #: ../../../processing/app/debug/TargetPlatform.java:95 #: ../../../processing/app/debug/TargetPlatform.java:106 #: ../../../processing/app/debug/TargetPlatform.java:117 #, java-format msgid "Error loading {0}" -msgstr "" +msgstr "{0} yüklenirken hata oluştu." #: Serial.java:181 #, java-format msgid "Error opening serial port ''{0}''." -msgstr "{0} numaralı seri port açılamadı." +msgstr "Seri port \"{0}\" açılamadı." #: Preferences.java:277 msgid "Error reading preferences" -msgstr "Tercihleri okuma hatası" +msgstr "Tercihleri okuma sırasında hata oluştu." #: Preferences.java:279 #, java-format msgid "" "Error reading the preferences file. Please delete (or move)\n" "{0} and restart Arduino." -msgstr "Tercihler dosyası okuma hatası. Lütfen ⏎ {0} silin (ya da taşıyın) ve Arduino'yu yeniden başlatın." +msgstr "Tercihleri okumada hata oluştu. Lütfen\n{0}'ı silin (ya da taşıyın) ve Arduino'yu yeniden başlatın." #: ../../../cc/arduino/packages/DiscoveryManager.java:25 msgid "Error starting discovery method: " @@ -650,7 +656,7 @@ msgstr "Keşif fonksiyonunu başlatırken hata oluştu:" #: Serial.java:125 #, java-format msgid "Error touching serial port ''{0}''." -msgstr "{0} numaralı seri portta sorun bulundu." +msgstr " Seri port \"{0}\"da sorun var." #: Editor.java:2512 Editor.java:2516 Editor.java:2520 msgid "Error while burning bootloader." @@ -658,7 +664,7 @@ msgstr "Önyükleyici yazdırılırken hata oluştu." #: ../../../processing/app/Editor.java:2555 msgid "Error while burning bootloader: missing '{0}' configuration parameter" -msgstr "" +msgstr "Önyükleyici yazdırılırken hata oluştu: Kayıp '{0}' yapılandırma parametresi" #: SketchCode.java:83 #, java-format @@ -865,7 +871,7 @@ msgstr "Endonezce" #: ../../../processing/app/Base.java:1204 #, java-format msgid "Invalid library found in {0}: {1}" -msgstr "" +msgstr "{0} içerisinde geçersiz kütüphane bulundu: {1}" #: Preferences.java:102 msgid "Italian" @@ -893,7 +899,7 @@ msgstr "Litvanca" #: ../../../processing/app/Sketch.java:1660 msgid "Low memory available, stability problems may occur" -msgstr "Düşük bellek, stabilite problemleri oluşabilir." +msgstr "Uygun olan bellek miktarı çok düşük, kararlılık problemleri oluşabilir." #: Preferences.java:107 msgid "Marathi" @@ -905,7 +911,7 @@ msgstr "Mesaj" #: ../../../processing/app/preproc/PdePreprocessor.java:412 msgid "Missing the */ from the end of a /* comment */" -msgstr "" +msgstr "/* yorum */ satırlarının sonunda eksik /* etiketi" #: Preferences.java:449 msgid "More preferences can be edited directly in the file" @@ -953,7 +959,7 @@ msgstr "Hayır" #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "Herhangi bir kart seçilmedi. Lütfen Araçlar>Kart menüsünden bir kart seçin" +msgstr "Herhangi bir kart seçilmedi. Lütfen Araçlar > Kart menüsünden bir kart seçin" #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." @@ -978,7 +984,7 @@ msgstr "Gerçekten, biraz temiz hava almalısın." #: Editor.java:1872 #, java-format msgid "No reference available for \"{0}\"" -msgstr "\"{0}\" için referans bulunmuyor" +msgstr "\"{0}\" için kaynak bulunmuyor" #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." @@ -991,7 +997,7 @@ msgstr "{0} dizininde geçerli bir donanım tanımlaması bulunamadı." #: Base.java:191 msgid "Non-fatal error while setting the Look & Feel." -msgstr "Görünüm ayarlanırken önemsiz bir hata oluştu." +msgstr "Görünüm ayarlanırken kritik olmayan bir hata oluştu." #: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859 msgid "Nope" @@ -1066,7 +1072,7 @@ msgstr "Polonyaca" #: ../../../processing/app/Editor.java:718 msgid "Port" -msgstr "" +msgstr "Port" #: ../../../processing/app/Preferences.java:151 msgid "Portugese" @@ -1074,7 +1080,7 @@ msgstr "Portekizce" #: ../../../processing/app/Preferences.java:127 msgid "Portuguese (Brazil)" -msgstr "Portekizce (Brazilya)" +msgstr "Portekizce (Brezilya)" #: ../../../processing/app/Preferences.java:128 msgid "Portuguese (Portugal)" @@ -1106,15 +1112,15 @@ msgstr "Yazdırılıyor..." #: Base.java:1957 msgid "Problem Opening Folder" -msgstr "Dosyayı açmada problem" +msgstr "Klasörü açarken sorun oluştu" #: Base.java:1933 msgid "Problem Opening URL" -msgstr "URL'in açılmasında sorun" +msgstr "URL'in açılmasında sorun oluştu" #: Base.java:227 msgid "Problem Setting the Platform" -msgstr "Platform ayarlanı yapılırken bir sorun oluştu" +msgstr "Platform ayarları yapılırken hata oluştu" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 msgid "Problem accessing board folder /www/sd" @@ -1131,23 +1137,17 @@ msgstr "Veri klasörü alınırken hata oluştu" #: Sketch.java:1467 #, java-format msgid "Problem moving {0} to the build folder" -msgstr "{0} dosyasını build klasörüne taşımada sorun oluştu" +msgstr "{0} dosyasını inşa klasörüne taşırken sorun oluştu" #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " "http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions." -msgstr "Donanıma yüklenirken sorun oluştu. İlgili linke göz atınız http://www.arduino.cc/en/Guide/Troubleshooting#upload" +msgstr "Karta yüklenirken sorun oluştu. Tavsiyeler için http://www.arduino.cc/en/Guide/Troubleshooting#upload adresine göz atabilirsiniz." #: Sketch.java:355 Sketch.java:362 Sketch.java:373 msgid "Problem with rename" -msgstr "Yeniden adlandırma sorunu" - -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "Arduino sadece kendi formatındaki dosyalar \nile “.ino” ya da “.pde” uzantılı dosyaları açabilir." +msgstr "Yeniden adlandırma sırasında sorun oluştu" #: ../../../processing/app/I18n.java:86 msgid "Processor" @@ -1188,7 +1188,7 @@ msgstr "Tümünü Değiştir" #: Sketch.java:1043 #, java-format msgid "Replace the existing version of {0}?" -msgstr "\"{0}\" mevcut sürümü değiştirilsin mi?" +msgstr "{0}'ın mevcut sürümü değiştirilsin mi?" #: FindReplace.java:81 msgid "Replace with:" @@ -1222,7 +1222,7 @@ msgstr "Dışa aktarmadan önce değişiklikler kaydedilsin mi?" #: Editor.java:2020 #, java-format msgid "Save changes to \"{0}\"? " -msgstr "Değişiklikleri buraya kaydet: \"{0}\"?" +msgstr "Değişiklikleri {0} konumuna kaydet:?" #: Sketch.java:825 msgid "Save sketch folder as..." @@ -1283,14 +1283,14 @@ msgstr "Seri port\"{0}\" kullanımda. Portu kullanan uygulamayı kapatıp tekrar msgid "" "Serial port ''{0}'' not found. Did you select the right one from the Tools >" " Serial Port menu?" -msgstr "{0} numaralı seri port bulunamadı. Araçlar > Seri Port menüsünden doğru portu seçtiniz mi?" +msgstr "Seri port \"{0}\" bulunamadı. Araçlar > Seri Port menüsünden doğru portu seçtiniz mi?" #: Editor.java:2343 #, java-format msgid "" "Serial port {0} not found.\n" "Retry the upload with another serial port?" -msgstr "{0} numaralı seri port bulunamadı.\nBaşka bir seri port ile denemek ister misiniz?" +msgstr "Seri port \"{0}\" bulunamadı.\nBaşka bir seri port ile denemek ister misiniz?" #: Base.java:1681 msgid "Settings issues" @@ -1343,7 +1343,7 @@ msgstr "Taslak çok büyük; boyutunu azaltma ipuçları için şu adresi ziyare msgid "" "Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} " "bytes." -msgstr "" +msgstr "Çalışmanız programın {0} bayt ({2} %%) saklama alanını kullandı. Maksimum {1} bayt." #: Editor.java:510 msgid "Sketchbook" @@ -1359,7 +1359,7 @@ msgstr "Taslak defteri konumu:" #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" -msgstr "" +msgstr "Çalışmalar (*.ino,*.pde)" #: ../../../processing/app/Preferences.java:152 msgid "Slovenian" @@ -1421,7 +1421,7 @@ msgstr "Udp sınıfı EthernetUdp olarak yeniden adlandırılmıştır." #: Base.java:192 msgid "The error message follows, however Arduino should run fine." -msgstr "" +msgstr "Hatalar oluştu, ancak Arduino sorunsuz çalışabilir." #: Editor.java:2147 #, java-format @@ -1437,7 +1437,7 @@ msgid "" "The library \"{0}\" cannot be used.\n" "Library names must contain only basic letters and numbers.\n" "(ASCII only and no spaces, and it cannot start with a number)" -msgstr "\"{0}\" kütüphanesi kullanılamaz.\nKütüphane adları sadece basit harf ve rakamları içerebilir.\n(Sadece ASCII karakterler geçerlidir, boş karakter içermemelidir ve bir rakamla başlayamaz)" +msgstr "\"{0}\" kütüphanesi kullanılamaz.\nKütüphane adları sadece temel harf ve rakamları içerebilir.\n(Sadece ASCII karakterler geçerlidir, boşluk içeremez ve bir rakamla başlayamaz)" #: Sketch.java:374 msgid "" @@ -1519,11 +1519,11 @@ msgstr "Türkçe" #: ../../../processing/app/Editor.java:2507 msgid "Type board password to access its console" -msgstr "" +msgstr "Konsolunuza erişmek için kart şifrenizi yazınız" #: ../../../processing/app/Sketch.java:1673 msgid "Type board password to upload a new sketch" -msgstr "" +msgstr "Yeni çalışmayı yüklemek için kart şifresini yazınız" #: ../../../processing/app/Preferences.java:118 msgid "Ukrainian" @@ -1532,7 +1532,7 @@ msgstr "Ukraynaca" #: ../../../processing/app/Editor.java:2524 #: ../../../processing/app/NetworkMonitor.java:145 msgid "Unable to connect: is the sketch using the bridge?" -msgstr "" +msgstr "Bağlantı başarısız: Çalışma köprüyü mü kullanıyor?" #: ../../../processing/app/NetworkMonitor.java:130 msgid "Unable to connect: retrying" @@ -1605,20 +1605,20 @@ msgstr "Harici editör kullan" #: ../../../processing/app/debug/Compiler.java:94 #, java-format msgid "Using library {0} in folder: {1} {2}" -msgstr "" +msgstr "{0} klasöründeki kütüphane kullanılıyor: {1} {2}" #: ../../../processing/app/debug/Compiler.java:320 #, java-format msgid "Using previously compiled file: {0}" -msgstr "" +msgstr "Önceden derlenmiş dosyayı kullanarak: {0}" #: EditorToolbar.java:41 EditorToolbar.java:46 msgid "Verify" -msgstr "Doğrula" +msgstr "Kontrol Et" #: Editor.java:609 msgid "Verify / Compile" -msgstr "Doğrulanıyor/Derleniyor" +msgstr "Kontrol Et / Derle" #: Preferences.java:400 msgid "Verify code after upload" @@ -1716,10 +1716,10 @@ msgstr "\".{0}\" geçerli bir uzantı değil." #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." -msgstr "\"{0}\" tanımlanamayan karakterler içermektedir. Eğer bu yazılım eski bir Arduino versyonu ile yaratıldıysa, çalışmayı UTF-8 kodlamasına güncellemek için Araçlar -> Karakter kodlamasını düzelt & Tekrar yükle kullanılması gerekebilir. Eğer değilse, tanımlanamayan karakterleri silerek bu uyarıdan kurtulabilirsiniz. " +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." +msgstr "" #: debug/Compiler.java:409 msgid "" @@ -1735,7 +1735,7 @@ msgid "" "As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" "Please use Serial.write() instead.\n" "\n" -msgstr "\nArduino 1.0'dan itibaren 'BYTE' terimi artık desteklenmemektedir.\nLütfen yerine Serial.write() kullanınız.\n\n" +msgstr "\nArduino 1.0'dan itibaren 'BYTE' terimi desteklenmemektedir.\nLütfen yerine Serial.write() kullanınız.\n\n" #: debug/Compiler.java:427 msgid "" @@ -1842,7 +1842,7 @@ msgstr "readBytesUntil() byte tamponu {1} char'ı dahil {0} byte için çok kü #: Sketch.java:647 msgid "removeCode: internal error.. could not find code" -msgstr "removeCode: dahili hata.. kod bulunamıyor" +msgstr "removeCode: içsel hata.. kod bulunamıyor" #: Editor.java:932 msgid "serialMenu is null" @@ -1866,7 +1866,7 @@ msgstr "Sketch'e {0} tane dosya eklendi." #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" -msgstr "{0}, {1} değerini döndürdü" +msgstr "{0}, {1}'i döndürdü" #: Editor.java:2213 #, java-format diff --git a/arduino-core/src/processing/app/i18n/Resources_tr.properties b/arduino-core/src/processing/app/i18n/Resources_tr.properties index 2e09e07ab..2a7eaa8ed 100644 --- a/arduino-core/src/processing/app/i18n/Resources_tr.properties +++ b/arduino-core/src/processing/app/i18n/Resources_tr.properties @@ -7,7 +7,7 @@ # , 2012. # , 2012. # \u00dclgen Sar\u0131kavak , 2012. -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Turkish (http\://www.transifex.com/projects/p/arduino-ide-15/language/tr/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: tr\nPlural-Forms\: nplurals\=2; plural\=(n > 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Turkish (http\://www.transifex.com/projects/p/arduino-ide-15/language/tr/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: tr\nPlural-Forms\: nplurals\=2; plural\=(n > 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(Arduino'nun yeniden ba\u015flat\u0131lmas\u0131n\u0131 gerektiriyor) @@ -25,7 +25,7 @@ .pde\ ->\ .ino=.pde -> .ino #: Base.java:773 -\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

    Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= \u00c7\u0131kmak istedi\u011finizden emin misiniz?

    Son a\u00e7\u0131k \u00e7al\u0131\u015fmay\u0131 kapatmak Arduino'dan \u00e7\u0131kman\u0131za sebep olacakt\u0131r. +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

    Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= \u00c7\u0131kmak istedi\u011fine emin misin?

    Son a\u00e7\u0131k \u00e7al\u0131\u015fmay\u0131 kapatmak Arduino'dan \u00e7\u0131kman\u0131za sebep olacakt\u0131r. #: Editor.java:2053 \ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Do\ you\ want\ to\ save\ changes\ to\ this\ sketch
    \ before\ closing?

    If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.=
    adl\u0131 \u00e7al\u0131\u015fmay\u0131 kapatmadan \u00f6nce kaydetmek istiyor musunuz?

    Kaydedilmezse yap\u0131lan de\u011fi\u015fiklikler kaybolacak. @@ -46,7 +46,7 @@ A\ library\ named\ {0}\ already\ exists={0} isimli k\u00fct\u00fcphane \u00f6nce A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Yeni bir Arduino s\u00fcr\u00fcm\u00fc mevcut,\nArduino indirme sayfas\u0131na gitmek ister misiniz? #: EditorConsole.java:153 -A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=Konsol \u00e7\u0131k\u0131\u015f\u0131n\u0131 kaydetmek i\u00e7in kullan\u0131lan\ndosyalar\u0131 a\u00e7arken bir sorun olu\u015ftu. +A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=Konsol \u00e7\u0131kt\u0131s\u0131 kaydetmek i\u00e7in kullan\u0131lan\ndosyalar\u0131 a\u00e7arken sorun olu\u015ftu. #: Editor.java:1116 About\ Arduino=Arduino Hakk\u0131nda @@ -58,10 +58,10 @@ Add\ File...=Dosya Ekle... Add\ Library...=K\u00fct\u00fcphane ekle... #: tools/FixEncoding.java:77 -An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Dosya kodlamas\u0131n\u0131 d\u00fczeltmeye \u00e7al\u0131\u015f\u0131rken bir hata olu\u015ftu.\nEski s\u00fcr\u00fcm\u00fcn \u00fczerine yazma ihtimaline kar\u015f\u0131 bu tasla\u011f\u0131 kaydetmeye \u00e7al\u0131\u015fmay\u0131n.\nA\u00e7 komutunu kullanarak tasla\u011f\u0131 a\u00e7\u0131n ve tekrar deneyin.\n +An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Dosya kodlamas\u0131n\u0131 d\u00fczeltmeye \u00e7al\u0131\u015f\u0131rken bir hata olu\u015ftu.\nEski s\u00fcr\u00fcm\u00fcn \u00fczerine yazma ihtimaline kar\u015f\u0131 bu tasla\u011f\u0131 kaydetmeye \u00e7al\u0131\u015fmay\u0131n.\nA\u00e7 komutunu kullanarak dosyay\u0131 yeniden a\u00e7\u0131n ve tekrar deneyin.\n #: Base.java:228 -An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Cihaz\u0131n\u0131za ait platforma \u00f6zel kod y\u00fcklenirken\nbilinmeyen bir hata olu\u015ftu. +An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Cihaz\u0131n\u0131z\u0131n platformuna \u00f6zel kod y\u00fcklenirken\nbilinmeyen bir hata olu\u015ftu. #: Preferences.java:85 Arabic=Arap\u00e7a @@ -87,14 +87,17 @@ Arduino\ ARM\ (32-bits)\ Boards=Arduino ARM (32-bit) Kartlar #: ../../../processing/app/I18n.java:82 Arduino\ AVR\ Boards=Arduino AVR Kartlar +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 -Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Ayarlar\u0131n saklanmas\u0131 i\u00e7in dosya olu\u015fturulamad\u0131\u011f\u0131ndan Arduino ba\u015flat\u0131lam\u0131yor. +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Ayarlar\u0131n saklanmas\u0131 i\u00e7in dosya \nolu\u015fturulamad\u0131\u011f\u0131ndan Arduino ba\u015flat\u0131lam\u0131yor. #: Base.java:1889 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino taslak defterinizi kaydetmek i\u00e7in bir klas\u00f6r olu\u015fturamad\u0131\u011f\u0131ndan ba\u015flat\u0131lam\u0131yor. #: Base.java:240 -Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino, \u00e7al\u0131\u015fmak i\u00e7in yaln\u0131zca JRE'ye de\u011fil, tam JDK setine ihtiya\u00e7 duyar. L\u00fctfen JDK'n\u0131n 1.5 veya daha yeni bir s\u00fcr\u00fcm\u00fcn\u00fc kurun. Daha fazla bilgi referans b\u00f6l\u00fcm\u00fcnde bulunabilir. +Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino, \u00e7al\u0131\u015fmak i\u00e7in yaln\u0131zca JRE'ye de\u011fil, tam JDK\nsetine ihtiya\u00e7 duyar. L\u00fctfen JDK'n\u0131n 1.5 veya daha yeni\nbir s\u00fcr\u00fcm\u00fcn\u00fc kurun. Daha fazla bilgi referans b\u00f6l\u00fcm\u00fcnde\nbulunabilir. #: ../../../processing/app/EditorStatus.java:471 Arduino\:\ =Arduino\: @@ -152,7 +155,7 @@ Board=Kart #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format -!Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= +Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=Kart {0}\: {1}\: {2} 'build.board' tercihini tan\u0131mlamayacak. Otomatik ayar\: {3} #: ../../../processing/app/EditorStatus.java:472 Board\:\ =Kart\: @@ -161,7 +164,7 @@ Board\:\ =Kart\: Bosnian=Bo\u015fnak\u00e7a #: SerialMonitor.java:112 -Both\ NL\ &\ CR=NL & CR birlikte +Both\ NL\ &\ CR=Sat\u0131r ba\u015f\u0131 - yeni sat\u0131r birlikte #: Preferences.java:81 Browse=G\u00f6zat @@ -229,7 +232,7 @@ Comment/Uncomment=Yorum yap / Yorumu kald\u0131r #: debug/Compiler.java:49 debug/Uploader.java:45 #, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Delrleyici hatas\u0131 {0} kodu g\u00f6nderin +Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Delrleyici hatas\u0131. L\u00fctfen bu kodu {0}'a g\u00f6nderin. #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=\u00c7al\u0131\u015fma derleniyor... @@ -244,7 +247,7 @@ Copy=Kopyala Copy\ as\ HTML=HTML olarak Kopyala #: ../../../processing/app/EditorStatus.java:455 -!Copy\ error\ messages= +Copy\ error\ messages=Hata mesajlar\u0131n\u0131 kopyala #: Editor.java:1165 Editor.java:2715 Copy\ for\ Forum=Forum i\u00e7in Kopyala @@ -276,11 +279,11 @@ Could\ not\ delete\ {0}={0} silinemedi #: ../../../processing/app/debug/TargetPlatform.java:74 #, java-format -!Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?= +Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?={0} i\u00e7erisinde boards.txt dosyas\u0131 bulunamad\u0131. Bu dosyan\u0131n versiyonu pre-1.5 mi ? #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 #, java-format -Could\ not\ find\ tool\ {0}=Ara\u00e7 bulunamad\u0131 {0} +Could\ not\ find\ tool\ {0}=Ara\u00e7 bulunamad\u0131\: {0} #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 #, java-format @@ -288,7 +291,7 @@ Could\ not\ find\ tool\ {0}\ from\ package\ {1}={1} Paketindeki {0} arac\u0131 b #: Base.java:1934 #, java-format -Could\ not\ open\ the\ URL\n{0}={0} URL'i a\u00e7am\u0131yor +Could\ not\ open\ the\ URL\n{0}=URL A\u00e7\u0131lamad\u0131\n{0} #: Base.java:1958 #, java-format @@ -301,7 +304,7 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=\u00c7al\u0131\u015fma yeniden kaydedilemedi #: Theme.java:52 -Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Renk \u015femas\u0131 ayarlar\u0131 okunamad\u0131.\nArduino'yu yeniden kurman\u0131z gerekiyor. +!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u00d6ntan\u0131ml\u0131 ayarlar okunamad\u0131.\\n\u201d\nArduino'yu yeniden kurman\u0131z gerekiyor. @@ -368,7 +371,7 @@ Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ Discard\ all\ changes\ and\ reload\ sketch?=T\u00fcm de\u011fi\u015fikliklerden vazge\u00e7ip tasla\u011f\u0131 yenilemek istiyor musunuz? #: ../../../processing/app/Preferences.java:438 -!Display\ line\ numbers= +Display\ line\ numbers=Sat\u0131r numaralar\u0131n\u0131 g\u00f6ster #: Editor.java:2064 Don't\ Save=Kaydetme @@ -398,7 +401,7 @@ Dutch\ (Netherlands)=Hollandaca (Hollanda) Edit=D\u00fczenle #: Preferences.java:370 -Editor\ font\ size\:\ =Editor font boyutu. +Editor\ font\ size\:\ =Editor font boyutu\: #: Preferences.java:353 Editor\ language\:\ =Edit\u00f6r dili\: @@ -418,50 +421,50 @@ Environment=Ortam Error=Hata #: Sketch.java:1065 Sketch.java:1088 -Error\ adding\ file=Dosya eklemede hata +Error\ adding\ file=Dosya ekleme s\u0131ras\u0131nda hata olu\u015ftu. #: debug/Compiler.java:369 -Error\ compiling.=Derleme Hatas\u0131 +Error\ compiling.=Derleme s\u0131ras\u0131nda hata olu\u015ftu. #: Base.java:1674 -Error\ getting\ the\ Arduino\ data\ folder.=Arduino veri klas\u00f6r\u00fcne ula\u015fmakta hata +Error\ getting\ the\ Arduino\ data\ folder.=Arduino veri klas\u00f6r\u00fcne ula\u015f\u0131rken hata olu\u015ftu. #: Serial.java:593 #, java-format -Error\ inside\ Serial.{0}()=Serial.{0}() i\u00e7erisinde hata +Error\ inside\ Serial.{0}()=Serial.{0}() 'da hata #: ../../../processing/app/Base.java:1232 -Error\ loading\ libraries=K\u00fct\u00fcphaneleri eklemede hata +Error\ loading\ libraries=K\u00fct\u00fcphaneler y\u00fcklenirken hata olu\u015ftu. #: ../../../processing/app/debug/TargetPlatform.java:95 #: ../../../processing/app/debug/TargetPlatform.java:106 #: ../../../processing/app/debug/TargetPlatform.java:117 #, java-format -!Error\ loading\ {0}= +Error\ loading\ {0}={0} y\u00fcklenirken hata olu\u015ftu. #: Serial.java:181 #, java-format -Error\ opening\ serial\ port\ ''{0}''.={0} numaral\u0131 seri port a\u00e7\u0131lamad\u0131. +Error\ opening\ serial\ port\ ''{0}''.=Seri port "{0}" a\u00e7\u0131lamad\u0131. #: Preferences.java:277 -Error\ reading\ preferences=Tercihleri okuma hatas\u0131 +Error\ reading\ preferences=Tercihleri okuma s\u0131ras\u0131nda hata olu\u015ftu. #: Preferences.java:279 #, java-format -Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Tercihler dosyas\u0131 okuma hatas\u0131. L\u00fctfen \u23ce {0} silin (ya da ta\u015f\u0131y\u0131n) ve Arduino'yu yeniden ba\u015flat\u0131n. +Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Tercihleri okumada hata olu\u015ftu. L\u00fctfen\n{0}'\u0131 silin (ya da ta\u015f\u0131y\u0131n) ve Arduino'yu yeniden ba\u015flat\u0131n. #: ../../../cc/arduino/packages/DiscoveryManager.java:25 Error\ starting\ discovery\ method\:\ =Ke\u015fif fonksiyonunu ba\u015flat\u0131rken hata olu\u015ftu\: #: Serial.java:125 #, java-format -Error\ touching\ serial\ port\ ''{0}''.={0} numaral\u0131 seri portta sorun bulundu. +Error\ touching\ serial\ port\ ''{0}''.=\ Seri port "{0}"da sorun var. #: Editor.java:2512 Editor.java:2516 Editor.java:2520 Error\ while\ burning\ bootloader.=\u00d6ny\u00fckleyici yazd\u0131r\u0131l\u0131rken hata olu\u015ftu. #: ../../../processing/app/Editor.java:2555 -!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=\u00d6ny\u00fckleyici yazd\u0131r\u0131l\u0131rken hata olu\u015ftu\: Kay\u0131p '{0}' yap\u0131land\u0131rma parametresi #: SketchCode.java:83 #, java-format @@ -608,7 +611,7 @@ Indonesian=Endonezce #: ../../../processing/app/Base.java:1204 #, java-format -!Invalid\ library\ found\ in\ {0}\:\ {1}= +Invalid\ library\ found\ in\ {0}\:\ {1}={0} i\u00e7erisinde ge\u00e7ersiz k\u00fct\u00fcphane bulundu\: {1} #: Preferences.java:102 Italian=\u0130talyanca @@ -629,7 +632,7 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=K\u00fct\u0 Lithuaninan=Litvanca #: ../../../processing/app/Sketch.java:1660 -Low\ memory\ available,\ stability\ problems\ may\ occur=D\u00fc\u015f\u00fck bellek, stabilite problemleri olu\u015fabilir. +Low\ memory\ available,\ stability\ problems\ may\ occur=Uygun olan bellek miktar\u0131 \u00e7ok d\u00fc\u015f\u00fck, kararl\u0131l\u0131k problemleri olu\u015fabilir. #: Preferences.java:107 Marathi=Marati @@ -638,7 +641,7 @@ Marathi=Marati Message=Mesaj #: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=/* yorum */ sat\u0131rlar\u0131n\u0131n sonunda eksik /* etiketi #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Dosya i\u00e7erisinde daha fazla tercih d\u00fczenlemesi yap\u0131labilir. @@ -674,7 +677,7 @@ Next\ Tab=Sonraki Sekme No=Hay\u0131r #: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Herhangi bir kart se\u00e7ilmedi. L\u00fctfen Ara\u00e7lar>Kart men\u00fcs\u00fcnden bir kart se\u00e7in +No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Herhangi bir kart se\u00e7ilmedi. L\u00fctfen Ara\u00e7lar > Kart men\u00fcs\u00fcnden bir kart se\u00e7in #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Otomatik d\u00fczenleme i\u00e7in de\u011fi\u015fikli\u011fe gerek yok. @@ -693,7 +696,7 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Ger\u00e7ekten, biraz temiz #: Editor.java:1872 #, java-format -No\ reference\ available\ for\ "{0}"="{0}" i\u00e7in referans bulunmuyor +No\ reference\ available\ for\ "{0}"="{0}" i\u00e7in kaynak bulunmuyor #: ../../../processing/app/Base.java:309 No\ valid\ configured\ cores\ found\!\ Exiting...=Ge\u00e7erli bir yap\u0131land\u0131r\u0131lm\u0131\u015f \u00e7ekirdek bulunamad\u0131\! \u00c7\u0131k\u0131l\u0131yor... @@ -703,7 +706,7 @@ No\ valid\ configured\ cores\ found\!\ Exiting...=Ge\u00e7erli bir yap\u0131land No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.={0} dizininde ge\u00e7erli bir donan\u0131m tan\u0131mlamas\u0131 bulunamad\u0131. #: Base.java:191 -Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=G\u00f6r\u00fcn\u00fcm ayarlan\u0131rken \u00f6nemsiz bir hata olu\u015ftu. +Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=G\u00f6r\u00fcn\u00fcm ayarlan\u0131rken kritik olmayan bir hata olu\u015ftu. #: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859 Nope=Yok @@ -758,13 +761,13 @@ Please\ install\ JDK\ 1.5\ or\ later=L\u00fctfen JDK'n\u0131n 1.5 veya daha yeni Polish=Polonyaca #: ../../../processing/app/Editor.java:718 -!Port= +Port=Port #: ../../../processing/app/Preferences.java:151 Portugese=Portekizce #: ../../../processing/app/Preferences.java:127 -Portuguese\ (Brazil)=Portekizce (Brazilya) +Portuguese\ (Brazil)=Portekizce (Brezilya) #: ../../../processing/app/Preferences.java:128 Portuguese\ (Portugal)=Portekizce (Portekiz) @@ -788,13 +791,13 @@ Printing\ canceled.=Yazd\u0131rma iptal edildi. Printing...=Yazd\u0131r\u0131l\u0131yor... #: Base.java:1957 -Problem\ Opening\ Folder=Dosyay\u0131 a\u00e7mada problem +Problem\ Opening\ Folder=Klas\u00f6r\u00fc a\u00e7arken sorun olu\u015ftu #: Base.java:1933 -Problem\ Opening\ URL=URL'in a\u00e7\u0131lmas\u0131nda sorun +Problem\ Opening\ URL=URL'in a\u00e7\u0131lmas\u0131nda sorun olu\u015ftu #: Base.java:227 -Problem\ Setting\ the\ Platform=Platform ayarlan\u0131 yap\u0131l\u0131rken bir sorun olu\u015ftu +Problem\ Setting\ the\ Platform=Platform ayarlar\u0131 yap\u0131l\u0131rken hata olu\u015ftu #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 !Problem\ accessing\ board\ folder\ /www/sd= @@ -807,16 +810,13 @@ Problem\ getting\ data\ folder=Veri klas\u00f6r\u00fc al\u0131n\u0131rken hata o #: Sketch.java:1467 #, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder={0} dosyas\u0131n\u0131 build klas\u00f6r\u00fcne ta\u015f\u0131mada sorun olu\u015ftu +Problem\ moving\ {0}\ to\ the\ build\ folder={0} dosyas\u0131n\u0131 in\u015fa klas\u00f6r\u00fcne ta\u015f\u0131rken sorun olu\u015ftu #: debug/Uploader.java:209 -Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Donan\u0131ma y\u00fcklenirken sorun olu\u015ftu. \u0130lgili linke g\u00f6z at\u0131n\u0131z http\://www.arduino.cc/en/Guide/Troubleshooting\#upload +Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Karta y\u00fcklenirken sorun olu\u015ftu. Tavsiyeler i\u00e7in http\://www.arduino.cc/en/Guide/Troubleshooting\#upload adresine g\u00f6z atabilirsiniz. #: Sketch.java:355 Sketch.java:362 Sketch.java:373 -Problem\ with\ rename=Yeniden adland\u0131rma sorunu - -#: Editor.java:2137 -Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Arduino sadece kendi format\u0131ndaki dosyalar \nile \u201c.ino\u201d ya da \u201c.pde\u201d uzant\u0131l\u0131 dosyalar\u0131 a\u00e7abilir. +Problem\ with\ rename=Yeniden adland\u0131rma s\u0131ras\u0131nda sorun olu\u015ftu #: ../../../processing/app/I18n.java:86 Processor=\u0130\u015flemci @@ -847,7 +847,7 @@ Replace\ All=T\u00fcm\u00fcn\u00fc De\u011fi\u015ftir #: Sketch.java:1043 #, java-format -Replace\ the\ existing\ version\ of\ {0}?="{0}" mevcut s\u00fcr\u00fcm\u00fc de\u011fi\u015ftirilsin mi? +Replace\ the\ existing\ version\ of\ {0}?={0}'\u0131n mevcut s\u00fcr\u00fcm\u00fc de\u011fi\u015ftirilsin mi? #: FindReplace.java:81 Replace\ with\:=\u015eununla de\u011fi\u015ftir\: @@ -873,7 +873,7 @@ Save\ changes\ before\ export?=D\u0131\u015fa aktarmadan \u00f6nce de\u011fi\u01 #: Editor.java:2020 #, java-format -Save\ changes\ to\ "{0}"?\ \ =De\u011fi\u015fiklikleri buraya kaydet\: "{0}"? +Save\ changes\ to\ "{0}"?\ \ =De\u011fi\u015fiklikleri {0} konumuna kaydet\:? #: Sketch.java:825 Save\ sketch\ folder\ as...=\u00c7al\u0131\u015fma klas\u00f6r\u00fcn\u00fc kaydet... @@ -915,11 +915,11 @@ Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ ma #: Serial.java:194 #, java-format -Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?={0} numaral\u0131 seri port bulunamad\u0131. Ara\u00e7lar > Seri Port men\u00fcs\u00fcnden do\u011fru portu se\u00e7tiniz mi? +Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Seri port "{0}" bulunamad\u0131. Ara\u00e7lar > Seri Port men\u00fcs\u00fcnden do\u011fru portu se\u00e7tiniz mi? #: Editor.java:2343 #, java-format -Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?={0} numaral\u0131 seri port bulunamad\u0131.\nBa\u015fka bir seri port ile denemek ister misiniz? +Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Seri port "{0}" bulunamad\u0131.\nBa\u015fka bir seri port ile denemek ister misiniz? #: Base.java:1681 Settings\ issues=Ayar problemleri @@ -956,7 +956,7 @@ Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ f #: ../../../processing/app/Sketch.java:1639 #, java-format -!Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.= +Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.=\u00c7al\u0131\u015fman\u0131z program\u0131n {0} bayt ({2} %%) saklama alan\u0131n\u0131 kulland\u0131. Maksimum {1} bayt. #: Editor.java:510 Sketchbook=Taslak defteri @@ -968,7 +968,7 @@ Sketchbook\ folder\ disappeared=\u00c7al\u0131\u015fma klas\u00f6r\u00fc yok old Sketchbook\ location\:=Taslak defteri konumu\: #: ../../../processing/app/Base.java:785 -!Sketches\ (*.ino,\ *.pde)= +Sketches\ (*.ino,\ *.pde)=\u00c7al\u0131\u015fmalar (*.ino,*.pde) #: ../../../processing/app/Preferences.java:152 Slovenian=Slovence @@ -1011,7 +1011,7 @@ The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Server s\u0131n\u0131f\u The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Udp s\u0131n\u0131f\u0131 EthernetUdp olarak yeniden adland\u0131r\u0131lm\u0131\u015ft\u0131r. #: Base.java:192 -!The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.= +The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=Hatalar olu\u015ftu, ancak Arduino sorunsuz \u00e7al\u0131\u015fabilir. #: Editor.java:2147 #, java-format @@ -1019,7 +1019,7 @@ The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreat #: Base.java:1054 Base.java:2674 #, java-format -The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)="{0}" k\u00fct\u00fcphanesi kullan\u0131lamaz.\nK\u00fct\u00fcphane adlar\u0131 sadece basit harf ve rakamlar\u0131 i\u00e7erebilir.\n(Sadece ASCII karakterler ge\u00e7erlidir, bo\u015f karakter i\u00e7ermemelidir ve bir rakamla ba\u015flayamaz) +The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)="{0}" k\u00fct\u00fcphanesi kullan\u0131lamaz.\nK\u00fct\u00fcphane adlar\u0131 sadece temel harf ve rakamlar\u0131 i\u00e7erebilir.\n(Sadece ASCII karakterler ge\u00e7erlidir, bo\u015fluk i\u00e7eremez ve bir rakamla ba\u015flayamaz) #: Sketch.java:374 The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=Ana dosya uzant\u0131 kullanamaz. ("Ger\u00e7ek" bir programlama ortam\u0131na ge\u00e7menin zaman\u0131 gelmi\u015f olabilir) @@ -1062,17 +1062,17 @@ Troubleshooting=Sorun Giderme Turkish=T\u00fcrk\u00e7e #: ../../../processing/app/Editor.java:2507 -!Type\ board\ password\ to\ access\ its\ console= +Type\ board\ password\ to\ access\ its\ console=Konsolunuza eri\u015fmek i\u00e7in kart \u015fifrenizi yaz\u0131n\u0131z #: ../../../processing/app/Sketch.java:1673 -!Type\ board\ password\ to\ upload\ a\ new\ sketch= +Type\ board\ password\ to\ upload\ a\ new\ sketch=Yeni \u00e7al\u0131\u015fmay\u0131 y\u00fcklemek i\u00e7in kart \u015fifresini yaz\u0131n\u0131z #: ../../../processing/app/Preferences.java:118 Ukrainian=Ukraynaca #: ../../../processing/app/Editor.java:2524 #: ../../../processing/app/NetworkMonitor.java:145 -!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?= +Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=Ba\u011flant\u0131 ba\u015far\u0131s\u0131z\: \u00c7al\u0131\u015fma k\u00f6pr\u00fcy\u00fc m\u00fc kullan\u0131yor? #: ../../../processing/app/NetworkMonitor.java:130 Unable\ to\ connect\:\ retrying=Ba\u011flant\u0131 kurulam\u0131yor\: yeniden deneniyor @@ -1125,17 +1125,17 @@ Use\ external\ editor=Harici edit\u00f6r kullan #: ../../../processing/app/debug/Compiler.java:94 #, java-format -!Using\ library\ {0}\ in\ folder\:\ {1}\ {2}= +Using\ library\ {0}\ in\ folder\:\ {1}\ {2}={0} klas\u00f6r\u00fcndeki k\u00fct\u00fcphane kullan\u0131l\u0131yor\: {1} {2} #: ../../../processing/app/debug/Compiler.java:320 #, java-format -!Using\ previously\ compiled\ file\:\ {0}= +Using\ previously\ compiled\ file\:\ {0}=\u00d6nceden derlenmi\u015f dosyay\u0131 kullanarak\: {0} #: EditorToolbar.java:41 EditorToolbar.java:46 -Verify=Do\u011frula +Verify=Kontrol Et #: Editor.java:609 -Verify\ /\ Compile=Do\u011frulan\u0131yor/Derleniyor +Verify\ /\ Compile=Kontrol Et / Derle #: Preferences.java:400 Verify\ code\ after\ upload=Y\u00fckledikten sonra kodu do\u011frula @@ -1200,13 +1200,13 @@ Zip\ doesn't\ contain\ a\ library=Zip k\u00fct\u00fcphane i\u00e7ermiyor #: SketchCode.java:258 #, java-format -"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" tan\u0131mlanamayan karakterler i\u00e7ermektedir. E\u011fer bu yaz\u0131l\u0131m eski bir Arduino versyonu ile yarat\u0131ld\u0131ysa, \u00e7al\u0131\u015fmay\u0131 UTF-8 kodlamas\u0131na g\u00fcncellemek i\u00e7in Ara\u00e7lar -> Karakter kodlamas\u0131n\u0131 d\u00fczelt & Tekrar y\u00fckle kullan\u0131lmas\u0131 gerekebilir. E\u011fer de\u011filse, tan\u0131mlanamayan karakterleri silerek bu uyar\u0131dan kurtulabilirsiniz. +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 \nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nArduino 0019'dan itibaren Ethernet k\u00fct\u00fcphanesi SPI k\u00fct\u00fcphanesine ba\u011f\u0131ml\u0131d\u0131r.\nG\u00f6r\u00fcn\u00fc\u015fe g\u00f6re onu ya da SPI k\u00fct\u00fcphanesine ba\u011f\u0131ml\u0131 ba\u015fka bir k\u00fct\u00fcphaneyi kullan\u0131yorsunuz.\n\n #: debug/Compiler.java:415 -\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nArduino 1.0'dan itibaren 'BYTE' terimi art\u0131k desteklenmemektedir.\nL\u00fctfen yerine Serial.write() kullan\u0131n\u0131z.\n\n +\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nArduino 1.0'dan itibaren 'BYTE' terimi desteklenmemektedir.\nL\u00fctfen yerine Serial.write() kullan\u0131n\u0131z.\n\n #: debug/Compiler.java:427 \nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nArduino 1.0'dan itibaren Ethernet k\u00fct\u00fcphanesindeki Client s\u0131n\u0131f\u0131 EthernetClient olarak yeniden adland\u0131r\u0131lm\u0131\u015ft\u0131r.\n\n @@ -1274,7 +1274,7 @@ platforms.html=platforms.html readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() byte tamponu {1} char'\u0131 dahil {0} byte i\u00e7in \u00e7ok k\u00fc\u00e7\u00fck #: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: dahili hata.. kod bulunam\u0131yor +removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: i\u00e7sel hata.. kod bulunam\u0131yor #: Editor.java:932 serialMenu\ is\ null=serialMenu de\u011feri bo\u015f @@ -1292,7 +1292,7 @@ upload=y\u00fckle #: debug/Compiler.java:365 #, java-format -{0}\ returned\ {1}={0}, {1} de\u011ferini d\u00f6nd\u00fcrd\u00fc +{0}\ returned\ {1}={0}, {1}'i d\u00f6nd\u00fcrd\u00fc #: Editor.java:2213 #, java-format diff --git a/arduino-core/src/processing/app/i18n/Resources_uk.po b/arduino-core/src/processing/app/i18n/Resources_uk.po index 3527929d0..c4c30a8c7 100644 --- a/arduino-core/src/processing/app/i18n/Resources_uk.po +++ b/arduino-core/src/processing/app/i18n/Resources_uk.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/arduino-ide-15/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -138,6 +138,12 @@ msgstr "" msgid "Arduino AVR Boards" msgstr "" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -436,7 +442,7 @@ msgstr "Не вдалося перезберегти скетч" msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "Не вдалося прочитати налаштування колірної теми.\nВам потрібно буде перевстановити Arduino." +msgstr "" #: Preferences.java:219 msgid "" @@ -1139,12 +1145,6 @@ msgstr "Проблема вивантаження в плату. Зверніт msgid "Problem with rename" msgstr "Проблема з перейменуванням" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "Arduino може відкривати свої скетчі\nта інші файли, що закінчуються .ino або .pde" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "" @@ -1712,10 +1712,10 @@ msgstr "\".{0}\" - неприпустиме розширення." #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." -msgstr "\"{0}\" містить нерозпізнані символи. Якщо цей код був створений у старій версії Arduino, то вам знадобиться використовувати Сервіс ->Виправити кодування, щоб змінити кодування скетчу на UTF-8. Якщо ні, то Вам знадобиться видалити погані символи, щоб уникнути цього попередження." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." +msgstr "" #: debug/Compiler.java:409 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_uk.properties b/arduino-core/src/processing/app/i18n/Resources_uk.properties index 3508a1ab2..267ba7fcf 100644 --- a/arduino-core/src/processing/app/i18n/Resources_uk.properties +++ b/arduino-core/src/processing/app/i18n/Resources_uk.properties @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Ukrainian (http\://www.transifex.com/projects/p/arduino-ide-15/language/uk/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: uk\nPlural-Forms\: nplurals\=3; plural\=(n%10\=\=1 && n%100\!\=11 ? 0 \: n%10>\=2 && n%10<\=4 && (n%100<10 || n%100>\=20) ? 1 \: 2);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Ukrainian (http\://www.transifex.com/projects/p/arduino-ide-15/language/uk/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: uk\nPlural-Forms\: nplurals\=3; plural\=(n%10\=\=1 && n%100\!\=11 ? 0 \: n%10>\=2 && n%10<\=4 && (n%100<10 || n%100>\=20) ? 1 \: 2);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ (\u0432\u0438\u043c\u0430\u0433\u0430\u0454 \u043f\u0435\u0440\u0435\u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f Arduino) @@ -83,6 +83,9 @@ Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ sav #: ../../../processing/app/I18n.java:82 !Arduino\ AVR\ Boards= +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino \u043d\u0435 \u043c\u043e\u0436\u0435 \u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u0438\u0441\u044f, \u0431\u043e\n\u043d\u0435 \u0432\u0434\u0430\u0454\u0442\u044c\u0441\u044f \u0441\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u0442\u0435\u043a\u0443 \u0434\u043b\u044f \u0437\u0431\u0435\u0440\u0456\u0433\u0430\u043d\u043d\u044f \u0432\u0430\u0448\u0438\u0445 \u043d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u044c. @@ -297,7 +300,7 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=\u041d\u0435 \u0432\u0434\u0430\u043b\u043e\u0441\u044f \u043f\u0435\u0440\u0435\u0437\u0431\u0435\u0440\u0435\u0433\u0442\u0438 \u0441\u043a\u0435\u0442\u0447 #: Theme.java:52 -Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u041d\u0435 \u0432\u0434\u0430\u043b\u043e\u0441\u044f \u043f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u0438 \u043d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u043a\u043e\u043b\u0456\u0440\u043d\u043e\u0457 \u0442\u0435\u043c\u0438.\n\u0412\u0430\u043c \u043f\u043e\u0442\u0440\u0456\u0431\u043d\u043e \u0431\u0443\u0434\u0435 \u043f\u0435\u0440\u0435\u0432\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0438 Arduino. +!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u0437\u0430 \u0437\u0430\u043c\u043e\u0432\u0447\u0443\u0432\u0430\u043d\u043d\u044f\u043c \u043d\u0435 \u0447\u0438\u0442\u0430\u044e\u0442\u044c\u0441\u044f.\n\u0412\u0430\u043c \u043f\u043e\u0442\u0440\u0456\u0431\u043d\u043e \u043f\u0435\u0440\u0435\u0432\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0438 Arduino. @@ -811,9 +814,6 @@ Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troublesh #: Sketch.java:355 Sketch.java:362 Sketch.java:373 Problem\ with\ rename=\u041f\u0440\u043e\u0431\u043b\u0435\u043c\u0430 \u0437 \u043f\u0435\u0440\u0435\u0439\u043c\u0435\u043d\u0443\u0432\u0430\u043d\u043d\u044f\u043c -#: Editor.java:2137 -Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Arduino \u043c\u043e\u0436\u0435 \u0432\u0456\u0434\u043a\u0440\u0438\u0432\u0430\u0442\u0438 \u0441\u0432\u043e\u0457 \u0441\u043a\u0435\u0442\u0447\u0456\n\u0442\u0430 \u0456\u043d\u0448\u0456 \u0444\u0430\u0439\u043b\u0438, \u0449\u043e \u0437\u0430\u043a\u0456\u043d\u0447\u0443\u044e\u0442\u044c\u0441\u044f .ino \u0430\u0431\u043e .pde - #: ../../../processing/app/I18n.java:86 !Processor= @@ -1196,7 +1196,7 @@ Zip\ doesn't\ contain\ a\ library=ZIP \u043d\u0435 \u043c\u0456\u0441\u0442\u04 #: SketchCode.java:258 #, java-format -"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" \u043c\u0456\u0441\u0442\u0438\u0442\u044c \u043d\u0435\u0440\u043e\u0437\u043f\u0456\u0437\u043d\u0430\u043d\u0456 \u0441\u0438\u043c\u0432\u043e\u043b\u0438. \u042f\u043a\u0449\u043e \u0446\u0435\u0439 \u043a\u043e\u0434 \u0431\u0443\u0432 \u0441\u0442\u0432\u043e\u0440\u0435\u043d\u0438\u0439 \u0443 \u0441\u0442\u0430\u0440\u0456\u0439 \u0432\u0435\u0440\u0441\u0456\u0457 Arduino, \u0442\u043e \u0432\u0430\u043c \u0437\u043d\u0430\u0434\u043e\u0431\u0438\u0442\u044c\u0441\u044f \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0432\u0430\u0442\u0438 \u0421\u0435\u0440\u0432\u0456\u0441 ->\u0412\u0438\u043f\u0440\u0430\u0432\u0438\u0442\u0438 \u043a\u043e\u0434\u0443\u0432\u0430\u043d\u043d\u044f, \u0449\u043e\u0431 \u0437\u043c\u0456\u043d\u0438\u0442\u0438 \u043a\u043e\u0434\u0443\u0432\u0430\u043d\u043d\u044f \u0441\u043a\u0435\u0442\u0447\u0443 \u043d\u0430 UTF-8. \u042f\u043a\u0449\u043e \u043d\u0456, \u0442\u043e \u0412\u0430\u043c \u0437\u043d\u0430\u0434\u043e\u0431\u0438\u0442\u044c\u0441\u044f \u0432\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u043f\u043e\u0433\u0430\u043d\u0456 \u0441\u0438\u043c\u0432\u043e\u043b\u0438, \u0449\u043e\u0431 \u0443\u043d\u0438\u043a\u043d\u0443\u0442\u0438 \u0446\u044c\u043e\u0433\u043e \u043f\u043e\u043f\u0435\u0440\u0435\u0434\u0436\u0435\u043d\u043d\u044f. +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 \nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\n\u041f\u043e\u0447\u0438\u043d\u0430\u044e\u0447\u0438 \u0437 Arduino 0019 \u0431\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u043a\u0430 Ethernet \u0437\u0430\u043b\u0435\u0436\u0438\u0442\u044c \u0432\u0456\u0434 \u0431\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u043a\u0438 SPI.\n\u0421\u0445\u043e\u0436\u0435, \u0449\u043e \u0432\u0438 \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0454\u0442\u0435 \u0441\u0430\u043c\u0435 \u0457\u0457, \u0430\u0431\u043e \u0456\u043d\u0448\u0443 \u0431\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u043a\u0443, \u0449\u043e \u0437\u0430\u043b\u0435\u0436\u0438\u0442\u044c\u0432\u0456\u0434 \u0431\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u043a\u0438 SPI.\n\n diff --git a/arduino-core/src/processing/app/i18n/Resources_vi.po b/arduino-core/src/processing/app/i18n/Resources_vi.po index cb64749d1..23ebf2d26 100644 --- a/arduino-core/src/processing/app/i18n/Resources_vi.po +++ b/arduino-core/src/processing/app/i18n/Resources_vi.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/arduino-ide-15/language/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -138,6 +138,12 @@ msgstr "Bo mạch Arduino ARM (32-bits)" msgid "Arduino AVR Boards" msgstr "Bo mạch Arduino AVR" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -436,7 +442,7 @@ msgstr "Không thể lưu lại sketch lần nữa" msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "Không thể đọc được thiết lập giao diện màu sắc.\nBạn cần phải cài đặt lại tiến trình xử lý này." +msgstr "" #: Preferences.java:219 msgid "" @@ -1139,12 +1145,6 @@ msgstr "Vấn đề liên quan đến bo mạch. Truy cập http://www.arduino.c msgid "Problem with rename" msgstr "Xảy ra lỗi khi đặt tên" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "Tiến trình xử lý chỉ có thể mở các sketch của chính tiến trình\nđó và các tập tin có phần mở rộng tận cùng là .ino hoặc .pde" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "Vi xử lý" @@ -1712,10 +1712,10 @@ msgstr "\".{0}\" không phải là một định dạng hợp lệ." #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." -msgstr "\"{0}\" chứa các ký tự không hợp lệ.Nếu ký tự này được tạo ra từ một phiên bản trước đó cũ hơn, thì bạn nên sử dụng Công cụ -> Sửa Giải Mã & Tải lại để cập nhật sketch theo chuẩn mã hóa UTF-8. Nếu không, bạn cần xóa các ký tự lạ không hợp lệ này để không hiển thị thông báo này lần nữa." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." +msgstr "" #: debug/Compiler.java:409 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_vi.properties b/arduino-core/src/processing/app/i18n/Resources_vi.properties index 2e1a5d0e3..a0476c384 100644 --- a/arduino-core/src/processing/app/i18n/Resources_vi.properties +++ b/arduino-core/src/processing/app/i18n/Resources_vi.properties @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Vietnamese (http\://www.transifex.com/projects/p/arduino-ide-15/language/vi/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: vi\nPlural-Forms\: nplurals\=1; plural\=0;\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Vietnamese (http\://www.transifex.com/projects/p/arduino-ide-15/language/vi/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: vi\nPlural-Forms\: nplurals\=1; plural\=0;\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(y\u00eau c\u1ea7u kh\u1edfi \u0111\u1ed9ng l\u1ea1i Arduino) @@ -83,6 +83,9 @@ Arduino\ ARM\ (32-bits)\ Boards=Bo m\u1ea1ch Arduino ARM (32-bits) #: ../../../processing/app/I18n.java:82 Arduino\ AVR\ Boards=Bo m\u1ea1ch Arduino AVR +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino kh\u00f4ng th\u1ec3 kh\u1edfi \u0111\u1ed9ng b\u1edfi v\u00ec ch\u01b0\u01a1ng tr\u00ecnh\nkh\u00f4ng th\u1ec3 t\u1ea1o m\u1ed9t th\u01b0 m\u1ee5c \u0111\u1ec3 l\u01b0u gi\u1eef c\u00e1c thi\u1ebft l\u1eadp c\u1ee7a b\u1ea1n. @@ -297,7 +300,7 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=Kh\u00f4ng th\u1ec3 l\u01b0u l\u1ea1i sketch l\u1ea7n n\u1eefa #: Theme.java:52 -Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Kh\u00f4ng th\u1ec3 \u0111\u1ecdc \u0111\u01b0\u1ee3c thi\u1ebft l\u1eadp giao di\u1ec7n m\u00e0u s\u1eafc.\nB\u1ea1n c\u1ea7n ph\u1ea3i c\u00e0i \u0111\u1eb7t l\u1ea1i ti\u1ebfn tr\u00ecnh x\u1eed l\u00fd n\u00e0y. +!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Kh\u00f4ng th\u1ec3 t\u1ea3i thi\u1ebft l\u1eadp m\u1eb7c \u0111\u1ecbnh.\nB\u1ea1n c\u1ea7n c\u00e0i \u0111\u1eb7t l\u1ea1i Arduino. @@ -811,9 +814,6 @@ Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troublesh #: Sketch.java:355 Sketch.java:362 Sketch.java:373 Problem\ with\ rename=X\u1ea3y ra l\u1ed7i khi \u0111\u1eb7t t\u00ean -#: Editor.java:2137 -Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Ti\u1ebfn tr\u00ecnh x\u1eed l\u00fd ch\u1ec9 c\u00f3 th\u1ec3 m\u1edf c\u00e1c sketch c\u1ee7a ch\u00ednh ti\u1ebfn tr\u00ecnh\n\u0111\u00f3 v\u00e0 c\u00e1c t\u1eadp tin c\u00f3 ph\u1ea7n m\u1edf r\u1ed9ng t\u1eadn c\u00f9ng l\u00e0 .ino ho\u1eb7c .pde - #: ../../../processing/app/I18n.java:86 Processor=Vi x\u1eed l\u00fd @@ -1196,7 +1196,7 @@ Zip\ doesn't\ contain\ a\ library=T\u1eadp tin n\u00e9n kh\u00f4ng ch\u1ee9a b\u #: SketchCode.java:258 #, java-format -"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" ch\u1ee9a c\u00e1c k\u00fd t\u1ef1 kh\u00f4ng h\u1ee3p l\u1ec7.N\u1ebfu k\u00fd t\u1ef1 n\u00e0y \u0111\u01b0\u1ee3c t\u1ea1o ra t\u1eeb m\u1ed9t phi\u00ean b\u1ea3n tr\u01b0\u1edbc \u0111\u00f3 c\u0169 h\u01a1n, th\u00ec b\u1ea1n n\u00ean s\u1eed d\u1ee5ng C\u00f4ng c\u1ee5 -> S\u1eeda Gi\u1ea3i M\u00e3 & T\u1ea3i l\u1ea1i \u0111\u1ec3 c\u1eadp nh\u1eadt sketch theo chu\u1ea9n m\u00e3 h\u00f3a UTF-8. N\u1ebfu kh\u00f4ng, b\u1ea1n c\u1ea7n x\u00f3a c\u00e1c k\u00fd t\u1ef1 l\u1ea1 kh\u00f4ng h\u1ee3p l\u1ec7 n\u00e0y \u0111\u1ec3 kh\u00f4ng hi\u1ec3n th\u1ecb th\u00f4ng b\u00e1o n\u00e0y l\u1ea7n n\u1eefa. +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 \nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nT\u1eeb phi\u00ean b\u1ea3n Arduino 0019, th\u01b0 vi\u1ec7n Ethernet ph\u1ee5 thu\u1ed9c v\u00e0o th\u01b0 vi\u1ec7n SPI.\nB\u1ea1n \u0111ang s\u1eed d\u1ee5ng th\u01b0 vi\u1ec7n n\u00e0y ho\u1eb7c m\u1ed9t th\u01b0 vi\u1ec7n n\u00e0o \u0111\u00f3 ph\u1ee5 thu\u1ed9c v\u00e0o th\u01b0 vi\u1ec7n SPI.\n\n diff --git a/arduino-core/src/processing/app/i18n/Resources_zh_CN.po b/arduino-core/src/processing/app/i18n/Resources_zh_CN.po index 761242f48..01c800cde 100644 --- a/arduino-core/src/processing/app/i18n/Resources_zh_CN.po +++ b/arduino-core/src/processing/app/i18n/Resources_zh_CN.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/arduino-ide-15/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,7 +27,7 @@ msgstr "仅有 Arduino Leonardo 支持 'Keyboard' 选项" #: debug/Compiler.java:450 msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "" +msgstr "'Mouse' 仅在 Arduino Leonardo 上支持" #: Preferences.java:478 msgid "(edit only when Arduino is not running)" @@ -60,7 +60,7 @@ msgstr "名为{0}的文件已存在于{1}" #: Editor.java:2169 #, java-format msgid "A folder named \"{0}\" already exists. Can't open sketch." -msgstr "" +msgstr "文件夹 \"{0}\" 已存在。不能打开 sketch。" #: Base.java:2690 #, java-format @@ -114,15 +114,15 @@ msgstr "阿拉贡语" #: tools/Archiver.java:48 msgid "Archive Sketch" -msgstr "" +msgstr "草稿存档" #: tools/Archiver.java:109 msgid "Archive sketch as:" -msgstr "" +msgstr "草稿存为:" #: tools/Archiver.java:139 msgid "Archive sketch canceled." -msgstr "" +msgstr "草稿存档已取消" #: tools/Archiver.java:75 msgid "" @@ -138,6 +138,12 @@ msgstr "Arduino ARM (32 位)板" msgid "Arduino AVR Boards" msgstr "Arduino AVR 板" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -359,7 +365,7 @@ msgstr "复制错误信息" #: Editor.java:1165 Editor.java:2715 msgid "Copy for Forum" -msgstr "" +msgstr "复制到论坛" #: Sketch.java:1089 #, java-format @@ -626,7 +632,7 @@ msgstr "载入{0}出错" #: Serial.java:181 #, java-format msgid "Error opening serial port ''{0}''." -msgstr "" +msgstr "打开串行端口{0}出错" #: Preferences.java:277 msgid "Error reading preferences" @@ -770,12 +776,12 @@ msgstr "入门" msgid "" "Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes " "for local variables. Maximum is {1} bytes." -msgstr "" +msgstr "全局变量使用了{0}字节,({2}%%)的动态内存,余留{3}字节局部变量。最大为{1}字节。" #: ../../../processing/app/Sketch.java:1651 #, java-format msgid "Global variables use {0} bytes of dynamic memory." -msgstr "" +msgstr "全局变量使用了{0}字节的动态内存。" #: Preferences.java:98 msgid "Greek" @@ -889,7 +895,7 @@ msgstr "立陶宛语" #: ../../../processing/app/Sketch.java:1660 msgid "Low memory available, stability problems may occur" -msgstr "" +msgstr "可用内存偏低,可能会导致稳定性问题" #: Preferences.java:107 msgid "Marathi" @@ -983,7 +989,7 @@ msgstr "未发现有效的配置核心!退出..." #: ../../../processing/app/debug/TargetPackage.java:63 #, java-format msgid "No valid hardware definitions found in folder {0}." -msgstr "" +msgstr "在文件夹{0}中没有找到有效的硬件定义" #: Base.java:191 msgid "Non-fatal error while setting the Look & Feel." @@ -1114,11 +1120,11 @@ msgstr "设定平台时发生问题。" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 msgid "Problem accessing board folder /www/sd" -msgstr "" +msgstr "访问板上的文件夹 /www/sd 出错" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 msgid "Problem accessing files in folder " -msgstr "" +msgstr "读取文件夹中文件时出现问题" #: Base.java:1673 msgid "Problem getting data folder" @@ -1133,18 +1139,12 @@ msgstr "移动 {0} 到建立的文件夹存在问题" msgid "" "Problem uploading to board. See " "http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions." -msgstr "" +msgstr "上传出错。查看页面 http://www.arduino.cc/en/Guide/Troubleshooting#upload 获取建议。" #: Sketch.java:355 Sketch.java:362 Sketch.java:373 msgid "Problem with rename" msgstr "重命名时出现问题" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "处理器" @@ -1405,15 +1405,15 @@ msgstr "不再支持 ‘BYTE’ 关键字。" #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." -msgstr "" +msgstr "Client class 已改名为 EthernetClient." #: debug/Compiler.java:420 msgid "The Server class has been renamed EthernetServer." -msgstr "" +msgstr "Server class 已改名为 EthernetServer." #: debug/Compiler.java:432 msgid "The Udp class has been renamed EthernetUdp." -msgstr "" +msgstr "Udp class 已改名为 EthernetUdp." #: Base.java:192 msgid "The error message follows, however Arduino should run fine." @@ -1592,7 +1592,7 @@ msgstr "上传..." #: Editor.java:1269 msgid "Use Selection For Find" -msgstr "" +msgstr "查找选中单元" #: Preferences.java:409 msgid "Use external editor" @@ -1634,11 +1634,11 @@ msgstr "警告" #: debug/Compiler.java:444 msgid "Wire.receive() has been renamed Wire.read()." -msgstr "" +msgstr "Wire.receive() 已改名为 Wire.read()." #: debug/Compiler.java:438 msgid "Wire.send() has been renamed Wire.write()." -msgstr "" +msgstr "Wire.send() 已改名为 Wire.write()." #: FindReplace.java:105 msgid "Wrap Around" @@ -1712,10 +1712,10 @@ msgstr "“.{0}”不是合法的扩展名" #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." -msgstr "”{0}“含有无法识别的字符,若该代码为旧版Arduino所建立,你或许需要利用”工具->修正代码并重新载入“以UTF-8编码來更新草稿码,如不行,请刪除非法字符摆脱此警告信息。" +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." +msgstr "" #: debug/Compiler.java:409 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_zh_CN.properties b/arduino-core/src/processing/app/i18n/Resources_zh_CN.properties index 2faa4ca02..28ba1319c 100644 --- a/arduino-core/src/processing/app/i18n/Resources_zh_CN.properties +++ b/arduino-core/src/processing/app/i18n/Resources_zh_CN.properties @@ -3,7 +3,7 @@ # This file is distributed under the same license as the Arduino IDE package. # ledong <>, 2012. # -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Chinese (China) (http\://www.transifex.com/projects/p/arduino-ide-15/language/zh_CN/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: zh_CN\nPlural-Forms\: nplurals\=1; plural\=0;\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Chinese (China) (http\://www.transifex.com/projects/p/arduino-ide-15/language/zh_CN/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: zh_CN\nPlural-Forms\: nplurals\=1; plural\=0;\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\uff08\u9700\u8981\u91cd\u542fArduino\uff09 @@ -12,7 +12,7 @@ 'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u4ec5\u6709 Arduino Leonardo \u652f\u6301 'Keyboard' \u9009\u9879 #: debug/Compiler.java:450 -!'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo= +'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' \u4ec5\u5728 Arduino Leonardo \u4e0a\u652f\u6301 #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=\uff08\u53ea\u80fd\u5728Arduino\u672a\u8fd0\u884c\u65f6\u8fdb\u884c\u7f16\u8f91\uff09 @@ -32,7 +32,7 @@ A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=\u540d\u4e3a{0}\u7684\u6587\u4 #: Editor.java:2169 #, java-format -!A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.= +A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=\u6587\u4ef6\u5939 "{0}" \u5df2\u5b58\u5728\u3002\u4e0d\u80fd\u6253\u5f00 sketch\u3002 #: Base.java:2690 #, java-format @@ -66,13 +66,13 @@ Arabic=\u963f\u62c9\u4f2f\u8bed Aragonese=\u963f\u62c9\u8d21\u8bed #: tools/Archiver.java:48 -!Archive\ Sketch= +Archive\ Sketch=\u8349\u7a3f\u5b58\u6863 #: tools/Archiver.java:109 -!Archive\ sketch\ as\:= +Archive\ sketch\ as\:=\u8349\u7a3f\u5b58\u4e3a\: #: tools/Archiver.java:139 -!Archive\ sketch\ canceled.= +Archive\ sketch\ canceled.=\u8349\u7a3f\u5b58\u6863\u5df2\u53d6\u6d88 #: tools/Archiver.java:75 Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=\u5df2\u7ecf\u53d6\u6d88\u5f52\u6863 sketch \u56e0\u4e3a\nsketch \u65e0\u6cd5\u88ab\u6b63\u786e\u7684\u4fdd\u5b58\u3002 @@ -83,6 +83,9 @@ Arduino\ ARM\ (32-bits)\ Boards=Arduino ARM (32 \u4f4d)\u677f #: ../../../processing/app/I18n.java:82 Arduino\ AVR\ Boards=Arduino AVR \u677f +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino\u65e0\u6cd5\u8fd0\u884c\uff0c\u56e0\u4e3a\u65e0\u6cd5\n\u5efa\u7acb\u6587\u4ef6\u5939\u5b58\u50a8\u4f60\u7684\u8bbe\u7f6e\u3002 @@ -243,7 +246,7 @@ Copy\ as\ HTML=\u590d\u5236\u4e3a HTML \u683c\u5f0f Copy\ error\ messages=\u590d\u5236\u9519\u8bef\u4fe1\u606f #: Editor.java:1165 Editor.java:2715 -!Copy\ for\ Forum= +Copy\ for\ Forum=\u590d\u5236\u5230\u8bba\u575b #: Sketch.java:1089 #, java-format @@ -437,7 +440,7 @@ Error\ loading\ {0}=\u8f7d\u5165{0}\u51fa\u9519 #: Serial.java:181 #, java-format -!Error\ opening\ serial\ port\ ''{0}''.= +Error\ opening\ serial\ port\ ''{0}''.=\u6253\u5f00\u4e32\u884c\u7aef\u53e3{0}\u51fa\u9519 #: Preferences.java:277 Error\ reading\ preferences=\u8bfb\u53d6\u9996\u9009\u9879\u51fa\u9519 @@ -542,11 +545,11 @@ Getting\ Started=\u5165\u95e8 #: ../../../processing/app/Sketch.java:1646 #, java-format -!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.= +Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=\u5168\u5c40\u53d8\u91cf\u4f7f\u7528\u4e86{0}\u5b57\u8282\uff0c({2}%%)\u7684\u52a8\u6001\u5185\u5b58\uff0c\u4f59\u7559{3}\u5b57\u8282\u5c40\u90e8\u53d8\u91cf\u3002\u6700\u5927\u4e3a{1}\u5b57\u8282\u3002 #: ../../../processing/app/Sketch.java:1651 #, java-format -!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.= +Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=\u5168\u5c40\u53d8\u91cf\u4f7f\u7528\u4e86{0}\u5b57\u8282\u7684\u52a8\u6001\u5185\u5b58\u3002 #: Preferences.java:98 Greek=\u5e0c\u814a\u8bed @@ -625,7 +628,7 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=\u5e93\u5df Lithuaninan=\u7acb\u9676\u5b9b\u8bed #: ../../../processing/app/Sketch.java:1660 -!Low\ memory\ available,\ stability\ problems\ may\ occur= +Low\ memory\ available,\ stability\ problems\ may\ occur=\u53ef\u7528\u5185\u5b58\u504f\u4f4e\uff0c\u53ef\u80fd\u4f1a\u5bfc\u81f4\u7a33\u5b9a\u6027\u95ee\u9898 #: Preferences.java:107 Marathi=\u9a6c\u62c9\u5730\u8bed @@ -696,7 +699,7 @@ No\ valid\ configured\ cores\ found\!\ Exiting...=\u672a\u53d1\u73b0\u6709\u6548 #: ../../../processing/app/debug/TargetPackage.java:63 #, java-format -!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.= +No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=\u5728\u6587\u4ef6\u5939{0}\u4e2d\u6ca1\u6709\u627e\u5230\u6709\u6548\u7684\u786c\u4ef6\u5b9a\u4e49 #: Base.java:191 Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=\u8bbe\u7f6e\u5916\u89c2\u65f6\u53d1\u751f\u975e\u81f4\u547d\u9519\u8bef\u3002 @@ -793,10 +796,10 @@ Problem\ Opening\ URL=\u6253\u5f00\u7f51\u5740\u65f6\u51fa\u73b0\u95ee\u9898 Problem\ Setting\ the\ Platform=\u8bbe\u5b9a\u5e73\u53f0\u65f6\u53d1\u751f\u95ee\u9898\u3002 #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 -!Problem\ accessing\ board\ folder\ /www/sd= +Problem\ accessing\ board\ folder\ /www/sd=\u8bbf\u95ee\u677f\u4e0a\u7684\u6587\u4ef6\u5939 /www/sd \u51fa\u9519 #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 -!Problem\ accessing\ files\ in\ folder\ = +Problem\ accessing\ files\ in\ folder\ =\u8bfb\u53d6\u6587\u4ef6\u5939\u4e2d\u6587\u4ef6\u65f6\u51fa\u73b0\u95ee\u9898 #: Base.java:1673 Problem\ getting\ data\ folder=\u53d6\u5f97\u8d44\u6599\u6587\u4ef6\u5939\u65f6\u51fa\u73b0\u95ee\u9898 @@ -806,14 +809,11 @@ Problem\ getting\ data\ folder=\u53d6\u5f97\u8d44\u6599\u6587\u4ef6\u5939\u65f6\ Problem\ moving\ {0}\ to\ the\ build\ folder=\u79fb\u52a8 {0} \u5230\u5efa\u7acb\u7684\u6587\u4ef6\u5939\u5b58\u5728\u95ee\u9898 #: debug/Uploader.java:209 -!Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.= +Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=\u4e0a\u4f20\u51fa\u9519\u3002\u67e5\u770b\u9875\u9762 http\://www.arduino.cc/en/Guide/Troubleshooting\#upload \u83b7\u53d6\u5efa\u8bae\u3002 #: Sketch.java:355 Sketch.java:362 Sketch.java:373 Problem\ with\ rename=\u91cd\u547d\u540d\u65f6\u51fa\u73b0\u95ee\u9898 -#: Editor.java:2137 -!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= - #: ../../../processing/app/I18n.java:86 Processor=\u5904\u7406\u5668 @@ -998,13 +998,13 @@ Tamil=\u6cf0\u7c73\u5c14\u8bed The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=\u4e0d\u518d\u652f\u6301 \u2018BYTE\u2019 \u5173\u952e\u5b57\u3002 #: debug/Compiler.java:426 -!The\ Client\ class\ has\ been\ renamed\ EthernetClient.= +The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Client class \u5df2\u6539\u540d\u4e3a EthernetClient. #: debug/Compiler.java:420 -!The\ Server\ class\ has\ been\ renamed\ EthernetServer.= +The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Server class \u5df2\u6539\u540d\u4e3a EthernetServer. #: debug/Compiler.java:432 -!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.= +The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Udp class \u5df2\u6539\u540d\u4e3a EthernetUdp. #: Base.java:192 The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=\u867d\u7136\u6709\u9519\u8bef\u4fe1\u606f\uff0c\u4f46Arduino\u5e94\u53ef\u6b63\u5e38\u8fd0\u884c\u3002 @@ -1114,7 +1114,7 @@ Uploading\ to\ I/O\ Board...=\u4e0a\u8f7d\u5230 I/O Board... Uploading...=\u4e0a\u4f20... #: Editor.java:1269 -!Use\ Selection\ For\ Find= +Use\ Selection\ For\ Find=\u67e5\u627e\u9009\u4e2d\u5355\u5143 #: Preferences.java:409 Use\ external\ editor=\u4f7f\u7528\u5916\u90e8\u7f16\u8f91\u5668 @@ -1146,10 +1146,10 @@ Visit\ Arduino.cc=\u8bbf\u95eeArduino.cc Warning=\u8b66\u544a #: debug/Compiler.java:444 -!Wire.receive()\ has\ been\ renamed\ Wire.read().= +Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() \u5df2\u6539\u540d\u4e3a Wire.read(). #: debug/Compiler.java:438 -!Wire.send()\ has\ been\ renamed\ Wire.write().= +Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() \u5df2\u6539\u540d\u4e3a Wire.write(). #: FindReplace.java:105 Wrap\ Around=\u73af\u7ed5 @@ -1196,7 +1196,7 @@ Zip\ doesn't\ contain\ a\ library=Zip\u5e76\u4e0d\u5305\u542b\u5e93 #: SketchCode.java:258 #, java-format -"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.=\u201d{0}\u201c\u542b\u6709\u65e0\u6cd5\u8bc6\u522b\u7684\u5b57\u7b26\uff0c\u82e5\u8be5\u4ee3\u7801\u4e3a\u65e7\u7248Arduino\u6240\u5efa\u7acb\uff0c\u4f60\u6216\u8bb8\u9700\u8981\u5229\u7528\u201d\u5de5\u5177->\u4fee\u6b63\u4ee3\u7801\u5e76\u91cd\u65b0\u8f7d\u5165\u201c\u4ee5UTF-8\u7f16\u7801\u4f86\u66f4\u65b0\u8349\u7a3f\u7801\uff0c\u5982\u4e0d\u884c\uff0c\u8bf7\u522a\u9664\u975e\u6cd5\u5b57\u7b26\u6446\u8131\u6b64\u8b66\u544a\u4fe1\u606f\u3002 +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 !\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n= diff --git a/arduino-core/src/processing/app/i18n/Resources_zh_HK.po b/arduino-core/src/processing/app/i18n/Resources_zh_HK.po index 63b5b444a..d087603f0 100644 --- a/arduino-core/src/processing/app/i18n/Resources_zh_HK.po +++ b/arduino-core/src/processing/app/i18n/Resources_zh_HK.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/arduino-ide-15/language/zh_HK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -138,6 +138,12 @@ msgstr "" msgid "Arduino AVR Boards" msgstr "" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -1139,12 +1145,6 @@ msgstr "" msgid "Problem with rename" msgstr "" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "" @@ -1712,9 +1712,9 @@ msgstr "" #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." msgstr "" #: debug/Compiler.java:409 diff --git a/arduino-core/src/processing/app/i18n/Resources_zh_HK.properties b/arduino-core/src/processing/app/i18n/Resources_zh_HK.properties index b6600cea0..88a444f0e 100644 --- a/arduino-core/src/processing/app/i18n/Resources_zh_HK.properties +++ b/arduino-core/src/processing/app/i18n/Resources_zh_HK.properties @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Chinese (Hong Kong) (http\://www.transifex.com/projects/p/arduino-ide-15/language/zh_HK/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: zh_HK\nPlural-Forms\: nplurals\=1; plural\=0;\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Chinese (Hong Kong) (http\://www.transifex.com/projects/p/arduino-ide-15/language/zh_HK/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: zh_HK\nPlural-Forms\: nplurals\=1; plural\=0;\n #: Preferences.java:358 Preferences.java:374 !\ \ (requires\ restart\ of\ Arduino)= @@ -83,6 +83,9 @@ #: ../../../processing/app/I18n.java:82 !Arduino\ AVR\ Boards= +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 !Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.= @@ -811,9 +814,6 @@ Open...=\u958b\u555f... #: Sketch.java:355 Sketch.java:362 Sketch.java:373 !Problem\ with\ rename= -#: Editor.java:2137 -!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= - #: ../../../processing/app/I18n.java:86 !Processor= diff --git a/arduino-core/src/processing/app/i18n/Resources_zh_TW.Big5.po b/arduino-core/src/processing/app/i18n/Resources_zh_TW.Big5.po index 6cbfa26ab..9d9c5db4f 100644 --- a/arduino-core/src/processing/app/i18n/Resources_zh_TW.Big5.po +++ b/arduino-core/src/processing/app/i18n/Resources_zh_TW.Big5.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Chinese (Taiwan) (Big5) (http://www.transifex.com/projects/p/arduino-ide-15/language/zh_TW.Big5/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -138,6 +138,12 @@ msgstr "Arduino ARM(32位元)板" msgid "Arduino AVR Boards" msgstr "Arduino AVR板" +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" @@ -172,11 +178,11 @@ msgstr "你確定想要刪除此草稿碼嗎?" #: ../../../processing/app/Preferences.java:137 msgid "Armenian" -msgstr "" +msgstr "亞美尼亞語" #: ../../../processing/app/Preferences.java:138 msgid "Asturian" -msgstr "" +msgstr "阿斯圖里亞斯語" #: tools/AutoFormat.java:91 msgid "Auto Format" @@ -221,7 +227,7 @@ msgstr "選擇了不好的檔案" #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" -msgstr "" +msgstr "白俄羅斯語" #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 @@ -233,7 +239,7 @@ msgstr "板子" msgid "" "Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:" " {3}" -msgstr "板子{0}:{1}:{2}並沒有定義''build.board'偏好設定值,自動設為:{3}" +msgstr "板子{0}:{1}:{2}並沒有定義''build.board\"偏好設定值,自動設為:{3}" #: ../../../processing/app/EditorStatus.java:472 msgid "Board: " @@ -241,7 +247,7 @@ msgstr "板子:" #: ../../../processing/app/Preferences.java:140 msgid "Bosnian" -msgstr "" +msgstr "波斯尼亞語" #: SerialMonitor.java:112 msgid "Both NL & CR" @@ -261,7 +267,7 @@ msgstr "保加利亞語" #: ../../../processing/app/Preferences.java:141 msgid "Burmese (Myanmar)" -msgstr "" +msgstr "緬甸語(緬甸)" #: Editor.java:708 msgid "Burn Bootloader" @@ -302,11 +308,11 @@ msgstr "啟動時檢查有無更新" #: ../../../processing/app/Preferences.java:142 msgid "Chinese (China)" -msgstr "" +msgstr "中文(中國)" #: ../../../processing/app/Preferences.java:142 msgid "Chinese (Hong Kong)" -msgstr "" +msgstr "中文(香港)" #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" @@ -314,7 +320,7 @@ msgstr "中文(台灣)" #: ../../../processing/app/Preferences.java:143 msgid "Chinese (Taiwan) (Big5)" -msgstr "" +msgstr "中文(台灣)(Big5)" #: Preferences.java:88 msgid "Chinese Simplified" @@ -436,7 +442,7 @@ msgstr "無法重新儲存草稿碼" msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "無法讀取配色設定,\n你將需要重新安裝Arduino。" +msgstr "" #: Preferences.java:219 msgid "" @@ -563,7 +569,7 @@ msgstr "荷蘭語" #: ../../../processing/app/Preferences.java:144 msgid "Dutch (Netherlands)" -msgstr "" +msgstr "荷蘭語(荷蘭)" #: Editor.java:1130 msgid "Edit" @@ -583,7 +589,7 @@ msgstr "英語" #: ../../../processing/app/Preferences.java:145 msgid "English (United Kingdom)" -msgstr "" +msgstr "英語(英國)" #: Editor.java:1062 msgid "Environment" @@ -676,7 +682,7 @@ msgstr "愛沙尼亞語" #: ../../../processing/app/Preferences.java:146 msgid "Estonian (Estonia)" -msgstr "" +msgstr "愛沙尼亞語(愛沙尼亞)" #: Editor.java:516 msgid "Examples" @@ -1139,12 +1145,6 @@ msgstr "上傳到板子時發生問題。可行建議請見http://www.arduino.cc msgid "Problem with rename" msgstr "重新命名時的問題" -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "Arduino只能開啟它自己的草稿碼,\n以及其他.ino或.pde檔。" - #: ../../../processing/app/I18n.java:86 msgid "Processor" msgstr "處理器" @@ -1536,11 +1536,11 @@ msgstr "連接不成功: 正在重試" #: ../../../processing/app/Editor.java:2526 msgid "Unable to connect: wrong password?" -msgstr "" +msgstr "無法連接; 錯誤的密碼?" #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" -msgstr "" +msgstr "無法開啟序列監視器" #: Sketch.java:1432 #, java-format @@ -1580,7 +1580,7 @@ msgstr "上傳動作已取消。" #: ../../../processing/app/Sketch.java:1678 msgid "Upload cancelled" -msgstr "" +msgstr "上傳已取消" #: Editor.java:2378 msgid "Uploading to I/O Board..." @@ -1712,10 +1712,10 @@ msgstr "\".{0}\"不是合法的副檔名。" #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." -msgstr "\"{0}\"含有無法辨識的字元,若這份程式碼是以舊版Arduino所建立,你或許需要利用「工具->修正編碼並重新載入」以UTF-8編碼來更新草稿碼,若不行,請刪除非法字元擺脫此警告訊息。" +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." +msgstr "" #: debug/Compiler.java:409 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_zh_TW.Big5.properties b/arduino-core/src/processing/app/i18n/Resources_zh_TW.Big5.properties index 5e1e193b0..95c4637cd 100644 --- a/arduino-core/src/processing/app/i18n/Resources_zh_TW.Big5.properties +++ b/arduino-core/src/processing/app/i18n/Resources_zh_TW.Big5.properties @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Chinese (Taiwan) (Big5) (http\://www.transifex.com/projects/p/arduino-ide-15/language/zh_TW.Big5/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: zh_TW.Big5\nPlural-Forms\: nplurals\=1; plural\=0;\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Chinese (Taiwan) (Big5) (http\://www.transifex.com/projects/p/arduino-ide-15/language/zh_TW.Big5/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: zh_TW.Big5\nPlural-Forms\: nplurals\=1; plural\=0;\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\uff08\u9700\u8981\u91cd\u65b0\u555f\u52d5Arduino\uff09 @@ -83,6 +83,9 @@ Arduino\ ARM\ (32-bits)\ Boards=Arduino ARM\uff0832\u4f4d\u5143\uff09\u677f #: ../../../processing/app/I18n.java:82 Arduino\ AVR\ Boards=Arduino AVR\u677f +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino\u7121\u6cd5\u904b\u884c\uff0c\u56e0\u70ba\u7121\u6cd5\n\u5efa\u7acb\u8cc7\u6599\u593e\u5132\u5b58\u4f60\u7684\u8a2d\u5b9a\u503c\u3002 @@ -103,10 +106,10 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u4f60\u78ba\u5b9a\u60f3\u8981\u52 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u4f60\u78ba\u5b9a\u60f3\u8981\u522a\u9664\u6b64\u8349\u7a3f\u78bc\u55ce\uff1f #: ../../../processing/app/Preferences.java:137 -!Armenian= +Armenian=\u4e9e\u7f8e\u5c3c\u4e9e\u8a9e #: ../../../processing/app/Preferences.java:138 -!Asturian= +Asturian=\u963f\u65af\u5716\u91cc\u4e9e\u65af\u8a9e #: tools/AutoFormat.java:91 Auto\ Format=\u81ea\u52d5\u683c\u5f0f\u5316 @@ -140,7 +143,7 @@ Bad\ error\ line\:\ {0}=\u932f\u8aa4\u884c\u865f\uff1a{0} Bad\ file\ selected=\u9078\u64c7\u4e86\u4e0d\u597d\u7684\u6a94\u6848 #: ../../../processing/app/Preferences.java:139 -!Belarusian= +Belarusian=\u767d\u4fc4\u7f85\u65af\u8a9e #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 @@ -148,13 +151,13 @@ Board=\u677f\u5b50 #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format -Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=\u677f\u5b50{0}\:{1}\:{2}\u4e26\u6c92\u6709\u5b9a\u7fa9''build.board'\u504f\u597d\u8a2d\u5b9a\u503c\uff0c\u81ea\u52d5\u8a2d\u70ba\uff1a{3} +Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=\u677f\u5b50{0}\:{1}\:{2}\u4e26\u6c92\u6709\u5b9a\u7fa9''build.board"\u504f\u597d\u8a2d\u5b9a\u503c\uff0c\u81ea\u52d5\u8a2d\u70ba\uff1a{3} #: ../../../processing/app/EditorStatus.java:472 Board\:\ =\u677f\u5b50\uff1a #: ../../../processing/app/Preferences.java:140 -!Bosnian= +Bosnian=\u6ce2\u65af\u5c3c\u4e9e\u8a9e #: SerialMonitor.java:112 Both\ NL\ &\ CR=NL & CR @@ -169,7 +172,7 @@ Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u5efa\u7f6e\u8cc7\u6599 Bulgarian=\u4fdd\u52a0\u5229\u4e9e\u8a9e #: ../../../processing/app/Preferences.java:141 -!Burmese\ (Myanmar)= +Burmese\ (Myanmar)=\u7dec\u7538\u8a9e(\u7dec\u7538) #: Editor.java:708 Burn\ Bootloader=\u71d2\u9304Bootloader @@ -200,16 +203,16 @@ Catalan=\u52a0\u6cf0\u9686\u8a9e Check\ for\ updates\ on\ startup=\u555f\u52d5\u6642\u6aa2\u67e5\u6709\u7121\u66f4\u65b0 #: ../../../processing/app/Preferences.java:142 -!Chinese\ (China)= +Chinese\ (China)=\u4e2d\u6587(\u4e2d\u570b) #: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= +Chinese\ (Hong\ Kong)=\u4e2d\u6587(\u9999\u6e2f) #: ../../../processing/app/Preferences.java:144 Chinese\ (Taiwan)=\u4e2d\u6587(\u53f0\u7063) #: ../../../processing/app/Preferences.java:143 -!Chinese\ (Taiwan)\ (Big5)= +Chinese\ (Taiwan)\ (Big5)=\u4e2d\u6587(\u53f0\u7063)(Big5) #: Preferences.java:88 Chinese\ Simplified=\u7c21\u9ad4\u4e2d\u6587 @@ -297,7 +300,7 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=\u7121\u6cd5\u91cd\u65b0\u5132\u5b58\u8349\u7a3f\u78bc #: Theme.java:52 -Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u7121\u6cd5\u8b80\u53d6\u914d\u8272\u8a2d\u5b9a\uff0c\n\u4f60\u5c07\u9700\u8981\u91cd\u65b0\u5b89\u88ddArduino\u3002 +!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u7121\u6cd5\u8b80\u53d6\u9810\u8a2d\u8a2d\u5b9a\u3002\n\u4f60\u5fc5\u9808\u91cd\u65b0\u5b89\u88ddArduino\u3002 @@ -388,7 +391,7 @@ Done\ uploading.=\u4e0a\u50b3\u5b8c\u7562\u3002 Dutch=\u8377\u862d\u8a9e #: ../../../processing/app/Preferences.java:144 -!Dutch\ (Netherlands)= +Dutch\ (Netherlands)=\u8377\u862d\u8a9e(\u8377\u862d) #: Editor.java:1130 Edit=\u7de8\u8f2f @@ -403,7 +406,7 @@ Editor\ language\:\ =\u7de8\u8f2f\u5668\u8a9e\u8a00\uff1a English=\u82f1\u8a9e #: ../../../processing/app/Preferences.java:145 -!English\ (United\ Kingdom)= +English\ (United\ Kingdom)=\u82f1\u8a9e(\u82f1\u570b) #: Editor.java:1062 Environment=\u958b\u767c\u74b0\u5883 @@ -474,7 +477,7 @@ Error\ while\ printing.=\u5217\u5370\u6642\u767c\u751f\u932f\u8aa4\u3002 Estonian=\u611b\u6c99\u5c3c\u4e9e\u8a9e #: ../../../processing/app/Preferences.java:146 -!Estonian\ (Estonia)= +Estonian\ (Estonia)=\u611b\u6c99\u5c3c\u4e9e\u8a9e(\u611b\u6c99\u5c3c\u4e9e) #: Editor.java:516 Examples=\u7bc4\u4f8b @@ -811,9 +814,6 @@ Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troublesh #: Sketch.java:355 Sketch.java:362 Sketch.java:373 Problem\ with\ rename=\u91cd\u65b0\u547d\u540d\u6642\u7684\u554f\u984c -#: Editor.java:2137 -Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Arduino\u53ea\u80fd\u958b\u555f\u5b83\u81ea\u5df1\u7684\u8349\u7a3f\u78bc\uff0c\n\u4ee5\u53ca\u5176\u4ed6.ino\u6216.pde\u6a94\u3002 - #: ../../../processing/app/I18n.java:86 Processor=\u8655\u7406\u5668 @@ -1074,10 +1074,10 @@ Ukrainian=\u70cf\u514b\u862d\u8a9e Unable\ to\ connect\:\ retrying=\u9023\u63a5\u4e0d\u6210\u529f\: \u6b63\u5728\u91cd\u8a66 #: ../../../processing/app/Editor.java:2526 -!Unable\ to\ connect\:\ wrong\ password?= +Unable\ to\ connect\:\ wrong\ password?=\u7121\u6cd5\u9023\u63a5; \u932f\u8aa4\u7684\u5bc6\u78bc? #: ../../../processing/app/Editor.java:2512 -!Unable\ to\ open\ serial\ monitor= +Unable\ to\ open\ serial\ monitor=\u7121\u6cd5\u958b\u555f\u5e8f\u5217\u76e3\u8996\u5668 #: Sketch.java:1432 #, java-format @@ -1105,7 +1105,7 @@ Upload\ Using\ Programmer=\u4ee5\u71d2\u9304\u5668\u4e0a\u50b3 Upload\ canceled.=\u4e0a\u50b3\u52d5\u4f5c\u5df2\u53d6\u6d88\u3002 #: ../../../processing/app/Sketch.java:1678 -!Upload\ cancelled= +Upload\ cancelled=\u4e0a\u50b3\u5df2\u53d6\u6d88 #: Editor.java:2378 Uploading\ to\ I/O\ Board...=\u4e0a\u50b3\u5230\u677f\u5b50\u4e2d... @@ -1196,7 +1196,7 @@ Zip\ doesn't\ contain\ a\ library=Zip\u4e26\u4e0d\u542b\u6709\u7a0b\u5f0f\u5eab #: SketchCode.java:258 #, java-format -"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}"\u542b\u6709\u7121\u6cd5\u8fa8\u8b58\u7684\u5b57\u5143\uff0c\u82e5\u9019\u4efd\u7a0b\u5f0f\u78bc\u662f\u4ee5\u820a\u7248Arduino\u6240\u5efa\u7acb\uff0c\u4f60\u6216\u8a31\u9700\u8981\u5229\u7528\u300c\u5de5\u5177->\u4fee\u6b63\u7de8\u78bc\u4e26\u91cd\u65b0\u8f09\u5165\u300d\u4ee5UTF-8\u7de8\u78bc\u4f86\u66f4\u65b0\u8349\u7a3f\u78bc\uff0c\u82e5\u4e0d\u884c\uff0c\u8acb\u522a\u9664\u975e\u6cd5\u5b57\u5143\u64fa\u812b\u6b64\u8b66\u544a\u8a0a\u606f\u3002 +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 \nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\n\u5f9eArduino 0019\u4e4b\u5f8c\uff0c\u7a0b\u5f0f\u5eabEthernet\u76f8\u4f9d\u65bcSPI\u7a0b\u5f0f\u5eab\u3002\n\u60a8\u4f3c\u4e4e\u6b63\u4f7f\u7528\u8a72\u7a0b\u5f0f\u5eab\uff0c\u6216\u662f\u5225\u7684\u76f8\u4f9d\u65bcSPI\u7684\u7a0b\u5f0f\u5eab\u3002\n\n diff --git a/arduino-core/src/processing/app/i18n/Resources_zh_TW.po b/arduino-core/src/processing/app/i18n/Resources_zh_TW.po index df7970957..3182ba88d 100644 --- a/arduino-core/src/processing/app/i18n/Resources_zh_TW.po +++ b/arduino-core/src/processing/app/i18n/Resources_zh_TW.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2014-02-19 14:46+0000\n" -"Last-Translator: cmaglie \n" +"PO-Revision-Date: 2015-01-14 17:10+0000\n" +"Last-Translator: Cristian Maglie \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/arduino-ide-15/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,30 +19,30 @@ msgstr "" #: Preferences.java:358 Preferences.java:374 msgid " (requires restart of Arduino)" -msgstr "" +msgstr "(需要重新啟動Arduino)" #: debug/Compiler.java:455 msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "" +msgstr "'Keyboard'只被Arduino Leonardo所支援" #: debug/Compiler.java:450 msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "" +msgstr "'Mouse'只被Arduino Leonardo所支援" #: Preferences.java:478 msgid "(edit only when Arduino is not running)" -msgstr "" +msgstr "(只能在未執行Arduino時進行編輯)" #: Sketch.java:746 msgid ".pde -> .ino" -msgstr "" +msgstr ".pde -> .ino" #: Base.java:773 msgid "" " Are you " "sure you want to Quit?

    Closing the last open sketch will quit Arduino." -msgstr "" +msgstr " 你確定要離開嗎?

    關閉最後一個草稿碼將會離開Arduino。" #: Editor.java:2053 msgid "" @@ -50,226 +50,232 @@ msgid "" " font: 11pt \"Lucida Grande\"; margin-top: 8px } Do you " "want to save changes to this sketch
    before closing?

    If you don't " "save, your changes will be lost." -msgstr "" +msgstr " 您想要關閉前儲存變更到草稿碼裡嗎?

    若不儲存,所有變更將會遺失。" #: Sketch.java:398 #, java-format msgid "A file named \"{0}\" already exists in \"{1}\"" -msgstr "" +msgstr "名為\"{0}\"已經存在於\"{1}\"" #: Editor.java:2169 #, java-format msgid "A folder named \"{0}\" already exists. Can't open sketch." -msgstr "" +msgstr "名為\"{0}\"的資料夾已經存在,無法開啟草稿碼。" #: Base.java:2690 #, java-format msgid "A library named {0} already exists" -msgstr "" +msgstr "名為{0}的程式庫已經存在" #: UpdateCheck.java:103 msgid "" "A new version of Arduino is available,\n" "would you like to visit the Arduino download page?" -msgstr "" +msgstr "Arduino有新版本。\n你想要拜訪Arduino下載頁面嗎?" #: EditorConsole.java:153 msgid "" "A problem occurred while trying to open the\n" "files used to store the console output." -msgstr "" +msgstr "試著開啟用來儲存主控台輸出的檔案時,\n發生問題。" #: Editor.java:1116 msgid "About Arduino" -msgstr "" +msgstr "關於Arduino" #: Editor.java:650 msgid "Add File..." -msgstr "" +msgstr "加入檔案..." #: Base.java:963 msgid "Add Library..." -msgstr "新增函式庫" +msgstr "匯入程式庫..." #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" "Do not attempt to save this sketch as it may overwrite\n" "the old version. Use Open to re-open the sketch and try again.\n" -msgstr "" +msgstr "試著修正檔案編碼時發生錯誤。\n請不要試著儲存此草稿碼,因為可能會蓋掉\n舊版本,請以「開啟」重新開啟草稿碼然後再試一次\n" #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" "platform-specific code for your machine." -msgstr "" +msgstr "試著為你的機器載入與平台相關的程式碼時,\n發生不明的錯誤。" #: Preferences.java:85 msgid "Arabic" -msgstr "" +msgstr "阿拉伯語" #: Preferences.java:86 msgid "Aragonese" -msgstr "" +msgstr "亞拉岡語" #: tools/Archiver.java:48 msgid "Archive Sketch" -msgstr "" +msgstr "封存草稿碼" #: tools/Archiver.java:109 msgid "Archive sketch as:" -msgstr "" +msgstr "封存草稿碼為:" #: tools/Archiver.java:139 msgid "Archive sketch canceled." -msgstr "" +msgstr "封存草稿碼動作已取消。" #: tools/Archiver.java:75 msgid "" "Archiving the sketch has been canceled because\n" "the sketch couldn't save properly." -msgstr "" +msgstr "封存草稿碼的動作已取消,因為\n無法正確地儲存草稿碼。" #: ../../../processing/app/I18n.java:83 msgid "Arduino ARM (32-bits) Boards" -msgstr "" +msgstr "Arduino ARM(32位元)板" #: ../../../processing/app/I18n.java:82 msgid "Arduino AVR Boards" +msgstr "Arduino AVR板" + +#: Editor.java:2137 +msgid "" +"Arduino can only open its own sketches\n" +"and other files ending in .ino or .pde" msgstr "" #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" "create a folder to store your settings." -msgstr "" +msgstr "Arduino無法運行,因為無法\n建立資料夾儲存你的設定值。" #: Base.java:1889 msgid "" "Arduino cannot run because it could not\n" "create a folder to store your sketchbook." -msgstr "" +msgstr "Arduino無法運行,因為無法\n建立資料夾儲存你的草稿碼簿。" #: Base.java:240 msgid "" "Arduino requires a full JDK (not just a JRE)\n" "to run. Please install JDK 1.5 or later.\n" "More information can be found in the reference." -msgstr "" +msgstr "Arduino需要完整的JDK(不僅是JRE)\n才能運作,請安裝JDK1.5或更新版本。\n可在參考文件中獲得更多詳情。" #: ../../../processing/app/EditorStatus.java:471 msgid "Arduino: " -msgstr "" +msgstr "Arduino:" #: Sketch.java:588 #, java-format msgid "Are you sure you want to delete \"{0}\"?" -msgstr "" +msgstr "你確定想要刪除\"{0}\"嗎?" #: Sketch.java:587 msgid "Are you sure you want to delete this sketch?" -msgstr "" +msgstr "你確定想要刪除此草稿碼嗎?" #: ../../../processing/app/Preferences.java:137 msgid "Armenian" -msgstr "" +msgstr "亞美尼亞語" #: ../../../processing/app/Preferences.java:138 msgid "Asturian" -msgstr "" +msgstr "阿斯圖里亞斯語" #: tools/AutoFormat.java:91 msgid "Auto Format" -msgstr "" +msgstr "自動格式化" #: tools/AutoFormat.java:934 msgid "Auto Format Canceled: Too many left curly braces." -msgstr "" +msgstr "自動格式化的動作已取消:左大括號太多" #: tools/AutoFormat.java:925 msgid "Auto Format Canceled: Too many left parentheses." -msgstr "" +msgstr "自動格式化的動作已取消:左括號太多" #: tools/AutoFormat.java:931 msgid "Auto Format Canceled: Too many right curly braces." -msgstr "" +msgstr "自動格式化的動作已取消:右大括號太多" #: tools/AutoFormat.java:922 msgid "Auto Format Canceled: Too many right parentheses." -msgstr "" +msgstr "自動格式化的動作已取消:右括號太多" #: tools/AutoFormat.java:944 msgid "Auto Format finished." -msgstr "" +msgstr "自動格式化完畢。" #: Preferences.java:439 msgid "Automatically associate .ino files with Arduino" -msgstr "" +msgstr "自動將.ino檔與Arduino關聯起來" #: SerialMonitor.java:110 msgid "Autoscroll" -msgstr "" +msgstr "自動捲動" #: Editor.java:2619 #, java-format msgid "Bad error line: {0}" -msgstr "" +msgstr "錯誤行號:{0}" #: Editor.java:2136 msgid "Bad file selected" -msgstr "" +msgstr "選擇了不好的檔案" #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" -msgstr "" +msgstr "白俄羅斯語" #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" -msgstr "" +msgstr "板子" #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" "Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:" " {3}" -msgstr "" +msgstr "板子{0}:{1}:{2}並沒有定義''build.board\"偏好設定值,自動設為:{3}" #: ../../../processing/app/EditorStatus.java:472 msgid "Board: " -msgstr "" +msgstr "板子:" #: ../../../processing/app/Preferences.java:140 msgid "Bosnian" -msgstr "" +msgstr "波斯尼亞語" #: SerialMonitor.java:112 msgid "Both NL & CR" -msgstr "" +msgstr "NL & CR" #: Preferences.java:81 msgid "Browse" -msgstr "" +msgstr "瀏覽" #: Sketch.java:1392 Sketch.java:1423 msgid "Build folder disappeared or could not be written" -msgstr "" +msgstr "建置資料夾消失了、或無法被寫入" #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" -msgstr "" +msgstr "保加利亞語" #: ../../../processing/app/Preferences.java:141 msgid "Burmese (Myanmar)" -msgstr "" +msgstr "緬甸語(緬甸)" #: Editor.java:708 msgid "Burn Bootloader" -msgstr "" +msgstr "燒錄Bootloader" #: Editor.java:2504 msgid "Burning bootloader to I/O Board (this may take a minute)..." -msgstr "" +msgstr "燒錄bootloader到板子裡(可能需要幾分鐘)..." #: ../../../processing/app/Base.java:368 msgid "Can't open source sketch!" @@ -277,160 +283,160 @@ msgstr "" #: ../../../processing/app/Preferences.java:92 msgid "Canadian French" -msgstr "" +msgstr "加拿大法語" #: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2064 Editor.java:2145 Editor.java:2465 msgid "Cancel" -msgstr "" +msgstr "取消" #: Sketch.java:455 msgid "Cannot Rename" -msgstr "" +msgstr "無法重新命名" #: SerialMonitor.java:112 msgid "Carriage return" -msgstr "" +msgstr "CR(carriage return)" #: Preferences.java:87 msgid "Catalan" -msgstr "" +msgstr "加泰隆語" #: Preferences.java:419 msgid "Check for updates on startup" -msgstr "" +msgstr "啟動時檢查有無更新" #: ../../../processing/app/Preferences.java:142 msgid "Chinese (China)" -msgstr "" +msgstr "中文(中國)" #: ../../../processing/app/Preferences.java:142 msgid "Chinese (Hong Kong)" -msgstr "" +msgstr "中文(香港)" #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" -msgstr "" +msgstr "中文(台灣)" #: ../../../processing/app/Preferences.java:143 msgid "Chinese (Taiwan) (Big5)" -msgstr "" +msgstr "中文(台灣)(Big5)" #: Preferences.java:88 msgid "Chinese Simplified" -msgstr "" +msgstr "簡體中文" #: Preferences.java:89 msgid "Chinese Traditional" -msgstr "" +msgstr "正體中文" #: Editor.java:521 Editor.java:2024 msgid "Close" -msgstr "" +msgstr "關閉" #: Editor.java:1208 Editor.java:2749 msgid "Comment/Uncomment" -msgstr "" +msgstr "註解∕移除註解" #: debug/Compiler.java:49 debug/Uploader.java:45 #, java-format msgid "Compiler error, please submit this code to {0}" -msgstr "" +msgstr "編譯器錯誤,請將此程式碼提交到{0}" #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." -msgstr "" +msgstr "編譯草稿碼中..." #: EditorConsole.java:152 msgid "Console Error" -msgstr "" +msgstr "主控台錯誤" #: Editor.java:1157 Editor.java:2707 msgid "Copy" -msgstr "" +msgstr "複製" #: Editor.java:1177 Editor.java:2723 msgid "Copy as HTML" -msgstr "" +msgstr "當做HTML進行複製" #: ../../../processing/app/EditorStatus.java:455 msgid "Copy error messages" -msgstr "" +msgstr "複制錯誤訊息" #: Editor.java:1165 Editor.java:2715 msgid "Copy for Forum" -msgstr "" +msgstr "為了論壇進行複製" #: Sketch.java:1089 #, java-format msgid "Could not add ''{0}'' to the sketch." -msgstr "" +msgstr "無法加入''{0}''到草稿碼裡。" #: Editor.java:2188 msgid "Could not copy to a proper location." -msgstr "" +msgstr "無法複製到適當的位置。" #: Editor.java:2179 msgid "Could not create the sketch folder." -msgstr "" +msgstr "無法建立草稿碼資料夾。" #: Editor.java:2206 msgid "Could not create the sketch." -msgstr "" +msgstr "無法建立草稿碼。" #: Sketch.java:617 #, java-format msgid "Could not delete \"{0}\"." -msgstr "" +msgstr "無法刪除\"{0}\"。" #: Sketch.java:1066 #, java-format msgid "Could not delete the existing ''{0}'' file." -msgstr "" +msgstr "無法刪除''{0}''檔" #: Base.java:2533 Base.java:2556 #, java-format msgid "Could not delete {0}" -msgstr "" +msgstr "無法刪除{0}" #: ../../../processing/app/debug/TargetPlatform.java:74 #, java-format msgid "Could not find boards.txt in {0}. Is it pre-1.5?" -msgstr "" +msgstr "在{0}裡找不到boards.txt。這是1.5之前的版本嗎?" #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 #, java-format msgid "Could not find tool {0}" -msgstr "" +msgstr "找不到工具{0}" #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 #, java-format msgid "Could not find tool {0} from package {1}" -msgstr "" +msgstr "在從套件{1}裡找不到工具{0}" #: Base.java:1934 #, java-format msgid "" "Could not open the URL\n" "{0}" -msgstr "" +msgstr "無法開啟網址\n{0}" #: Base.java:1958 #, java-format msgid "" "Could not open the folder\n" "{0}" -msgstr "" +msgstr "無法開啟資料夾\n{0}" #: Sketch.java:1769 msgid "" "Could not properly re-save the sketch. You may be in trouble at this point,\n" "and it might be time to copy and paste your code to another text editor." -msgstr "" +msgstr "無法適當地重新儲存草稿碼。你在此應碰上問題了,\n或許該複製貼上程式碼到別的文字編輯器裡。" #: Sketch.java:1768 msgid "Could not re-save sketch" -msgstr "" +msgstr "無法重新儲存草稿碼" #: Theme.java:52 msgid "" @@ -442,7 +448,7 @@ msgstr "" msgid "" "Could not read default settings.\n" "You'll need to reinstall Arduino." -msgstr "" +msgstr "無法讀取預設設定。\n你必須重新安裝Arduino。" #: Preferences.java:258 #, java-format @@ -452,142 +458,142 @@ msgstr "" #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" -msgstr "" +msgstr "無法移除{0}的舊版本" #: Sketch.java:483 Sketch.java:528 #, java-format msgid "Could not rename \"{0}\" to \"{1}\"" -msgstr "" +msgstr "無法將\"{0}\"重新命名為\"{1}\"" #: Sketch.java:475 msgid "Could not rename the sketch. (0)" -msgstr "" +msgstr "無法重新命名草稿碼。(0)" #: Sketch.java:496 msgid "Could not rename the sketch. (1)" -msgstr "" +msgstr "無法重新命名草稿碼。(1)" #: Sketch.java:503 msgid "Could not rename the sketch. (2)" -msgstr "" +msgstr "無法重新命名草稿碼。(2)" #: Base.java:2492 #, java-format msgid "Could not replace {0}" -msgstr "" +msgstr "無法取代{0}" #: tools/Archiver.java:74 msgid "Couldn't archive sketch" -msgstr "" +msgstr "無法封存草稿碼" #: Sketch.java:1647 msgid "Couldn't determine program size: {0}" -msgstr "" +msgstr "無法得知程式大小:{0}" #: Sketch.java:616 msgid "Couldn't do it" -msgstr "" +msgstr "無法完成動作" #: debug/BasicUploader.java:209 msgid "" "Couldn't find a Board on the selected port. Check that you have the correct " "port selected. If it is correct, try pressing the board's reset button " "after initiating the upload." -msgstr "" +msgstr "無法在選定的傳輸埠上找到板子,請檢查您設定的埠號是否正確,若正確,請試著在啟動上傳後按下板子的重置鍵。" #: ../../../processing/app/Preferences.java:82 msgid "Croatian" -msgstr "" +msgstr "克羅地亞語" #: Editor.java:1149 Editor.java:2699 msgid "Cut" -msgstr "" +msgstr "剪下" #: ../../../processing/app/Preferences.java:83 msgid "Czech" -msgstr "" +msgstr "捷克語" #: Preferences.java:90 msgid "Danish" -msgstr "" +msgstr "丹麥語" #: Editor.java:1224 Editor.java:2765 msgid "Decrease Indent" -msgstr "" +msgstr "減少縮排深度" #: EditorHeader.java:314 Sketch.java:591 msgid "Delete" -msgstr "" +msgstr "刪除" #: debug/Uploader.java:199 msgid "" "Device is not responding, check the right serial port is selected or RESET " "the board right before exporting" -msgstr "" +msgstr "裝置無回應,請檢查是否選取正確的序列埠,或是在匯出之前重置板子" #: tools/FixEncoding.java:57 msgid "Discard all changes and reload sketch?" -msgstr "" +msgstr "放棄所有變更並重新載入草稿碼?" #: ../../../processing/app/Preferences.java:438 msgid "Display line numbers" -msgstr "" +msgstr "顯示行數" #: Editor.java:2064 msgid "Don't Save" -msgstr "" +msgstr "不要儲存" #: Editor.java:2275 Editor.java:2311 msgid "Done Saving." -msgstr "" +msgstr "儲存完畢" #: Editor.java:2510 msgid "Done burning bootloader." -msgstr "" +msgstr "bootloader燒錄完畢。" #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." -msgstr "" +msgstr "編譯完畢。" #: Editor.java:2564 msgid "Done printing." -msgstr "" +msgstr "列印完畢。" #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." -msgstr "" +msgstr "上傳完畢。" #: Preferences.java:91 msgid "Dutch" -msgstr "" +msgstr "荷蘭語" #: ../../../processing/app/Preferences.java:144 msgid "Dutch (Netherlands)" -msgstr "" +msgstr "荷蘭語(荷蘭)" #: Editor.java:1130 msgid "Edit" -msgstr "" +msgstr "編輯" #: Preferences.java:370 msgid "Editor font size: " -msgstr "" +msgstr "編輯器字型大小:" #: Preferences.java:353 msgid "Editor language: " -msgstr "" +msgstr "編輯器語言:" #: Preferences.java:92 msgid "English" -msgstr "" +msgstr "英語" #: ../../../processing/app/Preferences.java:145 msgid "English (United Kingdom)" -msgstr "" +msgstr "英語(英國)" #: Editor.java:1062 msgid "Environment" -msgstr "" +msgstr "開發環境" #: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481 #: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543 @@ -597,47 +603,47 @@ msgstr "錯誤" #: Sketch.java:1065 Sketch.java:1088 msgid "Error adding file" -msgstr "" +msgstr "加入檔案時發生錯誤" #: debug/Compiler.java:369 msgid "Error compiling." -msgstr "" +msgstr "編譯時發生錯誤" #: Base.java:1674 msgid "Error getting the Arduino data folder." -msgstr "" +msgstr "取得Arduino資料目錄時發生錯誤" #: Serial.java:593 #, java-format msgid "Error inside Serial.{0}()" -msgstr "" +msgstr "在Serial.{0}()裡發生錯誤" #: ../../../processing/app/Base.java:1232 msgid "Error loading libraries" -msgstr "" +msgstr "載入程式庫時發生錯誤" #: ../../../processing/app/debug/TargetPlatform.java:95 #: ../../../processing/app/debug/TargetPlatform.java:106 #: ../../../processing/app/debug/TargetPlatform.java:117 #, java-format msgid "Error loading {0}" -msgstr "" +msgstr "載入{0}時發生錯誤" #: Serial.java:181 #, java-format msgid "Error opening serial port ''{0}''." -msgstr "" +msgstr "開啟序列埠''{0}''時發生錯誤。" #: Preferences.java:277 msgid "Error reading preferences" -msgstr "" +msgstr "讀取偏好設定時發生錯誤" #: Preferences.java:279 #, java-format msgid "" "Error reading the preferences file. Please delete (or move)\n" "{0} and restart Arduino." -msgstr "" +msgstr "讀取偏好設定檔時發生錯誤。請刪除(或移走)\n{0}並重新啟動Arduino" #: ../../../cc/arduino/packages/DiscoveryManager.java:25 msgid "Error starting discovery method: " @@ -646,57 +652,57 @@ msgstr "" #: Serial.java:125 #, java-format msgid "Error touching serial port ''{0}''." -msgstr "" +msgstr "使用序列埠''{0}''時發生錯誤。" #: Editor.java:2512 Editor.java:2516 Editor.java:2520 msgid "Error while burning bootloader." -msgstr "" +msgstr "燒錄bootloader時發生錯誤。" #: ../../../processing/app/Editor.java:2555 msgid "Error while burning bootloader: missing '{0}' configuration parameter" -msgstr "" +msgstr "燒錄bootloader時發生錯誤:缺少配置參數 '{0}'" #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" -msgstr "" +msgstr "載入程式碼{0}時發生錯誤" #: Editor.java:2567 msgid "Error while printing." -msgstr "" +msgstr "列印時發生錯誤。" #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" -msgstr "" +msgstr "上傳時發生錯誤:缺少結構參數“{0}”" #: Preferences.java:93 msgid "Estonian" -msgstr "" +msgstr "愛沙尼亞語" #: ../../../processing/app/Preferences.java:146 msgid "Estonian (Estonia)" -msgstr "" +msgstr "愛沙尼亞語(愛沙尼亞)" #: Editor.java:516 msgid "Examples" -msgstr "" +msgstr "範例" #: Editor.java:2482 msgid "Export canceled, changes must first be saved." -msgstr "" +msgstr "匯出動作已取消,必須先儲存變更。" #: Base.java:2100 msgid "FAQ.html" -msgstr "" +msgstr "FAQ.html" #: Editor.java:491 msgid "File" -msgstr "" +msgstr "檔案" #: Preferences.java:94 msgid "Filipino" -msgstr "" +msgstr "菲律賓語" #: FindReplace.java:124 FindReplace.java:127 msgid "Find" @@ -704,140 +710,140 @@ msgstr "尋找" #: Editor.java:1249 msgid "Find Next" -msgstr "" +msgstr "找下一個" #: Editor.java:1259 msgid "Find Previous" -msgstr "" +msgstr "找上一個" #: Editor.java:1086 Editor.java:2775 msgid "Find in Reference" -msgstr "" +msgstr "在參考文件裡尋找" #: Editor.java:1234 msgid "Find..." -msgstr "" +msgstr "尋找..." #: FindReplace.java:80 msgid "Find:" -msgstr "" +msgstr "尋找:" #: ../../../processing/app/Preferences.java:147 msgid "Finnish" -msgstr "" +msgstr "完成" #: tools/FixEncoding.java:41 tools/FixEncoding.java:58 #: tools/FixEncoding.java:79 msgid "Fix Encoding & Reload" -msgstr "" +msgstr "修正編碼並重新載入" #: Base.java:1851 msgid "" "For information on installing libraries, see: " "http://arduino.cc/en/Guide/Libraries\n" -msgstr "" +msgstr "關於安裝程式庫的細節,請見http://arduino.cc/en/Guide/Libraries。\n" #: debug/BasicUploader.java:80 msgid "Forcing reset using 1200bps open/close on port " -msgstr "" +msgstr "強迫重置,1200bps開啟∕關閉傳輸埠" #: Preferences.java:95 msgid "French" -msgstr "" +msgstr "法語" #: Editor.java:1097 msgid "Frequently Asked Questions" -msgstr "" +msgstr "常見問答集" #: Preferences.java:96 msgid "Galician" -msgstr "" +msgstr "加利西亞語" #: ../../../processing/app/Preferences.java:94 msgid "Georgian" -msgstr "" +msgstr "喬治亞語" #: Preferences.java:97 msgid "German" -msgstr "" +msgstr "德語" #: Editor.java:1054 msgid "Getting Started" -msgstr "" +msgstr "入門手冊" #: ../../../processing/app/Sketch.java:1646 #, java-format msgid "" "Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes " "for local variables. Maximum is {1} bytes." -msgstr "" +msgstr "全域變數使用了 {0} bytes ({2}%%) 動態記憶體,剩餘 {3} bytes 的局部變數。最大值為 {1} bytes 。" #: ../../../processing/app/Sketch.java:1651 #, java-format msgid "Global variables use {0} bytes of dynamic memory." -msgstr "" +msgstr "全域變數使用了 {0} bytes 動態內存。" #: Preferences.java:98 msgid "Greek" -msgstr "" +msgstr "希臘語" #: Base.java:2085 msgid "Guide_Environment.html" -msgstr "" +msgstr "Guide_Environment.html" #: Base.java:2071 msgid "Guide_MacOSX.html" -msgstr "" +msgstr "Guide_MacOSX.html" #: Base.java:2095 msgid "Guide_Troubleshooting.html" -msgstr "" +msgstr "Guide_Troubleshooting.html" #: Base.java:2073 msgid "Guide_Windows.html" -msgstr "" +msgstr "Guide_Windows.html" #: ../../../processing/app/Preferences.java:95 msgid "Hebrew" -msgstr "" +msgstr "希伯來語" #: Editor.java:1015 msgid "Help" -msgstr "" +msgstr "說明" #: Preferences.java:99 msgid "Hindi" -msgstr "" +msgstr "印度語" #: Sketch.java:295 msgid "" "How about saving the sketch first \n" "before trying to rename it?" -msgstr "" +msgstr "在試著重新命名前\n要不要先儲存草稿碼呢?" #: Sketch.java:882 msgid "How very Borges of you" -msgstr "" +msgstr "誰人比你更癲狂" #: Preferences.java:100 msgid "Hungarian" -msgstr "" +msgstr "匈牙利語" #: FindReplace.java:96 msgid "Ignore Case" -msgstr "" +msgstr "忽略大小寫" #: Base.java:1058 msgid "Ignoring bad library name" -msgstr "" +msgstr "忽略不好的程式庫名稱" #: Base.java:1436 msgid "Ignoring sketch with bad name" -msgstr "" +msgstr "忽略擁有不好名稱的草稿碼" #: Editor.java:636 msgid "Import Library..." -msgstr "" +msgstr "匯入程式庫..." #: ../../../processing/app/Sketch.java:736 msgid "" @@ -848,52 +854,52 @@ msgid "" "disable this in the Preferences dialog.\n" "\n" "Save sketch and update its extension?" -msgstr "" +msgstr "自從Arduino 1.0之後,預設副檔名已從\n.pde改為.ino。新草稿碼(包括以\"另存新檔\"所\n建立的)將會使用新的副檔名,原有的草稿碼\n將會在儲存時更新附檔名,但您可在偏好設定裡\n取消此功能。\n\n儲存草稿碼並更新副檔名?" #: Editor.java:1216 Editor.java:2757 msgid "Increase Indent" -msgstr "" +msgstr "增加縮排深度" #: Preferences.java:101 msgid "Indonesian" -msgstr "" +msgstr "印尼語" #: ../../../processing/app/Base.java:1204 #, java-format msgid "Invalid library found in {0}: {1}" -msgstr "" +msgstr "在{0}: {1}裡找到無效的程式庫" #: Preferences.java:102 msgid "Italian" -msgstr "" +msgstr "意大利語" #: Preferences.java:103 msgid "Japanese" -msgstr "" +msgstr "日語" #: Preferences.java:104 msgid "Korean" -msgstr "" +msgstr "韓語" #: Preferences.java:105 msgid "Latvian" -msgstr "" +msgstr "拉脫維亞語" #: Base.java:2699 msgid "Library added to your libraries. Check \"Import library\" menu" -msgstr "" +msgstr "程式庫已加入,請檢查「匯入程式庫」選單" #: Preferences.java:106 msgid "Lithuaninan" -msgstr "" +msgstr "立陶宛語" #: ../../../processing/app/Sketch.java:1660 msgid "Low memory available, stability problems may occur" -msgstr "" +msgstr "可用記憶體低下,可能發生穩定性問題" #: Preferences.java:107 msgid "Marathi" -msgstr "" +msgstr "馬拉地語" #: Base.java:2112 msgid "Message" @@ -901,132 +907,132 @@ msgstr "訊息" #: ../../../processing/app/preproc/PdePreprocessor.java:412 msgid "Missing the */ from the end of a /* comment */" -msgstr "" +msgstr "註釋結尾缺少*/ " #: Preferences.java:449 msgid "More preferences can be edited directly in the file" -msgstr "" +msgstr "在偏好設定檔裡還有更多設定值可直接編輯" #: Editor.java:2156 msgid "Moving" -msgstr "" +msgstr "移動中" #: Sketch.java:282 msgid "Name for new file:" -msgstr "" +msgstr "新檔案的名字:" #: ../../../processing/app/Preferences.java:149 msgid "Nepali" -msgstr "" +msgstr "尼泊爾語" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 msgid "Network upload using programmer not supported" -msgstr "" +msgstr "編程器不支援使用網絡上傳" #: EditorToolbar.java:41 Editor.java:493 msgid "New" -msgstr "" +msgstr "新增" #: EditorToolbar.java:46 msgid "New Editor Window" -msgstr "" +msgstr "新編輯器視窗" #: EditorHeader.java:292 msgid "New Tab" -msgstr "" +msgstr "新增標籤" #: SerialMonitor.java:112 msgid "Newline" -msgstr "" +msgstr "NL(newline)" #: EditorHeader.java:340 msgid "Next Tab" -msgstr "" +msgstr "下一個標籤" #: Preferences.java:78 UpdateCheck.java:108 msgid "No" -msgstr "" +msgstr "否" #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "" +msgstr "沒有選擇板子;請從「工具>板子」選單裡選擇板子" #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." -msgstr "" +msgstr "自動格式化並不需要做出更動" #: Editor.java:373 msgid "No files were added to the sketch." -msgstr "" +msgstr "沒有檔案被加入草稿碼中。" #: Platform.java:167 msgid "No launcher available" -msgstr "" +msgstr "無可用的啟動者。" #: SerialMonitor.java:112 msgid "No line ending" -msgstr "" +msgstr "沒有行結尾" #: Base.java:541 msgid "No really, time for some fresh air for you." -msgstr "" +msgstr "我說真的,該是呼吸新鮮空氣的時候了。" #: Editor.java:1872 #, java-format msgid "No reference available for \"{0}\"" -msgstr "" +msgstr "關於\"{0}\"並無參考文件" #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." -msgstr "" +msgstr "找不到有效並設定組態過的核心!離開..." #: ../../../processing/app/debug/TargetPackage.java:63 #, java-format msgid "No valid hardware definitions found in folder {0}." -msgstr "" +msgstr "在文件夾中找不到任何有效的硬體定義{0}。" #: Base.java:191 msgid "Non-fatal error while setting the Look & Feel." -msgstr "" +msgstr "設定外觀與感覺時發生非重大的錯誤。" #: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859 msgid "Nope" -msgstr "" +msgstr "不要" #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" -msgstr "" +msgstr "巴克摩挪威語" #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " "for tips on reducing your footprint." -msgstr "" +msgstr "記憶體不足;請見http://www.arduino.cc/en/Guide/Troubleshooting#size得知如何降低用量的技巧?" #: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2145 Editor.java:2465 msgid "OK" -msgstr "" +msgstr "好" #: Sketch.java:992 Editor.java:376 msgid "One file added to the sketch." -msgstr "" +msgstr "一支檔案已加入草稿碼。" #: EditorToolbar.java:41 msgid "Open" -msgstr "" +msgstr "開啟" #: Editor.java:2688 msgid "Open URL" -msgstr "" +msgstr "開啟網址" #: Base.java:636 msgid "Open an Arduino sketch..." -msgstr "" +msgstr "開啟Arduino草稿碼..." #: EditorToolbar.java:46 msgid "Open in Another Window" -msgstr "" +msgstr "在另一個視窗裡開啟" #: Base.java:903 Editor.java:501 msgid "Open..." @@ -1034,231 +1040,225 @@ msgstr "開啟..." #: Editor.java:563 msgid "Page Setup" -msgstr "" +msgstr "頁面設定" #: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 msgid "Password:" -msgstr "" +msgstr "密碼:" #: Editor.java:1189 Editor.java:2731 msgid "Paste" -msgstr "" +msgstr "貼上" #: Preferences.java:109 msgid "Persian" -msgstr "" +msgstr "波斯語" #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." -msgstr "" +msgstr "請從選單「草稿碼>匯入程式庫」匯入SPI程式庫。" #: Base.java:239 msgid "Please install JDK 1.5 or later" -msgstr "" +msgstr "請安裝JDK 1.5或更新的版本" #: Preferences.java:110 msgid "Polish" -msgstr "" +msgstr "波蘭語" #: ../../../processing/app/Editor.java:718 msgid "Port" -msgstr "" +msgstr "序列埠" #: ../../../processing/app/Preferences.java:151 msgid "Portugese" -msgstr "" +msgstr "葡萄牙語" #: ../../../processing/app/Preferences.java:127 msgid "Portuguese (Brazil)" -msgstr "" +msgstr "葡萄牙語(巴西)" #: ../../../processing/app/Preferences.java:128 msgid "Portuguese (Portugal)" -msgstr "" +msgstr "葡萄牙語(葡萄牙)" #: Preferences.java:295 Editor.java:583 msgid "Preferences" -msgstr "" +msgstr "偏好設定" #: FindReplace.java:123 FindReplace.java:128 msgid "Previous" -msgstr "" +msgstr "前一個" #: EditorHeader.java:326 msgid "Previous Tab" -msgstr "" +msgstr "上一個標籤" #: Editor.java:571 msgid "Print" -msgstr "" +msgstr "列印" #: Editor.java:2571 msgid "Printing canceled." -msgstr "" +msgstr "列印動作已取消。" #: Editor.java:2547 msgid "Printing..." -msgstr "" +msgstr "列印中..." #: Base.java:1957 msgid "Problem Opening Folder" -msgstr "" +msgstr "開啟資料夾時發生問題" #: Base.java:1933 msgid "Problem Opening URL" -msgstr "" +msgstr "開啟網址時發生問題" #: Base.java:227 msgid "Problem Setting the Platform" -msgstr "" +msgstr "設定平台時發生問題" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 msgid "Problem accessing board folder /www/sd" -msgstr "" +msgstr "存取板子的資料夾/www/sd時發生問題" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 msgid "Problem accessing files in folder " -msgstr "" +msgstr "存取資料夾中的文件時發生問題" #: Base.java:1673 msgid "Problem getting data folder" -msgstr "" +msgstr "取得資料目錄時發生問題" #: Sketch.java:1467 #, java-format msgid "Problem moving {0} to the build folder" -msgstr "" +msgstr "搬移{0}到建置資料夾時發生錯誤" #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " "http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions." -msgstr "" +msgstr "上傳到板子時發生問題。可行建議請見http://www.arduino.cc/en/Guide/Troubleshooting#upload。" #: Sketch.java:355 Sketch.java:362 Sketch.java:373 msgid "Problem with rename" -msgstr "" - -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "" +msgstr "重新命名時的問題" #: ../../../processing/app/I18n.java:86 msgid "Processor" -msgstr "" +msgstr "處理器" #: Editor.java:704 msgid "Programmer" -msgstr "" +msgstr "燒錄器" #: Base.java:783 Editor.java:593 msgid "Quit" -msgstr "" +msgstr "離開" #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" -msgstr "" +msgstr "重做" #: Editor.java:1078 msgid "Reference" -msgstr "" +msgstr "參考文件" #: EditorHeader.java:300 msgid "Rename" -msgstr "" +msgstr "重新命名" #: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046 msgid "Replace" -msgstr "取代" +msgstr "置換" #: FindReplace.java:122 FindReplace.java:129 msgid "Replace & Find" -msgstr "" +msgstr "置換 & 尋找" #: FindReplace.java:120 FindReplace.java:131 msgid "Replace All" -msgstr "取代全部" +msgstr "全部置換" #: Sketch.java:1043 #, java-format msgid "Replace the existing version of {0}?" -msgstr "" +msgstr "取代{0}的現存版本?" #: FindReplace.java:81 msgid "Replace with:" -msgstr "" +msgstr "置換為:" #: Preferences.java:113 msgid "Romanian" -msgstr "" +msgstr "羅馬尼亞語" #: Preferences.java:114 msgid "Russian" -msgstr "" +msgstr "俄語" #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529 #: Editor.java:2064 Editor.java:2468 msgid "Save" -msgstr "" +msgstr "儲存" #: Editor.java:537 msgid "Save As..." -msgstr "" +msgstr "另存新檔..." #: Editor.java:2317 msgid "Save Canceled." -msgstr "" +msgstr "儲存動作已取消。" #: Editor.java:2467 msgid "Save changes before export?" -msgstr "" +msgstr "匯出前先儲存變更?" #: Editor.java:2020 #, java-format msgid "Save changes to \"{0}\"? " -msgstr "" +msgstr "儲存變更到\"{0}\"?" #: Sketch.java:825 msgid "Save sketch folder as..." -msgstr "" +msgstr "儲存草稿碼資料夾為..." #: Editor.java:2270 Editor.java:2308 msgid "Saving..." -msgstr "" +msgstr "儲存中..." #: Base.java:1909 msgid "Select (or create new) folder for sketches..." -msgstr "" +msgstr "為草稿碼選取(或新增)資料夾..." #: Editor.java:1198 Editor.java:2739 msgid "Select All" -msgstr "" +msgstr "全選" #: Base.java:2636 msgid "Select a zip file or a folder containing the library you'd like to add" -msgstr "" +msgstr "選擇你想加入並含有程式庫的zip檔或資料夾" #: Sketch.java:975 msgid "Select an image or other data file to copy to your sketch" -msgstr "" +msgstr "選擇圖片或其他資料檔複製到你的草稿碼裡" #: Preferences.java:330 msgid "Select new sketchbook location" -msgstr "" +msgstr "為草稿碼簿選擇新位置" #: ../../../processing/app/debug/Compiler.java:146 msgid "Selected board depends on '{0}' core (not installed)." -msgstr "" +msgstr "根據'{0}'核心(並未安裝)所選擇的板子。" #: SerialMonitor.java:93 msgid "Send" -msgstr "" +msgstr "傳送" #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 msgid "Serial Monitor" -msgstr "" +msgstr "序列埠監控視窗" #: Serial.java:174 #, java-format @@ -1279,145 +1279,145 @@ msgstr "" msgid "" "Serial port ''{0}'' not found. Did you select the right one from the Tools >" " Serial Port menu?" -msgstr "" +msgstr "找不到序列埠''{0}''。您在選單「工具>序列埠」裡的設定正確嗎?" #: Editor.java:2343 #, java-format msgid "" "Serial port {0} not found.\n" "Retry the upload with another serial port?" -msgstr "" +msgstr "沒找到序列埠{0}。\n以另一個序列埠再試著上傳嗎?" #: Base.java:1681 msgid "Settings issues" -msgstr "" +msgstr "設定值相關問題" #: Editor.java:641 msgid "Show Sketch Folder" -msgstr "" +msgstr "顯示草稿碼資料夾" #: ../../../processing/app/EditorStatus.java:468 msgid "Show verbose output during compilation" -msgstr "" +msgstr "編譯時顯示詳細輸出資訊" #: Preferences.java:387 msgid "Show verbose output during: " -msgstr "" +msgstr "顯示詳細輸出:" #: Editor.java:607 msgid "Sketch" -msgstr "" +msgstr "草稿碼" #: Sketch.java:1754 msgid "Sketch Disappeared" -msgstr "" +msgstr "草稿碼消失了" #: Base.java:1411 msgid "Sketch Does Not Exist" -msgstr "" +msgstr "草稿碼不存在" #: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966 msgid "Sketch is Read-Only" -msgstr "" +msgstr "草稿碼為唯讀狀態" #: Sketch.java:294 msgid "Sketch is Untitled" -msgstr "" +msgstr "草稿碼未命名" #: Sketch.java:720 msgid "Sketch is read-only" -msgstr "" +msgstr "草稿碼是唯讀狀態" #: Sketch.java:1653 msgid "" "Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " "tips on reducing it." -msgstr "" +msgstr "草稿碼太大;請見http://www.arduino.cc/en/Guide/Troubleshooting#size得知縮減大小的技巧" #: ../../../processing/app/Sketch.java:1639 #, java-format msgid "" "Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} " "bytes." -msgstr "" +msgstr "草稿碼使用了 {0} bytes ({2}%%) 的程式存儲空間。最大值為 {1} bytes。" #: Editor.java:510 msgid "Sketchbook" -msgstr "" +msgstr "草稿碼簿" #: Base.java:258 msgid "Sketchbook folder disappeared" -msgstr "" +msgstr "草稿碼簿資料夾不見了" #: Preferences.java:315 msgid "Sketchbook location:" -msgstr "" +msgstr "草稿碼簿的位置:" #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" -msgstr "" +msgstr "草稿碼 (*.ino, *.pde)" #: ../../../processing/app/Preferences.java:152 msgid "Slovenian" -msgstr "" +msgstr "斯洛文尼亞語" #: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967 msgid "" "Some files are marked \"read-only\", so you'll\n" "need to re-save the sketch in another location,\n" "and try again." -msgstr "" +msgstr "有些檔案為「唯讀」,所以你必須\n另存草稿碼到別的位置,\n然後再試一次。" #: Sketch.java:721 msgid "" "Some files are marked \"read-only\", so you'll\n" "need to re-save this sketch to another location." -msgstr "" +msgstr "有些檔案為「唯讀」,所以你需要\n另行儲存草稿碼到別的位置。" #: Sketch.java:457 #, java-format msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." -msgstr "" +msgstr "抱歉,已經存在名為\"{0}\"的草稿碼(或資料夾)。" #: Preferences.java:115 msgid "Spanish" -msgstr "" +msgstr "西班牙語" #: Base.java:540 msgid "Sunshine" -msgstr "" +msgstr "陽光" #: ../../../processing/app/Preferences.java:153 msgid "Swedish" -msgstr "" +msgstr "瑞典語" #: Preferences.java:84 msgid "System Default" -msgstr "" +msgstr "系統預設" #: Preferences.java:116 msgid "Tamil" -msgstr "" +msgstr "泰米爾語" #: debug/Compiler.java:414 msgid "The 'BYTE' keyword is no longer supported." -msgstr "" +msgstr "關鍵字'BYTE'已不被支援" #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." -msgstr "" +msgstr "類別Client已改名為EthernetClient。" #: debug/Compiler.java:420 msgid "The Server class has been renamed EthernetServer." -msgstr "" +msgstr "類別Server已改名為EthernetServer。" #: debug/Compiler.java:432 msgid "The Udp class has been renamed EthernetUdp." -msgstr "" +msgstr "類別Udp已改名為EthernetUdp。" #: Base.java:192 msgid "The error message follows, however Arduino should run fine." -msgstr "" +msgstr "雖然有錯誤訊息,但Arduino應可運作正常。" #: Editor.java:2147 #, java-format @@ -1425,7 +1425,7 @@ msgid "" "The file \"{0}\" needs to be inside\n" "a sketch folder named \"{1}\".\n" "Create this folder, move the file, and continue?" -msgstr "" +msgstr "檔案\"{0}\"必須位於\n名為\"{1}\"的草稿碼資料夾中。\n建立此資料夾、移動檔案、並且繼續嗎?" #: Base.java:1054 Base.java:2674 #, java-format @@ -1433,25 +1433,25 @@ msgid "" "The library \"{0}\" cannot be used.\n" "Library names must contain only basic letters and numbers.\n" "(ASCII only and no spaces, and it cannot start with a number)" -msgstr "" +msgstr "無法使用程式庫\"{0}\"。\n程式庫的名稱只能含有基本字母與數字。\n(只能是ASCII,不能有空白字元,也不能以數字開頭)" #: Sketch.java:374 msgid "" "The main file can't use an extension.\n" "(It may be time for your to graduate to a\n" "\"real\" programming environment)" -msgstr "" +msgstr "主檔不能使用副檔名。\n(或許該是時候開始使用\n「真正」的程式開發環境了)" #: Sketch.java:356 msgid "The name cannot start with a period." -msgstr "" +msgstr "名稱不能以「.」開頭" #: Base.java:1412 msgid "" "The selected sketch no longer exists.\n" "You may need to restart Arduino to update\n" "the sketchbook menu." -msgstr "" +msgstr "選取的草稿碼已不存在。\n你或許需要重新啟動Arduino\n以便更新草稿碼簿目錄。" #: Base.java:1430 #, java-format @@ -1461,14 +1461,14 @@ msgid "" "(ASCII-only with no spaces, and it cannot start with a number).\n" "To get rid of this message, remove the sketch from\n" "{1}" -msgstr "" +msgstr "無法使用草稿碼\"{0}\"。\n草稿碼的名稱只能含有基本字母與數字\n(只能是ASCII,不能含有空白字元,也不能以數字開頭)。\n若不想看到此訊息,請從{1}移除該草稿碼。" #: Sketch.java:1755 msgid "" "The sketch folder has disappeared.\n" " Will attempt to re-save in the same location,\n" "but anything besides the code will be lost." -msgstr "" +msgstr "草稿碼資料夾消失了。\n將試著在同一位置重新儲存,\n但除了程式碼以外的東西將遺失。" #: Sketch.java:2018 msgid "" @@ -1484,46 +1484,46 @@ msgid "" "location, and create a new sketchbook folder if\n" "necessary. Arduino will then stop talking about\n" "himself in the third person." -msgstr "" +msgstr "草稿碼簿資料夾已不存在。\nArduino將轉為使用預設的草稿碼簿位置,\n並且視需要新增資料夾。然後Arduino將\n停止以第三人稱提及自己。" #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" "location from which where you're trying to add it.\n" "I ain't not doin nuthin'." -msgstr "" +msgstr "這支檔案已經複製到\n你想要加入的位置內,\n我絕對不會不想要無所事事。" #: ../../../processing/app/EditorStatus.java:467 msgid "This report would have more information with" -msgstr "" +msgstr "這份報告的詳情將會在" #: Base.java:535 msgid "Time for a Break" -msgstr "" +msgstr "休息時間到了" #: Editor.java:663 msgid "Tools" -msgstr "" +msgstr "工具" #: Editor.java:1070 msgid "Troubleshooting" -msgstr "" +msgstr "排除問題" #: ../../../processing/app/Preferences.java:117 msgid "Turkish" -msgstr "" +msgstr "土耳其語" #: ../../../processing/app/Editor.java:2507 msgid "Type board password to access its console" -msgstr "" +msgstr "輸入板子的密碼以訪問其控制台" #: ../../../processing/app/Sketch.java:1673 msgid "Type board password to upload a new sketch" -msgstr "" +msgstr "輸入板子的密碼以上傳新的草稿碼" #: ../../../processing/app/Preferences.java:118 msgid "Ukrainian" -msgstr "" +msgstr "烏克蘭語" #: ../../../processing/app/Editor.java:2524 #: ../../../processing/app/NetworkMonitor.java:145 @@ -1532,39 +1532,39 @@ msgstr "" #: ../../../processing/app/NetworkMonitor.java:130 msgid "Unable to connect: retrying" -msgstr "" +msgstr "連接不成功: 正在重試" #: ../../../processing/app/Editor.java:2526 msgid "Unable to connect: wrong password?" -msgstr "" +msgstr "無法連接; 錯誤的密碼?" #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" -msgstr "" +msgstr "無法開啟序列監視器" #: Sketch.java:1432 #, java-format msgid "Uncaught exception type: {0}" -msgstr "" +msgstr "Uncaught exception type: {0}" #: Editor.java:1133 Editor.java:1355 msgid "Undo" -msgstr "" +msgstr "復原" #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" "To enable opening URLs or folders, add a \n" "\"launcher=/path/to/app\" line to preferences.txt" -msgstr "" +msgstr "平台未指定,無可用的啟動者。\n若想啟用初始網址或資料夾,\n請在preferences.txt裡加入一行\"launcher=/path/to/app\"" #: UpdateCheck.java:111 msgid "Update" -msgstr "" +msgstr "更新" #: Preferences.java:428 msgid "Update sketch files to new extension on save (.pde -> .ino)" -msgstr "" +msgstr "儲存時更新草稿碼檔案的副檔名(.pde -> .ino)" #: EditorToolbar.java:41 Editor.java:545 msgid "Upload" @@ -1572,61 +1572,61 @@ msgstr "上傳" #: EditorToolbar.java:46 Editor.java:553 msgid "Upload Using Programmer" -msgstr "" +msgstr "以燒錄器上傳" #: Editor.java:2403 Editor.java:2439 msgid "Upload canceled." -msgstr "" +msgstr "上傳動作已取消。" #: ../../../processing/app/Sketch.java:1678 msgid "Upload cancelled" -msgstr "" +msgstr "上傳已取消" #: Editor.java:2378 msgid "Uploading to I/O Board..." -msgstr "" +msgstr "上傳到板子中..." #: Sketch.java:1622 msgid "Uploading..." -msgstr "" +msgstr "上傳中..." #: Editor.java:1269 msgid "Use Selection For Find" -msgstr "" +msgstr "以選取字串進行尋找" #: Preferences.java:409 msgid "Use external editor" -msgstr "" +msgstr "使用外部編輯器" #: ../../../processing/app/debug/Compiler.java:94 #, java-format msgid "Using library {0} in folder: {1} {2}" -msgstr "" +msgstr "在資料夾:{1} {2} 中使用函式庫 {0}" #: ../../../processing/app/debug/Compiler.java:320 #, java-format msgid "Using previously compiled file: {0}" -msgstr "" +msgstr "使用以前編譯的文件:{0}" #: EditorToolbar.java:41 EditorToolbar.java:46 msgid "Verify" -msgstr "" +msgstr "驗證" #: Editor.java:609 msgid "Verify / Compile" -msgstr "" +msgstr "驗證/編譯" #: Preferences.java:400 msgid "Verify code after upload" -msgstr "" +msgstr "上傳後驗證程式碼" #: ../../../processing/app/Preferences.java:154 msgid "Vietnamese" -msgstr "" +msgstr "越南語" #: Editor.java:1105 msgid "Visit Arduino.cc" -msgstr "" +msgstr "拜訪Arduino.cc" #: Base.java:2128 msgid "Warning" @@ -1634,87 +1634,87 @@ msgstr "警告" #: debug/Compiler.java:444 msgid "Wire.receive() has been renamed Wire.read()." -msgstr "" +msgstr "Wire.receive()已改名為Wire.read()。" #: debug/Compiler.java:438 msgid "Wire.send() has been renamed Wire.write()." -msgstr "" +msgstr "Wire.send()已改名為Wire.write()。" #: FindReplace.java:105 msgid "Wrap Around" -msgstr "" +msgstr "繞捲" #: debug/Uploader.java:213 msgid "" "Wrong microcontroller found. Did you select the right board from the Tools " "> Board menu?" -msgstr "" +msgstr "找到錯誤的微控制器,您在選單「工具>板子」裡所選取的板子正確嗎?" #: Preferences.java:77 UpdateCheck.java:108 msgid "Yes" -msgstr "" +msgstr "是" #: Sketch.java:1074 msgid "You can't fool me" -msgstr "" +msgstr "你騙不了我" #: Sketch.java:411 msgid "You can't have a .cpp file with the same name as the sketch." -msgstr "" +msgstr "你不能讓一支.cpp檔擁有與草稿碼相同的名字。" #: Sketch.java:421 msgid "" "You can't rename the sketch to \"{0}\"\n" "because the sketch already has a .cpp file with that name." -msgstr "" +msgstr "你不能將草稿碼重新命名為\"{0}\"\n因為草稿碼裡已經有個擁有該名的.cpp檔。" #: Sketch.java:861 msgid "" "You can't save the sketch as \"{0}\"\n" "because the sketch already has a .cpp file with that name." -msgstr "" +msgstr "你不能將草稿碼存為\"{0}\"\n因為已經有個擁有相同名稱的.cpp檔了。" #: Sketch.java:883 msgid "" "You cannot save the sketch into a folder\n" "inside itself. This would go on forever." -msgstr "" +msgstr "比不能將草稿碼儲存到它自己裡頭的資料夾中,\n這將永無止盡。" #: Base.java:1888 msgid "You forgot your sketchbook" -msgstr "" +msgstr "你忘記你的草稿碼簿了" #: ../../../processing/app/AbstractMonitor.java:92 msgid "" "You've pressed {0} but nothing was sent. Should you select a line ending?" -msgstr "" +msgstr "您按下 {0},但沒有被發送。您想要選擇結尾符號?" #: Base.java:536 msgid "" "You've reached the limit for auto naming of new sketches\n" "for the day. How about going for a walk instead?" -msgstr "" +msgstr "你已經達到一天內可自動命名新草稿碼的限制了,\n何不出去散散步呢?" #: Base.java:2638 msgid "ZIP files or folders" -msgstr "" +msgstr "ZIP檔案或資料夾" #: Base.java:2661 msgid "Zip doesn't contain a library" -msgstr "" +msgstr "Zip並不含有程式庫" #: Sketch.java:364 #, java-format msgid "\".{0}\" is not a valid extension." -msgstr "" +msgstr "\".{0}\"不是合法的副檔名。" #: SketchCode.java:258 #, java-format msgid "" "\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." +"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " +"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" +" bad characters to get rid of this warning." msgstr "" #: debug/Compiler.java:409 @@ -1723,7 +1723,7 @@ msgid "" "As of Arduino 0019, the Ethernet library depends on the SPI library.\n" "You appear to be using it or another library that depends on the SPI library.\n" "\n" -msgstr "" +msgstr "\n從Arduino 0019之後,程式庫Ethernet相依於SPI程式庫。\n您似乎正使用該程式庫,或是別的相依於SPI的程式庫。\n\n" #: debug/Compiler.java:415 msgid "" @@ -1731,145 +1731,145 @@ msgid "" "As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" "Please use Serial.write() instead.\n" "\n" -msgstr "" +msgstr "\n從Arduino 1.0之後,關鍵字'BYTE'已不被支援。\n請改用Serial.write()。\n\n" #: debug/Compiler.java:427 msgid "" "\n" "As of Arduino 1.0, the Client class in the Ethernet library has been renamed to EthernetClient.\n" "\n" -msgstr "" +msgstr "\n從Arduino 1.0以後,程式庫Ethernet裡的類別Client已改名為EthernetClient。\n\n" #: debug/Compiler.java:421 msgid "" "\n" "As of Arduino 1.0, the Server class in the Ethernet library has been renamed to EthernetServer.\n" "\n" -msgstr "" +msgstr "\n從Arduino 1.0以後, 程式庫Ethernet裡的類別Server已改名為EthernetServer。\n" #: debug/Compiler.java:433 msgid "" "\n" "As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n" "\n" -msgstr "" +msgstr "\n從Arduino 1.0以後,程式庫Ethernet裡的類別Udp已改名為EthernetUdp。\n\n" #: debug/Compiler.java:445 msgid "" "\n" "As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n" "\n" -msgstr "" +msgstr "\n從Arduino 1.0以後,為了與其他程式庫保持一致性,Wire.receive()已改名為Wire.read()。\n\n" #: debug/Compiler.java:439 msgid "" "\n" "As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n" "\n" -msgstr "" +msgstr "\n從Arduino 1.0以後,為了與其他程式庫保持一致性,Wire.send()已改名為Wire.write()。\n\n" #: SerialMonitor.java:130 SerialMonitor.java:133 msgid "baud" -msgstr "" +msgstr "baud" #: Preferences.java:389 msgid "compilation " -msgstr "" +msgstr "編譯" #: ../../../processing/app/NetworkMonitor.java:111 msgid "connected!" -msgstr "" +msgstr "已連接!" #: Sketch.java:540 msgid "createNewFile() returned false" -msgstr "" +msgstr "createNewFile()回傳false" #: ../../../processing/app/EditorStatus.java:469 msgid "enabled in File > Preferences." -msgstr "" +msgstr "在檔案 > 偏好設定裡啟用。" #: Base.java:2090 msgid "environment" -msgstr "" +msgstr "開發環境" #: Editor.java:1108 msgid "http://arduino.cc/" -msgstr "" +msgstr "http://arduino.cc/" #: ../../../processing/app/debug/Compiler.java:49 msgid "http://github.com/arduino/Arduino/issues" -msgstr "" +msgstr "http://github.com/arduino/Arduino/issues" #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" -msgstr "" +msgstr "http://www.arduino.cc/en/Main/Software" #: UpdateCheck.java:53 msgid "http://www.arduino.cc/latest.txt" -msgstr "" +msgstr "http://www.arduino.cc/latest.txt" #: Base.java:2075 msgid "http://www.arduino.cc/playground/Learning/Linux" -msgstr "" +msgstr "http://www.arduino.cc/playground/Learning/Linux" #: Preferences.java:625 #, java-format msgid "ignoring invalid font size {0}" -msgstr "" +msgstr "忽略無效的字型大小{0}" #: Base.java:2080 msgid "index.html" -msgstr "" +msgstr "index.html" #: Editor.java:936 Editor.java:943 msgid "name is null" -msgstr "" +msgstr "名稱是空的" #: Base.java:2090 msgid "platforms.html" -msgstr "" +msgstr "platforms.html" #: Serial.java:451 #, java-format msgid "" "readBytesUntil() byte buffer is too small for the {0} bytes up to and " "including char {1}" -msgstr "" +msgstr "對{0} bytes來說,readBytesUntil()緩衝區太小, 直到並包括字元{1}" #: Sketch.java:647 msgid "removeCode: internal error.. could not find code" -msgstr "" +msgstr "removeCode:內部錯誤...找不到程式碼" #: Editor.java:932 msgid "serialMenu is null" -msgstr "" +msgstr "serialMenu是空的" #: debug/Uploader.java:195 #, java-format msgid "" "the selected serial port {0} does not exist or your board is not connected" -msgstr "" +msgstr "選定的序列埠{0}不存在,或是你還沒連接板子。" #: Preferences.java:391 msgid "upload" -msgstr "" +msgstr "上傳" #: Editor.java:380 #, java-format msgid "{0} files added to the sketch." -msgstr "" +msgstr "{0}支檔案被加入到草稿碼中。" #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" -msgstr "" +msgstr "{0}回傳{1}" #: Editor.java:2213 #, java-format msgid "{0} | Arduino {1}" -msgstr "" +msgstr "{0} | Arduino {1}" #: Editor.java:1874 #, java-format msgid "{0}.html" -msgstr "" +msgstr "{0}.html" diff --git a/arduino-core/src/processing/app/i18n/Resources_zh_TW.properties b/arduino-core/src/processing/app/i18n/Resources_zh_TW.properties index 1483df002..9d059ed70 100644 --- a/arduino-core/src/processing/app/i18n/Resources_zh_TW.properties +++ b/arduino-core/src/processing/app/i18n/Resources_zh_TW.properties @@ -3,304 +3,307 @@ # This file is distributed under the same license as the Arduino IDE package. # yehnan <>, 2012. # -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2014-02-19 14\:46+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Chinese (Taiwan) (http\://www.transifex.com/projects/p/arduino-ide-15/language/zh_TW/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: zh_TW\nPlural-Forms\: nplurals\=1; plural\=0;\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Chinese (Taiwan) (http\://www.transifex.com/projects/p/arduino-ide-15/language/zh_TW/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: zh_TW\nPlural-Forms\: nplurals\=1; plural\=0;\n #: Preferences.java:358 Preferences.java:374 -!\ \ (requires\ restart\ of\ Arduino)= +\ \ (requires\ restart\ of\ Arduino)=\uff08\u9700\u8981\u91cd\u65b0\u555f\u52d5Arduino\uff09 #: debug/Compiler.java:455 -!'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo= +'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard'\u53ea\u88abArduino Leonardo\u6240\u652f\u63f4 #: debug/Compiler.java:450 -!'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo= +'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse'\u53ea\u88abArduino Leonardo\u6240\u652f\u63f4 #: Preferences.java:478 -!(edit\ only\ when\ Arduino\ is\ not\ running)= +(edit\ only\ when\ Arduino\ is\ not\ running)=\uff08\u53ea\u80fd\u5728\u672a\u57f7\u884cArduino\u6642\u9032\u884c\u7de8\u8f2f\uff09 #: Sketch.java:746 -!.pde\ ->\ .ino= +.pde\ ->\ .ino=.pde -> .ino #: Base.java:773 -!\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

    Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

    Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= \u4f60\u78ba\u5b9a\u8981\u96e2\u958b\u55ce\uff1f

    \u95dc\u9589\u6700\u5f8c\u4e00\u500b\u8349\u7a3f\u78bc\u5c07\u6703\u96e2\u958bArduino\u3002 #: Editor.java:2053 -!\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Do\ you\ want\ to\ save\ changes\ to\ this\ sketch
    \ before\ closing?

    If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Do\ you\ want\ to\ save\ changes\ to\ this\ sketch
    \ before\ closing?

    If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= \u60a8\u60f3\u8981\u95dc\u9589\u524d\u5132\u5b58\u8b8a\u66f4\u5230\u8349\u7a3f\u78bc\u88e1\u55ce\uff1f

    \u82e5\u4e0d\u5132\u5b58\uff0c\u6240\u6709\u8b8a\u66f4\u5c07\u6703\u907a\u5931\u3002 #: Sketch.java:398 #, java-format -!A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"= +A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=\u540d\u70ba"{0}"\u5df2\u7d93\u5b58\u5728\u65bc"{1}" #: Editor.java:2169 #, java-format -!A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.= +A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=\u540d\u70ba"{0}"\u7684\u8cc7\u6599\u593e\u5df2\u7d93\u5b58\u5728\uff0c\u7121\u6cd5\u958b\u555f\u8349\u7a3f\u78bc\u3002 #: Base.java:2690 #, java-format -!A\ library\ named\ {0}\ already\ exists= +A\ library\ named\ {0}\ already\ exists=\u540d\u70ba{0}\u7684\u7a0b\u5f0f\u5eab\u5df2\u7d93\u5b58\u5728 #: UpdateCheck.java:103 -!A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?= +A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Arduino\u6709\u65b0\u7248\u672c\u3002\n\u4f60\u60f3\u8981\u62dc\u8a2aArduino\u4e0b\u8f09\u9801\u9762\u55ce\uff1f #: EditorConsole.java:153 -!A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.= +A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=\u8a66\u8457\u958b\u555f\u7528\u4f86\u5132\u5b58\u4e3b\u63a7\u53f0\u8f38\u51fa\u7684\u6a94\u6848\u6642\uff0c\n\u767c\u751f\u554f\u984c\u3002 #: Editor.java:1116 -!About\ Arduino= +About\ Arduino=\u95dc\u65bcArduino #: Editor.java:650 -!Add\ File...= +Add\ File...=\u52a0\u5165\u6a94\u6848... #: Base.java:963 -Add\ Library...=\u65b0\u589e\u51fd\u5f0f\u5eab +Add\ Library...=\u532f\u5165\u7a0b\u5f0f\u5eab... #: tools/FixEncoding.java:77 -!An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n= +An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=\u8a66\u8457\u4fee\u6b63\u6a94\u6848\u7de8\u78bc\u6642\u767c\u751f\u932f\u8aa4\u3002\n\u8acb\u4e0d\u8981\u8a66\u8457\u5132\u5b58\u6b64\u8349\u7a3f\u78bc\uff0c\u56e0\u70ba\u53ef\u80fd\u6703\u84cb\u6389\n\u820a\u7248\u672c\uff0c\u8acb\u4ee5\u300c\u958b\u555f\u300d\u91cd\u65b0\u958b\u555f\u8349\u7a3f\u78bc\u7136\u5f8c\u518d\u8a66\u4e00\u6b21\n #: Base.java:228 -!An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.= +An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=\u8a66\u8457\u70ba\u4f60\u7684\u6a5f\u5668\u8f09\u5165\u8207\u5e73\u53f0\u76f8\u95dc\u7684\u7a0b\u5f0f\u78bc\u6642\uff0c\n\u767c\u751f\u4e0d\u660e\u7684\u932f\u8aa4\u3002 #: Preferences.java:85 -!Arabic= +Arabic=\u963f\u62c9\u4f2f\u8a9e #: Preferences.java:86 -!Aragonese= +Aragonese=\u4e9e\u62c9\u5ca1\u8a9e #: tools/Archiver.java:48 -!Archive\ Sketch= +Archive\ Sketch=\u5c01\u5b58\u8349\u7a3f\u78bc #: tools/Archiver.java:109 -!Archive\ sketch\ as\:= +Archive\ sketch\ as\:=\u5c01\u5b58\u8349\u7a3f\u78bc\u70ba\uff1a #: tools/Archiver.java:139 -!Archive\ sketch\ canceled.= +Archive\ sketch\ canceled.=\u5c01\u5b58\u8349\u7a3f\u78bc\u52d5\u4f5c\u5df2\u53d6\u6d88\u3002 #: tools/Archiver.java:75 -!Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.= +Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=\u5c01\u5b58\u8349\u7a3f\u78bc\u7684\u52d5\u4f5c\u5df2\u53d6\u6d88\uff0c\u56e0\u70ba\n\u7121\u6cd5\u6b63\u78ba\u5730\u5132\u5b58\u8349\u7a3f\u78bc\u3002 #: ../../../processing/app/I18n.java:83 -!Arduino\ ARM\ (32-bits)\ Boards= +Arduino\ ARM\ (32-bits)\ Boards=Arduino ARM\uff0832\u4f4d\u5143\uff09\u677f #: ../../../processing/app/I18n.java:82 -!Arduino\ AVR\ Boards= +Arduino\ AVR\ Boards=Arduino AVR\u677f + +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= #: Base.java:1682 -!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.= +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino\u7121\u6cd5\u904b\u884c\uff0c\u56e0\u70ba\u7121\u6cd5\n\u5efa\u7acb\u8cc7\u6599\u593e\u5132\u5b58\u4f60\u7684\u8a2d\u5b9a\u503c\u3002 #: Base.java:1889 -!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.= +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino\u7121\u6cd5\u904b\u884c\uff0c\u56e0\u70ba\u7121\u6cd5\n\u5efa\u7acb\u8cc7\u6599\u593e\u5132\u5b58\u4f60\u7684\u8349\u7a3f\u78bc\u7c3f\u3002 #: Base.java:240 -!Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.= +Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino\u9700\u8981\u5b8c\u6574\u7684JDK\uff08\u4e0d\u50c5\u662fJRE\uff09\n\u624d\u80fd\u904b\u4f5c\uff0c\u8acb\u5b89\u88ddJDK1.5\u6216\u66f4\u65b0\u7248\u672c\u3002\n\u53ef\u5728\u53c3\u8003\u6587\u4ef6\u4e2d\u7372\u5f97\u66f4\u591a\u8a73\u60c5\u3002 #: ../../../processing/app/EditorStatus.java:471 -!Arduino\:\ = +Arduino\:\ =Arduino\: #: Sketch.java:588 #, java-format -!Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?= +Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u4f60\u78ba\u5b9a\u60f3\u8981\u522a\u9664"{0}"\u55ce\uff1f #: Sketch.java:587 -!Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?= +Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u4f60\u78ba\u5b9a\u60f3\u8981\u522a\u9664\u6b64\u8349\u7a3f\u78bc\u55ce\uff1f #: ../../../processing/app/Preferences.java:137 -!Armenian= +Armenian=\u4e9e\u7f8e\u5c3c\u4e9e\u8a9e #: ../../../processing/app/Preferences.java:138 -!Asturian= +Asturian=\u963f\u65af\u5716\u91cc\u4e9e\u65af\u8a9e #: tools/AutoFormat.java:91 -!Auto\ Format= +Auto\ Format=\u81ea\u52d5\u683c\u5f0f\u5316 #: tools/AutoFormat.java:934 -!Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.= +Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=\u81ea\u52d5\u683c\u5f0f\u5316\u7684\u52d5\u4f5c\u5df2\u53d6\u6d88\uff1a\u5de6\u5927\u62ec\u865f\u592a\u591a #: tools/AutoFormat.java:925 -!Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.= +Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=\u81ea\u52d5\u683c\u5f0f\u5316\u7684\u52d5\u4f5c\u5df2\u53d6\u6d88\uff1a\u5de6\u62ec\u865f\u592a\u591a #: tools/AutoFormat.java:931 -!Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.= +Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=\u81ea\u52d5\u683c\u5f0f\u5316\u7684\u52d5\u4f5c\u5df2\u53d6\u6d88\uff1a\u53f3\u5927\u62ec\u865f\u592a\u591a #: tools/AutoFormat.java:922 -!Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.= +Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=\u81ea\u52d5\u683c\u5f0f\u5316\u7684\u52d5\u4f5c\u5df2\u53d6\u6d88\uff1a\u53f3\u62ec\u865f\u592a\u591a #: tools/AutoFormat.java:944 -!Auto\ Format\ finished.= +Auto\ Format\ finished.=\u81ea\u52d5\u683c\u5f0f\u5316\u5b8c\u7562\u3002 #: Preferences.java:439 -!Automatically\ associate\ .ino\ files\ with\ Arduino= +Automatically\ associate\ .ino\ files\ with\ Arduino=\u81ea\u52d5\u5c07.ino\u6a94\u8207Arduino\u95dc\u806f\u8d77\u4f86 #: SerialMonitor.java:110 -!Autoscroll= +Autoscroll=\u81ea\u52d5\u6372\u52d5 #: Editor.java:2619 #, java-format -!Bad\ error\ line\:\ {0}= +Bad\ error\ line\:\ {0}=\u932f\u8aa4\u884c\u865f\uff1a{0} #: Editor.java:2136 -!Bad\ file\ selected= +Bad\ file\ selected=\u9078\u64c7\u4e86\u4e0d\u597d\u7684\u6a94\u6848 #: ../../../processing/app/Preferences.java:139 -!Belarusian= +Belarusian=\u767d\u4fc4\u7f85\u65af\u8a9e #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 -!Board= +Board=\u677f\u5b50 #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format -!Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= +Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=\u677f\u5b50{0}\:{1}\:{2}\u4e26\u6c92\u6709\u5b9a\u7fa9''build.board"\u504f\u597d\u8a2d\u5b9a\u503c\uff0c\u81ea\u52d5\u8a2d\u70ba\uff1a{3} #: ../../../processing/app/EditorStatus.java:472 -!Board\:\ = +Board\:\ =\u677f\u5b50\uff1a #: ../../../processing/app/Preferences.java:140 -!Bosnian= +Bosnian=\u6ce2\u65af\u5c3c\u4e9e\u8a9e #: SerialMonitor.java:112 -!Both\ NL\ &\ CR= +Both\ NL\ &\ CR=NL & CR #: Preferences.java:81 -!Browse= +Browse=\u700f\u89bd #: Sketch.java:1392 Sketch.java:1423 -!Build\ folder\ disappeared\ or\ could\ not\ be\ written= +Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u5efa\u7f6e\u8cc7\u6599\u593e\u6d88\u5931\u4e86\u3001\u6216\u7121\u6cd5\u88ab\u5beb\u5165 #: ../../../processing/app/Preferences.java:80 -!Bulgarian= +Bulgarian=\u4fdd\u52a0\u5229\u4e9e\u8a9e #: ../../../processing/app/Preferences.java:141 -!Burmese\ (Myanmar)= +Burmese\ (Myanmar)=\u7dec\u7538\u8a9e(\u7dec\u7538) #: Editor.java:708 -!Burn\ Bootloader= +Burn\ Bootloader=\u71d2\u9304Bootloader #: Editor.java:2504 -!Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...= +Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u71d2\u9304bootloader\u5230\u677f\u5b50\u88e1\uff08\u53ef\u80fd\u9700\u8981\u5e7e\u5206\u9418\uff09... #: ../../../processing/app/Base.java:368 !Can't\ open\ source\ sketch\!= #: ../../../processing/app/Preferences.java:92 -!Canadian\ French= +Canadian\ French=\u52a0\u62ff\u5927\u6cd5\u8a9e #: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2064 Editor.java:2145 Editor.java:2465 -!Cancel= +Cancel=\u53d6\u6d88 #: Sketch.java:455 -!Cannot\ Rename= +Cannot\ Rename=\u7121\u6cd5\u91cd\u65b0\u547d\u540d #: SerialMonitor.java:112 -!Carriage\ return= +Carriage\ return=CR(carriage return) #: Preferences.java:87 -!Catalan= +Catalan=\u52a0\u6cf0\u9686\u8a9e #: Preferences.java:419 -!Check\ for\ updates\ on\ startup= +Check\ for\ updates\ on\ startup=\u555f\u52d5\u6642\u6aa2\u67e5\u6709\u7121\u66f4\u65b0 #: ../../../processing/app/Preferences.java:142 -!Chinese\ (China)= +Chinese\ (China)=\u4e2d\u6587(\u4e2d\u570b) #: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= +Chinese\ (Hong\ Kong)=\u4e2d\u6587(\u9999\u6e2f) #: ../../../processing/app/Preferences.java:144 -!Chinese\ (Taiwan)= +Chinese\ (Taiwan)=\u4e2d\u6587(\u53f0\u7063) #: ../../../processing/app/Preferences.java:143 -!Chinese\ (Taiwan)\ (Big5)= +Chinese\ (Taiwan)\ (Big5)=\u4e2d\u6587(\u53f0\u7063)(Big5) #: Preferences.java:88 -!Chinese\ Simplified= +Chinese\ Simplified=\u7c21\u9ad4\u4e2d\u6587 #: Preferences.java:89 -!Chinese\ Traditional= +Chinese\ Traditional=\u6b63\u9ad4\u4e2d\u6587 #: Editor.java:521 Editor.java:2024 -!Close= +Close=\u95dc\u9589 #: Editor.java:1208 Editor.java:2749 -!Comment/Uncomment= +Comment/Uncomment=\u8a3b\u89e3\u2215\u79fb\u9664\u8a3b\u89e3 #: debug/Compiler.java:49 debug/Uploader.java:45 #, java-format -!Compiler\ error,\ please\ submit\ this\ code\ to\ {0}= +Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=\u7de8\u8b6f\u5668\u932f\u8aa4\uff0c\u8acb\u5c07\u6b64\u7a0b\u5f0f\u78bc\u63d0\u4ea4\u5230{0} #: Sketch.java:1608 Editor.java:1890 -!Compiling\ sketch...= +Compiling\ sketch...=\u7de8\u8b6f\u8349\u7a3f\u78bc\u4e2d... #: EditorConsole.java:152 -!Console\ Error= +Console\ Error=\u4e3b\u63a7\u53f0\u932f\u8aa4 #: Editor.java:1157 Editor.java:2707 -!Copy= +Copy=\u8907\u88fd #: Editor.java:1177 Editor.java:2723 -!Copy\ as\ HTML= +Copy\ as\ HTML=\u7576\u505aHTML\u9032\u884c\u8907\u88fd #: ../../../processing/app/EditorStatus.java:455 -!Copy\ error\ messages= +Copy\ error\ messages=\u8907\u5236\u932f\u8aa4\u8a0a\u606f #: Editor.java:1165 Editor.java:2715 -!Copy\ for\ Forum= +Copy\ for\ Forum=\u70ba\u4e86\u8ad6\u58c7\u9032\u884c\u8907\u88fd #: Sketch.java:1089 #, java-format -!Could\ not\ add\ ''{0}''\ to\ the\ sketch.= +Could\ not\ add\ ''{0}''\ to\ the\ sketch.=\u7121\u6cd5\u52a0\u5165''{0}''\u5230\u8349\u7a3f\u78bc\u88e1\u3002 #: Editor.java:2188 -!Could\ not\ copy\ to\ a\ proper\ location.= +Could\ not\ copy\ to\ a\ proper\ location.=\u7121\u6cd5\u8907\u88fd\u5230\u9069\u7576\u7684\u4f4d\u7f6e\u3002 #: Editor.java:2179 -!Could\ not\ create\ the\ sketch\ folder.= +Could\ not\ create\ the\ sketch\ folder.=\u7121\u6cd5\u5efa\u7acb\u8349\u7a3f\u78bc\u8cc7\u6599\u593e\u3002 #: Editor.java:2206 -!Could\ not\ create\ the\ sketch.= +Could\ not\ create\ the\ sketch.=\u7121\u6cd5\u5efa\u7acb\u8349\u7a3f\u78bc\u3002 #: Sketch.java:617 #, java-format -!Could\ not\ delete\ "{0}".= +Could\ not\ delete\ "{0}".=\u7121\u6cd5\u522a\u9664"{0}"\u3002 #: Sketch.java:1066 #, java-format -!Could\ not\ delete\ the\ existing\ ''{0}''\ file.= +Could\ not\ delete\ the\ existing\ ''{0}''\ file.=\u7121\u6cd5\u522a\u9664''{0}''\u6a94 #: Base.java:2533 Base.java:2556 #, java-format -!Could\ not\ delete\ {0}= +Could\ not\ delete\ {0}=\u7121\u6cd5\u522a\u9664{0} #: ../../../processing/app/debug/TargetPlatform.java:74 #, java-format -!Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?= +Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?=\u5728{0}\u88e1\u627e\u4e0d\u5230boards.txt\u3002\u9019\u662f1.5\u4e4b\u524d\u7684\u7248\u672c\u55ce\uff1f #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 #, java-format -!Could\ not\ find\ tool\ {0}= +Could\ not\ find\ tool\ {0}=\u627e\u4e0d\u5230\u5de5\u5177{0} #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 #, java-format -!Could\ not\ find\ tool\ {0}\ from\ package\ {1}= +Could\ not\ find\ tool\ {0}\ from\ package\ {1}=\u5728\u5f9e\u5957\u4ef6{1}\u88e1\u627e\u4e0d\u5230\u5de5\u5177{0} #: Base.java:1934 #, java-format -!Could\ not\ open\ the\ URL\n{0}= +Could\ not\ open\ the\ URL\n{0}=\u7121\u6cd5\u958b\u555f\u7db2\u5740\n{0} #: Base.java:1958 #, java-format -!Could\ not\ open\ the\ folder\n{0}= +Could\ not\ open\ the\ folder\n{0}=\u7121\u6cd5\u958b\u555f\u8cc7\u6599\u593e\n{0} #: Sketch.java:1769 -!Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.= +Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=\u7121\u6cd5\u9069\u7576\u5730\u91cd\u65b0\u5132\u5b58\u8349\u7a3f\u78bc\u3002\u4f60\u5728\u6b64\u61c9\u78b0\u4e0a\u554f\u984c\u4e86\uff0c\n\u6216\u8a31\u8a72\u8907\u88fd\u8cbc\u4e0a\u7a0b\u5f0f\u78bc\u5230\u5225\u7684\u6587\u5b57\u7de8\u8f2f\u5668\u88e1\u3002 #: Sketch.java:1768 -!Could\ not\ re-save\ sketch= +Could\ not\ re-save\ sketch=\u7121\u6cd5\u91cd\u65b0\u5132\u5b58\u8349\u7a3f\u78bc #: Theme.java:52 !Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= #: Preferences.java:219 -!Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= +Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u7121\u6cd5\u8b80\u53d6\u9810\u8a2d\u8a2d\u5b9a\u3002\n\u4f60\u5fc5\u9808\u91cd\u65b0\u5b89\u88ddArduino\u3002 #: Preferences.java:258 #, java-format @@ -308,105 +311,105 @@ Add\ Library...=\u65b0\u589e\u51fd\u5f0f\u5eab #: Base.java:2482 #, java-format -!Could\ not\ remove\ old\ version\ of\ {0}= +Could\ not\ remove\ old\ version\ of\ {0}=\u7121\u6cd5\u79fb\u9664{0}\u7684\u820a\u7248\u672c #: Sketch.java:483 Sketch.java:528 #, java-format -!Could\ not\ rename\ "{0}"\ to\ "{1}"= +Could\ not\ rename\ "{0}"\ to\ "{1}"=\u7121\u6cd5\u5c07"{0}"\u91cd\u65b0\u547d\u540d\u70ba"{1}" #: Sketch.java:475 -!Could\ not\ rename\ the\ sketch.\ (0)= +Could\ not\ rename\ the\ sketch.\ (0)=\u7121\u6cd5\u91cd\u65b0\u547d\u540d\u8349\u7a3f\u78bc\u3002(0) #: Sketch.java:496 -!Could\ not\ rename\ the\ sketch.\ (1)= +Could\ not\ rename\ the\ sketch.\ (1)=\u7121\u6cd5\u91cd\u65b0\u547d\u540d\u8349\u7a3f\u78bc\u3002(1) #: Sketch.java:503 -!Could\ not\ rename\ the\ sketch.\ (2)= +Could\ not\ rename\ the\ sketch.\ (2)=\u7121\u6cd5\u91cd\u65b0\u547d\u540d\u8349\u7a3f\u78bc\u3002(2) #: Base.java:2492 #, java-format -!Could\ not\ replace\ {0}= +Could\ not\ replace\ {0}=\u7121\u6cd5\u53d6\u4ee3{0} #: tools/Archiver.java:74 -!Couldn't\ archive\ sketch= +Couldn't\ archive\ sketch=\u7121\u6cd5\u5c01\u5b58\u8349\u7a3f\u78bc #: Sketch.java:1647 -!Couldn't\ determine\ program\ size\:\ {0}= +Couldn't\ determine\ program\ size\:\ {0}=\u7121\u6cd5\u5f97\u77e5\u7a0b\u5f0f\u5927\u5c0f\uff1a{0} #: Sketch.java:616 -!Couldn't\ do\ it= +Couldn't\ do\ it=\u7121\u6cd5\u5b8c\u6210\u52d5\u4f5c #: debug/BasicUploader.java:209 -!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.= +Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=\u7121\u6cd5\u5728\u9078\u5b9a\u7684\u50b3\u8f38\u57e0\u4e0a\u627e\u5230\u677f\u5b50\uff0c\u8acb\u6aa2\u67e5\u60a8\u8a2d\u5b9a\u7684\u57e0\u865f\u662f\u5426\u6b63\u78ba\uff0c\u82e5\u6b63\u78ba\uff0c\u8acb\u8a66\u8457\u5728\u555f\u52d5\u4e0a\u50b3\u5f8c\u6309\u4e0b\u677f\u5b50\u7684\u91cd\u7f6e\u9375\u3002 #: ../../../processing/app/Preferences.java:82 -!Croatian= +Croatian=\u514b\u7f85\u5730\u4e9e\u8a9e #: Editor.java:1149 Editor.java:2699 -!Cut= +Cut=\u526a\u4e0b #: ../../../processing/app/Preferences.java:83 -!Czech= +Czech=\u6377\u514b\u8a9e #: Preferences.java:90 -!Danish= +Danish=\u4e39\u9ea5\u8a9e #: Editor.java:1224 Editor.java:2765 -!Decrease\ Indent= +Decrease\ Indent=\u6e1b\u5c11\u7e2e\u6392\u6df1\u5ea6 #: EditorHeader.java:314 Sketch.java:591 -!Delete= +Delete=\u522a\u9664 #: debug/Uploader.java:199 -!Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting= +Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=\u88dd\u7f6e\u7121\u56de\u61c9\uff0c\u8acb\u6aa2\u67e5\u662f\u5426\u9078\u53d6\u6b63\u78ba\u7684\u5e8f\u5217\u57e0\uff0c\u6216\u662f\u5728\u532f\u51fa\u4e4b\u524d\u91cd\u7f6e\u677f\u5b50 #: tools/FixEncoding.java:57 -!Discard\ all\ changes\ and\ reload\ sketch?= +Discard\ all\ changes\ and\ reload\ sketch?=\u653e\u68c4\u6240\u6709\u8b8a\u66f4\u4e26\u91cd\u65b0\u8f09\u5165\u8349\u7a3f\u78bc\uff1f #: ../../../processing/app/Preferences.java:438 -!Display\ line\ numbers= +Display\ line\ numbers=\u986f\u793a\u884c\u6578 #: Editor.java:2064 -!Don't\ Save= +Don't\ Save=\u4e0d\u8981\u5132\u5b58 #: Editor.java:2275 Editor.java:2311 -!Done\ Saving.= +Done\ Saving.=\u5132\u5b58\u5b8c\u7562 #: Editor.java:2510 -!Done\ burning\ bootloader.= +Done\ burning\ bootloader.=bootloader\u71d2\u9304\u5b8c\u7562\u3002 #: Editor.java:1911 Editor.java:1928 -!Done\ compiling.= +Done\ compiling.=\u7de8\u8b6f\u5b8c\u7562\u3002 #: Editor.java:2564 -!Done\ printing.= +Done\ printing.=\u5217\u5370\u5b8c\u7562\u3002 #: Editor.java:2395 Editor.java:2431 -!Done\ uploading.= +Done\ uploading.=\u4e0a\u50b3\u5b8c\u7562\u3002 #: Preferences.java:91 -!Dutch= +Dutch=\u8377\u862d\u8a9e #: ../../../processing/app/Preferences.java:144 -!Dutch\ (Netherlands)= +Dutch\ (Netherlands)=\u8377\u862d\u8a9e(\u8377\u862d) #: Editor.java:1130 -!Edit= +Edit=\u7de8\u8f2f #: Preferences.java:370 -!Editor\ font\ size\:\ = +Editor\ font\ size\:\ =\u7de8\u8f2f\u5668\u5b57\u578b\u5927\u5c0f\uff1a #: Preferences.java:353 -!Editor\ language\:\ = +Editor\ language\:\ =\u7de8\u8f2f\u5668\u8a9e\u8a00\uff1a #: Preferences.java:92 -!English= +English=\u82f1\u8a9e #: ../../../processing/app/Preferences.java:145 -!English\ (United\ Kingdom)= +English\ (United\ Kingdom)=\u82f1\u8a9e(\u82f1\u570b) #: Editor.java:1062 -!Environment= +Environment=\u958b\u767c\u74b0\u5883 #: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481 #: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543 @@ -414,492 +417,489 @@ Add\ Library...=\u65b0\u589e\u51fd\u5f0f\u5eab Error=\u932f\u8aa4 #: Sketch.java:1065 Sketch.java:1088 -!Error\ adding\ file= +Error\ adding\ file=\u52a0\u5165\u6a94\u6848\u6642\u767c\u751f\u932f\u8aa4 #: debug/Compiler.java:369 -!Error\ compiling.= +Error\ compiling.=\u7de8\u8b6f\u6642\u767c\u751f\u932f\u8aa4 #: Base.java:1674 -!Error\ getting\ the\ Arduino\ data\ folder.= +Error\ getting\ the\ Arduino\ data\ folder.=\u53d6\u5f97Arduino\u8cc7\u6599\u76ee\u9304\u6642\u767c\u751f\u932f\u8aa4 #: Serial.java:593 #, java-format -!Error\ inside\ Serial.{0}()= +Error\ inside\ Serial.{0}()=\u5728Serial.{0}()\u88e1\u767c\u751f\u932f\u8aa4 #: ../../../processing/app/Base.java:1232 -!Error\ loading\ libraries= +Error\ loading\ libraries=\u8f09\u5165\u7a0b\u5f0f\u5eab\u6642\u767c\u751f\u932f\u8aa4 #: ../../../processing/app/debug/TargetPlatform.java:95 #: ../../../processing/app/debug/TargetPlatform.java:106 #: ../../../processing/app/debug/TargetPlatform.java:117 #, java-format -!Error\ loading\ {0}= +Error\ loading\ {0}=\u8f09\u5165{0}\u6642\u767c\u751f\u932f\u8aa4 #: Serial.java:181 #, java-format -!Error\ opening\ serial\ port\ ''{0}''.= +Error\ opening\ serial\ port\ ''{0}''.=\u958b\u555f\u5e8f\u5217\u57e0''{0}''\u6642\u767c\u751f\u932f\u8aa4\u3002 #: Preferences.java:277 -!Error\ reading\ preferences= +Error\ reading\ preferences=\u8b80\u53d6\u504f\u597d\u8a2d\u5b9a\u6642\u767c\u751f\u932f\u8aa4 #: Preferences.java:279 #, java-format -!Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.= +Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=\u8b80\u53d6\u504f\u597d\u8a2d\u5b9a\u6a94\u6642\u767c\u751f\u932f\u8aa4\u3002\u8acb\u522a\u9664\uff08\u6216\u79fb\u8d70\uff09\n{0}\u4e26\u91cd\u65b0\u555f\u52d5Arduino #: ../../../cc/arduino/packages/DiscoveryManager.java:25 !Error\ starting\ discovery\ method\:\ = #: Serial.java:125 #, java-format -!Error\ touching\ serial\ port\ ''{0}''.= +Error\ touching\ serial\ port\ ''{0}''.=\u4f7f\u7528\u5e8f\u5217\u57e0''{0}''\u6642\u767c\u751f\u932f\u8aa4\u3002 #: Editor.java:2512 Editor.java:2516 Editor.java:2520 -!Error\ while\ burning\ bootloader.= +Error\ while\ burning\ bootloader.=\u71d2\u9304bootloader\u6642\u767c\u751f\u932f\u8aa4\u3002 #: ../../../processing/app/Editor.java:2555 -!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=\u71d2\u9304bootloader\u6642\u767c\u751f\u932f\u8aa4\uff1a\u7f3a\u5c11\u914d\u7f6e\u53c3\u6578 '{0}' #: SketchCode.java:83 #, java-format -!Error\ while\ loading\ code\ {0}= +Error\ while\ loading\ code\ {0}=\u8f09\u5165\u7a0b\u5f0f\u78bc{0}\u6642\u767c\u751f\u932f\u8aa4 #: Editor.java:2567 -!Error\ while\ printing.= +Error\ while\ printing.=\u5217\u5370\u6642\u767c\u751f\u932f\u8aa4\u3002 #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 -!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= +Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=\u4e0a\u50b3\u6642\u767c\u751f\u932f\u8aa4\uff1a\u7f3a\u5c11\u7d50\u69cb\u53c3\u6578\u201c{0}\u201d #: Preferences.java:93 -!Estonian= +Estonian=\u611b\u6c99\u5c3c\u4e9e\u8a9e #: ../../../processing/app/Preferences.java:146 -!Estonian\ (Estonia)= +Estonian\ (Estonia)=\u611b\u6c99\u5c3c\u4e9e\u8a9e(\u611b\u6c99\u5c3c\u4e9e) #: Editor.java:516 -!Examples= +Examples=\u7bc4\u4f8b #: Editor.java:2482 -!Export\ canceled,\ changes\ must\ first\ be\ saved.= +Export\ canceled,\ changes\ must\ first\ be\ saved.=\u532f\u51fa\u52d5\u4f5c\u5df2\u53d6\u6d88\uff0c\u5fc5\u9808\u5148\u5132\u5b58\u8b8a\u66f4\u3002 #: Base.java:2100 -!FAQ.html= +FAQ.html=FAQ.html #: Editor.java:491 -!File= +File=\u6a94\u6848 #: Preferences.java:94 -!Filipino= +Filipino=\u83f2\u5f8b\u8cd3\u8a9e #: FindReplace.java:124 FindReplace.java:127 Find=\u5c0b\u627e #: Editor.java:1249 -!Find\ Next= +Find\ Next=\u627e\u4e0b\u4e00\u500b #: Editor.java:1259 -!Find\ Previous= +Find\ Previous=\u627e\u4e0a\u4e00\u500b #: Editor.java:1086 Editor.java:2775 -!Find\ in\ Reference= +Find\ in\ Reference=\u5728\u53c3\u8003\u6587\u4ef6\u88e1\u5c0b\u627e #: Editor.java:1234 -!Find...= +Find...=\u5c0b\u627e... #: FindReplace.java:80 -!Find\:= +Find\:=\u5c0b\u627e\: #: ../../../processing/app/Preferences.java:147 -!Finnish= +Finnish=\u5b8c\u6210 #: tools/FixEncoding.java:41 tools/FixEncoding.java:58 #: tools/FixEncoding.java:79 -!Fix\ Encoding\ &\ Reload= +Fix\ Encoding\ &\ Reload=\u4fee\u6b63\u7de8\u78bc\u4e26\u91cd\u65b0\u8f09\u5165 #: Base.java:1851 -!For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n= +For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=\u95dc\u65bc\u5b89\u88dd\u7a0b\u5f0f\u5eab\u7684\u7d30\u7bc0\uff0c\u8acb\u898bhttp\://arduino.cc/en/Guide/Libraries\u3002\n #: debug/BasicUploader.java:80 -!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ = +Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =\u5f37\u8feb\u91cd\u7f6e\uff0c1200bps\u958b\u555f\u2215\u95dc\u9589\u50b3\u8f38\u57e0 #: Preferences.java:95 -!French= +French=\u6cd5\u8a9e #: Editor.java:1097 -!Frequently\ Asked\ Questions= +Frequently\ Asked\ Questions=\u5e38\u898b\u554f\u7b54\u96c6 #: Preferences.java:96 -!Galician= +Galician=\u52a0\u5229\u897f\u4e9e\u8a9e #: ../../../processing/app/Preferences.java:94 -!Georgian= +Georgian=\u55ac\u6cbb\u4e9e\u8a9e #: Preferences.java:97 -!German= +German=\u5fb7\u8a9e #: Editor.java:1054 -!Getting\ Started= +Getting\ Started=\u5165\u9580\u624b\u518a #: ../../../processing/app/Sketch.java:1646 #, java-format -!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.= +Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=\u5168\u57df\u8b8a\u6578\u4f7f\u7528\u4e86 {0} bytes ({2}%%) \u52d5\u614b\u8a18\u61b6\u9ad4\uff0c\u5269\u9918 {3} bytes \u7684\u5c40\u90e8\u8b8a\u6578\u3002\u6700\u5927\u503c\u70ba {1} bytes \u3002 #: ../../../processing/app/Sketch.java:1651 #, java-format -!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.= +Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=\u5168\u57df\u8b8a\u6578\u4f7f\u7528\u4e86 {0} bytes \u52d5\u614b\u5167\u5b58\u3002 #: Preferences.java:98 -!Greek= +Greek=\u5e0c\u81d8\u8a9e #: Base.java:2085 -!Guide_Environment.html= +Guide_Environment.html=Guide_Environment.html #: Base.java:2071 -!Guide_MacOSX.html= +Guide_MacOSX.html=Guide_MacOSX.html #: Base.java:2095 -!Guide_Troubleshooting.html= +Guide_Troubleshooting.html=Guide_Troubleshooting.html #: Base.java:2073 -!Guide_Windows.html= +Guide_Windows.html=Guide_Windows.html #: ../../../processing/app/Preferences.java:95 -!Hebrew= +Hebrew=\u5e0c\u4f2f\u4f86\u8a9e #: Editor.java:1015 -!Help= +Help=\u8aaa\u660e #: Preferences.java:99 -!Hindi= +Hindi=\u5370\u5ea6\u8a9e #: Sketch.java:295 -!How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?= +How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=\u5728\u8a66\u8457\u91cd\u65b0\u547d\u540d\u524d\n\u8981\u4e0d\u8981\u5148\u5132\u5b58\u8349\u7a3f\u78bc\u5462\uff1f #: Sketch.java:882 -!How\ very\ Borges\ of\ you= +How\ very\ Borges\ of\ you=\u8ab0\u4eba\u6bd4\u4f60\u66f4\u7672\u72c2 #: Preferences.java:100 -!Hungarian= +Hungarian=\u5308\u7259\u5229\u8a9e #: FindReplace.java:96 -!Ignore\ Case= +Ignore\ Case=\u5ffd\u7565\u5927\u5c0f\u5beb #: Base.java:1058 -!Ignoring\ bad\ library\ name= +Ignoring\ bad\ library\ name=\u5ffd\u7565\u4e0d\u597d\u7684\u7a0b\u5f0f\u5eab\u540d\u7a31 #: Base.java:1436 -!Ignoring\ sketch\ with\ bad\ name= +Ignoring\ sketch\ with\ bad\ name=\u5ffd\u7565\u64c1\u6709\u4e0d\u597d\u540d\u7a31\u7684\u8349\u7a3f\u78bc #: Editor.java:636 -!Import\ Library...= +Import\ Library...=\u532f\u5165\u7a0b\u5f0f\u5eab... #: ../../../processing/app/Sketch.java:736 -!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?= +In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=\u81ea\u5f9eArduino 1.0\u4e4b\u5f8c\uff0c\u9810\u8a2d\u526f\u6a94\u540d\u5df2\u5f9e\n.pde\u6539\u70ba.ino\u3002\u65b0\u8349\u7a3f\u78bc\uff08\u5305\u62ec\u4ee5"\u53e6\u5b58\u65b0\u6a94"\u6240\n\u5efa\u7acb\u7684\uff09\u5c07\u6703\u4f7f\u7528\u65b0\u7684\u526f\u6a94\u540d\uff0c\u539f\u6709\u7684\u8349\u7a3f\u78bc\n\u5c07\u6703\u5728\u5132\u5b58\u6642\u66f4\u65b0\u9644\u6a94\u540d\uff0c\u4f46\u60a8\u53ef\u5728\u504f\u597d\u8a2d\u5b9a\u88e1\n\u53d6\u6d88\u6b64\u529f\u80fd\u3002\n\n\u5132\u5b58\u8349\u7a3f\u78bc\u4e26\u66f4\u65b0\u526f\u6a94\u540d\uff1f #: Editor.java:1216 Editor.java:2757 -!Increase\ Indent= +Increase\ Indent=\u589e\u52a0\u7e2e\u6392\u6df1\u5ea6 #: Preferences.java:101 -!Indonesian= +Indonesian=\u5370\u5c3c\u8a9e #: ../../../processing/app/Base.java:1204 #, java-format -!Invalid\ library\ found\ in\ {0}\:\ {1}= +Invalid\ library\ found\ in\ {0}\:\ {1}=\u5728{0}\: {1}\u88e1\u627e\u5230\u7121\u6548\u7684\u7a0b\u5f0f\u5eab #: Preferences.java:102 -!Italian= +Italian=\u610f\u5927\u5229\u8a9e #: Preferences.java:103 -!Japanese= +Japanese=\u65e5\u8a9e #: Preferences.java:104 -!Korean= +Korean=\u97d3\u8a9e #: Preferences.java:105 -!Latvian= +Latvian=\u62c9\u812b\u7dad\u4e9e\u8a9e #: Base.java:2699 -!Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu= +Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=\u7a0b\u5f0f\u5eab\u5df2\u52a0\u5165\uff0c\u8acb\u6aa2\u67e5\u300c\u532f\u5165\u7a0b\u5f0f\u5eab\u300d\u9078\u55ae #: Preferences.java:106 -!Lithuaninan= +Lithuaninan=\u7acb\u9676\u5b9b\u8a9e #: ../../../processing/app/Sketch.java:1660 -!Low\ memory\ available,\ stability\ problems\ may\ occur= +Low\ memory\ available,\ stability\ problems\ may\ occur=\u53ef\u7528\u8a18\u61b6\u9ad4\u4f4e\u4e0b\uff0c\u53ef\u80fd\u767c\u751f\u7a69\u5b9a\u6027\u554f\u984c #: Preferences.java:107 -!Marathi= +Marathi=\u99ac\u62c9\u5730\u8a9e #: Base.java:2112 Message=\u8a0a\u606f #: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=\u8a3b\u91cb\u7d50\u5c3e\u7f3a\u5c11*/ #: Preferences.java:449 -!More\ preferences\ can\ be\ edited\ directly\ in\ the\ file= +More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\u5728\u504f\u597d\u8a2d\u5b9a\u6a94\u88e1\u9084\u6709\u66f4\u591a\u8a2d\u5b9a\u503c\u53ef\u76f4\u63a5\u7de8\u8f2f #: Editor.java:2156 -!Moving= +Moving=\u79fb\u52d5\u4e2d #: Sketch.java:282 -!Name\ for\ new\ file\:= +Name\ for\ new\ file\:=\u65b0\u6a94\u6848\u7684\u540d\u5b57\uff1a #: ../../../processing/app/Preferences.java:149 -!Nepali= +Nepali=\u5c3c\u6cca\u723e\u8a9e #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 -!Network\ upload\ using\ programmer\ not\ supported= +Network\ upload\ using\ programmer\ not\ supported=\u7de8\u7a0b\u5668\u4e0d\u652f\u63f4\u4f7f\u7528\u7db2\u7d61\u4e0a\u50b3 #: EditorToolbar.java:41 Editor.java:493 -!New= +New=\u65b0\u589e #: EditorToolbar.java:46 -!New\ Editor\ Window= +New\ Editor\ Window=\u65b0\u7de8\u8f2f\u5668\u8996\u7a97 #: EditorHeader.java:292 -!New\ Tab= +New\ Tab=\u65b0\u589e\u6a19\u7c64 #: SerialMonitor.java:112 -!Newline= +Newline=NL(newline) #: EditorHeader.java:340 -!Next\ Tab= +Next\ Tab=\u4e0b\u4e00\u500b\u6a19\u7c64 #: Preferences.java:78 UpdateCheck.java:108 -!No= +No=\u5426 #: debug/Compiler.java:126 -!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.= +No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u6c92\u6709\u9078\u64c7\u677f\u5b50\uff1b\u8acb\u5f9e\u300c\u5de5\u5177>\u677f\u5b50\u300d\u9078\u55ae\u88e1\u9078\u64c7\u677f\u5b50 #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 -!No\ changes\ necessary\ for\ Auto\ Format.= +No\ changes\ necessary\ for\ Auto\ Format.=\u81ea\u52d5\u683c\u5f0f\u5316\u4e26\u4e0d\u9700\u8981\u505a\u51fa\u66f4\u52d5 #: Editor.java:373 -!No\ files\ were\ added\ to\ the\ sketch.= +No\ files\ were\ added\ to\ the\ sketch.=\u6c92\u6709\u6a94\u6848\u88ab\u52a0\u5165\u8349\u7a3f\u78bc\u4e2d\u3002 #: Platform.java:167 -!No\ launcher\ available= +No\ launcher\ available=\u7121\u53ef\u7528\u7684\u555f\u52d5\u8005\u3002 #: SerialMonitor.java:112 -!No\ line\ ending= +No\ line\ ending=\u6c92\u6709\u884c\u7d50\u5c3e #: Base.java:541 -!No\ really,\ time\ for\ some\ fresh\ air\ for\ you.= +No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u6211\u8aaa\u771f\u7684\uff0c\u8a72\u662f\u547c\u5438\u65b0\u9bae\u7a7a\u6c23\u7684\u6642\u5019\u4e86\u3002 #: Editor.java:1872 #, java-format -!No\ reference\ available\ for\ "{0}"= +No\ reference\ available\ for\ "{0}"=\u95dc\u65bc"{0}"\u4e26\u7121\u53c3\u8003\u6587\u4ef6 #: ../../../processing/app/Base.java:309 -!No\ valid\ configured\ cores\ found\!\ Exiting...= +No\ valid\ configured\ cores\ found\!\ Exiting...=\u627e\u4e0d\u5230\u6709\u6548\u4e26\u8a2d\u5b9a\u7d44\u614b\u904e\u7684\u6838\u5fc3\uff01\u96e2\u958b... #: ../../../processing/app/debug/TargetPackage.java:63 #, java-format -!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.= +No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=\u5728\u6587\u4ef6\u593e\u4e2d\u627e\u4e0d\u5230\u4efb\u4f55\u6709\u6548\u7684\u786c\u9ad4\u5b9a\u7fa9{0}\u3002 #: Base.java:191 -!Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.= +Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=\u8a2d\u5b9a\u5916\u89c0\u8207\u611f\u89ba\u6642\u767c\u751f\u975e\u91cd\u5927\u7684\u932f\u8aa4\u3002 #: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859 -!Nope= +Nope=\u4e0d\u8981 #: ../../../processing/app/Preferences.java:108 -!Norwegian\ Bokm\u00e5l= +Norwegian\ Bokm\u00e5l=\u5df4\u514b\u6469\u632a\u5a01\u8a9e #: ../../../processing/app/Sketch.java:1656 -!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.= +Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=\u8a18\u61b6\u9ad4\u4e0d\u8db3\uff1b\u8acb\u898bhttp\://www.arduino.cc/en/Guide/Troubleshooting\#size\u5f97\u77e5\u5982\u4f55\u964d\u4f4e\u7528\u91cf\u7684\u6280\u5de7\uff1f #: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2145 Editor.java:2465 -!OK= +OK=\u597d #: Sketch.java:992 Editor.java:376 -!One\ file\ added\ to\ the\ sketch.= +One\ file\ added\ to\ the\ sketch.=\u4e00\u652f\u6a94\u6848\u5df2\u52a0\u5165\u8349\u7a3f\u78bc\u3002 #: EditorToolbar.java:41 -!Open= +Open=\u958b\u555f #: Editor.java:2688 -!Open\ URL= +Open\ URL=\u958b\u555f\u7db2\u5740 #: Base.java:636 -!Open\ an\ Arduino\ sketch...= +Open\ an\ Arduino\ sketch...=\u958b\u555fArduino\u8349\u7a3f\u78bc... #: EditorToolbar.java:46 -!Open\ in\ Another\ Window= +Open\ in\ Another\ Window=\u5728\u53e6\u4e00\u500b\u8996\u7a97\u88e1\u958b\u555f #: Base.java:903 Editor.java:501 Open...=\u958b\u555f... #: Editor.java:563 -!Page\ Setup= +Page\ Setup=\u9801\u9762\u8a2d\u5b9a #: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 -!Password\:= +Password\:=\u5bc6\u78bc\: #: Editor.java:1189 Editor.java:2731 -!Paste= +Paste=\u8cbc\u4e0a #: Preferences.java:109 -!Persian= +Persian=\u6ce2\u65af\u8a9e #: debug/Compiler.java:408 -!Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= +Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=\u8acb\u5f9e\u9078\u55ae\u300c\u8349\u7a3f\u78bc>\u532f\u5165\u7a0b\u5f0f\u5eab\u300d\u532f\u5165SPI\u7a0b\u5f0f\u5eab\u3002 #: Base.java:239 -!Please\ install\ JDK\ 1.5\ or\ later= +Please\ install\ JDK\ 1.5\ or\ later=\u8acb\u5b89\u88ddJDK 1.5\u6216\u66f4\u65b0\u7684\u7248\u672c #: Preferences.java:110 -!Polish= +Polish=\u6ce2\u862d\u8a9e #: ../../../processing/app/Editor.java:718 -!Port= +Port=\u5e8f\u5217\u57e0 #: ../../../processing/app/Preferences.java:151 -!Portugese= +Portugese=\u8461\u8404\u7259\u8a9e #: ../../../processing/app/Preferences.java:127 -!Portuguese\ (Brazil)= +Portuguese\ (Brazil)=\u8461\u8404\u7259\u8a9e(\u5df4\u897f) #: ../../../processing/app/Preferences.java:128 -!Portuguese\ (Portugal)= +Portuguese\ (Portugal)=\u8461\u8404\u7259\u8a9e(\u8461\u8404\u7259) #: Preferences.java:295 Editor.java:583 -!Preferences= +Preferences=\u504f\u597d\u8a2d\u5b9a #: FindReplace.java:123 FindReplace.java:128 -!Previous= +Previous=\u524d\u4e00\u500b #: EditorHeader.java:326 -!Previous\ Tab= +Previous\ Tab=\u4e0a\u4e00\u500b\u6a19\u7c64 #: Editor.java:571 -!Print= +Print=\u5217\u5370 #: Editor.java:2571 -!Printing\ canceled.= +Printing\ canceled.=\u5217\u5370\u52d5\u4f5c\u5df2\u53d6\u6d88\u3002 #: Editor.java:2547 -!Printing...= +Printing...=\u5217\u5370\u4e2d... #: Base.java:1957 -!Problem\ Opening\ Folder= +Problem\ Opening\ Folder=\u958b\u555f\u8cc7\u6599\u593e\u6642\u767c\u751f\u554f\u984c #: Base.java:1933 -!Problem\ Opening\ URL= +Problem\ Opening\ URL=\u958b\u555f\u7db2\u5740\u6642\u767c\u751f\u554f\u984c #: Base.java:227 -!Problem\ Setting\ the\ Platform= +Problem\ Setting\ the\ Platform=\u8a2d\u5b9a\u5e73\u53f0\u6642\u767c\u751f\u554f\u984c #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 -!Problem\ accessing\ board\ folder\ /www/sd= +Problem\ accessing\ board\ folder\ /www/sd=\u5b58\u53d6\u677f\u5b50\u7684\u8cc7\u6599\u593e/www/sd\u6642\u767c\u751f\u554f\u984c #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 -!Problem\ accessing\ files\ in\ folder\ = +Problem\ accessing\ files\ in\ folder\ =\u5b58\u53d6\u8cc7\u6599\u593e\u4e2d\u7684\u6587\u4ef6\u6642\u767c\u751f\u554f\u984c #: Base.java:1673 -!Problem\ getting\ data\ folder= +Problem\ getting\ data\ folder=\u53d6\u5f97\u8cc7\u6599\u76ee\u9304\u6642\u767c\u751f\u554f\u984c #: Sketch.java:1467 #, java-format -!Problem\ moving\ {0}\ to\ the\ build\ folder= +Problem\ moving\ {0}\ to\ the\ build\ folder=\u642c\u79fb{0}\u5230\u5efa\u7f6e\u8cc7\u6599\u593e\u6642\u767c\u751f\u932f\u8aa4 #: debug/Uploader.java:209 -!Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.= +Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=\u4e0a\u50b3\u5230\u677f\u5b50\u6642\u767c\u751f\u554f\u984c\u3002\u53ef\u884c\u5efa\u8b70\u8acb\u898bhttp\://www.arduino.cc/en/Guide/Troubleshooting\#upload\u3002 #: Sketch.java:355 Sketch.java:362 Sketch.java:373 -!Problem\ with\ rename= - -#: Editor.java:2137 -!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= +Problem\ with\ rename=\u91cd\u65b0\u547d\u540d\u6642\u7684\u554f\u984c #: ../../../processing/app/I18n.java:86 -!Processor= +Processor=\u8655\u7406\u5668 #: Editor.java:704 -!Programmer= +Programmer=\u71d2\u9304\u5668 #: Base.java:783 Editor.java:593 -!Quit= +Quit=\u96e2\u958b #: Editor.java:1138 Editor.java:1140 Editor.java:1390 -!Redo= +Redo=\u91cd\u505a #: Editor.java:1078 -!Reference= +Reference=\u53c3\u8003\u6587\u4ef6 #: EditorHeader.java:300 -!Rename= +Rename=\u91cd\u65b0\u547d\u540d #: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046 -Replace=\u53d6\u4ee3 +Replace=\u7f6e\u63db #: FindReplace.java:122 FindReplace.java:129 -!Replace\ &\ Find= +Replace\ &\ Find=\u7f6e\u63db & \u5c0b\u627e #: FindReplace.java:120 FindReplace.java:131 -Replace\ All=\u53d6\u4ee3\u5168\u90e8 +Replace\ All=\u5168\u90e8\u7f6e\u63db #: Sketch.java:1043 #, java-format -!Replace\ the\ existing\ version\ of\ {0}?= +Replace\ the\ existing\ version\ of\ {0}?=\u53d6\u4ee3{0}\u7684\u73fe\u5b58\u7248\u672c\uff1f #: FindReplace.java:81 -!Replace\ with\:= +Replace\ with\:=\u7f6e\u63db\u70ba\: #: Preferences.java:113 -!Romanian= +Romanian=\u7f85\u99ac\u5c3c\u4e9e\u8a9e #: Preferences.java:114 -!Russian= +Russian=\u4fc4\u8a9e #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529 #: Editor.java:2064 Editor.java:2468 -!Save= +Save=\u5132\u5b58 #: Editor.java:537 -!Save\ As...= +Save\ As...=\u53e6\u5b58\u65b0\u6a94... #: Editor.java:2317 -!Save\ Canceled.= +Save\ Canceled.=\u5132\u5b58\u52d5\u4f5c\u5df2\u53d6\u6d88\u3002 #: Editor.java:2467 -!Save\ changes\ before\ export?= +Save\ changes\ before\ export?=\u532f\u51fa\u524d\u5148\u5132\u5b58\u8b8a\u66f4\uff1f #: Editor.java:2020 #, java-format -!Save\ changes\ to\ "{0}"?\ \ = +Save\ changes\ to\ "{0}"?\ \ =\u5132\u5b58\u8b8a\u66f4\u5230"{0}"\uff1f #: Sketch.java:825 -!Save\ sketch\ folder\ as...= +Save\ sketch\ folder\ as...=\u5132\u5b58\u8349\u7a3f\u78bc\u8cc7\u6599\u593e\u70ba... #: Editor.java:2270 Editor.java:2308 -!Saving...= +Saving...=\u5132\u5b58\u4e2d... #: Base.java:1909 -!Select\ (or\ create\ new)\ folder\ for\ sketches...= +Select\ (or\ create\ new)\ folder\ for\ sketches...=\u70ba\u8349\u7a3f\u78bc\u9078\u53d6\uff08\u6216\u65b0\u589e\uff09\u8cc7\u6599\u593e... #: Editor.java:1198 Editor.java:2739 -!Select\ All= +Select\ All=\u5168\u9078 #: Base.java:2636 -!Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add= +Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=\u9078\u64c7\u4f60\u60f3\u52a0\u5165\u4e26\u542b\u6709\u7a0b\u5f0f\u5eab\u7684zip\u6a94\u6216\u8cc7\u6599\u593e #: Sketch.java:975 -!Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch= +Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=\u9078\u64c7\u5716\u7247\u6216\u5176\u4ed6\u8cc7\u6599\u6a94\u8907\u88fd\u5230\u4f60\u7684\u8349\u7a3f\u78bc\u88e1 #: Preferences.java:330 -!Select\ new\ sketchbook\ location= +Select\ new\ sketchbook\ location=\u70ba\u8349\u7a3f\u78bc\u7c3f\u9078\u64c7\u65b0\u4f4d\u7f6e #: ../../../processing/app/debug/Compiler.java:146 -!Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).= +Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=\u6839\u64da'{0}'\u6838\u5fc3\uff08\u4e26\u672a\u5b89\u88dd\uff09\u6240\u9078\u64c7\u7684\u677f\u5b50\u3002 #: SerialMonitor.java:93 -!Send= +Send=\u50b3\u9001 #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 -!Serial\ Monitor= +Serial\ Monitor=\u5e8f\u5217\u57e0\u76e3\u63a7\u8996\u7a97 #: Serial.java:174 #, java-format @@ -911,389 +911,389 @@ Replace\ All=\u53d6\u4ee3\u5168\u90e8 #: Serial.java:194 #, java-format -!Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?= +Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=\u627e\u4e0d\u5230\u5e8f\u5217\u57e0''{0}''\u3002\u60a8\u5728\u9078\u55ae\u300c\u5de5\u5177>\u5e8f\u5217\u57e0\u300d\u88e1\u7684\u8a2d\u5b9a\u6b63\u78ba\u55ce\uff1f #: Editor.java:2343 #, java-format -!Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?= +Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=\u6c92\u627e\u5230\u5e8f\u5217\u57e0{0}\u3002\n\u4ee5\u53e6\u4e00\u500b\u5e8f\u5217\u57e0\u518d\u8a66\u8457\u4e0a\u50b3\u55ce\uff1f #: Base.java:1681 -!Settings\ issues= +Settings\ issues=\u8a2d\u5b9a\u503c\u76f8\u95dc\u554f\u984c #: Editor.java:641 -!Show\ Sketch\ Folder= +Show\ Sketch\ Folder=\u986f\u793a\u8349\u7a3f\u78bc\u8cc7\u6599\u593e #: ../../../processing/app/EditorStatus.java:468 -!Show\ verbose\ output\ during\ compilation= +Show\ verbose\ output\ during\ compilation=\u7de8\u8b6f\u6642\u986f\u793a\u8a73\u7d30\u8f38\u51fa\u8cc7\u8a0a #: Preferences.java:387 -!Show\ verbose\ output\ during\:\ = +Show\ verbose\ output\ during\:\ =\u986f\u793a\u8a73\u7d30\u8f38\u51fa\uff1a #: Editor.java:607 -!Sketch= +Sketch=\u8349\u7a3f\u78bc #: Sketch.java:1754 -!Sketch\ Disappeared= +Sketch\ Disappeared=\u8349\u7a3f\u78bc\u6d88\u5931\u4e86 #: Base.java:1411 -!Sketch\ Does\ Not\ Exist= +Sketch\ Does\ Not\ Exist=\u8349\u7a3f\u78bc\u4e0d\u5b58\u5728 #: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966 -!Sketch\ is\ Read-Only= +Sketch\ is\ Read-Only=\u8349\u7a3f\u78bc\u70ba\u552f\u8b80\u72c0\u614b #: Sketch.java:294 -!Sketch\ is\ Untitled= +Sketch\ is\ Untitled=\u8349\u7a3f\u78bc\u672a\u547d\u540d #: Sketch.java:720 -!Sketch\ is\ read-only= +Sketch\ is\ read-only=\u8349\u7a3f\u78bc\u662f\u552f\u8b80\u72c0\u614b #: Sketch.java:1653 -!Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.= +Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=\u8349\u7a3f\u78bc\u592a\u5927\uff1b\u8acb\u898bhttp\://www.arduino.cc/en/Guide/Troubleshooting\#size\u5f97\u77e5\u7e2e\u6e1b\u5927\u5c0f\u7684\u6280\u5de7 #: ../../../processing/app/Sketch.java:1639 #, java-format -!Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.= +Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.=\u8349\u7a3f\u78bc\u4f7f\u7528\u4e86 {0} bytes ({2}%%) \u7684\u7a0b\u5f0f\u5b58\u5132\u7a7a\u9593\u3002\u6700\u5927\u503c\u70ba {1} bytes\u3002 #: Editor.java:510 -!Sketchbook= +Sketchbook=\u8349\u7a3f\u78bc\u7c3f #: Base.java:258 -!Sketchbook\ folder\ disappeared= +Sketchbook\ folder\ disappeared=\u8349\u7a3f\u78bc\u7c3f\u8cc7\u6599\u593e\u4e0d\u898b\u4e86 #: Preferences.java:315 -!Sketchbook\ location\:= +Sketchbook\ location\:=\u8349\u7a3f\u78bc\u7c3f\u7684\u4f4d\u7f6e\uff1a #: ../../../processing/app/Base.java:785 -!Sketches\ (*.ino,\ *.pde)= +Sketches\ (*.ino,\ *.pde)=\u8349\u7a3f\u78bc (*.ino, *.pde) #: ../../../processing/app/Preferences.java:152 -!Slovenian= +Slovenian=\u65af\u6d1b\u6587\u5c3c\u4e9e\u8a9e #: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967 -!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.= +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=\u6709\u4e9b\u6a94\u6848\u70ba\u300c\u552f\u8b80\u300d\uff0c\u6240\u4ee5\u4f60\u5fc5\u9808\n\u53e6\u5b58\u8349\u7a3f\u78bc\u5230\u5225\u7684\u4f4d\u7f6e\uff0c\n\u7136\u5f8c\u518d\u8a66\u4e00\u6b21\u3002 #: Sketch.java:721 -!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.= +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=\u6709\u4e9b\u6a94\u6848\u70ba\u300c\u552f\u8b80\u300d\uff0c\u6240\u4ee5\u4f60\u9700\u8981\n\u53e6\u884c\u5132\u5b58\u8349\u7a3f\u78bc\u5230\u5225\u7684\u4f4d\u7f6e\u3002 #: Sketch.java:457 #, java-format -!Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.= +Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=\u62b1\u6b49\uff0c\u5df2\u7d93\u5b58\u5728\u540d\u70ba"{0}"\u7684\u8349\u7a3f\u78bc\uff08\u6216\u8cc7\u6599\u593e\uff09\u3002 #: Preferences.java:115 -!Spanish= +Spanish=\u897f\u73ed\u7259\u8a9e #: Base.java:540 -!Sunshine= +Sunshine=\u967d\u5149 #: ../../../processing/app/Preferences.java:153 -!Swedish= +Swedish=\u745e\u5178\u8a9e #: Preferences.java:84 -!System\ Default= +System\ Default=\u7cfb\u7d71\u9810\u8a2d #: Preferences.java:116 -!Tamil= +Tamil=\u6cf0\u7c73\u723e\u8a9e #: debug/Compiler.java:414 -!The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.= +The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=\u95dc\u9375\u5b57'BYTE'\u5df2\u4e0d\u88ab\u652f\u63f4 #: debug/Compiler.java:426 -!The\ Client\ class\ has\ been\ renamed\ EthernetClient.= +The\ Client\ class\ has\ been\ renamed\ EthernetClient.=\u985e\u5225Client\u5df2\u6539\u540d\u70baEthernetClient\u3002 #: debug/Compiler.java:420 -!The\ Server\ class\ has\ been\ renamed\ EthernetServer.= +The\ Server\ class\ has\ been\ renamed\ EthernetServer.=\u985e\u5225Server\u5df2\u6539\u540d\u70baEthernetServer\u3002 #: debug/Compiler.java:432 -!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.= +The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=\u985e\u5225Udp\u5df2\u6539\u540d\u70baEthernetUdp\u3002 #: Base.java:192 -!The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.= +The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=\u96d6\u7136\u6709\u932f\u8aa4\u8a0a\u606f\uff0c\u4f46Arduino\u61c9\u53ef\u904b\u4f5c\u6b63\u5e38\u3002 #: Editor.java:2147 #, java-format -!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?= +The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=\u6a94\u6848"{0}"\u5fc5\u9808\u4f4d\u65bc\n\u540d\u70ba"{1}"\u7684\u8349\u7a3f\u78bc\u8cc7\u6599\u593e\u4e2d\u3002\n\u5efa\u7acb\u6b64\u8cc7\u6599\u593e\u3001\u79fb\u52d5\u6a94\u6848\u3001\u4e26\u4e14\u7e7c\u7e8c\u55ce\uff1f #: Base.java:1054 Base.java:2674 #, java-format -!The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)= +The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=\u7121\u6cd5\u4f7f\u7528\u7a0b\u5f0f\u5eab"{0}"\u3002\n\u7a0b\u5f0f\u5eab\u7684\u540d\u7a31\u53ea\u80fd\u542b\u6709\u57fa\u672c\u5b57\u6bcd\u8207\u6578\u5b57\u3002\n\uff08\u53ea\u80fd\u662fASCII\uff0c\u4e0d\u80fd\u6709\u7a7a\u767d\u5b57\u5143\uff0c\u4e5f\u4e0d\u80fd\u4ee5\u6578\u5b57\u958b\u982d\uff09 #: Sketch.java:374 -!The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)= +The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=\u4e3b\u6a94\u4e0d\u80fd\u4f7f\u7528\u526f\u6a94\u540d\u3002\n\uff08\u6216\u8a31\u8a72\u662f\u6642\u5019\u958b\u59cb\u4f7f\u7528\n\u300c\u771f\u6b63\u300d\u7684\u7a0b\u5f0f\u958b\u767c\u74b0\u5883\u4e86\uff09 #: Sketch.java:356 -!The\ name\ cannot\ start\ with\ a\ period.= +The\ name\ cannot\ start\ with\ a\ period.=\u540d\u7a31\u4e0d\u80fd\u4ee5\u300c.\u300d\u958b\u982d #: Base.java:1412 -!The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.= +The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=\u9078\u53d6\u7684\u8349\u7a3f\u78bc\u5df2\u4e0d\u5b58\u5728\u3002\n\u4f60\u6216\u8a31\u9700\u8981\u91cd\u65b0\u555f\u52d5Arduino\n\u4ee5\u4fbf\u66f4\u65b0\u8349\u7a3f\u78bc\u7c3f\u76ee\u9304\u3002 #: Base.java:1430 #, java-format -!The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}= +The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=\u7121\u6cd5\u4f7f\u7528\u8349\u7a3f\u78bc"{0}"\u3002\n\u8349\u7a3f\u78bc\u7684\u540d\u7a31\u53ea\u80fd\u542b\u6709\u57fa\u672c\u5b57\u6bcd\u8207\u6578\u5b57\n\uff08\u53ea\u80fd\u662fASCII\uff0c\u4e0d\u80fd\u542b\u6709\u7a7a\u767d\u5b57\u5143\uff0c\u4e5f\u4e0d\u80fd\u4ee5\u6578\u5b57\u958b\u982d\uff09\u3002\n\u82e5\u4e0d\u60f3\u770b\u5230\u6b64\u8a0a\u606f\uff0c\u8acb\u5f9e{1}\u79fb\u9664\u8a72\u8349\u7a3f\u78bc\u3002 #: Sketch.java:1755 -!The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.= +The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=\u8349\u7a3f\u78bc\u8cc7\u6599\u593e\u6d88\u5931\u4e86\u3002\n\u5c07\u8a66\u8457\u5728\u540c\u4e00\u4f4d\u7f6e\u91cd\u65b0\u5132\u5b58\uff0c\n\u4f46\u9664\u4e86\u7a0b\u5f0f\u78bc\u4ee5\u5916\u7684\u6771\u897f\u5c07\u907a\u5931\u3002 #: Sketch.java:2018 !The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.= #: Base.java:259 -!The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.= +The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=\u8349\u7a3f\u78bc\u7c3f\u8cc7\u6599\u593e\u5df2\u4e0d\u5b58\u5728\u3002\nArduino\u5c07\u8f49\u70ba\u4f7f\u7528\u9810\u8a2d\u7684\u8349\u7a3f\u78bc\u7c3f\u4f4d\u7f6e\uff0c\n\u4e26\u4e14\u8996\u9700\u8981\u65b0\u589e\u8cc7\u6599\u593e\u3002\u7136\u5f8cArduino\u5c07\n\u505c\u6b62\u4ee5\u7b2c\u4e09\u4eba\u7a31\u63d0\u53ca\u81ea\u5df1\u3002 #: Sketch.java:1075 -!This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= +This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u9019\u652f\u6a94\u6848\u5df2\u7d93\u8907\u88fd\u5230\n\u4f60\u60f3\u8981\u52a0\u5165\u7684\u4f4d\u7f6e\u5167\uff0c\n\u6211\u7d55\u5c0d\u4e0d\u6703\u4e0d\u60f3\u8981\u7121\u6240\u4e8b\u4e8b\u3002 #: ../../../processing/app/EditorStatus.java:467 -!This\ report\ would\ have\ more\ information\ with= +This\ report\ would\ have\ more\ information\ with=\u9019\u4efd\u5831\u544a\u7684\u8a73\u60c5\u5c07\u6703\u5728 #: Base.java:535 -!Time\ for\ a\ Break= +Time\ for\ a\ Break=\u4f11\u606f\u6642\u9593\u5230\u4e86 #: Editor.java:663 -!Tools= +Tools=\u5de5\u5177 #: Editor.java:1070 -!Troubleshooting= +Troubleshooting=\u6392\u9664\u554f\u984c #: ../../../processing/app/Preferences.java:117 -!Turkish= +Turkish=\u571f\u8033\u5176\u8a9e #: ../../../processing/app/Editor.java:2507 -!Type\ board\ password\ to\ access\ its\ console= +Type\ board\ password\ to\ access\ its\ console=\u8f38\u5165\u677f\u5b50\u7684\u5bc6\u78bc\u4ee5\u8a2a\u554f\u5176\u63a7\u5236\u53f0 #: ../../../processing/app/Sketch.java:1673 -!Type\ board\ password\ to\ upload\ a\ new\ sketch= +Type\ board\ password\ to\ upload\ a\ new\ sketch=\u8f38\u5165\u677f\u5b50\u7684\u5bc6\u78bc\u4ee5\u4e0a\u50b3\u65b0\u7684\u8349\u7a3f\u78bc #: ../../../processing/app/Preferences.java:118 -!Ukrainian= +Ukrainian=\u70cf\u514b\u862d\u8a9e #: ../../../processing/app/Editor.java:2524 #: ../../../processing/app/NetworkMonitor.java:145 !Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?= #: ../../../processing/app/NetworkMonitor.java:130 -!Unable\ to\ connect\:\ retrying= +Unable\ to\ connect\:\ retrying=\u9023\u63a5\u4e0d\u6210\u529f\: \u6b63\u5728\u91cd\u8a66 #: ../../../processing/app/Editor.java:2526 -!Unable\ to\ connect\:\ wrong\ password?= +Unable\ to\ connect\:\ wrong\ password?=\u7121\u6cd5\u9023\u63a5; \u932f\u8aa4\u7684\u5bc6\u78bc? #: ../../../processing/app/Editor.java:2512 -!Unable\ to\ open\ serial\ monitor= +Unable\ to\ open\ serial\ monitor=\u7121\u6cd5\u958b\u555f\u5e8f\u5217\u76e3\u8996\u5668 #: Sketch.java:1432 #, java-format -!Uncaught\ exception\ type\:\ {0}= +Uncaught\ exception\ type\:\ {0}=Uncaught exception type\: {0} #: Editor.java:1133 Editor.java:1355 -!Undo= +Undo=\u5fa9\u539f #: Platform.java:168 -!Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt= +Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=\u5e73\u53f0\u672a\u6307\u5b9a\uff0c\u7121\u53ef\u7528\u7684\u555f\u52d5\u8005\u3002\n\u82e5\u60f3\u555f\u7528\u521d\u59cb\u7db2\u5740\u6216\u8cc7\u6599\u593e\uff0c\n\u8acb\u5728preferences.txt\u88e1\u52a0\u5165\u4e00\u884c"launcher\=/path/to/app" #: UpdateCheck.java:111 -!Update= +Update=\u66f4\u65b0 #: Preferences.java:428 -!Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)= +Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=\u5132\u5b58\u6642\u66f4\u65b0\u8349\u7a3f\u78bc\u6a94\u6848\u7684\u526f\u6a94\u540d\uff08.pde -> .ino\uff09 #: EditorToolbar.java:41 Editor.java:545 Upload=\u4e0a\u50b3 #: EditorToolbar.java:46 Editor.java:553 -!Upload\ Using\ Programmer= +Upload\ Using\ Programmer=\u4ee5\u71d2\u9304\u5668\u4e0a\u50b3 #: Editor.java:2403 Editor.java:2439 -!Upload\ canceled.= +Upload\ canceled.=\u4e0a\u50b3\u52d5\u4f5c\u5df2\u53d6\u6d88\u3002 #: ../../../processing/app/Sketch.java:1678 -!Upload\ cancelled= +Upload\ cancelled=\u4e0a\u50b3\u5df2\u53d6\u6d88 #: Editor.java:2378 -!Uploading\ to\ I/O\ Board...= +Uploading\ to\ I/O\ Board...=\u4e0a\u50b3\u5230\u677f\u5b50\u4e2d... #: Sketch.java:1622 -!Uploading...= +Uploading...=\u4e0a\u50b3\u4e2d... #: Editor.java:1269 -!Use\ Selection\ For\ Find= +Use\ Selection\ For\ Find=\u4ee5\u9078\u53d6\u5b57\u4e32\u9032\u884c\u5c0b\u627e #: Preferences.java:409 -!Use\ external\ editor= +Use\ external\ editor=\u4f7f\u7528\u5916\u90e8\u7de8\u8f2f\u5668 #: ../../../processing/app/debug/Compiler.java:94 #, java-format -!Using\ library\ {0}\ in\ folder\:\ {1}\ {2}= +Using\ library\ {0}\ in\ folder\:\ {1}\ {2}=\u5728\u8cc7\u6599\u593e\uff1a{1} {2} \u4e2d\u4f7f\u7528\u51fd\u5f0f\u5eab {0} #: ../../../processing/app/debug/Compiler.java:320 #, java-format -!Using\ previously\ compiled\ file\:\ {0}= +Using\ previously\ compiled\ file\:\ {0}=\u4f7f\u7528\u4ee5\u524d\u7de8\u8b6f\u7684\u6587\u4ef6\uff1a{0} #: EditorToolbar.java:41 EditorToolbar.java:46 -!Verify= +Verify=\u9a57\u8b49 #: Editor.java:609 -!Verify\ /\ Compile= +Verify\ /\ Compile=\u9a57\u8b49/\u7de8\u8b6f #: Preferences.java:400 -!Verify\ code\ after\ upload= +Verify\ code\ after\ upload=\u4e0a\u50b3\u5f8c\u9a57\u8b49\u7a0b\u5f0f\u78bc #: ../../../processing/app/Preferences.java:154 -!Vietnamese= +Vietnamese=\u8d8a\u5357\u8a9e #: Editor.java:1105 -!Visit\ Arduino.cc= +Visit\ Arduino.cc=\u62dc\u8a2aArduino.cc #: Base.java:2128 Warning=\u8b66\u544a #: debug/Compiler.java:444 -!Wire.receive()\ has\ been\ renamed\ Wire.read().= +Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive()\u5df2\u6539\u540d\u70baWire.read()\u3002 #: debug/Compiler.java:438 -!Wire.send()\ has\ been\ renamed\ Wire.write().= +Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send()\u5df2\u6539\u540d\u70baWire.write()\u3002 #: FindReplace.java:105 -!Wrap\ Around= +Wrap\ Around=\u7e5e\u6372 #: debug/Uploader.java:213 -!Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?= +Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=\u627e\u5230\u932f\u8aa4\u7684\u5fae\u63a7\u5236\u5668\uff0c\u60a8\u5728\u9078\u55ae\u300c\u5de5\u5177>\u677f\u5b50\u300d\u88e1\u6240\u9078\u53d6\u7684\u677f\u5b50\u6b63\u78ba\u55ce\uff1f #: Preferences.java:77 UpdateCheck.java:108 -!Yes= +Yes=\u662f #: Sketch.java:1074 -!You\ can't\ fool\ me= +You\ can't\ fool\ me=\u4f60\u9a19\u4e0d\u4e86\u6211 #: Sketch.java:411 -!You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.= +You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=\u4f60\u4e0d\u80fd\u8b93\u4e00\u652f.cpp\u6a94\u64c1\u6709\u8207\u8349\u7a3f\u78bc\u76f8\u540c\u7684\u540d\u5b57\u3002 #: Sketch.java:421 -!You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= +You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u4f60\u4e0d\u80fd\u5c07\u8349\u7a3f\u78bc\u91cd\u65b0\u547d\u540d\u70ba"{0}"\n\u56e0\u70ba\u8349\u7a3f\u78bc\u88e1\u5df2\u7d93\u6709\u500b\u64c1\u6709\u8a72\u540d\u7684.cpp\u6a94\u3002 #: Sketch.java:861 -!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= +You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u4f60\u4e0d\u80fd\u5c07\u8349\u7a3f\u78bc\u5b58\u70ba"{0}"\n\u56e0\u70ba\u5df2\u7d93\u6709\u500b\u64c1\u6709\u76f8\u540c\u540d\u7a31\u7684.cpp\u6a94\u4e86\u3002 #: Sketch.java:883 -!You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.= +You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=\u6bd4\u4e0d\u80fd\u5c07\u8349\u7a3f\u78bc\u5132\u5b58\u5230\u5b83\u81ea\u5df1\u88e1\u982d\u7684\u8cc7\u6599\u593e\u4e2d\uff0c\n\u9019\u5c07\u6c38\u7121\u6b62\u76e1\u3002 #: Base.java:1888 -!You\ forgot\ your\ sketchbook= +You\ forgot\ your\ sketchbook=\u4f60\u5fd8\u8a18\u4f60\u7684\u8349\u7a3f\u78bc\u7c3f\u4e86 #: ../../../processing/app/AbstractMonitor.java:92 -!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?= +You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=\u60a8\u6309\u4e0b {0}\uff0c\u4f46\u6c92\u6709\u88ab\u767c\u9001\u3002\u60a8\u60f3\u8981\u9078\u64c7\u7d50\u5c3e\u7b26\u865f\uff1f #: Base.java:536 -!You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?= +You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=\u4f60\u5df2\u7d93\u9054\u5230\u4e00\u5929\u5167\u53ef\u81ea\u52d5\u547d\u540d\u65b0\u8349\u7a3f\u78bc\u7684\u9650\u5236\u4e86\uff0c\n\u4f55\u4e0d\u51fa\u53bb\u6563\u6563\u6b65\u5462\uff1f #: Base.java:2638 -!ZIP\ files\ or\ folders= +ZIP\ files\ or\ folders=ZIP\u6a94\u6848\u6216\u8cc7\u6599\u593e #: Base.java:2661 -!Zip\ doesn't\ contain\ a\ library= +Zip\ doesn't\ contain\ a\ library=Zip\u4e26\u4e0d\u542b\u6709\u7a0b\u5f0f\u5eab #: Sketch.java:364 #, java-format -!".{0}"\ is\ not\ a\ valid\ extension.= +".{0}"\ is\ not\ a\ valid\ extension.=".{0}"\u4e0d\u662f\u5408\u6cd5\u7684\u526f\u6a94\u540d\u3002 #: SketchCode.java:258 #, java-format !"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 -!\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n= +\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\n\u5f9eArduino 0019\u4e4b\u5f8c\uff0c\u7a0b\u5f0f\u5eabEthernet\u76f8\u4f9d\u65bcSPI\u7a0b\u5f0f\u5eab\u3002\n\u60a8\u4f3c\u4e4e\u6b63\u4f7f\u7528\u8a72\u7a0b\u5f0f\u5eab\uff0c\u6216\u662f\u5225\u7684\u76f8\u4f9d\u65bcSPI\u7684\u7a0b\u5f0f\u5eab\u3002\n\n #: debug/Compiler.java:415 -!\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n= +\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\n\u5f9eArduino 1.0\u4e4b\u5f8c\uff0c\u95dc\u9375\u5b57'BYTE'\u5df2\u4e0d\u88ab\u652f\u63f4\u3002\n\u8acb\u6539\u7528Serial.write()\u3002\n\n #: debug/Compiler.java:427 -!\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n= +\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\n\u5f9eArduino 1.0\u4ee5\u5f8c\uff0c\u7a0b\u5f0f\u5eabEthernet\u88e1\u7684\u985e\u5225Client\u5df2\u6539\u540d\u70baEthernetClient\u3002\n\n #: debug/Compiler.java:421 -!\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n= +\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\n\u5f9eArduino 1.0\u4ee5\u5f8c, \u7a0b\u5f0f\u5eabEthernet\u88e1\u7684\u985e\u5225Server\u5df2\u6539\u540d\u70baEthernetServer\u3002\n #: debug/Compiler.java:433 -!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n= +\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=\n\u5f9eArduino 1.0\u4ee5\u5f8c\uff0c\u7a0b\u5f0f\u5eabEthernet\u88e1\u7684\u985e\u5225Udp\u5df2\u6539\u540d\u70baEthernetUdp\u3002\n\n #: debug/Compiler.java:445 -!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n= +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\n\u5f9eArduino 1.0\u4ee5\u5f8c\uff0c\u70ba\u4e86\u8207\u5176\u4ed6\u7a0b\u5f0f\u5eab\u4fdd\u6301\u4e00\u81f4\u6027\uff0cWire.receive()\u5df2\u6539\u540d\u70baWire.read()\u3002\n\n #: debug/Compiler.java:439 -!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n= +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\n\u5f9eArduino 1.0\u4ee5\u5f8c\uff0c\u70ba\u4e86\u8207\u5176\u4ed6\u7a0b\u5f0f\u5eab\u4fdd\u6301\u4e00\u81f4\u6027\uff0cWire.send()\u5df2\u6539\u540d\u70baWire.write()\u3002\n\n #: SerialMonitor.java:130 SerialMonitor.java:133 -!baud= +baud=baud #: Preferences.java:389 -!compilation\ = +compilation\ =\u7de8\u8b6f #: ../../../processing/app/NetworkMonitor.java:111 -!connected\!= +connected\!=\u5df2\u9023\u63a5\! #: Sketch.java:540 -!createNewFile()\ returned\ false= +createNewFile()\ returned\ false=createNewFile()\u56de\u50b3false #: ../../../processing/app/EditorStatus.java:469 -!enabled\ in\ File\ >\ Preferences.= +enabled\ in\ File\ >\ Preferences.=\u5728\u6a94\u6848 > \u504f\u597d\u8a2d\u5b9a\u88e1\u555f\u7528\u3002 #: Base.java:2090 -!environment= +environment=\u958b\u767c\u74b0\u5883 #: Editor.java:1108 -!http\://arduino.cc/= +http\://arduino.cc/=http\://arduino.cc/ #: ../../../processing/app/debug/Compiler.java:49 -!http\://github.com/arduino/Arduino/issues= +http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues #: UpdateCheck.java:118 -!http\://www.arduino.cc/en/Main/Software= +http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software #: UpdateCheck.java:53 -!http\://www.arduino.cc/latest.txt= +http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt #: Base.java:2075 -!http\://www.arduino.cc/playground/Learning/Linux= +http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux #: Preferences.java:625 #, java-format -!ignoring\ invalid\ font\ size\ {0}= +ignoring\ invalid\ font\ size\ {0}=\u5ffd\u7565\u7121\u6548\u7684\u5b57\u578b\u5927\u5c0f{0} #: Base.java:2080 -!index.html= +index.html=index.html #: Editor.java:936 Editor.java:943 -!name\ is\ null= +name\ is\ null=\u540d\u7a31\u662f\u7a7a\u7684 #: Base.java:2090 -!platforms.html= +platforms.html=platforms.html #: Serial.java:451 #, java-format -!readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}= +readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=\u5c0d{0} bytes\u4f86\u8aaa\uff0creadBytesUntil()\u7de9\u885d\u5340\u592a\u5c0f\uff0c \u76f4\u5230\u4e26\u5305\u62ec\u5b57\u5143{1} #: Sketch.java:647 -!removeCode\:\ internal\ error..\ could\ not\ find\ code= +removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\uff1a\u5167\u90e8\u932f\u8aa4...\u627e\u4e0d\u5230\u7a0b\u5f0f\u78bc #: Editor.java:932 -!serialMenu\ is\ null= +serialMenu\ is\ null=serialMenu\u662f\u7a7a\u7684 #: debug/Uploader.java:195 #, java-format -!the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected= +the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=\u9078\u5b9a\u7684\u5e8f\u5217\u57e0{0}\u4e0d\u5b58\u5728\uff0c\u6216\u662f\u4f60\u9084\u6c92\u9023\u63a5\u677f\u5b50\u3002 #: Preferences.java:391 -!upload= +upload=\u4e0a\u50b3 #: Editor.java:380 #, java-format -!{0}\ files\ added\ to\ the\ sketch.= +{0}\ files\ added\ to\ the\ sketch.={0}\u652f\u6a94\u6848\u88ab\u52a0\u5165\u5230\u8349\u7a3f\u78bc\u4e2d\u3002 #: debug/Compiler.java:365 #, java-format -!{0}\ returned\ {1}= +{0}\ returned\ {1}={0}\u56de\u50b3{1} #: Editor.java:2213 #, java-format -!{0}\ |\ Arduino\ {1}= +{0}\ |\ Arduino\ {1}={0} | Arduino {1} #: Editor.java:1874 #, java-format -!{0}.html= +{0}.html={0}.html From 5ff4c9f8dc9d1f4048d4bc762240d827b71a83ea Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Thu, 27 Nov 2014 15:52:54 +0100 Subject: [PATCH 139/148] Temporary disabled DefaultTargetTest under certain conditions --- app/test/processing/app/DefaultTargetTest.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/test/processing/app/DefaultTargetTest.java b/app/test/processing/app/DefaultTargetTest.java index d6281bfba..e2641e36a 100644 --- a/app/test/processing/app/DefaultTargetTest.java +++ b/app/test/processing/app/DefaultTargetTest.java @@ -1,10 +1,11 @@ package processing.app; import org.junit.After; +import org.junit.Assume; import org.junit.Before; import org.junit.Test; -import processing.app.debug.TargetBoard; +import processing.app.debug.TargetBoard; import static org.junit.Assert.assertNotEquals; public class DefaultTargetTest extends AbstractWithPreferencesTest { @@ -29,6 +30,9 @@ public class DefaultTargetTest extends AbstractWithPreferencesTest { // should not raise an exception new Base(new String[0]); + // skip test if no target platforms are available + Assume.assumeNotNull(BaseNoGui.getTargetPlatform()); + TargetBoard targetBoard = BaseNoGui.getTargetBoard(); assertNotEquals("unreal_board", targetBoard.getId()); } From 6d7751cf5fca4892111151a41770057a7bf1f5a5 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Fri, 29 Aug 2014 15:16:19 +0200 Subject: [PATCH 140/148] Fixed some libraries metadata. --- libraries/Audio/library.properties | 1 + libraries/Bridge/library.properties | 1 + libraries/Esplora/library.properties | 1 + libraries/Ethernet/library.properties | 1 + libraries/Firmata/library.properties | 1 + libraries/GSM/library.properties | 1 + libraries/LiquidCrystal/library.properties | 1 + libraries/RobotIRremote/library.properties | 1 + libraries/Robot_Control/library.properties | 1 + libraries/Robot_Motor/library.properties | 1 + libraries/SD/library.properties | 3 ++- libraries/Scheduler/library.properties | 1 + libraries/Servo/library.properties | 1 + libraries/SpacebrewYun/library.properties | 3 ++- libraries/Stepper/library.properties | 1 + libraries/TFT/library.properties | 1 + libraries/Temboo/library.properties | 5 +++-- libraries/USBHost/library.properties | 1 + libraries/WiFi/library.properties | 1 + 19 files changed, 23 insertions(+), 4 deletions(-) diff --git a/libraries/Audio/library.properties b/libraries/Audio/library.properties index c93b8523e..bef3c8683 100644 --- a/libraries/Audio/library.properties +++ b/libraries/Audio/library.properties @@ -4,5 +4,6 @@ author=Arduino maintainer=Arduino sentence=Allows playing audio files from an SD card. For Arduino DUE only. paragraph=With this library you can use the Arduino Due DAC outputs to play audio files.
    The audio files must be in the raw .wav format. +category=Signal Input/Output url=http://arduino.cc/en/Reference/Audio architectures=sam diff --git a/libraries/Bridge/library.properties b/libraries/Bridge/library.properties index 6ad783b8f..11c60e731 100644 --- a/libraries/Bridge/library.properties +++ b/libraries/Bridge/library.properties @@ -4,5 +4,6 @@ author=Arduino maintainer=Arduino sentence=Enables the communication between the Linux processor and the AVR. For Arduino Yún and TRE only. paragraph=The Bridge library feature: access to the shared storage, run and manage linux processes, open a remote console, access to the linux file system, including the SD card, enstablish http clients or servers. +category=Communication url=http://arduino.cc/en/Reference/YunBridgeLibrary architectures=* diff --git a/libraries/Esplora/library.properties b/libraries/Esplora/library.properties index fece2a299..d0e155088 100644 --- a/libraries/Esplora/library.properties +++ b/libraries/Esplora/library.properties @@ -4,5 +4,6 @@ author=Arduino maintainer=Arduino sentence=Grants easy access to the various sensors and actuators of the Esplora. For Arduino Esplora only. paragraph=The sensors available on the board are:2-Axis analog joystick with center push-button,4 push-buttons,microphone, light sensor, temperature sensor, 3-axis accelerometer, 2 TinkerKit input connectors.
    The actuators available on the board are: bright RGB LED, piezo buzzer, 2 TinkerKit output connectors. +category=Device Control url=http://arduino.cc/en/Reference/EsploraLibrary architectures=avr diff --git a/libraries/Ethernet/library.properties b/libraries/Ethernet/library.properties index bfb866ab6..b82197218 100644 --- a/libraries/Ethernet/library.properties +++ b/libraries/Ethernet/library.properties @@ -4,5 +4,6 @@ author=Arduino maintainer=Arduino sentence=Enables network connection (local and Internet) using the Arduino Ethernet board or shield. For all Arduino boards. paragraph=With this library you can use the Arduino Ethernet (shield or board) to connect to Internet. The library provides both Client and server functionalities. The library permits you to connect to a local network also with DHCP and to resolve DNS. +category=Communication url=http://arduino.cc/en/Reference/Ethernet architectures=* diff --git a/libraries/Firmata/library.properties b/libraries/Firmata/library.properties index a7421187e..426a086ba 100644 --- a/libraries/Firmata/library.properties +++ b/libraries/Firmata/library.properties @@ -4,5 +4,6 @@ author=Firmata Developers maintainer=Firmata Developers sentence=Enables the communication with computer apps using a standard serial protocol. For all Arduino boards. paragraph=The Firmata library implements the Firmata protocol for communicating with software on the host computer. This allows you to write custom firmware without having to create your own protocol and objects for the programming environment that you are using. +category=Device Control url=http://firmata.org architectures=* diff --git a/libraries/GSM/library.properties b/libraries/GSM/library.properties index 7d5216376..768ebeffc 100644 --- a/libraries/GSM/library.properties +++ b/libraries/GSM/library.properties @@ -4,5 +4,6 @@ author=Arduino maintainer=Arduino sentence=Enables GSM/GRPS network connection using the Arduino GSM Shield. For all Arduino boards BUT Arduino DUE. paragraph=Use this library to make/receive voice calls, to send and receive SMS with the Quectel M10 GSM module.
    This library also allows you to connect to internet through the GPRS networks. You can either use web Clients and Servers.
    +category=Communication url=http://arduino.cc/en/Reference/GSM architectures=avr diff --git a/libraries/LiquidCrystal/library.properties b/libraries/LiquidCrystal/library.properties index 514b293ce..05d2c9faa 100644 --- a/libraries/LiquidCrystal/library.properties +++ b/libraries/LiquidCrystal/library.properties @@ -4,5 +4,6 @@ author= maintainer=Arduino sentence=Allows communication with alphanumerical liquid crystal displays (LCDs). For all Arduino boards. paragraph=This library allows an Arduino board to control LiquidCrystal displays (LCDs) based on the Hitachi HD44780 (or a compatible) chipset, which is found on most text-based LCDs. The library works with in either 4 or 8 bit mode (i.e. using 4 or 8 data lines in addition to the rs, enable, and, optionally, the rw control lines). +category=Display url=http://arduino.cc/en/Reference/LiquidCrystal architectures=* diff --git a/libraries/RobotIRremote/library.properties b/libraries/RobotIRremote/library.properties index 445530238..da1f6c548 100644 --- a/libraries/RobotIRremote/library.properties +++ b/libraries/RobotIRremote/library.properties @@ -4,5 +4,6 @@ author=Arduino maintainer=Arduino sentence=Allows controlling the Arduino Robot via an IR remote control. For Arduino Robot only. paragraph= +category=Device Control url=https://github.com/shirriff/Arduino-IRremote architectures=avr diff --git a/libraries/Robot_Control/library.properties b/libraries/Robot_Control/library.properties index d5da4a270..4c070ffcd 100644 --- a/libraries/Robot_Control/library.properties +++ b/libraries/Robot_Control/library.properties @@ -4,5 +4,6 @@ author=Arduino maintainer=Arduino sentence=Enables easy access to the controls of the Arduino Robot Control board. For Arduino Robot only. paragraph=The Arduino robot is made by two independent boards. The Control Board is the top board of the Arduino Robot, with this library you can easily write sketches to control the robot. +category=Device Control url=http://arduino.cc/en/Reference/RobotLibrary architectures=avr diff --git a/libraries/Robot_Motor/library.properties b/libraries/Robot_Motor/library.properties index f96f1c6f7..326233f17 100644 --- a/libraries/Robot_Motor/library.properties +++ b/libraries/Robot_Motor/library.properties @@ -4,5 +4,6 @@ author=Arduino maintainer=Arduino sentence=Enables easy access to the motors of the Arduino Robot Motor board. For Arduino Robot only. paragraph= +category=Device Control url=http://arduino.cc/en/Reference/RobotLibrary architectures=avr diff --git a/libraries/SD/library.properties b/libraries/SD/library.properties index 397a26aac..088d7c60f 100644 --- a/libraries/SD/library.properties +++ b/libraries/SD/library.properties @@ -1,8 +1,9 @@ name=SD version=1.0 author= -email= +maintainer= sentence=Enables reading and writing on SD cards. For all Arduino boards. paragraph=Once an SD memory card is connected to the SPI interfare of the Arduino board you are enabled to create files and read/write on them. You can also move through directories on the SD card. +category=Data Storage url=http://arduino.cc/en/Reference/SD architectures=* diff --git a/libraries/Scheduler/library.properties b/libraries/Scheduler/library.properties index ad54471b6..d247eb9d4 100644 --- a/libraries/Scheduler/library.properties +++ b/libraries/Scheduler/library.properties @@ -4,5 +4,6 @@ author=Arduino maintainer=Arduino sentence=Allows multiple tasks to run at the same time, without interrupting each other. For Arduino DUE only. paragraph=The Scheduler library enables the Arduino Due to run multiple functions at the same time. This allows tasks to happen without interrupting each other.
    This is a cooperative scheduler in that the CPU switches from one task to another. The library includes methods for passing control between tasks. +category=Other url=http://arduino.cc/en/Reference/Scheduler architectures=sam diff --git a/libraries/Servo/library.properties b/libraries/Servo/library.properties index 15596ccf4..81eeacdb8 100644 --- a/libraries/Servo/library.properties +++ b/libraries/Servo/library.properties @@ -4,5 +4,6 @@ author=Michael Margolis, Arduino maintainer=Arduino sentence=Allows Arduino boards to control a variety of servo motors. For all Arduino boards. paragraph=This library can control a great number of servos.
    It makes careful use of timers: the library can control 12 servos using only 1 timer.
    On the Arduino Due you can control up to 60 servos.
    +category=Device Control url=http://arduino.cc/en/Reference/Servo architectures=avr,sam diff --git a/libraries/SpacebrewYun/library.properties b/libraries/SpacebrewYun/library.properties index e33206dd6..c4b959d48 100644 --- a/libraries/SpacebrewYun/library.properties +++ b/libraries/SpacebrewYun/library.properties @@ -1,8 +1,9 @@ name=SpacebrewYun author=Julio Terra -email=julioterra@gmail.com +maintainer=Julio Terra sentence=Enables the communication between interactive objects using WebSockets. For Arduino Yún only. paragraph=This library was developed to enable you to easily connect the Arduino Yún to Spacebrew. To learn more about Spacebrew visit Spacebrew.cc +category=Communication url=https://github.com/julioterra/yunSpacebrew architectures=avr version=1.0 diff --git a/libraries/Stepper/library.properties b/libraries/Stepper/library.properties index 28d2e58bc..7e2ab9698 100644 --- a/libraries/Stepper/library.properties +++ b/libraries/Stepper/library.properties @@ -4,5 +4,6 @@ author= maintainer= sentence=Allows Arduino boards to control a variety of stepper motors. For all Arduino boards. paragraph=This library allows you to control unipolar or bipolar stepper motors. To use it you will need a stepper motor, and the appropriate hardware to control it. +category=Device Control url=http://arduino.cc/en/Reference/Stepper architectures=* diff --git a/libraries/TFT/library.properties b/libraries/TFT/library.properties index 9a88fabf3..46e9d26ed 100644 --- a/libraries/TFT/library.properties +++ b/libraries/TFT/library.properties @@ -4,5 +4,6 @@ author= maintainer= sentence=Allows drawing text, images, and shapes on the Arduino TFT graphical display. For all Arduino boards. paragraph=This library is compatible with most of the TFT display based on the ST7735 chipset +category=Display url=http://arduino.cc/en/Reference/TFTLibrary architectures=* diff --git a/libraries/Temboo/library.properties b/libraries/Temboo/library.properties index 4db0feb4c..3ae1c9451 100644 --- a/libraries/Temboo/library.properties +++ b/libraries/Temboo/library.properties @@ -1,9 +1,10 @@ name=Temboo author=Temboo -email=support@temboo.com +maintainer=Temboo sentence=This library enables calls to Temboo, a platform that connects Arduino boards to 100+ APIs, databases, code utilities and more. paragraph=Use this library to connect your Arduino board to Temboo, making it simple to interact with a vast array of web-based resources and services. +category=Communication url=http://www.temboo.com/arduino architectures=* version=1.1 -core-dependencies=arduino (>=1.5.0) \ No newline at end of file +core-dependencies=arduino (>=1.5.0) diff --git a/libraries/USBHost/library.properties b/libraries/USBHost/library.properties index cfd5eb9bd..37f605a25 100644 --- a/libraries/USBHost/library.properties +++ b/libraries/USBHost/library.properties @@ -4,5 +4,6 @@ author=Arduino maintainer=Arduino sentence=Allows the communication with USB peripherals like mice, keyboards, and thumbdrives. For Arduino DUE only. paragraph=The USBHost library allows an Arduino Due board to appear as a USB host, enabling it to communicate with peripherals like USB mice and keyboards. USBHost does not support devices that are connected through USB hubs. This includes some keyboards that have an internal hub. +category=Device Control url=http://arduino.cc/en/Reference/USBHost architectures=sam diff --git a/libraries/WiFi/library.properties b/libraries/WiFi/library.properties index 5cc8890c0..7eca2d39a 100644 --- a/libraries/WiFi/library.properties +++ b/libraries/WiFi/library.properties @@ -4,5 +4,6 @@ author=Arduino maintainer=Arduino sentence=Enables network connection (local and Internet) using the Arduino WiFi shield. For all Arduino boards. paragraph=With this library you can instantiate Servers, Clients and send/receive UDP packets through WiFi. The shield can connect either to open or encrypted networks (WEP, WPA). The IP address can be assigned statically or through a DHCP. The library can also manage DNS. +category=Communication url=http://arduino.cc/en/Reference/WiFi architectures=* From ce412a04610010699d1119b765b460b9cde17463 Mon Sep 17 00:00:00 2001 From: Arturo Guadalupi Date: Fri, 16 Jan 2015 15:35:22 +0100 Subject: [PATCH 141/148] Added README.adoc for the library manager project --- libraries/Audio/README.adoc | 24 ++++++++++++++++++++++++ libraries/Bridge/README.adoc | 24 ++++++++++++++++++++++++ libraries/Esplora/README.adoc | 24 ++++++++++++++++++++++++ libraries/Ethernet/README.adoc | 24 ++++++++++++++++++++++++ libraries/Firmata/README.adoc | 24 ++++++++++++++++++++++++ libraries/GSM/README.adoc | 24 ++++++++++++++++++++++++ libraries/LiquidCrystal/README.adoc | 24 ++++++++++++++++++++++++ libraries/RobotIRremote/README.adoc | 24 ++++++++++++++++++++++++ libraries/Robot_Control/README.adoc | 24 ++++++++++++++++++++++++ libraries/Robot_Motor/README.adoc | 24 ++++++++++++++++++++++++ libraries/SD/README.adoc | 24 ++++++++++++++++++++++++ libraries/Scheduler/README.adoc | 24 ++++++++++++++++++++++++ libraries/Servo/README.adoc | 24 ++++++++++++++++++++++++ libraries/SpacebrewYun/README.adoc | 21 +++++++++++++++++++++ libraries/Stepper/README.adoc | 24 ++++++++++++++++++++++++ libraries/TFT/README.adoc | 24 ++++++++++++++++++++++++ libraries/Temboo/README.adoc | 21 +++++++++++++++++++++ libraries/USBHost/README.adoc | 24 ++++++++++++++++++++++++ libraries/WiFi/README.adoc | 24 ++++++++++++++++++++++++ 19 files changed, 450 insertions(+) create mode 100644 libraries/Audio/README.adoc create mode 100644 libraries/Bridge/README.adoc create mode 100644 libraries/Esplora/README.adoc create mode 100644 libraries/Ethernet/README.adoc create mode 100644 libraries/Firmata/README.adoc create mode 100644 libraries/GSM/README.adoc create mode 100644 libraries/LiquidCrystal/README.adoc create mode 100644 libraries/RobotIRremote/README.adoc create mode 100644 libraries/Robot_Control/README.adoc create mode 100644 libraries/Robot_Motor/README.adoc create mode 100644 libraries/SD/README.adoc create mode 100644 libraries/Scheduler/README.adoc create mode 100644 libraries/Servo/README.adoc create mode 100644 libraries/SpacebrewYun/README.adoc create mode 100644 libraries/Stepper/README.adoc create mode 100644 libraries/TFT/README.adoc create mode 100644 libraries/Temboo/README.adoc create mode 100644 libraries/USBHost/README.adoc create mode 100644 libraries/WiFi/README.adoc diff --git a/libraries/Audio/README.adoc b/libraries/Audio/README.adoc new file mode 100644 index 000000000..0da2cd095 --- /dev/null +++ b/libraries/Audio/README.adoc @@ -0,0 +1,24 @@ += Audio Library for Arduino = + +The Audio library enables an Arduino Due board to play back .wav files from a storage device like an SD card. + +For more information about this library please visit us at +http://arduino.cc/en/Reference/Audio + +== License == + +Copyright (c) Arduino LLC. All right reserved. + +This library is free software; you can redistribute it and/or +modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. + +This library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public +License along with this library; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/libraries/Bridge/README.adoc b/libraries/Bridge/README.adoc new file mode 100644 index 000000000..9229d3e18 --- /dev/null +++ b/libraries/Bridge/README.adoc @@ -0,0 +1,24 @@ += Bridge Library for Arduino = + +The Bridge library simplifies communication between the ATmega32U4 and the AR9331. + +For more information about this library please visit us at +http://arduino.cc/en/Reference/YunBridgeLibrary + +== License == + +Copyright (c) Arduino LLC. All right reserved. + +This library is free software; you can redistribute it and/or +modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. + +This library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public +License along with this library; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/libraries/Esplora/README.adoc b/libraries/Esplora/README.adoc new file mode 100644 index 000000000..a8b2288cf --- /dev/null +++ b/libraries/Esplora/README.adoc @@ -0,0 +1,24 @@ += Esplora Library for Arduino = + +The library offers easy access to the data from the onboard Esplora's sensors, and provides the ability to change the state of the outputs. + +For more information about this library please visit us at +http://arduino.cc/en/Reference/EsploraLibrary + +== License == + +Copyright (c) Arduino LLC. All right reserved. + +This library is free software; you can redistribute it and/or +modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. + +This library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public +License along with this library; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/libraries/Ethernet/README.adoc b/libraries/Ethernet/README.adoc new file mode 100644 index 000000000..c1772ae5d --- /dev/null +++ b/libraries/Ethernet/README.adoc @@ -0,0 +1,24 @@ += Ethernet Library for Arduino = + +With the Arduino Ethernet Shield, this library allows an Arduino board to connect to the internet. + +For more information about this library please visit us at +http://arduino.cc/en/Reference/Ethernet + +== License == + +Copyright (c) Arduino LLC. All right reserved. + +This library is free software; you can redistribute it and/or +modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. + +This library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public +License along with this library; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/libraries/Firmata/README.adoc b/libraries/Firmata/README.adoc new file mode 100644 index 000000000..d217c9752 --- /dev/null +++ b/libraries/Firmata/README.adoc @@ -0,0 +1,24 @@ += Firmata Library for Arduino = + +The Firmata library implements the Firmata protocol for communicating with software on the host computer. This allows you to write custom firmware without having to create your own protocol and objects for the programming environment that you are using. + +For more information about this library please visit us at +http://arduino.cc/en/Reference/Firmata + +== License == + +Copyright (c) Arduino LLC. All right reserved. + +This library is free software; you can redistribute it and/or +modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. + +This library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public +License along with this library; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/libraries/GSM/README.adoc b/libraries/GSM/README.adoc new file mode 100644 index 000000000..1b264199c --- /dev/null +++ b/libraries/GSM/README.adoc @@ -0,0 +1,24 @@ += GSM Library for Arduino = + +With the Arduino GSM Shield, this library enables an Arduino board to do most of the operations you can do with a GSM phone: place and receive voice calls, send and receive SMS, and connect to the internet over a GPRS network. + +For more information about this library please visit us at +http://arduino.cc/en/Reference/GSM + +== License == + +Copyright (c) Arduino LLC. All right reserved. + +This library is free software; you can redistribute it and/or +modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. + +This library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public +License along with this library; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/libraries/LiquidCrystal/README.adoc b/libraries/LiquidCrystal/README.adoc new file mode 100644 index 000000000..6f57eb157 --- /dev/null +++ b/libraries/LiquidCrystal/README.adoc @@ -0,0 +1,24 @@ += Liquid Crystal Library for Arduino = + +This library allows an Arduino board to control LiquidCrystal displays (LCDs) based on the Hitachi HD44780 (or a compatible) chipset, which is found on most text-based LCDs. + +For more information about this library please visit us at +http://arduino.cc/en/Reference/LiquidCrystal + +== License == + +Copyright (c) Arduino LLC. All right reserved. + +This library is free software; you can redistribute it and/or +modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. + +This library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public +License along with this library; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/libraries/RobotIRremote/README.adoc b/libraries/RobotIRremote/README.adoc new file mode 100644 index 000000000..20a64ec76 --- /dev/null +++ b/libraries/RobotIRremote/README.adoc @@ -0,0 +1,24 @@ += Robot IR Remote Library for Arduino = + +The Robot has a number of built in sensors and actuators. The library is designed to easily access the robot's functionality. + +For more information about this library please visit us at +http://arduino.cc/en/Reference/RobotLibrary + +== License == + +Copyright (c) Arduino LLC. All right reserved. + +This library is free software; you can redistribute it and/or +modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. + +This library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public +License along with this library; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/libraries/Robot_Control/README.adoc b/libraries/Robot_Control/README.adoc new file mode 100644 index 000000000..8a88feb7b --- /dev/null +++ b/libraries/Robot_Control/README.adoc @@ -0,0 +1,24 @@ += Robot Control Library for Arduino = + +The Robot has a number of built in sensors and actuators. The library is designed to easily access the robot's functionality. + +For more information about this library please visit us at +http://arduino.cc/en/Reference/RobotLibrary + +== License == + +Copyright (c) Arduino LLC. All right reserved. + +This library is free software; you can redistribute it and/or +modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. + +This library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public +License along with this library; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/libraries/Robot_Motor/README.adoc b/libraries/Robot_Motor/README.adoc new file mode 100644 index 000000000..07bad3d83 --- /dev/null +++ b/libraries/Robot_Motor/README.adoc @@ -0,0 +1,24 @@ += Robot Motor Library for Arduino = + +The Robot has a number of built in sensors and actuators. The library is designed to easily access the robot's functionality. + +For more information about this library please visit us at +http://arduino.cc/en/Reference/RobotLibrary + +== License == + +Copyright (c) Arduino LLC. All right reserved. + +This library is free software; you can redistribute it and/or +modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. + +This library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public +License along with this library; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/libraries/SD/README.adoc b/libraries/SD/README.adoc new file mode 100644 index 000000000..ec57d15ce --- /dev/null +++ b/libraries/SD/README.adoc @@ -0,0 +1,24 @@ += SD Library for Arduino = + +The SD library allows for reading from and writing to SD cards. + +For more information about this library please visit us at +http://arduino.cc/en/Reference/SD + +== License == + +Copyright (c) Arduino LLC. All right reserved. + +This library is free software; you can redistribute it and/or +modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. + +This library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public +License along with this library; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/libraries/Scheduler/README.adoc b/libraries/Scheduler/README.adoc new file mode 100644 index 000000000..860993b39 --- /dev/null +++ b/libraries/Scheduler/README.adoc @@ -0,0 +1,24 @@ += Scheduler Library for Arduino = + +The Scheduler library enables the Arduino Due to run multiple functions at the same time. This allows tasks to happen without interrupting each other. + +For more information about this library please visit us at +http://arduino.cc/en/Reference/Scheduler + +== License == + +Copyright (c) Arduino LLC. All right reserved. + +This library is free software; you can redistribute it and/or +modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. + +This library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public +License along with this library; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/libraries/Servo/README.adoc b/libraries/Servo/README.adoc new file mode 100644 index 000000000..734e67095 --- /dev/null +++ b/libraries/Servo/README.adoc @@ -0,0 +1,24 @@ += Servo Library for Arduino = + +This library allows an Arduino board to control RC (hobby) servo motors. + +For more information about this library please visit us at +http://arduino.cc/en/Reference/Servo + +== License == + +Copyright (c) Arduino LLC. All right reserved. + +This library is free software; you can redistribute it and/or +modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. + +This library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public +License along with this library; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/libraries/SpacebrewYun/README.adoc b/libraries/SpacebrewYun/README.adoc new file mode 100644 index 000000000..a17e5ac24 --- /dev/null +++ b/libraries/SpacebrewYun/README.adoc @@ -0,0 +1,21 @@ += Spacebrew Library for Arduino = + +This library allows an Arduino Yun to connect to the Spacebrew service. + +== License == + +Copyright (c) Arduino LLC. All right reserved. + +This library is free software; you can redistribute it and/or +modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. + +This library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public +License along with this library; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/libraries/Stepper/README.adoc b/libraries/Stepper/README.adoc new file mode 100644 index 000000000..8982c5402 --- /dev/null +++ b/libraries/Stepper/README.adoc @@ -0,0 +1,24 @@ += Stepper Library for Arduino = + +This library allows you to control unipolar or bipolar stepper motors. To use it you will need a stepper motor, and the appropriate hardware to control it. + +For more information about this library please visit us at +http://arduino.cc/en/Reference/Stepper + +== License == + +Copyright (c) Arduino LLC. All right reserved. + +This library is free software; you can redistribute it and/or +modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. + +This library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public +License along with this library; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/libraries/TFT/README.adoc b/libraries/TFT/README.adoc new file mode 100644 index 000000000..19c9bafba --- /dev/null +++ b/libraries/TFT/README.adoc @@ -0,0 +1,24 @@ += TFT Library for Arduino = + +This library enables an Arduino board to communicate with the Arduino TFT LCD screen. It simplifies the process for drawing shapes, lines, images, and text to the screen. + +For more information about this library please visit us at +http://arduino.cc/en/Reference/TFTLibrary + +== License == + +Copyright (c) Arduino LLC. All right reserved. + +This library is free software; you can redistribute it and/or +modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. + +This library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public +License along with this library; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/libraries/Temboo/README.adoc b/libraries/Temboo/README.adoc new file mode 100644 index 000000000..155b6f690 --- /dev/null +++ b/libraries/Temboo/README.adoc @@ -0,0 +1,21 @@ += Temboo Library for Arduino = + +This library allows an Arduino Yun to connect to the Temboo service. + +== License == + +Copyright (c) Arduino LLC. All right reserved. + +This library is free software; you can redistribute it and/or +modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. + +This library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public +License along with this library; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/libraries/USBHost/README.adoc b/libraries/USBHost/README.adoc new file mode 100644 index 000000000..4b79236a2 --- /dev/null +++ b/libraries/USBHost/README.adoc @@ -0,0 +1,24 @@ += USB Host Library for Arduino = + +The USBHost library allows an Arduino Due board to appear as a USB host, enabling it to communicate with peripherals like USB mice and keyboards. + +For more information about this library please visit us at +http://arduino.cc/en/Reference/USBHost + +== License == + +Copyright (c) Arduino LLC. All right reserved. + +This library is free software; you can redistribute it and/or +modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. + +This library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public +License along with this library; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/libraries/WiFi/README.adoc b/libraries/WiFi/README.adoc new file mode 100644 index 000000000..84b82afac --- /dev/null +++ b/libraries/WiFi/README.adoc @@ -0,0 +1,24 @@ += WiFi Library for Arduino = + +With the Arduino WiFi Shield, this library allows an Arduino board to connect to the internet. + +For more information about this library please visit us at +http://arduino.cc/en/Reference/WiFi + +== License == + +Copyright (c) Arduino LLC. All right reserved. + +This library is free software; you can redistribute it and/or +modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. + +This library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public +License along with this library; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA From 8ddc5198f6ef8b2816a61b7b0fcce99f927d11a0 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Sun, 18 Jan 2015 17:34:40 +0100 Subject: [PATCH 142/148] Temporary fix for pulseIn() regression. Fixes #2538 --- .../arduino/avr/cores/arduino/wiring_pulse.c | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/hardware/arduino/avr/cores/arduino/wiring_pulse.c b/hardware/arduino/avr/cores/arduino/wiring_pulse.c index 0d968865d..830c45408 100644 --- a/hardware/arduino/avr/cores/arduino/wiring_pulse.c +++ b/hardware/arduino/avr/cores/arduino/wiring_pulse.c @@ -61,9 +61,25 @@ unsigned long pulseIn(uint8_t pin, uint8_t state, unsigned long timeout) width++; } - // convert the reading to microseconds. The loop has been determined - // to be 20 clock cycles long and have about 16 clocks between the edge - // and the start of the loop. There will be some error introduced by + // convert the reading to microseconds. There will be some error introduced by // the interrupt handlers. - return clockCyclesToMicroseconds(width * 21 + 16); + + // Conversion constants are compiler-dependent, different compiler versions + // have different levels of optimization. +#if __GNUC__==4 && __GNUC_MINOR__==3 && __GNUC_PATCHLEVEL__==2 + // avr-gcc 4.3.2 + return clockCyclesToMicroseconds(width * 21 + 16); +#elif __GNUC__==4 && __GNUC_MINOR__==8 && __GNUC_PATCHLEVEL__==1 + // avr-gcc 4.8.1 + return clockCyclesToMicroseconds(width * 24 + 16); +#elif __GNUC__<=4 && __GNUC_MINOR__<=3 + // avr-gcc <=4.3.x + #warning "pulseIn() results may not be accurate" + return clockCyclesToMicroseconds(width * 21 + 16); +#else + // avr-gcc >4.3.x + #warning "pulseIn() results may not be accurate" + return clockCyclesToMicroseconds(width * 24 + 16); +#endif + } From d2269ca89e78c2c0a2717616faa83494f99b70eb Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Mon, 19 Jan 2015 13:50:13 +0100 Subject: [PATCH 143/148] Update revision log --- build/shared/revisions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build/shared/revisions.txt b/build/shared/revisions.txt index 58ffbcbf7..da2dcec72 100644 --- a/build/shared/revisions.txt +++ b/build/shared/revisions.txt @@ -1,5 +1,5 @@ -ARDUINO 1.6.0rc2 +ARDUINO 1.6.0 - 2015.01.19 [ide] * Reenabled speed of 38400 on serial monitor @@ -7,6 +7,9 @@ ARDUINO 1.6.0rc2 [core] * Arduino "boolean" type is now mapped to "bool" instead of "uint8_t" (Christopher Andrews) +* sam: HardwareSerial now has buffered transmission (Collin Kidder) +* sam: HardwareSerial fixed modes (parity, data bits, stop bits) (bluesign2k) +* avr: Fixed regression in pulseIn() function accuracy [libraries] * GSM: minor changes and bug fix (https://github.com/arduino/Arduino/pull/2546) @@ -16,9 +19,6 @@ The following changes are included also in the Arduino IDE 1.0.7: [ide] * Mitigated Serial Monitor resource exhaustion when the connected device sends a lot of data (Paul Stoffregen) -[core] -* sam: HardwareSerial now has buffered transmission (Collin Kidder) - ARDUINO 1.6.0rc1 * IDE internals have been refactored and sorted out. (Claudio Indellicati) From f4a6b623b3a1e5c86e31d06051a6a02e81ebe3e6 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Mon, 19 Jan 2015 14:21:28 +0100 Subject: [PATCH 144/148] Updated translations --- .../src/processing/app/i18n/Resources_an.po | 308 +++++-- .../app/i18n/Resources_an.properties | 226 ++++- .../src/processing/app/i18n/Resources_ar.po | 306 +++++-- .../app/i18n/Resources_ar.properties | 226 ++++- .../src/processing/app/i18n/Resources_ast.po | 300 ++++++- .../app/i18n/Resources_ast.properties | 226 ++++- .../src/processing/app/i18n/Resources_be.po | 310 +++++-- .../app/i18n/Resources_be.properties | 226 ++++- .../src/processing/app/i18n/Resources_bg.po | 320 +++++-- .../app/i18n/Resources_bg.properties | 234 ++++- .../src/processing/app/i18n/Resources_bs.po | 300 ++++++- .../app/i18n/Resources_bs.properties | 226 ++++- .../src/processing/app/i18n/Resources_ca.po | 308 +++++-- .../app/i18n/Resources_ca.properties | 226 ++++- .../processing/app/i18n/Resources_cs_CZ.po | 310 +++++-- .../app/i18n/Resources_cs_CZ.properties | 226 ++++- .../processing/app/i18n/Resources_da_DK.po | 300 ++++++- .../app/i18n/Resources_da_DK.properties | 226 ++++- .../processing/app/i18n/Resources_de_DE.po | 320 +++++-- .../app/i18n/Resources_de_DE.properties | 234 ++++- .../processing/app/i18n/Resources_el_GR.po | 302 ++++++- .../app/i18n/Resources_el_GR.properties | 226 ++++- .../processing/app/i18n/Resources_en_GB.po | 310 +++++-- .../app/i18n/Resources_en_GB.properties | 226 ++++- .../src/processing/app/i18n/Resources_es.po | 310 +++++-- .../app/i18n/Resources_es.properties | 226 ++++- .../src/processing/app/i18n/Resources_et.po | 306 +++++-- .../app/i18n/Resources_et.properties | 226 ++++- .../processing/app/i18n/Resources_et_EE.po | 308 +++++-- .../app/i18n/Resources_et_EE.properties | 226 ++++- .../src/processing/app/i18n/Resources_fa.po | 306 +++++-- .../app/i18n/Resources_fa.properties | 226 ++++- .../src/processing/app/i18n/Resources_fi.po | 310 +++++-- .../app/i18n/Resources_fi.properties | 226 ++++- .../src/processing/app/i18n/Resources_fil.po | 304 ++++++- .../app/i18n/Resources_fil.properties | 226 ++++- .../src/processing/app/i18n/Resources_fr.po | 308 +++++-- .../app/i18n/Resources_fr.properties | 226 ++++- .../processing/app/i18n/Resources_fr_CA.po | 306 +++++-- .../app/i18n/Resources_fr_CA.properties | 226 ++++- .../src/processing/app/i18n/Resources_gl.po | 310 +++++-- .../app/i18n/Resources_gl.properties | 226 ++++- .../src/processing/app/i18n/Resources_hi.po | 304 ++++++- .../app/i18n/Resources_hi.properties | 226 ++++- .../processing/app/i18n/Resources_hr_HR.po | 310 +++++-- .../app/i18n/Resources_hr_HR.properties | 226 ++++- .../src/processing/app/i18n/Resources_hu.po | 304 ++++++- .../app/i18n/Resources_hu.properties | 226 ++++- .../src/processing/app/i18n/Resources_hy.po | 300 ++++++- .../app/i18n/Resources_hy.properties | 226 ++++- .../src/processing/app/i18n/Resources_in.po | 816 +++++++++++------- .../app/i18n/Resources_in.properties | 745 +++++++++------- .../processing/app/i18n/Resources_it_IT.po | 318 +++++-- .../app/i18n/Resources_it_IT.properties | 234 ++++- .../src/processing/app/i18n/Resources_iw.po | 310 +++++-- .../app/i18n/Resources_iw.properties | 329 +++++-- .../processing/app/i18n/Resources_ja_JP.po | 324 +++++-- .../app/i18n/Resources_ja_JP.properties | 238 ++++- .../processing/app/i18n/Resources_ka_GE.po | 310 +++++-- .../app/i18n/Resources_ka_GE.properties | 226 ++++- .../processing/app/i18n/Resources_ko_KR.po | 314 +++++-- .../app/i18n/Resources_ko_KR.properties | 228 ++++- .../processing/app/i18n/Resources_lt_LT.po | 300 ++++++- .../app/i18n/Resources_lt_LT.properties | 226 ++++- .../processing/app/i18n/Resources_lv_LV.po | 306 +++++-- .../app/i18n/Resources_lv_LV.properties | 226 ++++- .../src/processing/app/i18n/Resources_mr.po | 300 ++++++- .../app/i18n/Resources_mr.properties | 226 ++++- .../processing/app/i18n/Resources_my_MM.po | 300 ++++++- .../app/i18n/Resources_my_MM.properties | 226 ++++- .../processing/app/i18n/Resources_nb_NO.po | 310 +++++-- .../app/i18n/Resources_nb_NO.properties | 226 ++++- .../src/processing/app/i18n/Resources_ne.po | 300 ++++++- .../app/i18n/Resources_ne.properties | 226 ++++- .../src/processing/app/i18n/Resources_nl.po | 308 +++++-- .../app/i18n/Resources_nl.properties | 226 ++++- .../processing/app/i18n/Resources_nl_NL.po | 300 ++++++- .../app/i18n/Resources_nl_NL.properties | 226 ++++- .../src/processing/app/i18n/Resources_pl.po | 310 +++++-- .../app/i18n/Resources_pl.properties | 226 ++++- .../src/processing/app/i18n/Resources_pt.po | 300 ++++++- .../app/i18n/Resources_pt.properties | 226 ++++- .../processing/app/i18n/Resources_pt_BR.po | 310 +++++-- .../app/i18n/Resources_pt_BR.properties | 226 ++++- .../processing/app/i18n/Resources_pt_PT.po | 318 +++++-- .../app/i18n/Resources_pt_PT.properties | 232 ++++- .../src/processing/app/i18n/Resources_ro.po | 308 +++++-- .../app/i18n/Resources_ro.properties | 226 ++++- .../src/processing/app/i18n/Resources_ru.po | 308 +++++-- .../app/i18n/Resources_ru.properties | 226 ++++- .../processing/app/i18n/Resources_sl_SI.po | 310 +++++-- .../app/i18n/Resources_sl_SI.properties | 226 ++++- .../src/processing/app/i18n/Resources_sq.po | 166 +++- .../app/i18n/Resources_sq.properties | 122 ++- .../src/processing/app/i18n/Resources_sv.po | 330 +++++-- .../app/i18n/Resources_sv.properties | 248 +++++- .../src/processing/app/i18n/Resources_ta.po | 304 ++++++- .../app/i18n/Resources_ta.properties | 226 ++++- .../src/processing/app/i18n/Resources_tr.po | 316 +++++-- .../app/i18n/Resources_tr.properties | 230 ++++- .../src/processing/app/i18n/Resources_uk.po | 306 +++++-- .../app/i18n/Resources_uk.properties | 226 ++++- .../src/processing/app/i18n/Resources_vi.po | 310 +++++-- .../app/i18n/Resources_vi.properties | 226 ++++- .../processing/app/i18n/Resources_zh_CN.po | 308 +++++-- .../app/i18n/Resources_zh_CN.properties | 226 ++++- .../processing/app/i18n/Resources_zh_HK.po | 300 ++++++- .../app/i18n/Resources_zh_HK.properties | 226 ++++- .../app/i18n/Resources_zh_TW.Big5.po | 310 +++++-- .../app/i18n/Resources_zh_TW.Big5.properties | 226 ++++- .../processing/app/i18n/Resources_zh_TW.po | 308 +++++-- .../app/i18n/Resources_zh_TW.properties | 226 ++++- 112 files changed, 25707 insertions(+), 5155 deletions(-) diff --git a/arduino-core/src/processing/app/i18n/Resources_an.po b/arduino-core/src/processing/app/i18n/Resources_an.po index 9aa141ffc..f0c480a52 100644 --- a/arduino-core/src/processing/app/i18n/Resources_an.po +++ b/arduino-core/src/processing/app/i18n/Resources_an.po @@ -33,6 +33,12 @@ msgstr "'Churi' solament suportau por Arduino Leonardo" msgid "(edit only when Arduino is not running)" msgstr "(editar solament quan Arduino no ye correndo)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -91,6 +97,10 @@ msgstr "Adhibir fichero..." msgid "Add Library..." msgstr "Adhibir biblioteca..." +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "Albano" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -98,6 +108,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "Ha ocurriu una error mientres se solucionaba a codificación d'o fichero.\nNo intentes alzar iste programa asinas sobrescribindo a viella versión.\nUsa Ubrir ta reubrir o programa y intenta-lo de nuevo.\n" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -176,6 +200,30 @@ msgstr "Seguro que quiers borrar \"{0}\"?" msgid "Are you sure you want to delete this sketch?" msgstr "Seguro que quiers borrar iste programa?" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "Argumento necesario ta --board" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "Argumento necesario ta --curdir" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "Argumento necesario ta --port" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "Argumento necesario ta --pref" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "Argumento necesario ta --preferences-file" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "Armenio" @@ -184,6 +232,10 @@ msgstr "Armenio" msgid "Asturian" msgstr "Asturiano" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "Auto Formato" @@ -225,6 +277,14 @@ msgstr "Linia error: {0}" msgid "Bad file selected" msgstr "Fichero mal seleccionau" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "Basco" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "Beloruso" @@ -261,6 +321,10 @@ msgstr "Explorar" msgid "Build folder disappeared or could not be written" msgstr "Carpeta de construcción no trobada u no se puede escribir en ella" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "Opcions de compilación cambiadas, reconstruindo tot" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Búlgaro" @@ -277,8 +341,14 @@ msgstr "Escribir bootloader" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "Escribindo bootloader a la Placa I/U (isto habría de tardar un menuto)..." -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" msgstr "" #: ../../../processing/app/Preferences.java:92 @@ -294,6 +364,10 @@ msgstr "Cancelar" msgid "Cannot Rename" msgstr "No se puede renombrar" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "Retorno de carro" @@ -338,11 +412,6 @@ msgstr "Zarrar" msgid "Comment/Uncomment" msgstr "Comentar/Descomentar" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "Error d'o compilador, por favor, ninvia iste codigo a {0}" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "Compilando programa..." @@ -450,10 +519,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "No se pueden leyer os achustes predeterminaus.\nAmeneste reinstalar Arduino" -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "No se podió leyer o fichero de preferencias de compilación, recompilando tot" #: Base.java:2482 #, java-format @@ -482,6 +550,10 @@ msgstr "No se podió renombrar o programa. (2)" msgid "Could not replace {0}" msgstr "No podié reemplazar {0}" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "No se podió escribir o fichero de preferencias de compilacion" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "No se podió archivar o programa" @@ -551,6 +623,11 @@ msgstr "Alzau." msgid "Done burning bootloader." msgstr "Escritura de bootloader completau." +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "Compilau." @@ -559,6 +636,10 @@ msgstr "Compilau." msgid "Done printing." msgstr "Imprentau." +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "Puyau." @@ -662,6 +743,10 @@ msgstr "Error mientres se escribía o bootloader" msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "Error mientres se escribía o bootloader: falta parametro de configuración '{0}'" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -671,11 +756,25 @@ msgstr "Error mientres se cargaba o codigo {0}" msgid "Error while printing." msgstr "Error en imprentar." +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "Error mientres la puyada: manda o parametro de configuracion '{0}'" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "Estonio" @@ -696,6 +795,11 @@ msgstr "Cancelada exportación, os cambeos s'han de salvar antes." msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "Fallo en ubrir lo programa: \"{0}\"" + #: Editor.java:491 msgid "File" msgstr "Fichero" @@ -743,9 +847,10 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "Ta información de cómo instalar bibliotecas, visite: http://arduino.cc/en/guide/libraries\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " -msgstr "Forzar reinicio usando 1200bps obridura / zarre en o puerto" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" +msgstr "" #: Preferences.java:95 msgid "French" @@ -893,9 +998,9 @@ msgstr "Biblioteca adhibida a las tuyas bibliotecas. Compreba o menú \"Importar msgid "Lithuaninan" msgstr "Lituano" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" -msgstr "Poca memoria disponible, puede producir problemas d'estabilidat" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." +msgstr "" #: Preferences.java:107 msgid "Marathi" @@ -909,6 +1014,10 @@ msgstr "Mensache" msgid "Missing the */ from the end of a /* comment */" msgstr "Manca lo */ d'a fin d'un /* comentario */" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "Mas preferencias pueden estar editadas dreitament en o fichero" @@ -917,6 +1026,18 @@ msgstr "Mas preferencias pueden estar editadas dreitament en o fichero" msgid "Moving" msgstr "Movendo" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "Has d'especificar exactament un fichero de programa" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "N'Ko" + #: Sketch.java:282 msgid "Name for new file:" msgstr "Nombre d'o nuevo fichero:" @@ -953,6 +1074,10 @@ msgstr "Pestanya siguient" msgid "No" msgstr "No" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "No s'ha seleccionau placa; por favor, seleccione una en o menú Ferramientas > Placa" @@ -961,6 +1086,10 @@ msgstr "No s'ha seleccionau placa; por favor, seleccione una en o menú Ferramie msgid "No changes necessary for Auto Format." msgstr "Sin cambeos necesarios ta auto formato" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "No s'adhibioron fichers a o programa" @@ -973,6 +1102,10 @@ msgstr "No i hai lanzador disponible." msgid "No line ending" msgstr "Sin achuste de linia" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "No, en serio, prene un poquet d'aire fresco." @@ -982,6 +1115,19 @@ msgstr "No, en serio, prene un poquet d'aire fresco." msgid "No reference available for \"{0}\"" msgstr "No i hai referencia disponible ta \"{0}\"" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "No s'han trobau ficheros de codigo valius" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "No se troboron nucleos configuraus valius! Surtiendo..." @@ -1018,6 +1164,10 @@ msgstr "Ok" msgid "One file added to the sketch." msgstr "Un fichero adhibiu a o tuyo programa." +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "Ubrir" @@ -1054,14 +1204,27 @@ msgstr "Apegar" msgid "Persian" msgstr "Persa" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "Persa (Irán)" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "Por favor, importe a biblioteca SPI d'o menú Programa > Importar Biblioteca." +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "Por favor, importe a biblioteca Wire dende o menú Prochecto > Importar Biblioteca." + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "Por favor, instale o JDK 1.5 u superior" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "Polaco" @@ -1224,10 +1387,18 @@ msgstr "Alzar cambeos a \"{0}\"?" msgid "Save sketch folder as..." msgstr "Salvar carpeta de programas como..." +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "Alzando..." +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "Seleccione (u creye) carpeta ta prochectos." @@ -1260,20 +1431,6 @@ msgstr "Ninviar" msgid "Serial Monitor" msgstr "Monitor serie" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "" - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "" - #: Serial.java:194 #, java-format msgid "" @@ -1353,6 +1510,10 @@ msgstr "A carpeta sketchbook no ha estau trobada" msgid "Sketchbook location:" msgstr "Localización de o sketchbook" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "Sketches (*.ino, *.pde)" @@ -1403,6 +1564,10 @@ msgstr "Tamil" msgid "The 'BYTE' keyword is no longer supported." msgstr "A parola clau 'BYTE' no tornará a estar valida." +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "A clase Client ha estau renombrada a EthernetClient" @@ -1470,12 +1635,12 @@ msgid "" "but anything besides the code will be lost." msgstr "A carpeta d'o programa ha desapareixiu\nIntentaré salvar-lo de nuevo en a mesma ubicación\npero brenca mas que o codigo se perderá." -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." -msgstr "" +"They should also be less than 64 characters long." +msgstr "O nombre d'o prochecto debe estar modificau. O nombre d'o prochecto debe consistir solament de caracters ASCII y numeros (pero no puede prencipiar con un numero).\nAdemas debe contener menos de 64 caracters." #: Base.java:259 msgid "" @@ -1486,6 +1651,12 @@ msgid "" "himself in the third person." msgstr "A carpeta de sketchbook ya no existe.\nArduino cambiará a ubicación por defecto de\nsketchbook, y creyará una carpeta de prochecto\nnuevo si ye necesario. Arduino alavez deixará\n de charrar d'ell mesmo en tercera persona." +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1628,6 +1799,13 @@ msgstr "Vietnamés" msgid "Visit Arduino.cc" msgstr "Visita Arduino.cc" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "WARNING: a biblioteca {0} pareix que s'executa en {1} arquitectura(s) y puede estar incompatible con a tuya placa actual, que s'echecuta en {2} arquitectura(s)." + #: Base.java:2128 msgid "Warning" msgstr "Warning" @@ -1796,10 +1974,6 @@ msgstr "entorno" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "http://github.com/arduino/arduino/issues" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/main/software" @@ -1829,17 +2003,6 @@ msgstr "o nombre ye vuedo" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "O buffer de readBytesUntil() ye masiau chicot ta {0} bytes y mesmo ta o caracter {1}" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "removeCode: error interna... no trobé o codigo" - #: Editor.java:932 msgid "serialMenu is null" msgstr "serialMenu ye vuedo" @@ -1850,6 +2013,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "o puerto seleccionau {0} no existe u a tuya placa no ista connectada" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "opcion desconoixida: {0}" + #: Preferences.java:391 msgid "upload" msgstr "puyar" @@ -1873,3 +2041,45 @@ msgstr "{0} | Arduino {1}" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "{0} Argumento invalido ta --pref, ha d'estar d'a traza \"pref=valura\"" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "{0}: Nombre de placa invalido, debe estar de la forma \"paquet:arq:placa\" u \"paquet:arq:placa:opcions\"" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "{0}: Opcion invalida ta la opción \"{1}\" ta la placa \"{2}\"" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "{0}: Opcion invalida ara a placa \"{1}\"" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "{0}: Opcion invalida, debe estar d'a forma \"nombre=valor\"" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "{0}: Arquitectura desconoixida" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "{0}: Placa desconoixida" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "{0}: Paquet desconoixiu" diff --git a/arduino-core/src/processing/app/i18n/Resources_an.properties b/arduino-core/src/processing/app/i18n/Resources_an.properties index 73833d9e8..bd66b8c6e 100644 --- a/arduino-core/src/processing/app/i18n/Resources_an.properties +++ b/arduino-core/src/processing/app/i18n/Resources_an.properties @@ -17,6 +17,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(editar solament quan Arduino no ye correndo) +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -53,9 +56,23 @@ Add\ File...=Adhibir fichero... #: Base.java:963 Add\ Library...=Adhibir biblioteca... +#: ../../../processing/app/Preferences.java:96 +Albanian=Albano + #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Ha ocurriu una error mientres se solucionaba a codificaci\u00f3n d'o fichero.\nNo intentes alzar iste programa asinas sobrescribindo a viella versi\u00f3n.\nUsa Ubrir ta reubrir o programa y intenta-lo de nuevo.\n +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Error desconoixida en intentar cargar codigo especifico de plataforma ta la suya maquina. @@ -105,12 +122,33 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Seguro que quiers borrar "{0}"? #: Sketch.java:587 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Seguro que quiers borrar iste programa? +#: ../../../processing/app/Base.java:356 +Argument\ required\ for\ --board=Argumento necesario ta --board + +#: ../../../processing/app/Base.java:370 +Argument\ required\ for\ --curdir=Argumento necesario ta --curdir + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +Argument\ required\ for\ --port=Argumento necesario ta --port + +#: ../../../processing/app/Base.java:377 +Argument\ required\ for\ --pref=Argumento necesario ta --pref + +#: ../../../processing/app/Base.java:384 +Argument\ required\ for\ --preferences-file=Argumento necesario ta --preferences-file + #: ../../../processing/app/Preferences.java:137 Armenian=Armenio #: ../../../processing/app/Preferences.java:138 Asturian=Asturiano +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 Auto\ Format=Auto Formato @@ -142,6 +180,12 @@ Bad\ error\ line\:\ {0}=Linia error\: {0} #: Editor.java:2136 Bad\ file\ selected=Fichero mal seleccionau +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +Basque=Basco + #: ../../../processing/app/Preferences.java:139 Belarusian=Beloruso @@ -168,6 +212,9 @@ Browse=Explorar #: Sketch.java:1392 Sketch.java:1423 Build\ folder\ disappeared\ or\ could\ not\ be\ written=Carpeta de construcci\u00f3n no trobada u no se puede escribir en ella +#: ../../../processing/app/Sketch.java:1530 +Build\ options\ changed,\ rebuilding\ all=Opcions de compilaci\u00f3n cambiadas, reconstruindo tot + #: ../../../processing/app/Preferences.java:80 Bulgarian=B\u00falgaro @@ -180,8 +227,13 @@ Burn\ Bootloader=Escribir bootloader #: Editor.java:2504 Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Escribindo bootloader a la Placa I/U (isto habr\u00eda de tardar un menuto)... -#: ../../../processing/app/Base.java:368 -!Can't\ open\ source\ sketch\!= +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 Canadian\ French=Franc\u00e9s de Canad\u00e1 @@ -193,6 +245,9 @@ Cancel=Cancelar #: Sketch.java:455 Cannot\ Rename=No se puede renombrar +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 Carriage\ return=Retorno de carro @@ -226,10 +281,6 @@ Close=Zarrar #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=Comentar/Descomentar -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Error d'o compilador, por favor, ninvia iste codigo a {0} - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=Compilando programa... @@ -305,9 +356,8 @@ Could\ not\ re-save\ sketch=No se podi\u00f3 alzar de nuevo o programa #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=No se pueden leyer os achustes predeterminaus.\nAmeneste reinstalar Arduino -#: Preferences.java:258 -#, java-format -!Could\ not\ read\ preferences\ from\ {0}= +#: ../../../processing/app/Sketch.java:1525 +Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=No se podi\u00f3 leyer o fichero de preferencias de compilaci\u00f3n, recompilando tot #: Base.java:2482 #, java-format @@ -330,6 +380,9 @@ Could\ not\ rename\ the\ sketch.\ (2)=No se podi\u00f3 renombrar o programa. (2) #, java-format Could\ not\ replace\ {0}=No podi\u00e9 reemplazar {0} +#: ../../../processing/app/Sketch.java:1579 +Could\ not\ write\ build\ preferences\ file=No se podi\u00f3 escribir o fichero de preferencias de compilacion + #: tools/Archiver.java:74 Couldn't\ archive\ sketch=No se podi\u00f3 archivar o programa @@ -378,12 +431,19 @@ Done\ Saving.=Alzau. #: Editor.java:2510 Done\ burning\ bootloader.=Escritura de bootloader completau. +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=Compilau. #: Editor.java:2564 Done\ printing.=Imprentau. +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=Puyau. @@ -462,6 +522,9 @@ Error\ while\ burning\ bootloader.=Error mientres se escrib\u00eda o bootloader #: ../../../processing/app/Editor.java:2555 Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=Error mientres se escrib\u00eda o bootloader\: falta parametro de configuraci\u00f3n '{0}' +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=Error mientres se cargaba o codigo {0} @@ -469,10 +532,21 @@ Error\ while\ loading\ code\ {0}=Error mientres se cargaba o codigo {0} #: Editor.java:2567 Error\ while\ printing.=Error en imprentar. +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=Error mientres la puyada\: manda o parametro de configuracion '{0}' +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 Estonian=Estonio @@ -488,6 +562,10 @@ Export\ canceled,\ changes\ must\ first\ be\ saved.=Cancelada exportaci\u00f3n, #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +Failed\ to\ open\ sketch\:\ "{0}"=Fallo en ubrir lo programa\: "{0}" + #: Editor.java:491 File=Fichero @@ -522,8 +600,9 @@ Fix\ Encoding\ &\ Reload=Reparar codificaci\u00f3n y recargar #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=Ta informaci\u00f3n de c\u00f3mo instalar bibliotecas, visite\: http\://arduino.cc/en/guide/libraries\n -#: debug/BasicUploader.java:80 -Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =Forzar reinicio usando 1200bps obridura / zarre en o puerto +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=Franc\u00e9s @@ -627,8 +706,8 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Biblioteca #: Preferences.java:106 Lithuaninan=Lituano -#: ../../../processing/app/Sketch.java:1660 -Low\ memory\ available,\ stability\ problems\ may\ occur=Poca memoria disponible, puede producir problemas d'estabilidat +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 Marathi=Marathi @@ -639,12 +718,24 @@ Message=Mensache #: ../../../processing/app/preproc/PdePreprocessor.java:412 Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Manca lo */ d'a fin d'un /* comentario */ +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Mas preferencias pueden estar editadas dreitament en o fichero #: Editor.java:2156 Moving=Movendo +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +Must\ specify\ exactly\ one\ sketch\ file=Has d'especificar exactament un fichero de programa + +#: ../../../processing/app/Preferences.java:158 +N'Ko=N'Ko + #: Sketch.java:282 Name\ for\ new\ file\:=Nombre d'o nuevo fichero\: @@ -672,12 +763,18 @@ Next\ Tab=Pestanya siguient #: Preferences.java:78 UpdateCheck.java:108 No=No +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=No s'ha seleccionau placa; por favor, seleccione una en o men\u00fa Ferramientas > Placa #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Sin cambeos necesarios ta auto formato +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=No s'adhibioron fichers a o programa @@ -687,6 +784,9 @@ No\ launcher\ available=No i hai lanzador disponible. #: SerialMonitor.java:112 No\ line\ ending=Sin achuste de linia +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=No, en serio, prene un poquet d'aire fresco. @@ -694,6 +794,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=No, en serio, prene un poque #, java-format No\ reference\ available\ for\ "{0}"=No i hai referencia disponible ta "{0}" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +No\ valid\ code\ files\ found=No s'han trobau ficheros de codigo valius + #: ../../../processing/app/Base.java:309 No\ valid\ configured\ cores\ found\!\ Exiting...=No se troboron nucleos configuraus valius\! Surtiendo... @@ -720,6 +830,9 @@ OK=Ok #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=Un fichero adhibiu a o tuyo programa. +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=Ubrir @@ -747,12 +860,22 @@ Paste=Apegar #: Preferences.java:109 Persian=Persa +#: ../../../processing/app/Preferences.java:161 +Persian\ (Iran)=Persa (Ir\u00e1n) + #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Por favor, importe a biblioteca SPI d'o men\u00fa Programa > Importar Biblioteca. +#: ../../../processing/app/debug/Compiler.java:529 +Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Por favor, importe a biblioteca Wire dende o men\u00fa Prochecto > Importar Biblioteca. + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=Por favor, instale o JDK 1.5 u superior +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 Polish=Polaco @@ -874,9 +997,15 @@ Save\ changes\ to\ "{0}"?\ \ =Alzar cambeos a "{0}"? #: Sketch.java:825 Save\ sketch\ folder\ as...=Salvar carpeta de programas como... +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=Alzando... +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=Seleccione (u creye) carpeta ta prochectos. @@ -901,14 +1030,6 @@ Send=Ninviar #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=Monitor serie -#: Serial.java:174 -#, java-format -!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.= - -#: Serial.java:121 -#, java-format -!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.= - #: Serial.java:194 #, java-format Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Puerto "{0}" no trobau. Has seleccionau o correcto d'o men\u00fa Ferramientas > Puerto serie? @@ -963,6 +1084,9 @@ Sketchbook\ folder\ disappeared=A carpeta sketchbook no ha estau trobada #: Preferences.java:315 Sketchbook\ location\:=Localizaci\u00f3n de o sketchbook +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 Sketches\ (*.ino,\ *.pde)=Sketches (*.ino, *.pde) @@ -997,6 +1121,9 @@ Tamil=Tamil #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=A parola clau 'BYTE' no tornar\u00e1 a estar valida. +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=A clase Client ha estau renombrada a EthernetClient @@ -1033,12 +1160,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=A carpeta d'o programa ha desapareixiu\nIntentar\u00e9 salvar-lo de nuevo en a mesma ubicaci\u00f3n\npero brenca mas que o codigo se perder\u00e1. -#: Sketch.java:2018 -!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.= +#: ../../../processing/app/Sketch.java:2028 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.=O nombre d'o prochecto debe estar modificau. O nombre d'o prochecto debe consistir solament de caracters ASCII y numeros (pero no puede prencipiar con un numero).\nAdemas debe contener menos de 64 caracters. #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=A carpeta de sketchbook ya no existe.\nArduino cambiar\u00e1 a ubicaci\u00f3n por defecto de\nsketchbook, y creyar\u00e1 una carpeta de prochecto\nnuevo si ye necesario. Arduino alavez deixar\u00e1\n de charrar d'ell mesmo en tercera persona. +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Ixe fichero ya s'heba copiau a la ubicaci\u00f3n\ndende a quala lo querebas adhibir,,,\nNo fer\u00e9 brenca. @@ -1142,6 +1272,10 @@ Vietnamese=Vietnam\u00e9s #: Editor.java:1105 Visit\ Arduino.cc=Visita Arduino.cc +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=WARNING\: a biblioteca {0} pareix que s'executa en {1} arquitectura(s) y puede estar incompatible con a tuya placa actual, que s'echecuta en {2} arquitectura(s). + #: Base.java:2128 Warning=Warning @@ -1240,9 +1374,6 @@ environment=entorno #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/arduino/issues - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/main/software @@ -1265,13 +1396,6 @@ name\ is\ null=o nombre ye vuedo #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=O buffer de readBytesUntil() ye masiau chicot ta {0} bytes y mesmo ta o caracter {1} - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: error interna... no trob\u00e9 o codigo - #: Editor.java:932 serialMenu\ is\ null=serialMenu ye vuedo @@ -1279,6 +1403,10 @@ serialMenu\ is\ null=serialMenu ye vuedo #, java-format the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=o puerto seleccionau {0} no existe u a tuya placa no ista connectada +#: ../../../processing/app/Base.java:389 +#, java-format +unknown\ option\:\ {0}=opcion desconoixida\: {0} + #: Preferences.java:391 upload=puyar @@ -1297,3 +1425,35 @@ upload=puyar #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"={0} Argumento invalido ta --pref, ha d'estar d'a traza "pref\=valura" + +#: ../../../processing/app/Base.java:476 +#, java-format +{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"={0}\: Nombre de placa invalido, debe estar de la forma "paquet\:arq\:placa" u "paquet\:arq\:placa\:opcions" + +#: ../../../processing/app/Base.java:509 +#, java-format +{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"={0}\: Opcion invalida ta la opci\u00f3n "{1}" ta la placa "{2}" + +#: ../../../processing/app/Base.java:507 +#, java-format +{0}\:\ Invalid\ option\ for\ board\ "{1}"={0}\: Opcion invalida ara a placa "{1}" + +#: ../../../processing/app/Base.java:502 +#, java-format +{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"={0}\: Opcion invalida, debe estar d'a forma "nombre\=valor" + +#: ../../../processing/app/Base.java:486 +#, java-format +{0}\:\ Unknown\ architecture={0}\: Arquitectura desconoixida + +#: ../../../processing/app/Base.java:491 +#, java-format +{0}\:\ Unknown\ board={0}\: Placa desconoixida + +#: ../../../processing/app/Base.java:481 +#, java-format +{0}\:\ Unknown\ package={0}\: Paquet desconoixiu diff --git a/arduino-core/src/processing/app/i18n/Resources_ar.po b/arduino-core/src/processing/app/i18n/Resources_ar.po index 2ffbaa0b0..a9da1bd94 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ar.po +++ b/arduino-core/src/processing/app/i18n/Resources_ar.po @@ -36,6 +36,12 @@ msgstr "'الفأرة' يمكن ان تعمل فقط على لوحة اردوي msgid "(edit only when Arduino is not running)" msgstr "(لا يمكن التحرير والأردوينو تعمل)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -94,6 +100,10 @@ msgstr "...اضف ملف" msgid "Add Library..." msgstr "اضف مكتبة " +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "ألباني" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -101,6 +111,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "حدث خطأ اثناء محاولة اصلاح ترميز \"تشفير\" الملف. لا تحاول اصلاح السكتش لانه قد يقوم بالكتابة فوق الإصدار القديم. استخدم فتح لاعادة فتح السكتش مرة أخرى.\n" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -179,6 +203,30 @@ msgstr "هل انت متأكد انك تريد حذف \"{0}\"؟" msgid "Are you sure you want to delete this sketch?" msgstr "هل انت متأكد انك تريد حذف الشيفرة البرمجية ؟" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "حجة مطلوبة للوحة-- " + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "حجة مطلوبة ل-- curdir " + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "حجة مطلوبة ل-- منفذ" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "الحجة المطلوبة ل-- pref" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "حجة مطلوبة ل--تفضيلات-ملف" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "أرميني" @@ -187,6 +235,10 @@ msgstr "أرميني" msgid "Asturian" msgstr "اللغة الأستورية" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "تنسيق تلقائي" @@ -228,6 +280,14 @@ msgstr "خطأ سيئ السطر : {0}" msgid "Bad file selected" msgstr "الملف المحدد غير صالح" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "لغة الباسك" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "بيلاروسي" @@ -264,6 +324,10 @@ msgstr "استعرض" msgid "Build folder disappeared or could not be written" msgstr "مجلد البناء \"Build folder\" اختفى او انه لايمكن الكتابة عليه" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "تغير بناء الخيارات ، إعادة بناء الكل" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "بلغاري" @@ -280,8 +344,14 @@ msgstr "ثبت محمل برنامج الإقلاع" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "يتم تثبيت محمل برنامج الإقلاع على اللوحة (يمكن أن يستغرق ذلك دقيقة).." -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" msgstr "" #: ../../../processing/app/Preferences.java:92 @@ -297,6 +367,10 @@ msgstr "الغاء" msgid "Cannot Rename" msgstr "لا يمكن اعادة التسمية" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "اعادة الحمل" @@ -341,11 +415,6 @@ msgstr "إغلاق" msgid "Comment/Uncomment" msgstr "ملاحظة \\ الغاء الملاحظة" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "خطأ في الترجمة, رجاءا ارسل الكود الى {0}" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "ترجمة الشيفرة البرمجية..." @@ -453,10 +522,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "لا يمكن قراءة الاعدادات الافتراضية يجب عليك اعادة تنصيب الاردوينو" -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "لا يمكن قرائة الخصائص من {0} " +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "يتعذر قراءة إنشاء ملف التفضيلات البريفوس ، إعادة بناء الكل" #: Base.java:2482 #, java-format @@ -485,6 +553,10 @@ msgstr "لا يمكن اعادة تسمية الملف. (2)" msgid "Could not replace {0}" msgstr "لا يمكن استبدال {0}" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "لا يمكن كتابة إنشاء ملف التفضيلات" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "لا يمكن ارشفة الشيفرة البرمجية" @@ -554,6 +626,11 @@ msgstr "...انتهاء الحفظ" msgid "Done burning bootloader." msgstr "انتهى تثبيت محمل برنامج الإقلاع" +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr ".انتهاء الترجمة" @@ -562,6 +639,10 @@ msgstr ".انتهاء الترجمة" msgid "Done printing." msgstr "...انتهاء الطباعة" +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "انتهى التحميل" @@ -665,6 +746,10 @@ msgstr "حدث خطأ خلال تثبيت محمل برنامج الإقلاع" msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -674,11 +759,25 @@ msgstr "خطأ اثناء تحميل الكود {0}" msgid "Error while printing." msgstr ".خطأ خلال الطباعة " +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "Eesti" @@ -699,6 +798,11 @@ msgstr "لقد ألغي التصدير، يجب حفظ التغييرات أول msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "فشل في فتح ketch : \n\"{ 0}\"" + #: Editor.java:491 msgid "File" msgstr "ملف" @@ -746,9 +850,10 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "لمزيد من المعلومات حول تنصيب المكتبات, انظر:\nhttp://arduino.cc/en/Guide/Libraries\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " -msgstr "اجبار اعادة التشغيل بواسطة 1200bps open/close on port " +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" +msgstr "" #: Preferences.java:95 msgid "French" @@ -896,8 +1001,8 @@ msgstr "يوجد مكتبة اضيفت الى مكتباتك. تفقد قائم msgid "Lithuaninan" msgstr "Lithuaninan" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: Preferences.java:107 @@ -912,6 +1017,10 @@ msgstr "رسالة" msgid "Missing the */ from the end of a /* comment */" msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "يمكن تعديل خصائص اكثر في الملف بشكل مباشر" @@ -920,6 +1029,18 @@ msgstr "يمكن تعديل خصائص اكثر في الملف بشكل مبا msgid "Moving" msgstr "نقل" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "" + #: Sketch.java:282 msgid "Name for new file:" msgstr "اسم لملف جديد:" @@ -956,6 +1077,10 @@ msgstr "تبويب جديد" msgid "No" msgstr "لا" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "لم تختار البورد; رجاءا اختار البورد من قائمة أدوات > قائمة بورد." @@ -964,6 +1089,10 @@ msgstr "لم تختار البورد; رجاءا اختار البورد من ق msgid "No changes necessary for Auto Format." msgstr "لا يوجد تغييرات ضرورية للتنسيق التلقائي." +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "لا يوجد ملفات اضيفت للشيفرة البرمجية." @@ -976,6 +1105,10 @@ msgstr "لا يوجد منصة متاحة" msgid "No line ending" msgstr "نهاية السطر غير موجودة" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "لا يا صديقي , حان الوقت لتأخذ فترة راحة قصيرة " @@ -985,6 +1118,19 @@ msgstr "لا يا صديقي , حان الوقت لتأخذ فترة راحة ق msgid "No reference available for \"{0}\"" msgstr "\"{0}\"لا يوجد مرجع متاح ل " +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "" @@ -1021,6 +1167,10 @@ msgstr "موافق" msgid "One file added to the sketch." msgstr "لقد اضيف ملف واحد للشيفرة البرمجية." +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "فتح" @@ -1057,14 +1207,27 @@ msgstr "لصق" msgid "Persian" msgstr "فارسي" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "الفارسية (إيران)" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "الرجاء استورد مكتبة الـ SPI من القائمة شيفرة البرمجية > قائمة استيراد مكتبة." +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "" + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "الرجاء تنصيب JDK 1.5 أو احدث" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "Polish" @@ -1227,10 +1390,18 @@ msgstr "\"{0}\" حفظ التغييرات ل " msgid "Save sketch folder as..." msgstr "حفظ مجلد الشيفرة البرمجية الى ..." +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "...حفظ" +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "اختيار(او انشاء جديد) لمجلد الشيفرة البرمجية" @@ -1263,20 +1434,6 @@ msgstr "ارسل" msgid "Serial Monitor" msgstr "مراقب المنفذ التسلسلي \"سيريال بورت\"" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "المنفذ التسلسلي ''{0}'' مستخدم حاليا. حاول اغلاق اي برامج تستخدم ذلك المنفذ." - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "المنفذ التسلسلي ''{0}'' مستخدم حاليا. حاول اغلاق اي برامج تستخدم ذلك المنفذ." - #: Serial.java:194 #, java-format msgid "" @@ -1356,6 +1513,10 @@ msgstr "مجلد كتاب الشيفرة البرمجية \"سكتش بوك\" م msgid "Sketchbook location:" msgstr "مكان كتاب الشيفرة البرمجية \"سكتش بوك\"" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "" @@ -1406,6 +1567,10 @@ msgstr "Tamil" msgid "The 'BYTE' keyword is no longer supported." msgstr "الكلمة الفتاحية 'BYTE' لم تعد مدعومة." +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "الـ Client class أعيد تسميته الى EthernetClient." @@ -1473,12 +1638,12 @@ msgid "" "but anything besides the code will be lost." msgstr "مجلد الشيفرة البرمجية اختفى.\nحاول اعادة حفظه في نفس المكان,\nولكن سيتم فقدان الكود." -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." -msgstr "اسم الشيفرة البرمجية تم تغيره. الاسم يجب ان يكون\nعنصراً من ترميز الآسكي او رقم (لكن لا يجوز ان يبدأ رقم).\nيجب ان يكون طوله اقل من 64 حرف ورقم." +"They should also be less than 64 characters long." +msgstr "" #: Base.java:259 msgid "" @@ -1489,6 +1654,12 @@ msgid "" "himself in the third person." msgstr "مجلد كتاب الشيفرة البرمجية \"السكتش\" لم يعد موجودا.\nسينتقل الاردوينو الى مكان كتاب الشيفرة البرمجية الافتراضي,\nوانشاء مجلد جديد اذا كان\nضرورياً. الاردوينو سيوقف الحديث \nعن نفسه." +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1631,6 +1802,13 @@ msgstr "اللغة الفيتنامية" msgid "Visit Arduino.cc" msgstr "Arduino.cc زر صفحة " +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "" + #: Base.java:2128 msgid "Warning" msgstr "تحذير" @@ -1799,10 +1977,6 @@ msgstr "البيئة" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "http://github.com/arduino/Arduino/issues" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1832,17 +2006,6 @@ msgstr "الاسم فارغ" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "readBytesUntil() byte buffer is too small for the {0} bytes up to and including char {1}" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "removeCode: خطأ داخلي .. لا يمكن ايجاد الشبفرة \"الكود\"" - #: Editor.java:932 msgid "serialMenu is null" msgstr "قائمة-المنفد التلسلسي فارغة" @@ -1853,6 +2016,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "رقم المنفذ serial port{0} المختار غير موجود او ان اللوحة غير موصولة" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "خيار غير معروف: {0}" + #: Preferences.java:391 msgid "upload" msgstr "رفع" @@ -1876,3 +2044,45 @@ msgstr "{0} | أردوينو {1}" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "{0}: خيار غير صحيح للوحة \"{1}\"" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "{0}: لوحة غير معروفة" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "{0}: حزمة غير معروفة" diff --git a/arduino-core/src/processing/app/i18n/Resources_ar.properties b/arduino-core/src/processing/app/i18n/Resources_ar.properties index dd3add66d..432b2099a 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ar.properties +++ b/arduino-core/src/processing/app/i18n/Resources_ar.properties @@ -20,6 +20,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(\u0644\u0627 \u064a\u0645\u0643\u0646 \u0627\u0644\u062a\u062d\u0631\u064a\u0631 \u0648\u0627\u0644\u0623\u0631\u062f\u0648\u064a\u0646\u0648 \u062a\u0639\u0645\u0644) +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -56,9 +59,23 @@ Add\ File...=...\u0627\u0636\u0641 \u0645\u0644\u0641 #: Base.java:963 Add\ Library...=\u0627\u0636\u0641 \u0645\u0643\u062a\u0628\u0629 +#: ../../../processing/app/Preferences.java:96 +Albanian=\u0623\u0644\u0628\u0627\u0646\u064a + #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=\u062d\u062f\u062b \u062e\u0637\u0623 \u0627\u062b\u0646\u0627\u0621 \u0645\u062d\u0627\u0648\u0644\u0629 \u0627\u0635\u0644\u0627\u062d \u062a\u0631\u0645\u064a\u0632 "\u062a\u0634\u0641\u064a\u0631" \u0627\u0644\u0645\u0644\u0641. \u0644\u0627 \u062a\u062d\u0627\u0648\u0644 \u0627\u0635\u0644\u0627\u062d \u0627\u0644\u0633\u0643\u062a\u0634 \u0644\u0627\u0646\u0647 \u0642\u062f \u064a\u0642\u0648\u0645 \u0628\u0627\u0644\u0643\u062a\u0627\u0628\u0629 \u0641\u0648\u0642 \u0627\u0644\u0625\u0635\u062f\u0627\u0631 \u0627\u0644\u0642\u062f\u064a\u0645. \u0627\u0633\u062a\u062e\u062f\u0645 \u0641\u062a\u062d \u0644\u0627\u0639\u0627\u062f\u0629 \u0641\u062a\u062d \u0627\u0644\u0633\u0643\u062a\u0634 \u0645\u0631\u0629 \u0623\u062e\u0631\u0649.\n +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=\u0645\u0634\u0643\u0644\u0629 \u063a\u064a\u0631 \u0645\u0639\u0631\u0648\u0641\u0629 \u0627\u062b\u0646\u0627\u0621 \u0645\u062d\u0627\u0648\u0644\u0629 \u062a\u062d\u0645\u064a\u0644\n\u0627\u0644\u0645\u0646\u0635\u0629 \u0627\u0644\u0645\u062e\u0635\u0635\u0629 \u0639\u0644\u0649 \u062c\u0647\u0627\u0632\u0643. @@ -108,12 +125,33 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u0647\u0644 \u0627\u0646\u062a \u #: Sketch.java:587 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u0647\u0644 \u0627\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0627\u0646\u0643 \u062a\u0631\u064a\u062f \u062d\u0630\u0641 \u0627\u0644\u0634\u064a\u0641\u0631\u0629 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629 \u061f +#: ../../../processing/app/Base.java:356 +Argument\ required\ for\ --board=\u062d\u062c\u0629 \u0645\u0637\u0644\u0648\u0628\u0629 \u0644\u0644\u0648\u062d\u0629-- + +#: ../../../processing/app/Base.java:370 +Argument\ required\ for\ --curdir=\u062d\u062c\u0629 \u0645\u0637\u0644\u0648\u0628\u0629 \u0644-- curdir + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +Argument\ required\ for\ --port=\u062d\u062c\u0629 \u0645\u0637\u0644\u0648\u0628\u0629 \u0644-- \u0645\u0646\u0641\u0630 + +#: ../../../processing/app/Base.java:377 +Argument\ required\ for\ --pref=\u0627\u0644\u062d\u062c\u0629 \u0627\u0644\u0645\u0637\u0644\u0648\u0628\u0629 \u0644-- pref + +#: ../../../processing/app/Base.java:384 +Argument\ required\ for\ --preferences-file=\u062d\u062c\u0629 \u0645\u0637\u0644\u0648\u0628\u0629 \u0644--\u062a\u0641\u0636\u064a\u0644\u0627\u062a-\u0645\u0644\u0641 + #: ../../../processing/app/Preferences.java:137 Armenian=\u0623\u0631\u0645\u064a\u0646\u064a #: ../../../processing/app/Preferences.java:138 Asturian=\u0627\u0644\u0644\u063a\u0629 \u0627\u0644\u0623\u0633\u062a\u0648\u0631\u064a\u0629 +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 Auto\ Format=\u062a\u0646\u0633\u064a\u0642 \u062a\u0644\u0642\u0627\u0626\u064a @@ -145,6 +183,12 @@ Bad\ error\ line\:\ {0}=\u062e\u0637\u0623 \u0633\u064a\u0626 \u0627\u0644\u0633 #: Editor.java:2136 Bad\ file\ selected=\u0627\u0644\u0645\u0644\u0641 \u0627\u0644\u0645\u062d\u062f\u062f \u063a\u064a\u0631 \u0635\u0627\u0644\u062d +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +Basque=\u0644\u063a\u0629 \u0627\u0644\u0628\u0627\u0633\u0643 + #: ../../../processing/app/Preferences.java:139 Belarusian=\u0628\u064a\u0644\u0627\u0631\u0648\u0633\u064a @@ -171,6 +215,9 @@ Browse=\u0627\u0633\u062a\u0639\u0631\u0636 #: Sketch.java:1392 Sketch.java:1423 Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u0645\u062c\u0644\u062f \u0627\u0644\u0628\u0646\u0627\u0621 "Build folder" \u0627\u062e\u062a\u0641\u0649 \u0627\u0648 \u0627\u0646\u0647 \u0644\u0627\u064a\u0645\u0643\u0646 \u0627\u0644\u0643\u062a\u0627\u0628\u0629 \u0639\u0644\u064a\u0647 +#: ../../../processing/app/Sketch.java:1530 +Build\ options\ changed,\ rebuilding\ all=\u062a\u063a\u064a\u0631 \u0628\u0646\u0627\u0621 \u0627\u0644\u062e\u064a\u0627\u0631\u0627\u062a \u060c \u0625\u0639\u0627\u062f\u0629 \u0628\u0646\u0627\u0621 \u0627\u0644\u0643\u0644 + #: ../../../processing/app/Preferences.java:80 Bulgarian=\u0628\u0644\u063a\u0627\u0631\u064a @@ -183,8 +230,13 @@ Burn\ Bootloader=\u062b\u0628\u062a \u0645\u062d\u0645\u0644 \u0628\u0631\u0646\ #: Editor.java:2504 Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u064a\u062a\u0645 \u062a\u062b\u0628\u064a\u062a \u0645\u062d\u0645\u0644 \u0628\u0631\u0646\u0627\u0645\u062c \u0627\u0644\u0625\u0642\u0644\u0627\u0639 \u0639\u0644\u0649 \u0627\u0644\u0644\u0648\u062d\u0629 (\u064a\u0645\u0643\u0646 \u0623\u0646 \u064a\u0633\u062a\u063a\u0631\u0642 \u0630\u0644\u0643 \u062f\u0642\u064a\u0642\u0629).. -#: ../../../processing/app/Base.java:368 -!Can't\ open\ source\ sketch\!= +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 Canadian\ French=\u0627\u0644\u0641\u0631\u0646\u0633\u064a\u0629 (\u0643\u0646\u062f\u0627) @@ -196,6 +248,9 @@ Cancel=\u0627\u0644\u063a\u0627\u0621 #: Sketch.java:455 Cannot\ Rename=\u0644\u0627 \u064a\u0645\u0643\u0646 \u0627\u0639\u0627\u062f\u0629 \u0627\u0644\u062a\u0633\u0645\u064a\u0629 +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 Carriage\ return=\u0627\u0639\u0627\u062f\u0629 \u0627\u0644\u062d\u0645\u0644 @@ -229,10 +284,6 @@ Close=\u0625\u063a\u0644\u0627\u0642 #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=\u0645\u0644\u0627\u062d\u0638\u0629 \\ \u0627\u0644\u063a\u0627\u0621 \u0627\u0644\u0645\u0644\u0627\u062d\u0638\u0629 -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=\u062e\u0637\u0623 \u0641\u064a \u0627\u0644\u062a\u0631\u062c\u0645\u0629, \u0631\u062c\u0627\u0621\u0627 \u0627\u0631\u0633\u0644 \u0627\u0644\u0643\u0648\u062f \u0627\u0644\u0649 {0} - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=\u062a\u0631\u062c\u0645\u0629 \u0627\u0644\u0634\u064a\u0641\u0631\u0629 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629... @@ -308,9 +359,8 @@ Could\ not\ re-save\ sketch=\u0644\u0627 \u064a\u0645\u0643\u0646 \u0627\u0639\u #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u0644\u0627 \u064a\u0645\u0643\u0646 \u0642\u0631\u0627\u0621\u0629 \u0627\u0644\u0627\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0627\u0641\u062a\u0631\u0627\u0636\u064a\u0629 \u064a\u062c\u0628 \u0639\u0644\u064a\u0643 \u0627\u0639\u0627\u062f\u0629 \u062a\u0646\u0635\u064a\u0628 \u0627\u0644\u0627\u0631\u062f\u0648\u064a\u0646\u0648 -#: Preferences.java:258 -#, java-format -Could\ not\ read\ preferences\ from\ {0}=\u0644\u0627 \u064a\u0645\u0643\u0646 \u0642\u0631\u0627\u0626\u0629 \u0627\u0644\u062e\u0635\u0627\u0626\u0635 \u0645\u0646 {0} +#: ../../../processing/app/Sketch.java:1525 +Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=\u064a\u062a\u0639\u0630\u0631 \u0642\u0631\u0627\u0621\u0629 \u0625\u0646\u0634\u0627\u0621 \u0645\u0644\u0641 \u0627\u0644\u062a\u0641\u0636\u064a\u0644\u0627\u062a \u0627\u0644\u0628\u0631\u064a\u0641\u0648\u0633 \u060c \u0625\u0639\u0627\u062f\u0629 \u0628\u0646\u0627\u0621 \u0627\u0644\u0643\u0644 #: Base.java:2482 #, java-format @@ -333,6 +383,9 @@ Could\ not\ rename\ the\ sketch.\ (2)=\u0644\u0627 \u064a\u0645\u0643\u0646 \u06 #, java-format Could\ not\ replace\ {0}=\u0644\u0627 \u064a\u0645\u0643\u0646 \u0627\u0633\u062a\u0628\u062f\u0627\u0644 {0} +#: ../../../processing/app/Sketch.java:1579 +Could\ not\ write\ build\ preferences\ file=\u0644\u0627 \u064a\u0645\u0643\u0646 \u0643\u062a\u0627\u0628\u0629 \u0625\u0646\u0634\u0627\u0621 \u0645\u0644\u0641 \u0627\u0644\u062a\u0641\u0636\u064a\u0644\u0627\u062a + #: tools/Archiver.java:74 Couldn't\ archive\ sketch=\u0644\u0627 \u064a\u0645\u0643\u0646 \u0627\u0631\u0634\u0641\u0629 \u0627\u0644\u0634\u064a\u0641\u0631\u0629 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629 @@ -381,12 +434,19 @@ Done\ Saving.=...\u0627\u0646\u062a\u0647\u0627\u0621 \u0627\u0644\u062d\u0641\u #: Editor.java:2510 Done\ burning\ bootloader.=\u0627\u0646\u062a\u0647\u0649 \u062a\u062b\u0628\u064a\u062a \u0645\u062d\u0645\u0644 \u0628\u0631\u0646\u0627\u0645\u062c \u0627\u0644\u0625\u0642\u0644\u0627\u0639 +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=.\u0627\u0646\u062a\u0647\u0627\u0621 \u0627\u0644\u062a\u0631\u062c\u0645\u0629 #: Editor.java:2564 Done\ printing.=...\u0627\u0646\u062a\u0647\u0627\u0621 \u0627\u0644\u0637\u0628\u0627\u0639\u0629 +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=\u0627\u0646\u062a\u0647\u0649 \u0627\u0644\u062a\u062d\u0645\u064a\u0644 @@ -465,6 +525,9 @@ Error\ while\ burning\ bootloader.=\u062d\u062f\u062b \u062e\u0637\u0623 \u062e\ #: ../../../processing/app/Editor.java:2555 !Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=\u062e\u0637\u0623 \u0627\u062b\u0646\u0627\u0621 \u062a\u062d\u0645\u064a\u0644 \u0627\u0644\u0643\u0648\u062f {0} @@ -472,10 +535,21 @@ Error\ while\ loading\ code\ {0}=\u062e\u0637\u0623 \u0627\u062b\u0646\u0627\u06 #: Editor.java:2567 Error\ while\ printing.=.\u062e\u0637\u0623 \u062e\u0644\u0627\u0644 \u0627\u0644\u0637\u0628\u0627\u0639\u0629 +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 !Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 Estonian=Eesti @@ -491,6 +565,10 @@ Export\ canceled,\ changes\ must\ first\ be\ saved.=\u0644\u0642\u062f \u0623\u0 #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +Failed\ to\ open\ sketch\:\ "{0}"=\u0641\u0634\u0644 \u0641\u064a \u0641\u062a\u062d ketch \: \n"{ 0}" + #: Editor.java:491 File=\u0645\u0644\u0641 @@ -525,8 +603,9 @@ Fix\ Encoding\ &\ Reload=\u0627\u0644\u062a\u0631\u0645\u064a\u0632 \u0648 \u062 #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=\u0644\u0645\u0632\u064a\u062f \u0645\u0646 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062a \u062d\u0648\u0644 \u062a\u0646\u0635\u064a\u0628 \u0627\u0644\u0645\u0643\u062a\u0628\u0627\u062a, \u0627\u0646\u0638\u0631\:\nhttp\://arduino.cc/en/Guide/Libraries\n -#: debug/BasicUploader.java:80 -Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =\u0627\u062c\u0628\u0627\u0631 \u0627\u0639\u0627\u062f\u0629 \u0627\u0644\u062a\u0634\u063a\u064a\u0644 \u0628\u0648\u0627\u0633\u0637\u0629 1200bps open/close on port +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=Fran\u00e7ais @@ -630,8 +709,8 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=\u064a\u064 #: Preferences.java:106 Lithuaninan=Lithuaninan -#: ../../../processing/app/Sketch.java:1660 -!Low\ memory\ available,\ stability\ problems\ may\ occur= +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 Marathi=Marathi @@ -642,12 +721,24 @@ Message=\u0631\u0633\u0627\u0644\u0629 #: ../../../processing/app/preproc/PdePreprocessor.java:412 !Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\u064a\u0645\u0643\u0646 \u062a\u0639\u062f\u064a\u0644 \u062e\u0635\u0627\u0626\u0635 \u0627\u0643\u062b\u0631 \u0641\u064a \u0627\u0644\u0645\u0644\u0641 \u0628\u0634\u0643\u0644 \u0645\u0628\u0627\u0634\u0631 #: Editor.java:2156 Moving=\u0646\u0642\u0644 +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +!Must\ specify\ exactly\ one\ sketch\ file= + +#: ../../../processing/app/Preferences.java:158 +!N'Ko= + #: Sketch.java:282 Name\ for\ new\ file\:=\u0627\u0633\u0645 \u0644\u0645\u0644\u0641 \u062c\u062f\u064a\u062f\: @@ -675,12 +766,18 @@ Next\ Tab=\u062a\u0628\u0648\u064a\u0628 \u062c\u062f\u064a\u062f #: Preferences.java:78 UpdateCheck.java:108 No=\u0644\u0627 +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u0644\u0645 \u062a\u062e\u062a\u0627\u0631 \u0627\u0644\u0628\u0648\u0631\u062f; \u0631\u062c\u0627\u0621\u0627 \u0627\u062e\u062a\u0627\u0631 \u0627\u0644\u0628\u0648\u0631\u062f \u0645\u0646 \u0642\u0627\u0626\u0645\u0629 \u0623\u062f\u0648\u0627\u062a > \u0642\u0627\u0626\u0645\u0629 \u0628\u0648\u0631\u062f. #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=\u0644\u0627 \u064a\u0648\u062c\u062f \u062a\u063a\u064a\u064a\u0631\u0627\u062a \u0636\u0631\u0648\u0631\u064a\u0629 \u0644\u0644\u062a\u0646\u0633\u064a\u0642 \u0627\u0644\u062a\u0644\u0642\u0627\u0626\u064a. +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=\u0644\u0627 \u064a\u0648\u062c\u062f \u0645\u0644\u0641\u0627\u062a \u0627\u0636\u064a\u0641\u062a \u0644\u0644\u0634\u064a\u0641\u0631\u0629 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629. @@ -690,6 +787,9 @@ No\ launcher\ available=\u0644\u0627 \u064a\u0648\u062c\u062f \u0645\u0646\u0635 #: SerialMonitor.java:112 No\ line\ ending=\u0646\u0647\u0627\u064a\u0629 \u0627\u0644\u0633\u0637\u0631 \u063a\u064a\u0631 \u0645\u0648\u062c\u0648\u062f\u0629 +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u0644\u0627 \u064a\u0627 \u0635\u062f\u064a\u0642\u064a , \u062d\u0627\u0646 \u0627\u0644\u0648\u0642\u062a \u0644\u062a\u0623\u062e\u0630 \u0641\u062a\u0631\u0629 \u0631\u0627\u062d\u0629 \u0642\u0635\u064a\u0631\u0629 @@ -697,6 +797,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u0644\u0627 \u064a\u0627 \u #, java-format No\ reference\ available\ for\ "{0}"="{0}"\u0644\u0627 \u064a\u0648\u062c\u062f \u0645\u0631\u062c\u0639 \u0645\u062a\u0627\u062d \u0644 +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +!No\ valid\ code\ files\ found= + #: ../../../processing/app/Base.java:309 !No\ valid\ configured\ cores\ found\!\ Exiting...= @@ -723,6 +833,9 @@ OK=\u0645\u0648\u0627\u0641\u0642 #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=\u0644\u0642\u062f \u0627\u0636\u064a\u0641 \u0645\u0644\u0641 \u0648\u0627\u062d\u062f \u0644\u0644\u0634\u064a\u0641\u0631\u0629 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629. +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=\u0641\u062a\u062d @@ -750,12 +863,22 @@ Paste=\u0644\u0635\u0642 #: Preferences.java:109 Persian=\u0641\u0627\u0631\u0633\u064a +#: ../../../processing/app/Preferences.java:161 +Persian\ (Iran)=\u0627\u0644\u0641\u0627\u0631\u0633\u064a\u0629 (\u0625\u064a\u0631\u0627\u0646) + #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=\u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0633\u062a\u0648\u0631\u062f \u0645\u0643\u062a\u0628\u0629 \u0627\u0644\u0640 SPI \u0645\u0646 \u0627\u0644\u0642\u0627\u0626\u0645\u0629 \u0634\u064a\u0641\u0631\u0629 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629 > \u0642\u0627\u0626\u0645\u0629 \u0627\u0633\u062a\u064a\u0631\u0627\u062f \u0645\u0643\u062a\u0628\u0629. +#: ../../../processing/app/debug/Compiler.java:529 +!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=\u0627\u0644\u0631\u062c\u0627\u0621 \u062a\u0646\u0635\u064a\u0628 JDK 1.5 \u0623\u0648 \u0627\u062d\u062f\u062b +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 Polish=Polish @@ -877,9 +1000,15 @@ Save\ changes\ to\ "{0}"?\ \ ="{0}" \u062d\u0641\u0638 \u0627\u0644\u062a\u063a\ #: Sketch.java:825 Save\ sketch\ folder\ as...=\u062d\u0641\u0638 \u0645\u062c\u0644\u062f \u0627\u0644\u0634\u064a\u0641\u0631\u0629 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629 \u0627\u0644\u0649 ... +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=...\u062d\u0641\u0638 +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=\u0627\u062e\u062a\u064a\u0627\u0631(\u0627\u0648 \u0627\u0646\u0634\u0627\u0621 \u062c\u062f\u064a\u062f) \u0644\u0645\u062c\u0644\u062f \u0627\u0644\u0634\u064a\u0641\u0631\u0629 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629 @@ -904,14 +1033,6 @@ Send=\u0627\u0631\u0633\u0644 #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=\u0645\u0631\u0627\u0642\u0628 \u0627\u0644\u0645\u0646\u0641\u0630 \u0627\u0644\u062a\u0633\u0644\u0633\u0644\u064a "\u0633\u064a\u0631\u064a\u0627\u0644 \u0628\u0648\u0631\u062a" -#: Serial.java:174 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=\u0627\u0644\u0645\u0646\u0641\u0630 \u0627\u0644\u062a\u0633\u0644\u0633\u0644\u064a ''{0}'' \u0645\u0633\u062a\u062e\u062f\u0645 \u062d\u0627\u0644\u064a\u0627. \u062d\u0627\u0648\u0644 \u0627\u063a\u0644\u0627\u0642 \u0627\u064a \u0628\u0631\u0627\u0645\u062c \u062a\u0633\u062a\u062e\u062f\u0645 \u0630\u0644\u0643 \u0627\u0644\u0645\u0646\u0641\u0630. - -#: Serial.java:121 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=\u0627\u0644\u0645\u0646\u0641\u0630 \u0627\u0644\u062a\u0633\u0644\u0633\u0644\u064a ''{0}'' \u0645\u0633\u062a\u062e\u062f\u0645 \u062d\u0627\u0644\u064a\u0627. \u062d\u0627\u0648\u0644 \u0627\u063a\u0644\u0627\u0642 \u0627\u064a \u0628\u0631\u0627\u0645\u062c \u062a\u0633\u062a\u062e\u062f\u0645 \u0630\u0644\u0643 \u0627\u0644\u0645\u0646\u0641\u0630. - #: Serial.java:194 #, java-format Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=\u0627\u0644\u0645\u0646\u0641\u0630 \u0627\u0644\u062a\u0633\u0644\u0633\u0644\u064a ''{0}'' \u063a\u064a\u0631 \u0645\u0648\u062c\u0648\u062f. \u0647\u0644 \u0642\u0645\u062a \u0628\u0625\u062e\u062a\u064a\u0627\u0631 \u0627\u0644\u0645\u0646\u0641\u0630 \u0627\u0644\u0635\u062d\u064a\u062d \u0645\u0646 \u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u0627\u062f\u0648\u0627\u062a > \u0627\u0644\u0645\u0646\u0641\u0630 \u0627\u0644\u062a\u0633\u0644\u0633\u0644\u064a @@ -966,6 +1087,9 @@ Sketchbook\ folder\ disappeared=\u0645\u062c\u0644\u062f \u0643\u062a\u0627\u062 #: Preferences.java:315 Sketchbook\ location\:=\u0645\u0643\u0627\u0646 \u0643\u062a\u0627\u0628 \u0627\u0644\u0634\u064a\u0641\u0631\u0629 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629 "\u0633\u0643\u062a\u0634 \u0628\u0648\u0643" +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 !Sketches\ (*.ino,\ *.pde)= @@ -1000,6 +1124,9 @@ Tamil=Tamil #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=\u0627\u0644\u0643\u0644\u0645\u0629 \u0627\u0644\u0641\u062a\u0627\u062d\u064a\u0629 'BYTE' \u0644\u0645 \u062a\u0639\u062f \u0645\u062f\u0639\u0648\u0645\u0629. +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=\u0627\u0644\u0640 Client class \u0623\u0639\u064a\u062f \u062a\u0633\u0645\u064a\u062a\u0647 \u0627\u0644\u0649 EthernetClient. @@ -1036,12 +1163,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=\u0645\u062c\u0644\u062f \u0627\u0644\u0634\u064a\u0641\u0631\u0629 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629 \u0627\u062e\u062a\u0641\u0649.\n\u062d\u0627\u0648\u0644 \u0627\u0639\u0627\u062f\u0629 \u062d\u0641\u0638\u0647 \u0641\u064a \u0646\u0641\u0633 \u0627\u0644\u0645\u0643\u0627\u0646,\n\u0648\u0644\u0643\u0646 \u0633\u064a\u062a\u0645 \u0641\u0642\u062f\u0627\u0646 \u0627\u0644\u0643\u0648\u062f. -#: Sketch.java:2018 -The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=\u0627\u0633\u0645 \u0627\u0644\u0634\u064a\u0641\u0631\u0629 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629 \u062a\u0645 \u062a\u063a\u064a\u0631\u0647. \u0627\u0644\u0627\u0633\u0645 \u064a\u062c\u0628 \u0627\u0646 \u064a\u0643\u0648\u0646\n\u0639\u0646\u0635\u0631\u0627\u064b \u0645\u0646 \u062a\u0631\u0645\u064a\u0632 \u0627\u0644\u0622\u0633\u0643\u064a \u0627\u0648 \u0631\u0642\u0645 (\u0644\u0643\u0646 \u0644\u0627 \u064a\u062c\u0648\u0632 \u0627\u0646 \u064a\u0628\u062f\u0623 \u0631\u0642\u0645).\n\u064a\u062c\u0628 \u0627\u0646 \u064a\u0643\u0648\u0646 \u0637\u0648\u0644\u0647 \u0627\u0642\u0644 \u0645\u0646 64 \u062d\u0631\u0641 \u0648\u0631\u0642\u0645. +#: ../../../processing/app/Sketch.java:2028 +!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=\u0645\u062c\u0644\u062f \u0643\u062a\u0627\u0628 \u0627\u0644\u0634\u064a\u0641\u0631\u0629 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629 "\u0627\u0644\u0633\u0643\u062a\u0634" \u0644\u0645 \u064a\u0639\u062f \u0645\u0648\u062c\u0648\u062f\u0627.\n\u0633\u064a\u0646\u062a\u0642\u0644 \u0627\u0644\u0627\u0631\u062f\u0648\u064a\u0646\u0648 \u0627\u0644\u0649 \u0645\u0643\u0627\u0646 \u0643\u062a\u0627\u0628 \u0627\u0644\u0634\u064a\u0641\u0631\u0629 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629 \u0627\u0644\u0627\u0641\u062a\u0631\u0627\u0636\u064a,\n\u0648\u0627\u0646\u0634\u0627\u0621 \u0645\u062c\u0644\u062f \u062c\u062f\u064a\u062f \u0627\u0630\u0627 \u0643\u0627\u0646\n\u0636\u0631\u0648\u0631\u064a\u0627\u064b. \u0627\u0644\u0627\u0631\u062f\u0648\u064a\u0646\u0648 \u0633\u064a\u0648\u0642\u0641 \u0627\u0644\u062d\u062f\u064a\u062b \n\u0639\u0646 \u0646\u0641\u0633\u0647. +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u0647\u0630\u0627 \u0627\u0644\u0645\u0644\u0641 \u062a\u0645 \u0628\u0627\u0644\u0641\u0639\u0644 \u0646\u0633\u062e\u0647 \u0627\u0644\u0649\n\u0627\u0644\u0645\u0648\u0642\u0639 \u0627\u0644\u0630\u064a \u062a\u062d\u0627\u0648\u0644 \u0627\u0636\u0627\u0641\u062a\u0647 \u0627\u0644\u064a\u0647.\n\u0627\u0646\u062a \u0641\u064a \u062d\u0627\u0644\u0629 \u062a\u0633\u0645\u0649 "\u0643\u0623\u0646 \u0634\u064a\u0626\u0627 \u0644\u0645 \u064a\u062d\u062f\u062b" @@ -1145,6 +1275,10 @@ Vietnamese=\u0627\u0644\u0644\u063a\u0629 \u0627\u0644\u0641\u064a\u062a\u0646\u #: Editor.java:1105 Visit\ Arduino.cc=Arduino.cc \u0632\u0631 \u0635\u0641\u062d\u0629 +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= + #: Base.java:2128 Warning=\u062a\u062d\u0630\u064a\u0631 @@ -1243,9 +1377,6 @@ environment=\u0627\u0644\u0628\u064a\u0626\u0629 #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1268,13 +1399,6 @@ name\ is\ null=\u0627\u0644\u0627\u0633\u0645 \u0641\u0627\u0631\u063a #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() byte buffer is too small for the {0} bytes up to and including char {1} - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: \u062e\u0637\u0623 \u062f\u0627\u062e\u0644\u064a .. \u0644\u0627 \u064a\u0645\u0643\u0646 \u0627\u064a\u062c\u0627\u062f \u0627\u0644\u0634\u0628\u0641\u0631\u0629 "\u0627\u0644\u0643\u0648\u062f" - #: Editor.java:932 serialMenu\ is\ null=\u0642\u0627\u0626\u0645\u0629-\u0627\u0644\u0645\u0646\u0641\u062f \u0627\u0644\u062a\u0644\u0633\u0644\u0633\u064a \u0641\u0627\u0631\u063a\u0629 @@ -1282,6 +1406,10 @@ serialMenu\ is\ null=\u0642\u0627\u0626\u0645\u0629-\u0627\u0644\u0645\u0646\u06 #, java-format the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=\u0631\u0642\u0645 \u0627\u0644\u0645\u0646\u0641\u0630 serial port{0} \u0627\u0644\u0645\u062e\u062a\u0627\u0631 \u063a\u064a\u0631 \u0645\u0648\u062c\u0648\u062f \u0627\u0648 \u0627\u0646 \u0627\u0644\u0644\u0648\u062d\u0629 \u063a\u064a\u0631 \u0645\u0648\u0635\u0648\u0644\u0629 +#: ../../../processing/app/Base.java:389 +#, java-format +unknown\ option\:\ {0}=\u062e\u064a\u0627\u0631 \u063a\u064a\u0631 \u0645\u0639\u0631\u0648\u0641\: {0} + #: Preferences.java:391 upload=\u0631\u0641\u0639 @@ -1300,3 +1428,35 @@ upload=\u0631\u0641\u0639 #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= + +#: ../../../processing/app/Base.java:476 +#, java-format +!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= + +#: ../../../processing/app/Base.java:509 +#, java-format +!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= + +#: ../../../processing/app/Base.java:507 +#, java-format +{0}\:\ Invalid\ option\ for\ board\ "{1}"={0}\: \u062e\u064a\u0627\u0631 \u063a\u064a\u0631 \u0635\u062d\u064a\u062d \u0644\u0644\u0648\u062d\u0629 "{1}" + +#: ../../../processing/app/Base.java:502 +#, java-format +!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= + +#: ../../../processing/app/Base.java:486 +#, java-format +!{0}\:\ Unknown\ architecture= + +#: ../../../processing/app/Base.java:491 +#, java-format +{0}\:\ Unknown\ board={0}\: \u0644\u0648\u062d\u0629 \u063a\u064a\u0631 \u0645\u0639\u0631\u0648\u0641\u0629 + +#: ../../../processing/app/Base.java:481 +#, java-format +{0}\:\ Unknown\ package={0}\: \u062d\u0632\u0645\u0629 \u063a\u064a\u0631 \u0645\u0639\u0631\u0648\u0641\u0629 diff --git a/arduino-core/src/processing/app/i18n/Resources_ast.po b/arduino-core/src/processing/app/i18n/Resources_ast.po index f636e123a..e1efcf5af 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ast.po +++ b/arduino-core/src/processing/app/i18n/Resources_ast.po @@ -33,6 +33,12 @@ msgstr "" msgid "(edit only when Arduino is not running)" msgstr "" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr "" @@ -91,6 +97,10 @@ msgstr "" msgid "Add Library..." msgstr "Amestar biblioteca..." +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -98,6 +108,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -176,6 +200,30 @@ msgstr "" msgid "Are you sure you want to delete this sketch?" msgstr "" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "" @@ -184,6 +232,10 @@ msgstr "" msgid "Asturian" msgstr "" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "" @@ -225,6 +277,14 @@ msgstr "" msgid "Bad file selected" msgstr "" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "" @@ -261,6 +321,10 @@ msgstr "" msgid "Build folder disappeared or could not be written" msgstr "" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "" @@ -277,8 +341,14 @@ msgstr "" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "" -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" msgstr "" #: ../../../processing/app/Preferences.java:92 @@ -294,6 +364,10 @@ msgstr "" msgid "Cannot Rename" msgstr "" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "" @@ -338,11 +412,6 @@ msgstr "" msgid "Comment/Uncomment" msgstr "" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "" @@ -450,9 +519,8 @@ msgid "" "You'll need to reinstall Arduino." msgstr "" -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" msgstr "" #: Base.java:2482 @@ -482,6 +550,10 @@ msgstr "" msgid "Could not replace {0}" msgstr "" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "" @@ -551,6 +623,11 @@ msgstr "" msgid "Done burning bootloader." msgstr "" +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "" @@ -559,6 +636,10 @@ msgstr "" msgid "Done printing." msgstr "" +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "" @@ -662,6 +743,10 @@ msgstr "" msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -671,11 +756,25 @@ msgstr "" msgid "Error while printing." msgstr "" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "" @@ -696,6 +795,11 @@ msgstr "" msgid "FAQ.html" msgstr "" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "" + #: Editor.java:491 msgid "File" msgstr "" @@ -743,8 +847,9 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" msgstr "" #: Preferences.java:95 @@ -893,8 +998,8 @@ msgstr "" msgid "Lithuaninan" msgstr "" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: Preferences.java:107 @@ -909,6 +1014,10 @@ msgstr "" msgid "Missing the */ from the end of a /* comment */" msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "" @@ -917,6 +1026,18 @@ msgstr "" msgid "Moving" msgstr "" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "" + #: Sketch.java:282 msgid "Name for new file:" msgstr "" @@ -953,6 +1074,10 @@ msgstr "" msgid "No" msgstr "" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "" @@ -961,6 +1086,10 @@ msgstr "" msgid "No changes necessary for Auto Format." msgstr "" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "" @@ -973,6 +1102,10 @@ msgstr "" msgid "No line ending" msgstr "" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "De veres que non, ye hora de que tome l'aire un poco." @@ -982,6 +1115,19 @@ msgstr "De veres que non, ye hora de que tome l'aire un poco." msgid "No reference available for \"{0}\"" msgstr "" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "" @@ -1018,6 +1164,10 @@ msgstr "" msgid "One file added to the sketch." msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "" @@ -1054,14 +1204,27 @@ msgstr "" msgid "Persian" msgstr "" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "" +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "" + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "Por favor, instale JDK 1.5 o mayor" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "" @@ -1224,10 +1387,18 @@ msgstr "" msgid "Save sketch folder as..." msgstr "" +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "" +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "" @@ -1260,20 +1431,6 @@ msgstr "" msgid "Serial Monitor" msgstr "" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "" - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "" - #: Serial.java:194 #, java-format msgid "" @@ -1353,6 +1510,10 @@ msgstr "Desapaeció'l direutoriu Cartafueyu de bocetos" msgid "Sketchbook location:" msgstr "" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "" @@ -1403,6 +1564,10 @@ msgstr "" msgid "The 'BYTE' keyword is no longer supported." msgstr "" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "" @@ -1470,11 +1635,11 @@ msgid "" "but anything besides the code will be lost." msgstr "" -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." +"They should also be less than 64 characters long." msgstr "" #: Base.java:259 @@ -1486,6 +1651,12 @@ msgid "" "himself in the third person." msgstr "El direutoriu cartafueyu de bocetos yá nun esiste.\nArduino camudará al llugar predetermináu del cartafueyu\nde bocetos, y creará un direutoriu cartafueyu de bocetos\nnuevu si ye necesario. Arduino entós dexará de falar de\nsigo mesmu en tercera persona." +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1628,6 +1799,13 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "" + #: Base.java:2128 msgid "Warning" msgstr "" @@ -1796,10 +1974,6 @@ msgstr "" msgid "http://arduino.cc/" msgstr "" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "" @@ -1829,17 +2003,6 @@ msgstr "" msgid "platforms.html" msgstr "" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "" - #: Editor.java:932 msgid "serialMenu is null" msgstr "" @@ -1850,6 +2013,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "" + #: Preferences.java:391 msgid "upload" msgstr "" @@ -1873,3 +2041,45 @@ msgstr "" #, java-format msgid "{0}.html" msgstr "" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "" diff --git a/arduino-core/src/processing/app/i18n/Resources_ast.properties b/arduino-core/src/processing/app/i18n/Resources_ast.properties index 3bc8b4040..122e5e515 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ast.properties +++ b/arduino-core/src/processing/app/i18n/Resources_ast.properties @@ -17,6 +17,9 @@ #: Preferences.java:478 !(edit\ only\ when\ Arduino\ is\ not\ running)= +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 !.pde\ ->\ .ino= @@ -53,9 +56,23 @@ #: Base.java:963 Add\ Library...=Amestar biblioteca... +#: ../../../processing/app/Preferences.java:96 +!Albanian= + #: tools/FixEncoding.java:77 !An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n= +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Hebo un error desconoc\u00edu al intentar cargar\nc\u00f3digu espec\u00edficu de la plataforma pa la m\u00e1quina. @@ -105,12 +122,33 @@ Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ #: Sketch.java:587 !Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?= +#: ../../../processing/app/Base.java:356 +!Argument\ required\ for\ --board= + +#: ../../../processing/app/Base.java:370 +!Argument\ required\ for\ --curdir= + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +!Argument\ required\ for\ --port= + +#: ../../../processing/app/Base.java:377 +!Argument\ required\ for\ --pref= + +#: ../../../processing/app/Base.java:384 +!Argument\ required\ for\ --preferences-file= + #: ../../../processing/app/Preferences.java:137 !Armenian= #: ../../../processing/app/Preferences.java:138 !Asturian= +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 !Auto\ Format= @@ -142,6 +180,12 @@ Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ #: Editor.java:2136 !Bad\ file\ selected= +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +!Basque= + #: ../../../processing/app/Preferences.java:139 !Belarusian= @@ -168,6 +212,9 @@ Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ #: Sketch.java:1392 Sketch.java:1423 !Build\ folder\ disappeared\ or\ could\ not\ be\ written= +#: ../../../processing/app/Sketch.java:1530 +!Build\ options\ changed,\ rebuilding\ all= + #: ../../../processing/app/Preferences.java:80 !Bulgarian= @@ -180,8 +227,13 @@ Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ #: Editor.java:2504 !Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...= -#: ../../../processing/app/Base.java:368 -!Can't\ open\ source\ sketch\!= +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 !Canadian\ French= @@ -193,6 +245,9 @@ Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ #: Sketch.java:455 !Cannot\ Rename= +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 !Carriage\ return= @@ -226,10 +281,6 @@ Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ #: Editor.java:1208 Editor.java:2749 !Comment/Uncomment= -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -!Compiler\ error,\ please\ submit\ this\ code\ to\ {0}= - #: Sketch.java:1608 Editor.java:1890 !Compiling\ sketch...= @@ -305,9 +356,8 @@ Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ #: Preferences.java:219 !Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= -#: Preferences.java:258 -#, java-format -!Could\ not\ read\ preferences\ from\ {0}= +#: ../../../processing/app/Sketch.java:1525 +!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= #: Base.java:2482 #, java-format @@ -330,6 +380,9 @@ Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ #, java-format !Could\ not\ replace\ {0}= +#: ../../../processing/app/Sketch.java:1579 +!Could\ not\ write\ build\ preferences\ file= + #: tools/Archiver.java:74 !Couldn't\ archive\ sketch= @@ -378,12 +431,19 @@ Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ #: Editor.java:2510 !Done\ burning\ bootloader.= +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 !Done\ compiling.= #: Editor.java:2564 !Done\ printing.= +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 !Done\ uploading.= @@ -462,6 +522,9 @@ Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ #: ../../../processing/app/Editor.java:2555 !Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format !Error\ while\ loading\ code\ {0}= @@ -469,10 +532,21 @@ Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ #: Editor.java:2567 !Error\ while\ printing.= +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 !Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 !Estonian= @@ -488,6 +562,10 @@ Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ #: Base.java:2100 !FAQ.html= +#: ../../../processing/app/Base.java:416 +#, java-format +!Failed\ to\ open\ sketch\:\ "{0}"= + #: Editor.java:491 !File= @@ -522,8 +600,9 @@ Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ #: Base.java:1851 !For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n= -#: debug/BasicUploader.java:80 -!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ = +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 !French= @@ -627,8 +706,8 @@ Ignoring\ bad\ library\ name=Inorando un mal nome de biblioteca #: Preferences.java:106 !Lithuaninan= -#: ../../../processing/app/Sketch.java:1660 -!Low\ memory\ available,\ stability\ problems\ may\ occur= +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 !Marathi= @@ -639,12 +718,24 @@ Ignoring\ bad\ library\ name=Inorando un mal nome de biblioteca #: ../../../processing/app/preproc/PdePreprocessor.java:412 !Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 !More\ preferences\ can\ be\ edited\ directly\ in\ the\ file= #: Editor.java:2156 !Moving= +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +!Must\ specify\ exactly\ one\ sketch\ file= + +#: ../../../processing/app/Preferences.java:158 +!N'Ko= + #: Sketch.java:282 !Name\ for\ new\ file\:= @@ -672,12 +763,18 @@ Ignoring\ bad\ library\ name=Inorando un mal nome de biblioteca #: Preferences.java:78 UpdateCheck.java:108 !No= +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 !No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.= #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 !No\ changes\ necessary\ for\ Auto\ Format.= +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 !No\ files\ were\ added\ to\ the\ sketch.= @@ -687,6 +784,9 @@ Ignoring\ bad\ library\ name=Inorando un mal nome de biblioteca #: SerialMonitor.java:112 !No\ line\ ending= +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=De veres que non, ye hora de que tome l'aire un poco. @@ -694,6 +794,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=De veres que non, ye hora de #, java-format !No\ reference\ available\ for\ "{0}"= +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +!No\ valid\ code\ files\ found= + #: ../../../processing/app/Base.java:309 !No\ valid\ configured\ cores\ found\!\ Exiting...= @@ -720,6 +830,9 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=De veres que non, ye hora de #: Sketch.java:992 Editor.java:376 !One\ file\ added\ to\ the\ sketch.= +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 !Open= @@ -747,12 +860,22 @@ Open...=Abrir... #: Preferences.java:109 !Persian= +#: ../../../processing/app/Preferences.java:161 +!Persian\ (Iran)= + #: debug/Compiler.java:408 !Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= +#: ../../../processing/app/debug/Compiler.java:529 +!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=Por favor, instale JDK 1.5 o mayor +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 !Polish= @@ -874,9 +997,15 @@ Quit=Colar #: Sketch.java:825 !Save\ sketch\ folder\ as...= +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 !Saving...= +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 !Select\ (or\ create\ new)\ folder\ for\ sketches...= @@ -901,14 +1030,6 @@ Quit=Colar #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 !Serial\ Monitor= -#: Serial.java:174 -#, java-format -!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.= - -#: Serial.java:121 -#, java-format -!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.= - #: Serial.java:194 #, java-format !Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?= @@ -963,6 +1084,9 @@ Sketchbook\ folder\ disappeared=Desapaeci\u00f3'l direutoriu Cartafueyu de bocet #: Preferences.java:315 !Sketchbook\ location\:= +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 !Sketches\ (*.ino,\ *.pde)= @@ -997,6 +1121,9 @@ Sunshine=Soleyero #: debug/Compiler.java:414 !The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.= +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 !The\ Client\ class\ has\ been\ renamed\ EthernetClient.= @@ -1033,12 +1160,15 @@ The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ bas #: Sketch.java:1755 !The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.= -#: Sketch.java:2018 -!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.= +#: ../../../processing/app/Sketch.java:2028 +!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=El direutoriu cartafueyu de bocetos y\u00e1 nun esiste.\nArduino camudar\u00e1 al llugar predetermin\u00e1u del cartafueyu\nde bocetos, y crear\u00e1 un direutoriu cartafueyu de bocetos\nnuevu si ye necesario. Arduino ent\u00f3s dexar\u00e1 de falar de\nsigo mesmu en tercera persona. +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 !This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= @@ -1142,6 +1272,10 @@ Time\ for\ a\ Break=Tiempu pa un descansu #: Editor.java:1105 !Visit\ Arduino.cc= +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= + #: Base.java:2128 !Warning= @@ -1240,9 +1374,6 @@ You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day #: Editor.java:1108 !http\://arduino.cc/= -#: ../../../processing/app/debug/Compiler.java:49 -!http\://github.com/arduino/Arduino/issues= - #: UpdateCheck.java:118 !http\://www.arduino.cc/en/Main/Software= @@ -1265,13 +1396,6 @@ You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day #: Base.java:2090 !platforms.html= -#: Serial.java:451 -#, java-format -!readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}= - -#: Sketch.java:647 -!removeCode\:\ internal\ error..\ could\ not\ find\ code= - #: Editor.java:932 !serialMenu\ is\ null= @@ -1279,6 +1403,10 @@ You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day #, java-format !the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected= +#: ../../../processing/app/Base.java:389 +#, java-format +!unknown\ option\:\ {0}= + #: Preferences.java:391 !upload= @@ -1297,3 +1425,35 @@ You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day #: Editor.java:1874 #, java-format !{0}.html= + +#: ../../../processing/app/Base.java:519 +#, java-format +!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= + +#: ../../../processing/app/Base.java:476 +#, java-format +!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= + +#: ../../../processing/app/Base.java:509 +#, java-format +!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= + +#: ../../../processing/app/Base.java:507 +#, java-format +!{0}\:\ Invalid\ option\ for\ board\ "{1}"= + +#: ../../../processing/app/Base.java:502 +#, java-format +!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= + +#: ../../../processing/app/Base.java:486 +#, java-format +!{0}\:\ Unknown\ architecture= + +#: ../../../processing/app/Base.java:491 +#, java-format +!{0}\:\ Unknown\ board= + +#: ../../../processing/app/Base.java:481 +#, java-format +!{0}\:\ Unknown\ package= diff --git a/arduino-core/src/processing/app/i18n/Resources_be.po b/arduino-core/src/processing/app/i18n/Resources_be.po index ba3fac612..4232adb2f 100644 --- a/arduino-core/src/processing/app/i18n/Resources_be.po +++ b/arduino-core/src/processing/app/i18n/Resources_be.po @@ -33,6 +33,12 @@ msgstr "'Mouse' падтрымліваецца толькі на Arduino Leonard msgid "(edit only when Arduino is not running)" msgstr "(рэдагаваць толькі калі Arduino не запушчаны)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -91,6 +97,10 @@ msgstr "Дадаць Файл" msgid "Add Library..." msgstr "Дадаць бібліятэку..." +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "Албанская" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -98,6 +108,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "Здарылася памылка падчас спробы змяніць кадыроўку файла.\nНе спрабуйце захаваць гэты скетч, бо ён можа перапісаць старую\nверсію. Паўторна адчыніце скетч і паспрабуйце наноў.\n" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -176,6 +200,30 @@ msgstr "Вы сапраўды жадаеце выдаліць \"{0}\"?" msgid "Are you sure you want to delete this sketch?" msgstr "Вы сапраўды жадаеце выдаліць гэты скетч?" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "Патрэбны аргумент для --board" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "Патрэбны аргумент для --curdir" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "Патрэбны аргумент для --port" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "Патрэбны аргумент для --pref" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "Патрэбны аргумент для --preferences-file" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "Армянская" @@ -184,6 +232,10 @@ msgstr "Армянская" msgid "Asturian" msgstr "Астурыйская" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "Аўтафармат" @@ -225,6 +277,14 @@ msgstr "Кепскі радок памылак: {0}" msgid "Bad file selected" msgstr "Абраны кепскі файл" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "мова Баскаў" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "Беларуская" @@ -261,6 +321,10 @@ msgstr "Агляд" msgid "Build folder disappeared or could not be written" msgstr "Каталог пабудовы знік ці недаступны для запісу" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "Опцыі Будовы зменены, перабудоўваем усё" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Балгарская" @@ -277,9 +341,15 @@ msgstr "Прашыць Загрузчык" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "Прашыванне загрузчыка ў I/O Board (можа заняць хвіліну)..." -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" -msgstr "Немагчыма адчыніць скетч!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" +msgstr "" #: ../../../processing/app/Preferences.java:92 msgid "Canadian French" @@ -294,6 +364,10 @@ msgstr "Скасаваць" msgid "Cannot Rename" msgstr "Немагчыма Перайменаваць" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "Вяртанне карэткі" @@ -338,11 +412,6 @@ msgstr "Зачыніць" msgid "Comment/Uncomment" msgstr "Закаментаваць/Раскаментаваць" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "Памылка кампілятара, калі ласка дашліце гэты код на {0}" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "Кампіляцыя скетчу..." @@ -450,10 +519,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Немагчыма прачытаць наладкі па-змоўчванню.\nПатрэбна пераўсталяваць Arduino." -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "Немагчыма прачытаць наладкі з {0}" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "" #: Base.java:2482 #, java-format @@ -482,6 +550,10 @@ msgstr "Немагчыма перайменаваць скетч. (2)" msgid "Could not replace {0}" msgstr "Немагчыма замяніць {0}" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Немагчыма архіваваць скетч" @@ -551,6 +623,11 @@ msgstr "Захаванне Выканана" msgid "Done burning bootloader." msgstr "Выканана прашыванне загрузчыка." +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "Кампіляцыя выканана." @@ -559,6 +636,10 @@ msgstr "Кампіляцыя выканана." msgid "Done printing." msgstr "Друк выкананы." +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "Выгрузка выканана." @@ -662,6 +743,10 @@ msgstr "Памылка падчас прашывання загрузчыка." msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "Памылка падчас прашывання загрузчыка: бракуе '{0}' канфігурацыйнага параметра" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -671,11 +756,25 @@ msgstr "Памылка падчас загрузкі коду {0}" msgid "Error while printing." msgstr "Памылка падчас друку." +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "Памылка падчас выгрузкі: бракуе '{0}' канфігурацыйнага параметра" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "Эстонская" @@ -696,6 +795,11 @@ msgstr "Экспарт скасаваны, спачатку патрэбна з msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "Не ўдалося адчыніць скетч: \"{0}\"" + #: Editor.java:491 msgid "File" msgstr "Файл" @@ -743,9 +847,10 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "Дзеля інфармацыі, як усталёўваць бібліятэкі, глядзі: http://arduino.cc/en/Guide/Libraries\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " -msgstr "Прымусовы скід хуткасці на 1200bps open/close на порт" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" +msgstr "" #: Preferences.java:95 msgid "French" @@ -893,9 +998,9 @@ msgstr "Біліятэка дададзена да вашых біліятэк. msgid "Lithuaninan" msgstr "Літоўская" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" -msgstr "Даступна мала памяці, магчымы праблемы са стабільнасцю" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." +msgstr "" #: Preferences.java:107 msgid "Marathi" @@ -909,6 +1014,10 @@ msgstr "Паведамленне" msgid "Missing the */ from the end of a /* comment */" msgstr "Адсутнічае паслядоўнасць */ ад пачатку /* каментара */" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "Болей наладак можна змяніць наўпрост у файле" @@ -917,6 +1026,18 @@ msgstr "Болей наладак можна змяніць наўпрост у msgid "Moving" msgstr "Перасоўванне" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "N'Ko" + #: Sketch.java:282 msgid "Name for new file:" msgstr "Імя для новага файла:" @@ -953,6 +1074,10 @@ msgstr "Наступны Tab" msgid "No" msgstr "Не" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "Плата не абрана; калі ласка абярыце плату праз меню \"Інструменты\" > \"Плата\"." @@ -961,6 +1086,10 @@ msgstr "Плата не абрана; калі ласка абярыце пла msgid "No changes necessary for Auto Format." msgstr "Не патрэбна зменаў для аўтафармату." +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "У скетч не дададзена файлаў." @@ -973,6 +1102,10 @@ msgstr "launcher недаступны" msgid "No line ending" msgstr "Няма канца радка" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "Сапраўды, вам патрэбна свежае паветра." @@ -982,6 +1115,19 @@ msgstr "Сапраўды, вам патрэбна свежае паветра." msgid "No reference available for \"{0}\"" msgstr "Ня знойдзена супадзенняў з \"{0}\"" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "Не знойдзена годных канфігурацыйных кампанентаў! Выходзім..." @@ -1018,6 +1164,10 @@ msgstr "OK" msgid "One file added to the sketch." msgstr "Да скетча даданы адзін файл." +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "Адчыніць" @@ -1054,14 +1204,27 @@ msgstr "Уставіць" msgid "Persian" msgstr "Персідская" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "Персідская (Іран)" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "Калі ласка імпартуйце SPI-бібліятэку праз меню Sketch > Import Library." +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "" + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "Калі ласка, усталюйце JDK 1.5 ці навей" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "Польская" @@ -1224,10 +1387,18 @@ msgstr "Захаваць змены ў \"{0}\"? " msgid "Save sketch folder as..." msgstr "Захаваць каталог скетчаў як..." +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "Захоўваем..." +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "Абраць (ці стварыць новы) каталог для скетчаў..." @@ -1260,20 +1431,6 @@ msgstr "Даслаць" msgid "Serial Monitor" msgstr "Serial-манітор" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "Порт \"{0}\" ужо выкарыстоўваецца. Паспрабуйце зачыніць праграмы, якія могуць выкарыстоўваць порт." - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "Паслядоўны порт ''{0}'' ужо ўжываецца. Паспрабуйце зачыніць праграмы, якія могуць карыстацца ім." - #: Serial.java:194 #, java-format msgid "" @@ -1353,6 +1510,10 @@ msgstr "Каталог скетчу знік" msgid "Sketchbook location:" msgstr "Месцазнаходжанне каталогу скетчаў" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "Скетчы (*.ino, *.pde)" @@ -1403,6 +1564,10 @@ msgstr "Тамільская" msgid "The 'BYTE' keyword is no longer supported." msgstr "Слова 'BYTE' больш не падтрымліваецца." +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "Клас Client быў перайменаваны ў EthernetClient." @@ -1470,12 +1635,12 @@ msgid "" "but anything besides the code will be lost." msgstr "Папка скетчу знікла.\nСпрабуем перазахаваць у тым жа месцы,\nале ўсё акрамя коду будзе страчана." -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." -msgstr "Патрэбна змяніць імя скетчу. Імя можа змяшчаць толькі\nASCII сімвалы і лічбы (але не можа пачынацца з лічбы).\nІмя не можа быць даўжэй за 64 сімвалы." +"They should also be less than 64 characters long." +msgstr "" #: Base.java:259 msgid "" @@ -1486,6 +1651,12 @@ msgid "" "himself in the third person." msgstr "Каталог скетчу больш не існуе.\nArduino пераключыцца на каталог па-змоўчванню\nці створыць новы каталог калі патрэбна.\nArduino спыніць казаць аб сабе у трэцяй асобе." +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1628,6 +1799,13 @@ msgstr "В'етнамская" msgid "Visit Arduino.cc" msgstr "Наведаць Arduino.cc" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "" + #: Base.java:2128 msgid "Warning" msgstr "Увага" @@ -1796,10 +1974,6 @@ msgstr "асяроддзе" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "http://github.com/arduino/Arduino/issues" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1829,17 +2003,6 @@ msgstr "імя - null" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "readBytesUntil() буфер байтаў занадта малы для {0} байт і змяшчае сімвал {1}" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "removeCode: internal error.. немагчыма знайсці код" - #: Editor.java:932 msgid "serialMenu is null" msgstr "serialMenu is null" @@ -1850,6 +2013,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "Абраны паслядоўны порт {0} не існуе, альбо плата не далучана" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "невядомая опцыя: {0}" + #: Preferences.java:391 msgid "upload" msgstr "выгрузкі" @@ -1873,3 +2041,45 @@ msgstr "{0} | Arduino {1}" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "{0}: Няправільны аргумент для --pref, мае быць форма \"pref=value\"" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "{0}: Няправільнае імя платы, мае быць форма \"package:arch:board\" ці \"package:arch:board:options\"" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "{0}: Няправільная опцыя для \"{1}\" опцыі для платы \"{2}\"" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "{0}: Няправільная опцыя для платы \"{1}\"" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "{0}: Няправільная опцыя, мае быць форма \"name=value\"" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "{0}: Невядомая архітэктура" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "{0}: Невядомая плата" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "{0}: Невядомы пакет" diff --git a/arduino-core/src/processing/app/i18n/Resources_be.properties b/arduino-core/src/processing/app/i18n/Resources_be.properties index f53626950..97e739568 100644 --- a/arduino-core/src/processing/app/i18n/Resources_be.properties +++ b/arduino-core/src/processing/app/i18n/Resources_be.properties @@ -17,6 +17,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(\u0440\u044d\u0434\u0430\u0433\u0430\u0432\u0430\u0446\u044c \u0442\u043e\u043b\u044c\u043a\u0456 \u043a\u0430\u043b\u0456 Arduino \u043d\u0435 \u0437\u0430\u043f\u0443\u0448\u0447\u0430\u043d\u044b) +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -53,9 +56,23 @@ Add\ File...=\u0414\u0430\u0434\u0430\u0446\u044c \u0424\u0430\u0439\u043b #: Base.java:963 Add\ Library...=\u0414\u0430\u0434\u0430\u0446\u044c \u0431\u0456\u0431\u043b\u0456\u044f\u0442\u044d\u043a\u0443... +#: ../../../processing/app/Preferences.java:96 +Albanian=\u0410\u043b\u0431\u0430\u043d\u0441\u043a\u0430\u044f + #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=\u0417\u0434\u0430\u0440\u044b\u043b\u0430\u0441\u044f \u043f\u0430\u043c\u044b\u043b\u043a\u0430 \u043f\u0430\u0434\u0447\u0430\u0441 \u0441\u043f\u0440\u043e\u0431\u044b \u0437\u043c\u044f\u043d\u0456\u0446\u044c \u043a\u0430\u0434\u044b\u0440\u043e\u045e\u043a\u0443 \u0444\u0430\u0439\u043b\u0430.\n\u041d\u0435 \u0441\u043f\u0440\u0430\u0431\u0443\u0439\u0446\u0435 \u0437\u0430\u0445\u0430\u0432\u0430\u0446\u044c \u0433\u044d\u0442\u044b \u0441\u043a\u0435\u0442\u0447, \u0431\u043e \u0451\u043d \u043c\u043e\u0436\u0430 \u043f\u0435\u0440\u0430\u043f\u0456\u0441\u0430\u0446\u044c \u0441\u0442\u0430\u0440\u0443\u044e\n\u0432\u0435\u0440\u0441\u0456\u044e. \u041f\u0430\u045e\u0442\u043e\u0440\u043d\u0430 \u0430\u0434\u0447\u044b\u043d\u0456\u0446\u0435 \u0441\u043a\u0435\u0442\u0447 \u0456 \u043f\u0430\u0441\u043f\u0440\u0430\u0431\u0443\u0439\u0446\u0435 \u043d\u0430\u043d\u043e\u045e.\n +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=\u0417\u0434\u0430\u0440\u044b\u043b\u0430\u0441\u044f \u043d\u0435\u0432\u044f\u0434\u043e\u043c\u0430\u044f \u043f\u0430\u043c\u044b\u043b\u043a\u0430 \u043f\u0430\u0434\u0447\u0430\u0441 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0456\n\u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0430-\u0441\u043f\u0435\u0446\u044b\u0444\u0456\u0447\u043d\u0430\u0433\u0430 \u043a\u043e\u0434\u0443 \u0434\u043b\u044f \u0432\u0430\u0448\u0430\u0433\u0430 \u043a\u0430\u043c\u043f'\u044e\u0442\u0430\u0440\u0430. @@ -105,12 +122,33 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u0412\u044b \u0441\u0430\u043f\u0 #: Sketch.java:587 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u0412\u044b \u0441\u0430\u043f\u0440\u0430\u045e\u0434\u044b \u0436\u0430\u0434\u0430\u0435\u0446\u0435 \u0432\u044b\u0434\u0430\u043b\u0456\u0446\u044c \u0433\u044d\u0442\u044b \u0441\u043a\u0435\u0442\u0447? +#: ../../../processing/app/Base.java:356 +Argument\ required\ for\ --board=\u041f\u0430\u0442\u0440\u044d\u0431\u043d\u044b \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442 \u0434\u043b\u044f --board + +#: ../../../processing/app/Base.java:370 +Argument\ required\ for\ --curdir=\u041f\u0430\u0442\u0440\u044d\u0431\u043d\u044b \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442 \u0434\u043b\u044f --curdir + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +Argument\ required\ for\ --port=\u041f\u0430\u0442\u0440\u044d\u0431\u043d\u044b \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442 \u0434\u043b\u044f --port + +#: ../../../processing/app/Base.java:377 +Argument\ required\ for\ --pref=\u041f\u0430\u0442\u0440\u044d\u0431\u043d\u044b \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442 \u0434\u043b\u044f --pref + +#: ../../../processing/app/Base.java:384 +Argument\ required\ for\ --preferences-file=\u041f\u0430\u0442\u0440\u044d\u0431\u043d\u044b \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442 \u0434\u043b\u044f --preferences-file + #: ../../../processing/app/Preferences.java:137 Armenian=\u0410\u0440\u043c\u044f\u043d\u0441\u043a\u0430\u044f #: ../../../processing/app/Preferences.java:138 Asturian=\u0410\u0441\u0442\u0443\u0440\u044b\u0439\u0441\u043a\u0430\u044f +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 Auto\ Format=\u0410\u045e\u0442\u0430\u0444\u0430\u0440\u043c\u0430\u0442 @@ -142,6 +180,12 @@ Bad\ error\ line\:\ {0}=\u041a\u0435\u043f\u0441\u043a\u0456 \u0440\u0430\u0434\ #: Editor.java:2136 Bad\ file\ selected=\u0410\u0431\u0440\u0430\u043d\u044b \u043a\u0435\u043f\u0441\u043a\u0456 \u0444\u0430\u0439\u043b +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +Basque=\u043c\u043e\u0432\u0430 \u0411\u0430\u0441\u043a\u0430\u045e + #: ../../../processing/app/Preferences.java:139 Belarusian=\u0411\u0435\u043b\u0430\u0440\u0443\u0441\u043a\u0430\u044f @@ -168,6 +212,9 @@ Browse=\u0410\u0433\u043b\u044f\u0434 #: Sketch.java:1392 Sketch.java:1423 Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u041a\u0430\u0442\u0430\u043b\u043e\u0433 \u043f\u0430\u0431\u0443\u0434\u043e\u0432\u044b \u0437\u043d\u0456\u043a \u0446\u0456 \u043d\u0435\u0434\u0430\u0441\u0442\u0443\u043f\u043d\u044b \u0434\u043b\u044f \u0437\u0430\u043f\u0456\u0441\u0443 +#: ../../../processing/app/Sketch.java:1530 +Build\ options\ changed,\ rebuilding\ all=\u041e\u043f\u0446\u044b\u0456 \u0411\u0443\u0434\u043e\u0432\u044b \u0437\u043c\u0435\u043d\u0435\u043d\u044b, \u043f\u0435\u0440\u0430\u0431\u0443\u0434\u043e\u045e\u0432\u0430\u0435\u043c \u0443\u0441\u0451 + #: ../../../processing/app/Preferences.java:80 Bulgarian=\u0411\u0430\u043b\u0433\u0430\u0440\u0441\u043a\u0430\u044f @@ -180,8 +227,13 @@ Burn\ Bootloader=\u041f\u0440\u0430\u0448\u044b\u0446\u044c \u0417\u0430\u0433\u #: Editor.java:2504 Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u041f\u0440\u0430\u0448\u044b\u0432\u0430\u043d\u043d\u0435 \u0437\u0430\u0433\u0440\u0443\u0437\u0447\u044b\u043a\u0430 \u045e I/O Board (\u043c\u043e\u0436\u0430 \u0437\u0430\u043d\u044f\u0446\u044c \u0445\u0432\u0456\u043b\u0456\u043d\u0443)... -#: ../../../processing/app/Base.java:368 -Can't\ open\ source\ sketch\!=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u0430\u0434\u0447\u044b\u043d\u0456\u0446\u044c \u0441\u043a\u0435\u0442\u0447\! +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 Canadian\ French=\u041a\u0430\u043d\u0430\u0434\u0441\u043a\u0430-\u0424\u0440\u0430\u043d\u0446\u0443\u0437\u0441\u043a\u0430\u044f @@ -193,6 +245,9 @@ Cancel=\u0421\u043a\u0430\u0441\u0430\u0432\u0430\u0446\u044c #: Sketch.java:455 Cannot\ Rename=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u041f\u0435\u0440\u0430\u0439\u043c\u0435\u043d\u0430\u0432\u0430\u0446\u044c +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 Carriage\ return=\u0412\u044f\u0440\u0442\u0430\u043d\u043d\u0435 \u043a\u0430\u0440\u044d\u0442\u043a\u0456 @@ -226,10 +281,6 @@ Close=\u0417\u0430\u0447\u044b\u043d\u0456\u0446\u044c #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=\u0417\u0430\u043a\u0430\u043c\u0435\u043d\u0442\u0430\u0432\u0430\u0446\u044c/\u0420\u0430\u0441\u043a\u0430\u043c\u0435\u043d\u0442\u0430\u0432\u0430\u0446\u044c -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=\u041f\u0430\u043c\u044b\u043b\u043a\u0430 \u043a\u0430\u043c\u043f\u0456\u043b\u044f\u0442\u0430\u0440\u0430, \u043a\u0430\u043b\u0456 \u043b\u0430\u0441\u043a\u0430 \u0434\u0430\u0448\u043b\u0456\u0446\u0435 \u0433\u044d\u0442\u044b \u043a\u043e\u0434 \u043d\u0430 {0} - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=\u041a\u0430\u043c\u043f\u0456\u043b\u044f\u0446\u044b\u044f \u0441\u043a\u0435\u0442\u0447\u0443... @@ -305,9 +356,8 @@ Could\ not\ re-save\ sketch=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u04 #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u043f\u0440\u0430\u0447\u044b\u0442\u0430\u0446\u044c \u043d\u0430\u043b\u0430\u0434\u043a\u0456 \u043f\u0430-\u0437\u043c\u043e\u045e\u0447\u0432\u0430\u043d\u043d\u044e.\n\u041f\u0430\u0442\u0440\u044d\u0431\u043d\u0430 \u043f\u0435\u0440\u0430\u045e\u0441\u0442\u0430\u043b\u044f\u0432\u0430\u0446\u044c Arduino. -#: Preferences.java:258 -#, java-format -Could\ not\ read\ preferences\ from\ {0}=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u043f\u0440\u0430\u0447\u044b\u0442\u0430\u0446\u044c \u043d\u0430\u043b\u0430\u0434\u043a\u0456 \u0437 {0} +#: ../../../processing/app/Sketch.java:1525 +!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= #: Base.java:2482 #, java-format @@ -330,6 +380,9 @@ Could\ not\ rename\ the\ sketch.\ (2)=\u041d\u0435\u043c\u0430\u0433\u0447\u044b #, java-format Could\ not\ replace\ {0}=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u0437\u0430\u043c\u044f\u043d\u0456\u0446\u044c {0} +#: ../../../processing/app/Sketch.java:1579 +!Could\ not\ write\ build\ preferences\ file= + #: tools/Archiver.java:74 Couldn't\ archive\ sketch=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u0430\u0440\u0445\u0456\u0432\u0430\u0432\u0430\u0446\u044c \u0441\u043a\u0435\u0442\u0447 @@ -378,12 +431,19 @@ Done\ Saving.=\u0417\u0430\u0445\u0430\u0432\u0430\u043d\u043d\u0435 \u0412\u044 #: Editor.java:2510 Done\ burning\ bootloader.=\u0412\u044b\u043a\u0430\u043d\u0430\u043d\u0430 \u043f\u0440\u0430\u0448\u044b\u0432\u0430\u043d\u043d\u0435 \u0437\u0430\u0433\u0440\u0443\u0437\u0447\u044b\u043a\u0430. +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=\u041a\u0430\u043c\u043f\u0456\u043b\u044f\u0446\u044b\u044f \u0432\u044b\u043a\u0430\u043d\u0430\u043d\u0430. #: Editor.java:2564 Done\ printing.=\u0414\u0440\u0443\u043a \u0432\u044b\u043a\u0430\u043d\u0430\u043d\u044b. +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=\u0412\u044b\u0433\u0440\u0443\u0437\u043a\u0430 \u0432\u044b\u043a\u0430\u043d\u0430\u043d\u0430. @@ -462,6 +522,9 @@ Error\ while\ burning\ bootloader.=\u041f\u0430\u043c\u044b\u043b\u043a\u0430 \u #: ../../../processing/app/Editor.java:2555 Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=\u041f\u0430\u043c\u044b\u043b\u043a\u0430 \u043f\u0430\u0434\u0447\u0430\u0441 \u043f\u0440\u0430\u0448\u044b\u0432\u0430\u043d\u043d\u044f \u0437\u0430\u0433\u0440\u0443\u0437\u0447\u044b\u043a\u0430\: \u0431\u0440\u0430\u043a\u0443\u0435 '{0}' \u043a\u0430\u043d\u0444\u0456\u0433\u0443\u0440\u0430\u0446\u044b\u0439\u043d\u0430\u0433\u0430 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0430 +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=\u041f\u0430\u043c\u044b\u043b\u043a\u0430 \u043f\u0430\u0434\u0447\u0430\u0441 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0456 \u043a\u043e\u0434\u0443 {0} @@ -469,10 +532,21 @@ Error\ while\ loading\ code\ {0}=\u041f\u0430\u043c\u044b\u043b\u043a\u0430 \u04 #: Editor.java:2567 Error\ while\ printing.=\u041f\u0430\u043c\u044b\u043b\u043a\u0430 \u043f\u0430\u0434\u0447\u0430\u0441 \u0434\u0440\u0443\u043a\u0443. +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=\u041f\u0430\u043c\u044b\u043b\u043a\u0430 \u043f\u0430\u0434\u0447\u0430\u0441 \u0432\u044b\u0433\u0440\u0443\u0437\u043a\u0456\: \u0431\u0440\u0430\u043a\u0443\u0435 '{0}' \u043a\u0430\u043d\u0444\u0456\u0433\u0443\u0440\u0430\u0446\u044b\u0439\u043d\u0430\u0433\u0430 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0430 +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 Estonian=\u042d\u0441\u0442\u043e\u043d\u0441\u043a\u0430\u044f @@ -488,6 +562,10 @@ Export\ canceled,\ changes\ must\ first\ be\ saved.=\u042d\u043a\u0441\u043f\u04 #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +Failed\ to\ open\ sketch\:\ "{0}"=\u041d\u0435 \u045e\u0434\u0430\u043b\u043e\u0441\u044f \u0430\u0434\u0447\u044b\u043d\u0456\u0446\u044c \u0441\u043a\u0435\u0442\u0447\: "{0}" + #: Editor.java:491 File=\u0424\u0430\u0439\u043b @@ -522,8 +600,9 @@ Fix\ Encoding\ &\ Reload=\u0412\u044b\u043f\u0440\u0430\u0432\u0456\u0446\u044c #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=\u0414\u0437\u0435\u043b\u044f \u0456\u043d\u0444\u0430\u0440\u043c\u0430\u0446\u044b\u0456, \u044f\u043a \u0443\u0441\u0442\u0430\u043b\u0451\u045e\u0432\u0430\u0446\u044c \u0431\u0456\u0431\u043b\u0456\u044f\u0442\u044d\u043a\u0456, \u0433\u043b\u044f\u0434\u0437\u0456\: http\://arduino.cc/en/Guide/Libraries\n -#: debug/BasicUploader.java:80 -Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =\u041f\u0440\u044b\u043c\u0443\u0441\u043e\u0432\u044b \u0441\u043a\u0456\u0434 \u0445\u0443\u0442\u043a\u0430\u0441\u0446\u0456 \u043d\u0430 1200bps open/close \u043d\u0430 \u043f\u043e\u0440\u0442 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=\u0424\u0440\u0430\u043d\u0446\u0443\u0437\u0441\u043a\u0430\u044f @@ -627,8 +706,8 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=\u0411\u045 #: Preferences.java:106 Lithuaninan=\u041b\u0456\u0442\u043e\u045e\u0441\u043a\u0430\u044f -#: ../../../processing/app/Sketch.java:1660 -Low\ memory\ available,\ stability\ problems\ may\ occur=\u0414\u0430\u0441\u0442\u0443\u043f\u043d\u0430 \u043c\u0430\u043b\u0430 \u043f\u0430\u043c\u044f\u0446\u0456, \u043c\u0430\u0433\u0447\u044b\u043c\u044b \u043f\u0440\u0430\u0431\u043b\u0435\u043c\u044b \u0441\u0430 \u0441\u0442\u0430\u0431\u0456\u043b\u044c\u043d\u0430\u0441\u0446\u044e +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 Marathi=\u041c\u0430\u0440\u0430\u0442\u0445\u0456 @@ -639,12 +718,24 @@ Message=\u041f\u0430\u0432\u0435\u0434\u0430\u043c\u043b\u0435\u043d\u043d\u0435 #: ../../../processing/app/preproc/PdePreprocessor.java:412 Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=\u0410\u0434\u0441\u0443\u0442\u043d\u0456\u0447\u0430\u0435 \u043f\u0430\u0441\u043b\u044f\u0434\u043e\u045e\u043d\u0430\u0441\u0446\u044c */ \u0430\u0434 \u043f\u0430\u0447\u0430\u0442\u043a\u0443 /* \u043a\u0430\u043c\u0435\u043d\u0442\u0430\u0440\u0430 */ +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\u0411\u043e\u043b\u0435\u0439 \u043d\u0430\u043b\u0430\u0434\u0430\u043a \u043c\u043e\u0436\u043d\u0430 \u0437\u043c\u044f\u043d\u0456\u0446\u044c \u043d\u0430\u045e\u043f\u0440\u043e\u0441\u0442 \u0443 \u0444\u0430\u0439\u043b\u0435 #: Editor.java:2156 Moving=\u041f\u0435\u0440\u0430\u0441\u043e\u045e\u0432\u0430\u043d\u043d\u0435 +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +!Must\ specify\ exactly\ one\ sketch\ file= + +#: ../../../processing/app/Preferences.java:158 +N'Ko=N'Ko + #: Sketch.java:282 Name\ for\ new\ file\:=\u0406\u043c\u044f \u0434\u043b\u044f \u043d\u043e\u0432\u0430\u0433\u0430 \u0444\u0430\u0439\u043b\u0430\: @@ -672,12 +763,18 @@ Next\ Tab=\u041d\u0430\u0441\u0442\u0443\u043f\u043d\u044b Tab #: Preferences.java:78 UpdateCheck.java:108 No=\u041d\u0435 +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u041f\u043b\u0430\u0442\u0430 \u043d\u0435 \u0430\u0431\u0440\u0430\u043d\u0430; \u043a\u0430\u043b\u0456 \u043b\u0430\u0441\u043a\u0430 \u0430\u0431\u044f\u0440\u044b\u0446\u0435 \u043f\u043b\u0430\u0442\u0443 \u043f\u0440\u0430\u0437 \u043c\u0435\u043d\u044e "\u0406\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b" > "\u041f\u043b\u0430\u0442\u0430". #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=\u041d\u0435 \u043f\u0430\u0442\u0440\u044d\u0431\u043d\u0430 \u0437\u043c\u0435\u043d\u0430\u045e \u0434\u043b\u044f \u0430\u045e\u0442\u0430\u0444\u0430\u0440\u043c\u0430\u0442\u0443. +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=\u0423 \u0441\u043a\u0435\u0442\u0447 \u043d\u0435 \u0434\u0430\u0434\u0430\u0434\u0437\u0435\u043d\u0430 \u0444\u0430\u0439\u043b\u0430\u045e. @@ -687,6 +784,9 @@ No\ launcher\ available=launcher \u043d\u0435\u0434\u0430\u0441\u0442\u0443\u043 #: SerialMonitor.java:112 No\ line\ ending=\u041d\u044f\u043c\u0430 \u043a\u0430\u043d\u0446\u0430 \u0440\u0430\u0434\u043a\u0430 +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u0421\u0430\u043f\u0440\u0430\u045e\u0434\u044b, \u0432\u0430\u043c \u043f\u0430\u0442\u0440\u044d\u0431\u043d\u0430 \u0441\u0432\u0435\u0436\u0430\u0435 \u043f\u0430\u0432\u0435\u0442\u0440\u0430. @@ -694,6 +794,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u0421\u0430\u043f\u0440\u04 #, java-format No\ reference\ available\ for\ "{0}"=\u041d\u044f \u0437\u043d\u043e\u0439\u0434\u0437\u0435\u043d\u0430 \u0441\u0443\u043f\u0430\u0434\u0437\u0435\u043d\u043d\u044f\u045e \u0437 "{0}" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +!No\ valid\ code\ files\ found= + #: ../../../processing/app/Base.java:309 No\ valid\ configured\ cores\ found\!\ Exiting...=\u041d\u0435 \u0437\u043d\u043e\u0439\u0434\u0437\u0435\u043d\u0430 \u0433\u043e\u0434\u043d\u044b\u0445 \u043a\u0430\u043d\u0444\u0456\u0433\u0443\u0440\u0430\u0446\u044b\u0439\u043d\u044b\u0445 \u043a\u0430\u043c\u043f\u0430\u043d\u0435\u043d\u0442\u0430\u045e\! \u0412\u044b\u0445\u043e\u0434\u0437\u0456\u043c... @@ -720,6 +830,9 @@ OK=OK #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=\u0414\u0430 \u0441\u043a\u0435\u0442\u0447\u0430 \u0434\u0430\u0434\u0430\u043d\u044b \u0430\u0434\u0437\u0456\u043d \u0444\u0430\u0439\u043b. +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=\u0410\u0434\u0447\u044b\u043d\u0456\u0446\u044c @@ -747,12 +860,22 @@ Paste=\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044c #: Preferences.java:109 Persian=\u041f\u0435\u0440\u0441\u0456\u0434\u0441\u043a\u0430\u044f +#: ../../../processing/app/Preferences.java:161 +Persian\ (Iran)=\u041f\u0435\u0440\u0441\u0456\u0434\u0441\u043a\u0430\u044f (\u0406\u0440\u0430\u043d) + #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=\u041a\u0430\u043b\u0456 \u043b\u0430\u0441\u043a\u0430 \u0456\u043c\u043f\u0430\u0440\u0442\u0443\u0439\u0446\u0435 SPI-\u0431\u0456\u0431\u043b\u0456\u044f\u0442\u044d\u043a\u0443 \u043f\u0440\u0430\u0437 \u043c\u0435\u043d\u044e Sketch > Import Library. +#: ../../../processing/app/debug/Compiler.java:529 +!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=\u041a\u0430\u043b\u0456 \u043b\u0430\u0441\u043a\u0430, \u0443\u0441\u0442\u0430\u043b\u044e\u0439\u0446\u0435 JDK 1.5 \u0446\u0456 \u043d\u0430\u0432\u0435\u0439 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 Polish=\u041f\u043e\u043b\u044c\u0441\u043a\u0430\u044f @@ -874,9 +997,15 @@ Save\ changes\ to\ "{0}"?\ \ =\u0417\u0430\u0445\u0430\u0432\u0430\u0446\u044c \ #: Sketch.java:825 Save\ sketch\ folder\ as...=\u0417\u0430\u0445\u0430\u0432\u0430\u0446\u044c \u043a\u0430\u0442\u0430\u043b\u043e\u0433 \u0441\u043a\u0435\u0442\u0447\u0430\u045e \u044f\u043a... +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=\u0417\u0430\u0445\u043e\u045e\u0432\u0430\u0435\u043c... +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=\u0410\u0431\u0440\u0430\u0446\u044c (\u0446\u0456 \u0441\u0442\u0432\u0430\u0440\u044b\u0446\u044c \u043d\u043e\u0432\u044b) \u043a\u0430\u0442\u0430\u043b\u043e\u0433 \u0434\u043b\u044f \u0441\u043a\u0435\u0442\u0447\u0430\u045e... @@ -901,14 +1030,6 @@ Send=\u0414\u0430\u0441\u043b\u0430\u0446\u044c #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=Serial-\u043c\u0430\u043d\u0456\u0442\u043e\u0440 -#: Serial.java:174 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=\u041f\u043e\u0440\u0442 "{0}" \u0443\u0436\u043e \u0432\u044b\u043a\u0430\u0440\u044b\u0441\u0442\u043e\u045e\u0432\u0430\u0435\u0446\u0446\u0430. \u041f\u0430\u0441\u043f\u0440\u0430\u0431\u0443\u0439\u0446\u0435 \u0437\u0430\u0447\u044b\u043d\u0456\u0446\u044c \u043f\u0440\u0430\u0433\u0440\u0430\u043c\u044b, \u044f\u043a\u0456\u044f \u043c\u043e\u0433\u0443\u0446\u044c \u0432\u044b\u043a\u0430\u0440\u044b\u0441\u0442\u043e\u045e\u0432\u0430\u0446\u044c \u043f\u043e\u0440\u0442. - -#: Serial.java:121 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=\u041f\u0430\u0441\u043b\u044f\u0434\u043e\u045e\u043d\u044b \u043f\u043e\u0440\u0442 ''{0}'' \u0443\u0436\u043e \u045e\u0436\u044b\u0432\u0430\u0435\u0446\u0446\u0430. \u041f\u0430\u0441\u043f\u0440\u0430\u0431\u0443\u0439\u0446\u0435 \u0437\u0430\u0447\u044b\u043d\u0456\u0446\u044c \u043f\u0440\u0430\u0433\u0440\u0430\u043c\u044b, \u044f\u043a\u0456\u044f \u043c\u043e\u0433\u0443\u0446\u044c \u043a\u0430\u0440\u044b\u0441\u0442\u0430\u0446\u0446\u0430 \u0456\u043c. - #: Serial.java:194 #, java-format Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=\u041f\u0430\u0441\u043b\u044f\u0434\u043e\u045e\u043d\u044b \u043f\u043e\u0440\u0442 ''{0}'' \u043d\u0435 \u0437\u043d\u043e\u0439\u0434\u0437\u0435\u043d\u044b. \u0426\u0456 \u0432\u044b\u0431\u0440\u0430\u043b\u0456 \u0432\u044b \u043f\u0430\u0442\u0440\u044d\u0431\u043d\u044b \u045e \u043c\u0435\u043d\u044e "\u0406\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b" > Serial Port ? @@ -963,6 +1084,9 @@ Sketchbook\ folder\ disappeared=\u041a\u0430\u0442\u0430\u043b\u043e\u0433 \u044 #: Preferences.java:315 Sketchbook\ location\:=\u041c\u0435\u0441\u0446\u0430\u0437\u043d\u0430\u0445\u043e\u0434\u0436\u0430\u043d\u043d\u0435 \u043a\u0430\u0442\u0430\u043b\u043e\u0433\u0443 \u0441\u043a\u0435\u0442\u0447\u0430\u045e +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 Sketches\ (*.ino,\ *.pde)=\u0421\u043a\u0435\u0442\u0447\u044b (*.ino, *.pde) @@ -997,6 +1121,9 @@ Tamil=\u0422\u0430\u043c\u0456\u043b\u044c\u0441\u043a\u0430\u044f #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=\u0421\u043b\u043e\u0432\u0430 'BYTE' \u0431\u043e\u043b\u044c\u0448 \u043d\u0435 \u043f\u0430\u0434\u0442\u0440\u044b\u043c\u043b\u0456\u0432\u0430\u0435\u0446\u0446\u0430. +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=\u041a\u043b\u0430\u0441 Client \u0431\u044b\u045e \u043f\u0435\u0440\u0430\u0439\u043c\u0435\u043d\u0430\u0432\u0430\u043d\u044b \u045e EthernetClient. @@ -1033,12 +1160,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=\u041f\u0430\u043f\u043a\u0430 \u0441\u043a\u0435\u0442\u0447\u0443 \u0437\u043d\u0456\u043a\u043b\u0430.\n\u0421\u043f\u0440\u0430\u0431\u0443\u0435\u043c \u043f\u0435\u0440\u0430\u0437\u0430\u0445\u0430\u0432\u0430\u0446\u044c \u0443 \u0442\u044b\u043c \u0436\u0430 \u043c\u0435\u0441\u0446\u044b,\n\u0430\u043b\u0435 \u045e\u0441\u0451 \u0430\u043a\u0440\u0430\u043c\u044f \u043a\u043e\u0434\u0443 \u0431\u0443\u0434\u0437\u0435 \u0441\u0442\u0440\u0430\u0447\u0430\u043d\u0430. -#: Sketch.java:2018 -The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=\u041f\u0430\u0442\u0440\u044d\u0431\u043d\u0430 \u0437\u043c\u044f\u043d\u0456\u0446\u044c \u0456\u043c\u044f \u0441\u043a\u0435\u0442\u0447\u0443. \u0406\u043c\u044f \u043c\u043e\u0436\u0430 \u0437\u043c\u044f\u0448\u0447\u0430\u0446\u044c \u0442\u043e\u043b\u044c\u043a\u0456\nASCII \u0441\u0456\u043c\u0432\u0430\u043b\u044b \u0456 \u043b\u0456\u0447\u0431\u044b (\u0430\u043b\u0435 \u043d\u0435 \u043c\u043e\u0436\u0430 \u043f\u0430\u0447\u044b\u043d\u0430\u0446\u0446\u0430 \u0437 \u043b\u0456\u0447\u0431\u044b).\n\u0406\u043c\u044f \u043d\u0435 \u043c\u043e\u0436\u0430 \u0431\u044b\u0446\u044c \u0434\u0430\u045e\u0436\u044d\u0439 \u0437\u0430 64 \u0441\u0456\u043c\u0432\u0430\u043b\u044b. +#: ../../../processing/app/Sketch.java:2028 +!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=\u041a\u0430\u0442\u0430\u043b\u043e\u0433 \u0441\u043a\u0435\u0442\u0447\u0443 \u0431\u043e\u043b\u044c\u0448 \u043d\u0435 \u0456\u0441\u043d\u0443\u0435.\nArduino \u043f\u0435\u0440\u0430\u043a\u043b\u044e\u0447\u044b\u0446\u0446\u0430 \u043d\u0430 \u043a\u0430\u0442\u0430\u043b\u043e\u0433 \u043f\u0430-\u0437\u043c\u043e\u045e\u0447\u0432\u0430\u043d\u043d\u044e\n\u0446\u0456 \u0441\u0442\u0432\u043e\u0440\u044b\u0446\u044c \u043d\u043e\u0432\u044b \u043a\u0430\u0442\u0430\u043b\u043e\u0433 \u043a\u0430\u043b\u0456 \u043f\u0430\u0442\u0440\u044d\u0431\u043d\u0430.\nArduino \u0441\u043f\u044b\u043d\u0456\u0446\u044c \u043a\u0430\u0437\u0430\u0446\u044c \u0430\u0431 \u0441\u0430\u0431\u0435 \u0443 \u0442\u0440\u044d\u0446\u044f\u0439 \u0430\u0441\u043e\u0431\u0435. +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u0413\u044d\u0442\u044b \u0444\u0430\u0439\u043b \u0443\u0436\u043e \u0441\u043a\u0430\u043f\u0456\u044f\u0432\u0430\u043d\u044b \u045e \u043c\u0435\u0441\u0446\u0430, \u043a\u0443\u0434\u0430 \u0432\u044b\n\u043d\u0430\u043c\u0430\u0433\u0430\u0435\u0446\u0435\u0441\u044f \u0434\u0430\u0434\u0430\u0446\u044c \u044f\u0433\u043e.\n\u041d\u0456\u0447\u043e\u0433\u0430 \u043d\u0435 \u0430\u0434\u0431\u0443\u0434\u0437\u0435\u0446\u0446\u0430. @@ -1142,6 +1272,10 @@ Vietnamese=\u0412'\u0435\u0442\u043d\u0430\u043c\u0441\u043a\u0430\u044f #: Editor.java:1105 Visit\ Arduino.cc=\u041d\u0430\u0432\u0435\u0434\u0430\u0446\u044c Arduino.cc +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= + #: Base.java:2128 Warning=\u0423\u0432\u0430\u0433\u0430 @@ -1240,9 +1374,6 @@ environment=\u0430\u0441\u044f\u0440\u043e\u0434\u0434\u0437\u0435 #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1265,13 +1396,6 @@ name\ is\ null=\u0456\u043c\u044f - null #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() \u0431\u0443\u0444\u0435\u0440 \u0431\u0430\u0439\u0442\u0430\u045e \u0437\u0430\u043d\u0430\u0434\u0442\u0430 \u043c\u0430\u043b\u044b \u0434\u043b\u044f {0} \u0431\u0430\u0439\u0442 \u0456 \u0437\u043c\u044f\u0448\u0447\u0430\u0435 \u0441\u0456\u043c\u0432\u0430\u043b {1} - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: internal error.. \u043d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u0437\u043d\u0430\u0439\u0441\u0446\u0456 \u043a\u043e\u0434 - #: Editor.java:932 serialMenu\ is\ null=serialMenu is null @@ -1279,6 +1403,10 @@ serialMenu\ is\ null=serialMenu is null #, java-format the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=\u0410\u0431\u0440\u0430\u043d\u044b \u043f\u0430\u0441\u043b\u044f\u0434\u043e\u045e\u043d\u044b \u043f\u043e\u0440\u0442 {0} \u043d\u0435 \u0456\u0441\u043d\u0443\u0435, \u0430\u043b\u044c\u0431\u043e \u043f\u043b\u0430\u0442\u0430 \u043d\u0435 \u0434\u0430\u043b\u0443\u0447\u0430\u043d\u0430 +#: ../../../processing/app/Base.java:389 +#, java-format +unknown\ option\:\ {0}=\u043d\u0435\u0432\u044f\u0434\u043e\u043c\u0430\u044f \u043e\u043f\u0446\u044b\u044f\: {0} + #: Preferences.java:391 upload=\u0432\u044b\u0433\u0440\u0443\u0437\u043a\u0456 @@ -1297,3 +1425,35 @@ upload=\u0432\u044b\u0433\u0440\u0443\u0437\u043a\u0456 #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"={0}\: \u041d\u044f\u043f\u0440\u0430\u0432\u0456\u043b\u044c\u043d\u044b \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442 \u0434\u043b\u044f --pref, \u043c\u0430\u0435 \u0431\u044b\u0446\u044c \u0444\u043e\u0440\u043c\u0430 "pref\=value" + +#: ../../../processing/app/Base.java:476 +#, java-format +{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"={0}\: \u041d\u044f\u043f\u0440\u0430\u0432\u0456\u043b\u044c\u043d\u0430\u0435 \u0456\u043c\u044f \u043f\u043b\u0430\u0442\u044b, \u043c\u0430\u0435 \u0431\u044b\u0446\u044c \u0444\u043e\u0440\u043c\u0430 "package\:arch\:board" \u0446\u0456 "package\:arch\:board\:options" + +#: ../../../processing/app/Base.java:509 +#, java-format +{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"={0}\: \u041d\u044f\u043f\u0440\u0430\u0432\u0456\u043b\u044c\u043d\u0430\u044f \u043e\u043f\u0446\u044b\u044f \u0434\u043b\u044f "{1}" \u043e\u043f\u0446\u044b\u0456 \u0434\u043b\u044f \u043f\u043b\u0430\u0442\u044b "{2}" + +#: ../../../processing/app/Base.java:507 +#, java-format +{0}\:\ Invalid\ option\ for\ board\ "{1}"={0}\: \u041d\u044f\u043f\u0440\u0430\u0432\u0456\u043b\u044c\u043d\u0430\u044f \u043e\u043f\u0446\u044b\u044f \u0434\u043b\u044f \u043f\u043b\u0430\u0442\u044b "{1}" + +#: ../../../processing/app/Base.java:502 +#, java-format +{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"={0}\: \u041d\u044f\u043f\u0440\u0430\u0432\u0456\u043b\u044c\u043d\u0430\u044f \u043e\u043f\u0446\u044b\u044f, \u043c\u0430\u0435 \u0431\u044b\u0446\u044c \u0444\u043e\u0440\u043c\u0430 "name\=value" + +#: ../../../processing/app/Base.java:486 +#, java-format +{0}\:\ Unknown\ architecture={0}\: \u041d\u0435\u0432\u044f\u0434\u043e\u043c\u0430\u044f \u0430\u0440\u0445\u0456\u0442\u044d\u043a\u0442\u0443\u0440\u0430 + +#: ../../../processing/app/Base.java:491 +#, java-format +{0}\:\ Unknown\ board={0}\: \u041d\u0435\u0432\u044f\u0434\u043e\u043c\u0430\u044f \u043f\u043b\u0430\u0442\u0430 + +#: ../../../processing/app/Base.java:481 +#, java-format +{0}\:\ Unknown\ package={0}\: \u041d\u0435\u0432\u044f\u0434\u043e\u043c\u044b \u043f\u0430\u043a\u0435\u0442 diff --git a/arduino-core/src/processing/app/i18n/Resources_bg.po b/arduino-core/src/processing/app/i18n/Resources_bg.po index b1a6d769b..18279fe6f 100644 --- a/arduino-core/src/processing/app/i18n/Resources_bg.po +++ b/arduino-core/src/processing/app/i18n/Resources_bg.po @@ -9,8 +9,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-01-14 17:10+0000\n" -"Last-Translator: Cristian Maglie \n" +"PO-Revision-Date: 2015-01-17 14:15+0000\n" +"Last-Translator: Valentin Laskov \n" "Language-Team: Bulgarian (http://www.transifex.com/projects/p/arduino-ide-15/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -34,6 +34,12 @@ msgstr "'Mouse' се поддържа само от Ардуино Леонар msgid "(edit only when Arduino is not running)" msgstr "(редактирайте само при нестартирано Ардуино)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "--verbose, --verbose-upload и --verbose-build може да се използват само заедно с --verify или --upload" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -92,6 +98,10 @@ msgstr "Добавяне на файл..." msgid "Add Library..." msgstr "Добавяне на библиотека..." +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "Албански" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -99,6 +109,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "Възникна грешка при опита за корекция кодирането на файла.\nНе се опитвайте да запишете тази скица тъй като може да препокриете\nстарата версия. Използвайте Отвори за да отворите скицата и опитайте отново.\n" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "Възникна грешка при качването на скицата" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "Възникна грешка при проверката на скицата" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "Възникна грешка при проверката/качването на скицата" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -143,7 +167,7 @@ msgstr "Arduino AVR платки" msgid "" "Arduino can only open its own sketches\n" "and other files ending in .ino or .pde" -msgstr "" +msgstr "Arduino може да отваря само негови скици\nи други файлове с разширение .ino или .pde" #: Base.java:1682 msgid "" @@ -177,6 +201,30 @@ msgstr "Сигурни ли сте, че искате да изтриете \"{0 msgid "Are you sure you want to delete this sketch?" msgstr "Сигурни ли сте, че искате да изтриете скицата?" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "След --board се изисква аргумент" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "След --curdir се изисква аргумент" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "Към --get-pref се изисква аргумент" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "След --port се изисква аргумент" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "След --pref се изисква аргумент" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "След --preferences-file се изисква аргумент" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "Арменски" @@ -185,6 +233,10 @@ msgstr "Арменски" msgid "Asturian" msgstr "Астурийски" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "Изисква се удостоверяване" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "Автоформатиране" @@ -226,6 +278,14 @@ msgstr "Недопустима грешка на ред: {0}" msgid "Bad file selected" msgstr "Избран е грешен файл" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "Повреден основен файл на скицата или грешна структура директории на скицата" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "Баски" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "Беларуски" @@ -262,6 +322,10 @@ msgstr "Разглеждане" msgid "Build folder disappeared or could not be written" msgstr "Работната папка изчезна или не може да се пише в нея" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "Има променени опции за изграждане. Правя всичко наново" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Български" @@ -278,9 +342,15 @@ msgstr "Запиши буутлоудър" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "Записвам буутлоудъра на I/O платка (може да продължи минута)..." -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" -msgstr "Не мога да отворя скицата източник!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "Може да премине само един от: {0}" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" +msgstr "Не намирам скица в посочения път" #: ../../../processing/app/Preferences.java:92 msgid "Canadian French" @@ -295,6 +365,10 @@ msgstr "Отказ" msgid "Cannot Rename" msgstr "Не може да се преименува" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "Не може да се зададе никакъв файл-скица" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "Завършващ символ CR" @@ -339,11 +413,6 @@ msgstr "Затвори" msgid "Comment/Uncomment" msgstr "Коментирай/Откоментирай" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "Грешка в компилатора, моля изпратете този код на {0}" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "Компилиране на скицата..." @@ -443,7 +512,7 @@ msgstr "Не можах да презапиша скицата" msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "" +msgstr "Не можах да прочета цветовите настройки на темата.\nЩе трябва да преинсталирате Arduino." #: Preferences.java:219 msgid "" @@ -451,10 +520,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Не мога да прочета настройките по подразбиране.\nЩе трябва да преинсталирате Ардуино." -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "Не мога да прочета предпочитанията от {0}" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "Не мога да прочета файла с предишните предпочитания за изграждане. Правя всичко наново" #: Base.java:2482 #, java-format @@ -483,6 +551,10 @@ msgstr "Не можах да преименувам скицата. (2)" msgid "Could not replace {0}" msgstr "Не мога да заменя {0}" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "Не мога да запиша файла с предпочитанията за изграждане" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Не можах да архивирам скицата" @@ -552,6 +624,11 @@ msgstr "Записването завърши." msgid "Done burning bootloader." msgstr "Записът на буутлоудъра завърши." +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "Компилирането завърши" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "Компилирането завърши." @@ -560,6 +637,10 @@ msgstr "Компилирането завърши." msgid "Done printing." msgstr "Отпечатването завърши." +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "Качването завърши" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "Качването завърши." @@ -663,6 +744,10 @@ msgstr "Грешка при записа на буутлоудъра." msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "Грешка при запис на буутлоудъра: липсващ '{0}' конфигурационен параметър" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "Грешка при компилиране: липсващ '{0}' конфигурационен параметър" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -672,11 +757,25 @@ msgstr "Грешка при зареждане на код {0}" msgid "Error while printing." msgstr "Грешка при отпечатването." +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "Грешка при качването" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "Грешка при качване: липсващ '{0}' конфигурационен параметър" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "Грешка при проверката" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "Грешка при проверката/качването" + #: Preferences.java:93 msgid "Estonian" msgstr "Естонски" @@ -697,6 +796,11 @@ msgstr "Експортирането прератено, промените пъ msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "Провали се отварянето на скица: \"{0}\"" + #: Editor.java:491 msgid "File" msgstr "Файл" @@ -744,9 +848,10 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "За информация относно инсталирането на библиотеки, вижте: http://arduino.cc/en/Guide/Libraries\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " -msgstr "Опит за ресет с 1200bps отваряне/затваряне на порта" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" +msgstr "Принудителен ресет с 1200bps отваряне/затваряне на порт {0}" #: Preferences.java:95 msgid "French" @@ -894,9 +999,9 @@ msgstr "Библиотеката е добавена към библиотеки msgid "Lithuaninan" msgstr "Литовски" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" -msgstr "Достъпна е малко памет. Възможни са проблеми" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." +msgstr "Достъпната памет е малко. Възможни са проблеми." #: Preferences.java:107 msgid "Marathi" @@ -910,6 +1015,10 @@ msgstr "Съобщение" msgid "Missing the */ from the end of a /* comment */" msgstr "Липсващ */ в края на /* коментар */" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "Режимът не се поддържа" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "Повече предпочитания може да редактирате директно във файла" @@ -918,6 +1027,18 @@ msgstr "Повече предпочитания може да редактира msgid "Moving" msgstr "Преместване" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "Множество файлове не се поддържат" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "Трябва да укажете точно един файл-скица" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "N'Ko" + #: Sketch.java:282 msgid "Name for new file:" msgstr "Име за нов файл:" @@ -954,6 +1075,10 @@ msgstr "Следващ подпрозорец" msgid "No" msgstr "Не" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "Не са намерени данни за удостоверяване" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "Не е избрана платка; моля изберете платка от менюто Инструменти > Платка." @@ -962,6 +1087,10 @@ msgstr "Не е избрана платка; моля изберете плат msgid "No changes necessary for Auto Format." msgstr "Не са необходими промени за автоформатирането." +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "Не са намерени параметри в командния ред" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "Не бяха добавени файлове към скицата." @@ -974,6 +1103,10 @@ msgstr "Няма зададен браузър" msgid "No line ending" msgstr "Без завършващи символи" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "Няма параметри" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "Не, наистина, за теб е време за малко свеж въздух." @@ -983,6 +1116,19 @@ msgstr "Не, наистина, за теб е време за малко све msgid "No reference available for \"{0}\"" msgstr "Не е налично описание за \"{0}\"" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "Няма скица" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "Няма скицник" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "Няма намерени валидни файлове с код" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "Няма конфигурирани валидни ядра! Излизам..." @@ -1019,6 +1165,10 @@ msgstr "OK" msgid "One file added to the sketch." msgstr "Един файл е добавен към скицата." +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "Поддържат се само --verify, --upload или --get-pref" + #: EditorToolbar.java:41 msgid "Open" msgstr "Отваряне" @@ -1055,14 +1205,27 @@ msgstr "Поставяне" msgid "Persian" msgstr "Персийски" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "Персийски (Иран)" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "Моля, импортирайте библиотеката SPI от менюто Скица > Импортиране на библиотека." +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "Моля, импортирайте библиотеката Wire от менюто Скица > Импортиране на библиотека." + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "Моля, инсталирайте JDK 1.5 или по-нов" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "Моля, изберете програматор от менюто Инструменти->Програматор" + #: Preferences.java:110 msgid "Polish" msgstr "Полски" @@ -1225,10 +1388,18 @@ msgstr "Да запиша ли промените в \"{0}\"? " msgid "Save sketch folder as..." msgstr "Запиши папката на скицата като..." +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "Запис при проверката или качването" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "Записване..." +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "Търсене във всички подпрозорци" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "Избор на папка (или създаване на нова) за скици..." @@ -1261,20 +1432,6 @@ msgstr "Изпрати" msgid "Serial Monitor" msgstr "Сериен монитор" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "Серийният порт ''{0}'' вече е в употреба. Пробвайте като затворите всички програми, които може да го ползват." - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "Серийният порт ''{0}'' вече е в употреба. Пробвайте като затворите всички програми, които може да го ползват." - #: Serial.java:194 #, java-format msgid "" @@ -1354,6 +1511,10 @@ msgstr "Папката със скици изчезна" msgid "Sketchbook location:" msgstr "Местоположение на скицника:" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "Не е зададен път до скицника" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "Скици (*.ino, *.pde)" @@ -1404,6 +1565,10 @@ msgstr "Тамилски" msgid "The 'BYTE' keyword is no longer supported." msgstr "Ключовата дума 'BYTE' вече не се поддържа." +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "Опцията --upload се използва само с един файл" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "Класът Client беше преименуван на EthernetClient." @@ -1471,12 +1636,12 @@ msgid "" "but anything besides the code will be lost." msgstr "Папката със скицата изчезна.\n Ще пробвам да я презапиша на същото място,\nно всичко, освен кода, ще бъде изгубено." -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." -msgstr "Името на скицата беше променено. Имената на скици може да съдържат\nсамо ASCII символи (но не може да започват с цифра).\nТе трябва, също, да са по-къси от 64 символа." +"They should also be less than 64 characters long." +msgstr "Името на скицата трябваше да бъде променено. Имената на скици\nможе да съдържат само ASCII символи (но не може да започват с\nцифра). Те трябва също да са по-къси от 64 символа." #: Base.java:259 msgid "" @@ -1487,6 +1652,12 @@ msgid "" "himself in the third person." msgstr "Папката със скици вече не съществува. Ардуино\nще премине към използване на местоположението\nпо подразбиране и ще създаде нова папка ако е\nнеобходимо. След това, Ардуино ще спре да\nговори за себе си в трето лице." +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "Във външния platform.txt не е дефиниран compiler.path. Моля, съобщете това на поддържащите този хардуер." + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1629,6 +1800,13 @@ msgstr "Виетнамски" msgid "Visit Arduino.cc" msgstr "Посетете Arduino.cc" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "ВНИМАНИЕ: библиотеката {0} твърди, че работи на {1} архитектури и може да е несъвместима с текущата Ви платка, която е с {2} архитектура." + #: Base.java:2128 msgid "Warning" msgstr "Внимание" @@ -1716,7 +1894,7 @@ msgid "" "older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " "to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" " bad characters to get rid of this warning." -msgstr "" +msgstr "\"{0}\" съдържа непознати символи. Ако този код е създаден с по-стара версия на Arduino, може да е нужно да ползвате Инструменти -> Корекция на кодирането & Презареждане, за да обновите скицата с използване на UTF-8 кодиране. Ако не, може да е нужно да изтриете грешните символи, за да се избавите от това предупреждение." #: debug/Compiler.java:409 msgid "" @@ -1797,10 +1975,6 @@ msgstr "среда" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "http://github.com/arduino/Arduino/issues" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1830,17 +2004,6 @@ msgstr "name е null" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "Буферът на readBytesUntil() е твърде малък за {0} байта до знака {1} включително" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "removeCode: вътрешна грешка. Не намерих код" - #: Editor.java:932 msgid "serialMenu is null" msgstr "serialMenu е null" @@ -1851,6 +2014,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "избраният сериен порт {0} не съществува или платката Ви не е свързана" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "непозната опция: {0}" + #: Preferences.java:391 msgid "upload" msgstr "качване" @@ -1874,3 +2042,45 @@ msgstr "{0} | Ардуино {1}" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "{0}: Невалиден аргумент към --pref, трябва да е във формат \"pref=value\"" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "{0}: невалидно име на платка, трябва да е във формат \"package:arch:board\" или \"package:arch:board:options\"" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "{0}: невалидна опция за \"{1}\" опция за платка \"{2}\"" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "{0}: невалидна опция за платка \"{1}\"" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "{0}: Невалидна опция, трябва да е във формат \"name=value\"" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "{0}: Непозната архитектура" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "{0}: Непозната платка" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "{0}: Непознат пакет" diff --git a/arduino-core/src/processing/app/i18n/Resources_bg.properties b/arduino-core/src/processing/app/i18n/Resources_bg.properties index d549fea30..20dca068b 100644 --- a/arduino-core/src/processing/app/i18n/Resources_bg.properties +++ b/arduino-core/src/processing/app/i18n/Resources_bg.properties @@ -4,7 +4,7 @@ # # Translators: # Valentin Laskov , 2012-2013. -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Bulgarian (http\://www.transifex.com/projects/p/arduino-ide-15/language/bg/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: bg\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-17 14\:15+0000\nLast-Translator\: Valentin Laskov \nLanguage-Team\: Bulgarian (http\://www.transifex.com/projects/p/arduino-ide-15/language/bg/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: bg\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ (\u0438\u0437\u0438\u0441\u043a\u0432\u0430 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0410\u0440\u0434\u0443\u0438\u043d\u043e) @@ -18,6 +18,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0439\u0442\u0435 \u0441\u0430\u043c\u043e \u043f\u0440\u0438 \u043d\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u043e \u0410\u0440\u0434\u0443\u0438\u043d\u043e) +#: ../../../processing/app/Base.java:468 +--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload=--verbose, --verbose-upload \u0438 --verbose-build \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u0441\u0430\u043c\u043e \u0437\u0430\u0435\u0434\u043d\u043e \u0441 --verify \u0438\u043b\u0438 --upload + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -54,9 +57,23 @@ Add\ File...=\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u044 #: Base.java:963 Add\ Library...=\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430... +#: ../../../processing/app/Preferences.java:96 +Albanian=\u0410\u043b\u0431\u0430\u043d\u0441\u043a\u0438 + #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=\u0412\u044a\u0437\u043d\u0438\u043a\u043d\u0430 \u0433\u0440\u0435\u0448\u043a\u0430 \u043f\u0440\u0438 \u043e\u043f\u0438\u0442\u0430 \u0437\u0430 \u043a\u043e\u0440\u0435\u043a\u0446\u0438\u044f \u043a\u043e\u0434\u0438\u0440\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u0444\u0430\u0439\u043b\u0430.\n\u041d\u0435 \u0441\u0435 \u043e\u043f\u0438\u0442\u0432\u0430\u0439\u0442\u0435 \u0434\u0430 \u0437\u0430\u043f\u0438\u0448\u0435\u0442\u0435 \u0442\u0430\u0437\u0438 \u0441\u043a\u0438\u0446\u0430 \u0442\u044a\u0439 \u043a\u0430\u0442\u043e \u043c\u043e\u0436\u0435 \u0434\u0430 \u043f\u0440\u0435\u043f\u043e\u043a\u0440\u0438\u0435\u0442\u0435\n\u0441\u0442\u0430\u0440\u0430\u0442\u0430 \u0432\u0435\u0440\u0441\u0438\u044f. \u0418\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0439\u0442\u0435 \u041e\u0442\u0432\u043e\u0440\u0438 \u0437\u0430 \u0434\u0430 \u043e\u0442\u0432\u043e\u0440\u0438\u0442\u0435 \u0441\u043a\u0438\u0446\u0430\u0442\u0430 \u0438 \u043e\u043f\u0438\u0442\u0430\u0439\u0442\u0435 \u043e\u0442\u043d\u043e\u0432\u043e.\n +#: ../../../processing/app/BaseNoGui.java:528 +An\ error\ occurred\ while\ uploading\ the\ sketch=\u0412\u044a\u0437\u043d\u0438\u043a\u043d\u0430 \u0433\u0440\u0435\u0448\u043a\u0430 \u043f\u0440\u0438 \u043a\u0430\u0447\u0432\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u0441\u043a\u0438\u0446\u0430\u0442\u0430 + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +An\ error\ occurred\ while\ verifying\ the\ sketch=\u0412\u044a\u0437\u043d\u0438\u043a\u043d\u0430 \u0433\u0440\u0435\u0448\u043a\u0430 \u043f\u0440\u0438 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430\u0442\u0430 \u043d\u0430 \u0441\u043a\u0438\u0446\u0430\u0442\u0430 + +#: ../../../processing/app/BaseNoGui.java:521 +An\ error\ occurred\ while\ verifying/uploading\ the\ sketch=\u0412\u044a\u0437\u043d\u0438\u043a\u043d\u0430 \u0433\u0440\u0435\u0448\u043a\u0430 \u043f\u0440\u0438 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430\u0442\u0430/\u043a\u0430\u0447\u0432\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u0441\u043a\u0438\u0446\u0430\u0442\u0430 + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=\u0412\u044a\u0437\u043d\u0438\u043a\u043d\u0430 \u043d\u0435\u043f\u043e\u0437\u043d\u0430\u0442\u0430 \u0433\u0440\u0435\u0448\u043a\u0430 \u043f\u0440\u0438 \u043e\u043f\u0438\u0442 \u0434\u0430 \u0441\u0435 \u0437\u0430\u0440\u0435\u0434\u0438\n\u0441\u043f\u0435\u0446\u0438\u0444\u0438\u0447\u0435\u043d \u0437\u0430 \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0430\u0442\u0430 \u043a\u043e\u0434 \u043d\u0430 \u043c\u0430\u0448\u0438\u043d\u0430\u0442\u0430 \u0412\u0438. @@ -85,7 +102,7 @@ Arduino\ ARM\ (32-bits)\ Boards=Arduino ARM (32-\u0431\u0438\u0442\u043e\u0432\u Arduino\ AVR\ Boards=Arduino AVR \u043f\u043b\u0430\u0442\u043a\u0438 #: Editor.java:2137 -!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= +Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Arduino \u043c\u043e\u0436\u0435 \u0434\u0430 \u043e\u0442\u0432\u0430\u0440\u044f \u0441\u0430\u043c\u043e \u043d\u0435\u0433\u043e\u0432\u0438 \u0441\u043a\u0438\u0446\u0438\n\u0438 \u0434\u0440\u0443\u0433\u0438 \u0444\u0430\u0439\u043b\u043e\u0432\u0435 \u0441 \u0440\u0430\u0437\u0448\u0438\u0440\u0435\u043d\u0438\u0435 .ino \u0438\u043b\u0438 .pde #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=\u0410\u0440\u0434\u0443\u0438\u043d\u043e \u043d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0442\u0440\u044a\u0433\u043d\u0435, \u043f\u043e\u043d\u0435\u0436\u0435 \u043d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430\n\u0441\u044a\u0437\u0434\u0430\u0434\u0435 \u043f\u0430\u043f\u043a\u0430 \u0437\u0430 \u0441\u044a\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0435 \u043d\u0430 \u0412\u0430\u0448\u0438\u0442\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438. @@ -106,12 +123,33 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u0421\u0438\u0433\u0443\u0440\u04 #: Sketch.java:587 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u0421\u0438\u0433\u0443\u0440\u043d\u0438 \u043b\u0438 \u0441\u0442\u0435, \u0447\u0435 \u0438\u0441\u043a\u0430\u0442\u0435 \u0434\u0430 \u0438\u0437\u0442\u0440\u0438\u0435\u0442\u0435 \u0441\u043a\u0438\u0446\u0430\u0442\u0430? +#: ../../../processing/app/Base.java:356 +Argument\ required\ for\ --board=\u0421\u043b\u0435\u0434 --board \u0441\u0435 \u0438\u0437\u0438\u0441\u043a\u0432\u0430 \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442 + +#: ../../../processing/app/Base.java:370 +Argument\ required\ for\ --curdir=\u0421\u043b\u0435\u0434 --curdir \u0441\u0435 \u0438\u0437\u0438\u0441\u043a\u0432\u0430 \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442 + +#: ../../../processing/app/Base.java:385 +Argument\ required\ for\ --get-pref=\u041a\u044a\u043c --get-pref \u0441\u0435 \u0438\u0437\u0438\u0441\u043a\u0432\u0430 \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442 + +#: ../../../processing/app/Base.java:363 +Argument\ required\ for\ --port=\u0421\u043b\u0435\u0434 --port \u0441\u0435 \u0438\u0437\u0438\u0441\u043a\u0432\u0430 \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442 + +#: ../../../processing/app/Base.java:377 +Argument\ required\ for\ --pref=\u0421\u043b\u0435\u0434 --pref \u0441\u0435 \u0438\u0437\u0438\u0441\u043a\u0432\u0430 \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442 + +#: ../../../processing/app/Base.java:384 +Argument\ required\ for\ --preferences-file=\u0421\u043b\u0435\u0434 --preferences-file \u0441\u0435 \u0438\u0437\u0438\u0441\u043a\u0432\u0430 \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442 + #: ../../../processing/app/Preferences.java:137 Armenian=\u0410\u0440\u043c\u0435\u043d\u0441\u043a\u0438 #: ../../../processing/app/Preferences.java:138 Asturian=\u0410\u0441\u0442\u0443\u0440\u0438\u0439\u0441\u043a\u0438 +#: ../../../processing/app/debug/Compiler.java:145 +Authorization\ required=\u0418\u0437\u0438\u0441\u043a\u0432\u0430 \u0441\u0435 \u0443\u0434\u043e\u0441\u0442\u043e\u0432\u0435\u0440\u044f\u0432\u0430\u043d\u0435 + #: tools/AutoFormat.java:91 Auto\ Format=\u0410\u0432\u0442\u043e\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u0430\u043d\u0435 @@ -143,6 +181,12 @@ Bad\ error\ line\:\ {0}=\u041d\u0435\u0434\u043e\u043f\u0443\u0441\u0442\u0438\u #: Editor.java:2136 Bad\ file\ selected=\u0418\u0437\u0431\u0440\u0430\u043d \u0435 \u0433\u0440\u0435\u0448\u0435\u043d \u0444\u0430\u0439\u043b +#: ../../../processing/app/debug/Compiler.java:89 +Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure=\u041f\u043e\u0432\u0440\u0435\u0434\u0435\u043d \u043e\u0441\u043d\u043e\u0432\u0435\u043d \u0444\u0430\u0439\u043b \u043d\u0430 \u0441\u043a\u0438\u0446\u0430\u0442\u0430 \u0438\u043b\u0438 \u0433\u0440\u0435\u0448\u043d\u0430 \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u0438 \u043d\u0430 \u0441\u043a\u0438\u0446\u0430\u0442\u0430 + +#: ../../../processing/app/Preferences.java:149 +Basque=\u0411\u0430\u0441\u043a\u0438 + #: ../../../processing/app/Preferences.java:139 Belarusian=\u0411\u0435\u043b\u0430\u0440\u0443\u0441\u043a\u0438 @@ -169,6 +213,9 @@ Browse=\u0420\u0430\u0437\u0433\u043b\u0435\u0436\u0434\u0430\u043d\u0435 #: Sketch.java:1392 Sketch.java:1423 Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u0420\u0430\u0431\u043e\u0442\u043d\u0430\u0442\u0430 \u043f\u0430\u043f\u043a\u0430 \u0438\u0437\u0447\u0435\u0437\u043d\u0430 \u0438\u043b\u0438 \u043d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u043f\u0438\u0448\u0435 \u0432 \u043d\u0435\u044f +#: ../../../processing/app/Sketch.java:1530 +Build\ options\ changed,\ rebuilding\ all=\u0418\u043c\u0430 \u043f\u0440\u043e\u043c\u0435\u043d\u0435\u043d\u0438 \u043e\u043f\u0446\u0438\u0438 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435. \u041f\u0440\u0430\u0432\u044f \u0432\u0441\u0438\u0447\u043a\u043e \u043d\u0430\u043d\u043e\u0432\u043e + #: ../../../processing/app/Preferences.java:80 Bulgarian=\u0411\u044a\u043b\u0433\u0430\u0440\u0441\u043a\u0438 @@ -181,8 +228,13 @@ Burn\ Bootloader=\u0417\u0430\u043f\u0438\u0448\u0438 \u0431\u0443\u0443\u0442\u #: Editor.java:2504 Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u0417\u0430\u043f\u0438\u0441\u0432\u0430\u043c \u0431\u0443\u0443\u0442\u043b\u043e\u0443\u0434\u044a\u0440\u0430 \u043d\u0430 I/O \u043f\u043b\u0430\u0442\u043a\u0430 (\u043c\u043e\u0436\u0435 \u0434\u0430 \u043f\u0440\u043e\u0434\u044a\u043b\u0436\u0438 \u043c\u0438\u043d\u0443\u0442\u0430)... -#: ../../../processing/app/Base.java:368 -Can't\ open\ source\ sketch\!=\u041d\u0435 \u043c\u043e\u0433\u0430 \u0434\u0430 \u043e\u0442\u0432\u043e\u0440\u044f \u0441\u043a\u0438\u0446\u0430\u0442\u0430 \u0438\u0437\u0442\u043e\u0447\u043d\u0438\u043a\! +#: ../../../processing/app/Base.java:379 +#, java-format +Can\ only\ pass\ one\ of\:\ {0}=\u041c\u043e\u0436\u0435 \u0434\u0430 \u043f\u0440\u0435\u043c\u0438\u043d\u0435 \u0441\u0430\u043c\u043e \u0435\u0434\u0438\u043d \u043e\u0442\: {0} + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +Can't\ find\ the\ sketch\ in\ the\ specified\ path=\u041d\u0435 \u043d\u0430\u043c\u0438\u0440\u0430\u043c \u0441\u043a\u0438\u0446\u0430 \u0432 \u043f\u043e\u0441\u043e\u0447\u0435\u043d\u0438\u044f \u043f\u044a\u0442 #: ../../../processing/app/Preferences.java:92 Canadian\ French=\u041a\u0430\u043d\u0430\u0434\u0441\u043a\u0438 \u0444\u0440\u0435\u043d\u0441\u043a\u0438 @@ -194,6 +246,9 @@ Cancel=\u041e\u0442\u043a\u0430\u0437 #: Sketch.java:455 Cannot\ Rename=\u041d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u043f\u0440\u0435\u0438\u043c\u0435\u043d\u0443\u0432\u0430 +#: ../../../processing/app/Base.java:465 +Cannot\ specify\ any\ sketch\ files=\u041d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u0437\u0430\u0434\u0430\u0434\u0435 \u043d\u0438\u043a\u0430\u043a\u044a\u0432 \u0444\u0430\u0439\u043b-\u0441\u043a\u0438\u0446\u0430 + #: SerialMonitor.java:112 Carriage\ return=\u0417\u0430\u0432\u044a\u0440\u0448\u0432\u0430\u0449 \u0441\u0438\u043c\u0432\u043e\u043b CR @@ -227,10 +282,6 @@ Close=\u0417\u0430\u0442\u0432\u043e\u0440\u0438 #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=\u041a\u043e\u043c\u0435\u043d\u0442\u0438\u0440\u0430\u0439/\u041e\u0442\u043a\u043e\u043c\u0435\u043d\u0442\u0438\u0440\u0430\u0439 -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=\u0413\u0440\u0435\u0448\u043a\u0430 \u0432 \u043a\u043e\u043c\u043f\u0438\u043b\u0430\u0442\u043e\u0440\u0430, \u043c\u043e\u043b\u044f \u0438\u0437\u043f\u0440\u0430\u0442\u0435\u0442\u0435 \u0442\u043e\u0437\u0438 \u043a\u043e\u0434 \u043d\u0430 {0} - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=\u041a\u043e\u043c\u043f\u0438\u043b\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u043a\u0438\u0446\u0430\u0442\u0430... @@ -301,14 +352,13 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=\u041d\u0435 \u043c\u043e\u0436\u0430\u0445 \u0434\u0430 \u043f\u0440\u0435\u0437\u0430\u043f\u0438\u0448\u0430 \u0441\u043a\u0438\u0446\u0430\u0442\u0430 #: Theme.java:52 -!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= +Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u041d\u0435 \u043c\u043e\u0436\u0430\u0445 \u0434\u0430 \u043f\u0440\u043e\u0447\u0435\u0442\u0430 \u0446\u0432\u0435\u0442\u043e\u0432\u0438\u0442\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u0442\u0435\u043c\u0430\u0442\u0430.\n\u0429\u0435 \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u043f\u0440\u0435\u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u0442\u0435 Arduino. #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u041d\u0435 \u043c\u043e\u0433\u0430 \u0434\u0430 \u043f\u0440\u043e\u0447\u0435\u0442\u0430 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438\u0442\u0435 \u043f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435.\n\u0429\u0435 \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u043f\u0440\u0435\u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u0442\u0435 \u0410\u0440\u0434\u0443\u0438\u043d\u043e. -#: Preferences.java:258 -#, java-format -Could\ not\ read\ preferences\ from\ {0}=\u041d\u0435 \u043c\u043e\u0433\u0430 \u0434\u0430 \u043f\u0440\u043e\u0447\u0435\u0442\u0430 \u043f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u043d\u0438\u044f\u0442\u0430 \u043e\u0442 {0} +#: ../../../processing/app/Sketch.java:1525 +Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=\u041d\u0435 \u043c\u043e\u0433\u0430 \u0434\u0430 \u043f\u0440\u043e\u0447\u0435\u0442\u0430 \u0444\u0430\u0439\u043b\u0430 \u0441 \u043f\u0440\u0435\u0434\u0438\u0448\u043d\u0438\u0442\u0435 \u043f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u043d\u0438\u044f \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435. \u041f\u0440\u0430\u0432\u044f \u0432\u0441\u0438\u0447\u043a\u043e \u043d\u0430\u043d\u043e\u0432\u043e #: Base.java:2482 #, java-format @@ -331,6 +381,9 @@ Could\ not\ rename\ the\ sketch.\ (2)=\u041d\u0435 \u043c\u043e\u0436\u0430\u044 #, java-format Could\ not\ replace\ {0}=\u041d\u0435 \u043c\u043e\u0433\u0430 \u0434\u0430 \u0437\u0430\u043c\u0435\u043d\u044f {0} +#: ../../../processing/app/Sketch.java:1579 +Could\ not\ write\ build\ preferences\ file=\u041d\u0435 \u043c\u043e\u0433\u0430 \u0434\u0430 \u0437\u0430\u043f\u0438\u0448\u0430 \u0444\u0430\u0439\u043b\u0430 \u0441 \u043f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u043d\u0438\u044f\u0442\u0430 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 + #: tools/Archiver.java:74 Couldn't\ archive\ sketch=\u041d\u0435 \u043c\u043e\u0436\u0430\u0445 \u0434\u0430 \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043c \u0441\u043a\u0438\u0446\u0430\u0442\u0430 @@ -379,12 +432,19 @@ Done\ Saving.=\u0417\u0430\u043f\u0438\u0441\u0432\u0430\u043d\u0435\u0442\u043e #: Editor.java:2510 Done\ burning\ bootloader.=\u0417\u0430\u043f\u0438\u0441\u044a\u0442 \u043d\u0430 \u0431\u0443\u0443\u0442\u043b\u043e\u0443\u0434\u044a\u0440\u0430 \u0437\u0430\u0432\u044a\u0440\u0448\u0438. +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +Done\ compiling=\u041a\u043e\u043c\u043f\u0438\u043b\u0438\u0440\u0430\u043d\u0435\u0442\u043e \u0437\u0430\u0432\u044a\u0440\u0448\u0438 + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=\u041a\u043e\u043c\u043f\u0438\u043b\u0438\u0440\u0430\u043d\u0435\u0442\u043e \u0437\u0430\u0432\u044a\u0440\u0448\u0438. #: Editor.java:2564 Done\ printing.=\u041e\u0442\u043f\u0435\u0447\u0430\u0442\u0432\u0430\u043d\u0435\u0442\u043e \u0437\u0430\u0432\u044a\u0440\u0448\u0438. +#: ../../../processing/app/BaseNoGui.java:514 +Done\ uploading=\u041a\u0430\u0447\u0432\u0430\u043d\u0435\u0442\u043e \u0437\u0430\u0432\u044a\u0440\u0448\u0438 + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=\u041a\u0430\u0447\u0432\u0430\u043d\u0435\u0442\u043e \u0437\u0430\u0432\u044a\u0440\u0448\u0438. @@ -463,6 +523,9 @@ Error\ while\ burning\ bootloader.=\u0413\u0440\u0435\u0448\u043a\u0430 \u043f\u #: ../../../processing/app/Editor.java:2555 Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=\u0413\u0440\u0435\u0448\u043a\u0430 \u043f\u0440\u0438 \u0437\u0430\u043f\u0438\u0441 \u043d\u0430 \u0431\u0443\u0443\u0442\u043b\u043e\u0443\u0434\u044a\u0440\u0430\: \u043b\u0438\u043f\u0441\u0432\u0430\u0449 '{0}' \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u043e\u043d\u0435\u043d \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u044a\u0440 +#: ../../../../../app/src/processing/app/Editor.java:1940 +Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter=\u0413\u0440\u0435\u0448\u043a\u0430 \u043f\u0440\u0438 \u043a\u043e\u043c\u043f\u0438\u043b\u0438\u0440\u0430\u043d\u0435\: \u043b\u0438\u043f\u0441\u0432\u0430\u0449 '{0}' \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u043e\u043d\u0435\u043d \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u044a\u0440 + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=\u0413\u0440\u0435\u0448\u043a\u0430 \u043f\u0440\u0438 \u0437\u0430\u0440\u0435\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u043a\u043e\u0434 {0} @@ -470,10 +533,21 @@ Error\ while\ loading\ code\ {0}=\u0413\u0440\u0435\u0448\u043a\u0430 \u043f\u04 #: Editor.java:2567 Error\ while\ printing.=\u0413\u0440\u0435\u0448\u043a\u0430 \u043f\u0440\u0438 \u043e\u0442\u043f\u0435\u0447\u0430\u0442\u0432\u0430\u043d\u0435\u0442\u043e. +#: ../../../processing/app/BaseNoGui.java:528 +Error\ while\ uploading=\u0413\u0440\u0435\u0448\u043a\u0430 \u043f\u0440\u0438 \u043a\u0430\u0447\u0432\u0430\u043d\u0435\u0442\u043e + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=\u0413\u0440\u0435\u0448\u043a\u0430 \u043f\u0440\u0438 \u043a\u0430\u0447\u0432\u0430\u043d\u0435\: \u043b\u0438\u043f\u0441\u0432\u0430\u0449 '{0}' \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u043e\u043d\u0435\u043d \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u044a\u0440 +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +Error\ while\ verifying=\u0413\u0440\u0435\u0448\u043a\u0430 \u043f\u0440\u0438 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430\u0442\u0430 + +#: ../../../processing/app/BaseNoGui.java:521 +Error\ while\ verifying/uploading=\u0413\u0440\u0435\u0448\u043a\u0430 \u043f\u0440\u0438 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430\u0442\u0430/\u043a\u0430\u0447\u0432\u0430\u043d\u0435\u0442\u043e + #: Preferences.java:93 Estonian=\u0415\u0441\u0442\u043e\u043d\u0441\u043a\u0438 @@ -489,6 +563,10 @@ Export\ canceled,\ changes\ must\ first\ be\ saved.=\u0415\u043a\u0441\u043f\u04 #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +Failed\ to\ open\ sketch\:\ "{0}"=\u041f\u0440\u043e\u0432\u0430\u043b\u0438 \u0441\u0435 \u043e\u0442\u0432\u0430\u0440\u044f\u043d\u0435\u0442\u043e \u043d\u0430 \u0441\u043a\u0438\u0446\u0430\: "{0}" + #: Editor.java:491 File=\u0424\u0430\u0439\u043b @@ -523,8 +601,9 @@ Fix\ Encoding\ &\ Reload=\u041e\u043f\u0440\u0430\u0432\u0438 \u043a\u043e\u0434 #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=\u0417\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043e\u0442\u043d\u043e\u0441\u043d\u043e \u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0438, \u0432\u0438\u0436\u0442\u0435\: http\://arduino.cc/en/Guide/Libraries\n -#: debug/BasicUploader.java:80 -Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =\u041e\u043f\u0438\u0442 \u0437\u0430 \u0440\u0435\u0441\u0435\u0442 \u0441 1200bps \u043e\u0442\u0432\u0430\u0440\u044f\u043d\u0435/\u0437\u0430\u0442\u0432\u0430\u0440\u044f\u043d\u0435 \u043d\u0430 \u043f\u043e\u0440\u0442\u0430 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}=\u041f\u0440\u0438\u043d\u0443\u0434\u0438\u0442\u0435\u043b\u0435\u043d \u0440\u0435\u0441\u0435\u0442 \u0441 1200bps \u043e\u0442\u0432\u0430\u0440\u044f\u043d\u0435/\u0437\u0430\u0442\u0432\u0430\u0440\u044f\u043d\u0435 \u043d\u0430 \u043f\u043e\u0440\u0442 {0} #: Preferences.java:95 French=\u0424\u0440\u0435\u043d\u0441\u043a\u0438 @@ -628,8 +707,8 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=\u0411\u043 #: Preferences.java:106 Lithuaninan=\u041b\u0438\u0442\u043e\u0432\u0441\u043a\u0438 -#: ../../../processing/app/Sketch.java:1660 -Low\ memory\ available,\ stability\ problems\ may\ occur=\u0414\u043e\u0441\u0442\u044a\u043f\u043d\u0430 \u0435 \u043c\u0430\u043b\u043a\u043e \u043f\u0430\u043c\u0435\u0442. \u0412\u044a\u0437\u043c\u043e\u0436\u043d\u0438 \u0441\u0430 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0438 +#: ../../../processing/app/Sketch.java:1684 +Low\ memory\ available,\ stability\ problems\ may\ occur.=\u0414\u043e\u0441\u0442\u044a\u043f\u043d\u0430\u0442\u0430 \u043f\u0430\u043c\u0435\u0442 \u0435 \u043c\u0430\u043b\u043a\u043e. \u0412\u044a\u0437\u043c\u043e\u0436\u043d\u0438 \u0441\u0430 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0438. #: Preferences.java:107 Marathi=\u041c\u0430\u0440\u0430\u0442\u0445\u0438 @@ -640,12 +719,24 @@ Message=\u0421\u044a\u043e\u0431\u0449\u0435\u043d\u0438\u0435 #: ../../../processing/app/preproc/PdePreprocessor.java:412 Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=\u041b\u0438\u043f\u0441\u0432\u0430\u0449 */ \u0432 \u043a\u0440\u0430\u044f \u043d\u0430 /* \u043a\u043e\u043c\u0435\u043d\u0442\u0430\u0440 */ +#: ../../../processing/app/BaseNoGui.java:455 +Mode\ not\ supported=\u0420\u0435\u0436\u0438\u043c\u044a\u0442 \u043d\u0435 \u0441\u0435 \u043f\u043e\u0434\u0434\u044a\u0440\u0436\u0430 + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\u041f\u043e\u0432\u0435\u0447\u0435 \u043f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u043d\u0438\u044f \u043c\u043e\u0436\u0435 \u0434\u0430 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0442\u0435 \u0434\u0438\u0440\u0435\u043a\u0442\u043d\u043e \u0432\u044a\u0432 \u0444\u0430\u0439\u043b\u0430 #: Editor.java:2156 Moving=\u041f\u0440\u0435\u043c\u0435\u0441\u0442\u0432\u0430\u043d\u0435 +#: ../../../processing/app/BaseNoGui.java:484 +Multiple\ files\ not\ supported=\u041c\u043d\u043e\u0436\u0435\u0441\u0442\u0432\u043e \u0444\u0430\u0439\u043b\u043e\u0432\u0435 \u043d\u0435 \u0441\u0435 \u043f\u043e\u0434\u0434\u044a\u0440\u0436\u0430\u0442 + +#: ../../../processing/app/Base.java:395 +Must\ specify\ exactly\ one\ sketch\ file=\u0422\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0443\u043a\u0430\u0436\u0435\u0442\u0435 \u0442\u043e\u0447\u043d\u043e \u0435\u0434\u0438\u043d \u0444\u0430\u0439\u043b-\u0441\u043a\u0438\u0446\u0430 + +#: ../../../processing/app/Preferences.java:158 +N'Ko=N'Ko + #: Sketch.java:282 Name\ for\ new\ file\:=\u0418\u043c\u0435 \u0437\u0430 \u043d\u043e\u0432 \u0444\u0430\u0439\u043b\: @@ -673,12 +764,18 @@ Next\ Tab=\u0421\u043b\u0435\u0434\u0432\u0430\u0449 \u043f\u043e\u0434\u043f\u0 #: Preferences.java:78 UpdateCheck.java:108 No=\u041d\u0435 +#: ../../../processing/app/debug/Compiler.java:146 +No\ athorization\ data\ found=\u041d\u0435 \u0441\u0430 \u043d\u0430\u043c\u0435\u0440\u0435\u043d\u0438 \u0434\u0430\u043d\u043d\u0438 \u0437\u0430 \u0443\u0434\u043e\u0441\u0442\u043e\u0432\u0435\u0440\u044f\u0432\u0430\u043d\u0435 + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u041d\u0435 \u0435 \u0438\u0437\u0431\u0440\u0430\u043d\u0430 \u043f\u043b\u0430\u0442\u043a\u0430; \u043c\u043e\u043b\u044f \u0438\u0437\u0431\u0435\u0440\u0435\u0442\u0435 \u043f\u043b\u0430\u0442\u043a\u0430 \u043e\u0442 \u043c\u0435\u043d\u044e\u0442\u043e \u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438 > \u041f\u043b\u0430\u0442\u043a\u0430. #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=\u041d\u0435 \u0441\u0430 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u0438 \u043f\u0440\u043e\u043c\u0435\u043d\u0438 \u0437\u0430 \u0430\u0432\u0442\u043e\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u0430\u043d\u0435\u0442\u043e. +#: ../../../processing/app/BaseNoGui.java:665 +No\ command\ line\ parameters\ found=\u041d\u0435 \u0441\u0430 \u043d\u0430\u043c\u0435\u0440\u0435\u043d\u0438 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0438 \u0432 \u043a\u043e\u043c\u0430\u043d\u0434\u043d\u0438\u044f \u0440\u0435\u0434 + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=\u041d\u0435 \u0431\u044f\u0445\u0430 \u0434\u043e\u0431\u0430\u0432\u0435\u043d\u0438 \u0444\u0430\u0439\u043b\u043e\u0432\u0435 \u043a\u044a\u043c \u0441\u043a\u0438\u0446\u0430\u0442\u0430. @@ -688,6 +785,9 @@ No\ launcher\ available=\u041d\u044f\u043c\u0430 \u0437\u0430\u0434\u0430\u0434\ #: SerialMonitor.java:112 No\ line\ ending=\u0411\u0435\u0437 \u0437\u0430\u0432\u044a\u0440\u0448\u0432\u0430\u0449\u0438 \u0441\u0438\u043c\u0432\u043e\u043b\u0438 +#: ../../../processing/app/BaseNoGui.java:665 +No\ parameters=\u041d\u044f\u043c\u0430 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0438 + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u041d\u0435, \u043d\u0430\u0438\u0441\u0442\u0438\u043d\u0430, \u0437\u0430 \u0442\u0435\u0431 \u0435 \u0432\u0440\u0435\u043c\u0435 \u0437\u0430 \u043c\u0430\u043b\u043a\u043e \u0441\u0432\u0435\u0436 \u0432\u044a\u0437\u0434\u0443\u0445. @@ -695,6 +795,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u041d\u0435, \u043d\u0430\u #, java-format No\ reference\ available\ for\ "{0}"=\u041d\u0435 \u0435 \u043d\u0430\u043b\u0438\u0447\u043d\u043e \u043e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0437\u0430 "{0}" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +No\ sketch=\u041d\u044f\u043c\u0430 \u0441\u043a\u0438\u0446\u0430 + +#: ../../../processing/app/BaseNoGui.java:428 +No\ sketchbook=\u041d\u044f\u043c\u0430 \u0441\u043a\u0438\u0446\u043d\u0438\u043a + +#: ../../../processing/app/Sketch.java:204 +No\ valid\ code\ files\ found=\u041d\u044f\u043c\u0430 \u043d\u0430\u043c\u0435\u0440\u0435\u043d\u0438 \u0432\u0430\u043b\u0438\u0434\u043d\u0438 \u0444\u0430\u0439\u043b\u043e\u0432\u0435 \u0441 \u043a\u043e\u0434 + #: ../../../processing/app/Base.java:309 No\ valid\ configured\ cores\ found\!\ Exiting...=\u041d\u044f\u043c\u0430 \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u0430\u043d\u0438 \u0432\u0430\u043b\u0438\u0434\u043d\u0438 \u044f\u0434\u0440\u0430\! \u0418\u0437\u043b\u0438\u0437\u0430\u043c... @@ -721,6 +831,9 @@ OK=OK #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=\u0415\u0434\u0438\u043d \u0444\u0430\u0439\u043b \u0435 \u0434\u043e\u0431\u0430\u0432\u0435\u043d \u043a\u044a\u043c \u0441\u043a\u0438\u0446\u0430\u0442\u0430. +#: ../../../processing/app/BaseNoGui.java:455 +Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported=\u041f\u043e\u0434\u0434\u044a\u0440\u0436\u0430\u0442 \u0441\u0435 \u0441\u0430\u043c\u043e --verify, --upload \u0438\u043b\u0438 --get-pref + #: EditorToolbar.java:41 Open=\u041e\u0442\u0432\u0430\u0440\u044f\u043d\u0435 @@ -748,12 +861,22 @@ Paste=\u041f\u043e\u0441\u0442\u0430\u0432\u044f\u043d\u0435 #: Preferences.java:109 Persian=\u041f\u0435\u0440\u0441\u0438\u0439\u0441\u043a\u0438 +#: ../../../processing/app/Preferences.java:161 +Persian\ (Iran)=\u041f\u0435\u0440\u0441\u0438\u0439\u0441\u043a\u0438 (\u0418\u0440\u0430\u043d) + #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=\u041c\u043e\u043b\u044f, \u0438\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u0430\u0439\u0442\u0435 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430\u0442\u0430 SPI \u043e\u0442 \u043c\u0435\u043d\u044e\u0442\u043e \u0421\u043a\u0438\u0446\u0430 > \u0418\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430. +#: ../../../processing/app/debug/Compiler.java:529 +Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=\u041c\u043e\u043b\u044f, \u0438\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u0430\u0439\u0442\u0435 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430\u0442\u0430 Wire \u043e\u0442 \u043c\u0435\u043d\u044e\u0442\u043e \u0421\u043a\u0438\u0446\u0430 > \u0418\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430. + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=\u041c\u043e\u043b\u044f, \u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u0439\u0442\u0435 JDK 1.5 \u0438\u043b\u0438 \u043f\u043e-\u043d\u043e\u0432 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu=\u041c\u043e\u043b\u044f, \u0438\u0437\u0431\u0435\u0440\u0435\u0442\u0435 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u0430\u0442\u043e\u0440 \u043e\u0442 \u043c\u0435\u043d\u044e\u0442\u043e \u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438->\u041f\u0440\u043e\u0433\u0440\u0430\u043c\u0430\u0442\u043e\u0440 + #: Preferences.java:110 Polish=\u041f\u043e\u043b\u0441\u043a\u0438 @@ -875,9 +998,15 @@ Save\ changes\ to\ "{0}"?\ \ =\u0414\u0430 \u0437\u0430\u043f\u0438\u0448\u0430 #: Sketch.java:825 Save\ sketch\ folder\ as...=\u0417\u0430\u043f\u0438\u0448\u0438 \u043f\u0430\u043f\u043a\u0430\u0442\u0430 \u043d\u0430 \u0441\u043a\u0438\u0446\u0430\u0442\u0430 \u043a\u0430\u0442\u043e... +#: ../../../../../app/src/processing/app/Preferences.java:425 +Save\ when\ verifying\ or\ uploading=\u0417\u0430\u043f\u0438\u0441 \u043f\u0440\u0438 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0430\u0442\u0430 \u0438\u043b\u0438 \u043a\u0430\u0447\u0432\u0430\u043d\u0435\u0442\u043e + #: Editor.java:2270 Editor.java:2308 Saving...=\u0417\u0430\u043f\u0438\u0441\u0432\u0430\u043d\u0435... +#: ../../../processing/app/FindReplace.java:131 +Search\ all\ Sketch\ Tabs=\u0422\u044a\u0440\u0441\u0435\u043d\u0435 \u0432\u044a\u0432 \u0432\u0441\u0438\u0447\u043a\u0438 \u043f\u043e\u0434\u043f\u0440\u043e\u0437\u043e\u0440\u0446\u0438 + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=\u0418\u0437\u0431\u043e\u0440 \u043d\u0430 \u043f\u0430\u043f\u043a\u0430 (\u0438\u043b\u0438 \u0441\u044a\u0437\u0434\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043d\u043e\u0432\u0430) \u0437\u0430 \u0441\u043a\u0438\u0446\u0438... @@ -902,14 +1031,6 @@ Send=\u0418\u0437\u043f\u0440\u0430\u0442\u0438 #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=\u0421\u0435\u0440\u0438\u0435\u043d \u043c\u043e\u043d\u0438\u0442\u043e\u0440 -#: Serial.java:174 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=\u0421\u0435\u0440\u0438\u0439\u043d\u0438\u044f\u0442 \u043f\u043e\u0440\u0442 ''{0}'' \u0432\u0435\u0447\u0435 \u0435 \u0432 \u0443\u043f\u043e\u0442\u0440\u0435\u0431\u0430. \u041f\u0440\u043e\u0431\u0432\u0430\u0439\u0442\u0435 \u043a\u0430\u0442\u043e \u0437\u0430\u0442\u0432\u043e\u0440\u0438\u0442\u0435 \u0432\u0441\u0438\u0447\u043a\u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u0438, \u043a\u043e\u0438\u0442\u043e \u043c\u043e\u0436\u0435 \u0434\u0430 \u0433\u043e \u043f\u043e\u043b\u0437\u0432\u0430\u0442. - -#: Serial.java:121 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=\u0421\u0435\u0440\u0438\u0439\u043d\u0438\u044f\u0442 \u043f\u043e\u0440\u0442 ''{0}'' \u0432\u0435\u0447\u0435 \u0435 \u0432 \u0443\u043f\u043e\u0442\u0440\u0435\u0431\u0430. \u041f\u0440\u043e\u0431\u0432\u0430\u0439\u0442\u0435 \u043a\u0430\u0442\u043e \u0437\u0430\u0442\u0432\u043e\u0440\u0438\u0442\u0435 \u0432\u0441\u0438\u0447\u043a\u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u0438, \u043a\u043e\u0438\u0442\u043e \u043c\u043e\u0436\u0435 \u0434\u0430 \u0433\u043e \u043f\u043e\u043b\u0437\u0432\u0430\u0442. - #: Serial.java:194 #, java-format Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=\u0421\u0435\u0440\u0438\u0439\u043d\u0438\u044f\u0442 \u043f\u043e\u0440\u0442 ''{0}'' \u043d\u0435 \u0435 \u043d\u0430\u043c\u0435\u0440\u0435\u043d. \u0414\u0430\u043b\u0438 \u0441\u0442\u0435 \u0438\u0437\u0431\u0440\u0430\u043b\u0438 \u043f\u0440\u0430\u0432\u0438\u043b\u043d\u0438\u044f \u043e\u0442 \u043c\u0435\u043d\u044e\u0442\u043e \u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438 > \u0421\u0435\u0440\u0438\u0435\u043d \u043f\u043e\u0440\u0442? @@ -964,6 +1085,9 @@ Sketchbook\ folder\ disappeared=\u041f\u0430\u043f\u043a\u0430\u0442\u0430 \u044 #: Preferences.java:315 Sketchbook\ location\:=\u041c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u043d\u0430 \u0441\u043a\u0438\u0446\u043d\u0438\u043a\u0430\: +#: ../../../processing/app/BaseNoGui.java:428 +Sketchbook\ path\ not\ defined=\u041d\u0435 \u0435 \u0437\u0430\u0434\u0430\u0434\u0435\u043d \u043f\u044a\u0442 \u0434\u043e \u0441\u043a\u0438\u0446\u043d\u0438\u043a\u0430 + #: ../../../processing/app/Base.java:785 Sketches\ (*.ino,\ *.pde)=\u0421\u043a\u0438\u0446\u0438 (*.ino, *.pde) @@ -998,6 +1122,9 @@ Tamil=\u0422\u0430\u043c\u0438\u043b\u0441\u043a\u0438 #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=\u041a\u043b\u044e\u0447\u043e\u0432\u0430\u0442\u0430 \u0434\u0443\u043c\u0430 'BYTE' \u0432\u0435\u0447\u0435 \u043d\u0435 \u0441\u0435 \u043f\u043e\u0434\u0434\u044a\u0440\u0436\u0430. +#: ../../../processing/app/BaseNoGui.java:484 +The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time=\u041e\u043f\u0446\u0438\u044f\u0442\u0430 --upload \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430 \u0441\u0430\u043c\u043e \u0441 \u0435\u0434\u0438\u043d \u0444\u0430\u0439\u043b + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=\u041a\u043b\u0430\u0441\u044a\u0442 Client \u0431\u0435\u0448\u0435 \u043f\u0440\u0435\u0438\u043c\u0435\u043d\u0443\u0432\u0430\u043d \u043d\u0430 EthernetClient. @@ -1034,12 +1161,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=\u041f\u0430\u043f\u043a\u0430\u0442\u0430 \u0441\u044a\u0441 \u0441\u043a\u0438\u0446\u0430\u0442\u0430 \u0438\u0437\u0447\u0435\u0437\u043d\u0430.\n \u0429\u0435 \u043f\u0440\u043e\u0431\u0432\u0430\u043c \u0434\u0430 \u044f \u043f\u0440\u0435\u0437\u0430\u043f\u0438\u0448\u0430 \u043d\u0430 \u0441\u044a\u0449\u043e\u0442\u043e \u043c\u044f\u0441\u0442\u043e,\n\u043d\u043e \u0432\u0441\u0438\u0447\u043a\u043e, \u043e\u0441\u0432\u0435\u043d \u043a\u043e\u0434\u0430, \u0449\u0435 \u0431\u044a\u0434\u0435 \u0438\u0437\u0433\u0443\u0431\u0435\u043d\u043e. -#: Sketch.java:2018 -The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=\u0418\u043c\u0435\u0442\u043e \u043d\u0430 \u0441\u043a\u0438\u0446\u0430\u0442\u0430 \u0431\u0435\u0448\u0435 \u043f\u0440\u043e\u043c\u0435\u043d\u0435\u043d\u043e. \u0418\u043c\u0435\u043d\u0430\u0442\u0430 \u043d\u0430 \u0441\u043a\u0438\u0446\u0438 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u0442\n\u0441\u0430\u043c\u043e ASCII \u0441\u0438\u043c\u0432\u043e\u043b\u0438 (\u043d\u043e \u043d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0437\u0430\u043f\u043e\u0447\u0432\u0430\u0442 \u0441 \u0446\u0438\u0444\u0440\u0430).\n\u0422\u0435 \u0442\u0440\u044f\u0431\u0432\u0430, \u0441\u044a\u0449\u043e, \u0434\u0430 \u0441\u0430 \u043f\u043e-\u043a\u044a\u0441\u0438 \u043e\u0442 64 \u0441\u0438\u043c\u0432\u043e\u043b\u0430. +#: ../../../processing/app/Sketch.java:2028 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.=\u0418\u043c\u0435\u0442\u043e \u043d\u0430 \u0441\u043a\u0438\u0446\u0430\u0442\u0430 \u0442\u0440\u044f\u0431\u0432\u0430\u0448\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u043f\u0440\u043e\u043c\u0435\u043d\u0435\u043d\u043e. \u0418\u043c\u0435\u043d\u0430\u0442\u0430 \u043d\u0430 \u0441\u043a\u0438\u0446\u0438\n\u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u0442 \u0441\u0430\u043c\u043e ASCII \u0441\u0438\u043c\u0432\u043e\u043b\u0438 (\u043d\u043e \u043d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0437\u0430\u043f\u043e\u0447\u0432\u0430\u0442 \u0441\n\u0446\u0438\u0444\u0440\u0430). \u0422\u0435 \u0442\u0440\u044f\u0431\u0432\u0430 \u0441\u044a\u0449\u043e \u0434\u0430 \u0441\u0430 \u043f\u043e-\u043a\u044a\u0441\u0438 \u043e\u0442 64 \u0441\u0438\u043c\u0432\u043e\u043b\u0430. #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=\u041f\u0430\u043f\u043a\u0430\u0442\u0430 \u0441\u044a\u0441 \u0441\u043a\u0438\u0446\u0438 \u0432\u0435\u0447\u0435 \u043d\u0435 \u0441\u044a\u0449\u0435\u0441\u0442\u0432\u0443\u0432\u0430. \u0410\u0440\u0434\u0443\u0438\u043d\u043e\n\u0449\u0435 \u043f\u0440\u0435\u043c\u0438\u043d\u0435 \u043a\u044a\u043c \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u0442\u043e\n\u043f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435 \u0438 \u0449\u0435 \u0441\u044a\u0437\u0434\u0430\u0434\u0435 \u043d\u043e\u0432\u0430 \u043f\u0430\u043f\u043a\u0430 \u0430\u043a\u043e \u0435\n\u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e. \u0421\u043b\u0435\u0434 \u0442\u043e\u0432\u0430, \u0410\u0440\u0434\u0443\u0438\u043d\u043e \u0449\u0435 \u0441\u043f\u0440\u0435 \u0434\u0430\n\u0433\u043e\u0432\u043e\u0440\u0438 \u0437\u0430 \u0441\u0435\u0431\u0435 \u0441\u0438 \u0432 \u0442\u0440\u0435\u0442\u043e \u043b\u0438\u0446\u0435. +#: ../../../processing/app/debug/Compiler.java:201 +Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.=\u0412\u044a\u0432 \u0432\u044a\u043d\u0448\u043d\u0438\u044f platform.txt \u043d\u0435 \u0435 \u0434\u0435\u0444\u0438\u043d\u0438\u0440\u0430\u043d compiler.path. \u041c\u043e\u043b\u044f, \u0441\u044a\u043e\u0431\u0449\u0435\u0442\u0435 \u0442\u043e\u0432\u0430 \u043d\u0430 \u043f\u043e\u0434\u0434\u044a\u0440\u0436\u0430\u0449\u0438\u0442\u0435 \u0442\u043e\u0437\u0438 \u0445\u0430\u0440\u0434\u0443\u0435\u0440. + #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u0422\u043e\u0437\u0438 \u0444\u0430\u0439\u043b \u0432\u0435\u0447\u0435 \u0435 \u043a\u043e\u043f\u0438\u0440\u0430\u043d \u043d\u0430 \u043c\u044f\u0441\u0442\u043e, \u043e\u0442\n\u043a\u044a\u0434\u0435\u0442\u043e \u0442\u0438 \u0441\u0435 \u043e\u043f\u0438\u0442\u0432\u0430\u0448 \u0434\u0430 \u0433\u043e \u0434\u043e\u0431\u0430\u0432\u0438\u0448.\n\u041d\u044f\u043c\u0430 \u0434\u0430 \u043f\u0440\u0430\u0432\u044f \u043d\u0438\u0449\u043e. @@ -1143,6 +1273,10 @@ Vietnamese=\u0412\u0438\u0435\u0442\u043d\u0430\u043c\u0441\u043a\u0438 #: Editor.java:1105 Visit\ Arduino.cc=\u041f\u043e\u0441\u0435\u0442\u0435\u0442\u0435 Arduino.cc +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=\u0412\u041d\u0418\u041c\u0410\u041d\u0418\u0415\: \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430\u0442\u0430 {0} \u0442\u0432\u044a\u0440\u0434\u0438, \u0447\u0435 \u0440\u0430\u0431\u043e\u0442\u0438 \u043d\u0430 {1} \u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0438 \u0438 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0435 \u043d\u0435\u0441\u044a\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u0430 \u0441 \u0442\u0435\u043a\u0443\u0449\u0430\u0442\u0430 \u0412\u0438 \u043f\u043b\u0430\u0442\u043a\u0430, \u043a\u043e\u044f\u0442\u043e \u0435 \u0441 {2} \u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430. + #: Base.java:2128 Warning=\u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435 @@ -1197,7 +1331,7 @@ Zip\ doesn't\ contain\ a\ library=Zip \u0444\u0430\u0439\u043b\u044a\u0442 \u043 #: SketchCode.java:258 #, java-format -!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= +"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" \u0441\u044a\u0434\u044a\u0440\u0436\u0430 \u043d\u0435\u043f\u043e\u0437\u043d\u0430\u0442\u0438 \u0441\u0438\u043c\u0432\u043e\u043b\u0438. \u0410\u043a\u043e \u0442\u043e\u0437\u0438 \u043a\u043e\u0434 \u0435 \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d \u0441 \u043f\u043e-\u0441\u0442\u0430\u0440\u0430 \u0432\u0435\u0440\u0441\u0438\u044f \u043d\u0430 Arduino, \u043c\u043e\u0436\u0435 \u0434\u0430 \u0435 \u043d\u0443\u0436\u043d\u043e \u0434\u0430 \u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435 \u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438 -> \u041a\u043e\u0440\u0435\u043a\u0446\u0438\u044f \u043d\u0430 \u043a\u043e\u0434\u0438\u0440\u0430\u043d\u0435\u0442\u043e & \u041f\u0440\u0435\u0437\u0430\u0440\u0435\u0436\u0434\u0430\u043d\u0435, \u0437\u0430 \u0434\u0430 \u043e\u0431\u043d\u043e\u0432\u0438\u0442\u0435 \u0441\u043a\u0438\u0446\u0430\u0442\u0430 \u0441 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 UTF-8 \u043a\u043e\u0434\u0438\u0440\u0430\u043d\u0435. \u0410\u043a\u043e \u043d\u0435, \u043c\u043e\u0436\u0435 \u0434\u0430 \u0435 \u043d\u0443\u0436\u043d\u043e \u0434\u0430 \u0438\u0437\u0442\u0440\u0438\u0435\u0442\u0435 \u0433\u0440\u0435\u0448\u043d\u0438\u0442\u0435 \u0441\u0438\u043c\u0432\u043e\u043b\u0438, \u0437\u0430 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0431\u0430\u0432\u0438\u0442\u0435 \u043e\u0442 \u0442\u043e\u0432\u0430 \u043f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0435. #: debug/Compiler.java:409 \nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\n\u0421\u043b\u0435\u0434 \u0410\u0440\u0434\u0443\u0438\u043d\u043e 0019, \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430\u0442\u0430 Ethernet \u0435 \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u0430 \u043e\u0442 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430\u0442\u0430 SPI.\n\u0418\u0437\u0433\u043b\u0435\u0436\u0434\u0430, \u0447\u0435 \u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435 \u043d\u0435\u044f \u0438\u043b\u0438 \u0434\u0440\u0443\u0433\u0430 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430, \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u0430 \u043e\u0442 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430\u0442\u0430 SPI.\n\n @@ -1241,9 +1375,6 @@ environment=\u0441\u0440\u0435\u0434\u0430 #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1266,13 +1397,6 @@ name\ is\ null=name \u0435 null #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=\u0411\u0443\u0444\u0435\u0440\u044a\u0442 \u043d\u0430 readBytesUntil() \u0435 \u0442\u0432\u044a\u0440\u0434\u0435 \u043c\u0430\u043b\u044a\u043a \u0437\u0430 {0} \u0431\u0430\u0439\u0442\u0430 \u0434\u043e \u0437\u043d\u0430\u043a\u0430 {1} \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u0435\u043b\u043d\u043e - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: \u0432\u044a\u0442\u0440\u0435\u0448\u043d\u0430 \u0433\u0440\u0435\u0448\u043a\u0430. \u041d\u0435 \u043d\u0430\u043c\u0435\u0440\u0438\u0445 \u043a\u043e\u0434 - #: Editor.java:932 serialMenu\ is\ null=serialMenu \u0435 null @@ -1280,6 +1404,10 @@ serialMenu\ is\ null=serialMenu \u0435 null #, java-format the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=\u0438\u0437\u0431\u0440\u0430\u043d\u0438\u044f\u0442 \u0441\u0435\u0440\u0438\u0435\u043d \u043f\u043e\u0440\u0442 {0} \u043d\u0435 \u0441\u044a\u0449\u0435\u0441\u0442\u0432\u0443\u0432\u0430 \u0438\u043b\u0438 \u043f\u043b\u0430\u0442\u043a\u0430\u0442\u0430 \u0412\u0438 \u043d\u0435 \u0435 \u0441\u0432\u044a\u0440\u0437\u0430\u043d\u0430 +#: ../../../processing/app/Base.java:389 +#, java-format +unknown\ option\:\ {0}=\u043d\u0435\u043f\u043e\u0437\u043d\u0430\u0442\u0430 \u043e\u043f\u0446\u0438\u044f\: {0} + #: Preferences.java:391 upload=\u043a\u0430\u0447\u0432\u0430\u043d\u0435 @@ -1298,3 +1426,35 @@ upload=\u043a\u0430\u0447\u0432\u0430\u043d\u0435 #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"={0}\: \u041d\u0435\u0432\u0430\u043b\u0438\u0434\u0435\u043d \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442 \u043a\u044a\u043c --pref, \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0435 \u0432\u044a\u0432 \u0444\u043e\u0440\u043c\u0430\u0442 "pref\=value" + +#: ../../../processing/app/Base.java:476 +#, java-format +{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"={0}\: \u043d\u0435\u0432\u0430\u043b\u0438\u0434\u043d\u043e \u0438\u043c\u0435 \u043d\u0430 \u043f\u043b\u0430\u0442\u043a\u0430, \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0435 \u0432\u044a\u0432 \u0444\u043e\u0440\u043c\u0430\u0442 "package\:arch\:board" \u0438\u043b\u0438 "package\:arch\:board\:options" + +#: ../../../processing/app/Base.java:509 +#, java-format +{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"={0}\: \u043d\u0435\u0432\u0430\u043b\u0438\u0434\u043d\u0430 \u043e\u043f\u0446\u0438\u044f \u0437\u0430 "{1}" \u043e\u043f\u0446\u0438\u044f \u0437\u0430 \u043f\u043b\u0430\u0442\u043a\u0430 "{2}" + +#: ../../../processing/app/Base.java:507 +#, java-format +{0}\:\ Invalid\ option\ for\ board\ "{1}"={0}\: \u043d\u0435\u0432\u0430\u043b\u0438\u0434\u043d\u0430 \u043e\u043f\u0446\u0438\u044f \u0437\u0430 \u043f\u043b\u0430\u0442\u043a\u0430 "{1}" + +#: ../../../processing/app/Base.java:502 +#, java-format +{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"={0}\: \u041d\u0435\u0432\u0430\u043b\u0438\u0434\u043d\u0430 \u043e\u043f\u0446\u0438\u044f, \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0435 \u0432\u044a\u0432 \u0444\u043e\u0440\u043c\u0430\u0442 "name\=value" + +#: ../../../processing/app/Base.java:486 +#, java-format +{0}\:\ Unknown\ architecture={0}\: \u041d\u0435\u043f\u043e\u0437\u043d\u0430\u0442\u0430 \u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430 + +#: ../../../processing/app/Base.java:491 +#, java-format +{0}\:\ Unknown\ board={0}\: \u041d\u0435\u043f\u043e\u0437\u043d\u0430\u0442\u0430 \u043f\u043b\u0430\u0442\u043a\u0430 + +#: ../../../processing/app/Base.java:481 +#, java-format +{0}\:\ Unknown\ package={0}\: \u041d\u0435\u043f\u043e\u0437\u043d\u0430\u0442 \u043f\u0430\u043a\u0435\u0442 diff --git a/arduino-core/src/processing/app/i18n/Resources_bs.po b/arduino-core/src/processing/app/i18n/Resources_bs.po index d931a3a3e..d19c5bd7b 100644 --- a/arduino-core/src/processing/app/i18n/Resources_bs.po +++ b/arduino-core/src/processing/app/i18n/Resources_bs.po @@ -33,6 +33,12 @@ msgstr "" msgid "(edit only when Arduino is not running)" msgstr "" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -91,6 +97,10 @@ msgstr "Dodaj datoteku..." msgid "Add Library..." msgstr "" +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -98,6 +108,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -176,6 +200,30 @@ msgstr "" msgid "Are you sure you want to delete this sketch?" msgstr "" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "" @@ -184,6 +232,10 @@ msgstr "" msgid "Asturian" msgstr "" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "" @@ -225,6 +277,14 @@ msgstr "" msgid "Bad file selected" msgstr "" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "" @@ -261,6 +321,10 @@ msgstr "Pretraži" msgid "Build folder disappeared or could not be written" msgstr "" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "bugarski" @@ -277,8 +341,14 @@ msgstr "Snimi bootloader" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "" -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" msgstr "" #: ../../../processing/app/Preferences.java:92 @@ -294,6 +364,10 @@ msgstr "Otkaži" msgid "Cannot Rename" msgstr "Nije moguće preimenovati" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "" @@ -338,11 +412,6 @@ msgstr "Zatvori" msgid "Comment/Uncomment" msgstr "Komentar/Ukloni komentar" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "" @@ -450,9 +519,8 @@ msgid "" "You'll need to reinstall Arduino." msgstr "" -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" msgstr "" #: Base.java:2482 @@ -482,6 +550,10 @@ msgstr "" msgid "Could not replace {0}" msgstr "Nije moguće zamijeniti {0}" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "" @@ -551,6 +623,11 @@ msgstr "Snimanje završeno." msgid "Done burning bootloader." msgstr "" +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "Kompajliranje završeno." @@ -559,6 +636,10 @@ msgstr "Kompajliranje završeno." msgid "Done printing." msgstr "Štampanje završeno." +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "" @@ -662,6 +743,10 @@ msgstr "" msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -671,11 +756,25 @@ msgstr "" msgid "Error while printing." msgstr "Greška prilikom štampanja." +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "estonski" @@ -696,6 +795,11 @@ msgstr "" msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "" + #: Editor.java:491 msgid "File" msgstr "" @@ -743,8 +847,9 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" msgstr "" #: Preferences.java:95 @@ -893,8 +998,8 @@ msgstr "" msgid "Lithuaninan" msgstr "litvanijski" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: Preferences.java:107 @@ -909,6 +1014,10 @@ msgstr "Poruka" msgid "Missing the */ from the end of a /* comment */" msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "" @@ -917,6 +1026,18 @@ msgstr "" msgid "Moving" msgstr "Premještam" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "" + #: Sketch.java:282 msgid "Name for new file:" msgstr "" @@ -953,6 +1074,10 @@ msgstr "Sljedeći tab" msgid "No" msgstr "Ne" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "" @@ -961,6 +1086,10 @@ msgstr "" msgid "No changes necessary for Auto Format." msgstr "" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "" @@ -973,6 +1102,10 @@ msgstr "" msgid "No line ending" msgstr "" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "" @@ -982,6 +1115,19 @@ msgstr "" msgid "No reference available for \"{0}\"" msgstr "" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "" @@ -1018,6 +1164,10 @@ msgstr "U redu" msgid "One file added to the sketch." msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "" @@ -1054,14 +1204,27 @@ msgstr "Zalijepi" msgid "Persian" msgstr "perzijski" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "" +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "" + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "Molimo vas da instalirate JDK 1.5 ili noviji" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "poljski" @@ -1224,10 +1387,18 @@ msgstr "" msgid "Save sketch folder as..." msgstr "Sačuvaj folder skice kao..." +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "Snimam..." +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "" @@ -1260,20 +1431,6 @@ msgstr "" msgid "Serial Monitor" msgstr "" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "" - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "" - #: Serial.java:194 #, java-format msgid "" @@ -1353,6 +1510,10 @@ msgstr "" msgid "Sketchbook location:" msgstr "" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "" @@ -1403,6 +1564,10 @@ msgstr "tamilski" msgid "The 'BYTE' keyword is no longer supported." msgstr "" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "" @@ -1470,11 +1635,11 @@ msgid "" "but anything besides the code will be lost." msgstr "" -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." +"They should also be less than 64 characters long." msgstr "" #: Base.java:259 @@ -1486,6 +1651,12 @@ msgid "" "himself in the third person." msgstr "" +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1628,6 +1799,13 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "Posjeti Arduino.cc" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "" + #: Base.java:2128 msgid "Warning" msgstr "Upozorenje" @@ -1796,10 +1974,6 @@ msgstr "okruženje" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "http://github.com/arduino/Arduino/issues" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1829,17 +2003,6 @@ msgstr "" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "" - #: Editor.java:932 msgid "serialMenu is null" msgstr "" @@ -1850,6 +2013,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "" + #: Preferences.java:391 msgid "upload" msgstr "" @@ -1873,3 +2041,45 @@ msgstr "" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "" diff --git a/arduino-core/src/processing/app/i18n/Resources_bs.properties b/arduino-core/src/processing/app/i18n/Resources_bs.properties index 5d3b834bf..c46a38ca8 100644 --- a/arduino-core/src/processing/app/i18n/Resources_bs.properties +++ b/arduino-core/src/processing/app/i18n/Resources_bs.properties @@ -17,6 +17,9 @@ #: Preferences.java:478 !(edit\ only\ when\ Arduino\ is\ not\ running)= +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -53,9 +56,23 @@ Add\ File...=Dodaj datoteku... #: Base.java:963 !Add\ Library...= +#: ../../../processing/app/Preferences.java:96 +!Albanian= + #: tools/FixEncoding.java:77 !An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n= +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 !An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.= @@ -105,12 +122,33 @@ Arduino\ ARM\ (32-bits)\ Boards=Arduino ARM (32-bita) plo\u010de #: Sketch.java:587 !Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?= +#: ../../../processing/app/Base.java:356 +!Argument\ required\ for\ --board= + +#: ../../../processing/app/Base.java:370 +!Argument\ required\ for\ --curdir= + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +!Argument\ required\ for\ --port= + +#: ../../../processing/app/Base.java:377 +!Argument\ required\ for\ --pref= + +#: ../../../processing/app/Base.java:384 +!Argument\ required\ for\ --preferences-file= + #: ../../../processing/app/Preferences.java:137 !Armenian= #: ../../../processing/app/Preferences.java:138 !Asturian= +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 !Auto\ Format= @@ -142,6 +180,12 @@ Arduino\ ARM\ (32-bits)\ Boards=Arduino ARM (32-bita) plo\u010de #: Editor.java:2136 !Bad\ file\ selected= +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +!Basque= + #: ../../../processing/app/Preferences.java:139 !Belarusian= @@ -168,6 +212,9 @@ Browse=Pretra\u017ei #: Sketch.java:1392 Sketch.java:1423 !Build\ folder\ disappeared\ or\ could\ not\ be\ written= +#: ../../../processing/app/Sketch.java:1530 +!Build\ options\ changed,\ rebuilding\ all= + #: ../../../processing/app/Preferences.java:80 Bulgarian=bugarski @@ -180,8 +227,13 @@ Burn\ Bootloader=Snimi bootloader #: Editor.java:2504 !Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...= -#: ../../../processing/app/Base.java:368 -!Can't\ open\ source\ sketch\!= +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 Canadian\ French=kanadski francuski @@ -193,6 +245,9 @@ Cancel=Otka\u017ei #: Sketch.java:455 Cannot\ Rename=Nije mogu\u0107e preimenovati +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 !Carriage\ return= @@ -226,10 +281,6 @@ Close=Zatvori #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=Komentar/Ukloni komentar -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -!Compiler\ error,\ please\ submit\ this\ code\ to\ {0}= - #: Sketch.java:1608 Editor.java:1890 !Compiling\ sketch...= @@ -305,9 +356,8 @@ Could\ not\ delete\ {0}=Nije mogu\u0107e obrisati {0} #: Preferences.java:219 !Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= -#: Preferences.java:258 -#, java-format -!Could\ not\ read\ preferences\ from\ {0}= +#: ../../../processing/app/Sketch.java:1525 +!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= #: Base.java:2482 #, java-format @@ -330,6 +380,9 @@ Could\ not\ remove\ old\ version\ of\ {0}=Nije mogu\u0107e ukloniti staru verzij #, java-format Could\ not\ replace\ {0}=Nije mogu\u0107e zamijeniti {0} +#: ../../../processing/app/Sketch.java:1579 +!Could\ not\ write\ build\ preferences\ file= + #: tools/Archiver.java:74 !Couldn't\ archive\ sketch= @@ -378,12 +431,19 @@ Done\ Saving.=Snimanje zavr\u0161eno. #: Editor.java:2510 !Done\ burning\ bootloader.= +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=Kompajliranje zavr\u0161eno. #: Editor.java:2564 Done\ printing.=\u0160tampanje zavr\u0161eno. +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 !Done\ uploading.= @@ -462,6 +522,9 @@ Error=Gre\u0161ka #: ../../../processing/app/Editor.java:2555 !Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format !Error\ while\ loading\ code\ {0}= @@ -469,10 +532,21 @@ Error=Gre\u0161ka #: Editor.java:2567 Error\ while\ printing.=Gre\u0161ka prilikom \u0161tampanja. +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 !Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 Estonian=estonski @@ -488,6 +562,10 @@ Examples=Primjeri #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +!Failed\ to\ open\ sketch\:\ "{0}"= + #: Editor.java:491 !File= @@ -522,8 +600,9 @@ Find...=Tra\u017ei... #: Base.java:1851 !For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n= -#: debug/BasicUploader.java:80 -!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ = +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=francuski @@ -627,8 +706,8 @@ Latvian=latvijski #: Preferences.java:106 Lithuaninan=litvanijski -#: ../../../processing/app/Sketch.java:1660 -!Low\ memory\ available,\ stability\ problems\ may\ occur= +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 Marathi=marati @@ -639,12 +718,24 @@ Message=Poruka #: ../../../processing/app/preproc/PdePreprocessor.java:412 !Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 !More\ preferences\ can\ be\ edited\ directly\ in\ the\ file= #: Editor.java:2156 Moving=Premje\u0161tam +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +!Must\ specify\ exactly\ one\ sketch\ file= + +#: ../../../processing/app/Preferences.java:158 +!N'Ko= + #: Sketch.java:282 !Name\ for\ new\ file\:= @@ -672,12 +763,18 @@ Next\ Tab=Sljede\u0107i tab #: Preferences.java:78 UpdateCheck.java:108 No=Ne +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 !No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.= #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 !No\ changes\ necessary\ for\ Auto\ Format.= +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 !No\ files\ were\ added\ to\ the\ sketch.= @@ -687,6 +784,9 @@ No=Ne #: SerialMonitor.java:112 !No\ line\ ending= +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 !No\ really,\ time\ for\ some\ fresh\ air\ for\ you.= @@ -694,6 +794,16 @@ No=Ne #, java-format !No\ reference\ available\ for\ "{0}"= +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +!No\ valid\ code\ files\ found= + #: ../../../processing/app/Base.java:309 !No\ valid\ configured\ cores\ found\!\ Exiting...= @@ -720,6 +830,9 @@ OK=U redu #: Sketch.java:992 Editor.java:376 !One\ file\ added\ to\ the\ sketch.= +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 !Open= @@ -747,12 +860,22 @@ Paste=Zalijepi #: Preferences.java:109 Persian=perzijski +#: ../../../processing/app/Preferences.java:161 +!Persian\ (Iran)= + #: debug/Compiler.java:408 !Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= +#: ../../../processing/app/debug/Compiler.java:529 +!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=Molimo vas da instalirate JDK 1.5 ili noviji +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 Polish=poljski @@ -874,9 +997,15 @@ Save\ Canceled.=Snimanje prekinuto. #: Sketch.java:825 Save\ sketch\ folder\ as...=Sa\u010duvaj folder skice kao... +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=Snimam... +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 !Select\ (or\ create\ new)\ folder\ for\ sketches...= @@ -901,14 +1030,6 @@ Select\ All=Ozna\u010di sve #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 !Serial\ Monitor= -#: Serial.java:174 -#, java-format -!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.= - -#: Serial.java:121 -#, java-format -!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.= - #: Serial.java:194 #, java-format !Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?= @@ -963,6 +1084,9 @@ Sketch\ is\ read-only=Skica je samo za \u010ditanje #: Preferences.java:315 !Sketchbook\ location\:= +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 !Sketches\ (*.ino,\ *.pde)= @@ -997,6 +1121,9 @@ Tamil=tamilski #: debug/Compiler.java:414 !The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.= +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 !The\ Client\ class\ has\ been\ renamed\ EthernetClient.= @@ -1033,12 +1160,15 @@ Tamil=tamilski #: Sketch.java:1755 !The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.= -#: Sketch.java:2018 -!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.= +#: ../../../processing/app/Sketch.java:2028 +!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= #: Base.java:259 !The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.= +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 !This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= @@ -1142,6 +1272,10 @@ Verify\ /\ Compile=Verifikacija / Kompajliranje #: Editor.java:1105 Visit\ Arduino.cc=Posjeti Arduino.cc +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= + #: Base.java:2128 Warning=Upozorenje @@ -1240,9 +1374,6 @@ environment=okru\u017eenje #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1265,13 +1396,6 @@ http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -!readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}= - -#: Sketch.java:647 -!removeCode\:\ internal\ error..\ could\ not\ find\ code= - #: Editor.java:932 !serialMenu\ is\ null= @@ -1279,6 +1403,10 @@ platforms.html=platforms.html #, java-format !the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected= +#: ../../../processing/app/Base.java:389 +#, java-format +!unknown\ option\:\ {0}= + #: Preferences.java:391 !upload= @@ -1297,3 +1425,35 @@ platforms.html=platforms.html #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= + +#: ../../../processing/app/Base.java:476 +#, java-format +!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= + +#: ../../../processing/app/Base.java:509 +#, java-format +!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= + +#: ../../../processing/app/Base.java:507 +#, java-format +!{0}\:\ Invalid\ option\ for\ board\ "{1}"= + +#: ../../../processing/app/Base.java:502 +#, java-format +!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= + +#: ../../../processing/app/Base.java:486 +#, java-format +!{0}\:\ Unknown\ architecture= + +#: ../../../processing/app/Base.java:491 +#, java-format +!{0}\:\ Unknown\ board= + +#: ../../../processing/app/Base.java:481 +#, java-format +!{0}\:\ Unknown\ package= diff --git a/arduino-core/src/processing/app/i18n/Resources_ca.po b/arduino-core/src/processing/app/i18n/Resources_ca.po index 3df1705ec..653aa2bfc 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ca.po +++ b/arduino-core/src/processing/app/i18n/Resources_ca.po @@ -34,6 +34,12 @@ msgstr "'Mouse' només suportat en el Arduino Leonardo" msgid "(edit only when Arduino is not running)" msgstr "(només editar quan l'Arduino no estigui funcionant)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -92,6 +98,10 @@ msgstr "Afegeix fitxer..." msgid "Add Library..." msgstr "Afegir Llibreria..." +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "Albanès" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -99,6 +109,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "Un error ha succeït provant de arreglar la codificació del fitxer.\nNo provi de desar aquest sketch, podria sobreescriure\nla versió antiga. Utilitzi Obrir per re-obrir el sketch i tornar-ho a provar.\n" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -177,6 +201,30 @@ msgstr "Esteu segur que voleu suprimir \"{0}\"?" msgid "Are you sure you want to delete this sketch?" msgstr "Segur que voleu suprimir aquest sketch?" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "Es requereix un argument per --board" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "Es requereix un argument per --curdir" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "Es requereix un argument per --port" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "Es requereix un argument per --pref" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "Es requereix un argument per --preferences-file" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "Armeni" @@ -185,6 +233,10 @@ msgstr "Armeni" msgid "Asturian" msgstr "Asturià" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "Format automàtic" @@ -226,6 +278,14 @@ msgstr "Error en la línia: {0}" msgid "Bad file selected" msgstr "Fitxer seleccionat incorrecte" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "Basc" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "Bielorús" @@ -262,6 +322,10 @@ msgstr "Navegar" msgid "Build folder disappeared or could not be written" msgstr "Directori de compilació desaparegut o no si pot escriure" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "Opcions de compilat canviades, re-compilant tot" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Búlgar" @@ -278,8 +342,14 @@ msgstr "Carrega Bootloader" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "La carrega del bootloader a la I/O placa (pot durar uns minuts)..." -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" msgstr "" #: ../../../processing/app/Preferences.java:92 @@ -295,6 +365,10 @@ msgstr "Cancel·la" msgid "Cannot Rename" msgstr "No es pot reanomenar" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "Retorn de carro" @@ -339,11 +413,6 @@ msgstr "Tanca" msgid "Comment/Uncomment" msgstr "Comenta/Descomenta" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "Error del compilador, si us plau pengeu aquest codi a {0}" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "Compilant el sketch..." @@ -451,10 +520,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "No es poden llegir les preferències inicials.\nNecessites tornar a instal·lar Arduino." -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "No es pot llegir l'anterior arxiu de preferències de compilació, re-compilant tot" #: Base.java:2482 #, java-format @@ -483,6 +551,10 @@ msgstr "No es pot reanomenar el sketch. (2)" msgid "Could not replace {0}" msgstr "No es pot substituir {0}" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "No es pot escriure l'arxiu de preferències de compilació" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "No s´ha pogut arxivar el sketch" @@ -552,6 +624,11 @@ msgstr "Guardat enllestit." msgid "Done burning bootloader." msgstr "Carrega del bootloader llesta." +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "Compilació enllestida." @@ -560,6 +637,10 @@ msgstr "Compilació enllestida." msgid "Done printing." msgstr "Impressió finalitzada." +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "Pujada enllestida." @@ -663,6 +744,10 @@ msgstr "Error al carrega el bootloader." msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "Error durant l’enregistrament del bootloader: no es troba el paràmetre de configuració {0}" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -672,11 +757,25 @@ msgstr "Error durant la carrega de codi {0}" msgid "Error while printing." msgstr "Error durant la impressió." +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "Error durant la pujada: no es troba el paràmetre de configuració {0}" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "Estonià" @@ -697,6 +796,11 @@ msgstr "Exportació cancelada, els canvis primer han de desar-se." msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "No s´ha pogut obrir el sketch: \"{0}\"" + #: Editor.java:491 msgid "File" msgstr "Fitxer" @@ -744,9 +848,10 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "Per obtenir informació de com instal·lar llibreries, ves a: http://arduino.cc/en/Guide/Libraries\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " -msgstr "Forçant el reinici obrint/tancat el port a 1200bps" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" +msgstr "" #: Preferences.java:95 msgid "French" @@ -894,9 +999,9 @@ msgstr "Llibreria afegida a les teves llibreries. Verifica el menú \"Importar l msgid "Lithuaninan" msgstr "Lituà" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" -msgstr "Es disposa de poca memòria, es poden produir problemes d'estabilitat" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." +msgstr "" #: Preferences.java:107 msgid "Marathi" @@ -910,6 +1015,10 @@ msgstr "Missatge" msgid "Missing the */ from the end of a /* comment */" msgstr "No es troba el */ del final del /* comentari */" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "Es poden editar més preferències directament en el fitxer" @@ -918,6 +1027,18 @@ msgstr "Es poden editar més preferències directament en el fitxer" msgid "Moving" msgstr "" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "Heu d'especificar exactament un arxiu sketch" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "" + #: Sketch.java:282 msgid "Name for new file:" msgstr "Escolliu un nom per un nou fitxer:" @@ -954,6 +1075,10 @@ msgstr "Pestanya següent" msgid "No" msgstr "No" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "Cap placa seleccionada; si us plau esculli una placa del menú Eines > Placa." @@ -962,6 +1087,10 @@ msgstr "Cap placa seleccionada; si us plau esculli una placa del menú Eines > P msgid "No changes necessary for Auto Format." msgstr "Cap canvi necessari pel format automàtic." +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "No hi ha arxius afegits a l'sketch." @@ -974,6 +1103,10 @@ msgstr "No hi ha llançador disponible" msgid "No line ending" msgstr "Sense salts de línia" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "Hora d'aire fresc, seriosament." @@ -983,6 +1116,19 @@ msgstr "Hora d'aire fresc, seriosament." msgid "No reference available for \"{0}\"" msgstr "Cap referència disponible per \"{0}\"" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "No s´han trobat nuclis vàlids configurats! Sortin... " @@ -1019,6 +1165,10 @@ msgstr "D'acord" msgid "One file added to the sketch." msgstr "Un fitxer afegit al sketch." +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "Obrir" @@ -1055,14 +1205,27 @@ msgstr "Enganxa" msgid "Persian" msgstr "Persa" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "Persa (Iran)" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "Si us plau importeu la llibreria SPI del menú Sketch > Importa biblioteca." +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "Si us plau importa la llibreria Wire de Sketch > Menú Importació Llibreria" + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "Si us plau instal·la JDK 1.5 o posterior." +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "Polonès" @@ -1225,10 +1388,18 @@ msgstr "Desar els canvis a \"{0}\"? " msgid "Save sketch folder as..." msgstr "Anomena i desa la carpeta de sketch..." +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "Desant..." +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "Seleccioni (o creï) una carpeta pels sketches..." @@ -1261,20 +1432,6 @@ msgstr "Envia" msgid "Serial Monitor" msgstr "Monitor sèrie" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "Port sèrie \"{0}\" ja en ús. Provi de finalitzar programes que puguin estar utilitzant-lo." - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "" - #: Serial.java:194 #, java-format msgid "" @@ -1354,6 +1511,10 @@ msgstr "El directori Sketchbook ha desaparegut." msgid "Sketchbook location:" msgstr "Ubicació del Sketchbook:" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "Sketches (*.ino, *.pde)" @@ -1404,6 +1565,10 @@ msgstr "Tàmil" msgid "The 'BYTE' keyword is no longer supported." msgstr "La descripció 'BYTE' ha deixat d'estar suportada." +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "La classe Client ha estat reanomenat a EthernetClient." @@ -1471,12 +1636,12 @@ msgid "" "but anything besides the code will be lost." msgstr "La carpeta del sketch ha desaparegut.\n Es provarà de tornar a desar en la mateixa localització,\nperò tot excepte el codi serà perdut." -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." -msgstr "El nom del sketch ha de ser modificat. Els noms dels Sketch només poden constar\nde caràcters ASCII i nombres (però no començar amb nombres).\nTambé haurien de ser menys de 64 caràcters." +"They should also be less than 64 characters long." +msgstr "El nom del sketch a de ser modificat. Els noms dels Sketch només\npoden ser caràcters ASCII i números (però no pot començar per un número).\nTambé a de tenir una logitud inferior als 64 caràcters." #: Base.java:259 msgid "" @@ -1487,6 +1652,12 @@ msgid "" "himself in the third person." msgstr "La carpeta sketchbook no existeix.\nArduino canviarà a la localització per defecte\nde sketchbook, i crearà una nova carpeta sketchbook\nsi fos necessari. Arduino pararà de parlar\nd'ell mateix en tercera persona." +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1629,6 +1800,13 @@ msgstr "Vietnamita" msgid "Visit Arduino.cc" msgstr "Visita Arduino.cc" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "" + #: Base.java:2128 msgid "Warning" msgstr "Advertència" @@ -1797,10 +1975,6 @@ msgstr "entorn" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "http://github.com/arduino/Arduino/issues" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1830,17 +2004,6 @@ msgstr "El nom es null" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "El buffer de bytes readBytesUntil() és massa petit pels {0} bytes fins i incloent el char {1}" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "eliminaCodi: error intern.. no es pot trobar el codi" - #: Editor.java:932 msgid "serialMenu is null" msgstr "serialMenu es null" @@ -1851,6 +2014,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "el port sèrie seleccionat {0} no existeix o la teva placa no està connectada" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "opció desconeguda: {0}" + #: Preferences.java:391 msgid "upload" msgstr "Pujar" @@ -1874,3 +2042,45 @@ msgstr "{0} | Arduino {1}" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "{0}: Argument no vàlid per --pref, s'espera la forma \"pref=value\"" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "{0}: Nom de tarja desconeguda, ha de tenir el format \"package:arch:board\" o \"package:arch:board:options\"" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "{0}: Opció no vàlida per \"{1}\" opció per tarja \"{2}\"" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "{0}: Opció no vàlida per la tarja \"{1}\"" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "{0}: Opció no vàlida, s'espera la forma \"name=value\"" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "{0}: Arquitectura desconeguda" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "{0}: Tarja desconeguda" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "{0}: Paquet desconegut" diff --git a/arduino-core/src/processing/app/i18n/Resources_ca.properties b/arduino-core/src/processing/app/i18n/Resources_ca.properties index 85fde94fc..ed531771a 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ca.properties +++ b/arduino-core/src/processing/app/i18n/Resources_ca.properties @@ -18,6 +18,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(nom\u00e9s editar quan l'Arduino no estigui funcionant) +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -54,9 +57,23 @@ Add\ File...=Afegeix fitxer... #: Base.java:963 Add\ Library...=Afegir Llibreria... +#: ../../../processing/app/Preferences.java:96 +Albanian=Alban\u00e8s + #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Un error ha succe\u00eft provant de arreglar la codificaci\u00f3 del fitxer.\nNo provi de desar aquest sketch, podria sobreescriure\nla versi\u00f3 antiga. Utilitzi Obrir per re-obrir el sketch i tornar-ho a provar.\n +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Un error desconegut ha succe\u00eft mentre es provava de carregar\ncodi especific de la plataforma per la seva maquina. @@ -106,12 +123,33 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Esteu segur que voleu suprimir "{0 #: Sketch.java:587 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Segur que voleu suprimir aquest sketch? +#: ../../../processing/app/Base.java:356 +Argument\ required\ for\ --board=Es requereix un argument per --board + +#: ../../../processing/app/Base.java:370 +Argument\ required\ for\ --curdir=Es requereix un argument per --curdir + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +Argument\ required\ for\ --port=Es requereix un argument per --port + +#: ../../../processing/app/Base.java:377 +Argument\ required\ for\ --pref=Es requereix un argument per --pref + +#: ../../../processing/app/Base.java:384 +Argument\ required\ for\ --preferences-file=Es requereix un argument per --preferences-file + #: ../../../processing/app/Preferences.java:137 Armenian=Armeni #: ../../../processing/app/Preferences.java:138 Asturian=Asturi\u00e0 +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 Auto\ Format=Format autom\u00e0tic @@ -143,6 +181,12 @@ Bad\ error\ line\:\ {0}=Error en la l\u00ednia\: {0} #: Editor.java:2136 Bad\ file\ selected=Fitxer seleccionat incorrecte +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +Basque=Basc + #: ../../../processing/app/Preferences.java:139 Belarusian=Bielor\u00fas @@ -169,6 +213,9 @@ Browse=Navegar #: Sketch.java:1392 Sketch.java:1423 Build\ folder\ disappeared\ or\ could\ not\ be\ written=Directori de compilaci\u00f3 desaparegut o no si pot escriure +#: ../../../processing/app/Sketch.java:1530 +Build\ options\ changed,\ rebuilding\ all=Opcions de compilat canviades, re-compilant tot + #: ../../../processing/app/Preferences.java:80 Bulgarian=B\u00falgar @@ -181,8 +228,13 @@ Burn\ Bootloader=Carrega Bootloader #: Editor.java:2504 Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=La carrega del bootloader a la I/O placa (pot durar uns minuts)... -#: ../../../processing/app/Base.java:368 -!Can't\ open\ source\ sketch\!= +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 Canadian\ French=Franc\u00e8s Canadenc @@ -194,6 +246,9 @@ Cancel=Cancel\u00b7la #: Sketch.java:455 Cannot\ Rename=No es pot reanomenar +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 Carriage\ return=Retorn de carro @@ -227,10 +282,6 @@ Close=Tanca #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=Comenta/Descomenta -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Error del compilador, si us plau pengeu aquest codi a {0} - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=Compilant el sketch... @@ -306,9 +357,8 @@ Could\ not\ re-save\ sketch=No es pot tornar a desar l'sketch #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=No es poden llegir les prefer\u00e8ncies inicials.\nNecessites tornar a instal\u00b7lar Arduino. -#: Preferences.java:258 -#, java-format -!Could\ not\ read\ preferences\ from\ {0}= +#: ../../../processing/app/Sketch.java:1525 +Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=No es pot llegir l'anterior arxiu de prefer\u00e8ncies de compilaci\u00f3, re-compilant tot #: Base.java:2482 #, java-format @@ -331,6 +381,9 @@ Could\ not\ rename\ the\ sketch.\ (2)=No es pot reanomenar el sketch. (2) #, java-format Could\ not\ replace\ {0}=No es pot substituir {0} +#: ../../../processing/app/Sketch.java:1579 +Could\ not\ write\ build\ preferences\ file=No es pot escriure l'arxiu de prefer\u00e8ncies de compilaci\u00f3 + #: tools/Archiver.java:74 Couldn't\ archive\ sketch=No s\u00b4ha pogut arxivar el sketch @@ -379,12 +432,19 @@ Done\ Saving.=Guardat enllestit. #: Editor.java:2510 Done\ burning\ bootloader.=Carrega del bootloader llesta. +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=Compilaci\u00f3 enllestida. #: Editor.java:2564 Done\ printing.=Impressi\u00f3 finalitzada. +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=Pujada enllestida. @@ -463,6 +523,9 @@ Error\ while\ burning\ bootloader.=Error al carrega el bootloader. #: ../../../processing/app/Editor.java:2555 Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=Error durant l\u2019enregistrament del bootloader\: no es troba el par\u00e0metre de configuraci\u00f3 {0} +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=Error durant la carrega de codi {0} @@ -470,10 +533,21 @@ Error\ while\ loading\ code\ {0}=Error durant la carrega de codi {0} #: Editor.java:2567 Error\ while\ printing.=Error durant la impressi\u00f3. +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=Error durant la pujada\: no es troba el par\u00e0metre de configuraci\u00f3 {0} +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 Estonian=Estoni\u00e0 @@ -489,6 +563,10 @@ Export\ canceled,\ changes\ must\ first\ be\ saved.=Exportaci\u00f3 cancelada, e #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +Failed\ to\ open\ sketch\:\ "{0}"=No s\u00b4ha pogut obrir el sketch\: "{0}" + #: Editor.java:491 File=Fitxer @@ -523,8 +601,9 @@ Fix\ Encoding\ &\ Reload=Arregla la codificaci\u00f3 i recarrega #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=Per obtenir informaci\u00f3 de com instal\u00b7lar llibreries, ves a\: http\://arduino.cc/en/Guide/Libraries\n -#: debug/BasicUploader.java:80 -Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =For\u00e7ant el reinici obrint/tancat el port a 1200bps +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=Franc\u00e8s @@ -628,8 +707,8 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Llibreria a #: Preferences.java:106 Lithuaninan=Litu\u00e0 -#: ../../../processing/app/Sketch.java:1660 -Low\ memory\ available,\ stability\ problems\ may\ occur=Es disposa de poca mem\u00f2ria, es poden produir problemes d'estabilitat +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 Marathi=Marathi @@ -640,12 +719,24 @@ Message=Missatge #: ../../../processing/app/preproc/PdePreprocessor.java:412 Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=No es troba el */ del final del /* comentari */ +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Es poden editar m\u00e9s prefer\u00e8ncies directament en el fitxer #: Editor.java:2156 !Moving= +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +Must\ specify\ exactly\ one\ sketch\ file=Heu d'especificar exactament un arxiu sketch + +#: ../../../processing/app/Preferences.java:158 +!N'Ko= + #: Sketch.java:282 Name\ for\ new\ file\:=Escolliu un nom per un nou fitxer\: @@ -673,12 +764,18 @@ Next\ Tab=Pestanya seg\u00fcent #: Preferences.java:78 UpdateCheck.java:108 No=No +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Cap placa seleccionada; si us plau esculli una placa del men\u00fa Eines > Placa. #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Cap canvi necessari pel format autom\u00e0tic. +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=No hi ha arxius afegits a l'sketch. @@ -688,6 +785,9 @@ No\ launcher\ available=No hi ha llan\u00e7ador disponible #: SerialMonitor.java:112 No\ line\ ending=Sense salts de l\u00ednia +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Hora d'aire fresc, seriosament. @@ -695,6 +795,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Hora d'aire fresc, seriosame #, java-format No\ reference\ available\ for\ "{0}"=Cap refer\u00e8ncia disponible per "{0}" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +!No\ valid\ code\ files\ found= + #: ../../../processing/app/Base.java:309 No\ valid\ configured\ cores\ found\!\ Exiting...=No s\u00b4han trobat nuclis v\u00e0lids configurats\! Sortin... @@ -721,6 +831,9 @@ OK=D'acord #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=Un fitxer afegit al sketch. +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=Obrir @@ -748,12 +861,22 @@ Paste=Enganxa #: Preferences.java:109 Persian=Persa +#: ../../../processing/app/Preferences.java:161 +Persian\ (Iran)=Persa (Iran) + #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Si us plau importeu la llibreria SPI del men\u00fa Sketch > Importa biblioteca. +#: ../../../processing/app/debug/Compiler.java:529 +Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Si us plau importa la llibreria Wire de Sketch > Men\u00fa Importaci\u00f3 Llibreria + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=Si us plau instal\u00b7la JDK 1.5 o posterior. +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 Polish=Polon\u00e8s @@ -875,9 +998,15 @@ Save\ changes\ to\ "{0}"?\ \ =Desar els canvis a "{0}"? #: Sketch.java:825 Save\ sketch\ folder\ as...=Anomena i desa la carpeta de sketch... +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=Desant... +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=Seleccioni (o cre\u00ef) una carpeta pels sketches... @@ -902,14 +1031,6 @@ Send=Envia #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=Monitor s\u00e8rie -#: Serial.java:174 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Port s\u00e8rie "{0}" ja en \u00fas. Provi de finalitzar programes que puguin estar utilitzant-lo. - -#: Serial.java:121 -#, java-format -!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.= - #: Serial.java:194 #, java-format Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Port s\u00e8rie "{0}" no trobat. Ha seleccionat el port corresponent al men\u00fa Eines > Port s\u00e8rie? @@ -964,6 +1085,9 @@ Sketchbook\ folder\ disappeared=El directori Sketchbook ha desaparegut. #: Preferences.java:315 Sketchbook\ location\:=Ubicaci\u00f3 del Sketchbook\: +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 Sketches\ (*.ino,\ *.pde)=Sketches (*.ino, *.pde) @@ -998,6 +1122,9 @@ Tamil=T\u00e0mil #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=La descripci\u00f3 'BYTE' ha deixat d'estar suportada. +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=La classe Client ha estat reanomenat a EthernetClient. @@ -1034,12 +1161,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=La carpeta del sketch ha desaparegut.\n Es provar\u00e0 de tornar a desar en la mateixa localitzaci\u00f3,\nper\u00f2 tot excepte el codi ser\u00e0 perdut. -#: Sketch.java:2018 -The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=El nom del sketch ha de ser modificat. Els noms dels Sketch nom\u00e9s poden constar\nde car\u00e0cters ASCII i nombres (per\u00f2 no comen\u00e7ar amb nombres).\nTamb\u00e9 haurien de ser menys de 64 car\u00e0cters. +#: ../../../processing/app/Sketch.java:2028 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.=El nom del sketch a de ser modificat. Els noms dels Sketch nom\u00e9s\npoden ser car\u00e0cters ASCII i n\u00fameros (per\u00f2 no pot comen\u00e7ar per un n\u00famero).\nTamb\u00e9 a de tenir una logitud inferior als 64 car\u00e0cters. #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=La carpeta sketchbook no existeix.\nArduino canviar\u00e0 a la localitzaci\u00f3 per defecte\nde sketchbook, i crear\u00e0 una nova carpeta sketchbook\nsi fos necessari. Arduino parar\u00e0 de parlar\nd'ell mateix en tercera persona. +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 !This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= @@ -1143,6 +1273,10 @@ Vietnamese=Vietnamita #: Editor.java:1105 Visit\ Arduino.cc=Visita Arduino.cc +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= + #: Base.java:2128 Warning=Advert\u00e8ncia @@ -1241,9 +1375,6 @@ environment=entorn #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1266,13 +1397,6 @@ name\ is\ null=El nom es null #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=El buffer de bytes readBytesUntil() \u00e9s massa petit pels {0} bytes fins i incloent el char {1} - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=eliminaCodi\: error intern.. no es pot trobar el codi - #: Editor.java:932 serialMenu\ is\ null=serialMenu es null @@ -1280,6 +1404,10 @@ serialMenu\ is\ null=serialMenu es null #, java-format the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=el port s\u00e8rie seleccionat {0} no existeix o la teva placa no est\u00e0 connectada +#: ../../../processing/app/Base.java:389 +#, java-format +unknown\ option\:\ {0}=opci\u00f3 desconeguda\: {0} + #: Preferences.java:391 upload=Pujar @@ -1298,3 +1426,35 @@ upload=Pujar #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"={0}\: Argument no v\u00e0lid per --pref, s'espera la forma "pref\=value" + +#: ../../../processing/app/Base.java:476 +#, java-format +{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"={0}\: Nom de tarja desconeguda, ha de tenir el format "package\:arch\:board" o "package\:arch\:board\:options" + +#: ../../../processing/app/Base.java:509 +#, java-format +{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"={0}\: Opci\u00f3 no v\u00e0lida per "{1}" opci\u00f3 per tarja "{2}" + +#: ../../../processing/app/Base.java:507 +#, java-format +{0}\:\ Invalid\ option\ for\ board\ "{1}"={0}\: Opci\u00f3 no v\u00e0lida per la tarja "{1}" + +#: ../../../processing/app/Base.java:502 +#, java-format +{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"={0}\: Opci\u00f3 no v\u00e0lida, s'espera la forma "name\=value" + +#: ../../../processing/app/Base.java:486 +#, java-format +{0}\:\ Unknown\ architecture={0}\: Arquitectura desconeguda + +#: ../../../processing/app/Base.java:491 +#, java-format +{0}\:\ Unknown\ board={0}\: Tarja desconeguda + +#: ../../../processing/app/Base.java:481 +#, java-format +{0}\:\ Unknown\ package={0}\: Paquet desconegut diff --git a/arduino-core/src/processing/app/i18n/Resources_cs_CZ.po b/arduino-core/src/processing/app/i18n/Resources_cs_CZ.po index 5348d426a..f237e278a 100644 --- a/arduino-core/src/processing/app/i18n/Resources_cs_CZ.po +++ b/arduino-core/src/processing/app/i18n/Resources_cs_CZ.po @@ -36,6 +36,12 @@ msgstr "'Mouse' je podporováno pouze u Arduino Leonardo!" msgid "(edit only when Arduino is not running)" msgstr "(editujte pouze když program Arduino není spuštěn)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -94,6 +100,10 @@ msgstr "Přidat soubor..." msgid "Add Library..." msgstr "Přidat knihovnu..." +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "Albánština" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -101,6 +111,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "Během opravy kódování souboru se vyskytla chyba.\nNepokoušejte se o uložení této skici, abyste nepřepsali\npůvodní verzi. Užijte Otevřít k znovuotevření skici a zkuste to znovu.\n" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -179,6 +203,30 @@ msgstr "Jste si jisti, že chcete smazat \"{0}\"?" msgid "Are you sure you want to delete this sketch?" msgstr "Jste si jistý, že chcete smazat tuto skicu?" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "Pro je --board nutný argument" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "Pro je --curdir nutný argument" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "Pro --port je nutný argument" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "Pro --pref je nutný argument " + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "Pro --preferences-file je nutný argument" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "Arménština" @@ -187,6 +235,10 @@ msgstr "Arménština" msgid "Asturian" msgstr "Asturština" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "Automatické formátování" @@ -228,6 +280,14 @@ msgstr "Chyba na řádce: {0}" msgid "Bad file selected" msgstr "Vybrán špatný soubor" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "Baskičtina" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "Běloruština" @@ -264,6 +324,10 @@ msgstr "Prohlížet" msgid "Build folder disappeared or could not be written" msgstr "Adresář pro Build zmizel a nebo do něj nelze zapisovat" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "Volby pro sestavení se změnily; sestavuji vše znovu " + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Bulharština" @@ -280,9 +344,15 @@ msgstr "Vypálit zavaděč" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "Vypaluji zavaděč na I/O boardu /vývojové desky/ (chvilku to potrvá)..." -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" -msgstr "Nelze otevřít zdrojovou skicu!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" +msgstr "" #: ../../../processing/app/Preferences.java:92 msgid "Canadian French" @@ -297,6 +367,10 @@ msgstr "Storno" msgid "Cannot Rename" msgstr "Nelze zmenit název" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "Návrat vozíku (CR)" @@ -341,11 +415,6 @@ msgstr "Zavřít" msgid "Comment/Uncomment" msgstr "Zakomentovat/Odkomentovat" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "Chyba kompilace, odešlete kód do {0}" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "Kompiluji skicu..." @@ -453,10 +522,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Nebylo možné načíst systémové nastavení.\nPřeinstalujte Arduino." -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "Nepodařilo se načíst nastavení z {0}" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "Nelze načíst soubor nastavení předchozího sestavení, znovu sestavuji" #: Base.java:2482 #, java-format @@ -485,6 +553,10 @@ msgstr "Nepodařilo se změnit název skici (2)" msgid "Could not replace {0}" msgstr "Nemohu změnit {0}" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "Nelze zapsat soubor nastavení" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Skicu nebylo možné archivovat" @@ -554,6 +626,11 @@ msgstr "Uložení dokončeno." msgid "Done burning bootloader." msgstr "Vypalování zavaděče ukončeno." +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "Kompilace ukončena." @@ -562,6 +639,10 @@ msgstr "Kompilace ukončena." msgid "Done printing." msgstr "Tisk ukončen." +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "Konec uploadu." @@ -665,6 +746,10 @@ msgstr "Chyba při vypalování zavaděče." msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "Chyba při vypalování bootloaderu: chybí konfigurační parametr '{0}'" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -674,11 +759,25 @@ msgstr "Chyba při nahrávání kódu {0}" msgid "Error while printing." msgstr "Chyba během tisku." +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "Chyba běheme uploadu: chybí konfigurační parametr '{0}'" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "Estonština" @@ -699,6 +798,11 @@ msgstr "Export byl přerušen, je třeba nejprve uložit soubor." msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "Nezadařilo se otevřít skicu: \"{0}\"" + #: Editor.java:491 msgid "File" msgstr "Soubor" @@ -746,9 +850,10 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "Více informací o tom jak instalovat knihovny naleznete na:\nhttp://arduino.cc/en/Guide/Libraries \\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " -msgstr "Vynucený reset při užití 1200bps open/close na portu " +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" +msgstr "" #: Preferences.java:95 msgid "French" @@ -896,9 +1001,9 @@ msgstr "Knihovna byla přidána k vašim knihovnám. Zkontrolujte si v menu \"Im msgid "Lithuaninan" msgstr "Litevština" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" -msgstr "Není k dispozici dostatek paměti, mohou se projevit problémy se stabilitou." +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." +msgstr "" #: Preferences.java:107 msgid "Marathi" @@ -912,6 +1017,10 @@ msgstr "Zpráva" msgid "Missing the */ from the end of a /* comment */" msgstr "Chybí ukončující znaky \"*/\" komentáře" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "Další volby mohou být měněny přímo v souboru" @@ -920,6 +1029,18 @@ msgstr "Další volby mohou být měněny přímo v souboru" msgid "Moving" msgstr "Přesouvám" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "Musíte označit právě jeden soubor se skicou" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "N'Ko" + #: Sketch.java:282 msgid "Name for new file:" msgstr "Jméno nového souboru:" @@ -956,6 +1077,10 @@ msgstr "Následující Záložka" msgid "No" msgstr "Ne" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "Nemáte vybrán model vývojové desky (boardu); vyberte model boardu v Nástroje (Tools) > Board" @@ -964,6 +1089,10 @@ msgstr "Nemáte vybrán model vývojové desky (boardu); vyberte model boardu v msgid "No changes necessary for Auto Format." msgstr "Pro autoformátování nejsou třeba změny." +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "Ke skice nebyly přidány žádné soubory." @@ -976,6 +1105,10 @@ msgstr "Není k dispozici žádný launcher" msgid "No line ending" msgstr "Chybný konec řádky" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "Opravdu, přišel váš čas na trošku čerstvého vzduchu." @@ -985,6 +1118,19 @@ msgstr "Opravdu, přišel váš čas na trošku čerstvého vzduchu." msgid "No reference available for \"{0}\"" msgstr "Pro \"{0}\" nelze nalézt odkaz v referenční příručce" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "Nebyly nalezeny soubory obsahující validní kód" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "Nenalezena správná jádra (cores)! Ukončuji..." @@ -1021,6 +1167,10 @@ msgstr "OK" msgid "One file added to the sketch." msgstr "Jeden soubor byl přidán ke skice." +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "Otevřít" @@ -1057,14 +1207,27 @@ msgstr "Vložit" msgid "Persian" msgstr "Perština" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "Perština (Irán)" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "Prosím importujte knihovnu SPI z Skica (Sketch) > Import knihovny (Import Library)." +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "Importujte knihovnu pro Wire z menu: Skica > Vlož knihovnu." + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "Nainstalujte si prosím JDK 1.5 či novější." +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "Polština" @@ -1227,10 +1390,18 @@ msgstr "Uložit změny do \"{0}\"? " msgid "Save sketch folder as..." msgstr "Ulož adresář pro skicu jako..." +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "Ukládám..." +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "Vyberte (nebo vytvořte nový) adresář pro skicář..." @@ -1263,20 +1434,6 @@ msgstr "Pošli" msgid "Serial Monitor" msgstr "Seriový monitor" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "Seriový port ''{0}'' je již používán. Ukončete všechny programy, kteréby jej mohli používat." - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "Seriový port ''{0}'' je již používán. Ukončete všechny programy, kteréby jej mohli používat." - #: Serial.java:194 #, java-format msgid "" @@ -1356,6 +1513,10 @@ msgstr "Zmizel adresář Skicáře." msgid "Sketchbook location:" msgstr "Umístění skicáře:" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "Skici (*.ino, *.pde)" @@ -1406,6 +1567,10 @@ msgstr "Tamilština" msgid "The 'BYTE' keyword is no longer supported." msgstr "Klíčové slovo 'BYTE' není podporováno." +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "U třídy Client byl změněn název na EthernetClient." @@ -1473,12 +1638,12 @@ msgid "" "but anything besides the code will be lost." msgstr "Skica zmizela.\n Pokusím se znovu uložit na stejné místo,\nale krom kódu bude všechno ostatní ztraceno!" -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." -msgstr "Název skici je potřeba změnit. Název skici je možné složit\npouze s ASCII znaků a čísel (číslem však nemůže začínat).\nNázev musí mít délku méně jak 64 znaků." +"They should also be less than 64 characters long." +msgstr "Název skici je potřeba změnit. Název skici je možné složit pouze z ASCII znaků a čísel (číslem však nemůže začínat). Název musí mít délku méně jak 64 znaků." #: Base.java:259 msgid "" @@ -1489,6 +1654,12 @@ msgid "" "himself in the third person." msgstr "Adresář skicáře (Sketchbook folder) již neexistuje.\nArduino se pokusí přepnout do defaultního umístění skicáře\na adresář pro skicář (Sketchbook) vytvoří na tomto místě.\nArduino pak o sobě přestane mluvit \nve třetí osobě." +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1631,6 +1802,13 @@ msgstr "Vietnamština" msgid "Visit Arduino.cc" msgstr "Navštivte Arduino.cc" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "VAROVÁNÍ: knihovna {0} je určena pro běh na architektuře {1} a může být nekompatibilní s Vaší vývojovou deskou, která má architekturu {2}." + #: Base.java:2128 msgid "Warning" msgstr "Upozornění" @@ -1799,10 +1977,6 @@ msgstr "prostředí" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "http://github.com/arduino/Arduino/issues" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1832,17 +2006,6 @@ msgstr "name je null" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "Bytový buffer readBytesUntil() je malý pro {0} bytů až do znaku {1} včetně" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "removeCode: internal error.. nemohu nalézt kód" - #: Editor.java:932 msgid "serialMenu is null" msgstr "serialMenu je null" @@ -1853,6 +2016,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "vybraný seriový port {0} neexistuje a nebo váš board není připojen" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "neznámá volba: {0}" + #: Preferences.java:391 msgid "upload" msgstr "nahrávání (upload)" @@ -1876,3 +2044,45 @@ msgstr "{0} | Arduino {1}" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "{0}: Nesprávný argument pro --pref; měl by být ve formě \"pref=value\"" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "{0}: Nespárávně zvolený název vývojové desky; mělo by mít formu \"package:arch:board\" či \"package:arch:board:options\"" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "{0}: Nesprávná volba pro \"{1}\" volbu pro vývojovou desku \"{2}\"" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "{0}: Nesprávná volba pro vývojovou desku \"{1}\"" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "{0}: Chybná volba, měla by být ve formě \"nazev=hodnota\"" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "{0}: Neznámá architektura" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "{0}: Neznámá vývojová deska" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "{0}: Neznámý rozšiřující balík" diff --git a/arduino-core/src/processing/app/i18n/Resources_cs_CZ.properties b/arduino-core/src/processing/app/i18n/Resources_cs_CZ.properties index 46ac82668..59a806bc8 100644 --- a/arduino-core/src/processing/app/i18n/Resources_cs_CZ.properties +++ b/arduino-core/src/processing/app/i18n/Resources_cs_CZ.properties @@ -20,6 +20,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(editujte pouze kdy\u017e program Arduino nen\u00ed spu\u0161t\u011bn) +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -56,9 +59,23 @@ Add\ File...=P\u0159idat soubor... #: Base.java:963 Add\ Library...=P\u0159idat knihovnu... +#: ../../../processing/app/Preferences.java:96 +Albanian=Alb\u00e1n\u0161tina + #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=B\u011bhem opravy k\u00f3dov\u00e1n\u00ed souboru se vyskytla chyba.\nNepokou\u0161ejte se o ulo\u017een\u00ed t\u00e9to skici, abyste nep\u0159epsali\np\u016fvodn\u00ed verzi. U\u017eijte Otev\u0159\u00edt k znovuotev\u0159en\u00ed skici a zkuste to znovu.\n +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Vyskytla se chyba b\u011bhem nahr\u00e1v\u00e1n\u00ed k\u00f3du \npro va\u0161e za\u0159\u00edzen\u00ed. @@ -108,12 +125,33 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Jste si jisti, \u017ee chcete smaz #: Sketch.java:587 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Jste si jist\u00fd, \u017ee chcete smazat tuto skicu? +#: ../../../processing/app/Base.java:356 +Argument\ required\ for\ --board=Pro je --board nutn\u00fd argument + +#: ../../../processing/app/Base.java:370 +Argument\ required\ for\ --curdir=Pro je --curdir nutn\u00fd argument + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +Argument\ required\ for\ --port=Pro --port je nutn\u00fd argument + +#: ../../../processing/app/Base.java:377 +Argument\ required\ for\ --pref=Pro --pref je nutn\u00fd argument + +#: ../../../processing/app/Base.java:384 +Argument\ required\ for\ --preferences-file=Pro --preferences-file je nutn\u00fd argument + #: ../../../processing/app/Preferences.java:137 Armenian=Arm\u00e9n\u0161tina #: ../../../processing/app/Preferences.java:138 Asturian=Astur\u0161tina +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 Auto\ Format=Automatick\u00e9 form\u00e1tov\u00e1n\u00ed @@ -145,6 +183,12 @@ Bad\ error\ line\:\ {0}=Chyba na \u0159\u00e1dce\: {0} #: Editor.java:2136 Bad\ file\ selected=Vybr\u00e1n \u0161patn\u00fd soubor +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +Basque=Baski\u010dtina + #: ../../../processing/app/Preferences.java:139 Belarusian=B\u011bloru\u0161tina @@ -171,6 +215,9 @@ Browse=Prohl\u00ed\u017eet #: Sketch.java:1392 Sketch.java:1423 Build\ folder\ disappeared\ or\ could\ not\ be\ written=Adres\u00e1\u0159 pro Build zmizel a nebo do n\u011bj nelze zapisovat +#: ../../../processing/app/Sketch.java:1530 +Build\ options\ changed,\ rebuilding\ all=Volby pro sestaven\u00ed se zm\u011bnily; sestavuji v\u0161e znovu + #: ../../../processing/app/Preferences.java:80 Bulgarian=Bulhar\u0161tina @@ -183,8 +230,13 @@ Burn\ Bootloader=Vyp\u00e1lit zavad\u011b\u010d #: Editor.java:2504 Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Vypaluji zavad\u011b\u010d na I/O boardu /v\u00fdvojov\u00e9 desky/ (chvilku to potrv\u00e1)... -#: ../../../processing/app/Base.java:368 -Can't\ open\ source\ sketch\!=Nelze otev\u0159\u00edt zdrojovou skicu\! +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 Canadian\ French=Kanadsk\u00e1 francou\u0161tina @@ -196,6 +248,9 @@ Cancel=Storno #: Sketch.java:455 Cannot\ Rename=Nelze zmenit n\u00e1zev +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 Carriage\ return=N\u00e1vrat voz\u00edku (CR) @@ -229,10 +284,6 @@ Close=Zav\u0159\u00edt #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=Zakomentovat/Odkomentovat -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Chyba kompilace, ode\u0161lete k\u00f3d do {0} - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=Kompiluji skicu... @@ -308,9 +359,8 @@ Could\ not\ re-save\ sketch=Skicu ne\u0161lo znovu ulo\u017eit #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Nebylo mo\u017en\u00e9 na\u010d\u00edst syst\u00e9mov\u00e9 nastaven\u00ed.\nP\u0159einstalujte Arduino. -#: Preferences.java:258 -#, java-format -Could\ not\ read\ preferences\ from\ {0}=Nepoda\u0159ilo se na\u010d\u00edst nastaven\u00ed z {0} +#: ../../../processing/app/Sketch.java:1525 +Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=Nelze na\u010d\u00edst soubor nastaven\u00ed p\u0159edchoz\u00edho sestaven\u00ed, znovu sestavuji #: Base.java:2482 #, java-format @@ -333,6 +383,9 @@ Could\ not\ rename\ the\ sketch.\ (2)=Nepoda\u0159ilo se zm\u011bnit n\u00e1zev #, java-format Could\ not\ replace\ {0}=Nemohu zm\u011bnit {0} +#: ../../../processing/app/Sketch.java:1579 +Could\ not\ write\ build\ preferences\ file=Nelze zapsat soubor nastaven\u00ed + #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Skicu nebylo mo\u017en\u00e9 archivovat @@ -381,12 +434,19 @@ Done\ Saving.=Ulo\u017een\u00ed dokon\u010deno. #: Editor.java:2510 Done\ burning\ bootloader.=Vypalov\u00e1n\u00ed zavad\u011b\u010de ukon\u010deno. +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=Kompilace ukon\u010dena. #: Editor.java:2564 Done\ printing.=Tisk ukon\u010den. +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=Konec uploadu. @@ -465,6 +525,9 @@ Error\ while\ burning\ bootloader.=Chyba p\u0159i vypalov\u00e1n\u00ed zavad\u01 #: ../../../processing/app/Editor.java:2555 Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=Chyba p\u0159i vypalov\u00e1n\u00ed bootloaderu\: chyb\u00ed konfigura\u010dn\u00ed parametr '{0}' +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=Chyba p\u0159i nahr\u00e1v\u00e1n\u00ed k\u00f3du {0} @@ -472,10 +535,21 @@ Error\ while\ loading\ code\ {0}=Chyba p\u0159i nahr\u00e1v\u00e1n\u00ed k\u00f3 #: Editor.java:2567 Error\ while\ printing.=Chyba b\u011bhem tisku. +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=Chyba b\u011bheme uploadu\: chyb\u00ed konfigura\u010dn\u00ed parametr '{0}' +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 Estonian=Eston\u0161tina @@ -491,6 +565,10 @@ Export\ canceled,\ changes\ must\ first\ be\ saved.=Export byl p\u0159eru\u0161e #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +Failed\ to\ open\ sketch\:\ "{0}"=Nezada\u0159ilo se otev\u0159\u00edt skicu\: "{0}" + #: Editor.java:491 File=Soubor @@ -525,8 +603,9 @@ Fix\ Encoding\ &\ Reload=Uprav k\u00f3dov\u00e1n\u00ed a znovu nahraj #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=V\u00edce informac\u00ed o tom jak instalovat knihovny naleznete na\:\nhttp\://arduino.cc/en/Guide/Libraries \\n -#: debug/BasicUploader.java:80 -Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =Vynucen\u00fd reset p\u0159i u\u017eit\u00ed 1200bps open/close na portu +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=Francou\u0161tina @@ -630,8 +709,8 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Knihovna by #: Preferences.java:106 Lithuaninan=Litev\u0161tina -#: ../../../processing/app/Sketch.java:1660 -Low\ memory\ available,\ stability\ problems\ may\ occur=Nen\u00ed k dispozici dostatek pam\u011bti, mohou se projevit probl\u00e9my se stabilitou. +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 Marathi=Mar\u00e1th\u0161tina @@ -642,12 +721,24 @@ Message=Zpr\u00e1va #: ../../../processing/app/preproc/PdePreprocessor.java:412 Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Chyb\u00ed ukon\u010duj\u00edc\u00ed znaky "*/" koment\u00e1\u0159e +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Dal\u0161\u00ed volby mohou b\u00fdt m\u011bn\u011bny p\u0159\u00edmo v souboru #: Editor.java:2156 Moving=P\u0159esouv\u00e1m +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +Must\ specify\ exactly\ one\ sketch\ file=Mus\u00edte ozna\u010dit pr\u00e1v\u011b jeden soubor se skicou + +#: ../../../processing/app/Preferences.java:158 +N'Ko=N'Ko + #: Sketch.java:282 Name\ for\ new\ file\:=Jm\u00e9no nov\u00e9ho souboru\: @@ -675,12 +766,18 @@ Next\ Tab=N\u00e1sleduj\u00edc\u00ed Z\u00e1lo\u017eka #: Preferences.java:78 UpdateCheck.java:108 No=Ne +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Nem\u00e1te vybr\u00e1n model v\u00fdvojov\u00e9 desky (boardu); vyberte model boardu v N\u00e1stroje (Tools) > Board #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Pro autoform\u00e1tov\u00e1n\u00ed nejsou t\u0159eba zm\u011bny. +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=Ke skice nebyly p\u0159id\u00e1ny \u017e\u00e1dn\u00e9 soubory. @@ -690,6 +787,9 @@ No\ launcher\ available=Nen\u00ed k dispozici \u017e\u00e1dn\u00fd launcher #: SerialMonitor.java:112 No\ line\ ending=Chybn\u00fd konec \u0159\u00e1dky +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Opravdu, p\u0159i\u0161el v\u00e1\u0161 \u010das na tro\u0161ku \u010derstv\u00e9ho vzduchu. @@ -697,6 +797,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Opravdu, p\u0159i\u0161el v\ #, java-format No\ reference\ available\ for\ "{0}"=Pro "{0}" nelze nal\u00e9zt odkaz v referen\u010dn\u00ed p\u0159\u00edru\u010dce +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +No\ valid\ code\ files\ found=Nebyly nalezeny soubory obsahuj\u00edc\u00ed validn\u00ed k\u00f3d + #: ../../../processing/app/Base.java:309 No\ valid\ configured\ cores\ found\!\ Exiting...=Nenalezena spr\u00e1vn\u00e1 j\u00e1dra (cores)\! Ukon\u010duji... @@ -723,6 +833,9 @@ OK=OK #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=Jeden soubor byl p\u0159id\u00e1n ke skice. +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=Otev\u0159\u00edt @@ -750,12 +863,22 @@ Paste=Vlo\u017eit #: Preferences.java:109 Persian=Per\u0161tina +#: ../../../processing/app/Preferences.java:161 +Persian\ (Iran)=Per\u0161tina (Ir\u00e1n) + #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Pros\u00edm importujte knihovnu SPI z Skica (Sketch) > Import knihovny (Import Library). +#: ../../../processing/app/debug/Compiler.java:529 +Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Importujte knihovnu pro Wire z menu\: Skica > Vlo\u017e knihovnu. + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=Nainstalujte si pros\u00edm JDK 1.5 \u010di nov\u011bj\u0161\u00ed. +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 Polish=Pol\u0161tina @@ -877,9 +1000,15 @@ Save\ changes\ to\ "{0}"?\ \ =Ulo\u017eit zm\u011bny do "{0}"? #: Sketch.java:825 Save\ sketch\ folder\ as...=Ulo\u017e adres\u00e1\u0159 pro skicu jako... +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=Ukl\u00e1d\u00e1m... +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=Vyberte (nebo vytvo\u0159te nov\u00fd) adres\u00e1\u0159 pro skic\u00e1\u0159... @@ -904,14 +1033,6 @@ Send=Po\u0161li #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=Seriov\u00fd monitor -#: Serial.java:174 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Seriov\u00fd port ''{0}'' je ji\u017e pou\u017e\u00edv\u00e1n. Ukon\u010dete v\u0161echny programy, kter\u00e9by jej mohli pou\u017e\u00edvat. - -#: Serial.java:121 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=Seriov\u00fd port ''{0}'' je ji\u017e pou\u017e\u00edv\u00e1n. Ukon\u010dete v\u0161echny programy, kter\u00e9by jej mohli pou\u017e\u00edvat. - #: Serial.java:194 #, java-format Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Seriov\u00fd port ''{0}'' nebyl nalezen. Vybrali jste spr\u00e1vn\u00fd port v menu N\u00e1stroje > Seriov\u00fd port? @@ -966,6 +1087,9 @@ Sketchbook\ folder\ disappeared=Zmizel adres\u00e1\u0159 Skic\u00e1\u0159e. #: Preferences.java:315 Sketchbook\ location\:=Um\u00edst\u011bn\u00ed skic\u00e1\u0159e\: +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 Sketches\ (*.ino,\ *.pde)=Skici (*.ino, *.pde) @@ -1000,6 +1124,9 @@ Tamil=Tamil\u0161tina #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=Kl\u00ed\u010dov\u00e9 slovo 'BYTE' nen\u00ed podporov\u00e1no. +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=U t\u0159\u00eddy Client byl zm\u011bn\u011bn n\u00e1zev na EthernetClient. @@ -1036,12 +1163,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Skica zmizela.\n Pokus\u00edm se znovu ulo\u017eit na stejn\u00e9 m\u00edsto,\nale krom k\u00f3du bude v\u0161echno ostatn\u00ed ztraceno\! -#: Sketch.java:2018 -The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=N\u00e1zev skici je pot\u0159eba zm\u011bnit. N\u00e1zev skici je mo\u017en\u00e9 slo\u017eit\npouze s ASCII znak\u016f a \u010d\u00edsel (\u010d\u00edslem v\u0161ak nem\u016f\u017ee za\u010d\u00ednat).\nN\u00e1zev mus\u00ed m\u00edt d\u00e9lku m\u00e9n\u011b jak 64 znak\u016f. +#: ../../../processing/app/Sketch.java:2028 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.=N\u00e1zev skici je pot\u0159eba zm\u011bnit. N\u00e1zev skici je mo\u017en\u00e9 slo\u017eit pouze z ASCII znak\u016f a \u010d\u00edsel (\u010d\u00edslem v\u0161ak nem\u016f\u017ee za\u010d\u00ednat). N\u00e1zev mus\u00ed m\u00edt d\u00e9lku m\u00e9n\u011b jak 64 znak\u016f. #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Adres\u00e1\u0159 skic\u00e1\u0159e (Sketchbook folder) ji\u017e neexistuje.\nArduino se pokus\u00ed p\u0159epnout do defaultn\u00edho um\u00edst\u011bn\u00ed skic\u00e1\u0159e\na adres\u00e1\u0159 pro skic\u00e1\u0159 (Sketchbook) vytvo\u0159\u00ed na tomto m\u00edst\u011b.\nArduino pak o sob\u011b p\u0159estane mluvit \nve t\u0159et\u00ed osob\u011b. +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Tento soubor byl ji\u017e na toto m\u00edsto nakop\u00edrov\u00e1n\nze kter\u00e9ho jsi jej zkou\u0161el p\u0159idat.\nNemohu to ud\u011blat. @@ -1145,6 +1275,10 @@ Vietnamese=Vietnam\u0161tina #: Editor.java:1105 Visit\ Arduino.cc=Nav\u0161tivte Arduino.cc +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=VAROV\u00c1N\u00cd\: knihovna {0} je ur\u010dena pro b\u011bh na architektu\u0159e {1} a m\u016f\u017ee b\u00fdt nekompatibiln\u00ed s Va\u0161\u00ed v\u00fdvojovou deskou, kter\u00e1 m\u00e1 architekturu {2}. + #: Base.java:2128 Warning=Upozorn\u011bn\u00ed @@ -1243,9 +1377,6 @@ environment=prost\u0159ed\u00ed #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1268,13 +1399,6 @@ name\ is\ null=name je null #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=Bytov\u00fd buffer readBytesUntil() je mal\u00fd pro {0} byt\u016f a\u017e do znaku {1} v\u010detn\u011b - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: internal error.. nemohu nal\u00e9zt k\u00f3d - #: Editor.java:932 serialMenu\ is\ null=serialMenu je null @@ -1282,6 +1406,10 @@ serialMenu\ is\ null=serialMenu je null #, java-format the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=vybran\u00fd seriov\u00fd port {0} neexistuje a nebo v\u00e1\u0161 board nen\u00ed p\u0159ipojen +#: ../../../processing/app/Base.java:389 +#, java-format +unknown\ option\:\ {0}=nezn\u00e1m\u00e1 volba\: {0} + #: Preferences.java:391 upload=nahr\u00e1v\u00e1n\u00ed (upload) @@ -1300,3 +1428,35 @@ upload=nahr\u00e1v\u00e1n\u00ed (upload) #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"={0}\: Nespr\u00e1vn\u00fd argument pro --pref; m\u011bl by b\u00fdt ve form\u011b "pref\=value" + +#: ../../../processing/app/Base.java:476 +#, java-format +{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"={0}\: Nesp\u00e1r\u00e1vn\u011b zvolen\u00fd n\u00e1zev v\u00fdvojov\u00e9 desky; m\u011blo by m\u00edt formu "package\:arch\:board" \u010di "package\:arch\:board\:options" + +#: ../../../processing/app/Base.java:509 +#, java-format +{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"={0}\: Nespr\u00e1vn\u00e1 volba pro "{1}" volbu pro v\u00fdvojovou desku "{2}" + +#: ../../../processing/app/Base.java:507 +#, java-format +{0}\:\ Invalid\ option\ for\ board\ "{1}"={0}\: Nespr\u00e1vn\u00e1 volba pro v\u00fdvojovou desku "{1}" + +#: ../../../processing/app/Base.java:502 +#, java-format +{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"={0}\: Chybn\u00e1 volba, m\u011bla by b\u00fdt ve form\u011b "nazev\=hodnota" + +#: ../../../processing/app/Base.java:486 +#, java-format +{0}\:\ Unknown\ architecture={0}\: Nezn\u00e1m\u00e1 architektura + +#: ../../../processing/app/Base.java:491 +#, java-format +{0}\:\ Unknown\ board={0}\: Nezn\u00e1m\u00e1 v\u00fdvojov\u00e1 deska + +#: ../../../processing/app/Base.java:481 +#, java-format +{0}\:\ Unknown\ package={0}\: Nezn\u00e1m\u00fd roz\u0161i\u0159uj\u00edc\u00ed bal\u00edk diff --git a/arduino-core/src/processing/app/i18n/Resources_da_DK.po b/arduino-core/src/processing/app/i18n/Resources_da_DK.po index ffb5e5304..6b828f004 100644 --- a/arduino-core/src/processing/app/i18n/Resources_da_DK.po +++ b/arduino-core/src/processing/app/i18n/Resources_da_DK.po @@ -33,6 +33,12 @@ msgstr "'Mouse' kun understøttet af Arduino Leonardo" msgid "(edit only when Arduino is not running)" msgstr "" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -91,6 +97,10 @@ msgstr "Tilføj fil..." msgid "Add Library..." msgstr "Tilføj bibliotek..." +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "Albansk" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -98,6 +108,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -176,6 +200,30 @@ msgstr "" msgid "Are you sure you want to delete this sketch?" msgstr "" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "" @@ -184,6 +232,10 @@ msgstr "" msgid "Asturian" msgstr "" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "Automatisk formatering" @@ -225,6 +277,14 @@ msgstr "" msgid "Bad file selected" msgstr "" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "" @@ -261,6 +321,10 @@ msgstr "" msgid "Build folder disappeared or could not be written" msgstr "" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "" @@ -277,8 +341,14 @@ msgstr "" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "" -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" msgstr "" #: ../../../processing/app/Preferences.java:92 @@ -294,6 +364,10 @@ msgstr "Annuller" msgid "Cannot Rename" msgstr "Kan ikke omdøbe" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "" @@ -338,11 +412,6 @@ msgstr "Luk" msgid "Comment/Uncomment" msgstr "" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "" @@ -450,9 +519,8 @@ msgid "" "You'll need to reinstall Arduino." msgstr "" -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" msgstr "" #: Base.java:2482 @@ -482,6 +550,10 @@ msgstr "" msgid "Could not replace {0}" msgstr "Kunne ikke erstatte {0}" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "" @@ -551,6 +623,11 @@ msgstr "Færdig med at gemme." msgid "Done burning bootloader." msgstr "" +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "Færdig med at kompilere." @@ -559,6 +636,10 @@ msgstr "Færdig med at kompilere." msgid "Done printing." msgstr "" +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "" @@ -662,6 +743,10 @@ msgstr "" msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -671,11 +756,25 @@ msgstr "" msgid "Error while printing." msgstr "" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "" @@ -696,6 +795,11 @@ msgstr "" msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "" + #: Editor.java:491 msgid "File" msgstr "Fil" @@ -743,8 +847,9 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" msgstr "" #: Preferences.java:95 @@ -893,8 +998,8 @@ msgstr "" msgid "Lithuaninan" msgstr "" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: Preferences.java:107 @@ -909,6 +1014,10 @@ msgstr "Besked" msgid "Missing the */ from the end of a /* comment */" msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "" @@ -917,6 +1026,18 @@ msgstr "" msgid "Moving" msgstr "Flytter" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "" + #: Sketch.java:282 msgid "Name for new file:" msgstr "" @@ -953,6 +1074,10 @@ msgstr "" msgid "No" msgstr "Nej" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "" @@ -961,6 +1086,10 @@ msgstr "" msgid "No changes necessary for Auto Format." msgstr "" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "" @@ -973,6 +1102,10 @@ msgstr "" msgid "No line ending" msgstr "" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "" @@ -982,6 +1115,19 @@ msgstr "" msgid "No reference available for \"{0}\"" msgstr "" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "" @@ -1018,6 +1164,10 @@ msgstr "Ok" msgid "One file added to the sketch." msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "Åbn" @@ -1054,14 +1204,27 @@ msgstr "Indsæt" msgid "Persian" msgstr "Persisk" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "" +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "" + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "Installer venligst JDK 1.5 eller nyere" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "Polsk" @@ -1224,10 +1387,18 @@ msgstr "Gem ændringer til \"{0}\"?" msgid "Save sketch folder as..." msgstr "" +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "Gemmer..." +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "" @@ -1260,20 +1431,6 @@ msgstr "Send" msgid "Serial Monitor" msgstr "" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "" - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "" - #: Serial.java:194 #, java-format msgid "" @@ -1353,6 +1510,10 @@ msgstr "" msgid "Sketchbook location:" msgstr "" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "" @@ -1403,6 +1564,10 @@ msgstr "Tamilsk" msgid "The 'BYTE' keyword is no longer supported." msgstr "" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "" @@ -1470,11 +1635,11 @@ msgid "" "but anything besides the code will be lost." msgstr "" -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." +"They should also be less than 64 characters long." msgstr "" #: Base.java:259 @@ -1486,6 +1651,12 @@ msgid "" "himself in the third person." msgstr "" +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1628,6 +1799,13 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "Besøg Arduino.cc" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "" + #: Base.java:2128 msgid "Warning" msgstr "Advarsel" @@ -1796,10 +1974,6 @@ msgstr "miljø" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1829,17 +2003,6 @@ msgstr "" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "" - #: Editor.java:932 msgid "serialMenu is null" msgstr "" @@ -1850,6 +2013,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "" + #: Preferences.java:391 msgid "upload" msgstr "" @@ -1873,3 +2041,45 @@ msgstr "" #, java-format msgid "{0}.html" msgstr "" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "" diff --git a/arduino-core/src/processing/app/i18n/Resources_da_DK.properties b/arduino-core/src/processing/app/i18n/Resources_da_DK.properties index c9d42185c..6d49c2a41 100644 --- a/arduino-core/src/processing/app/i18n/Resources_da_DK.properties +++ b/arduino-core/src/processing/app/i18n/Resources_da_DK.properties @@ -17,6 +17,9 @@ #: Preferences.java:478 !(edit\ only\ when\ Arduino\ is\ not\ running)= +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -53,9 +56,23 @@ Add\ File...=Tilf\u00f8j fil... #: Base.java:963 Add\ Library...=Tilf\u00f8j bibliotek... +#: ../../../processing/app/Preferences.java:96 +Albanian=Albansk + #: tools/FixEncoding.java:77 !An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n= +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 !An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.= @@ -105,12 +122,33 @@ Archive\ sketch\ canceled.=Arkivering af skitsen annulleret. #: Sketch.java:587 !Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?= +#: ../../../processing/app/Base.java:356 +!Argument\ required\ for\ --board= + +#: ../../../processing/app/Base.java:370 +!Argument\ required\ for\ --curdir= + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +!Argument\ required\ for\ --port= + +#: ../../../processing/app/Base.java:377 +!Argument\ required\ for\ --pref= + +#: ../../../processing/app/Base.java:384 +!Argument\ required\ for\ --preferences-file= + #: ../../../processing/app/Preferences.java:137 !Armenian= #: ../../../processing/app/Preferences.java:138 !Asturian= +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 Auto\ Format=Automatisk formatering @@ -142,6 +180,12 @@ Auto\ Format\ finished.=Automatisk formatering udf\u00f8rt. #: Editor.java:2136 !Bad\ file\ selected= +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +!Basque= + #: ../../../processing/app/Preferences.java:139 !Belarusian= @@ -168,6 +212,9 @@ Auto\ Format\ finished.=Automatisk formatering udf\u00f8rt. #: Sketch.java:1392 Sketch.java:1423 !Build\ folder\ disappeared\ or\ could\ not\ be\ written= +#: ../../../processing/app/Sketch.java:1530 +!Build\ options\ changed,\ rebuilding\ all= + #: ../../../processing/app/Preferences.java:80 !Bulgarian= @@ -180,8 +227,13 @@ Auto\ Format\ finished.=Automatisk formatering udf\u00f8rt. #: Editor.java:2504 !Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...= -#: ../../../processing/app/Base.java:368 -!Can't\ open\ source\ sketch\!= +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 !Canadian\ French= @@ -193,6 +245,9 @@ Cancel=Annuller #: Sketch.java:455 Cannot\ Rename=Kan ikke omd\u00f8be +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 !Carriage\ return= @@ -226,10 +281,6 @@ Close=Luk #: Editor.java:1208 Editor.java:2749 !Comment/Uncomment= -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -!Compiler\ error,\ please\ submit\ this\ code\ to\ {0}= - #: Sketch.java:1608 Editor.java:1890 !Compiling\ sketch...= @@ -305,9 +356,8 @@ Could\ not\ open\ the\ folder\n{0}=Kunne ikke \u00e5bne biblioteket\n{0} #: Preferences.java:219 !Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= -#: Preferences.java:258 -#, java-format -!Could\ not\ read\ preferences\ from\ {0}= +#: ../../../processing/app/Sketch.java:1525 +!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= #: Base.java:2482 #, java-format @@ -330,6 +380,9 @@ Could\ not\ remove\ old\ version\ of\ {0}=Kunne ikke fjerne den gamle version af #, java-format Could\ not\ replace\ {0}=Kunne ikke erstatte {0} +#: ../../../processing/app/Sketch.java:1579 +!Could\ not\ write\ build\ preferences\ file= + #: tools/Archiver.java:74 !Couldn't\ archive\ sketch= @@ -378,12 +431,19 @@ Done\ Saving.=F\u00e6rdig med at gemme. #: Editor.java:2510 !Done\ burning\ bootloader.= +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=F\u00e6rdig med at kompilere. #: Editor.java:2564 !Done\ printing.= +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 !Done\ uploading.= @@ -462,6 +522,9 @@ Error\ compiling.=Fejl i kompilering. #: ../../../processing/app/Editor.java:2555 !Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format !Error\ while\ loading\ code\ {0}= @@ -469,10 +532,21 @@ Error\ compiling.=Fejl i kompilering. #: Editor.java:2567 !Error\ while\ printing.= +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 !Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 !Estonian= @@ -488,6 +562,10 @@ Examples=Eksempler #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +!Failed\ to\ open\ sketch\:\ "{0}"= + #: Editor.java:491 File=Fil @@ -522,8 +600,9 @@ Finnish=Finsk #: Base.java:1851 !For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n= -#: debug/BasicUploader.java:80 -!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ = +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=Fransk @@ -627,8 +706,8 @@ Latvian=Lettisk #: Preferences.java:106 !Lithuaninan= -#: ../../../processing/app/Sketch.java:1660 -!Low\ memory\ available,\ stability\ problems\ may\ occur= +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 !Marathi= @@ -639,12 +718,24 @@ Message=Besked #: ../../../processing/app/preproc/PdePreprocessor.java:412 !Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 !More\ preferences\ can\ be\ edited\ directly\ in\ the\ file= #: Editor.java:2156 Moving=Flytter +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +!Must\ specify\ exactly\ one\ sketch\ file= + +#: ../../../processing/app/Preferences.java:158 +!N'Ko= + #: Sketch.java:282 !Name\ for\ new\ file\:= @@ -672,12 +763,18 @@ New=Ny #: Preferences.java:78 UpdateCheck.java:108 No=Nej +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 !No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.= #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 !No\ changes\ necessary\ for\ Auto\ Format.= +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 !No\ files\ were\ added\ to\ the\ sketch.= @@ -687,6 +784,9 @@ No=Nej #: SerialMonitor.java:112 !No\ line\ ending= +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 !No\ really,\ time\ for\ some\ fresh\ air\ for\ you.= @@ -694,6 +794,16 @@ No=Nej #, java-format !No\ reference\ available\ for\ "{0}"= +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +!No\ valid\ code\ files\ found= + #: ../../../processing/app/Base.java:309 !No\ valid\ configured\ cores\ found\!\ Exiting...= @@ -720,6 +830,9 @@ OK=Ok #: Sketch.java:992 Editor.java:376 !One\ file\ added\ to\ the\ sketch.= +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=\u00c5bn @@ -747,12 +860,22 @@ Paste=Inds\u00e6t #: Preferences.java:109 Persian=Persisk +#: ../../../processing/app/Preferences.java:161 +!Persian\ (Iran)= + #: debug/Compiler.java:408 !Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= +#: ../../../processing/app/debug/Compiler.java:529 +!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=Installer venligst JDK 1.5 eller nyere +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 Polish=Polsk @@ -874,9 +997,15 @@ Save\ changes\ to\ "{0}"?\ \ =Gem \u00e6ndringer til "{0}"? #: Sketch.java:825 !Save\ sketch\ folder\ as...= +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=Gemmer... +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 !Select\ (or\ create\ new)\ folder\ for\ sketches...= @@ -901,14 +1030,6 @@ Send=Send #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 !Serial\ Monitor= -#: Serial.java:174 -#, java-format -!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.= - -#: Serial.java:121 -#, java-format -!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.= - #: Serial.java:194 #, java-format !Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?= @@ -963,6 +1084,9 @@ Send=Send #: Preferences.java:315 !Sketchbook\ location\:= +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 !Sketches\ (*.ino,\ *.pde)= @@ -997,6 +1121,9 @@ Tamil=Tamilsk #: debug/Compiler.java:414 !The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.= +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 !The\ Client\ class\ has\ been\ renamed\ EthernetClient.= @@ -1033,12 +1160,15 @@ The\ name\ cannot\ start\ with\ a\ period.=Navnet kan ikke starte med et punktum #: Sketch.java:1755 !The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.= -#: Sketch.java:2018 -!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.= +#: ../../../processing/app/Sketch.java:2028 +!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= #: Base.java:259 !The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.= +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 !This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= @@ -1142,6 +1272,10 @@ Verify\ /\ Compile=Verificer / kompiler #: Editor.java:1105 Visit\ Arduino.cc=Bes\u00f8g Arduino.cc +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= + #: Base.java:2128 Warning=Advarsel @@ -1240,9 +1374,6 @@ environment=milj\u00f8 #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -!http\://github.com/arduino/Arduino/issues= - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1265,13 +1396,6 @@ index.html=index.html #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -!readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}= - -#: Sketch.java:647 -!removeCode\:\ internal\ error..\ could\ not\ find\ code= - #: Editor.java:932 !serialMenu\ is\ null= @@ -1279,6 +1403,10 @@ platforms.html=platforms.html #, java-format !the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected= +#: ../../../processing/app/Base.java:389 +#, java-format +!unknown\ option\:\ {0}= + #: Preferences.java:391 !upload= @@ -1297,3 +1425,35 @@ platforms.html=platforms.html #: Editor.java:1874 #, java-format !{0}.html= + +#: ../../../processing/app/Base.java:519 +#, java-format +!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= + +#: ../../../processing/app/Base.java:476 +#, java-format +!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= + +#: ../../../processing/app/Base.java:509 +#, java-format +!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= + +#: ../../../processing/app/Base.java:507 +#, java-format +!{0}\:\ Invalid\ option\ for\ board\ "{1}"= + +#: ../../../processing/app/Base.java:502 +#, java-format +!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= + +#: ../../../processing/app/Base.java:486 +#, java-format +!{0}\:\ Unknown\ architecture= + +#: ../../../processing/app/Base.java:491 +#, java-format +!{0}\:\ Unknown\ board= + +#: ../../../processing/app/Base.java:481 +#, java-format +!{0}\:\ Unknown\ package= diff --git a/arduino-core/src/processing/app/i18n/Resources_de_DE.po b/arduino-core/src/processing/app/i18n/Resources_de_DE.po index 68bc1826b..7d896d822 100644 --- a/arduino-core/src/processing/app/i18n/Resources_de_DE.po +++ b/arduino-core/src/processing/app/i18n/Resources_de_DE.po @@ -9,8 +9,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-01-14 17:10+0000\n" -"Last-Translator: Cristian Maglie \n" +"PO-Revision-Date: 2015-01-14 18:03+0000\n" +"Last-Translator: Lukas Bestle \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/arduino-ide-15/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -34,6 +34,12 @@ msgstr "'Mouse' wird nur vom Arduino Leonardo unterstützt" msgid "(edit only when Arduino is not running)" msgstr "(nur bearbeiten, wenn Arduino nicht läuft)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "--verbose, --verbose-upload und --verbose-build können nur zusammen mit --verify oder --upload verwendet werden" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -92,6 +98,10 @@ msgstr "Datei hinzufügen" msgid "Add Library..." msgstr "Bibliothek hinzufügen..." +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "Albanisch" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -99,6 +109,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "Beim Korrigieren der Kodierung ist ein Fehler aufgetreten.\nVersuchen Sie nicht, den Sketch zu speichern, da dies die alte Version\nüberschreiben wird. Verwenden Sie Öffnen um den Sketch neu zu laden und versuchen Sie es erneut.\n" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "Beim Hochladen des Sketches ist ein Fehler aufgetreten" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "Beim Verifizieren des Sketches ist ein Fehler aufgetreten" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "Beim Verifizieren/Hochladen des Sketches ist ein Fehler aufgetreten" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -143,7 +167,7 @@ msgstr "Arduino AVR Platinen" msgid "" "Arduino can only open its own sketches\n" "and other files ending in .ino or .pde" -msgstr "" +msgstr "Arduino kann nur seine eigenen Sketche und andere\nDateien mit den Dateiendungen .ino und .pde öffnen" #: Base.java:1682 msgid "" @@ -177,6 +201,30 @@ msgstr "Sind Sie sicher, dass sie \"{0}\" löschen wollen?" msgid "Are you sure you want to delete this sketch?" msgstr "Sind Sie sicher, dass Sie diesen Sketch löschen wollen?" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "Argument benötigt für --board" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "Argument benötigt für --curdir" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "Argument benötigt für --get-pref" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "Argument benötigt für --port" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "Argument benötigt für --pref" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "Argument benötigt für --preferences-file" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "Armenisch" @@ -185,6 +233,10 @@ msgstr "Armenisch" msgid "Asturian" msgstr "Asturisch" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "Autorisierung benötigt" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "Automatische Formatierung" @@ -226,6 +278,14 @@ msgstr "Fehler in Zeile: {0}" msgid "Bad file selected" msgstr "Falsche Datei ausgewählt" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "Fehlerhafte primäre Sketch-Datei oder fehlerhafte Sketch-Ordnerstruktur" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "Baskisch" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "Weißrussisch" @@ -262,6 +322,10 @@ msgstr "Durchsuchen" msgid "Build folder disappeared or could not be written" msgstr "Der Build-Ordner ist verschwunden oder kann nicht beschrieben werden" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "Build-Optionen wurden verändert, alles wird neu gebaut" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Bulgarisch" @@ -278,9 +342,15 @@ msgstr "Bootloader brennen" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "Brenne Bootloader auf die E/A-Platine (kann einige Minuten dauern)..." -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" -msgstr "Kann den Sketch nicht open-sourcen!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "Kann nur eine übergeben von: {0}" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" +msgstr "Kann den Sketch unter dem angegebenen Pfad nicht finden" #: ../../../processing/app/Preferences.java:92 msgid "Canadian French" @@ -295,6 +365,10 @@ msgstr "Abbruch" msgid "Cannot Rename" msgstr "Umbenennen fehlgeschlagen" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "Kann keine Sketch-Dateien angeben" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "Zeilenumbruch (CR)" @@ -339,11 +413,6 @@ msgstr "Schließen" msgid "Comment/Uncomment" msgstr "Kommentieren/Kommentar aufheben" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "Kompilerfehler, bitte den Quelltext an {0} senden" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "Sketch wird kompiliert..." @@ -443,7 +512,7 @@ msgstr "Der Sketch konnte nicht neu gespeichert werden" msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "" +msgstr "Die Einstellungen für das Farbschema konnten nicht gelesen werden.\nArduino muss neu installiert werden." #: Preferences.java:219 msgid "" @@ -451,10 +520,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Die Standardeinstellungen konnten nicht geladen werden.\nSie müssen Arduino neu installieren." -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "Konnte die Voreinstellungen nicht von {0} laden" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "Die vorherige Build-Voreinstellungsdatei konnte nicht gelesen werden, alles wird neu gebaut" #: Base.java:2482 #, java-format @@ -483,6 +551,10 @@ msgstr "Konnte den Sketch nicht umbenennen. (2)" msgid "Could not replace {0}" msgstr "{0} konnte nicht ersetzt werden" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "Die Build-Voreinstellungsdatei konnte nicht geschrieben werden" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Sketch konnte nicht archiviert werden" @@ -552,6 +624,11 @@ msgstr "Speichern abgeschlossen." msgid "Done burning bootloader." msgstr "Der Bootloader wurde gebrannt." +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "Übersetzen abgeschlossen" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "Kompilieren abgeschlossen." @@ -560,6 +637,10 @@ msgstr "Kompilieren abgeschlossen." msgid "Done printing." msgstr "Drucken abgeschlossen." +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "Hochladen beendet" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "Hochladen abgeschlossen." @@ -663,6 +744,10 @@ msgstr "Fehler beim Brennen des Bootloaders." msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "Fehler beim Brennen des Bootloaders: Fehlender Konfigurationsparameter '{0}'" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "Fehler beim Übersetzen: Fehlender Konfigurationsparameter '{0}'" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -672,11 +757,25 @@ msgstr "Fehler beim Laden des Quellcodes {0}" msgid "Error while printing." msgstr "Fehler beim Drucken." +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "Fehler beim Hochladen" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "Fehler beim Hochladen: Fehlender Konfigurationsparameter '{0}'" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "Fehler beim Verifizieren" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "Fehler beim Verifizieren/Hochladen" + #: Preferences.java:93 msgid "Estonian" msgstr "Estländisch" @@ -697,6 +796,11 @@ msgstr "Export abgebrochen, Änderungen müssen erst gespeichert werden." msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "Sketch: \"{0}\" konnte nicht geöffnet werden" + #: Editor.java:491 msgid "File" msgstr "Datei" @@ -744,9 +848,10 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "Informationen zur Installation von Libraries finden sich unter: http://arduino.cc/en/Guide/Libraries\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " -msgstr "Erzwinge Reset durch Öffnen/Schließen mit 1200bps auf dem Port" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" +msgstr "Erzwinge Reset durch öffnen/schließen mit 1200bps auf dem Port {0}" #: Preferences.java:95 msgid "French" @@ -894,9 +999,9 @@ msgstr "Die Bibliothek wurde zu Ihren Bibliotheken hinzugefügt. Bitte im Menü msgid "Lithuaninan" msgstr "Litauisch" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" -msgstr "Wenig Speicher verfügbar, es können Stabilitätsprobleme auftreten" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." +msgstr "Wenig Speicher verfügbar, es können Stabilitätsprobleme auftreten." #: Preferences.java:107 msgid "Marathi" @@ -910,6 +1015,10 @@ msgstr "Mitteilung" msgid "Missing the */ from the end of a /* comment */" msgstr "Das */ am Ende eines /* Kommentars */ fehlt" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "Modus wird nicht unterstützt" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "Mehr Voreinstellungen können direkt in der Datei bearbeitet werden" @@ -918,6 +1027,18 @@ msgstr "Mehr Voreinstellungen können direkt in der Datei bearbeitet werden" msgid "Moving" msgstr "Verschiebe" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "Mehrere Dateien werden nicht unterstützt" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "Es muss genau eine Sketch-Datei angegeben werden" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "N'Ko" + #: Sketch.java:282 msgid "Name for new file:" msgstr "Name der neuen Datei:" @@ -954,6 +1075,10 @@ msgstr "Nächster Tab" msgid "No" msgstr "Nein" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "Keine Autorisierungsdaten gefunden" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "Keine Platine ausgewählt; bitte eine Platine unter Werkzeuge > Platine auswählen" @@ -962,6 +1087,10 @@ msgstr "Keine Platine ausgewählt; bitte eine Platine unter Werkzeuge > Platine msgid "No changes necessary for Auto Format." msgstr "Für Automatische Formatierung bedarf es keiner Änderungen." +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "Keine Kommandozeilenparameter gefunden" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "Dem Sketch wurden keine Dateien hinzugefügt" @@ -974,6 +1103,10 @@ msgstr "Kein Starter/Launcher verfügbar" msgid "No line ending" msgstr "Kein Zeilenende" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "Keine Parameter" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "Ernsthaft, es ist Zeit für etwas Frischluft." @@ -983,6 +1116,19 @@ msgstr "Ernsthaft, es ist Zeit für etwas Frischluft." msgid "No reference available for \"{0}\"" msgstr "Keine Referenz für \"{0}\" gefunden" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "Kein Sketch" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "Kein Sketchbook" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "Keine gültige Codedatei gefunden" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "Es wurden keine gültig konfigurierten Kerne gefunden! Beende..." @@ -1019,6 +1165,10 @@ msgstr "OK" msgid "One file added to the sketch." msgstr "Eine Datei wurde dem Sketch hinzugefügt" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "Es werden nur --verify, --upload und --get-pref unterstützt" + #: EditorToolbar.java:41 msgid "Open" msgstr "Öffnen" @@ -1055,14 +1205,27 @@ msgstr "Einfügen" msgid "Persian" msgstr "Persisch" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "Persisch (Iran)" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "Bitte die Bibliothek SPI aus dem Sketch > Bibliothek importieren-Menü importieren" +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "Bitte importieren Sie die Wire-Bibliothek aus dem Sketch > Bibliothek importieren-Menü." + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "Bitte JDK 1.5 oder höher installieren" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "Bitte wählen Sie einen Programmer aus dem Menü Werkzeuge->Programmer aus" + #: Preferences.java:110 msgid "Polish" msgstr "Polnisch" @@ -1225,10 +1388,18 @@ msgstr "Änderungen in \"{0}\" speichern?" msgid "Save sketch folder as..." msgstr "Sketch-Ordner speichern als..." +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "Speichern beim Überprüfen oder Hochladen" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "Speichern..." +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "Alle Sketch-Tabs durchsuchen" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "Bitte einen Ordner für Sketches auswählen (oder neu anlegen)..." @@ -1261,20 +1432,6 @@ msgstr "Senden" msgid "Serial Monitor" msgstr "Serieller Monitor" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "Der serielle Port \"{0}\" wird bereits verwendet. Bitte das Programm, welches ihn benutzt schließen." - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "Der serielle Port \"{0}\" wird bereits verwendet. Bitte das Programm, welches ihn benutzt schließen." - #: Serial.java:194 #, java-format msgid "" @@ -1354,6 +1511,10 @@ msgstr "Der Sketchbook-Ordner ist nicht auffindbar" msgid "Sketchbook location:" msgstr "Sketchbook-Speicherort:" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "Sketchbook-Speicherort nicht definiert" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "Sketche (*.ino, *.pde)" @@ -1404,6 +1565,10 @@ msgstr "Tamilisch" msgid "The 'BYTE' keyword is no longer supported." msgstr "Das 'BYTE' Schlüsselwort wird nicht mehr unterstützt." +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "Die --upload-Option unterstützt nur eine Datei gleichzeitig" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "Die Klasse Client wurde in EthernetClient umbenannt." @@ -1471,12 +1636,12 @@ msgid "" "but anything besides the code will be lost." msgstr "Der Ordner des Sketches ist verschwunden.\nAn dieser Stelle wird der Sketch neu gespeichert,\naber außer dem Quelltext ist alles Andere verloren" -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." -msgstr "Der Name des Sketches musste geändert werden. Sketchnamen dürfen nur aus ASCII-Zeichen und Ziffern bestehen (können aber nicht mit einer Ziffer beginnen)\nAußerdem sollten sie kürzer als 64 Zeichen sein." +"They should also be less than 64 characters long." +msgstr "Der Sketch-Name musste geändert werden. Sketch-Namen können nur aus\nASCII-Zeichen und Zahlen bestehen (aber nicht mit einer Zahl beginnen).\nSie sollten auch weniger als 64 Zeichen lang sein." #: Base.java:259 msgid "" @@ -1487,6 +1652,12 @@ msgid "" "himself in the third person." msgstr "Der Sketchbook-Ordner existiert nicht mehr.\nArduino wird auf den Standardordner für das Sketchbook umschalten und bei Bedarf einen neuen Sketchbook-Ordner anlegen.\nDanach wird Arduino aufhören, von sich in der dritten Person zu sprechen." +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "Die Fremdhersteller-platform.txt definiert keinen compiler.path. Bitte melden Sie dies an den Fremdhersteller." + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1629,6 +1800,13 @@ msgstr "Vietnamesisch" msgid "Visit Arduino.cc" msgstr "Arduino.cc besuchen" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "WARNUNG: Bibliothek {0} behauptet auf {1} Architektur(en) ausgeführt werden zu können und ist möglicherweise inkompatibel mit Ihrer derzeitigen Platine, welche auf {2} Architektur(en) ausgeführt werden kann." + #: Base.java:2128 msgid "Warning" msgstr "Warnung" @@ -1716,7 +1894,7 @@ msgid "" "older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " "to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" " bad characters to get rid of this warning." -msgstr "" +msgstr "\"{0}\" enthält unzulässige Zeichen. Wenn dieser Code mit einer älteren Version von Arduino erstellt wurde, können Sie über Werkzeuge -> Kodierung Korrigieren und Neu Laden den Sketch auf UTF-8 Kodierung umstellen. Wenn das nicht funktioniert, müssen Sie die unzulässigen Zeichen von Hand löschen um diese Warnung abzuschalten." #: debug/Compiler.java:409 msgid "" @@ -1797,10 +1975,6 @@ msgstr "Umgebung" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "http://github.com/arduino/Arduino/issues" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1830,17 +2004,6 @@ msgstr "Name ist null" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "Der readBytesUntil() byte-Puffer ist zu klein für die {0} Bytes bis inklusive zum Zeichen {1}" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "removeCode: interner Fehler.. Konnte den Code nicht finden" - #: Editor.java:932 msgid "serialMenu is null" msgstr "serialMenu ist null" @@ -1851,6 +2014,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "Der gewählte serielle Port {0} existiert nicht oder die Platine ist nicht angeschlossen" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "unbekannte Option: {0}" + #: Preferences.java:391 msgid "upload" msgstr "Hochladen" @@ -1874,3 +2042,45 @@ msgstr "{0} | Arduino {1}" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "{0}: Ungültiges Argument für --pref, sollte in der Form \"pref=Wert\" sein" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "{0}: Ungültiger Platinenname, er sollte in der Form \"Paket:arch:Platine\" oder \"Paket:arch:Platine:Optionen\" sein" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "{0}: Ungültige Option für \"{1}\" Option der Platine \"{2}\"" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "{0}: Ungültige Option für Platine \"{1}\"" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "{0}: Ungültige Option, sollte in der Form \"Name=Wert\" sein" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "{0}: Unbekannte Architektur" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "{0}: Unbekannte Platine" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "{0}: Unbekanntes Paket" diff --git a/arduino-core/src/processing/app/i18n/Resources_de_DE.properties b/arduino-core/src/processing/app/i18n/Resources_de_DE.properties index 14ca19bc7..12258f166 100644 --- a/arduino-core/src/processing/app/i18n/Resources_de_DE.properties +++ b/arduino-core/src/processing/app/i18n/Resources_de_DE.properties @@ -4,7 +4,7 @@ # # Translators: # , 2012. -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: German (Germany) (http\://www.transifex.com/projects/p/arduino-ide-15/language/de_DE/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: de_DE\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 18\:03+0000\nLast-Translator\: Lukas Bestle \nLanguage-Team\: German (Germany) (http\://www.transifex.com/projects/p/arduino-ide-15/language/de_DE/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: de_DE\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ (erfordert Neustart von Arduino) @@ -18,6 +18,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(nur bearbeiten, wenn Arduino nicht l\u00e4uft) +#: ../../../processing/app/Base.java:468 +--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload=--verbose, --verbose-upload und --verbose-build k\u00f6nnen nur zusammen mit --verify oder --upload verwendet werden + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -54,9 +57,23 @@ Add\ File...=Datei hinzuf\u00fcgen #: Base.java:963 Add\ Library...=Bibliothek hinzuf\u00fcgen... +#: ../../../processing/app/Preferences.java:96 +Albanian=Albanisch + #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Beim Korrigieren der Kodierung ist ein Fehler aufgetreten.\nVersuchen Sie nicht, den Sketch zu speichern, da dies die alte Version\n\u00fcberschreiben wird. Verwenden Sie \u00d6ffnen um den Sketch neu zu laden und versuchen Sie es erneut.\n +#: ../../../processing/app/BaseNoGui.java:528 +An\ error\ occurred\ while\ uploading\ the\ sketch=Beim Hochladen des Sketches ist ein Fehler aufgetreten + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +An\ error\ occurred\ while\ verifying\ the\ sketch=Beim Verifizieren des Sketches ist ein Fehler aufgetreten + +#: ../../../processing/app/BaseNoGui.java:521 +An\ error\ occurred\ while\ verifying/uploading\ the\ sketch=Beim Verifizieren/Hochladen des Sketches ist ein Fehler aufgetreten + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Ein unbekannter Fehler ist aufgetreten beim Versuch, \nden platformspezifischen Code f\u00fcr Ihr Ger\u00e4t zu laden. @@ -85,7 +102,7 @@ Arduino\ ARM\ (32-bits)\ Boards=Arduino ARM (32-bit) Platinen Arduino\ AVR\ Boards=Arduino AVR Platinen #: Editor.java:2137 -!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= +Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Arduino kann nur seine eigenen Sketche und andere\nDateien mit den Dateiendungen .ino und .pde \u00f6ffnen #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino kann nicht laufen, da es den Ordner\nzum Speichern der Einstellungen nicht erstellen kann. @@ -106,12 +123,33 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Sind Sie sicher, dass sie "{0}" l\ #: Sketch.java:587 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Sind Sie sicher, dass Sie diesen Sketch l\u00f6schen wollen? +#: ../../../processing/app/Base.java:356 +Argument\ required\ for\ --board=Argument ben\u00f6tigt f\u00fcr --board + +#: ../../../processing/app/Base.java:370 +Argument\ required\ for\ --curdir=Argument ben\u00f6tigt f\u00fcr --curdir + +#: ../../../processing/app/Base.java:385 +Argument\ required\ for\ --get-pref=Argument ben\u00f6tigt f\u00fcr --get-pref + +#: ../../../processing/app/Base.java:363 +Argument\ required\ for\ --port=Argument ben\u00f6tigt f\u00fcr --port + +#: ../../../processing/app/Base.java:377 +Argument\ required\ for\ --pref=Argument ben\u00f6tigt f\u00fcr --pref + +#: ../../../processing/app/Base.java:384 +Argument\ required\ for\ --preferences-file=Argument ben\u00f6tigt f\u00fcr --preferences-file + #: ../../../processing/app/Preferences.java:137 Armenian=Armenisch #: ../../../processing/app/Preferences.java:138 Asturian=Asturisch +#: ../../../processing/app/debug/Compiler.java:145 +Authorization\ required=Autorisierung ben\u00f6tigt + #: tools/AutoFormat.java:91 Auto\ Format=Automatische Formatierung @@ -143,6 +181,12 @@ Bad\ error\ line\:\ {0}=Fehler in Zeile\: {0} #: Editor.java:2136 Bad\ file\ selected=Falsche Datei ausgew\u00e4hlt +#: ../../../processing/app/debug/Compiler.java:89 +Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure=Fehlerhafte prim\u00e4re Sketch-Datei oder fehlerhafte Sketch-Ordnerstruktur + +#: ../../../processing/app/Preferences.java:149 +Basque=Baskisch + #: ../../../processing/app/Preferences.java:139 Belarusian=Wei\u00dfrussisch @@ -169,6 +213,9 @@ Browse=Durchsuchen #: Sketch.java:1392 Sketch.java:1423 Build\ folder\ disappeared\ or\ could\ not\ be\ written=Der Build-Ordner ist verschwunden oder kann nicht beschrieben werden +#: ../../../processing/app/Sketch.java:1530 +Build\ options\ changed,\ rebuilding\ all=Build-Optionen wurden ver\u00e4ndert, alles wird neu gebaut + #: ../../../processing/app/Preferences.java:80 Bulgarian=Bulgarisch @@ -181,8 +228,13 @@ Burn\ Bootloader=Bootloader brennen #: Editor.java:2504 Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Brenne Bootloader auf die E/A-Platine (kann einige Minuten dauern)... -#: ../../../processing/app/Base.java:368 -Can't\ open\ source\ sketch\!=Kann den Sketch nicht open-sourcen\! +#: ../../../processing/app/Base.java:379 +#, java-format +Can\ only\ pass\ one\ of\:\ {0}=Kann nur eine \u00fcbergeben von\: {0} + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +Can't\ find\ the\ sketch\ in\ the\ specified\ path=Kann den Sketch unter dem angegebenen Pfad nicht finden #: ../../../processing/app/Preferences.java:92 Canadian\ French=Kanadisches Franz\u00f6sisch @@ -194,6 +246,9 @@ Cancel=Abbruch #: Sketch.java:455 Cannot\ Rename=Umbenennen fehlgeschlagen +#: ../../../processing/app/Base.java:465 +Cannot\ specify\ any\ sketch\ files=Kann keine Sketch-Dateien angeben + #: SerialMonitor.java:112 Carriage\ return=Zeilenumbruch (CR) @@ -227,10 +282,6 @@ Close=Schlie\u00dfen #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=Kommentieren/Kommentar aufheben -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Kompilerfehler, bitte den Quelltext an {0} senden - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=Sketch wird kompiliert... @@ -301,14 +352,13 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=Der Sketch konnte nicht neu gespeichert werden #: Theme.java:52 -!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= +Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Die Einstellungen f\u00fcr das Farbschema konnten nicht gelesen werden.\nArduino muss neu installiert werden. #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Die Standardeinstellungen konnten nicht geladen werden.\nSie m\u00fcssen Arduino neu installieren. -#: Preferences.java:258 -#, java-format -Could\ not\ read\ preferences\ from\ {0}=Konnte die Voreinstellungen nicht von {0} laden +#: ../../../processing/app/Sketch.java:1525 +Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=Die vorherige Build-Voreinstellungsdatei konnte nicht gelesen werden, alles wird neu gebaut #: Base.java:2482 #, java-format @@ -331,6 +381,9 @@ Could\ not\ rename\ the\ sketch.\ (2)=Konnte den Sketch nicht umbenennen. (2) #, java-format Could\ not\ replace\ {0}={0} konnte nicht ersetzt werden +#: ../../../processing/app/Sketch.java:1579 +Could\ not\ write\ build\ preferences\ file=Die Build-Voreinstellungsdatei konnte nicht geschrieben werden + #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Sketch konnte nicht archiviert werden @@ -379,12 +432,19 @@ Done\ Saving.=Speichern abgeschlossen. #: Editor.java:2510 Done\ burning\ bootloader.=Der Bootloader wurde gebrannt. +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +Done\ compiling=\u00dcbersetzen abgeschlossen + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=Kompilieren abgeschlossen. #: Editor.java:2564 Done\ printing.=Drucken abgeschlossen. +#: ../../../processing/app/BaseNoGui.java:514 +Done\ uploading=Hochladen beendet + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=Hochladen abgeschlossen. @@ -463,6 +523,9 @@ Error\ while\ burning\ bootloader.=Fehler beim Brennen des Bootloaders. #: ../../../processing/app/Editor.java:2555 Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=Fehler beim Brennen des Bootloaders\: Fehlender Konfigurationsparameter '{0}' +#: ../../../../../app/src/processing/app/Editor.java:1940 +Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter=Fehler beim \u00dcbersetzen\: Fehlender Konfigurationsparameter '{0}' + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=Fehler beim Laden des Quellcodes {0} @@ -470,10 +533,21 @@ Error\ while\ loading\ code\ {0}=Fehler beim Laden des Quellcodes {0} #: Editor.java:2567 Error\ while\ printing.=Fehler beim Drucken. +#: ../../../processing/app/BaseNoGui.java:528 +Error\ while\ uploading=Fehler beim Hochladen + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=Fehler beim Hochladen\: Fehlender Konfigurationsparameter '{0}' +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +Error\ while\ verifying=Fehler beim Verifizieren + +#: ../../../processing/app/BaseNoGui.java:521 +Error\ while\ verifying/uploading=Fehler beim Verifizieren/Hochladen + #: Preferences.java:93 Estonian=Estl\u00e4ndisch @@ -489,6 +563,10 @@ Export\ canceled,\ changes\ must\ first\ be\ saved.=Export abgebrochen, \u00c4nd #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +Failed\ to\ open\ sketch\:\ "{0}"=Sketch\: "{0}" konnte nicht ge\u00f6ffnet werden + #: Editor.java:491 File=Datei @@ -523,8 +601,9 @@ Fix\ Encoding\ &\ Reload=Kodierung korrigieren & neu laden #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=Informationen zur Installation von Libraries finden sich unter\: http\://arduino.cc/en/Guide/Libraries\n -#: debug/BasicUploader.java:80 -Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =Erzwinge Reset durch \u00d6ffnen/Schlie\u00dfen mit 1200bps auf dem Port +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}=Erzwinge Reset durch \u00f6ffnen/schlie\u00dfen mit 1200bps auf dem Port {0} #: Preferences.java:95 French=Franz\u00f6sisch @@ -628,8 +707,8 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Die Bibliot #: Preferences.java:106 Lithuaninan=Litauisch -#: ../../../processing/app/Sketch.java:1660 -Low\ memory\ available,\ stability\ problems\ may\ occur=Wenig Speicher verf\u00fcgbar, es k\u00f6nnen Stabilit\u00e4tsprobleme auftreten +#: ../../../processing/app/Sketch.java:1684 +Low\ memory\ available,\ stability\ problems\ may\ occur.=Wenig Speicher verf\u00fcgbar, es k\u00f6nnen Stabilit\u00e4tsprobleme auftreten. #: Preferences.java:107 Marathi=Marathisch @@ -640,12 +719,24 @@ Message=Mitteilung #: ../../../processing/app/preproc/PdePreprocessor.java:412 Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Das */ am Ende eines /* Kommentars */ fehlt +#: ../../../processing/app/BaseNoGui.java:455 +Mode\ not\ supported=Modus wird nicht unterst\u00fctzt + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Mehr Voreinstellungen k\u00f6nnen direkt in der Datei bearbeitet werden #: Editor.java:2156 Moving=Verschiebe +#: ../../../processing/app/BaseNoGui.java:484 +Multiple\ files\ not\ supported=Mehrere Dateien werden nicht unterst\u00fctzt + +#: ../../../processing/app/Base.java:395 +Must\ specify\ exactly\ one\ sketch\ file=Es muss genau eine Sketch-Datei angegeben werden + +#: ../../../processing/app/Preferences.java:158 +N'Ko=N'Ko + #: Sketch.java:282 Name\ for\ new\ file\:=Name der neuen Datei\: @@ -673,12 +764,18 @@ Next\ Tab=N\u00e4chster Tab #: Preferences.java:78 UpdateCheck.java:108 No=Nein +#: ../../../processing/app/debug/Compiler.java:146 +No\ athorization\ data\ found=Keine Autorisierungsdaten gefunden + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Keine Platine ausgew\u00e4hlt; bitte eine Platine unter Werkzeuge > Platine ausw\u00e4hlen #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=F\u00fcr Automatische Formatierung bedarf es keiner \u00c4nderungen. +#: ../../../processing/app/BaseNoGui.java:665 +No\ command\ line\ parameters\ found=Keine Kommandozeilenparameter gefunden + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=Dem Sketch wurden keine Dateien hinzugef\u00fcgt @@ -688,6 +785,9 @@ No\ launcher\ available=Kein Starter/Launcher verf\u00fcgbar #: SerialMonitor.java:112 No\ line\ ending=Kein Zeilenende +#: ../../../processing/app/BaseNoGui.java:665 +No\ parameters=Keine Parameter + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Ernsthaft, es ist Zeit f\u00fcr etwas Frischluft. @@ -695,6 +795,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Ernsthaft, es ist Zeit f\u00 #, java-format No\ reference\ available\ for\ "{0}"=Keine Referenz f\u00fcr "{0}" gefunden +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +No\ sketch=Kein Sketch + +#: ../../../processing/app/BaseNoGui.java:428 +No\ sketchbook=Kein Sketchbook + +#: ../../../processing/app/Sketch.java:204 +No\ valid\ code\ files\ found=Keine g\u00fcltige Codedatei gefunden + #: ../../../processing/app/Base.java:309 No\ valid\ configured\ cores\ found\!\ Exiting...=Es wurden keine g\u00fcltig konfigurierten Kerne gefunden\! Beende... @@ -721,6 +831,9 @@ OK=OK #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=Eine Datei wurde dem Sketch hinzugef\u00fcgt +#: ../../../processing/app/BaseNoGui.java:455 +Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported=Es werden nur --verify, --upload und --get-pref unterst\u00fctzt + #: EditorToolbar.java:41 Open=\u00d6ffnen @@ -748,12 +861,22 @@ Paste=Einf\u00fcgen #: Preferences.java:109 Persian=Persisch +#: ../../../processing/app/Preferences.java:161 +Persian\ (Iran)=Persisch (Iran) + #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Bitte die Bibliothek SPI aus dem Sketch > Bibliothek importieren-Men\u00fc importieren +#: ../../../processing/app/debug/Compiler.java:529 +Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Bitte importieren Sie die Wire-Bibliothek aus dem Sketch > Bibliothek importieren-Men\u00fc. + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=Bitte JDK 1.5 oder h\u00f6her installieren +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu=Bitte w\u00e4hlen Sie einen Programmer aus dem Men\u00fc Werkzeuge->Programmer aus + #: Preferences.java:110 Polish=Polnisch @@ -875,9 +998,15 @@ Save\ changes\ to\ "{0}"?\ \ =\u00c4nderungen in "{0}" speichern? #: Sketch.java:825 Save\ sketch\ folder\ as...=Sketch-Ordner speichern als... +#: ../../../../../app/src/processing/app/Preferences.java:425 +Save\ when\ verifying\ or\ uploading=Speichern beim \u00dcberpr\u00fcfen oder Hochladen + #: Editor.java:2270 Editor.java:2308 Saving...=Speichern... +#: ../../../processing/app/FindReplace.java:131 +Search\ all\ Sketch\ Tabs=Alle Sketch-Tabs durchsuchen + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=Bitte einen Ordner f\u00fcr Sketches ausw\u00e4hlen (oder neu anlegen)... @@ -902,14 +1031,6 @@ Send=Senden #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=Serieller Monitor -#: Serial.java:174 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Der serielle Port "{0}" wird bereits verwendet. Bitte das Programm, welches ihn benutzt schlie\u00dfen. - -#: Serial.java:121 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=Der serielle Port "{0}" wird bereits verwendet. Bitte das Programm, welches ihn benutzt schlie\u00dfen. - #: Serial.java:194 #, java-format Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Serieller Port {0} nicht gefunden. Wurde der richtige Port im Men\u00fc Werkzeuge > Serieller Port ausgew\u00e4hlt? @@ -964,6 +1085,9 @@ Sketchbook\ folder\ disappeared=Der Sketchbook-Ordner ist nicht auffindbar #: Preferences.java:315 Sketchbook\ location\:=Sketchbook-Speicherort\: +#: ../../../processing/app/BaseNoGui.java:428 +Sketchbook\ path\ not\ defined=Sketchbook-Speicherort nicht definiert + #: ../../../processing/app/Base.java:785 Sketches\ (*.ino,\ *.pde)=Sketche (*.ino, *.pde) @@ -998,6 +1122,9 @@ Tamil=Tamilisch #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=Das 'BYTE' Schl\u00fcsselwort wird nicht mehr unterst\u00fctzt. +#: ../../../processing/app/BaseNoGui.java:484 +The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time=Die --upload-Option unterst\u00fctzt nur eine Datei gleichzeitig + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Die Klasse Client wurde in EthernetClient umbenannt. @@ -1034,12 +1161,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Der Ordner des Sketches ist verschwunden.\nAn dieser Stelle wird der Sketch neu gespeichert,\naber au\u00dfer dem Quelltext ist alles Andere verloren -#: Sketch.java:2018 -The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=Der Name des Sketches musste ge\u00e4ndert werden. Sketchnamen d\u00fcrfen nur aus ASCII-Zeichen und Ziffern bestehen (k\u00f6nnen aber nicht mit einer Ziffer beginnen)\nAu\u00dferdem sollten sie k\u00fcrzer als 64 Zeichen sein. +#: ../../../processing/app/Sketch.java:2028 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.=Der Sketch-Name musste ge\u00e4ndert werden. Sketch-Namen k\u00f6nnen nur aus\nASCII-Zeichen und Zahlen bestehen (aber nicht mit einer Zahl beginnen).\nSie sollten auch weniger als 64 Zeichen lang sein. #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Der Sketchbook-Ordner existiert nicht mehr.\nArduino wird auf den Standardordner f\u00fcr das Sketchbook umschalten und bei Bedarf einen neuen Sketchbook-Ordner anlegen.\nDanach wird Arduino aufh\u00f6ren, von sich in der dritten Person zu sprechen. +#: ../../../processing/app/debug/Compiler.java:201 +Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.=Die Fremdhersteller-platform.txt definiert keinen compiler.path. Bitte melden Sie dies an den Fremdhersteller. + #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Diese Datei wurde bereits an den Ort kopiert, von dem Sie versuchen, sie hinzuzuf\u00fcgen.\nIch mache erst einmal nichts. @@ -1143,6 +1273,10 @@ Vietnamese=Vietnamesisch #: Editor.java:1105 Visit\ Arduino.cc=Arduino.cc besuchen +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=WARNUNG\: Bibliothek {0} behauptet auf {1} Architektur(en) ausgef\u00fchrt werden zu k\u00f6nnen und ist m\u00f6glicherweise inkompatibel mit Ihrer derzeitigen Platine, welche auf {2} Architektur(en) ausgef\u00fchrt werden kann. + #: Base.java:2128 Warning=Warnung @@ -1197,7 +1331,7 @@ Zip\ doesn't\ contain\ a\ library=Zip enth\u00e4lt keine Bibliothek #: SketchCode.java:258 #, java-format -!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= +"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" enth\u00e4lt unzul\u00e4ssige Zeichen. Wenn dieser Code mit einer \u00e4lteren Version von Arduino erstellt wurde, k\u00f6nnen Sie \u00fcber Werkzeuge -> Kodierung Korrigieren und Neu Laden den Sketch auf UTF-8 Kodierung umstellen. Wenn das nicht funktioniert, m\u00fcssen Sie die unzul\u00e4ssigen Zeichen von Hand l\u00f6schen um diese Warnung abzuschalten. #: debug/Compiler.java:409 \nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nSeit Arduino 0019 ist die Ethernet-Bibliothek von der SPI-Bibliothek abh\u00e4ngig.\nEs sieht so aus, als w\u00fcrden Sie diese benutzen oder eine Bibliothek einsetzen, welche von der SPI-Bibliothek abh\u00e4ngt.\n\n @@ -1241,9 +1375,6 @@ environment=Umgebung #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1266,13 +1397,6 @@ name\ is\ null=Name ist null #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=Der readBytesUntil() byte-Puffer ist zu klein f\u00fcr die {0} Bytes bis inklusive zum Zeichen {1} - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: interner Fehler.. Konnte den Code nicht finden - #: Editor.java:932 serialMenu\ is\ null=serialMenu ist null @@ -1280,6 +1404,10 @@ serialMenu\ is\ null=serialMenu ist null #, java-format the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=Der gew\u00e4hlte serielle Port {0} existiert nicht oder die Platine ist nicht angeschlossen +#: ../../../processing/app/Base.java:389 +#, java-format +unknown\ option\:\ {0}=unbekannte Option\: {0} + #: Preferences.java:391 upload=Hochladen @@ -1298,3 +1426,35 @@ upload=Hochladen #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"={0}\: Ung\u00fcltiges Argument f\u00fcr --pref, sollte in der Form "pref\=Wert" sein + +#: ../../../processing/app/Base.java:476 +#, java-format +{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"={0}\: Ung\u00fcltiger Platinenname, er sollte in der Form "Paket\:arch\:Platine" oder "Paket\:arch\:Platine\:Optionen" sein + +#: ../../../processing/app/Base.java:509 +#, java-format +{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"={0}\: Ung\u00fcltige Option f\u00fcr "{1}" Option der Platine "{2}" + +#: ../../../processing/app/Base.java:507 +#, java-format +{0}\:\ Invalid\ option\ for\ board\ "{1}"={0}\: Ung\u00fcltige Option f\u00fcr Platine "{1}" + +#: ../../../processing/app/Base.java:502 +#, java-format +{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"={0}\: Ung\u00fcltige Option, sollte in der Form "Name\=Wert" sein + +#: ../../../processing/app/Base.java:486 +#, java-format +{0}\:\ Unknown\ architecture={0}\: Unbekannte Architektur + +#: ../../../processing/app/Base.java:491 +#, java-format +{0}\:\ Unknown\ board={0}\: Unbekannte Platine + +#: ../../../processing/app/Base.java:481 +#, java-format +{0}\:\ Unknown\ package={0}\: Unbekanntes Paket diff --git a/arduino-core/src/processing/app/i18n/Resources_el_GR.po b/arduino-core/src/processing/app/i18n/Resources_el_GR.po index 342e5c9c5..3d288945b 100644 --- a/arduino-core/src/processing/app/i18n/Resources_el_GR.po +++ b/arduino-core/src/processing/app/i18n/Resources_el_GR.po @@ -34,6 +34,12 @@ msgstr "" msgid "(edit only when Arduino is not running)" msgstr "" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr "" @@ -92,6 +98,10 @@ msgstr "" msgid "Add Library..." msgstr "Προσθήκη βιβλιοθήκης" +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -99,6 +109,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -177,6 +201,30 @@ msgstr "" msgid "Are you sure you want to delete this sketch?" msgstr "" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "" @@ -185,6 +233,10 @@ msgstr "" msgid "Asturian" msgstr "" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "" @@ -226,6 +278,14 @@ msgstr "" msgid "Bad file selected" msgstr "" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "" @@ -262,6 +322,10 @@ msgstr "Αναζήτηση" msgid "Build folder disappeared or could not be written" msgstr "" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "" @@ -278,8 +342,14 @@ msgstr "" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "" -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" msgstr "" #: ../../../processing/app/Preferences.java:92 @@ -295,6 +365,10 @@ msgstr "Ακύρωση" msgid "Cannot Rename" msgstr "" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "" @@ -339,11 +413,6 @@ msgstr "" msgid "Comment/Uncomment" msgstr "" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "" @@ -451,10 +520,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Δεν μπορεί να διαβάσει τις προεπιλεγμένες ρυθμίσεις.\nΠρέπει να εγκατασταθεί ξανά το Arduino." -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "Δεν μπορεί να διαβάσει τις προτιμήσεις από το {0}" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "" #: Base.java:2482 #, java-format @@ -483,6 +551,10 @@ msgstr "" msgid "Could not replace {0}" msgstr "Δεν μπορεί να αντικατασταθεί το {0}" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "" @@ -552,6 +624,11 @@ msgstr "" msgid "Done burning bootloader." msgstr "" +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "" @@ -560,6 +637,10 @@ msgstr "" msgid "Done printing." msgstr "" +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "" @@ -663,6 +744,10 @@ msgstr "" msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -672,11 +757,25 @@ msgstr "Σφάλμα φόρτωσης κώδικα {0}" msgid "Error while printing." msgstr "" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "Εσθονικά" @@ -697,6 +796,11 @@ msgstr "" msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "" + #: Editor.java:491 msgid "File" msgstr "" @@ -744,8 +848,9 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" msgstr "" #: Preferences.java:95 @@ -894,8 +999,8 @@ msgstr "Η Βιβλιοθήκη προστέθηκε στις Βιβλιοθήκ msgid "Lithuaninan" msgstr "Λιθουανίας" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: Preferences.java:107 @@ -910,6 +1015,10 @@ msgstr "Μήνυμα" msgid "Missing the */ from the end of a /* comment */" msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "" @@ -918,6 +1027,18 @@ msgstr "" msgid "Moving" msgstr "" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "" + #: Sketch.java:282 msgid "Name for new file:" msgstr "" @@ -954,6 +1075,10 @@ msgstr "" msgid "No" msgstr "Όχι" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "" @@ -962,6 +1087,10 @@ msgstr "" msgid "No changes necessary for Auto Format." msgstr "" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "" @@ -974,6 +1103,10 @@ msgstr "" msgid "No line ending" msgstr "" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "Οχι αλήθεια, είναι ώρα να πάρεις λίγο φρέσκο αέρα" @@ -983,6 +1116,19 @@ msgstr "Οχι αλήθεια, είναι ώρα να πάρεις λίγο φρ msgid "No reference available for \"{0}\"" msgstr "" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "" @@ -1019,6 +1165,10 @@ msgstr "Εντάξει" msgid "One file added to the sketch." msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "Άνοιγμα" @@ -1055,14 +1205,27 @@ msgstr "" msgid "Persian" msgstr "Περσικά" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "" +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "" + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "Παρακαλώ εγκαταστήστε το JDK 1.5 ή νεότερο" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "Πολωνέζικα" @@ -1225,10 +1388,18 @@ msgstr "" msgid "Save sketch folder as..." msgstr "" +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "" +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "Επέλέξε (ή φτιάξε νέο) φάκελο για σχέδια..." @@ -1261,20 +1432,6 @@ msgstr "" msgid "Serial Monitor" msgstr "Σειριακή Οθόνη" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "" - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "" - #: Serial.java:194 #, java-format msgid "" @@ -1354,6 +1511,10 @@ msgstr "Χάθηκε ο φάκελος του Sketchbook" msgid "Sketchbook location:" msgstr "Θέση Sketchbook:" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "" @@ -1404,6 +1565,10 @@ msgstr "Ταμίλ" msgid "The 'BYTE' keyword is no longer supported." msgstr "" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "" @@ -1471,11 +1636,11 @@ msgid "" "but anything besides the code will be lost." msgstr "" -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." +"They should also be less than 64 characters long." msgstr "" #: Base.java:259 @@ -1487,6 +1652,12 @@ msgid "" "himself in the third person." msgstr "Ο φάκελος Sketchbook δεν υπάρχει πλέον.\nΤο Arduino θα επανέλθει στην προεπιλεγμένη θέση του Sketchbook, \nκαι θα δημιουργήσει νέο φάκελο Sketchbook αν απαιτείται.\nΤότε το Arduino θα σταματήσει να αναφέρεται στον εαυτό του σε τρίτο πρόσωπο." +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1629,6 +1800,13 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "" + #: Base.java:2128 msgid "Warning" msgstr "Ειδοποίηση" @@ -1797,10 +1975,6 @@ msgstr "Περιβάλλον" msgid "http://arduino.cc/" msgstr "" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "" @@ -1830,17 +2004,6 @@ msgstr "" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "" - #: Editor.java:932 msgid "serialMenu is null" msgstr "" @@ -1851,6 +2014,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "" + #: Preferences.java:391 msgid "upload" msgstr "" @@ -1874,3 +2042,45 @@ msgstr "" #, java-format msgid "{0}.html" msgstr "" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "" diff --git a/arduino-core/src/processing/app/i18n/Resources_el_GR.properties b/arduino-core/src/processing/app/i18n/Resources_el_GR.properties index 687120610..c990cbf33 100644 --- a/arduino-core/src/processing/app/i18n/Resources_el_GR.properties +++ b/arduino-core/src/processing/app/i18n/Resources_el_GR.properties @@ -18,6 +18,9 @@ #: Preferences.java:478 !(edit\ only\ when\ Arduino\ is\ not\ running)= +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 !.pde\ ->\ .ino= @@ -54,9 +57,23 @@ A\ library\ named\ {0}\ already\ exists=\u0397 \u0392\u03b9\u03b2\u03bb\u03b9\u0 #: Base.java:963 Add\ Library...=\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2 +#: ../../../processing/app/Preferences.java:96 +!Albanian= + #: tools/FixEncoding.java:77 !An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n= +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=\u03a0\u03c1\u03bf\u03ba\u03bb\u03ae\u03b8\u03b7\u03ba\u03b5 \u03b1\u03c0\u03c1\u03bf\u03c3\u03b4\u03b9\u03cc\u03c1\u03b9\u03c3\u03c4\u03bf \u03bb\u03ac\u03b8\u03bf\u03c2, \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7 \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c3\u03c5\u03b3\u03ba\u03b5\u03ba\u03c1\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03bc\u03b7\u03c7\u03b1\u03bd\u03ae \u03c3\u03b1\u03c2 @@ -106,12 +123,33 @@ Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ #: Sketch.java:587 !Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?= +#: ../../../processing/app/Base.java:356 +!Argument\ required\ for\ --board= + +#: ../../../processing/app/Base.java:370 +!Argument\ required\ for\ --curdir= + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +!Argument\ required\ for\ --port= + +#: ../../../processing/app/Base.java:377 +!Argument\ required\ for\ --pref= + +#: ../../../processing/app/Base.java:384 +!Argument\ required\ for\ --preferences-file= + #: ../../../processing/app/Preferences.java:137 !Armenian= #: ../../../processing/app/Preferences.java:138 !Asturian= +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 !Auto\ Format= @@ -143,6 +181,12 @@ Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ #: Editor.java:2136 !Bad\ file\ selected= +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +!Basque= + #: ../../../processing/app/Preferences.java:139 !Belarusian= @@ -169,6 +213,9 @@ Browse=\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 #: Sketch.java:1392 Sketch.java:1423 !Build\ folder\ disappeared\ or\ could\ not\ be\ written= +#: ../../../processing/app/Sketch.java:1530 +!Build\ options\ changed,\ rebuilding\ all= + #: ../../../processing/app/Preferences.java:80 !Bulgarian= @@ -181,8 +228,13 @@ Browse=\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 #: Editor.java:2504 !Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...= -#: ../../../processing/app/Base.java:368 -!Can't\ open\ source\ sketch\!= +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 !Canadian\ French= @@ -194,6 +246,9 @@ Cancel=\u0391\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 #: Sketch.java:455 !Cannot\ Rename= +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 !Carriage\ return= @@ -227,10 +282,6 @@ Chinese\ Traditional=\u03a0\u03b1\u03c1\u03b1\u03b4\u03bf\u03c3\u03b9\u03b1\u03b #: Editor.java:1208 Editor.java:2749 !Comment/Uncomment= -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -!Compiler\ error,\ please\ submit\ this\ code\ to\ {0}= - #: Sketch.java:1608 Editor.java:1890 !Compiling\ sketch...= @@ -306,9 +357,8 @@ Could\ not\ open\ the\ folder\n{0}=\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u0 #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b4\u03b9\u03b1\u03b2\u03ac\u03c3\u03b5\u03b9 \u03c4\u03b9\u03c2 \u03c0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b5\u03c2 \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2.\n\u03a0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03b1\u03b8\u03b5\u03af \u03be\u03b1\u03bd\u03ac \u03c4\u03bf Arduino. -#: Preferences.java:258 -#, java-format -Could\ not\ read\ preferences\ from\ {0}=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b4\u03b9\u03b1\u03b2\u03ac\u03c3\u03b5\u03b9 \u03c4\u03b9\u03c2 \u03c0\u03c1\u03bf\u03c4\u03b9\u03bc\u03ae\u03c3\u03b5\u03b9\u03c2 \u03b1\u03c0\u03cc \u03c4\u03bf {0} +#: ../../../processing/app/Sketch.java:1525 +!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= #: Base.java:2482 #, java-format @@ -331,6 +381,9 @@ Could\ not\ remove\ old\ version\ of\ {0}=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\ #, java-format Could\ not\ replace\ {0}=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b1\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03b1\u03b8\u03b5\u03af \u03c4\u03bf {0} +#: ../../../processing/app/Sketch.java:1579 +!Could\ not\ write\ build\ preferences\ file= + #: tools/Archiver.java:74 !Couldn't\ archive\ sketch= @@ -379,12 +432,19 @@ Danish=\u0394\u03b1\u03bd\u03ad\u03b6\u03b9\u03ba\u03b1 #: Editor.java:2510 !Done\ burning\ bootloader.= +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 !Done\ compiling.= #: Editor.java:2564 !Done\ printing.= +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 !Done\ uploading.= @@ -463,6 +523,9 @@ Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ r #: ../../../processing/app/Editor.java:2555 !Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7\u03c2 \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1 {0} @@ -470,10 +533,21 @@ Error\ while\ loading\ code\ {0}=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03c6\u03 #: Editor.java:2567 !Error\ while\ printing.= +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 !Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 Estonian=\u0395\u03c3\u03b8\u03bf\u03bd\u03b9\u03ba\u03ac @@ -489,6 +563,10 @@ Estonian=\u0395\u03c3\u03b8\u03bf\u03bd\u03b9\u03ba\u03ac #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +!Failed\ to\ open\ sketch\:\ "{0}"= + #: Editor.java:491 !File= @@ -523,8 +601,9 @@ Find\:=\u0395\u03cd\u03c1\u03b5\u03c3\u03b7\: #: Base.java:1851 !For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n= -#: debug/BasicUploader.java:80 -!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ = +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=\u0393\u03b1\u03bb\u03bb\u03b9\u03ba\u03ac @@ -628,8 +707,8 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=\u0397 \u03 #: Preferences.java:106 Lithuaninan=\u039b\u03b9\u03b8\u03bf\u03c5\u03b1\u03bd\u03af\u03b1\u03c2 -#: ../../../processing/app/Sketch.java:1660 -!Low\ memory\ available,\ stability\ problems\ may\ occur= +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 !Marathi= @@ -640,12 +719,24 @@ Message=\u039c\u03ae\u03bd\u03c5\u03bc\u03b1 #: ../../../processing/app/preproc/PdePreprocessor.java:412 !Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 !More\ preferences\ can\ be\ edited\ directly\ in\ the\ file= #: Editor.java:2156 !Moving= +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +!Must\ specify\ exactly\ one\ sketch\ file= + +#: ../../../processing/app/Preferences.java:158 +!N'Ko= + #: Sketch.java:282 !Name\ for\ new\ file\:= @@ -673,12 +764,18 @@ New\ Editor\ Window=\u039d\u03ad\u03bf \u03a0\u03b1\u03c1\u03ac\u03b8\u03c5\u03c #: Preferences.java:78 UpdateCheck.java:108 No=\u038c\u03c7\u03b9 +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 !No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.= #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 !No\ changes\ necessary\ for\ Auto\ Format.= +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 !No\ files\ were\ added\ to\ the\ sketch.= @@ -688,6 +785,9 @@ No=\u038c\u03c7\u03b9 #: SerialMonitor.java:112 !No\ line\ ending= +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u039f\u03c7\u03b9 \u03b1\u03bb\u03ae\u03b8\u03b5\u03b9\u03b1, \u03b5\u03af\u03bd\u03b1\u03b9 \u03ce\u03c1\u03b1 \u03bd\u03b1 \u03c0\u03ac\u03c1\u03b5\u03b9\u03c2 \u03bb\u03af\u03b3\u03bf \u03c6\u03c1\u03ad\u03c3\u03ba\u03bf \u03b1\u03ad\u03c1\u03b1 @@ -695,6 +795,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u039f\u03c7\u03b9 \u03b1\u0 #, java-format !No\ reference\ available\ for\ "{0}"= +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +!No\ valid\ code\ files\ found= + #: ../../../processing/app/Base.java:309 !No\ valid\ configured\ cores\ found\!\ Exiting...= @@ -721,6 +831,9 @@ OK=\u0395\u03bd\u03c4\u03ac\u03be\u03b5\u03b9 #: Sketch.java:992 Editor.java:376 !One\ file\ added\ to\ the\ sketch.= +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=\u0386\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 @@ -748,12 +861,22 @@ Open...=\u0386\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1... #: Preferences.java:109 Persian=\u03a0\u03b5\u03c1\u03c3\u03b9\u03ba\u03ac +#: ../../../processing/app/Preferences.java:161 +!Persian\ (Iran)= + #: debug/Compiler.java:408 !Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= +#: ../../../processing/app/debug/Compiler.java:529 +!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ae\u03c3\u03c4\u03b5 \u03c4\u03bf JDK 1.5 \u03ae \u03bd\u03b5\u03cc\u03c4\u03b5\u03c1\u03bf +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 Polish=\u03a0\u03bf\u03bb\u03c9\u03bd\u03ad\u03b6\u03b9\u03ba\u03b1 @@ -875,9 +998,15 @@ Save=\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 #: Sketch.java:825 !Save\ sketch\ folder\ as...= +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 !Saving...= +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=\u0395\u03c0\u03ad\u03bb\u03ad\u03be\u03b5 (\u03ae \u03c6\u03c4\u03b9\u03ac\u03be\u03b5 \u03bd\u03ad\u03bf) \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03b3\u03b9\u03b1 \u03c3\u03c7\u03ad\u03b4\u03b9\u03b1... @@ -902,14 +1031,6 @@ Select\ new\ sketchbook\ location=\u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03 #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=\u03a3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03ae \u039f\u03b8\u03cc\u03bd\u03b7 -#: Serial.java:174 -#, java-format -!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.= - -#: Serial.java:121 -#, java-format -!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.= - #: Serial.java:194 #, java-format !Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?= @@ -964,6 +1085,9 @@ Sketchbook\ folder\ disappeared=\u03a7\u03ac\u03b8\u03b7\u03ba\u03b5 \u03bf \u03 #: Preferences.java:315 Sketchbook\ location\:=\u0398\u03ad\u03c3\u03b7 Sketchbook\: +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 !Sketches\ (*.ino,\ *.pde)= @@ -998,6 +1122,9 @@ Tamil=\u03a4\u03b1\u03bc\u03af\u03bb #: debug/Compiler.java:414 !The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.= +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 !The\ Client\ class\ has\ been\ renamed\ EthernetClient.= @@ -1034,12 +1161,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 !The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.= -#: Sketch.java:2018 -!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.= +#: ../../../processing/app/Sketch.java:2028 +!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=\u039f \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2 Sketchbook \u03b4\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03c0\u03bb\u03ad\u03bf\u03bd.\n\u03a4\u03bf Arduino \u03b8\u03b1 \u03b5\u03c0\u03b1\u03bd\u03ad\u03bb\u03b8\u03b5\u03b9 \u03c3\u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b7 \u03b8\u03ad\u03c3\u03b7 \u03c4\u03bf\u03c5 Sketchbook, \n\u03ba\u03b1\u03b9 \u03b8\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03c3\u03b5\u03b9 \u03bd\u03ad\u03bf \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf Sketchbook \u03b1\u03bd \u03b1\u03c0\u03b1\u03b9\u03c4\u03b5\u03af\u03c4\u03b1\u03b9.\n\u03a4\u03cc\u03c4\u03b5 \u03c4\u03bf Arduino \u03b8\u03b1 \u03c3\u03c4\u03b1\u03bc\u03b1\u03c4\u03ae\u03c3\u03b5\u03b9 \u03bd\u03b1 \u03b1\u03bd\u03b1\u03c6\u03ad\u03c1\u03b5\u03c4\u03b1\u03b9 \u03c3\u03c4\u03bf\u03bd \u03b5\u03b1\u03c5\u03c4\u03cc \u03c4\u03bf\u03c5 \u03c3\u03b5 \u03c4\u03c1\u03af\u03c4\u03bf \u03c0\u03c1\u03cc\u03c3\u03c9\u03c0\u03bf. +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 !This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= @@ -1143,6 +1273,10 @@ Verify=\u0395\u03c0\u03b9\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 #: Editor.java:1105 !Visit\ Arduino.cc= +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= + #: Base.java:2128 Warning=\u0395\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 @@ -1241,9 +1375,6 @@ environment=\u03a0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd #: Editor.java:1108 !http\://arduino.cc/= -#: ../../../processing/app/debug/Compiler.java:49 -!http\://github.com/arduino/Arduino/issues= - #: UpdateCheck.java:118 !http\://www.arduino.cc/en/Main/Software= @@ -1266,13 +1397,6 @@ index.html=index.html #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -!readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}= - -#: Sketch.java:647 -!removeCode\:\ internal\ error..\ could\ not\ find\ code= - #: Editor.java:932 !serialMenu\ is\ null= @@ -1280,6 +1404,10 @@ platforms.html=platforms.html #, java-format !the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected= +#: ../../../processing/app/Base.java:389 +#, java-format +!unknown\ option\:\ {0}= + #: Preferences.java:391 !upload= @@ -1298,3 +1426,35 @@ platforms.html=platforms.html #: Editor.java:1874 #, java-format !{0}.html= + +#: ../../../processing/app/Base.java:519 +#, java-format +!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= + +#: ../../../processing/app/Base.java:476 +#, java-format +!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= + +#: ../../../processing/app/Base.java:509 +#, java-format +!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= + +#: ../../../processing/app/Base.java:507 +#, java-format +!{0}\:\ Invalid\ option\ for\ board\ "{1}"= + +#: ../../../processing/app/Base.java:502 +#, java-format +!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= + +#: ../../../processing/app/Base.java:486 +#, java-format +!{0}\:\ Unknown\ architecture= + +#: ../../../processing/app/Base.java:491 +#, java-format +!{0}\:\ Unknown\ board= + +#: ../../../processing/app/Base.java:481 +#, java-format +!{0}\:\ Unknown\ package= diff --git a/arduino-core/src/processing/app/i18n/Resources_en_GB.po b/arduino-core/src/processing/app/i18n/Resources_en_GB.po index 7e014d41c..2cf45a046 100644 --- a/arduino-core/src/processing/app/i18n/Resources_en_GB.po +++ b/arduino-core/src/processing/app/i18n/Resources_en_GB.po @@ -33,6 +33,12 @@ msgstr "'Mouse' only supported on the Arduino Leonardo" msgid "(edit only when Arduino is not running)" msgstr "(edit only when Arduino is not running)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -91,6 +97,10 @@ msgstr "Add File..." msgid "Add Library..." msgstr "Add Library..." +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "Albanian" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -98,6 +108,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "An error occurred while trying to fix the file encoding.\nDo not attempt to save this sketch as it may overwrite\nthe old version. Use Open to re-open the sketch and try again.\n" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -176,6 +200,30 @@ msgstr "Are you sure you want to delete \"{0}\"?" msgid "Are you sure you want to delete this sketch?" msgstr "Are you sure you want to delete this sketch?" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "Argument required for --board" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "Argument required for --curdir" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "Argument required for --port" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "Argument required for --pref" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "Argument required for --preferences-file" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "Armenian" @@ -184,6 +232,10 @@ msgstr "Armenian" msgid "Asturian" msgstr "Asturian" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "Auto Format" @@ -225,6 +277,14 @@ msgstr "Bad error line: {0}" msgid "Bad file selected" msgstr "Bad file selected" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "Basque" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "Belarusian" @@ -261,6 +321,10 @@ msgstr "Browse" msgid "Build folder disappeared or could not be written" msgstr "Build folder disappeared or could not be written" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "Build options changed, rebuilding all" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Bulgarian" @@ -277,9 +341,15 @@ msgstr "Burn Bootloader" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "Burning bootloader to I/O Board (this may take a minute)..." -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" -msgstr "Can't open source sketch!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" +msgstr "" #: ../../../processing/app/Preferences.java:92 msgid "Canadian French" @@ -294,6 +364,10 @@ msgstr "Cancel" msgid "Cannot Rename" msgstr "Cannot Rename" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "Carriage return" @@ -338,11 +412,6 @@ msgstr "Close" msgid "Comment/Uncomment" msgstr "Comment/Uncomment" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "Compiler error, please submit this code to {0}" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "Compiling sketch..." @@ -450,10 +519,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Could not read default settings.\nYou'll need to reinstall Arduino." -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "Could not read preferences from {0}" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "Could not read prevous build preferences file, rebuilding all" #: Base.java:2482 #, java-format @@ -482,6 +550,10 @@ msgstr "Could not rename the sketch. (2)" msgid "Could not replace {0}" msgstr "Could not replace {0}" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "Could not write build preferences file" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Couldn't archive sketch" @@ -551,6 +623,11 @@ msgstr "Done Saving." msgid "Done burning bootloader." msgstr "Done burning bootloader." +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "Done compiling." @@ -559,6 +636,10 @@ msgstr "Done compiling." msgid "Done printing." msgstr "Done printing." +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "Done uploading." @@ -662,6 +743,10 @@ msgstr "Error while burning bootloader." msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "Error while burning bootloader: missing '{0}' configuration parameter" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -671,11 +756,25 @@ msgstr "Error while loading code {0}" msgid "Error while printing." msgstr "Error while printing." +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "Error while uploading: missing '{0}' configuration parameter" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "Estonian" @@ -696,6 +795,11 @@ msgstr "Export canceled, changes must first be saved." msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "Failed to open sketch: \"{0}\"" + #: Editor.java:491 msgid "File" msgstr "File" @@ -743,9 +847,10 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "For information on installing libraries, see: http://arduino.cc/en/Guide/Libraries\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " -msgstr "Forcing reset using 1200bps open/close on port " +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" +msgstr "" #: Preferences.java:95 msgid "French" @@ -893,9 +998,9 @@ msgstr "Library added to your libraries. Check \"Import library\" menu" msgid "Lithuaninan" msgstr "Lithuaninan" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" -msgstr "Low memory available, stability problems may occur" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." +msgstr "" #: Preferences.java:107 msgid "Marathi" @@ -909,6 +1014,10 @@ msgstr "Message" msgid "Missing the */ from the end of a /* comment */" msgstr "Missing the */ from the end of a /* comment */" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "More preferences can be edited directly in the file" @@ -917,6 +1026,18 @@ msgstr "More preferences can be edited directly in the file" msgid "Moving" msgstr "Moving" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "Must specify exactly one sketch file" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "N'Ko" + #: Sketch.java:282 msgid "Name for new file:" msgstr "Name for new file:" @@ -953,6 +1074,10 @@ msgstr "Next Tab" msgid "No" msgstr "No" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "No board selected; please choose a board from the Tools > Board menu." @@ -961,6 +1086,10 @@ msgstr "No board selected; please choose a board from the Tools > Board menu." msgid "No changes necessary for Auto Format." msgstr "No changes necessary for Auto Format." +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "No files were added to the sketch." @@ -973,6 +1102,10 @@ msgstr "No launcher available" msgid "No line ending" msgstr "No line ending" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "No really, time for some fresh air for you." @@ -982,6 +1115,19 @@ msgstr "No really, time for some fresh air for you." msgid "No reference available for \"{0}\"" msgstr "No reference available for \"{0}\"" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "No valid code files found" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "No valid configured cores found! Exiting..." @@ -1018,6 +1164,10 @@ msgstr "OK" msgid "One file added to the sketch." msgstr "One file added to the sketch." +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "Open" @@ -1054,14 +1204,27 @@ msgstr "Paste" msgid "Persian" msgstr "Persian" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "Persian (Iran)" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "Please import the SPI library from the Sketch > Import Library menu." +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "Please import the Wire library from the Sketch > Import Library menu." + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "Please install JDK 1.5 or later" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "Polish" @@ -1224,10 +1387,18 @@ msgstr "Save changes to \"{0}\"? " msgid "Save sketch folder as..." msgstr "Save sketch folder as..." +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "Saving..." +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "Select (or create new) folder for sketches..." @@ -1260,20 +1431,6 @@ msgstr "Send" msgid "Serial Monitor" msgstr "Serial Monitor" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "Serial port ''{0}'' already in use. Try quiting any programs that may be using it." - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "Serial port ''{0}'' already in use. Try quitting any programs that may be using it." - #: Serial.java:194 #, java-format msgid "" @@ -1353,6 +1510,10 @@ msgstr "Sketchbook folder disappeared" msgid "Sketchbook location:" msgstr "Sketchbook location:" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "Sketches (*.ino, *.pde)" @@ -1403,6 +1564,10 @@ msgstr "Tamil" msgid "The 'BYTE' keyword is no longer supported." msgstr "The 'BYTE' keyword is no longer supported." +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "The Client class has been renamed EthernetClient." @@ -1470,12 +1635,12 @@ msgid "" "but anything besides the code will be lost." msgstr "The sketch folder has disappeared.\n Will attempt to re-save in the same location,\nbut anything besides the code will be lost." -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." -msgstr "The sketch name had to be modified. Sketch names can only consist\nof ASCII characters and numbers (but cannot start with a number).\nThey should also be less less than 64 characters long." +"They should also be less than 64 characters long." +msgstr "The sketch name had to be modified. Sketch names can only consist\nof ASCII characters and numbers (but cannot start with a number).\nThey should also be less than 64 characters long." #: Base.java:259 msgid "" @@ -1486,6 +1651,12 @@ msgid "" "himself in the third person." msgstr "The sketchbook folder no longer exists.\nArduino will switch to the default sketchbook\nlocation, and create a new sketchbook folder if\nnecessary. Arduino will then stop talking about\nhimself in the third person." +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1628,6 +1799,13 @@ msgstr "Vietnamese" msgid "Visit Arduino.cc" msgstr "Visit Arduino.cc" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "WARNING: library {0} claims to run on {1} architecture(s) and may be incompatible with your current board which runs on {2} architecture(s)." + #: Base.java:2128 msgid "Warning" msgstr "Warning" @@ -1796,10 +1974,6 @@ msgstr "environment" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "http://github.com/arduino/Arduino/issues" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1829,17 +2003,6 @@ msgstr "name is null" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "readBytesUntil() byte buffer is too small for the {0} bytes up to and including char {1}" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "removeCode: internal error.. could not find code" - #: Editor.java:932 msgid "serialMenu is null" msgstr "serialMenu is null" @@ -1850,6 +2013,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "the selected serial port {0} does not exist or your board is not connected" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "unknown option: {0}" + #: Preferences.java:391 msgid "upload" msgstr "upload" @@ -1873,3 +2041,45 @@ msgstr "{0} | Arduino {1}" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "{0}: Invalid board name, it should be of the form \"package:arch:board\" or \"package:arch:board:options\"" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "{0}: Invalid option for \"{1}\" option for board \"{2}\"" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "{0}: Invalid option for board \"{1}\"" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "{0}: Invalid option, should be of the form \"name=value\"" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "{0}: Unknown architecture" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "{0}: Unknown board" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "{0}: Unknown package" diff --git a/arduino-core/src/processing/app/i18n/Resources_en_GB.properties b/arduino-core/src/processing/app/i18n/Resources_en_GB.properties index 90fc40597..f16a74e8b 100644 --- a/arduino-core/src/processing/app/i18n/Resources_en_GB.properties +++ b/arduino-core/src/processing/app/i18n/Resources_en_GB.properties @@ -17,6 +17,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(edit only when Arduino is not running) +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -53,9 +56,23 @@ Add\ File...=Add File... #: Base.java:963 Add\ Library...=Add Library... +#: ../../../processing/app/Preferences.java:96 +Albanian=Albanian + #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=An error occurred while trying to fix the file encoding.\nDo not attempt to save this sketch as it may overwrite\nthe old version. Use Open to re-open the sketch and try again.\n +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=An unknown error occurred while trying to load\nplatform-specific code for your machine. @@ -105,12 +122,33 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Are you sure you want to delete "{ #: Sketch.java:587 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Are you sure you want to delete this sketch? +#: ../../../processing/app/Base.java:356 +Argument\ required\ for\ --board=Argument required for --board + +#: ../../../processing/app/Base.java:370 +Argument\ required\ for\ --curdir=Argument required for --curdir + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +Argument\ required\ for\ --port=Argument required for --port + +#: ../../../processing/app/Base.java:377 +Argument\ required\ for\ --pref=Argument required for --pref + +#: ../../../processing/app/Base.java:384 +Argument\ required\ for\ --preferences-file=Argument required for --preferences-file + #: ../../../processing/app/Preferences.java:137 Armenian=Armenian #: ../../../processing/app/Preferences.java:138 Asturian=Asturian +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 Auto\ Format=Auto Format @@ -142,6 +180,12 @@ Bad\ error\ line\:\ {0}=Bad error line\: {0} #: Editor.java:2136 Bad\ file\ selected=Bad file selected +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +Basque=Basque + #: ../../../processing/app/Preferences.java:139 Belarusian=Belarusian @@ -168,6 +212,9 @@ Browse=Browse #: Sketch.java:1392 Sketch.java:1423 Build\ folder\ disappeared\ or\ could\ not\ be\ written=Build folder disappeared or could not be written +#: ../../../processing/app/Sketch.java:1530 +Build\ options\ changed,\ rebuilding\ all=Build options changed, rebuilding all + #: ../../../processing/app/Preferences.java:80 Bulgarian=Bulgarian @@ -180,8 +227,13 @@ Burn\ Bootloader=Burn Bootloader #: Editor.java:2504 Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Burning bootloader to I/O Board (this may take a minute)... -#: ../../../processing/app/Base.java:368 -Can't\ open\ source\ sketch\!=Can't open source sketch\! +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 Canadian\ French=Canadian French @@ -193,6 +245,9 @@ Cancel=Cancel #: Sketch.java:455 Cannot\ Rename=Cannot Rename +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 Carriage\ return=Carriage return @@ -226,10 +281,6 @@ Close=Close #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=Comment/Uncomment -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Compiler error, please submit this code to {0} - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=Compiling sketch... @@ -305,9 +356,8 @@ Could\ not\ re-save\ sketch=Could not re-save sketch #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Could not read default settings.\nYou'll need to reinstall Arduino. -#: Preferences.java:258 -#, java-format -Could\ not\ read\ preferences\ from\ {0}=Could not read preferences from {0} +#: ../../../processing/app/Sketch.java:1525 +Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=Could not read prevous build preferences file, rebuilding all #: Base.java:2482 #, java-format @@ -330,6 +380,9 @@ Could\ not\ rename\ the\ sketch.\ (2)=Could not rename the sketch. (2) #, java-format Could\ not\ replace\ {0}=Could not replace {0} +#: ../../../processing/app/Sketch.java:1579 +Could\ not\ write\ build\ preferences\ file=Could not write build preferences file + #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Couldn't archive sketch @@ -378,12 +431,19 @@ Done\ Saving.=Done Saving. #: Editor.java:2510 Done\ burning\ bootloader.=Done burning bootloader. +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=Done compiling. #: Editor.java:2564 Done\ printing.=Done printing. +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=Done uploading. @@ -462,6 +522,9 @@ Error\ while\ burning\ bootloader.=Error while burning bootloader. #: ../../../processing/app/Editor.java:2555 Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=Error while burning bootloader\: missing '{0}' configuration parameter +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=Error while loading code {0} @@ -469,10 +532,21 @@ Error\ while\ loading\ code\ {0}=Error while loading code {0} #: Editor.java:2567 Error\ while\ printing.=Error while printing. +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=Error while uploading\: missing '{0}' configuration parameter +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 Estonian=Estonian @@ -488,6 +562,10 @@ Export\ canceled,\ changes\ must\ first\ be\ saved.=Export canceled, changes mus #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +Failed\ to\ open\ sketch\:\ "{0}"=Failed to open sketch\: "{0}" + #: Editor.java:491 File=File @@ -522,8 +600,9 @@ Fix\ Encoding\ &\ Reload=Fix Encoding & Reload #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=For information on installing libraries, see\: http\://arduino.cc/en/Guide/Libraries\n -#: debug/BasicUploader.java:80 -Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =Forcing reset using 1200bps open/close on port +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=French @@ -627,8 +706,8 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Library add #: Preferences.java:106 Lithuaninan=Lithuaninan -#: ../../../processing/app/Sketch.java:1660 -Low\ memory\ available,\ stability\ problems\ may\ occur=Low memory available, stability problems may occur +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 Marathi=Marathi @@ -639,12 +718,24 @@ Message=Message #: ../../../processing/app/preproc/PdePreprocessor.java:412 Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Missing the */ from the end of a /* comment */ +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=More preferences can be edited directly in the file #: Editor.java:2156 Moving=Moving +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +Must\ specify\ exactly\ one\ sketch\ file=Must specify exactly one sketch file + +#: ../../../processing/app/Preferences.java:158 +N'Ko=N'Ko + #: Sketch.java:282 Name\ for\ new\ file\:=Name for new file\: @@ -672,12 +763,18 @@ Next\ Tab=Next Tab #: Preferences.java:78 UpdateCheck.java:108 No=No +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=No board selected; please choose a board from the Tools > Board menu. #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=No changes necessary for Auto Format. +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=No files were added to the sketch. @@ -687,6 +784,9 @@ No\ launcher\ available=No launcher available #: SerialMonitor.java:112 No\ line\ ending=No line ending +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=No really, time for some fresh air for you. @@ -694,6 +794,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=No really, time for some fre #, java-format No\ reference\ available\ for\ "{0}"=No reference available for "{0}" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +No\ valid\ code\ files\ found=No valid code files found + #: ../../../processing/app/Base.java:309 No\ valid\ configured\ cores\ found\!\ Exiting...=No valid configured cores found\! Exiting... @@ -720,6 +830,9 @@ OK=OK #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=One file added to the sketch. +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=Open @@ -747,12 +860,22 @@ Paste=Paste #: Preferences.java:109 Persian=Persian +#: ../../../processing/app/Preferences.java:161 +Persian\ (Iran)=Persian (Iran) + #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Please import the SPI library from the Sketch > Import Library menu. +#: ../../../processing/app/debug/Compiler.java:529 +Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Please import the Wire library from the Sketch > Import Library menu. + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=Please install JDK 1.5 or later +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 Polish=Polish @@ -874,9 +997,15 @@ Save\ changes\ to\ "{0}"?\ \ =Save changes to "{0}"? #: Sketch.java:825 Save\ sketch\ folder\ as...=Save sketch folder as... +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=Saving... +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=Select (or create new) folder for sketches... @@ -901,14 +1030,6 @@ Send=Send #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=Serial Monitor -#: Serial.java:174 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Serial port ''{0}'' already in use. Try quiting any programs that may be using it. - -#: Serial.java:121 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=Serial port ''{0}'' already in use. Try quitting any programs that may be using it. - #: Serial.java:194 #, java-format Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Serial port ''{0}'' not found. Did you select the right one from the Tools > Serial Port menu? @@ -963,6 +1084,9 @@ Sketchbook\ folder\ disappeared=Sketchbook folder disappeared #: Preferences.java:315 Sketchbook\ location\:=Sketchbook location\: +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 Sketches\ (*.ino,\ *.pde)=Sketches (*.ino, *.pde) @@ -997,6 +1121,9 @@ Tamil=Tamil #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=The 'BYTE' keyword is no longer supported. +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=The Client class has been renamed EthernetClient. @@ -1033,12 +1160,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=The sketch folder has disappeared.\n Will attempt to re-save in the same location,\nbut anything besides the code will be lost. -#: Sketch.java:2018 -The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=The sketch name had to be modified. Sketch names can only consist\nof ASCII characters and numbers (but cannot start with a number).\nThey should also be less less than 64 characters long. +#: ../../../processing/app/Sketch.java:2028 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.=The sketch name had to be modified. Sketch names can only consist\nof ASCII characters and numbers (but cannot start with a number).\nThey should also be less than 64 characters long. #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=The sketchbook folder no longer exists.\nArduino will switch to the default sketchbook\nlocation, and create a new sketchbook folder if\nnecessary. Arduino will then stop talking about\nhimself in the third person. +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=This file has already been copied to the\nlocation from which where you're trying to add it.\nI ain't not doin nuthin'. @@ -1142,6 +1272,10 @@ Vietnamese=Vietnamese #: Editor.java:1105 Visit\ Arduino.cc=Visit Arduino.cc +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=WARNING\: library {0} claims to run on {1} architecture(s) and may be incompatible with your current board which runs on {2} architecture(s). + #: Base.java:2128 Warning=Warning @@ -1240,9 +1374,6 @@ environment=environment #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1265,13 +1396,6 @@ name\ is\ null=name is null #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() byte buffer is too small for the {0} bytes up to and including char {1} - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: internal error.. could not find code - #: Editor.java:932 serialMenu\ is\ null=serialMenu is null @@ -1279,6 +1403,10 @@ serialMenu\ is\ null=serialMenu is null #, java-format the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=the selected serial port {0} does not exist or your board is not connected +#: ../../../processing/app/Base.java:389 +#, java-format +unknown\ option\:\ {0}=unknown option\: {0} + #: Preferences.java:391 upload=upload @@ -1297,3 +1425,35 @@ upload=upload #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"={0}\: Invalid argument to --pref, should be of the form "pref\=value" + +#: ../../../processing/app/Base.java:476 +#, java-format +{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"={0}\: Invalid board name, it should be of the form "package\:arch\:board" or "package\:arch\:board\:options" + +#: ../../../processing/app/Base.java:509 +#, java-format +{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"={0}\: Invalid option for "{1}" option for board "{2}" + +#: ../../../processing/app/Base.java:507 +#, java-format +{0}\:\ Invalid\ option\ for\ board\ "{1}"={0}\: Invalid option for board "{1}" + +#: ../../../processing/app/Base.java:502 +#, java-format +{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"={0}\: Invalid option, should be of the form "name\=value" + +#: ../../../processing/app/Base.java:486 +#, java-format +{0}\:\ Unknown\ architecture={0}\: Unknown architecture + +#: ../../../processing/app/Base.java:491 +#, java-format +{0}\:\ Unknown\ board={0}\: Unknown board + +#: ../../../processing/app/Base.java:481 +#, java-format +{0}\:\ Unknown\ package={0}\: Unknown package diff --git a/arduino-core/src/processing/app/i18n/Resources_es.po b/arduino-core/src/processing/app/i18n/Resources_es.po index 7bfcc1b06..cf8a07156 100644 --- a/arduino-core/src/processing/app/i18n/Resources_es.po +++ b/arduino-core/src/processing/app/i18n/Resources_es.po @@ -35,6 +35,12 @@ msgstr "'Ratón' sólo soportado por Arduino Leonardo" msgid "(edit only when Arduino is not running)" msgstr "(editar sólo cuando Arduino no está corriendo)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -93,6 +99,10 @@ msgstr "Añadir fichero..." msgid "Add Library..." msgstr "Añadir libreria..." +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "Albano" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -100,6 +110,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "Ha ocurrido un error mientras se solucionaba la codificación del archivo.\nNo intentes guardar este programa así sobreescribiendo la vieja versión.\nUsa Abrir para reabrir el programa e inténtalo de nuevo.\n" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -178,6 +202,30 @@ msgstr "¿Seguro que quieres borrar \"{0}\"?" msgid "Are you sure you want to delete this sketch?" msgstr "¿Seguro que quieres borrar este programa?" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "Argumento necesario para --board" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "Argumento necesario para --curdir" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "Argumento necesario para --port" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "Argumento necesario para --pref" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "Argumento necesario para --preferences-file" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "Armenio" @@ -186,6 +234,10 @@ msgstr "Armenio" msgid "Asturian" msgstr "Asturiano" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "Auto Formato" @@ -227,6 +279,14 @@ msgstr "Línea error: {0}" msgid "Bad file selected" msgstr "Fichero mal Seleccionado" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "Vasco" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "Beloruso" @@ -263,6 +323,10 @@ msgstr "Explorar" msgid "Build folder disappeared or could not be written" msgstr "Carpeta de construcción no encontrada o no se puede escribir en ella" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "Opciones de compilación cambiadas, reconstruyendo todo" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Búlgaro" @@ -279,9 +343,15 @@ msgstr "Quemar Bootloader" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "Quemando bootloader a la Placa I/O (esto debería tardar un minuto)..." -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" -msgstr "No puedo abrir el programa fuente!!!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" +msgstr "" #: ../../../processing/app/Preferences.java:92 msgid "Canadian French" @@ -296,6 +366,10 @@ msgstr "Cancelar" msgid "Cannot Rename" msgstr "No se puede renombrar" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "Retorno de carro" @@ -340,11 +414,6 @@ msgstr "Cerrar" msgid "Comment/Uncomment" msgstr "Comentar / Descomentar" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "Error del compilador, por favor, envía este código a {0}" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "Compilando programa..." @@ -452,10 +521,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "No se pueden leer los ajustes predeterminados.\nNecesita reinstalar Arduino" -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "No puedo leer las preferencias de {0}" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "" #: Base.java:2482 #, java-format @@ -484,6 +552,10 @@ msgstr "No se pudo renombrar el programa. (2)" msgid "Could not replace {0}" msgstr "No pude reemplazar {0}" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "No se pudo archivar el programa." @@ -553,6 +625,11 @@ msgstr "Guardado." msgid "Done burning bootloader." msgstr "Quemado de bootloader completado." +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "Compilado" @@ -561,6 +638,10 @@ msgstr "Compilado" msgid "Done printing." msgstr "Impreso." +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "Subido" @@ -664,6 +745,10 @@ msgstr "Error quemando bootloader" msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "Error mientras se cargaba el bootloader: falta parametro de configuración '{0}'" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -673,11 +758,25 @@ msgstr "Error mientras se cargaba, código {0}" msgid "Error while printing." msgstr "Error al imprimir." +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "Estonio" @@ -698,6 +797,11 @@ msgstr "Cancelada exportación, los cambios se han de salvar antes." msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "" + #: Editor.java:491 msgid "File" msgstr "Archivo" @@ -745,9 +849,10 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "Para información de cómo instalar librerías, visite: http://arduino.cc/en/Guide/Libraries\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " -msgstr "Forzar reinicio usando 1200bps apertura / cierre en el puerto" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" +msgstr "" #: Preferences.java:95 msgid "French" @@ -895,9 +1000,9 @@ msgstr "Librería añadida a tus librerías. Comprueba el menú \"Importar libre msgid "Lithuaninan" msgstr "Lituano" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" -msgstr "Poca memoria disponible, puede producir problemas de estabilidad" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." +msgstr "" #: Preferences.java:107 msgid "Marathi" @@ -911,6 +1016,10 @@ msgstr "mensaje" msgid "Missing the */ from the end of a /* comment */" msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "Más preferencias pueden ser editadas directamente en el fichero" @@ -919,6 +1028,18 @@ msgstr "Más preferencias pueden ser editadas directamente en el fichero" msgid "Moving" msgstr "Moviendo" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "" + #: Sketch.java:282 msgid "Name for new file:" msgstr "Nombre del nuevo fichero:" @@ -955,6 +1076,10 @@ msgstr "Pestaña Siguiente" msgid "No" msgstr "No" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "No se ha seleccionado placa; por favor, seleccione una en el menú Herramientas> Placa" @@ -963,6 +1088,10 @@ msgstr "No se ha seleccionado placa; por favor, seleccione una en el menú Herra msgid "No changes necessary for Auto Format." msgstr "Sin cambios necesarios para Auto Formato" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "No se añadieron ficheros al programa" @@ -975,6 +1104,10 @@ msgstr "No hay lanzador disponible." msgid "No line ending" msgstr "Sin ajuste de línea" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "No, en serio, toma un poco de aire fresco." @@ -984,6 +1117,19 @@ msgstr "No, en serio, toma un poco de aire fresco." msgid "No reference available for \"{0}\"" msgstr "No hay referencia disponible para \"{0}\"" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "No se encontraron nucleos configurados validos! Saliendo..." @@ -1020,6 +1166,10 @@ msgstr "Ok" msgid "One file added to the sketch." msgstr "Un fichero añadido a tu programa." +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "Abrir" @@ -1056,14 +1206,27 @@ msgstr "Pegar" msgid "Persian" msgstr "Persa" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "Persa (Irán)" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "Por favor, importe la librería SPI del menú Programa > Importar Librería." +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "Por favor, importe la libreria Wire desde el menú Proyecto > Improtar Librería." + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "Por favor, instale el JDK 1.5 o superior" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "Polaco" @@ -1226,10 +1389,18 @@ msgstr "¿Guardar cambios a \"{0}\"?" msgid "Save sketch folder as..." msgstr "Salvar carpeta de programas como..." +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "Guardando" +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "Seleccione (o cree) carpeta para proyectos." @@ -1262,20 +1433,6 @@ msgstr "Enviar" msgid "Serial Monitor" msgstr "Monitor Serie" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "El puerto serie \"{0}\" está en uso. Intenta salir de los programas que pudiesen usarlo." - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "El puerto serie \"{0}\" está en uso. Intenta salir de los programas que pudiesen usarlo." - #: Serial.java:194 #, java-format msgid "" @@ -1355,6 +1512,10 @@ msgstr "La carpeta Sketchbook no ha sido encontrada" msgid "Sketchbook location:" msgstr "Localización de proyecto" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "Sketches (*.ino, *.pde)" @@ -1405,6 +1566,10 @@ msgstr "Tamil" msgid "The 'BYTE' keyword is no longer supported." msgstr "La palabra clave 'BYTE' no volverá a ser válida." +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "La clase Cliente ha sido renombrada a EthernetClient" @@ -1472,12 +1637,12 @@ msgid "" "but anything besides the code will be lost." msgstr "La carpeta del programa ha desaparecido\nIntentaré salvarlo de nuevo en la misma ubicación\npero nada más que el código se perderá." -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." -msgstr "El nombre del programa se ha de modificar. Los nombres de programa sólo consisten\nen caracteres ASCII y números (pero no comenzar por número).\nDeberán tener también menos de 64 caracteres." +"They should also be less than 64 characters long." +msgstr "El nombre del proyecto debe ser modificado. El nombre del proyecto debe consistir solo de caracteres ASCII y números (pero no puede comenzar con un número).\nAdemas debe contener menos de 64 caracteres." #: Base.java:259 msgid "" @@ -1488,6 +1653,12 @@ msgid "" "himself in the third person." msgstr "La carpeta de proyecto ya no existe. Arduino cambiará la ubicación por defecto de proyectos, y creará una carpeta de proyecto nuevo si es necesario. Arduino entonces deja de hablar de sí mismo en tercera persona." +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1630,6 +1801,13 @@ msgstr "Vietnamés" msgid "Visit Arduino.cc" msgstr "Visita Arduino.cc" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "" + #: Base.java:2128 msgid "Warning" msgstr "alerta" @@ -1798,10 +1976,6 @@ msgstr "entorno" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "http://github.com/arduino/Arduino/issues" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1831,17 +2005,6 @@ msgstr "Nombre está vacío" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "El buffer de readBytesUntil() es demasiado pequeño para {0} bytes e incluso para el carácter {1}" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "removeCode: error interno... no encontré el código" - #: Editor.java:932 msgid "serialMenu is null" msgstr "serialMenu está vacío" @@ -1852,6 +2015,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "el puerto seleccionado {0} no existe o tu placa no esta conectada" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "opcion desconocida: {0}" + #: Preferences.java:391 msgid "upload" msgstr "Subir" @@ -1875,3 +2043,45 @@ msgstr "{0} Arduino {1}" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "{0}: Nombre de placa invalido, debe ser de la forma \"paquete:arq:placa\" o \"paquete:arq:placa:opciones\"" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "{0}: Opcion invalida ara la placa \"{1}\"" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "{0}: Opcion invalida, debe ser de la forma \"nombre=valor\"" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "{0}: Arquitectura desconocida" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "{0}: Placa desconocida" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "{0}: Paquete desconocido" diff --git a/arduino-core/src/processing/app/i18n/Resources_es.properties b/arduino-core/src/processing/app/i18n/Resources_es.properties index 5a4b97eab..19b37e109 100644 --- a/arduino-core/src/processing/app/i18n/Resources_es.properties +++ b/arduino-core/src/processing/app/i18n/Resources_es.properties @@ -19,6 +19,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(editar s\u00f3lo cuando Arduino no est\u00e1 corriendo) +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -55,9 +58,23 @@ Add\ File...=A\u00f1adir fichero... #: Base.java:963 Add\ Library...=A\u00f1adir libreria... +#: ../../../processing/app/Preferences.java:96 +Albanian=Albano + #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Ha ocurrido un error mientras se solucionaba la codificaci\u00f3n del archivo.\nNo intentes guardar este programa as\u00ed sobreescribiendo la vieja versi\u00f3n.\nUsa Abrir para reabrir el programa e int\u00e9ntalo de nuevo.\n +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Error desconocido al intentar cargar c\u00f3digo espec\u00edfico de plataforma para su m\u00e1quina. @@ -107,12 +124,33 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u00bfSeguro que quieres borrar "{ #: Sketch.java:587 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u00bfSeguro que quieres borrar este programa? +#: ../../../processing/app/Base.java:356 +Argument\ required\ for\ --board=Argumento necesario para --board + +#: ../../../processing/app/Base.java:370 +Argument\ required\ for\ --curdir=Argumento necesario para --curdir + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +Argument\ required\ for\ --port=Argumento necesario para --port + +#: ../../../processing/app/Base.java:377 +Argument\ required\ for\ --pref=Argumento necesario para --pref + +#: ../../../processing/app/Base.java:384 +Argument\ required\ for\ --preferences-file=Argumento necesario para --preferences-file + #: ../../../processing/app/Preferences.java:137 Armenian=Armenio #: ../../../processing/app/Preferences.java:138 Asturian=Asturiano +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 Auto\ Format=Auto Formato @@ -144,6 +182,12 @@ Bad\ error\ line\:\ {0}=L\u00ednea error\: {0} #: Editor.java:2136 Bad\ file\ selected=Fichero mal Seleccionado +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +Basque=Vasco + #: ../../../processing/app/Preferences.java:139 Belarusian=Beloruso @@ -170,6 +214,9 @@ Browse=Explorar #: Sketch.java:1392 Sketch.java:1423 Build\ folder\ disappeared\ or\ could\ not\ be\ written=Carpeta de construcci\u00f3n no encontrada o no se puede escribir en ella +#: ../../../processing/app/Sketch.java:1530 +Build\ options\ changed,\ rebuilding\ all=Opciones de compilaci\u00f3n cambiadas, reconstruyendo todo + #: ../../../processing/app/Preferences.java:80 Bulgarian=B\u00falgaro @@ -182,8 +229,13 @@ Burn\ Bootloader=Quemar Bootloader #: Editor.java:2504 Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Quemando bootloader a la Placa I/O (esto deber\u00eda tardar un minuto)... -#: ../../../processing/app/Base.java:368 -Can't\ open\ source\ sketch\!=No puedo abrir el programa fuente\!\!\! +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 Canadian\ French=Franc\u00e9s de Canad\u00e1 @@ -195,6 +247,9 @@ Cancel=Cancelar #: Sketch.java:455 Cannot\ Rename=No se puede renombrar +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 Carriage\ return=Retorno de carro @@ -228,10 +283,6 @@ Close=Cerrar #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=Comentar / Descomentar -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Error del compilador, por favor, env\u00eda este c\u00f3digo a {0} - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=Compilando programa... @@ -307,9 +358,8 @@ Could\ not\ re-save\ sketch=No se pudo salvar de nuevo el programa. #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=No se pueden leer los ajustes predeterminados.\nNecesita reinstalar Arduino -#: Preferences.java:258 -#, java-format -Could\ not\ read\ preferences\ from\ {0}=No puedo leer las preferencias de {0} +#: ../../../processing/app/Sketch.java:1525 +!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= #: Base.java:2482 #, java-format @@ -332,6 +382,9 @@ Could\ not\ rename\ the\ sketch.\ (2)=No se pudo renombrar el programa. (2) #, java-format Could\ not\ replace\ {0}=No pude reemplazar {0} +#: ../../../processing/app/Sketch.java:1579 +!Could\ not\ write\ build\ preferences\ file= + #: tools/Archiver.java:74 Couldn't\ archive\ sketch=No se pudo archivar el programa. @@ -380,12 +433,19 @@ Done\ Saving.=Guardado. #: Editor.java:2510 Done\ burning\ bootloader.=Quemado de bootloader completado. +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=Compilado #: Editor.java:2564 Done\ printing.=Impreso. +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=Subido @@ -464,6 +524,9 @@ Error\ while\ burning\ bootloader.=Error quemando bootloader #: ../../../processing/app/Editor.java:2555 Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=Error mientras se cargaba el bootloader\: falta parametro de configuraci\u00f3n '{0}' +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=Error mientras se cargaba, c\u00f3digo {0} @@ -471,10 +534,21 @@ Error\ while\ loading\ code\ {0}=Error mientras se cargaba, c\u00f3digo {0} #: Editor.java:2567 Error\ while\ printing.=Error al imprimir. +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 !Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 Estonian=Estonio @@ -490,6 +564,10 @@ Export\ canceled,\ changes\ must\ first\ be\ saved.=Cancelada exportaci\u00f3n, #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +!Failed\ to\ open\ sketch\:\ "{0}"= + #: Editor.java:491 File=Archivo @@ -524,8 +602,9 @@ Fix\ Encoding\ &\ Reload=Reparar codificaci\u00f3n & Recargar. #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=Para informaci\u00f3n de c\u00f3mo instalar librer\u00edas, visite\: http\://arduino.cc/en/Guide/Libraries\n -#: debug/BasicUploader.java:80 -Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =Forzar reinicio usando 1200bps apertura / cierre en el puerto +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=Franc\u00e9s @@ -629,8 +708,8 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Librer\u00e #: Preferences.java:106 Lithuaninan=Lituano -#: ../../../processing/app/Sketch.java:1660 -Low\ memory\ available,\ stability\ problems\ may\ occur=Poca memoria disponible, puede producir problemas de estabilidad +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 Marathi=Marathi @@ -641,12 +720,24 @@ Message=mensaje #: ../../../processing/app/preproc/PdePreprocessor.java:412 !Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=M\u00e1s preferencias pueden ser editadas directamente en el fichero #: Editor.java:2156 Moving=Moviendo +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +!Must\ specify\ exactly\ one\ sketch\ file= + +#: ../../../processing/app/Preferences.java:158 +!N'Ko= + #: Sketch.java:282 Name\ for\ new\ file\:=Nombre del nuevo fichero\: @@ -674,12 +765,18 @@ Next\ Tab=Pesta\u00f1a Siguiente #: Preferences.java:78 UpdateCheck.java:108 No=No +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=No se ha seleccionado placa; por favor, seleccione una en el men\u00fa Herramientas> Placa #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Sin cambios necesarios para Auto Formato +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=No se a\u00f1adieron ficheros al programa @@ -689,6 +786,9 @@ No\ launcher\ available=No hay lanzador disponible. #: SerialMonitor.java:112 No\ line\ ending=Sin ajuste de l\u00ednea +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=No, en serio, toma un poco de aire fresco. @@ -696,6 +796,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=No, en serio, toma un poco d #, java-format No\ reference\ available\ for\ "{0}"=No hay referencia disponible para "{0}" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +!No\ valid\ code\ files\ found= + #: ../../../processing/app/Base.java:309 No\ valid\ configured\ cores\ found\!\ Exiting...=No se encontraron nucleos configurados validos\! Saliendo... @@ -722,6 +832,9 @@ OK=Ok #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=Un fichero a\u00f1adido a tu programa. +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=Abrir @@ -749,12 +862,22 @@ Paste=Pegar #: Preferences.java:109 Persian=Persa +#: ../../../processing/app/Preferences.java:161 +Persian\ (Iran)=Persa (Ir\u00e1n) + #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Por favor, importe la librer\u00eda SPI del men\u00fa Programa > Importar Librer\u00eda. +#: ../../../processing/app/debug/Compiler.java:529 +Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Por favor, importe la libreria Wire desde el men\u00fa Proyecto > Improtar Librer\u00eda. + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=Por favor, instale el JDK 1.5 o superior +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 Polish=Polaco @@ -876,9 +999,15 @@ Save\ changes\ to\ "{0}"?\ \ =\u00bfGuardar cambios a "{0}"? #: Sketch.java:825 Save\ sketch\ folder\ as...=Salvar carpeta de programas como... +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=Guardando +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=Seleccione (o cree) carpeta para proyectos. @@ -903,14 +1032,6 @@ Send=Enviar #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=Monitor Serie -#: Serial.java:174 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=El puerto serie "{0}" est\u00e1 en uso. Intenta salir de los programas que pudiesen usarlo. - -#: Serial.java:121 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=El puerto serie "{0}" est\u00e1 en uso. Intenta salir de los programas que pudiesen usarlo. - #: Serial.java:194 #, java-format Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Puerto "{0}" no encontrado. \u00bfHas seleccionado el correcto del men\u00fa Herramientas > Puerto Serie? @@ -965,6 +1086,9 @@ Sketchbook\ folder\ disappeared=La carpeta Sketchbook no ha sido encontrada #: Preferences.java:315 Sketchbook\ location\:=Localizaci\u00f3n de proyecto +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 Sketches\ (*.ino,\ *.pde)=Sketches (*.ino, *.pde) @@ -999,6 +1123,9 @@ Tamil=Tamil #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=La palabra clave 'BYTE' no volver\u00e1 a ser v\u00e1lida. +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=La clase Cliente ha sido renombrada a EthernetClient @@ -1035,12 +1162,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=La carpeta del programa ha desaparecido\nIntentar\u00e9 salvarlo de nuevo en la misma ubicaci\u00f3n\npero nada m\u00e1s que el c\u00f3digo se perder\u00e1. -#: Sketch.java:2018 -The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=El nombre del programa se ha de modificar. Los nombres de programa s\u00f3lo consisten\nen caracteres ASCII y n\u00fameros (pero no comenzar por n\u00famero).\nDeber\u00e1n tener tambi\u00e9n menos de 64 caracteres. +#: ../../../processing/app/Sketch.java:2028 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.=El nombre del proyecto debe ser modificado. El nombre del proyecto debe consistir solo de caracteres ASCII y n\u00fameros (pero no puede comenzar con un n\u00famero).\nAdemas debe contener menos de 64 caracteres. #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=La carpeta de proyecto ya no existe. Arduino cambiar\u00e1 la ubicaci\u00f3n por defecto de proyectos, y crear\u00e1 una carpeta de proyecto nuevo si es necesario. Arduino entonces deja de hablar de s\u00ed mismo en tercera persona. +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Ese fichero ya se hab\u00eda copiado a la ubicaci\u00f3n\ndesde la que lo quer\u00edas a\u00f1adir,,,\nNo har\u00e9 nada. @@ -1144,6 +1274,10 @@ Vietnamese=Vietnam\u00e9s #: Editor.java:1105 Visit\ Arduino.cc=Visita Arduino.cc +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= + #: Base.java:2128 Warning=alerta @@ -1242,9 +1376,6 @@ environment=entorno #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1267,13 +1398,6 @@ name\ is\ null=Nombre est\u00e1 vac\u00edo #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=El buffer de readBytesUntil() es demasiado peque\u00f1o para {0} bytes e incluso para el car\u00e1cter {1} - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: error interno... no encontr\u00e9 el c\u00f3digo - #: Editor.java:932 serialMenu\ is\ null=serialMenu est\u00e1 vac\u00edo @@ -1281,6 +1405,10 @@ serialMenu\ is\ null=serialMenu est\u00e1 vac\u00edo #, java-format the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=el puerto seleccionado {0} no existe o tu placa no esta conectada +#: ../../../processing/app/Base.java:389 +#, java-format +unknown\ option\:\ {0}=opcion desconocida\: {0} + #: Preferences.java:391 upload=Subir @@ -1299,3 +1427,35 @@ upload=Subir #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= + +#: ../../../processing/app/Base.java:476 +#, java-format +{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"={0}\: Nombre de placa invalido, debe ser de la forma "paquete\:arq\:placa" o "paquete\:arq\:placa\:opciones" + +#: ../../../processing/app/Base.java:509 +#, java-format +!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= + +#: ../../../processing/app/Base.java:507 +#, java-format +{0}\:\ Invalid\ option\ for\ board\ "{1}"={0}\: Opcion invalida ara la placa "{1}" + +#: ../../../processing/app/Base.java:502 +#, java-format +{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"={0}\: Opcion invalida, debe ser de la forma "nombre\=valor" + +#: ../../../processing/app/Base.java:486 +#, java-format +{0}\:\ Unknown\ architecture={0}\: Arquitectura desconocida + +#: ../../../processing/app/Base.java:491 +#, java-format +{0}\:\ Unknown\ board={0}\: Placa desconocida + +#: ../../../processing/app/Base.java:481 +#, java-format +{0}\:\ Unknown\ package={0}\: Paquete desconocido diff --git a/arduino-core/src/processing/app/i18n/Resources_et.po b/arduino-core/src/processing/app/i18n/Resources_et.po index 28ff4fdef..9afa4f9cc 100644 --- a/arduino-core/src/processing/app/i18n/Resources_et.po +++ b/arduino-core/src/processing/app/i18n/Resources_et.po @@ -32,6 +32,12 @@ msgstr "'Mouse' töötab vaid Arduino Leonardo peal" msgid "(edit only when Arduino is not running)" msgstr "(Arduino ei tohi muutmise ajal käia)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -90,6 +96,10 @@ msgstr "Lisa fail…" msgid "Add Library..." msgstr "Lisa teek…" +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -97,6 +107,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "Faili kooditabeli muutmisel tekkis viga. Ära proovi\nseda visandit salvestada kuna see võib olemasoleva\nüle kirjutada. Ava visand uuesti ning proovi uuesti.\n" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -175,6 +199,30 @@ msgstr "Oled kindel, et soovid kustutada \"{0}\"?" msgid "Are you sure you want to delete this sketch?" msgstr "Oled kindel, et soovid kustutada selle visandi?" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "" @@ -183,6 +231,10 @@ msgstr "" msgid "Asturian" msgstr "" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "Automaatvormindus" @@ -224,6 +276,14 @@ msgstr "Viga real: {0}" msgid "Bad file selected" msgstr "Vigane fail valitud" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "" @@ -260,6 +320,10 @@ msgstr "Sirvi" msgid "Build folder disappeared or could not be written" msgstr "Kompileerimise kaust on haihtunud või pole kirjutatav" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "" @@ -276,8 +340,14 @@ msgstr "Kirjuta buudilaadur" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "Buudilaaduri I/O plaadile kirjutamine (see võib kesta mõni minut)…" -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" msgstr "" #: ../../../processing/app/Preferences.java:92 @@ -293,6 +363,10 @@ msgstr "Loobu" msgid "Cannot Rename" msgstr "Ümbernimetamine nurjus" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "lisa CR (\\\\r)" @@ -337,11 +411,6 @@ msgstr "Sulge" msgid "Comment/Uncomment" msgstr "Kommentaari lisamine/eemaldamine" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "Kompilaatori viga, saada see kood {0}" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "Visandi kompileerimine…" @@ -449,10 +518,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Ei saa lugeda vaikimisi seadeid.\nArduino tuleb uuesti paigaldada." -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "Ei saa lugeda eelistusi failist {0}" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "" #: Base.java:2482 #, java-format @@ -481,6 +549,10 @@ msgstr "Visandi ümbernimetamine nurjus. (2)" msgid "Could not replace {0}" msgstr "{0} pole võimalik asendada" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Visandi arhiveerimine ebaõnnestus" @@ -550,6 +622,11 @@ msgstr "Salvestatud." msgid "Done burning bootloader." msgstr "Buudilaadur edukalt kirjutatud." +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "Kompileeritud." @@ -558,6 +635,10 @@ msgstr "Kompileeritud." msgid "Done printing." msgstr "Trükitud." +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "Laadimine lõpetatud" @@ -661,6 +742,10 @@ msgstr "Buudilaaduri kirjutamisel tekkis viga." msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -670,11 +755,25 @@ msgstr "Koodi laadimise viga {0}" msgid "Error while printing." msgstr "Viga trükkimisel." +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "Eesti" @@ -695,6 +794,11 @@ msgstr "Eksport katkestatud. Muudatused peavad olema enne salvestatud." msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "" + #: Editor.java:491 msgid "File" msgstr "Fail" @@ -742,9 +846,10 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "Rohkem infot teekide paigaldamise kohta leab aadressilt http://arduino.cc/en/Guide/Libraries\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " -msgstr "Pordi algseadistamine avamise/sulgemisega kiirusel 1200bps" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" +msgstr "" #: Preferences.java:95 msgid "French" @@ -892,8 +997,8 @@ msgstr "Teek lisatud sinu teelide nimistusse. Vaata \"Laadi teek…\" menüüd" msgid "Lithuaninan" msgstr "Leedu" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: Preferences.java:107 @@ -908,6 +1013,10 @@ msgstr "Teade" msgid "Missing the */ from the end of a /* comment */" msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "Rohkemate eelistuste muutmiseks muuda neid otse failis" @@ -916,6 +1025,18 @@ msgstr "Rohkemate eelistuste muutmiseks muuda neid otse failis" msgid "Moving" msgstr "Liigutamine" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "" + #: Sketch.java:282 msgid "Name for new file:" msgstr "Uue faili nimi:" @@ -952,6 +1073,10 @@ msgstr "Järgmine kaart" msgid "No" msgstr "Ei" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "Plaat pole valitud. Palun tee oma valik menüüs Tööriistad > Plaat." @@ -960,6 +1085,10 @@ msgstr "Plaat pole valitud. Palun tee oma valik menüüs Tööriistad > Plaat." msgid "No changes necessary for Auto Format." msgstr "Automaatvormindus ei vaja muudatusi." +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "Visandisse pole faile lisatud." @@ -972,6 +1101,10 @@ msgstr "Veebilehitseja puudub" msgid "No line ending" msgstr "Reavahetust ei lisa" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "Tõesti oleks aeg natuke värsket õhku hingata." @@ -981,6 +1114,19 @@ msgstr "Tõesti oleks aeg natuke värsket õhku hingata." msgid "No reference available for \"{0}\"" msgstr "\"{0}\" kohta juhend puudub" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "" @@ -1017,6 +1163,10 @@ msgstr "Olgu" msgid "One file added to the sketch." msgstr "Visandisse on lisatud üks fail." +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "Ava" @@ -1053,14 +1203,27 @@ msgstr "Aseta" msgid "Persian" msgstr "Pärsia" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "Impordi SPI teek menüüst Visand > Impordi teek" +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "" + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "Palun paigalda JDK 1.5 või hilisem" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "Poola" @@ -1223,10 +1386,18 @@ msgstr "Salvesta muudatused faili \"{0}\"?" msgid "Save sketch folder as..." msgstr "Salvesta visand uude kausta…" +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "Salvestamine…" +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "Vali (või loo uus) kaust visandite jaoks…" @@ -1259,20 +1430,6 @@ msgstr "Saada" msgid "Serial Monitor" msgstr "Jadapordi monitor" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "Jadaport {0} on juba kasutusel. Sulge programm, mis seda kasutab." - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "Jadaport {0} on juba kasutusel. Sulge programm, mis seda kasutab." - #: Serial.java:194 #, java-format msgid "" @@ -1352,6 +1509,10 @@ msgstr "Visandite kaust on haihtunud" msgid "Sketchbook location:" msgstr "Visandite asukoht:" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "" @@ -1402,6 +1563,10 @@ msgstr "" msgid "The 'BYTE' keyword is no longer supported." msgstr "\"BYTE\" võtmesõna pole enam toetatud." +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "Klass Client on nüüd EthernetClient." @@ -1469,12 +1634,12 @@ msgid "" "but anything besides the code will be lost." msgstr "Visandi kaust on haihtunud.\nPüüan samasse kohta uuesti salvestada,\nkuid kõik peale selle koodi on kadunud." -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." -msgstr "Visandi nime tuleb muuta. Nimes tohivad olla vaid\nASCII tähed ning numbrid (algama peab tähega).\nNimi peab olema lühem kui 64 märki." +"They should also be less than 64 characters long." +msgstr "" #: Base.java:259 msgid "" @@ -1485,6 +1650,12 @@ msgid "" "himself in the third person." msgstr "Visandite kausta pole enam.\nArduino hakkab kasutama vaikimisi kausta ning\nvajadusel tekitab uue visandite kausta." +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1627,6 +1798,13 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "Külasta Arduino.cc" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "" + #: Base.java:2128 msgid "Warning" msgstr "Hoiatus" @@ -1795,10 +1973,6 @@ msgstr "Töökeskkond" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1828,17 +2002,6 @@ msgstr "name on null" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "readBytesUntil() baitide puhver on liiga väike {0} ja rohkema baidi jaoks alates märgist {1}" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "removeCode: sisemine viga.. ei leidnud koodi" - #: Editor.java:932 msgid "serialMenu is null" msgstr "serialMenu on null" @@ -1849,6 +2012,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "valitud jadaporti {0} ei eksisteeri või plaat on ühendamata" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "" + #: Preferences.java:391 msgid "upload" msgstr "üleslaadimise ajal" @@ -1872,3 +2040,45 @@ msgstr "{0} | Arduino {1}" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "" diff --git a/arduino-core/src/processing/app/i18n/Resources_et.properties b/arduino-core/src/processing/app/i18n/Resources_et.properties index bd69e11dc..f28b21e82 100644 --- a/arduino-core/src/processing/app/i18n/Resources_et.properties +++ b/arduino-core/src/processing/app/i18n/Resources_et.properties @@ -16,6 +16,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(Arduino ei tohi muutmise ajal k\u00e4ia) +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -52,9 +55,23 @@ Add\ File...=Lisa fail\u2026 #: Base.java:963 Add\ Library...=Lisa teek\u2026 +#: ../../../processing/app/Preferences.java:96 +!Albanian= + #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Faili kooditabeli muutmisel tekkis viga. \u00c4ra proovi\nseda visandit salvestada kuna see v\u00f5ib olemasoleva\n\u00fcle kirjutada. Ava visand uuesti ning proovi uuesti.\n +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Sinu masina platvormip\u00f5hise koodi laadimisel\ntekkis tundmatu viga. @@ -104,12 +121,33 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Oled kindel, et soovid kustutada " #: Sketch.java:587 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Oled kindel, et soovid kustutada selle visandi? +#: ../../../processing/app/Base.java:356 +!Argument\ required\ for\ --board= + +#: ../../../processing/app/Base.java:370 +!Argument\ required\ for\ --curdir= + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +!Argument\ required\ for\ --port= + +#: ../../../processing/app/Base.java:377 +!Argument\ required\ for\ --pref= + +#: ../../../processing/app/Base.java:384 +!Argument\ required\ for\ --preferences-file= + #: ../../../processing/app/Preferences.java:137 !Armenian= #: ../../../processing/app/Preferences.java:138 !Asturian= +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 Auto\ Format=Automaatvormindus @@ -141,6 +179,12 @@ Bad\ error\ line\:\ {0}=Viga real\: {0} #: Editor.java:2136 Bad\ file\ selected=Vigane fail valitud +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +!Basque= + #: ../../../processing/app/Preferences.java:139 !Belarusian= @@ -167,6 +211,9 @@ Browse=Sirvi #: Sketch.java:1392 Sketch.java:1423 Build\ folder\ disappeared\ or\ could\ not\ be\ written=Kompileerimise kaust on haihtunud v\u00f5i pole kirjutatav +#: ../../../processing/app/Sketch.java:1530 +!Build\ options\ changed,\ rebuilding\ all= + #: ../../../processing/app/Preferences.java:80 !Bulgarian= @@ -179,8 +226,13 @@ Burn\ Bootloader=Kirjuta buudilaadur #: Editor.java:2504 Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Buudilaaduri I/O plaadile kirjutamine (see v\u00f5ib kesta m\u00f5ni minut)\u2026 -#: ../../../processing/app/Base.java:368 -!Can't\ open\ source\ sketch\!= +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 !Canadian\ French= @@ -192,6 +244,9 @@ Cancel=Loobu #: Sketch.java:455 Cannot\ Rename=\u00dcmbernimetamine nurjus +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 Carriage\ return=lisa CR (\\\\r) @@ -225,10 +280,6 @@ Close=Sulge #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=Kommentaari lisamine/eemaldamine -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Kompilaatori viga, saada see kood {0} - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=Visandi kompileerimine\u2026 @@ -304,9 +355,8 @@ Could\ not\ re-save\ sketch=Visandi uuesti salvestamine eba\u00f5nnestus #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Ei saa lugeda vaikimisi seadeid.\nArduino tuleb uuesti paigaldada. -#: Preferences.java:258 -#, java-format -Could\ not\ read\ preferences\ from\ {0}=Ei saa lugeda eelistusi failist {0} +#: ../../../processing/app/Sketch.java:1525 +!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= #: Base.java:2482 #, java-format @@ -329,6 +379,9 @@ Could\ not\ rename\ the\ sketch.\ (2)=Visandi \u00fcmbernimetamine nurjus. (2) #, java-format Could\ not\ replace\ {0}={0} pole v\u00f5imalik asendada +#: ../../../processing/app/Sketch.java:1579 +!Could\ not\ write\ build\ preferences\ file= + #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Visandi arhiveerimine eba\u00f5nnestus @@ -377,12 +430,19 @@ Done\ Saving.=Salvestatud. #: Editor.java:2510 Done\ burning\ bootloader.=Buudilaadur edukalt kirjutatud. +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=Kompileeritud. #: Editor.java:2564 Done\ printing.=Tr\u00fckitud. +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=Laadimine l\u00f5petatud @@ -461,6 +521,9 @@ Error\ while\ burning\ bootloader.=Buudilaaduri kirjutamisel tekkis viga. #: ../../../processing/app/Editor.java:2555 !Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=Koodi laadimise viga {0} @@ -468,10 +531,21 @@ Error\ while\ loading\ code\ {0}=Koodi laadimise viga {0} #: Editor.java:2567 Error\ while\ printing.=Viga tr\u00fckkimisel. +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 !Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 Estonian=Eesti @@ -487,6 +561,10 @@ Export\ canceled,\ changes\ must\ first\ be\ saved.=Eksport katkestatud. Muudatu #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +!Failed\ to\ open\ sketch\:\ "{0}"= + #: Editor.java:491 File=Fail @@ -521,8 +599,9 @@ Fix\ Encoding\ &\ Reload=Paranda kooditabel ning laadi uuesti #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=Rohkem infot teekide paigaldamise kohta leab aadressilt http\://arduino.cc/en/Guide/Libraries\n -#: debug/BasicUploader.java:80 -Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =Pordi algseadistamine avamise/sulgemisega kiirusel 1200bps +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=Prantsuse @@ -626,8 +705,8 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Teek lisatu #: Preferences.java:106 Lithuaninan=Leedu -#: ../../../processing/app/Sketch.java:1660 -!Low\ memory\ available,\ stability\ problems\ may\ occur= +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 Marathi=Marathi @@ -638,12 +717,24 @@ Message=Teade #: ../../../processing/app/preproc/PdePreprocessor.java:412 !Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Rohkemate eelistuste muutmiseks muuda neid otse failis #: Editor.java:2156 Moving=Liigutamine +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +!Must\ specify\ exactly\ one\ sketch\ file= + +#: ../../../processing/app/Preferences.java:158 +!N'Ko= + #: Sketch.java:282 Name\ for\ new\ file\:=Uue faili nimi\: @@ -671,12 +762,18 @@ Next\ Tab=J\u00e4rgmine kaart #: Preferences.java:78 UpdateCheck.java:108 No=Ei +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Plaat pole valitud. Palun tee oma valik men\u00fc\u00fcs T\u00f6\u00f6riistad > Plaat. #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Automaatvormindus ei vaja muudatusi. +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=Visandisse pole faile lisatud. @@ -686,6 +783,9 @@ No\ launcher\ available=Veebilehitseja puudub #: SerialMonitor.java:112 No\ line\ ending=Reavahetust ei lisa +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=T\u00f5esti oleks aeg natuke v\u00e4rsket \u00f5hku hingata. @@ -693,6 +793,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=T\u00f5esti oleks aeg natuke #, java-format No\ reference\ available\ for\ "{0}"="{0}" kohta juhend puudub +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +!No\ valid\ code\ files\ found= + #: ../../../processing/app/Base.java:309 !No\ valid\ configured\ cores\ found\!\ Exiting...= @@ -719,6 +829,9 @@ OK=Olgu #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=Visandisse on lisatud \u00fcks fail. +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=Ava @@ -746,12 +859,22 @@ Paste=Aseta #: Preferences.java:109 Persian=P\u00e4rsia +#: ../../../processing/app/Preferences.java:161 +!Persian\ (Iran)= + #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Impordi SPI teek men\u00fc\u00fcst Visand > Impordi teek +#: ../../../processing/app/debug/Compiler.java:529 +!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=Palun paigalda JDK 1.5 v\u00f5i hilisem +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 Polish=Poola @@ -873,9 +996,15 @@ Save\ changes\ to\ "{0}"?\ \ =Salvesta muudatused faili "{0}"? #: Sketch.java:825 Save\ sketch\ folder\ as...=Salvesta visand uude kausta\u2026 +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=Salvestamine\u2026 +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=Vali (v\u00f5i loo uus) kaust visandite jaoks\u2026 @@ -900,14 +1029,6 @@ Send=Saada #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=Jadapordi monitor -#: Serial.java:174 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Jadaport {0} on juba kasutusel. Sulge programm, mis seda kasutab. - -#: Serial.java:121 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=Jadaport {0} on juba kasutusel. Sulge programm, mis seda kasutab. - #: Serial.java:194 #, java-format Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Jadaport {0} puudub. Vali \u00f5ige port men\u00fc\u00fcst T\u00f6\u00f6riistad -> Jadaport @@ -962,6 +1083,9 @@ Sketchbook\ folder\ disappeared=Visandite kaust on haihtunud #: Preferences.java:315 Sketchbook\ location\:=Visandite asukoht\: +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 !Sketches\ (*.ino,\ *.pde)= @@ -996,6 +1120,9 @@ System\ Default=S\u00fcsteemi vaikimisi keel #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.="BYTE" v\u00f5tmes\u00f5na pole enam toetatud. +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Klass Client on n\u00fc\u00fcd EthernetClient. @@ -1032,12 +1159,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Visandi kaust on haihtunud.\nP\u00fc\u00fcan samasse kohta uuesti salvestada,\nkuid k\u00f5ik peale selle koodi on kadunud. -#: Sketch.java:2018 -The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=Visandi nime tuleb muuta. Nimes tohivad olla vaid\nASCII t\u00e4hed ning numbrid (algama peab t\u00e4hega).\nNimi peab olema l\u00fchem kui 64 m\u00e4rki. +#: ../../../processing/app/Sketch.java:2028 +!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Visandite kausta pole enam.\nArduino hakkab kasutama vaikimisi kausta ning\nvajadusel tekitab uue visandite kausta. +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=See fail on juba kopeeritud kohta, kust sa seda\nkopeerida \u00fcritad. Seega ei pea ma midagi tegema. @@ -1141,6 +1271,10 @@ Verify\ code\ after\ upload=Kontrolli koodi peale \u00fcleslaadimist #: Editor.java:1105 Visit\ Arduino.cc=K\u00fclasta Arduino.cc +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= + #: Base.java:2128 Warning=Hoiatus @@ -1239,9 +1373,6 @@ environment=T\u00f6\u00f6keskkond #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -!http\://github.com/arduino/Arduino/issues= - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1264,13 +1395,6 @@ name\ is\ null=name on null #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() baitide puhver on liiga v\u00e4ike {0} ja rohkema baidi jaoks alates m\u00e4rgist {1} - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: sisemine viga.. ei leidnud koodi - #: Editor.java:932 serialMenu\ is\ null=serialMenu on null @@ -1278,6 +1402,10 @@ serialMenu\ is\ null=serialMenu on null #, java-format the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=valitud jadaporti {0} ei eksisteeri v\u00f5i plaat on \u00fchendamata +#: ../../../processing/app/Base.java:389 +#, java-format +!unknown\ option\:\ {0}= + #: Preferences.java:391 upload=\u00fcleslaadimise ajal @@ -1296,3 +1424,35 @@ upload=\u00fcleslaadimise ajal #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= + +#: ../../../processing/app/Base.java:476 +#, java-format +!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= + +#: ../../../processing/app/Base.java:509 +#, java-format +!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= + +#: ../../../processing/app/Base.java:507 +#, java-format +!{0}\:\ Invalid\ option\ for\ board\ "{1}"= + +#: ../../../processing/app/Base.java:502 +#, java-format +!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= + +#: ../../../processing/app/Base.java:486 +#, java-format +!{0}\:\ Unknown\ architecture= + +#: ../../../processing/app/Base.java:491 +#, java-format +!{0}\:\ Unknown\ board= + +#: ../../../processing/app/Base.java:481 +#, java-format +!{0}\:\ Unknown\ package= diff --git a/arduino-core/src/processing/app/i18n/Resources_et_EE.po b/arduino-core/src/processing/app/i18n/Resources_et_EE.po index 9bf04d313..4352e64f9 100644 --- a/arduino-core/src/processing/app/i18n/Resources_et_EE.po +++ b/arduino-core/src/processing/app/i18n/Resources_et_EE.po @@ -33,6 +33,12 @@ msgstr "'Mouse' on toetatud vaid Arduino Leonardo plaatidega" msgid "(edit only when Arduino is not running)" msgstr "(Arduino ei tohi muutmise ajal käia)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -91,6 +97,10 @@ msgstr "Lisa fail..." msgid "Add Library..." msgstr "Lisa teek..." +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -98,6 +108,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "Faili kooditabeli muutmisel tekkis viga. Ära proovi\nseda visandit salvestada kuna see võib olemasoleva\nüle kirjutada. Ava visand uuesti ning proovi uuesti.\n" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -176,6 +200,30 @@ msgstr "Oled kindel, et soovid kustutada \"{0}\"?" msgid "Are you sure you want to delete this sketch?" msgstr "Oled kindel, et soovid kustutada selle visandi?" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "" @@ -184,6 +232,10 @@ msgstr "" msgid "Asturian" msgstr "" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "Automaatvormindus" @@ -225,6 +277,14 @@ msgstr "Viga real: {0}" msgid "Bad file selected" msgstr "Vigane fail valitud" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "" @@ -261,6 +321,10 @@ msgstr "Sirvi" msgid "Build folder disappeared or could not be written" msgstr "Kompileerimise kaust on haihtunud või pole kirjutatav" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Bulgaaria" @@ -277,9 +341,15 @@ msgstr "Kirjuta buudilaadur" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "Buudilaaduri I/O plaadile kirjutamine (see võib kesta mõni minut)..." -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" -msgstr "Visandi avamine ebaõnnestus" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" +msgstr "" #: ../../../processing/app/Preferences.java:92 msgid "Canadian French" @@ -294,6 +364,10 @@ msgstr "Loobu" msgid "Cannot Rename" msgstr "Ümbernimetamine nurjus" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "lisa CR (\\r)" @@ -338,11 +412,6 @@ msgstr "Sulge" msgid "Comment/Uncomment" msgstr "Kommentaari lisamine/eemaldamine" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "Kompilaatori viga, saada see kood {0}" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "Visandi kompileerimine..." @@ -450,10 +519,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Ei saa avada vaikimisi seadeid.\nArduino tuleb uuesti paigaldada." -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "Ei saa lugeda eelistusi failist {0}" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "" #: Base.java:2482 #, java-format @@ -482,6 +550,10 @@ msgstr "Visandi ümbernimetamine nurjus. (2)" msgid "Could not replace {0}" msgstr "{0} pole võimalik asendada" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Visandi arhiveerimine ebaõnnestus" @@ -551,6 +623,11 @@ msgstr "Salvestatud." msgid "Done burning bootloader." msgstr "Buudilaadur edukalt kirjutatud." +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "Kompileeritud." @@ -559,6 +636,10 @@ msgstr "Kompileeritud." msgid "Done printing." msgstr "Trükitud." +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "Laadimine lõpetatud" @@ -662,6 +743,10 @@ msgstr "Buudilaaduri kirjutamisel tekkis viga." msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -671,11 +756,25 @@ msgstr "Koodi laadimise viga {0}" msgid "Error while printing." msgstr "Viga trükkimisel." +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "Eesti" @@ -696,6 +795,11 @@ msgstr "Eksport katkestatud. Muudatused peavad olema enne salvestatud." msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "" + #: Editor.java:491 msgid "File" msgstr "Fail" @@ -743,9 +847,10 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "Teekide paigaldamise juhendi leiab aadressilt http://arduino.cc/en/Guide/Libraries\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " -msgstr "Jõuga alglaadimine kasutades 1200bps pordi avamist-sulgemist" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" +msgstr "" #: Preferences.java:95 msgid "French" @@ -893,8 +998,8 @@ msgstr "Teek lisatud sinu teekide hulka. Leiad selle \"Laadi teek...\" menüüst msgid "Lithuaninan" msgstr "Leedu" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: Preferences.java:107 @@ -909,6 +1014,10 @@ msgstr "Teade" msgid "Missing the */ from the end of a /* comment */" msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "Rohkemate eelistuste muutmiseks muuda neid otse failis" @@ -917,6 +1026,18 @@ msgstr "Rohkemate eelistuste muutmiseks muuda neid otse failis" msgid "Moving" msgstr "Liigutamine" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "" + #: Sketch.java:282 msgid "Name for new file:" msgstr "Uue faili nimi:" @@ -953,6 +1074,10 @@ msgstr "Järgmine kaart" msgid "No" msgstr "Ei" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "Plaat pole valitud. Palun tee oma valik menüüs Tööriistad > Plaat." @@ -961,6 +1086,10 @@ msgstr "Plaat pole valitud. Palun tee oma valik menüüs Tööriistad > Plaat." msgid "No changes necessary for Auto Format." msgstr "Automaatvormindus ei vaja muudatusi." +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "Visandisse pole faile lisatud." @@ -973,6 +1102,10 @@ msgstr "Veebilehitseja puudub" msgid "No line ending" msgstr "Reavahetust ei lisa" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "Tõesti oleks aeg natuke värsket õhku hingata." @@ -982,6 +1115,19 @@ msgstr "Tõesti oleks aeg natuke värsket õhku hingata." msgid "No reference available for \"{0}\"" msgstr "\"{0}\" kohta juhend puudub" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "" @@ -1018,6 +1164,10 @@ msgstr "Olgu" msgid "One file added to the sketch." msgstr "Visandisse on lisatud üks fail." +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "Ava" @@ -1054,14 +1204,27 @@ msgstr "Aseta" msgid "Persian" msgstr "Pärsia" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "Laadi SPI teek menüüst Visand > Laadi teek" +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "" + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "Palun paigalda JDK 1.5 või hilisem" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "Poola" @@ -1224,10 +1387,18 @@ msgstr "Salvesta muudatused faili \"{0}\"" msgid "Save sketch folder as..." msgstr "Salvesta visand uude kausta..." +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "Salvestamine..." +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "Vali (või loo uus) kaust visandite jaoks..." @@ -1260,20 +1431,6 @@ msgstr "Saada" msgid "Serial Monitor" msgstr "Jadapordi monitor" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "Jadaport {0} on juba kasutusel. Välju programmist, mis seda kasutab." - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "Jadaport {0} on juba kasutusel. Sulge programm, mis seda kasutab." - #: Serial.java:194 #, java-format msgid "" @@ -1353,6 +1510,10 @@ msgstr "Visandite kaust on haihtunud" msgid "Sketchbook location:" msgstr "Visandite asukoht:" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "" @@ -1403,6 +1564,10 @@ msgstr "Tamili" msgid "The 'BYTE' keyword is no longer supported." msgstr "\"BYTE\" võtmesõna pole enam toetatud." +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "Klass Client on nüüd EthernetClient." @@ -1470,12 +1635,12 @@ msgid "" "but anything besides the code will be lost." msgstr "Visandi kaust on haihtunud.\nPüüan samasse kohta uuesti salvestada,\nkuid kõik peale selle koodi on kadunud." -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." -msgstr "Visandi nime tuleb muuta. Nimes tohivad olla vaid\nASCII tähed ning numbrid (algama peab tähega).\nNimi peab olema lühem kui 64 märki." +"They should also be less than 64 characters long." +msgstr "" #: Base.java:259 msgid "" @@ -1486,6 +1651,12 @@ msgid "" "himself in the third person." msgstr "Visandite kausta pole enam.\nArduino hakkab kasutama vaikimisi kausta ning\nvajadusel tekitab sinna uue visandite kausta." +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1628,6 +1799,13 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "Külasta Arduino.cc" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "" + #: Base.java:2128 msgid "Warning" msgstr "Hoiatus" @@ -1796,10 +1974,6 @@ msgstr "Töökeskkond" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "http://github.com/arduino/Arduino/issues" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1829,17 +2003,6 @@ msgstr "name on null" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "readBytesUntil() baitide puhver on liiga väike {0} ja rohkema baidi jaoks alates märgist {1}" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "removeCode: sisemine viga.. ei leidnud koodi" - #: Editor.java:932 msgid "serialMenu is null" msgstr "serialMenu on null" @@ -1850,6 +2013,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "valitud jadaporti {0} ei eksisteeri või plaat on ühendamata" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "" + #: Preferences.java:391 msgid "upload" msgstr "üleslaadimise ajal" @@ -1873,3 +2041,45 @@ msgstr "{0} | Arduino {1}" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "" diff --git a/arduino-core/src/processing/app/i18n/Resources_et_EE.properties b/arduino-core/src/processing/app/i18n/Resources_et_EE.properties index 6e3be4339..985375e7b 100644 --- a/arduino-core/src/processing/app/i18n/Resources_et_EE.properties +++ b/arduino-core/src/processing/app/i18n/Resources_et_EE.properties @@ -17,6 +17,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(Arduino ei tohi muutmise ajal k\u00e4ia) +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -53,9 +56,23 @@ Add\ File...=Lisa fail... #: Base.java:963 Add\ Library...=Lisa teek... +#: ../../../processing/app/Preferences.java:96 +!Albanian= + #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Faili kooditabeli muutmisel tekkis viga. \u00c4ra proovi\nseda visandit salvestada kuna see v\u00f5ib olemasoleva\n\u00fcle kirjutada. Ava visand uuesti ning proovi uuesti.\n +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Sinu masina platvormip\u00f5hise koodi laadimisel\ntekkis tundmatu viga. @@ -105,12 +122,33 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Oled kindel, et soovid kustutada " #: Sketch.java:587 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Oled kindel, et soovid kustutada selle visandi? +#: ../../../processing/app/Base.java:356 +!Argument\ required\ for\ --board= + +#: ../../../processing/app/Base.java:370 +!Argument\ required\ for\ --curdir= + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +!Argument\ required\ for\ --port= + +#: ../../../processing/app/Base.java:377 +!Argument\ required\ for\ --pref= + +#: ../../../processing/app/Base.java:384 +!Argument\ required\ for\ --preferences-file= + #: ../../../processing/app/Preferences.java:137 !Armenian= #: ../../../processing/app/Preferences.java:138 !Asturian= +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 Auto\ Format=Automaatvormindus @@ -142,6 +180,12 @@ Bad\ error\ line\:\ {0}=Viga real\: {0} #: Editor.java:2136 Bad\ file\ selected=Vigane fail valitud +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +!Basque= + #: ../../../processing/app/Preferences.java:139 !Belarusian= @@ -168,6 +212,9 @@ Browse=Sirvi #: Sketch.java:1392 Sketch.java:1423 Build\ folder\ disappeared\ or\ could\ not\ be\ written=Kompileerimise kaust on haihtunud v\u00f5i pole kirjutatav +#: ../../../processing/app/Sketch.java:1530 +!Build\ options\ changed,\ rebuilding\ all= + #: ../../../processing/app/Preferences.java:80 Bulgarian=Bulgaaria @@ -180,8 +227,13 @@ Burn\ Bootloader=Kirjuta buudilaadur #: Editor.java:2504 Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Buudilaaduri I/O plaadile kirjutamine (see v\u00f5ib kesta m\u00f5ni minut)... -#: ../../../processing/app/Base.java:368 -Can't\ open\ source\ sketch\!=Visandi avamine eba\u00f5nnestus +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 Canadian\ French=Prantsuse (Kanada) @@ -193,6 +245,9 @@ Cancel=Loobu #: Sketch.java:455 Cannot\ Rename=\u00dcmbernimetamine nurjus +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 Carriage\ return=lisa CR (\\r) @@ -226,10 +281,6 @@ Close=Sulge #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=Kommentaari lisamine/eemaldamine -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Kompilaatori viga, saada see kood {0} - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=Visandi kompileerimine... @@ -305,9 +356,8 @@ Could\ not\ re-save\ sketch=Visandi uuesti salvestamine eba\u00f5nnestus #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Ei saa avada vaikimisi seadeid.\nArduino tuleb uuesti paigaldada. -#: Preferences.java:258 -#, java-format -Could\ not\ read\ preferences\ from\ {0}=Ei saa lugeda eelistusi failist {0} +#: ../../../processing/app/Sketch.java:1525 +!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= #: Base.java:2482 #, java-format @@ -330,6 +380,9 @@ Could\ not\ rename\ the\ sketch.\ (2)=Visandi \u00fcmbernimetamine nurjus. (2) #, java-format Could\ not\ replace\ {0}={0} pole v\u00f5imalik asendada +#: ../../../processing/app/Sketch.java:1579 +!Could\ not\ write\ build\ preferences\ file= + #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Visandi arhiveerimine eba\u00f5nnestus @@ -378,12 +431,19 @@ Done\ Saving.=Salvestatud. #: Editor.java:2510 Done\ burning\ bootloader.=Buudilaadur edukalt kirjutatud. +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=Kompileeritud. #: Editor.java:2564 Done\ printing.=Tr\u00fckitud. +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=Laadimine l\u00f5petatud @@ -462,6 +522,9 @@ Error\ while\ burning\ bootloader.=Buudilaaduri kirjutamisel tekkis viga. #: ../../../processing/app/Editor.java:2555 !Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=Koodi laadimise viga {0} @@ -469,10 +532,21 @@ Error\ while\ loading\ code\ {0}=Koodi laadimise viga {0} #: Editor.java:2567 Error\ while\ printing.=Viga tr\u00fckkimisel. +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 !Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 Estonian=Eesti @@ -488,6 +562,10 @@ Export\ canceled,\ changes\ must\ first\ be\ saved.=Eksport katkestatud. Muudatu #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +!Failed\ to\ open\ sketch\:\ "{0}"= + #: Editor.java:491 File=Fail @@ -522,8 +600,9 @@ Fix\ Encoding\ &\ Reload=Paranda kooditabel ning laadi uuesti #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=Teekide paigaldamise juhendi leiab aadressilt http\://arduino.cc/en/Guide/Libraries\n -#: debug/BasicUploader.java:80 -Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =J\u00f5uga alglaadimine kasutades 1200bps pordi avamist-sulgemist +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=Prantsuse @@ -627,8 +706,8 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Teek lisatu #: Preferences.java:106 Lithuaninan=Leedu -#: ../../../processing/app/Sketch.java:1660 -!Low\ memory\ available,\ stability\ problems\ may\ occur= +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 Marathi=Marathi @@ -639,12 +718,24 @@ Message=Teade #: ../../../processing/app/preproc/PdePreprocessor.java:412 !Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Rohkemate eelistuste muutmiseks muuda neid otse failis #: Editor.java:2156 Moving=Liigutamine +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +!Must\ specify\ exactly\ one\ sketch\ file= + +#: ../../../processing/app/Preferences.java:158 +!N'Ko= + #: Sketch.java:282 Name\ for\ new\ file\:=Uue faili nimi\: @@ -672,12 +763,18 @@ Next\ Tab=J\u00e4rgmine kaart #: Preferences.java:78 UpdateCheck.java:108 No=Ei +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Plaat pole valitud. Palun tee oma valik men\u00fc\u00fcs T\u00f6\u00f6riistad > Plaat. #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Automaatvormindus ei vaja muudatusi. +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=Visandisse pole faile lisatud. @@ -687,6 +784,9 @@ No\ launcher\ available=Veebilehitseja puudub #: SerialMonitor.java:112 No\ line\ ending=Reavahetust ei lisa +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=T\u00f5esti oleks aeg natuke v\u00e4rsket \u00f5hku hingata. @@ -694,6 +794,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=T\u00f5esti oleks aeg natuke #, java-format No\ reference\ available\ for\ "{0}"="{0}" kohta juhend puudub +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +!No\ valid\ code\ files\ found= + #: ../../../processing/app/Base.java:309 !No\ valid\ configured\ cores\ found\!\ Exiting...= @@ -720,6 +830,9 @@ OK=Olgu #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=Visandisse on lisatud \u00fcks fail. +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=Ava @@ -747,12 +860,22 @@ Paste=Aseta #: Preferences.java:109 Persian=P\u00e4rsia +#: ../../../processing/app/Preferences.java:161 +!Persian\ (Iran)= + #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Laadi SPI teek men\u00fc\u00fcst Visand > Laadi teek +#: ../../../processing/app/debug/Compiler.java:529 +!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=Palun paigalda JDK 1.5 v\u00f5i hilisem +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 Polish=Poola @@ -874,9 +997,15 @@ Save\ changes\ to\ "{0}"?\ \ =Salvesta muudatused faili "{0}" #: Sketch.java:825 Save\ sketch\ folder\ as...=Salvesta visand uude kausta... +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=Salvestamine... +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=Vali (v\u00f5i loo uus) kaust visandite jaoks... @@ -901,14 +1030,6 @@ Send=Saada #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=Jadapordi monitor -#: Serial.java:174 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Jadaport {0} on juba kasutusel. V\u00e4lju programmist, mis seda kasutab. - -#: Serial.java:121 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=Jadaport {0} on juba kasutusel. Sulge programm, mis seda kasutab. - #: Serial.java:194 #, java-format Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Jadaport {0} puudub. Vali \u00f5ige port men\u00fc\u00fcst T\u00f6\u00f6riistad -> Jadaport @@ -963,6 +1084,9 @@ Sketchbook\ folder\ disappeared=Visandite kaust on haihtunud #: Preferences.java:315 Sketchbook\ location\:=Visandite asukoht\: +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 !Sketches\ (*.ino,\ *.pde)= @@ -997,6 +1121,9 @@ Tamil=Tamili #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.="BYTE" v\u00f5tmes\u00f5na pole enam toetatud. +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Klass Client on n\u00fc\u00fcd EthernetClient. @@ -1033,12 +1160,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Visandi kaust on haihtunud.\nP\u00fc\u00fcan samasse kohta uuesti salvestada,\nkuid k\u00f5ik peale selle koodi on kadunud. -#: Sketch.java:2018 -The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=Visandi nime tuleb muuta. Nimes tohivad olla vaid\nASCII t\u00e4hed ning numbrid (algama peab t\u00e4hega).\nNimi peab olema l\u00fchem kui 64 m\u00e4rki. +#: ../../../processing/app/Sketch.java:2028 +!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Visandite kausta pole enam.\nArduino hakkab kasutama vaikimisi kausta ning\nvajadusel tekitab sinna uue visandite kausta. +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=See fail on juba kopeeritud kohta, kust sa seda\nkopeerida \u00fcritad. Seega ei pea ma midagi tegema. @@ -1142,6 +1272,10 @@ Verify\ code\ after\ upload=Kontrolli koodi peale \u00fcleslaadimist #: Editor.java:1105 Visit\ Arduino.cc=K\u00fclasta Arduino.cc +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= + #: Base.java:2128 Warning=Hoiatus @@ -1240,9 +1374,6 @@ environment=T\u00f6\u00f6keskkond #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1265,13 +1396,6 @@ name\ is\ null=name on null #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() baitide puhver on liiga v\u00e4ike {0} ja rohkema baidi jaoks alates m\u00e4rgist {1} - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: sisemine viga.. ei leidnud koodi - #: Editor.java:932 serialMenu\ is\ null=serialMenu on null @@ -1279,6 +1403,10 @@ serialMenu\ is\ null=serialMenu on null #, java-format the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=valitud jadaporti {0} ei eksisteeri v\u00f5i plaat on \u00fchendamata +#: ../../../processing/app/Base.java:389 +#, java-format +!unknown\ option\:\ {0}= + #: Preferences.java:391 upload=\u00fcleslaadimise ajal @@ -1297,3 +1425,35 @@ upload=\u00fcleslaadimise ajal #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= + +#: ../../../processing/app/Base.java:476 +#, java-format +!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= + +#: ../../../processing/app/Base.java:509 +#, java-format +!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= + +#: ../../../processing/app/Base.java:507 +#, java-format +!{0}\:\ Invalid\ option\ for\ board\ "{1}"= + +#: ../../../processing/app/Base.java:502 +#, java-format +!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= + +#: ../../../processing/app/Base.java:486 +#, java-format +!{0}\:\ Unknown\ architecture= + +#: ../../../processing/app/Base.java:491 +#, java-format +!{0}\:\ Unknown\ board= + +#: ../../../processing/app/Base.java:481 +#, java-format +!{0}\:\ Unknown\ package= diff --git a/arduino-core/src/processing/app/i18n/Resources_fa.po b/arduino-core/src/processing/app/i18n/Resources_fa.po index 98b711a9c..71241b85d 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fa.po +++ b/arduino-core/src/processing/app/i18n/Resources_fa.po @@ -33,6 +33,12 @@ msgstr "\"ماوس\" فقط دربردهای آردوینو لئوناردو پ msgid "(edit only when Arduino is not running)" msgstr "(ویرایش فقط به هنگامی که آردئینو درحال اجرا نیست)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -91,6 +97,10 @@ msgstr "افزودن پرونده..." msgid "Add Library..." msgstr "و کتابخانه ..." +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "آلبانیایی" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -98,6 +108,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "خطایی به عنوان اصلاح کدگذاری پرونده رخ‌داد.\nسعی نکنید این طرح را بر روی نسخهٔ قبلی ذخیرهٔ کنید.\nاز بازکردن را بازکردن مجدد طرح استفاده کنید و دوباره سعی نمایید.\n" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -176,6 +200,30 @@ msgstr "آیا شما مطمئن هستید که می‌خواهید \"{0}\" ر msgid "Are you sure you want to delete this sketch?" msgstr "آیا شما مطمئن هستید که می‌خواهید این طرح را پاک کنید؟" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "آرگومان مورد نیاز است برای -- برد" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "آرگومان مورد نیاز است برای -- curdir" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "آرگومان مورد نیاز است برای -- پورت" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "آرگومان مورد نیاز است برای -- pref" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "آرگومان مورد نیاز است برای -- پرونده تنظیمات" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "ارمنی" @@ -184,6 +232,10 @@ msgstr "ارمنی" msgid "Asturian" msgstr "اتریشی" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "قالب‌بندی خودکار" @@ -225,6 +277,14 @@ msgstr "خطای نامناسب خط: {0}" msgid "Bad file selected" msgstr "پرونده انتخاب‌شدهٔ نامناسب" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "باسکی" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "بلاروسی" @@ -261,6 +321,10 @@ msgstr "یافتن" msgid "Build folder disappeared or could not be written" msgstr "ساختن پوشه مخفی شده‌است یا نمی‌توان نوشته شود" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "گزینه های ساخت تغییر یافت, در حال بازسازی همه" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "بلغاری" @@ -277,8 +341,14 @@ msgstr "سوزاندن بوت‌لودر" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "سوزاندن bootleader به برد I/O (این ممکن است یک دقیقه به طول بیانجامد)..." -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" msgstr "" #: ../../../processing/app/Preferences.java:92 @@ -294,6 +364,10 @@ msgstr "فسخ‌کردن" msgid "Cannot Rename" msgstr "نمی‌توان نام‌گذاری مجدد کرد" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "بازگشت Carriage" @@ -338,11 +412,6 @@ msgstr "یستن" msgid "Comment/Uncomment" msgstr "توضیح‌کردن/از توضیح در آوردن" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "خطای کامپایلر، لطفاً این کد را به {0} ارائه دهید" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "کامپایل‌کردن طرح..." @@ -450,10 +519,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "نمی‌توان تنظیمات پیش‌فرض را خواند.\nشما می‌بایست که آردئینو را مجدداً نصب کنید." -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "نمی‌توان ترجیحات را از {0} خواند" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "" #: Base.java:2482 #, java-format @@ -482,6 +550,10 @@ msgstr "نمی‌توان طرح را تغییر نام داد. (۲)" msgid "Could not replace {0}" msgstr "نمی‌توان {0} را جایگزین نمود" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "نمی توان پرونده تنظیمات ساخت را نوشت" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "نمی‌توان طرح را بایگانی نمود" @@ -551,6 +623,11 @@ msgstr "ذخیره‌سازی انجام‌شد." msgid "Done burning bootloader." msgstr "سوزاندن بوت‌لودر انجام گردید." +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "انجام کامپایل کردن." @@ -559,6 +636,10 @@ msgstr "انجام کامپایل کردن." msgid "Done printing." msgstr "چاپ‌کردن به انجام رسید." +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "بارگذاری انجام‌شد." @@ -662,6 +743,10 @@ msgstr "خطای به هنگام سوزاندن بوت‌لودر." msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -671,11 +756,25 @@ msgstr "خطا به هنگام بارگیری کد {0}" msgid "Error while printing." msgstr "خطا هنگام چاپ‌کردن." +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "خطا حین بارگذاری: پارامتر پیکربندی '{0}' از دست رفت." +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "استونیایی" @@ -696,6 +795,11 @@ msgstr "خارج‌سازی فسخ‌گردید، تغییرات ابتدا می msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "ناموفق بود باز شدن طرح: \"{0}\"" + #: Editor.java:491 msgid "File" msgstr "پرونده" @@ -743,8 +847,9 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "برای اطلاعات بیشتر درباره نصب کتابخانه ها مراجعه کنید به : see: http://arduino.cc/en/Guide/Libraries\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" msgstr "" #: Preferences.java:95 @@ -893,9 +998,9 @@ msgstr "این کتابخانه به کتابخانه های شما اضافه msgid "Lithuaninan" msgstr "لیتوانیایی" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" -msgstr "حافظه اندکی در دسترس است. ممکن است مشکل عدم پایداری بروز نماید" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." +msgstr "" #: Preferences.java:107 msgid "Marathi" @@ -909,6 +1014,10 @@ msgstr "پیغام" msgid "Missing the */ from the end of a /* comment */" msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "ترجیحات بیشتر می‌توانند مستقیماً درون یک پروندهٔ ویرایش گردند" @@ -917,6 +1026,18 @@ msgstr "ترجیحات بیشتر می‌توانند مستقیماً درون msgid "Moving" msgstr "انتقال" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "N'Ko" + #: Sketch.java:282 msgid "Name for new file:" msgstr "نام برای پروندهٔ جدید:" @@ -953,6 +1074,10 @@ msgstr "تب بعد" msgid "No" msgstr "خیر" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "بردی انتخاب شده‌است؛ لطفاً یک برد از منوی ابزارها > برد انتخاب کنید." @@ -961,6 +1086,10 @@ msgstr "بردی انتخاب شده‌است؛ لطفاً یک برد از من msgid "No changes necessary for Auto Format." msgstr "تغییری برای قالب‌بندی خودکار نیاز نیست." +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "پرونده‌ای به طرح افزوده نشد." @@ -973,6 +1102,10 @@ msgstr "پرتاب‌کننده‌ای موجود نیست" msgid "No line ending" msgstr "بدون پایان خط" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "نه جداً، وقت مقداری هوای تازه‌است." @@ -982,6 +1115,19 @@ msgstr "نه جداً، وقت مقداری هوای تازه‌است." msgid "No reference available for \"{0}\"" msgstr "مرجعی برای \"{0}\" موجود نیست" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "پرونده حاوی کد معتبری یافت نشد" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "" @@ -1018,6 +1164,10 @@ msgstr "تایید" msgid "One file added to the sketch." msgstr "یک پرونده به طرح افزوده شد." +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "بازکردن" @@ -1054,14 +1204,27 @@ msgstr "الصاق" msgid "Persian" msgstr "فارسی" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "فارسی (ایران)" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "لطفاً کتابخانه SPI را از منوی طرح > درون‌سازی کتابخانه درون‌سازی کنید." +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "" + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "لطفاً JDK ۱.۵ یا بعدتر از آن را نصب کنید" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "لهستانی" @@ -1224,10 +1387,18 @@ msgstr "ذخیرهٔ تغییرات در \"{0}\"?" msgid "Save sketch folder as..." msgstr "ذخیرهٔ پوشه طرح به عنوان..." +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "ذخیره‌سازی...." +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "انتخاب (یا درست‌کردن جدید) پوشه برای طرح‌ها...." @@ -1260,20 +1431,6 @@ msgstr "ارسال" msgid "Serial Monitor" msgstr "نمایشگر سریال" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "درگاه سریال ''{0}'' درحال حاضر در حال استفاده‌است. سعی‌کنید هر برنامه‌ای که از آن استفاده می‌کنید خارج کنید." - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "" - #: Serial.java:194 #, java-format msgid "" @@ -1353,6 +1510,10 @@ msgstr "پوشهٔ کتاب طرح‌ها ناپدید شد" msgid "Sketchbook location:" msgstr "موقعیت کتاب طرح:" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "طرح ها (*.ino, *.pde)" @@ -1403,6 +1564,10 @@ msgstr "تامیل" msgid "The 'BYTE' keyword is no longer supported." msgstr "کلیدواژهٔ 'BYTE' دیگر پشتیبانی نمی‌گردد." +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "کلاس Client به EthernetClient تغییر نام پیدا کرده‌است." @@ -1470,12 +1635,12 @@ msgid "" "but anything besides the code will be lost." msgstr "پوشهٔ طرح ناپدید شده‌است.\n تلاش خواهید که آن را در محل مشابه ذخیره نمود\nولی به‌علاوهٔ آن کد مفقود خواهد شد." -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." -msgstr "نام طرح می‌بایست که تغییریابد. نام‌های طرح فقط می‌بایست شامل نویسه‌های\nASCII و اعداد باشند (ولی با اعداد آغاز نگردند).\nاین‌ها می‌بایست کمتر از ۶۴ نویسه طول داشته باشند." +"They should also be less than 64 characters long." +msgstr "" #: Base.java:259 msgid "" @@ -1486,6 +1651,12 @@ msgid "" "himself in the third person." msgstr "پوشهٔ کتاب طرح دیگر موجود نیست.\nآردئنو محل کتاب طرح پیش‌فرض را انتخاب خواهد کرد\nو پوشهٔ کتاب طرحی درست خواهد کرد اگر مورد نیاز\nباشد. آردئینو صحبت کردن در رابطه با خود را به عنوان\nسوم شخص را پایان می‌دهد." +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1628,6 +1799,13 @@ msgstr "ویتنامی" msgid "Visit Arduino.cc" msgstr "بازدید Arduino.cc" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "" + #: Base.java:2128 msgid "Warning" msgstr "اخطار" @@ -1796,10 +1974,6 @@ msgstr "محیط" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "http://github.com/arduino/Arduino/issues" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1829,17 +2003,6 @@ msgstr "name تهی است" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "بافر بایت readBytesUntil() برای بیش از {0} بایت و شامل نویسهٔ {1} بسیار کوچک است" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "removeCode: خطای درونی.. نمی‌توان کد را یافت" - #: Editor.java:932 msgid "serialMenu is null" msgstr "serialMenu تهی است" @@ -1850,6 +2013,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "درگاه سریال انتخاب شده {0} موجود نیست یا برد شما متصل نشده‌است" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "" + #: Preferences.java:391 msgid "upload" msgstr "بارگذاری" @@ -1873,3 +2041,45 @@ msgstr "{0} | آردئینو {1}" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "{0}: معماری ناشناخته" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "{0} : برد ناشناخته" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "" diff --git a/arduino-core/src/processing/app/i18n/Resources_fa.properties b/arduino-core/src/processing/app/i18n/Resources_fa.properties index ec25979d2..a2ef88515 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fa.properties +++ b/arduino-core/src/processing/app/i18n/Resources_fa.properties @@ -17,6 +17,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0641\u0642\u0637 \u0628\u0647 \u0647\u0646\u06af\u0627\u0645\u06cc \u06a9\u0647 \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u062f\u0631\u062d\u0627\u0644 \u0627\u062c\u0631\u0627 \u0646\u06cc\u0633\u062a) +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -53,9 +56,23 @@ Add\ File...=\u0627\u0641\u0632\u0648\u062f\u0646 \u067e\u0631\u0648\u0646\u062f #: Base.java:963 Add\ Library...=\u0648 \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647 ... +#: ../../../processing/app/Preferences.java:96 +Albanian=\u0622\u0644\u0628\u0627\u0646\u06cc\u0627\u06cc\u06cc + #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=\u062e\u0637\u0627\u06cc\u06cc \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u0627\u0635\u0644\u0627\u062d \u06a9\u062f\u06af\u0630\u0627\u0631\u06cc \u067e\u0631\u0648\u0646\u062f\u0647 \u0631\u062e\u200c\u062f\u0627\u062f.\n\u0633\u0639\u06cc \u0646\u06a9\u0646\u06cc\u062f \u0627\u06cc\u0646 \u0637\u0631\u062d \u0631\u0627 \u0628\u0631 \u0631\u0648\u06cc \u0646\u0633\u062e\u0647\u0654 \u0642\u0628\u0644\u06cc \u0630\u062e\u06cc\u0631\u0647\u0654 \u06a9\u0646\u06cc\u062f.\n\u0627\u0632 \u0628\u0627\u0632\u06a9\u0631\u062f\u0646 \u0631\u0627 \u0628\u0627\u0632\u06a9\u0631\u062f\u0646 \u0645\u062c\u062f\u062f \u0637\u0631\u062d \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0646\u06cc\u062f \u0648 \u062f\u0648\u0628\u0627\u0631\u0647 \u0633\u0639\u06cc \u0646\u0645\u0627\u06cc\u06cc\u062f.\n +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=\u0627\u06cc\u0631\u0627\u062f \u0646\u0627\u0634\u0646\u0627\u062e\u062a\u0647\u200c\u0627\u06cc \u0647\u0646\u06af\u0627\u0645 \u0633\u0639\u06cc \u062f\u0631 \u0628\u0627\u0631\u06af\u06cc\u0631\u06cc \u0631\u062e \u062f\u0627\u062f\n\u06a9\u062f \u062e\u0627\u0635 \u0633\u06a9\u0648 \u0628\u0631\u0627\u06cc \u0645\u0627\u0634\u06cc\u0646 \u0634\u0645\u0627. @@ -105,12 +122,33 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u0622\u06cc\u0627 \u0634\u0645\u0 #: Sketch.java:587 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u0622\u06cc\u0627 \u0634\u0645\u0627 \u0645\u0637\u0645\u0626\u0646 \u0647\u0633\u062a\u06cc\u062f \u06a9\u0647 \u0645\u06cc\u200c\u062e\u0648\u0627\u0647\u06cc\u062f \u0627\u06cc\u0646 \u0637\u0631\u062d \u0631\u0627 \u067e\u0627\u06a9 \u06a9\u0646\u06cc\u062f\u061f +#: ../../../processing/app/Base.java:356 +Argument\ required\ for\ --board=\u0622\u0631\u06af\u0648\u0645\u0627\u0646 \u0645\u0648\u0631\u062f \u0646\u06cc\u0627\u0632 \u0627\u0633\u062a \u0628\u0631\u0627\u06cc -- \u0628\u0631\u062f + +#: ../../../processing/app/Base.java:370 +Argument\ required\ for\ --curdir=\u0622\u0631\u06af\u0648\u0645\u0627\u0646 \u0645\u0648\u0631\u062f \u0646\u06cc\u0627\u0632 \u0627\u0633\u062a \u0628\u0631\u0627\u06cc -- curdir + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +Argument\ required\ for\ --port=\u0622\u0631\u06af\u0648\u0645\u0627\u0646 \u0645\u0648\u0631\u062f \u0646\u06cc\u0627\u0632 \u0627\u0633\u062a \u0628\u0631\u0627\u06cc -- \u067e\u0648\u0631\u062a + +#: ../../../processing/app/Base.java:377 +Argument\ required\ for\ --pref=\u0622\u0631\u06af\u0648\u0645\u0627\u0646 \u0645\u0648\u0631\u062f \u0646\u06cc\u0627\u0632 \u0627\u0633\u062a \u0628\u0631\u0627\u06cc -- pref + +#: ../../../processing/app/Base.java:384 +Argument\ required\ for\ --preferences-file=\u0622\u0631\u06af\u0648\u0645\u0627\u0646 \u0645\u0648\u0631\u062f \u0646\u06cc\u0627\u0632 \u0627\u0633\u062a \u0628\u0631\u0627\u06cc -- \u067e\u0631\u0648\u0646\u062f\u0647 \u062a\u0646\u0638\u06cc\u0645\u0627\u062a + #: ../../../processing/app/Preferences.java:137 Armenian=\u0627\u0631\u0645\u0646\u06cc #: ../../../processing/app/Preferences.java:138 Asturian=\u0627\u062a\u0631\u06cc\u0634\u06cc +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 Auto\ Format=\u0642\u0627\u0644\u0628\u200c\u0628\u0646\u062f\u06cc \u062e\u0648\u062f\u06a9\u0627\u0631 @@ -142,6 +180,12 @@ Bad\ error\ line\:\ {0}=\u062e\u0637\u0627\u06cc \u0646\u0627\u0645\u0646\u0627\ #: Editor.java:2136 Bad\ file\ selected=\u067e\u0631\u0648\u0646\u062f\u0647 \u0627\u0646\u062a\u062e\u0627\u0628\u200c\u0634\u062f\u0647\u0654 \u0646\u0627\u0645\u0646\u0627\u0633\u0628 +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +Basque=\u0628\u0627\u0633\u06a9\u06cc + #: ../../../processing/app/Preferences.java:139 Belarusian=\u0628\u0644\u0627\u0631\u0648\u0633\u06cc @@ -168,6 +212,9 @@ Browse=\u06cc\u0627\u0641\u062a\u0646 #: Sketch.java:1392 Sketch.java:1423 Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u0633\u0627\u062e\u062a\u0646 \u067e\u0648\u0634\u0647 \u0645\u062e\u0641\u06cc \u0634\u062f\u0647\u200c\u0627\u0633\u062a \u06cc\u0627 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u0646\u0648\u0634\u062a\u0647 \u0634\u0648\u062f +#: ../../../processing/app/Sketch.java:1530 +Build\ options\ changed,\ rebuilding\ all=\u06af\u0632\u06cc\u0646\u0647 \u0647\u0627\u06cc \u0633\u0627\u062e\u062a \u062a\u063a\u06cc\u06cc\u0631 \u06cc\u0627\u0641\u062a, \u062f\u0631 \u062d\u0627\u0644 \u0628\u0627\u0632\u0633\u0627\u0632\u06cc \u0647\u0645\u0647 + #: ../../../processing/app/Preferences.java:80 Bulgarian=\u0628\u0644\u063a\u0627\u0631\u06cc @@ -180,8 +227,13 @@ Burn\ Bootloader=\u0633\u0648\u0632\u0627\u0646\u062f\u0646 \u0628\u0648\u062a\u #: Editor.java:2504 Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u0633\u0648\u0632\u0627\u0646\u062f\u0646 bootleader \u0628\u0647 \u0628\u0631\u062f I/O (\u0627\u06cc\u0646 \u0645\u0645\u06a9\u0646 \u0627\u0633\u062a \u06cc\u06a9 \u062f\u0642\u06cc\u0642\u0647 \u0628\u0647 \u0637\u0648\u0644 \u0628\u06cc\u0627\u0646\u062c\u0627\u0645\u062f)... -#: ../../../processing/app/Base.java:368 -!Can't\ open\ source\ sketch\!= +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 Canadian\ French=\u0641\u0631\u0627\u0646\u0633\u0648\u06cc \u06a9\u0627\u0646\u0627\u062f\u0627\u06cc\u06cc @@ -193,6 +245,9 @@ Cancel=\u0641\u0633\u062e\u200c\u06a9\u0631\u062f\u0646 #: Sketch.java:455 Cannot\ Rename=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u0646\u0627\u0645\u200c\u06af\u0630\u0627\u0631\u06cc \u0645\u062c\u062f\u062f \u06a9\u0631\u062f +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 Carriage\ return=\u0628\u0627\u0632\u06af\u0634\u062a Carriage @@ -226,10 +281,6 @@ Close=\u06cc\u0633\u062a\u0646 #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=\u062a\u0648\u0636\u06cc\u062d\u200c\u06a9\u0631\u062f\u0646/\u0627\u0632 \u062a\u0648\u0636\u06cc\u062d \u062f\u0631 \u0622\u0648\u0631\u062f\u0646 -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=\u062e\u0637\u0627\u06cc \u06a9\u0627\u0645\u067e\u0627\u06cc\u0644\u0631\u060c \u0644\u0637\u0641\u0627\u064b \u0627\u06cc\u0646 \u06a9\u062f \u0631\u0627 \u0628\u0647 {0} \u0627\u0631\u0627\u0626\u0647 \u062f\u0647\u06cc\u062f - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=\u06a9\u0627\u0645\u067e\u0627\u06cc\u0644\u200c\u06a9\u0631\u062f\u0646 \u0637\u0631\u062d... @@ -305,9 +356,8 @@ Could\ not\ re-save\ sketch=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u06 #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u067e\u06cc\u0634\u200c\u0641\u0631\u0636 \u0631\u0627 \u062e\u0648\u0627\u0646\u062f.\n\u0634\u0645\u0627 \u0645\u06cc\u200c\u0628\u0627\u06cc\u0633\u062a \u06a9\u0647 \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u0631\u0627 \u0645\u062c\u062f\u062f\u0627\u064b \u0646\u0635\u0628 \u06a9\u0646\u06cc\u062f. -#: Preferences.java:258 -#, java-format -Could\ not\ read\ preferences\ from\ {0}=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u062a\u0631\u062c\u06cc\u062d\u0627\u062a \u0631\u0627 \u0627\u0632 {0} \u062e\u0648\u0627\u0646\u062f +#: ../../../processing/app/Sketch.java:1525 +!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= #: Base.java:2482 #, java-format @@ -330,6 +380,9 @@ Could\ not\ rename\ the\ sketch.\ (2)=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627 #, java-format Could\ not\ replace\ {0}=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 {0} \u0631\u0627 \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u0646\u0645\u0648\u062f +#: ../../../processing/app/Sketch.java:1579 +Could\ not\ write\ build\ preferences\ file=\u0646\u0645\u06cc \u062a\u0648\u0627\u0646 \u067e\u0631\u0648\u0646\u062f\u0647 \u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0633\u0627\u062e\u062a \u0631\u0627 \u0646\u0648\u0634\u062a + #: tools/Archiver.java:74 Couldn't\ archive\ sketch=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u0637\u0631\u062d \u0631\u0627 \u0628\u0627\u06cc\u06af\u0627\u0646\u06cc \u0646\u0645\u0648\u062f @@ -378,12 +431,19 @@ Done\ Saving.=\u0630\u062e\u06cc\u0631\u0647\u200c\u0633\u0627\u0632\u06cc \u062 #: Editor.java:2510 Done\ burning\ bootloader.=\u0633\u0648\u0632\u0627\u0646\u062f\u0646 \u0628\u0648\u062a\u200c\u0644\u0648\u062f\u0631 \u0627\u0646\u062c\u0627\u0645 \u06af\u0631\u062f\u06cc\u062f. +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=\u0627\u0646\u062c\u0627\u0645 \u06a9\u0627\u0645\u067e\u0627\u06cc\u0644 \u06a9\u0631\u062f\u0646. #: Editor.java:2564 Done\ printing.=\u0686\u0627\u067e\u200c\u06a9\u0631\u062f\u0646 \u0628\u0647 \u0627\u0646\u062c\u0627\u0645 \u0631\u0633\u06cc\u062f. +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0627\u0646\u062c\u0627\u0645\u200c\u0634\u062f. @@ -462,6 +522,9 @@ Error\ while\ burning\ bootloader.=\u062e\u0637\u0627\u06cc \u0628\u0647 \u0647\ #: ../../../processing/app/Editor.java:2555 !Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=\u062e\u0637\u0627 \u0628\u0647 \u0647\u0646\u06af\u0627\u0645 \u0628\u0627\u0631\u06af\u06cc\u0631\u06cc \u06a9\u062f {0} @@ -469,10 +532,21 @@ Error\ while\ loading\ code\ {0}=\u062e\u0637\u0627 \u0628\u0647 \u0647\u0646\u0 #: Editor.java:2567 Error\ while\ printing.=\u062e\u0637\u0627 \u0647\u0646\u06af\u0627\u0645 \u0686\u0627\u067e\u200c\u06a9\u0631\u062f\u0646. +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=\u062e\u0637\u0627 \u062d\u06cc\u0646 \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc\: \u067e\u0627\u0631\u0627\u0645\u062a\u0631 \u067e\u06cc\u06a9\u0631\u0628\u0646\u062f\u06cc '{0}' \u0627\u0632 \u062f\u0633\u062a \u0631\u0641\u062a. +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 Estonian=\u0627\u0633\u062a\u0648\u0646\u06cc\u0627\u06cc\u06cc @@ -488,6 +562,10 @@ Export\ canceled,\ changes\ must\ first\ be\ saved.=\u062e\u0627\u0631\u062c\u20 #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +Failed\ to\ open\ sketch\:\ "{0}"=\u0646\u0627\u0645\u0648\u0641\u0642 \u0628\u0648\u062f \u0628\u0627\u0632 \u0634\u062f\u0646 \u0637\u0631\u062d\: "{0}" + #: Editor.java:491 File=\u067e\u0631\u0648\u0646\u062f\u0647 @@ -522,8 +600,9 @@ Fix\ Encoding\ &\ Reload=\u062e\u0637\u0627\u0632\u062f\u0627\u06cc\u06cc \u06a9 #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=\u0628\u0631\u0627\u06cc \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u0628\u06cc\u0634\u062a\u0631 \u062f\u0631\u0628\u0627\u0631\u0647 \u0646\u0635\u0628 \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647 \u0647\u0627 \u0645\u0631\u0627\u062c\u0639\u0647 \u06a9\u0646\u06cc\u062f \u0628\u0647 \: see\: http\://arduino.cc/en/Guide/Libraries\n -#: debug/BasicUploader.java:80 -!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ = +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=\u0641\u0631\u0627\u0646\u0633\u0648\u06cc @@ -627,8 +706,8 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=\u0627\u06c #: Preferences.java:106 Lithuaninan=\u0644\u06cc\u062a\u0648\u0627\u0646\u06cc\u0627\u06cc\u06cc -#: ../../../processing/app/Sketch.java:1660 -Low\ memory\ available,\ stability\ problems\ may\ occur=\u062d\u0627\u0641\u0638\u0647 \u0627\u0646\u062f\u06a9\u06cc \u062f\u0631 \u062f\u0633\u062a\u0631\u0633 \u0627\u0633\u062a. \u0645\u0645\u06a9\u0646 \u0627\u0633\u062a \u0645\u0634\u06a9\u0644 \u0639\u062f\u0645 \u067e\u0627\u06cc\u062f\u0627\u0631\u06cc \u0628\u0631\u0648\u0632 \u0646\u0645\u0627\u06cc\u062f +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 Marathi=\u0645\u0631\u0627\u062a\u06cc @@ -639,12 +718,24 @@ Message=\u067e\u06cc\u063a\u0627\u0645 #: ../../../processing/app/preproc/PdePreprocessor.java:412 !Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\u062a\u0631\u062c\u06cc\u062d\u0627\u062a \u0628\u06cc\u0634\u062a\u0631 \u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u0646\u062f \u0645\u0633\u062a\u0642\u06cc\u0645\u0627\u064b \u062f\u0631\u0648\u0646 \u06cc\u06a9 \u067e\u0631\u0648\u0646\u062f\u0647\u0654 \u0648\u06cc\u0631\u0627\u06cc\u0634 \u06af\u0631\u062f\u0646\u062f #: Editor.java:2156 Moving=\u0627\u0646\u062a\u0642\u0627\u0644 +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +!Must\ specify\ exactly\ one\ sketch\ file= + +#: ../../../processing/app/Preferences.java:158 +N'Ko=N'Ko + #: Sketch.java:282 Name\ for\ new\ file\:=\u0646\u0627\u0645 \u0628\u0631\u0627\u06cc \u067e\u0631\u0648\u0646\u062f\u0647\u0654 \u062c\u062f\u06cc\u062f\: @@ -672,12 +763,18 @@ Next\ Tab=\u062a\u0628 \u0628\u0639\u062f #: Preferences.java:78 UpdateCheck.java:108 No=\u062e\u06cc\u0631 +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u0628\u0631\u062f\u06cc \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f\u0647\u200c\u0627\u0633\u062a\u061b \u0644\u0637\u0641\u0627\u064b \u06cc\u06a9 \u0628\u0631\u062f \u0627\u0632 \u0645\u0646\u0648\u06cc \u0627\u0628\u0632\u0627\u0631\u0647\u0627 > \u0628\u0631\u062f \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f. #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=\u062a\u063a\u06cc\u06cc\u0631\u06cc \u0628\u0631\u0627\u06cc \u0642\u0627\u0644\u0628\u200c\u0628\u0646\u062f\u06cc \u062e\u0648\u062f\u06a9\u0627\u0631 \u0646\u06cc\u0627\u0632 \u0646\u06cc\u0633\u062a. +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=\u067e\u0631\u0648\u0646\u062f\u0647\u200c\u0627\u06cc \u0628\u0647 \u0637\u0631\u062d \u0627\u0641\u0632\u0648\u062f\u0647 \u0646\u0634\u062f. @@ -687,6 +784,9 @@ No\ launcher\ available=\u067e\u0631\u062a\u0627\u0628\u200c\u06a9\u0646\u0646\u #: SerialMonitor.java:112 No\ line\ ending=\u0628\u062f\u0648\u0646 \u067e\u0627\u06cc\u0627\u0646 \u062e\u0637 +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u0646\u0647 \u062c\u062f\u0627\u064b\u060c \u0648\u0642\u062a \u0645\u0642\u062f\u0627\u0631\u06cc \u0647\u0648\u0627\u06cc \u062a\u0627\u0632\u0647\u200c\u0627\u0633\u062a. @@ -694,6 +794,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u0646\u0647 \u062c\u062f\u0 #, java-format No\ reference\ available\ for\ "{0}"=\u0645\u0631\u062c\u0639\u06cc \u0628\u0631\u0627\u06cc "{0}" \u0645\u0648\u062c\u0648\u062f \u0646\u06cc\u0633\u062a +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +No\ valid\ code\ files\ found=\u067e\u0631\u0648\u0646\u062f\u0647 \u062d\u0627\u0648\u06cc \u06a9\u062f \u0645\u0639\u062a\u0628\u0631\u06cc \u06cc\u0627\u0641\u062a \u0646\u0634\u062f + #: ../../../processing/app/Base.java:309 !No\ valid\ configured\ cores\ found\!\ Exiting...= @@ -720,6 +830,9 @@ OK=\u062a\u0627\u06cc\u06cc\u062f #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=\u06cc\u06a9 \u067e\u0631\u0648\u0646\u062f\u0647 \u0628\u0647 \u0637\u0631\u062d \u0627\u0641\u0632\u0648\u062f\u0647 \u0634\u062f. +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=\u0628\u0627\u0632\u06a9\u0631\u062f\u0646 @@ -747,12 +860,22 @@ Paste=\u0627\u0644\u0635\u0627\u0642 #: Preferences.java:109 Persian=\u0641\u0627\u0631\u0633\u06cc +#: ../../../processing/app/Preferences.java:161 +Persian\ (Iran)=\u0641\u0627\u0631\u0633\u06cc (\u0627\u06cc\u0631\u0627\u0646) + #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=\u0644\u0637\u0641\u0627\u064b \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647 SPI \u0631\u0627 \u0627\u0632 \u0645\u0646\u0648\u06cc \u0637\u0631\u062d > \u062f\u0631\u0648\u0646\u200c\u0633\u0627\u0632\u06cc \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647 \u062f\u0631\u0648\u0646\u200c\u0633\u0627\u0632\u06cc \u06a9\u0646\u06cc\u062f. +#: ../../../processing/app/debug/Compiler.java:529 +!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=\u0644\u0637\u0641\u0627\u064b JDK \u06f1.\u06f5 \u06cc\u0627 \u0628\u0639\u062f\u062a\u0631 \u0627\u0632 \u0622\u0646 \u0631\u0627 \u0646\u0635\u0628 \u06a9\u0646\u06cc\u062f +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 Polish=\u0644\u0647\u0633\u062a\u0627\u0646\u06cc @@ -874,9 +997,15 @@ Save\ changes\ to\ "{0}"?\ \ =\u0630\u062e\u06cc\u0631\u0647\u0654 \u062a\u063a\ #: Sketch.java:825 Save\ sketch\ folder\ as...=\u0630\u062e\u06cc\u0631\u0647\u0654 \u067e\u0648\u0634\u0647 \u0637\u0631\u062d \u0628\u0647 \u0639\u0646\u0648\u0627\u0646... +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=\u0630\u062e\u06cc\u0631\u0647\u200c\u0633\u0627\u0632\u06cc.... +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=\u0627\u0646\u062a\u062e\u0627\u0628 (\u06cc\u0627 \u062f\u0631\u0633\u062a\u200c\u06a9\u0631\u062f\u0646 \u062c\u062f\u06cc\u062f) \u067e\u0648\u0634\u0647 \u0628\u0631\u0627\u06cc \u0637\u0631\u062d\u200c\u0647\u0627.... @@ -901,14 +1030,6 @@ Send=\u0627\u0631\u0633\u0627\u0644 #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=\u0646\u0645\u0627\u06cc\u0634\u06af\u0631 \u0633\u0631\u06cc\u0627\u0644 -#: Serial.java:174 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=\u062f\u0631\u06af\u0627\u0647 \u0633\u0631\u06cc\u0627\u0644 ''{0}'' \u062f\u0631\u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u062f\u0631 \u062d\u0627\u0644 \u0627\u0633\u062a\u0641\u0627\u062f\u0647\u200c\u0627\u0633\u062a. \u0633\u0639\u06cc\u200c\u06a9\u0646\u06cc\u062f \u0647\u0631 \u0628\u0631\u0646\u0627\u0645\u0647\u200c\u0627\u06cc \u06a9\u0647 \u0627\u0632 \u0622\u0646 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0645\u06cc\u200c\u06a9\u0646\u06cc\u062f \u062e\u0627\u0631\u062c \u06a9\u0646\u06cc\u062f. - -#: Serial.java:121 -#, java-format -!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.= - #: Serial.java:194 #, java-format Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=\u062f\u0631\u06af\u0627\u0647 \u0633\u0631\u06cc\u0627\u0644 ''{0}'' \u06cc\u0627\u0641\u062a \u0646\u0634\u062f. \u0622\u06cc\u0627 \u0634\u0645\u0627 \u062f\u0631\u0633\u062a \u0622\u0646 \u0631\u0627 \u0627\u0632 \u0645\u0646\u0648\u06cc \u0627\u0628\u0632\u0627\u0631\u0647\u0627 > \u062f\u0631\u06af\u0627\u0647 \u0633\u0631\u06cc\u0627\u0644 \u0627\u0646\u062a\u062e\u0627\u0628 \u0646\u0645\u0648\u062f\u0647\u200c\u0627\u06cc\u062f\u061f @@ -963,6 +1084,9 @@ Sketchbook\ folder\ disappeared=\u067e\u0648\u0634\u0647\u0654 \u06a9\u062a\u062 #: Preferences.java:315 Sketchbook\ location\:=\u0645\u0648\u0642\u0639\u06cc\u062a \u06a9\u062a\u0627\u0628 \u0637\u0631\u062d\: +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 Sketches\ (*.ino,\ *.pde)=\u0637\u0631\u062d \u0647\u0627 (*.ino, *.pde) @@ -997,6 +1121,9 @@ Tamil=\u062a\u0627\u0645\u06cc\u0644 #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=\u06a9\u0644\u06cc\u062f\u0648\u0627\u0698\u0647\u0654 'BYTE' \u062f\u06cc\u06af\u0631 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0646\u0645\u06cc\u200c\u06af\u0631\u062f\u062f. +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=\u06a9\u0644\u0627\u0633 Client \u0628\u0647 EthernetClient \u062a\u063a\u06cc\u06cc\u0631 \u0646\u0627\u0645 \u067e\u06cc\u062f\u0627 \u06a9\u0631\u062f\u0647\u200c\u0627\u0633\u062a. @@ -1033,12 +1160,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=\u067e\u0648\u0634\u0647\u0654 \u0637\u0631\u062d \u0646\u0627\u067e\u062f\u06cc\u062f \u0634\u062f\u0647\u200c\u0627\u0633\u062a.\n \u062a\u0644\u0627\u0634 \u062e\u0648\u0627\u0647\u06cc\u062f \u06a9\u0647 \u0622\u0646 \u0631\u0627 \u062f\u0631 \u0645\u062d\u0644 \u0645\u0634\u0627\u0628\u0647 \u0630\u062e\u06cc\u0631\u0647 \u0646\u0645\u0648\u062f\n\u0648\u0644\u06cc \u0628\u0647\u200c\u0639\u0644\u0627\u0648\u0647\u0654 \u0622\u0646 \u06a9\u062f \u0645\u0641\u0642\u0648\u062f \u062e\u0648\u0627\u0647\u062f \u0634\u062f. -#: Sketch.java:2018 -The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=\u0646\u0627\u0645 \u0637\u0631\u062d \u0645\u06cc\u200c\u0628\u0627\u06cc\u0633\u062a \u06a9\u0647 \u062a\u063a\u06cc\u06cc\u0631\u06cc\u0627\u0628\u062f. \u0646\u0627\u0645\u200c\u0647\u0627\u06cc \u0637\u0631\u062d \u0641\u0642\u0637 \u0645\u06cc\u200c\u0628\u0627\u06cc\u0633\u062a \u0634\u0627\u0645\u0644 \u0646\u0648\u06cc\u0633\u0647\u200c\u0647\u0627\u06cc\nASCII \u0648 \u0627\u0639\u062f\u0627\u062f \u0628\u0627\u0634\u0646\u062f (\u0648\u0644\u06cc \u0628\u0627 \u0627\u0639\u062f\u0627\u062f \u0622\u063a\u0627\u0632 \u0646\u06af\u0631\u062f\u0646\u062f).\n\u0627\u06cc\u0646\u200c\u0647\u0627 \u0645\u06cc\u200c\u0628\u0627\u06cc\u0633\u062a \u06a9\u0645\u062a\u0631 \u0627\u0632 \u06f6\u06f4 \u0646\u0648\u06cc\u0633\u0647 \u0637\u0648\u0644 \u062f\u0627\u0634\u062a\u0647 \u0628\u0627\u0634\u0646\u062f. +#: ../../../processing/app/Sketch.java:2028 +!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=\u067e\u0648\u0634\u0647\u0654 \u06a9\u062a\u0627\u0628 \u0637\u0631\u062d \u062f\u06cc\u06af\u0631 \u0645\u0648\u062c\u0648\u062f \u0646\u06cc\u0633\u062a.\n\u0622\u0631\u062f\u0626\u0646\u0648 \u0645\u062d\u0644 \u06a9\u062a\u0627\u0628 \u0637\u0631\u062d \u067e\u06cc\u0634\u200c\u0641\u0631\u0636 \u0631\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u062e\u0648\u0627\u0647\u062f \u06a9\u0631\u062f\n\u0648 \u067e\u0648\u0634\u0647\u0654 \u06a9\u062a\u0627\u0628 \u0637\u0631\u062d\u06cc \u062f\u0631\u0633\u062a \u062e\u0648\u0627\u0647\u062f \u06a9\u0631\u062f \u0627\u06af\u0631 \u0645\u0648\u0631\u062f \u0646\u06cc\u0627\u0632\n\u0628\u0627\u0634\u062f. \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u0635\u062d\u0628\u062a \u06a9\u0631\u062f\u0646 \u062f\u0631 \u0631\u0627\u0628\u0637\u0647 \u0628\u0627 \u062e\u0648\u062f \u0631\u0627 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646\n\u0633\u0648\u0645 \u0634\u062e\u0635 \u0631\u0627 \u067e\u0627\u06cc\u0627\u0646 \u0645\u06cc\u200c\u062f\u0647\u062f. +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u0627\u06cc\u0646 \u067e\u0631\u0648\u0646\u062f\u0647 \u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u0628\u0647 \u0645\u0648\u0636\u0639\u06cc\u062a\u06cc \u06a9\u0647\n\u0634\u0645\u0627 \u0645\u06cc\u200c\u062e\u0648\u0627\u0647\u06cc\u062f \u0628\u06cc\u0627\u0641\u0632\u0627\u06cc\u06cc\u062f \u06a9\u067e\u06cc\u200c\u0634\u062f\u0647\u200c\u0627\u0633\u062a.\n\u0645\u0646 \u06a9\u0627\u0631\u06cc \u0646\u0645\u06cc\u200c\u06a9\u0646\u0645. @@ -1142,6 +1272,10 @@ Vietnamese=\u0648\u06cc\u062a\u0646\u0627\u0645\u06cc #: Editor.java:1105 Visit\ Arduino.cc=\u0628\u0627\u0632\u062f\u06cc\u062f Arduino.cc +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= + #: Base.java:2128 Warning=\u0627\u062e\u0637\u0627\u0631 @@ -1240,9 +1374,6 @@ environment=\u0645\u062d\u06cc\u0637 #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1265,13 +1396,6 @@ name\ is\ null=name \u062a\u0647\u06cc \u0627\u0633\u062a #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=\u0628\u0627\u0641\u0631 \u0628\u0627\u06cc\u062a readBytesUntil() \u0628\u0631\u0627\u06cc \u0628\u06cc\u0634 \u0627\u0632 {0} \u0628\u0627\u06cc\u062a \u0648 \u0634\u0627\u0645\u0644 \u0646\u0648\u06cc\u0633\u0647\u0654 {1} \u0628\u0633\u06cc\u0627\u0631 \u06a9\u0648\u0686\u06a9 \u0627\u0633\u062a - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: \u062e\u0637\u0627\u06cc \u062f\u0631\u0648\u0646\u06cc.. \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u06a9\u062f \u0631\u0627 \u06cc\u0627\u0641\u062a - #: Editor.java:932 serialMenu\ is\ null=serialMenu \u062a\u0647\u06cc \u0627\u0633\u062a @@ -1279,6 +1403,10 @@ serialMenu\ is\ null=serialMenu \u062a\u0647\u06cc \u0627\u0633\u062a #, java-format the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=\u062f\u0631\u06af\u0627\u0647 \u0633\u0631\u06cc\u0627\u0644 \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f\u0647 {0} \u0645\u0648\u062c\u0648\u062f \u0646\u06cc\u0633\u062a \u06cc\u0627 \u0628\u0631\u062f \u0634\u0645\u0627 \u0645\u062a\u0635\u0644 \u0646\u0634\u062f\u0647\u200c\u0627\u0633\u062a +#: ../../../processing/app/Base.java:389 +#, java-format +!unknown\ option\:\ {0}= + #: Preferences.java:391 upload=\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc @@ -1297,3 +1425,35 @@ upload=\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= + +#: ../../../processing/app/Base.java:476 +#, java-format +!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= + +#: ../../../processing/app/Base.java:509 +#, java-format +!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= + +#: ../../../processing/app/Base.java:507 +#, java-format +!{0}\:\ Invalid\ option\ for\ board\ "{1}"= + +#: ../../../processing/app/Base.java:502 +#, java-format +!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= + +#: ../../../processing/app/Base.java:486 +#, java-format +{0}\:\ Unknown\ architecture={0}\: \u0645\u0639\u0645\u0627\u0631\u06cc \u0646\u0627\u0634\u0646\u0627\u062e\u062a\u0647 + +#: ../../../processing/app/Base.java:491 +#, java-format +{0}\:\ Unknown\ board={0} \: \u0628\u0631\u062f \u0646\u0627\u0634\u0646\u0627\u062e\u062a\u0647 + +#: ../../../processing/app/Base.java:481 +#, java-format +!{0}\:\ Unknown\ package= diff --git a/arduino-core/src/processing/app/i18n/Resources_fi.po b/arduino-core/src/processing/app/i18n/Resources_fi.po index af64ab223..f2e0a84f4 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fi.po +++ b/arduino-core/src/processing/app/i18n/Resources_fi.po @@ -33,6 +33,12 @@ msgstr "'Mouse' on tuettu vain Arduino Leonardossa." msgid "(edit only when Arduino is not running)" msgstr "(Muokkaa vain kun Arduino on suljettuna)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -91,6 +97,10 @@ msgstr "Lisää tiedosto..." msgid "Add Library..." msgstr "Lisää kirjasto..." +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -98,6 +108,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "Virhe korjatessa tiedoston koodausta.\nÄlä tallenna tätä sketsiä, sillä se voi ylikirjoittaa vanhan\nversion. Valitse avaa sketsi uudelleen ja yritä uudelleen.\n" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -176,6 +200,30 @@ msgstr "Oletko varma että haluat poistaa \"{0}\"?" msgid "Are you sure you want to delete this sketch?" msgstr "Oletko varma että haluat poistaa tämän sketsin?" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "Armenia" @@ -184,6 +232,10 @@ msgstr "Armenia" msgid "Asturian" msgstr "Asturia" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "Jäsennin" @@ -225,6 +277,14 @@ msgstr "Paha virhe rivillä: {0}" msgid "Bad file selected" msgstr "Väärä tiedosto valittu" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "Belarusia" @@ -261,6 +321,10 @@ msgstr "Selaa" msgid "Build folder disappeared or could not be written" msgstr "Rakennuskansio hävisi tai sinne ei voitu kirjoittaa" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Bulgaria" @@ -277,9 +341,15 @@ msgstr "Polta käynnistyslataaja" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "Poltetaan käynnistinlataajaa I/O levylle (tässä voi mennä hetki)..." -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" -msgstr "Lähdesketsiä ei voi avata!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" +msgstr "" #: ../../../processing/app/Preferences.java:92 msgid "Canadian French" @@ -294,6 +364,10 @@ msgstr "Peruuta" msgid "Cannot Rename" msgstr "Nimeä ei voi muuttaa" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "CR" @@ -338,11 +412,6 @@ msgstr "Sulje" msgid "Comment/Uncomment" msgstr "Kommentointi päälle/pois" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "Kääntäjävirhe, lähetä koodisi {0}" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "Käännetään sketsiä..." @@ -450,10 +519,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Oletusasetuksia ei voitu lukea.\nAsenna Arduino uudelleen." -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "Ei voitu lukea asetuksia paikasta {0}" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "" #: Base.java:2482 #, java-format @@ -482,6 +550,10 @@ msgstr "Sketsiä ei voitu uudelleennimetä. (2)" msgid "Could not replace {0}" msgstr "{0}:aa ei voitu korvata" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Sketsin arkistointi ei onnistunut" @@ -551,6 +623,11 @@ msgstr "Tallennettu." msgid "Done burning bootloader." msgstr "Käynnistinlataaja poltettu." +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "Kääntäminen valmis." @@ -559,6 +636,10 @@ msgstr "Kääntäminen valmis." msgid "Done printing." msgstr "Tulostettu." +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "Lähetetty." @@ -662,6 +743,10 @@ msgstr "Virhe polttaessa käynnistinlataajaa." msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "Virhe käynnistyslataajaa poltettaessa: puuttuva '{0}' asetusparametri" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -671,11 +756,25 @@ msgstr "Virhe ladatessa koodia {0}" msgid "Error while printing." msgstr "Virhe tulostaessa." +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "Virhe lähettäessä: puuttuva '{0}' asetusparametri" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "eesti" @@ -696,6 +795,11 @@ msgstr "Vienti peruttu, muutokset tulee tallentaa ensin." msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "" + #: Editor.java:491 msgid "File" msgstr "Tiedosto" @@ -743,9 +847,10 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "Jos haluat tietää, kuinka kirjastoja asennetaan, katso: http://arduino.cc/en/Guide/Libraries\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " -msgstr "Pakotettu resetointi käyttäen 1200 bps avausta/sulkua sarjaportissa." +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" +msgstr "" #: Preferences.java:95 msgid "French" @@ -893,9 +998,9 @@ msgstr "Kirjasto lisätty. Tarkista \"Tuo kirjasto\" valikko" msgid "Lithuaninan" msgstr "liettua" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" -msgstr "Muisti vähissä, epävakausongelmia voi ilmetä" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." +msgstr "" #: Preferences.java:107 msgid "Marathi" @@ -909,6 +1014,10 @@ msgstr "Viesti" msgid "Missing the */ from the end of a /* comment */" msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "Lisää asetuksia voi muokata suoraan tiedostossa" @@ -917,6 +1026,18 @@ msgstr "Lisää asetuksia voi muokata suoraan tiedostossa" msgid "Moving" msgstr "Siirretään" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "" + #: Sketch.java:282 msgid "Name for new file:" msgstr "Uuden tiedoston nimi:" @@ -953,6 +1074,10 @@ msgstr "Seuraava välilehti" msgid "No" msgstr "Ei" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "Levyä ei valittu - ole hyvä ja valitse Työkalut -> Levy." @@ -961,6 +1086,10 @@ msgstr "Levyä ei valittu - ole hyvä ja valitse Työkalut -> Levy." msgid "No changes necessary for Auto Format." msgstr "Jäsennin ei vaatinut muutoksia." +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "Sketsiin ei lisätty tiedostoja." @@ -973,6 +1102,10 @@ msgstr "Käynnistintä ei saatavilla" msgid "No line ending" msgstr "Ei rivipäätettä" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "Nyt on aika lähteä raittiiseen ilmaan." @@ -982,6 +1115,19 @@ msgstr "Nyt on aika lähteä raittiiseen ilmaan." msgid "No reference available for \"{0}\"" msgstr "Opasta ei löydy sanalle \"{0}\"" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "Ei löytynyt määriteltyjä ytimiä! Poistutaan..." @@ -1018,6 +1164,10 @@ msgstr "OK" msgid "One file added to the sketch." msgstr "Yksi tiedosto lisätty sketsiin." +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "Avaa" @@ -1054,14 +1204,27 @@ msgstr "Liitä" msgid "Persian" msgstr "persia" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "Ole hyvä ja tuo SPI kirjasto valikosta Sketsi -> Tuo kirjasto." +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "" + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "Ole hyvä ja asenna JDK 1.5 tai uudempi." +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "puola" @@ -1224,10 +1387,18 @@ msgstr "Tallenna \"{0}\" muutokset?" msgid "Save sketch folder as..." msgstr "Tallenna sketsikansio nimellä..." +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "Tallennetaan..." +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "Valitse kansio ohjelmillesi (tai luo uusi)" @@ -1260,20 +1431,6 @@ msgstr "Lähetä" msgid "Serial Monitor" msgstr "Sarjamonitori" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "Sarjaportti ''{0}'' on jo käytössä. Sulje kaikki ohjelmat jotka käyttävät sitä." - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "Sarjaportti ''{0}'' on jo käytössä. Sulje kaikki ohjelmat jotka käyttävät sitä." - #: Serial.java:194 #, java-format msgid "" @@ -1353,6 +1510,10 @@ msgstr "Ohjelmakansio katosi." msgid "Sketchbook location:" msgstr "Ohjelmakansion sijainti:" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "Ohjelmat (.ino, .pde)" @@ -1403,6 +1564,10 @@ msgstr "tamili" msgid "The 'BYTE' keyword is no longer supported." msgstr "BYTE avainsana ei ole enää tuettu." +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "Client luokka on nimetty EthernetClient:ksi." @@ -1470,12 +1635,12 @@ msgid "" "but anything besides the code will be lost." msgstr "Sketsikansio on hävinnyt.\nYritetään tallentaa uudelleen samaan paikkaan,\nmutta kaikki muu paitsi koodi häviää." -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." -msgstr "Sketsin nimeä täytyi muuttaa. Sketsin nimessä ei saa olla muita kuin\nASCII merkkejä ja numeroita (ei saa alkaa numerolla).\nMaksimi pituus on 64 merkkiä." +"They should also be less than 64 characters long." +msgstr "" #: Base.java:259 msgid "" @@ -1486,6 +1651,12 @@ msgid "" "himself in the third person." msgstr "Ohjelmakansiota ei enää ole olemassa. Arduino vaihtaa oletuskansioon, luo tarvittaessa uuden ja lopettaa itsestään puhumisen kolmannessa persoonassa." +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1628,6 +1799,13 @@ msgstr "Vietnami" msgid "Visit Arduino.cc" msgstr "Vieraile Arduino.cc" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "" + #: Base.java:2128 msgid "Warning" msgstr "Varoitus" @@ -1796,10 +1974,6 @@ msgstr "ympäristö" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "http://github.com/arduino/Arduino/issues" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1829,17 +2003,6 @@ msgstr "nimi on tyhjä" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "readBytesUntil() tavupuskuri on liian pieni {0} tavulle, sisältäen merkin {1}" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "removeCodE: sisäinen virhe.. koodia ei löytynyt" - #: Editor.java:932 msgid "serialMenu is null" msgstr "serialMenu on tyhjä" @@ -1850,6 +2013,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "valittua sarjaporttia {0} ei ole olemassa tai levysi ei ole kytketty" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "" + #: Preferences.java:391 msgid "upload" msgstr "lähettäessä" @@ -1873,3 +2041,45 @@ msgstr "{0} | Arduino {1}" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "" diff --git a/arduino-core/src/processing/app/i18n/Resources_fi.properties b/arduino-core/src/processing/app/i18n/Resources_fi.properties index 0dbdc2766..93600279d 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fi.properties +++ b/arduino-core/src/processing/app/i18n/Resources_fi.properties @@ -17,6 +17,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(Muokkaa vain kun Arduino on suljettuna) +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -53,9 +56,23 @@ Add\ File...=Lis\u00e4\u00e4 tiedosto... #: Base.java:963 Add\ Library...=Lis\u00e4\u00e4 kirjasto... +#: ../../../processing/app/Preferences.java:96 +!Albanian= + #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Virhe korjatessa tiedoston koodausta.\n\u00c4l\u00e4 tallenna t\u00e4t\u00e4 sketsi\u00e4, sill\u00e4 se voi ylikirjoittaa vanhan\nversion. Valitse avaa sketsi uudelleen ja yrit\u00e4 uudelleen.\n +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Tuntematon virhe ladattaessa alustakohtaista\nkoodia koneellesi. @@ -105,12 +122,33 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Oletko varma ett\u00e4 haluat pois #: Sketch.java:587 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Oletko varma ett\u00e4 haluat poistaa t\u00e4m\u00e4n sketsin? +#: ../../../processing/app/Base.java:356 +!Argument\ required\ for\ --board= + +#: ../../../processing/app/Base.java:370 +!Argument\ required\ for\ --curdir= + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +!Argument\ required\ for\ --port= + +#: ../../../processing/app/Base.java:377 +!Argument\ required\ for\ --pref= + +#: ../../../processing/app/Base.java:384 +!Argument\ required\ for\ --preferences-file= + #: ../../../processing/app/Preferences.java:137 Armenian=Armenia #: ../../../processing/app/Preferences.java:138 Asturian=Asturia +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 Auto\ Format=J\u00e4sennin @@ -142,6 +180,12 @@ Bad\ error\ line\:\ {0}=Paha virhe rivill\u00e4\: {0} #: Editor.java:2136 Bad\ file\ selected=V\u00e4\u00e4r\u00e4 tiedosto valittu +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +!Basque= + #: ../../../processing/app/Preferences.java:139 Belarusian=Belarusia @@ -168,6 +212,9 @@ Browse=Selaa #: Sketch.java:1392 Sketch.java:1423 Build\ folder\ disappeared\ or\ could\ not\ be\ written=Rakennuskansio h\u00e4visi tai sinne ei voitu kirjoittaa +#: ../../../processing/app/Sketch.java:1530 +!Build\ options\ changed,\ rebuilding\ all= + #: ../../../processing/app/Preferences.java:80 Bulgarian=Bulgaria @@ -180,8 +227,13 @@ Burn\ Bootloader=Polta k\u00e4ynnistyslataaja #: Editor.java:2504 Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Poltetaan k\u00e4ynnistinlataajaa I/O levylle (t\u00e4ss\u00e4 voi menn\u00e4 hetki)... -#: ../../../processing/app/Base.java:368 -Can't\ open\ source\ sketch\!=L\u00e4hdesketsi\u00e4 ei voi avata\! +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 Canadian\ French=Kanadan ranska @@ -193,6 +245,9 @@ Cancel=Peruuta #: Sketch.java:455 Cannot\ Rename=Nime\u00e4 ei voi muuttaa +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 Carriage\ return=CR @@ -226,10 +281,6 @@ Close=Sulje #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=Kommentointi p\u00e4\u00e4lle/pois -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=K\u00e4\u00e4nt\u00e4j\u00e4virhe, l\u00e4het\u00e4 koodisi {0} - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=K\u00e4\u00e4nnet\u00e4\u00e4n sketsi\u00e4... @@ -305,9 +356,8 @@ Could\ not\ re-save\ sketch=Sketsi\u00e4 ei voitu tallentaa uudelleen #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Oletusasetuksia ei voitu lukea.\nAsenna Arduino uudelleen. -#: Preferences.java:258 -#, java-format -Could\ not\ read\ preferences\ from\ {0}=Ei voitu lukea asetuksia paikasta {0} +#: ../../../processing/app/Sketch.java:1525 +!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= #: Base.java:2482 #, java-format @@ -330,6 +380,9 @@ Could\ not\ rename\ the\ sketch.\ (2)=Sketsi\u00e4 ei voitu uudelleennimet\u00e4 #, java-format Could\ not\ replace\ {0}={0}\:aa ei voitu korvata +#: ../../../processing/app/Sketch.java:1579 +!Could\ not\ write\ build\ preferences\ file= + #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Sketsin arkistointi ei onnistunut @@ -378,12 +431,19 @@ Done\ Saving.=Tallennettu. #: Editor.java:2510 Done\ burning\ bootloader.=K\u00e4ynnistinlataaja poltettu. +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=K\u00e4\u00e4nt\u00e4minen valmis. #: Editor.java:2564 Done\ printing.=Tulostettu. +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=L\u00e4hetetty. @@ -462,6 +522,9 @@ Error\ while\ burning\ bootloader.=Virhe polttaessa k\u00e4ynnistinlataajaa. #: ../../../processing/app/Editor.java:2555 Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=Virhe k\u00e4ynnistyslataajaa poltettaessa\: puuttuva '{0}' asetusparametri +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=Virhe ladatessa koodia {0} @@ -469,10 +532,21 @@ Error\ while\ loading\ code\ {0}=Virhe ladatessa koodia {0} #: Editor.java:2567 Error\ while\ printing.=Virhe tulostaessa. +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=Virhe l\u00e4hett\u00e4ess\u00e4\: puuttuva '{0}' asetusparametri +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 Estonian=eesti @@ -488,6 +562,10 @@ Export\ canceled,\ changes\ must\ first\ be\ saved.=Vienti peruttu, muutokset tu #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +!Failed\ to\ open\ sketch\:\ "{0}"= + #: Editor.java:491 File=Tiedosto @@ -522,8 +600,9 @@ Fix\ Encoding\ &\ Reload=Korjaa koodaus ja avaa uudelleen #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=Jos haluat tiet\u00e4\u00e4, kuinka kirjastoja asennetaan, katso\: http\://arduino.cc/en/Guide/Libraries\n -#: debug/BasicUploader.java:80 -Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =Pakotettu resetointi k\u00e4ytt\u00e4en 1200 bps avausta/sulkua sarjaportissa. +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=ranska @@ -627,8 +706,8 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Kirjasto li #: Preferences.java:106 Lithuaninan=liettua -#: ../../../processing/app/Sketch.java:1660 -Low\ memory\ available,\ stability\ problems\ may\ occur=Muisti v\u00e4hiss\u00e4, ep\u00e4vakausongelmia voi ilmet\u00e4 +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 Marathi=marathi @@ -639,12 +718,24 @@ Message=Viesti #: ../../../processing/app/preproc/PdePreprocessor.java:412 !Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Lis\u00e4\u00e4 asetuksia voi muokata suoraan tiedostossa #: Editor.java:2156 Moving=Siirret\u00e4\u00e4n +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +!Must\ specify\ exactly\ one\ sketch\ file= + +#: ../../../processing/app/Preferences.java:158 +!N'Ko= + #: Sketch.java:282 Name\ for\ new\ file\:=Uuden tiedoston nimi\: @@ -672,12 +763,18 @@ Next\ Tab=Seuraava v\u00e4lilehti #: Preferences.java:78 UpdateCheck.java:108 No=Ei +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Levy\u00e4 ei valittu - ole hyv\u00e4 ja valitse Ty\u00f6kalut -> Levy. #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=J\u00e4sennin ei vaatinut muutoksia. +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=Sketsiin ei lis\u00e4tty tiedostoja. @@ -687,6 +784,9 @@ No\ launcher\ available=K\u00e4ynnistint\u00e4 ei saatavilla #: SerialMonitor.java:112 No\ line\ ending=Ei rivip\u00e4\u00e4tett\u00e4 +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Nyt on aika l\u00e4hte\u00e4 raittiiseen ilmaan. @@ -694,6 +794,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Nyt on aika l\u00e4hte\u00e4 #, java-format No\ reference\ available\ for\ "{0}"=Opasta ei l\u00f6ydy sanalle "{0}" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +!No\ valid\ code\ files\ found= + #: ../../../processing/app/Base.java:309 No\ valid\ configured\ cores\ found\!\ Exiting...=Ei l\u00f6ytynyt m\u00e4\u00e4riteltyj\u00e4 ytimi\u00e4\! Poistutaan... @@ -720,6 +830,9 @@ OK=OK #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=Yksi tiedosto lis\u00e4tty sketsiin. +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=Avaa @@ -747,12 +860,22 @@ Paste=Liit\u00e4 #: Preferences.java:109 Persian=persia +#: ../../../processing/app/Preferences.java:161 +!Persian\ (Iran)= + #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Ole hyv\u00e4 ja tuo SPI kirjasto valikosta Sketsi -> Tuo kirjasto. +#: ../../../processing/app/debug/Compiler.java:529 +!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=Ole hyv\u00e4 ja asenna JDK 1.5 tai uudempi. +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 Polish=puola @@ -874,9 +997,15 @@ Save\ changes\ to\ "{0}"?\ \ =Tallenna "{0}" muutokset? #: Sketch.java:825 Save\ sketch\ folder\ as...=Tallenna sketsikansio nimell\u00e4... +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=Tallennetaan... +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=Valitse kansio ohjelmillesi (tai luo uusi) @@ -901,14 +1030,6 @@ Send=L\u00e4het\u00e4 #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=Sarjamonitori -#: Serial.java:174 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Sarjaportti ''{0}'' on jo k\u00e4yt\u00f6ss\u00e4. Sulje kaikki ohjelmat jotka k\u00e4ytt\u00e4v\u00e4t sit\u00e4. - -#: Serial.java:121 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=Sarjaportti ''{0}'' on jo k\u00e4yt\u00f6ss\u00e4. Sulje kaikki ohjelmat jotka k\u00e4ytt\u00e4v\u00e4t sit\u00e4. - #: Serial.java:194 #, java-format Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Sarjaporttia ''{0}'' ei l\u00f6ydy. Valitsitko oikean valikosta Ty\u00f6kalut -> Sarjaportti? @@ -963,6 +1084,9 @@ Sketchbook\ folder\ disappeared=Ohjelmakansio katosi. #: Preferences.java:315 Sketchbook\ location\:=Ohjelmakansion sijainti\: +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 Sketches\ (*.ino,\ *.pde)=Ohjelmat (.ino, .pde) @@ -997,6 +1121,9 @@ Tamil=tamili #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=BYTE avainsana ei ole en\u00e4\u00e4 tuettu. +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Client luokka on nimetty EthernetClient\:ksi. @@ -1033,12 +1160,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Sketsikansio on h\u00e4vinnyt.\nYritet\u00e4\u00e4n tallentaa uudelleen samaan paikkaan,\nmutta kaikki muu paitsi koodi h\u00e4vi\u00e4\u00e4. -#: Sketch.java:2018 -The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=Sketsin nime\u00e4 t\u00e4ytyi muuttaa. Sketsin nimess\u00e4 ei saa olla muita kuin\nASCII merkkej\u00e4 ja numeroita (ei saa alkaa numerolla).\nMaksimi pituus on 64 merkki\u00e4. +#: ../../../processing/app/Sketch.java:2028 +!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Ohjelmakansiota ei en\u00e4\u00e4 ole olemassa. Arduino vaihtaa oletuskansioon, luo tarvittaessa uuden ja lopettaa itsest\u00e4\u00e4n puhumisen kolmannessa persoonassa. +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=T\u00e4m\u00e4 tiedosto on jo kopioitu paikkaan josta\nyrit\u00e4t sit\u00e4 lis\u00e4t\u00e4. @@ -1142,6 +1272,10 @@ Vietnamese=Vietnami #: Editor.java:1105 Visit\ Arduino.cc=Vieraile Arduino.cc +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= + #: Base.java:2128 Warning=Varoitus @@ -1240,9 +1374,6 @@ environment=ymp\u00e4rist\u00f6 #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1265,13 +1396,6 @@ name\ is\ null=nimi on tyhj\u00e4 #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() tavupuskuri on liian pieni {0} tavulle, sis\u00e4lt\u00e4en merkin {1} - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCodE\: sis\u00e4inen virhe.. koodia ei l\u00f6ytynyt - #: Editor.java:932 serialMenu\ is\ null=serialMenu on tyhj\u00e4 @@ -1279,6 +1403,10 @@ serialMenu\ is\ null=serialMenu on tyhj\u00e4 #, java-format the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=valittua sarjaporttia {0} ei ole olemassa tai levysi ei ole kytketty +#: ../../../processing/app/Base.java:389 +#, java-format +!unknown\ option\:\ {0}= + #: Preferences.java:391 upload=l\u00e4hett\u00e4ess\u00e4 @@ -1297,3 +1425,35 @@ upload=l\u00e4hett\u00e4ess\u00e4 #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= + +#: ../../../processing/app/Base.java:476 +#, java-format +!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= + +#: ../../../processing/app/Base.java:509 +#, java-format +!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= + +#: ../../../processing/app/Base.java:507 +#, java-format +!{0}\:\ Invalid\ option\ for\ board\ "{1}"= + +#: ../../../processing/app/Base.java:502 +#, java-format +!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= + +#: ../../../processing/app/Base.java:486 +#, java-format +!{0}\:\ Unknown\ architecture= + +#: ../../../processing/app/Base.java:491 +#, java-format +!{0}\:\ Unknown\ board= + +#: ../../../processing/app/Base.java:481 +#, java-format +!{0}\:\ Unknown\ package= diff --git a/arduino-core/src/processing/app/i18n/Resources_fil.po b/arduino-core/src/processing/app/i18n/Resources_fil.po index ce469f173..3d9b12092 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fil.po +++ b/arduino-core/src/processing/app/i18n/Resources_fil.po @@ -34,6 +34,12 @@ msgstr "" msgid "(edit only when Arduino is not running)" msgstr "(baguhin lamang kung hindi tumatakbo ang Arduino)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -92,6 +98,10 @@ msgstr "Magdagdag ng File..." msgid "Add Library..." msgstr "" +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -99,6 +109,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "May pagkakamali habang sinusubukang ayusin ang file encoding.\nHuwag subukang i-save ang sketch na ito dahil maaaring mapatungan\nang lumang bersion. Gamitin ang Buksan para buksan muli ang sketch.\n" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -177,6 +201,30 @@ msgstr "Nais mo bang burahin ang \"{0}\"?" msgid "Are you sure you want to delete this sketch?" msgstr "Nais mo bang burahin ang sketch na ito?" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "" @@ -185,6 +233,10 @@ msgstr "" msgid "Asturian" msgstr "" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "Auto Format" @@ -226,6 +278,14 @@ msgstr "May mali sa linya: {0}" msgid "Bad file selected" msgstr "Mali ang File na napili" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "" @@ -262,6 +322,10 @@ msgstr "Browse" msgid "Build folder disappeared or could not be written" msgstr "Nawawala ang build folder o hindi sya masulatan" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "" @@ -278,8 +342,14 @@ msgstr "Ilagay ang Bootloader" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "Inilalagay ang bootloader sa I/O Board (Maaring abutin ng isang minuto)..." -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" msgstr "" #: ../../../processing/app/Preferences.java:92 @@ -295,6 +365,10 @@ msgstr "Kanselahin" msgid "Cannot Rename" msgstr "Hindi maaaring palitan ang pangalan" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "Carriage return" @@ -339,11 +413,6 @@ msgstr "Isara" msgid "Comment/Uncomment" msgstr "I-Comment/I-Uncomment" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "May error sa compiler, Pakisubmit ang code na ito sa {0}" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "Kinokompile ang Sketch..." @@ -451,10 +520,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Hindi mabasa ang default settings.\nKinakailangan mong i-reinstall ang Arduino." -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "Hindi mabasa ang mga kagustuhan mula sa {0}" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "" #: Base.java:2482 #, java-format @@ -483,6 +551,10 @@ msgstr "Hindi mapalitan ang pangalan ng sketch. (2)" msgid "Could not replace {0}" msgstr "Hindi mapalitan ang {0}" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Hindi mai-archive and sketch" @@ -552,6 +624,11 @@ msgstr "Tapos na sa pag save." msgid "Done burning bootloader." msgstr "Tapos na ang paglagay ng bootloader." +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "Tapos na ang pagkokompile." @@ -560,6 +637,10 @@ msgstr "Tapos na ang pagkokompile." msgid "Done printing." msgstr "Tapos na ang pag print." +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "Tapos na ang pagupload." @@ -663,6 +744,10 @@ msgstr "May mali habang naglalagay ng bootloader." msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -672,11 +757,25 @@ msgstr "May mali habang niloload ang code {0}" msgid "Error while printing." msgstr "May mali habang nagpi-print." +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "" @@ -697,6 +796,11 @@ msgstr "Nakansela ang pag export, kailangan muna i-save ang mga nagawa." msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "" + #: Editor.java:491 msgid "File" msgstr "File" @@ -744,8 +848,9 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" msgstr "" #: Preferences.java:95 @@ -894,8 +999,8 @@ msgstr "" msgid "Lithuaninan" msgstr "" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: Preferences.java:107 @@ -910,6 +1015,10 @@ msgstr "Mensahe" msgid "Missing the */ from the end of a /* comment */" msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "Madami pang preferences ang maaaring baguhin mula sa file" @@ -918,6 +1027,18 @@ msgstr "Madami pang preferences ang maaaring baguhin mula sa file" msgid "Moving" msgstr "Inililipat" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "" + #: Sketch.java:282 msgid "Name for new file:" msgstr "Pangalan para sa bagong file:" @@ -954,6 +1075,10 @@ msgstr "Susunod na Tab" msgid "No" msgstr "Hindi" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "Walang piniling board; Maaari lamang na pumili ng board mula sa Mga Kasangkapan > Board menu." @@ -962,6 +1087,10 @@ msgstr "Walang piniling board; Maaari lamang na pumili ng board mula sa Mga Kasa msgid "No changes necessary for Auto Format." msgstr "" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "Walang naidagdag na file sa sketch." @@ -974,6 +1103,10 @@ msgstr "Walang launcher na maaaring magamit" msgid "No line ending" msgstr "Walang pagtatapos sa linya" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "Hindi nga walang biro, oras na para makalanghap ka ng sariwang hangin." @@ -983,6 +1116,19 @@ msgstr "Hindi nga walang biro, oras na para makalanghap ka ng sariwang hangin." msgid "No reference available for \"{0}\"" msgstr "Walang sanggunian para sa \"{0}\"" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "" @@ -1019,6 +1165,10 @@ msgstr "OK" msgid "One file added to the sketch." msgstr "Isang file ang naidagdag sa sketch." +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "Buksan" @@ -1055,14 +1205,27 @@ msgstr "Ilagay" msgid "Persian" msgstr "Persian" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "" +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "" + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "Maaari lamang na maginstall ng JDK 1.5 pataas" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "" @@ -1225,10 +1388,18 @@ msgstr "I-Save ang mga pagbabago sa \"{0}\"? " msgid "Save sketch folder as..." msgstr "I-save ang sketch folder bilang..." +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "Sine-save..." +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "Pumili (o gumawa ng bago) ng folder para sa sketches..." @@ -1261,20 +1432,6 @@ msgstr "Ipadala" msgid "Serial Monitor" msgstr "Serial Monitor" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "Ang serial port ''{0}'' ay kasalukuyang ginagamit. Subukang ihinto ang ibang programa na maaring gumagamit nito." - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "" - #: Serial.java:194 #, java-format msgid "" @@ -1354,6 +1511,10 @@ msgstr "Nawala ang folder ng sketchbook" msgid "Sketchbook location:" msgstr "Lokasyon ng Sketchbook:" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "" @@ -1404,6 +1565,10 @@ msgstr "" msgid "The 'BYTE' keyword is no longer supported." msgstr "Ang 'BYTE' keyword ay hindi na sinusuportahan." +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "Ang Client class ay pinangalanan ng EthernetClient." @@ -1471,12 +1636,12 @@ msgid "" "but anything besides the code will be lost." msgstr "Nawala ng folder ng sketch.\n Susubukang ire-save sa parehong lokasyon,\nsubalit lahat maliban sa code ay mawawala." -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." -msgstr "Kinakailangang palitan ang sketch name. Ang pangalan ng sketch ay maaari lamang magkaroon ng\nASCII characters at mga numero (ngunit hindi maaaring magsimula sa numero).\nHindi rin maaaring lumagpas ng 64 na titik ang pangalan." +"They should also be less than 64 characters long." +msgstr "" #: Base.java:259 msgid "" @@ -1487,6 +1652,12 @@ msgid "" "himself in the third person." msgstr "Ang sketchbook folder ay hindi ko na makita.\nGagamitin ko na ang default lokasyon ng sketchbook \nat gagawa ng bagong sketchbook folder kung\nkinakailangan. At hindi ko na kakausapin\nang sarili ko." +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1629,6 +1800,13 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "Bisitahin ang Arduino.cc" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "" + #: Base.java:2128 msgid "Warning" msgstr "Warning" @@ -1797,10 +1975,6 @@ msgstr "environment" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1830,17 +2004,6 @@ msgstr "ang pangalan ay null" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "readBytesUntil() byte buffer ay masyadong maliit para sa {0} bytes hanggang sa char {1}" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "removeCode: internal error...hindi makita ang code" - #: Editor.java:932 msgid "serialMenu is null" msgstr "serialMenu ay null" @@ -1851,6 +2014,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "hindi makita ang napiling serial port {0} o kaya naman ay hindi kunektado ang iyong board" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "" + #: Preferences.java:391 msgid "upload" msgstr "upload" @@ -1874,3 +2042,45 @@ msgstr "{0} | Arduino {1}" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "" diff --git a/arduino-core/src/processing/app/i18n/Resources_fil.properties b/arduino-core/src/processing/app/i18n/Resources_fil.properties index eaaf537d8..30266238a 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fil.properties +++ b/arduino-core/src/processing/app/i18n/Resources_fil.properties @@ -17,6 +17,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(baguhin lamang kung hindi tumatakbo ang Arduino) +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -53,9 +56,23 @@ Add\ File...=Magdagdag ng File... #: Base.java:963 !Add\ Library...= +#: ../../../processing/app/Preferences.java:96 +!Albanian= + #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=May pagkakamali habang sinusubukang ayusin ang file encoding.\nHuwag subukang i-save ang sketch na ito dahil maaaring mapatungan\nang lumang bersion. Gamitin ang Buksan para buksan muli ang sketch.\n +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=May hindi alam na error ang nangyari habang niloload ang \nplatform-specific code para sa iyong machine. @@ -105,12 +122,33 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Nais mo bang burahin ang "{0}"? #: Sketch.java:587 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Nais mo bang burahin ang sketch na ito? +#: ../../../processing/app/Base.java:356 +!Argument\ required\ for\ --board= + +#: ../../../processing/app/Base.java:370 +!Argument\ required\ for\ --curdir= + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +!Argument\ required\ for\ --port= + +#: ../../../processing/app/Base.java:377 +!Argument\ required\ for\ --pref= + +#: ../../../processing/app/Base.java:384 +!Argument\ required\ for\ --preferences-file= + #: ../../../processing/app/Preferences.java:137 !Armenian= #: ../../../processing/app/Preferences.java:138 !Asturian= +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 Auto\ Format=Auto Format @@ -142,6 +180,12 @@ Bad\ error\ line\:\ {0}=May mali sa linya\: {0} #: Editor.java:2136 Bad\ file\ selected=Mali ang File na napili +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +!Basque= + #: ../../../processing/app/Preferences.java:139 !Belarusian= @@ -168,6 +212,9 @@ Browse=Browse #: Sketch.java:1392 Sketch.java:1423 Build\ folder\ disappeared\ or\ could\ not\ be\ written=Nawawala ang build folder o hindi sya masulatan +#: ../../../processing/app/Sketch.java:1530 +!Build\ options\ changed,\ rebuilding\ all= + #: ../../../processing/app/Preferences.java:80 !Bulgarian= @@ -180,8 +227,13 @@ Burn\ Bootloader=Ilagay ang Bootloader #: Editor.java:2504 Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Inilalagay ang bootloader sa I/O Board (Maaring abutin ng isang minuto)... -#: ../../../processing/app/Base.java:368 -!Can't\ open\ source\ sketch\!= +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 !Canadian\ French= @@ -193,6 +245,9 @@ Cancel=Kanselahin #: Sketch.java:455 Cannot\ Rename=Hindi maaaring palitan ang pangalan +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 Carriage\ return=Carriage return @@ -226,10 +281,6 @@ Close=Isara #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=I-Comment/I-Uncomment -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=May error sa compiler, Pakisubmit ang code na ito sa {0} - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=Kinokompile ang Sketch... @@ -305,9 +356,8 @@ Could\ not\ re-save\ sketch=Hindi mai-resave ang sketch #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Hindi mabasa ang default settings.\nKinakailangan mong i-reinstall ang Arduino. -#: Preferences.java:258 -#, java-format -Could\ not\ read\ preferences\ from\ {0}=Hindi mabasa ang mga kagustuhan mula sa {0} +#: ../../../processing/app/Sketch.java:1525 +!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= #: Base.java:2482 #, java-format @@ -330,6 +380,9 @@ Could\ not\ rename\ the\ sketch.\ (2)=Hindi mapalitan ang pangalan ng sketch. (2 #, java-format Could\ not\ replace\ {0}=Hindi mapalitan ang {0} +#: ../../../processing/app/Sketch.java:1579 +!Could\ not\ write\ build\ preferences\ file= + #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Hindi mai-archive and sketch @@ -378,12 +431,19 @@ Done\ Saving.=Tapos na sa pag save. #: Editor.java:2510 Done\ burning\ bootloader.=Tapos na ang paglagay ng bootloader. +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=Tapos na ang pagkokompile. #: Editor.java:2564 Done\ printing.=Tapos na ang pag print. +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=Tapos na ang pagupload. @@ -462,6 +522,9 @@ Error\ while\ burning\ bootloader.=May mali habang naglalagay ng bootloader. #: ../../../processing/app/Editor.java:2555 !Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=May mali habang niloload ang code {0} @@ -469,10 +532,21 @@ Error\ while\ loading\ code\ {0}=May mali habang niloload ang code {0} #: Editor.java:2567 Error\ while\ printing.=May mali habang nagpi-print. +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 !Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 !Estonian= @@ -488,6 +562,10 @@ Export\ canceled,\ changes\ must\ first\ be\ saved.=Nakansela ang pag export, ka #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +!Failed\ to\ open\ sketch\:\ "{0}"= + #: Editor.java:491 File=File @@ -522,8 +600,9 @@ Fix\ Encoding\ &\ Reload=Itama ang Encoding at I-reload #: Base.java:1851 !For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n= -#: debug/BasicUploader.java:80 -!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ = +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=French @@ -627,8 +706,8 @@ Latvian=Latvian #: Preferences.java:106 !Lithuaninan= -#: ../../../processing/app/Sketch.java:1660 -!Low\ memory\ available,\ stability\ problems\ may\ occur= +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 !Marathi= @@ -639,12 +718,24 @@ Message=Mensahe #: ../../../processing/app/preproc/PdePreprocessor.java:412 !Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Madami pang preferences ang maaaring baguhin mula sa file #: Editor.java:2156 Moving=Inililipat +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +!Must\ specify\ exactly\ one\ sketch\ file= + +#: ../../../processing/app/Preferences.java:158 +!N'Ko= + #: Sketch.java:282 Name\ for\ new\ file\:=Pangalan para sa bagong file\: @@ -672,12 +763,18 @@ Next\ Tab=Susunod na Tab #: Preferences.java:78 UpdateCheck.java:108 No=Hindi +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Walang piniling board; Maaari lamang na pumili ng board mula sa Mga Kasangkapan > Board menu. #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 !No\ changes\ necessary\ for\ Auto\ Format.= +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=Walang naidagdag na file sa sketch. @@ -687,6 +784,9 @@ No\ launcher\ available=Walang launcher na maaaring magamit #: SerialMonitor.java:112 No\ line\ ending=Walang pagtatapos sa linya +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Hindi nga walang biro, oras na para makalanghap ka ng sariwang hangin. @@ -694,6 +794,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Hindi nga walang biro, oras #, java-format No\ reference\ available\ for\ "{0}"=Walang sanggunian para sa "{0}" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +!No\ valid\ code\ files\ found= + #: ../../../processing/app/Base.java:309 !No\ valid\ configured\ cores\ found\!\ Exiting...= @@ -720,6 +830,9 @@ OK=OK #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=Isang file ang naidagdag sa sketch. +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=Buksan @@ -747,12 +860,22 @@ Paste=Ilagay #: Preferences.java:109 Persian=Persian +#: ../../../processing/app/Preferences.java:161 +!Persian\ (Iran)= + #: debug/Compiler.java:408 !Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= +#: ../../../processing/app/debug/Compiler.java:529 +!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=Maaari lamang na maginstall ng JDK 1.5 pataas +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 !Polish= @@ -874,9 +997,15 @@ Save\ changes\ to\ "{0}"?\ \ =I-Save ang mga pagbabago sa "{0}"? #: Sketch.java:825 Save\ sketch\ folder\ as...=I-save ang sketch folder bilang... +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=Sine-save... +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=Pumili (o gumawa ng bago) ng folder para sa sketches... @@ -901,14 +1030,6 @@ Send=Ipadala #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=Serial Monitor -#: Serial.java:174 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Ang serial port ''{0}'' ay kasalukuyang ginagamit. Subukang ihinto ang ibang programa na maaring gumagamit nito. - -#: Serial.java:121 -#, java-format -!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.= - #: Serial.java:194 #, java-format Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Hindi makita ang serial port na ''{0}''. Tama ba ang iyong napili sa Mga Kasangkapan > Serial Port menu? @@ -963,6 +1084,9 @@ Sketchbook\ folder\ disappeared=Nawala ang folder ng sketchbook #: Preferences.java:315 Sketchbook\ location\:=Lokasyon ng Sketchbook\: +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 !Sketches\ (*.ino,\ *.pde)= @@ -997,6 +1121,9 @@ Sunshine=Sinag ng araw #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=Ang 'BYTE' keyword ay hindi na sinusuportahan. +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Ang Client class ay pinangalanan ng EthernetClient. @@ -1033,12 +1160,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Nawala ng folder ng sketch.\n Susubukang ire-save sa parehong lokasyon,\nsubalit lahat maliban sa code ay mawawala. -#: Sketch.java:2018 -The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=Kinakailangang palitan ang sketch name. Ang pangalan ng sketch ay maaari lamang magkaroon ng\nASCII characters at mga numero (ngunit hindi maaaring magsimula sa numero).\nHindi rin maaaring lumagpas ng 64 na titik ang pangalan. +#: ../../../processing/app/Sketch.java:2028 +!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Ang sketchbook folder ay hindi ko na makita.\nGagamitin ko na ang default lokasyon ng sketchbook \nat gagawa ng bagong sketchbook folder kung\nkinakailangan. At hindi ko na kakausapin\nang sarili ko. +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Ang file na ito ay nakopya na sa lokasyon kung saan mo sya gustong ikopya.\nWala na akong gagawin. @@ -1142,6 +1272,10 @@ Verify\ code\ after\ upload=I-verify ang code pagkatapos mai-upload #: Editor.java:1105 Visit\ Arduino.cc=Bisitahin ang Arduino.cc +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= + #: Base.java:2128 Warning=Warning @@ -1240,9 +1374,6 @@ environment=environment #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -!http\://github.com/arduino/Arduino/issues= - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1265,13 +1396,6 @@ name\ is\ null=ang pangalan ay null #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() byte buffer ay masyadong maliit para sa {0} bytes hanggang sa char {1} - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: internal error...hindi makita ang code - #: Editor.java:932 serialMenu\ is\ null=serialMenu ay null @@ -1279,6 +1403,10 @@ serialMenu\ is\ null=serialMenu ay null #, java-format the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=hindi makita ang napiling serial port {0} o kaya naman ay hindi kunektado ang iyong board +#: ../../../processing/app/Base.java:389 +#, java-format +!unknown\ option\:\ {0}= + #: Preferences.java:391 upload=upload @@ -1297,3 +1425,35 @@ upload=upload #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= + +#: ../../../processing/app/Base.java:476 +#, java-format +!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= + +#: ../../../processing/app/Base.java:509 +#, java-format +!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= + +#: ../../../processing/app/Base.java:507 +#, java-format +!{0}\:\ Invalid\ option\ for\ board\ "{1}"= + +#: ../../../processing/app/Base.java:502 +#, java-format +!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= + +#: ../../../processing/app/Base.java:486 +#, java-format +!{0}\:\ Unknown\ architecture= + +#: ../../../processing/app/Base.java:491 +#, java-format +!{0}\:\ Unknown\ board= + +#: ../../../processing/app/Base.java:481 +#, java-format +!{0}\:\ Unknown\ package= diff --git a/arduino-core/src/processing/app/i18n/Resources_fr.po b/arduino-core/src/processing/app/i18n/Resources_fr.po index 62bb18ed1..5556dc0bb 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fr.po +++ b/arduino-core/src/processing/app/i18n/Resources_fr.po @@ -40,6 +40,12 @@ msgstr "« Mouse » n'est pris en compte que par l'Arduino Leonardo" msgid "(edit only when Arduino is not running)" msgstr "(éditer uniquement lorsque Arduino ne s'exécute pas)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -98,6 +104,10 @@ msgstr "Ajouter un fichier..." msgid "Add Library..." msgstr "Ajouter bibliothèque..." +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "albanais" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -105,6 +115,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "Une erreur est survenue lors de la réparation de l'encodage du fichier.\nNe pas tenter d'enregistrer ce croquis, car cela pourrait écraser\nl'ancienne version. Utiliser Ouvrir pour réouvrir le croquis et réessayer.\n" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -183,6 +207,30 @@ msgstr "Êtes-vous certain de vouloir supprimer « {0} » ?" msgid "Are you sure you want to delete this sketch?" msgstr "Êtes-vous certain de vouloir supprimer ce croquis ?" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "Paramètre obligatoire avec --board" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "Paramètre obligatoire avec --curdir" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "Paramètre obligatoire avec --port" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "Paramètre obligatoire avec --pref" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "Paramètre obligatoire avec --preferences-file" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "arménien" @@ -191,6 +239,10 @@ msgstr "arménien" msgid "Asturian" msgstr "asturien" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "Formatage automatique" @@ -232,6 +284,14 @@ msgstr "Erreur à la ligne : {0}" msgid "Bad file selected" msgstr "Mauvais fichier sélectionné" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "basque" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "biélorusse" @@ -268,6 +328,10 @@ msgstr "Parcourir" msgid "Build folder disappeared or could not be written" msgstr "Dossier de compilation disparu ou n'a pas pu être créé" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "Les options de compilation ont été modifiées, tout sera recompilé" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "bulgare" @@ -284,9 +348,15 @@ msgstr "Graver la séquence d'initialisation" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "Grave la séquence d'initialisation vers la carte E/S\n(Cela pourrait prendre quelque temps)..." -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" -msgstr "Impossible d'ouvrir le croquis source !" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" +msgstr "" #: ../../../processing/app/Preferences.java:92 msgid "Canadian French" @@ -301,6 +371,10 @@ msgstr "Annuler" msgid "Cannot Rename" msgstr "Impossible de renommer" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "Retour chariot" @@ -345,11 +419,6 @@ msgstr "Fermer" msgid "Comment/Uncomment" msgstr "Commenter/Décommenter" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "Erreur de compilation, veuillez soumettre ce code à {0}" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "Compilation du croquis..." @@ -457,10 +526,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Impossible de lire les paramètres par défaut.\nVous devrez réinstaller l'environnement Arduino." -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "Impossible de lire les préférences depuis {0}" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "Impossible de lire le fichier de préférences actuel, tout sera recompilé" #: Base.java:2482 #, java-format @@ -489,6 +557,10 @@ msgstr "Impossible de renommer le croquis. (2)" msgid "Could not replace {0}" msgstr "Impossible de remplacer {0}" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "Impossible d'écrire le fichier de préférences" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Impossible d'archiver le croquis" @@ -558,6 +630,11 @@ msgstr "Enregistrement terminé." msgid "Done burning bootloader." msgstr "Gravure de la séquence d'initialisation terminée." +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "Compilation terminée." @@ -566,6 +643,10 @@ msgstr "Compilation terminée." msgid "Done printing." msgstr "Impression terminée." +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "Téléversement terminé" @@ -669,6 +750,10 @@ msgstr "Erreur lors de la gravure de la séquence d'initialisation." msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "Erreur lors de la gravure de la séquence d'initialisation : le paramètre de configuration « {0} » est manquant" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -678,11 +763,25 @@ msgstr "Erreur lors du chargement du code {0}" msgid "Error while printing." msgstr "Erreur d'impression." +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "Erreur lors du téléversement : le paramètre de configuration « {0} » est manquant" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "estonien" @@ -703,6 +802,11 @@ msgstr "Exportation annulée, les changements doivent d'abord être enregistrés msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "Impossible d''ouvrir le croquis : « {0} »" + #: Editor.java:491 msgid "File" msgstr "Fichier" @@ -750,9 +854,10 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "Pour plus de renseignement concernant l'installation de bibliothèque, veuillez vous référer à : http://arduino.cc/en/Guide/Libraries\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " -msgstr "Force la réinitialisation en utilisant une ouverture/fermeture à 1200 bps sur le port " +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" +msgstr "" #: Preferences.java:95 msgid "French" @@ -900,9 +1005,9 @@ msgstr "La bibliothèque a été ajoutée à votre dossier de bibliothèques. Ve msgid "Lithuaninan" msgstr "lituanien" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" -msgstr "Peu de mémoire disponible, des problèmes de stabilité peuvent survenir" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." +msgstr "" #: Preferences.java:107 msgid "Marathi" @@ -916,6 +1021,10 @@ msgstr "Message" msgid "Missing the */ from the end of a /* comment */" msgstr "Il manque */ à la fin du /* commentaire */" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "Davantage de préférences peuvent être éditées directement dans le fichier" @@ -924,6 +1033,18 @@ msgstr "Davantage de préférences peuvent être éditées directement dans le f msgid "Moving" msgstr "Déplacement" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "Il faut spécifier un et un seul fichier de croquis" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "n'ko" + #: Sketch.java:282 msgid "Name for new file:" msgstr "Nom du nouveau fichier :" @@ -960,6 +1081,10 @@ msgstr "Onglet suivant" msgid "No" msgstr "Non" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "Aucune carte sélectionnée, veuillez choisir une carte dans le menu Outil > Type de carte." @@ -968,6 +1093,10 @@ msgstr "Aucune carte sélectionnée, veuillez choisir une carte dans le menu Out msgid "No changes necessary for Auto Format." msgstr "Aucun changement nécessaire pour le formatage automatique." +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "Aucun fichier n'a été ajouté au croquis." @@ -980,6 +1109,10 @@ msgstr "Aucun lanceur disponible" msgid "No line ending" msgstr "Pas de fin de ligne" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "Non vraiment, vous devriez aller prendre l'air." @@ -989,6 +1122,19 @@ msgstr "Non vraiment, vous devriez aller prendre l'air." msgid "No reference available for \"{0}\"" msgstr "Aucune référence disponible pour « {0} »" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "Aucun fichiers de code valides trouvés" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "Aucun cœur configuré valide n'a été trouvé ! On quitte..." @@ -1025,6 +1171,10 @@ msgstr "OK" msgid "One file added to the sketch." msgstr "Un fichier a été ajouté au croquis." +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "Ouvrir" @@ -1061,14 +1211,27 @@ msgstr "Coller" msgid "Persian" msgstr "persan" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "persan (Iran)" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "Veuillez importer la bibliothèque SPI depuis le menu Croquis > Importer bibliothèque." +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "Veuillez importer la bibliothèque Wire depuis le menu Croquis > Importer bibliothèque..." + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "Veuillez installer JDK 1.5 ou ultérieur" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "polonais" @@ -1231,10 +1394,18 @@ msgstr "Enregistrer les changements dans « {0} » ? " msgid "Save sketch folder as..." msgstr "Enregistrer le dossier des croquis sous..." +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "Enregistrement..." +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "Sélectionner (ou créer) un dossier de croquis..." @@ -1267,20 +1438,6 @@ msgstr "Envoyer" msgid "Serial Monitor" msgstr "Moniteur série" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "Port série « {0} » déjà utilisé. Essayez de quitter tout logiciel qui pourrait s''en servir." - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "Port série « {0} » déjà utilisé. Essayez de quitter tout logiciel qui pourrait s''en servir." - #: Serial.java:194 #, java-format msgid "" @@ -1360,6 +1517,10 @@ msgstr "Le dossier contenant les croquis a disparu" msgid "Sketchbook location:" msgstr "Emplacement du carnet de croquis" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "Croquis (*.ino, *.pde)" @@ -1410,6 +1571,10 @@ msgstr "tamoul" msgid "The 'BYTE' keyword is no longer supported." msgstr "Le mot-clé « BYTE » n'est plus pris en charge." +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "La classe Client a été renommée EthernetClient" @@ -1477,11 +1642,11 @@ msgid "" "but anything besides the code will be lost." msgstr "Le dossier croquis a disparu.\nNous allons essayer de réenregistrer au même emplacement,\nmais seul le code sera conservé." -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." +"They should also be less than 64 characters long." msgstr "Le nom du croquis doit être changé. Les noms de croquis doivent consister\nde caractères ASCII et de chiffres (mais ne peuvent commencer par un chiffre).\nIls doivent aussi être plus courts que 64 caractères." #: Base.java:259 @@ -1493,6 +1658,12 @@ msgid "" "himself in the third person." msgstr "Le dossier contenant les croquis n'existe plus.\nArduino va aller à l'emplacement\npar défaut, et créer un nouveau dossier\nsi nécessaire. Arduino cessera ensuite\nde parler de lui-même à la troisième personne." +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1635,6 +1806,13 @@ msgstr "vietnamien" msgid "Visit Arduino.cc" msgstr "Visiter Arduino.cc" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "ATTENTION : la bibliothèque {0} prétend être exécutable sur la (ou les) architecture(s) {1} et peut être incompatible avec votre carte actuelle qui s'exécute sur {2}." + #: Base.java:2128 msgid "Warning" msgstr "Avertissement" @@ -1803,10 +1981,6 @@ msgstr "environnement" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "http://github.com/arduino/Arduino/issues" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1836,17 +2010,6 @@ msgstr "nom est nul" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "Le tampon mémoire readBytesUntil() est trop petit pour les {0} octets jusqu''au caractère {1} inclus" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "removeCode : erreur interne.. n'a pu trouver le code" - #: Editor.java:932 msgid "serialMenu is null" msgstr "serialMenu est nul" @@ -1857,6 +2020,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "le port série sélectionné {0} n''existe pas ou votre Arduino n''est pas connectée" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "option inconnue : {0}" + #: Preferences.java:391 msgid "upload" msgstr "téléversement" @@ -1880,3 +2048,45 @@ msgstr "{0} | Arduino {1}" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "{0} : Argument de --pref incorrect, doit être de la forme « pref=valeur »" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "{0} : nom de carte incorrect, il doit être de la forme « package:arch:carte » ou « package:arch:carte:options »" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "{0} : Paramètre incorrect de l''option « {1} » pour la carte « {2} »" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "{0} : Option incorrecte pour la carte « {1} »" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "{0} : Option incorrecte, elle doit être de la forme « nom=valeur »" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "{0} : architecture inconnue" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "{0} : carte inconnue" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "{0} : Package inconnu" diff --git a/arduino-core/src/processing/app/i18n/Resources_fr.properties b/arduino-core/src/processing/app/i18n/Resources_fr.properties index 094784341..70e806d30 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fr.properties +++ b/arduino-core/src/processing/app/i18n/Resources_fr.properties @@ -24,6 +24,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(\u00e9diter uniquement lorsque Arduino ne s'ex\u00e9cute pas) +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -60,9 +63,23 @@ Add\ File...=Ajouter un fichier... #: Base.java:963 Add\ Library...=Ajouter biblioth\u00e8que... +#: ../../../processing/app/Preferences.java:96 +Albanian=albanais + #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Une erreur est survenue lors de la r\u00e9paration de l'encodage du fichier.\nNe pas tenter d'enregistrer ce croquis, car cela pourrait \u00e9craser\nl'ancienne version. Utiliser Ouvrir pour r\u00e9ouvrir le croquis et r\u00e9essayer.\n +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Une erreur inconnue est survenue en essayant de\ncharger du code sp\u00e9cifique \u00e0 votre plate-forme. @@ -112,12 +129,33 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u00cates-vous certain de vouloir #: Sketch.java:587 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u00cates-vous certain de vouloir supprimer ce croquis\u00a0? +#: ../../../processing/app/Base.java:356 +Argument\ required\ for\ --board=Param\u00e8tre obligatoire avec --board + +#: ../../../processing/app/Base.java:370 +Argument\ required\ for\ --curdir=Param\u00e8tre obligatoire avec --curdir + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +Argument\ required\ for\ --port=Param\u00e8tre obligatoire avec --port + +#: ../../../processing/app/Base.java:377 +Argument\ required\ for\ --pref=Param\u00e8tre obligatoire avec --pref + +#: ../../../processing/app/Base.java:384 +Argument\ required\ for\ --preferences-file=Param\u00e8tre obligatoire avec --preferences-file + #: ../../../processing/app/Preferences.java:137 Armenian=arm\u00e9nien #: ../../../processing/app/Preferences.java:138 Asturian=asturien +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 Auto\ Format=Formatage automatique @@ -149,6 +187,12 @@ Bad\ error\ line\:\ {0}=Erreur \u00e0 la ligne\u00a0\: {0} #: Editor.java:2136 Bad\ file\ selected=Mauvais fichier s\u00e9lectionn\u00e9 +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +Basque=basque + #: ../../../processing/app/Preferences.java:139 Belarusian=bi\u00e9lorusse @@ -175,6 +219,9 @@ Browse=Parcourir #: Sketch.java:1392 Sketch.java:1423 Build\ folder\ disappeared\ or\ could\ not\ be\ written=Dossier de compilation disparu ou n'a pas pu \u00eatre cr\u00e9\u00e9 +#: ../../../processing/app/Sketch.java:1530 +Build\ options\ changed,\ rebuilding\ all=Les options de compilation ont \u00e9t\u00e9 modifi\u00e9es, tout sera recompil\u00e9 + #: ../../../processing/app/Preferences.java:80 Bulgarian=bulgare @@ -187,8 +234,13 @@ Burn\ Bootloader=Graver la s\u00e9quence d'initialisation #: Editor.java:2504 Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Grave la s\u00e9quence d'initialisation vers la carte E/S\n(Cela pourrait prendre quelque temps)... -#: ../../../processing/app/Base.java:368 -Can't\ open\ source\ sketch\!=Impossible d'ouvrir le croquis source \! +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 Canadian\ French=fran\u00e7ais - Canada @@ -200,6 +252,9 @@ Cancel=Annuler #: Sketch.java:455 Cannot\ Rename=Impossible de renommer +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 Carriage\ return=Retour chariot @@ -233,10 +288,6 @@ Close=Fermer #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=Commenter/D\u00e9commenter -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Erreur de compilation, veuillez soumettre ce code \u00e0 {0} - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=Compilation du croquis... @@ -312,9 +363,8 @@ Could\ not\ re-save\ sketch=Impossible de r\u00e9enregistrer le croquis #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Impossible de lire les param\u00e8tres par d\u00e9faut.\nVous devrez r\u00e9installer l'environnement Arduino. -#: Preferences.java:258 -#, java-format -Could\ not\ read\ preferences\ from\ {0}=Impossible de lire les pr\u00e9f\u00e9rences depuis {0} +#: ../../../processing/app/Sketch.java:1525 +Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=Impossible de lire le fichier de pr\u00e9f\u00e9rences actuel, tout sera recompil\u00e9 #: Base.java:2482 #, java-format @@ -337,6 +387,9 @@ Could\ not\ rename\ the\ sketch.\ (2)=Impossible de renommer le croquis. (2) #, java-format Could\ not\ replace\ {0}=Impossible de remplacer {0} +#: ../../../processing/app/Sketch.java:1579 +Could\ not\ write\ build\ preferences\ file=Impossible d'\u00e9crire le fichier de pr\u00e9f\u00e9rences + #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Impossible d'archiver le croquis @@ -385,12 +438,19 @@ Done\ Saving.=Enregistrement termin\u00e9. #: Editor.java:2510 Done\ burning\ bootloader.=Gravure de la s\u00e9quence d'initialisation termin\u00e9e. +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=Compilation termin\u00e9e. #: Editor.java:2564 Done\ printing.=Impression termin\u00e9e. +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=T\u00e9l\u00e9versement termin\u00e9 @@ -469,6 +529,9 @@ Error\ while\ burning\ bootloader.=Erreur lors de la gravure de la s\u00e9quence #: ../../../processing/app/Editor.java:2555 Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=Erreur lors de la gravure de la s\u00e9quence d'initialisation \: le param\u00e8tre de configuration \u00ab {0} \u00bb est manquant +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=Erreur lors du chargement du code {0} @@ -476,10 +539,21 @@ Error\ while\ loading\ code\ {0}=Erreur lors du chargement du code {0} #: Editor.java:2567 Error\ while\ printing.=Erreur d'impression. +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=Erreur lors du t\u00e9l\u00e9versement \: le param\u00e8tre de configuration \u00ab {0} \u00bb est manquant +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 Estonian=estonien @@ -495,6 +569,10 @@ Export\ canceled,\ changes\ must\ first\ be\ saved.=Exportation annul\u00e9e, le #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +Failed\ to\ open\ sketch\:\ "{0}"=Impossible d''ouvrir le croquis \: \u00ab {0} \u00bb + #: Editor.java:491 File=Fichier @@ -529,8 +607,9 @@ Fix\ Encoding\ &\ Reload=R\u00e9parer encodage & recharger #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=Pour plus de renseignement concernant l'installation de biblioth\u00e8que, veuillez vous r\u00e9f\u00e9rer \u00e0 \: http\://arduino.cc/en/Guide/Libraries\n -#: debug/BasicUploader.java:80 -Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =Force la r\u00e9initialisation en utilisant une ouverture/fermeture \u00e0 1200 bps sur le port +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=fran\u00e7ais @@ -634,8 +713,8 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=La biblioth #: Preferences.java:106 Lithuaninan=lituanien -#: ../../../processing/app/Sketch.java:1660 -Low\ memory\ available,\ stability\ problems\ may\ occur=Peu de m\u00e9moire disponible, des probl\u00e8mes de stabilit\u00e9 peuvent survenir +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 Marathi=marathe @@ -646,12 +725,24 @@ Message=Message #: ../../../processing/app/preproc/PdePreprocessor.java:412 Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Il manque */ \u00e0 la fin du /* commentaire */ +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Davantage de pr\u00e9f\u00e9rences peuvent \u00eatre \u00e9dit\u00e9es directement dans le fichier #: Editor.java:2156 Moving=D\u00e9placement +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +Must\ specify\ exactly\ one\ sketch\ file=Il faut sp\u00e9cifier un et un seul fichier de croquis + +#: ../../../processing/app/Preferences.java:158 +N'Ko=n'ko + #: Sketch.java:282 Name\ for\ new\ file\:=Nom du nouveau fichier\u00a0\: @@ -679,12 +770,18 @@ Next\ Tab=Onglet suivant #: Preferences.java:78 UpdateCheck.java:108 No=Non +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Aucune carte s\u00e9lectionn\u00e9e, veuillez choisir une carte dans le menu Outil > Type de carte. #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Aucun changement n\u00e9cessaire pour le formatage automatique. +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=Aucun fichier n'a \u00e9t\u00e9 ajout\u00e9 au croquis. @@ -694,6 +791,9 @@ No\ launcher\ available=Aucun lanceur disponible #: SerialMonitor.java:112 No\ line\ ending=Pas de fin de ligne +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Non vraiment, vous devriez aller prendre l'air. @@ -701,6 +801,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Non vraiment, vous devriez a #, java-format No\ reference\ available\ for\ "{0}"=Aucune r\u00e9f\u00e9rence disponible pour \u00ab\u00a0{0}\u00a0\u00bb +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +No\ valid\ code\ files\ found=Aucun fichiers de code valides trouv\u00e9s + #: ../../../processing/app/Base.java:309 No\ valid\ configured\ cores\ found\!\ Exiting...=Aucun c\u0153ur configur\u00e9 valide n'a \u00e9t\u00e9 trouv\u00e9 \! On quitte... @@ -727,6 +837,9 @@ OK=OK #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=Un fichier a \u00e9t\u00e9 ajout\u00e9 au croquis. +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=Ouvrir @@ -754,12 +867,22 @@ Paste=Coller #: Preferences.java:109 Persian=persan +#: ../../../processing/app/Preferences.java:161 +Persian\ (Iran)=persan (Iran) + #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Veuillez importer la biblioth\u00e8que SPI depuis le menu Croquis > Importer biblioth\u00e8que. +#: ../../../processing/app/debug/Compiler.java:529 +Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Veuillez importer la biblioth\u00e8que Wire depuis le menu Croquis > Importer biblioth\u00e8que... + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=Veuillez installer JDK 1.5 ou ult\u00e9rieur +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 Polish=polonais @@ -881,9 +1004,15 @@ Save\ changes\ to\ "{0}"?\ \ =Enregistrer les changements dans \u00ab\u00a0{0}\u #: Sketch.java:825 Save\ sketch\ folder\ as...=Enregistrer le dossier des croquis sous... +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=Enregistrement... +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=S\u00e9lectionner (ou cr\u00e9er) un dossier de croquis... @@ -908,14 +1037,6 @@ Send=Envoyer #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=Moniteur s\u00e9rie -#: Serial.java:174 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Port s\u00e9rie \u00ab\u00a0{0}\u00a0\u00bb d\u00e9j\u00e0 utilis\u00e9. Essayez de quitter tout logiciel qui pourrait s''en servir. - -#: Serial.java:121 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=Port s\u00e9rie \u00ab\u00a0{0}\u00a0\u00bb d\u00e9j\u00e0 utilis\u00e9. Essayez de quitter tout logiciel qui pourrait s''en servir. - #: Serial.java:194 #, java-format Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Port s\u00e9rie \u00ab\u00a0{0}\u00a0\u00bb non trouv\u00e9. L''avez-vous bien s\u00e9lectionn\u00e9 dans le menu Outils > Port s\u00e9rie\u00a0? @@ -970,6 +1091,9 @@ Sketchbook\ folder\ disappeared=Le dossier contenant les croquis a disparu #: Preferences.java:315 Sketchbook\ location\:=Emplacement du carnet de croquis +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 Sketches\ (*.ino,\ *.pde)=Croquis (*.ino, *.pde) @@ -1004,6 +1128,9 @@ Tamil=tamoul #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=Le mot-cl\u00e9 \u00ab\u00a0BYTE\u00a0\u00bb n'est plus pris en charge. +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=La classe Client a \u00e9t\u00e9 renomm\u00e9e EthernetClient @@ -1040,12 +1167,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Le dossier croquis a disparu.\nNous allons essayer de r\u00e9enregistrer au m\u00eame emplacement,\nmais seul le code sera conserv\u00e9. -#: Sketch.java:2018 -The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=Le nom du croquis doit \u00eatre chang\u00e9. Les noms de croquis doivent consister\nde caract\u00e8res ASCII et de chiffres (mais ne peuvent commencer par un chiffre).\nIls doivent aussi \u00eatre plus courts que 64 caract\u00e8res. +#: ../../../processing/app/Sketch.java:2028 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.=Le nom du croquis doit \u00eatre chang\u00e9. Les noms de croquis doivent consister\nde caract\u00e8res ASCII et de chiffres (mais ne peuvent commencer par un chiffre).\nIls doivent aussi \u00eatre plus courts que 64 caract\u00e8res. #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Le dossier contenant les croquis n'existe plus.\nArduino va aller \u00e0 l'emplacement\npar d\u00e9faut, et cr\u00e9er un nouveau dossier\nsi n\u00e9cessaire. Arduino cessera ensuite\nde parler de lui-m\u00eame \u00e0 la troisi\u00e8me personne. +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Ce fichier a d\u00e9j\u00e0 \u00e9t\u00e9 copi\u00e9 \u00e0\nl'emplacement duquel vous essayez de l'ajouter.\nJ'frai rien dans ce cas-l\u00e0. @@ -1149,6 +1279,10 @@ Vietnamese=vietnamien #: Editor.java:1105 Visit\ Arduino.cc=Visiter Arduino.cc +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=ATTENTION \: la biblioth\u00e8que {0} pr\u00e9tend \u00eatre ex\u00e9cutable sur la (ou les) architecture(s) {1} et peut \u00eatre incompatible avec votre carte actuelle qui s'ex\u00e9cute sur {2}. + #: Base.java:2128 Warning=Avertissement @@ -1247,9 +1381,6 @@ environment=environnement #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1272,13 +1403,6 @@ name\ is\ null=nom est nul #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=Le tampon m\u00e9moire readBytesUntil() est trop petit pour les {0} octets jusqu''au caract\u00e8re {1} inclus - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\u00a0\: erreur interne.. n'a pu trouver le code - #: Editor.java:932 serialMenu\ is\ null=serialMenu est nul @@ -1286,6 +1410,10 @@ serialMenu\ is\ null=serialMenu est nul #, java-format the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=le port s\u00e9rie s\u00e9lectionn\u00e9 {0} n''existe pas ou votre Arduino n''est pas connect\u00e9e +#: ../../../processing/app/Base.java:389 +#, java-format +unknown\ option\:\ {0}=option inconnue \: {0} + #: Preferences.java:391 upload=t\u00e9l\u00e9versement @@ -1304,3 +1432,35 @@ upload=t\u00e9l\u00e9versement #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"={0} \: Argument de --pref incorrect, doit \u00eatre de la forme \u00ab pref\=valeur \u00bb + +#: ../../../processing/app/Base.java:476 +#, java-format +{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"={0} \: nom de carte incorrect, il doit \u00eatre de la forme \u00ab package\:arch\:carte \u00bb ou \u00ab package\:arch\:carte\:options \u00bb + +#: ../../../processing/app/Base.java:509 +#, java-format +{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"={0} \: Param\u00e8tre incorrect de l''option \u00ab {1} \u00bb pour la carte \u00ab {2} \u00bb + +#: ../../../processing/app/Base.java:507 +#, java-format +{0}\:\ Invalid\ option\ for\ board\ "{1}"={0} \: Option incorrecte pour la carte \u00ab {1} \u00bb + +#: ../../../processing/app/Base.java:502 +#, java-format +{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"={0} \: Option incorrecte, elle doit \u00eatre de la forme \u00ab nom\=valeur \u00bb + +#: ../../../processing/app/Base.java:486 +#, java-format +{0}\:\ Unknown\ architecture={0} \: architecture inconnue + +#: ../../../processing/app/Base.java:491 +#, java-format +{0}\:\ Unknown\ board={0} \: carte inconnue + +#: ../../../processing/app/Base.java:481 +#, java-format +{0}\:\ Unknown\ package={0} \: Package inconnu diff --git a/arduino-core/src/processing/app/i18n/Resources_fr_CA.po b/arduino-core/src/processing/app/i18n/Resources_fr_CA.po index 64bbe3385..624d23eb4 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fr_CA.po +++ b/arduino-core/src/processing/app/i18n/Resources_fr_CA.po @@ -34,6 +34,12 @@ msgstr "« Mouse » n'est supporté que sur l'Arduino Leonardo" msgid "(edit only when Arduino is not running)" msgstr "(éditer uniquement lorsque Arduino ne s'exécute pas)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -92,6 +98,10 @@ msgstr "Ajouter un fichier..." msgid "Add Library..." msgstr "Ajouter une bibliothèque..." +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -99,6 +109,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "Une erreur est survenue lors de la réparation de l'encodage du fichier.\nNe pas tenter d'enregistrer ce croquis, car cela pourrait écraser\nl'ancienne version. Utiliser Ouvrir pour ré-ouvrir le croquis et réessayer.\n" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -177,6 +201,30 @@ msgstr "Êtes-vous certain de vouloir supprimer « {0} » ?" msgid "Are you sure you want to delete this sketch?" msgstr "Êtes-vous certain de vouloir supprimer ce croquis ?" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "" @@ -185,6 +233,10 @@ msgstr "" msgid "Asturian" msgstr "" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "Formatage automatique" @@ -226,6 +278,14 @@ msgstr "Erreur à la ligne : {0}" msgid "Bad file selected" msgstr "Mauvais fichier sélectionné" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "" @@ -262,6 +322,10 @@ msgstr "Parcourir" msgid "Build folder disappeared or could not be written" msgstr "Dossier de construction disparu ou n'a pas pu être créé" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "" @@ -278,8 +342,14 @@ msgstr "Graver la séquence d'initialisation" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "Grave la séquence d'initialisation vers la carte E/S\n(Cela pourrait prendre quelque temps)..." -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" msgstr "" #: ../../../processing/app/Preferences.java:92 @@ -295,6 +365,10 @@ msgstr "Annuler" msgid "Cannot Rename" msgstr "Impossible de renommer" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "Retour chariot" @@ -339,11 +413,6 @@ msgstr "Fermer" msgid "Comment/Uncomment" msgstr "Commenter/Décommenter" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "Erreur de compilation, veuillez soumettre ce code à {0}" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "Compilation du croquis..." @@ -451,10 +520,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Impossible de lire les paramètres par défaut.\nVous devrez réinstaller Arduino." -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "Impossible de lire les préférences depuis {0}" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "" #: Base.java:2482 #, java-format @@ -483,6 +551,10 @@ msgstr "Impossible de renommer le croquis. (2)" msgid "Could not replace {0}" msgstr "Impossible de remplacer {0}" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Impossible d'archiver le croquis" @@ -552,6 +624,11 @@ msgstr "Enregistrement terminé." msgid "Done burning bootloader." msgstr "Gravure de la séquence d'initialisation terminée." +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "Compilation terminée." @@ -560,6 +637,10 @@ msgstr "Compilation terminée." msgid "Done printing." msgstr "Impression terminée." +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "Téléversement terminé" @@ -663,6 +744,10 @@ msgstr "Erreur lors de la gravure de la séquence d'initialisation." msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -672,11 +757,25 @@ msgstr "Erreur lors du chargement du code {0}" msgid "Error while printing." msgstr "Erreur d'impression." +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "Estonien" @@ -697,6 +796,11 @@ msgstr "Exportation annulée, les changements doivent d'abord être enregistrés msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "" + #: Editor.java:491 msgid "File" msgstr "Fichier" @@ -744,9 +848,10 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "Pour plus d'informations sur l'installation de bibliothèques, visiter: http://arduino.cc/en/Guide/Libraries\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " -msgstr "Force la réinitialisation en utilisant une ouverture/fermeture à 1200 bps \nsur le port " +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" +msgstr "" #: Preferences.java:95 msgid "French" @@ -894,8 +999,8 @@ msgstr "Bibliothèque ajoutée à tes bibliothèques. Voir le menu «Importer bi msgid "Lithuaninan" msgstr "Lithuanien" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: Preferences.java:107 @@ -910,6 +1015,10 @@ msgstr "Message" msgid "Missing the */ from the end of a /* comment */" msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "Davantage de préférences peuvent être éditées directement dans le fichier" @@ -918,6 +1027,18 @@ msgstr "Davantage de préférences peuvent être éditées directement dans le f msgid "Moving" msgstr "Déplacement" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "" + #: Sketch.java:282 msgid "Name for new file:" msgstr "Nom du nouveau fichier:" @@ -954,6 +1075,10 @@ msgstr "Onglet suivant" msgid "No" msgstr "Non" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "Aucune carte sélectionnée, veuillez choisir une carte dans le menu Outil > \nType de carte." @@ -962,6 +1087,10 @@ msgstr "Aucune carte sélectionnée, veuillez choisir une carte dans le menu Out msgid "No changes necessary for Auto Format." msgstr "Aucun changement nécessaire pour le formatage automatique." +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "Aucun fichier n'a été ajouté au croquis." @@ -974,6 +1103,10 @@ msgstr "Aucun lanceur disponible" msgid "No line ending" msgstr "Pas de fin de ligne" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "Non vraiment, tu devrais aller prendre l'air." @@ -983,6 +1116,19 @@ msgstr "Non vraiment, tu devrais aller prendre l'air." msgid "No reference available for \"{0}\"" msgstr "Aucune référence disponible pour « {0} »" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "" @@ -1019,6 +1165,10 @@ msgstr "OK" msgid "One file added to the sketch." msgstr "Un fichier ajouté au croquis." +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "Ouvrir" @@ -1055,14 +1205,27 @@ msgstr "Coller" msgid "Persian" msgstr "Farsi" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "Veuillez importer la bibliothèque SPI depuis le menu Croquis > Importer \nbibliothèque." +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "" + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "Veuillez installer JDK 1.5 ou ultérieur" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "Polonais" @@ -1225,10 +1388,18 @@ msgstr "Enregistrer les changements dans « {0} » ? " msgid "Save sketch folder as..." msgstr "Enregistrer le dossier des croquis sous..." +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "Enregistrement..." +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "Sélectionner (ou créer) un dossier de croquis..." @@ -1261,20 +1432,6 @@ msgstr "Envoyer" msgid "Serial Monitor" msgstr "Moniteur série" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "Port série « {0} » déjà utilisé. Essayez de quitter tout logiciel qui \npourrait s'en servir." - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "Port série « {0} » déjà utilisé. Essayez de quitter tout logiciel qui \npourrait s'en servir." - #: Serial.java:194 #, java-format msgid "" @@ -1354,6 +1511,10 @@ msgstr "Le dossier des croquis est disparu" msgid "Sketchbook location:" msgstr "Emplacement du carnet de croquis:" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "" @@ -1404,6 +1565,10 @@ msgstr "Tamoul" msgid "The 'BYTE' keyword is no longer supported." msgstr "Le mot-clé « BYTE » n'est plus supporté." +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "La classe Client a été renommée EthernetClient" @@ -1471,12 +1636,12 @@ msgid "" "but anything besides the code will be lost." msgstr "Le dossier croquis a disparu.\n Nous allons essayer de ré-enregistrer au même emplacement,\nmais tout sauf le code sera perdu." -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." -msgstr "Le nom du croquis doit être changé. Les noms de croquis doivent consister\nde caractères ASCII et de chiffres (mais ne peuvent commencer par un \nchiffre).\nIls doivent aussi être plus courts que 64 caractères." +"They should also be less than 64 characters long." +msgstr "" #: Base.java:259 msgid "" @@ -1487,6 +1652,12 @@ msgid "" "himself in the third person." msgstr "Le dossier des croquis n'existe plus.\nArduino va aller à l'emplacement\npar défaut, et créer un nouveau dossier\ncroquis si nécessaire. Arduino cessera ensuite\nde parler de lui-même à la troisième personne." +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1629,6 +1800,13 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "Visiter Arduino.cc" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "" + #: Base.java:2128 msgid "Warning" msgstr "Avertissement" @@ -1797,10 +1975,6 @@ msgstr "environnement" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1830,17 +2004,6 @@ msgstr "nom est nul" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "Le tampon mémoire readBytesUntil() est trop petit pour les {0} octets \njusqu''au caractère {1} inclus" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "removeCode: erreur interne.. n'a pu trouver le code" - #: Editor.java:932 msgid "serialMenu is null" msgstr "serialMenu est nul" @@ -1851,6 +2014,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "le port série sélectionné {0} n'existe pas ou votre Arduino n'est pas connecté" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "" + #: Preferences.java:391 msgid "upload" msgstr "téléversement" @@ -1874,3 +2042,45 @@ msgstr "{0} | Arduino {1}" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "" diff --git a/arduino-core/src/processing/app/i18n/Resources_fr_CA.properties b/arduino-core/src/processing/app/i18n/Resources_fr_CA.properties index a27af1a68..648baba51 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fr_CA.properties +++ b/arduino-core/src/processing/app/i18n/Resources_fr_CA.properties @@ -18,6 +18,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(\u00e9diter uniquement lorsque Arduino ne s'ex\u00e9cute pas) +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -54,9 +57,23 @@ Add\ File...=Ajouter un fichier... #: Base.java:963 Add\ Library...=Ajouter une biblioth\u00e8que... +#: ../../../processing/app/Preferences.java:96 +!Albanian= + #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Une erreur est survenue lors de la r\u00e9paration de l'encodage du fichier.\nNe pas tenter d'enregistrer ce croquis, car cela pourrait \u00e9craser\nl'ancienne version. Utiliser Ouvrir pour r\u00e9-ouvrir le croquis et r\u00e9essayer.\n +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Une erreur inconnue est survenue en essayant de charger\ndu code de sp\u00e9cifique \u00e0 votre plate-forme. @@ -106,12 +123,33 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u00cates-vous certain de vouloir #: Sketch.java:587 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u00cates-vous certain de vouloir supprimer ce croquis ? +#: ../../../processing/app/Base.java:356 +!Argument\ required\ for\ --board= + +#: ../../../processing/app/Base.java:370 +!Argument\ required\ for\ --curdir= + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +!Argument\ required\ for\ --port= + +#: ../../../processing/app/Base.java:377 +!Argument\ required\ for\ --pref= + +#: ../../../processing/app/Base.java:384 +!Argument\ required\ for\ --preferences-file= + #: ../../../processing/app/Preferences.java:137 !Armenian= #: ../../../processing/app/Preferences.java:138 !Asturian= +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 Auto\ Format=Formatage automatique @@ -143,6 +181,12 @@ Bad\ error\ line\:\ {0}=Erreur \u00e0 la ligne \: {0} #: Editor.java:2136 Bad\ file\ selected=Mauvais fichier s\u00e9lectionn\u00e9 +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +!Basque= + #: ../../../processing/app/Preferences.java:139 !Belarusian= @@ -169,6 +213,9 @@ Browse=Parcourir #: Sketch.java:1392 Sketch.java:1423 Build\ folder\ disappeared\ or\ could\ not\ be\ written=Dossier de construction disparu ou n'a pas pu \u00eatre cr\u00e9\u00e9 +#: ../../../processing/app/Sketch.java:1530 +!Build\ options\ changed,\ rebuilding\ all= + #: ../../../processing/app/Preferences.java:80 !Bulgarian= @@ -181,8 +228,13 @@ Burn\ Bootloader=Graver la s\u00e9quence d'initialisation #: Editor.java:2504 Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Grave la s\u00e9quence d'initialisation vers la carte E/S\n(Cela pourrait prendre quelque temps)... -#: ../../../processing/app/Base.java:368 -!Can't\ open\ source\ sketch\!= +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 !Canadian\ French= @@ -194,6 +246,9 @@ Cancel=Annuler #: Sketch.java:455 Cannot\ Rename=Impossible de renommer +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 Carriage\ return=Retour chariot @@ -227,10 +282,6 @@ Close=Fermer #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=Commenter/D\u00e9commenter -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Erreur de compilation, veuillez soumettre ce code \u00e0 {0} - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=Compilation du croquis... @@ -306,9 +357,8 @@ Could\ not\ re-save\ sketch=Impossible de r\u00e9-enregistrer le croquis #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Impossible de lire les param\u00e8tres par d\u00e9faut.\nVous devrez r\u00e9installer Arduino. -#: Preferences.java:258 -#, java-format -Could\ not\ read\ preferences\ from\ {0}=Impossible de lire les pr\u00e9f\u00e9rences depuis {0} +#: ../../../processing/app/Sketch.java:1525 +!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= #: Base.java:2482 #, java-format @@ -331,6 +381,9 @@ Could\ not\ rename\ the\ sketch.\ (2)=Impossible de renommer le croquis. (2) #, java-format Could\ not\ replace\ {0}=Impossible de remplacer {0} +#: ../../../processing/app/Sketch.java:1579 +!Could\ not\ write\ build\ preferences\ file= + #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Impossible d'archiver le croquis @@ -379,12 +432,19 @@ Done\ Saving.=Enregistrement termin\u00e9. #: Editor.java:2510 Done\ burning\ bootloader.=Gravure de la s\u00e9quence d'initialisation termin\u00e9e. +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=Compilation termin\u00e9e. #: Editor.java:2564 Done\ printing.=Impression termin\u00e9e. +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=T\u00e9l\u00e9versement termin\u00e9 @@ -463,6 +523,9 @@ Error\ while\ burning\ bootloader.=Erreur lors de la gravure de la s\u00e9quence #: ../../../processing/app/Editor.java:2555 !Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=Erreur lors du chargement du code {0} @@ -470,10 +533,21 @@ Error\ while\ loading\ code\ {0}=Erreur lors du chargement du code {0} #: Editor.java:2567 Error\ while\ printing.=Erreur d'impression. +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 !Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 Estonian=Estonien @@ -489,6 +563,10 @@ Export\ canceled,\ changes\ must\ first\ be\ saved.=Exportation annul\u00e9e, le #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +!Failed\ to\ open\ sketch\:\ "{0}"= + #: Editor.java:491 File=Fichier @@ -523,8 +601,9 @@ Fix\ Encoding\ &\ Reload=R\u00e9parer encodage & recharger #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=Pour plus d'informations sur l'installation de biblioth\u00e8ques, visiter\: http\://arduino.cc/en/Guide/Libraries\n -#: debug/BasicUploader.java:80 -Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =Force la r\u00e9initialisation en utilisant une ouverture/fermeture \u00e0 1200 bps \nsur le port +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=Fran\u00e7ais @@ -628,8 +707,8 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Biblioth\u0 #: Preferences.java:106 Lithuaninan=Lithuanien -#: ../../../processing/app/Sketch.java:1660 -!Low\ memory\ available,\ stability\ problems\ may\ occur= +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 Marathi=Marathi @@ -640,12 +719,24 @@ Message=Message #: ../../../processing/app/preproc/PdePreprocessor.java:412 !Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Davantage de pr\u00e9f\u00e9rences peuvent \u00eatre \u00e9dit\u00e9es directement dans le fichier #: Editor.java:2156 Moving=D\u00e9placement +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +!Must\ specify\ exactly\ one\ sketch\ file= + +#: ../../../processing/app/Preferences.java:158 +!N'Ko= + #: Sketch.java:282 Name\ for\ new\ file\:=Nom du nouveau fichier\: @@ -673,12 +764,18 @@ Next\ Tab=Onglet suivant #: Preferences.java:78 UpdateCheck.java:108 No=Non +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Aucune carte s\u00e9lectionn\u00e9e, veuillez choisir une carte dans le menu Outil > \nType de carte. #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Aucun changement n\u00e9cessaire pour le formatage automatique. +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=Aucun fichier n'a \u00e9t\u00e9 ajout\u00e9 au croquis. @@ -688,6 +785,9 @@ No\ launcher\ available=Aucun lanceur disponible #: SerialMonitor.java:112 No\ line\ ending=Pas de fin de ligne +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Non vraiment, tu devrais aller prendre l'air. @@ -695,6 +795,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Non vraiment, tu devrais all #, java-format No\ reference\ available\ for\ "{0}"=Aucune r\u00e9f\u00e9rence disponible pour \u00ab {0} \u00bb +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +!No\ valid\ code\ files\ found= + #: ../../../processing/app/Base.java:309 !No\ valid\ configured\ cores\ found\!\ Exiting...= @@ -721,6 +831,9 @@ OK=OK #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=Un fichier ajout\u00e9 au croquis. +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=Ouvrir @@ -748,12 +861,22 @@ Paste=Coller #: Preferences.java:109 Persian=Farsi +#: ../../../processing/app/Preferences.java:161 +!Persian\ (Iran)= + #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Veuillez importer la biblioth\u00e8que SPI depuis le menu Croquis > Importer \nbiblioth\u00e8que. +#: ../../../processing/app/debug/Compiler.java:529 +!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=Veuillez installer JDK 1.5 ou ult\u00e9rieur +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 Polish=Polonais @@ -875,9 +998,15 @@ Save\ changes\ to\ "{0}"?\ \ =Enregistrer les changements dans \u00ab {0} \u00bb #: Sketch.java:825 Save\ sketch\ folder\ as...=Enregistrer le dossier des croquis sous... +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=Enregistrement... +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=S\u00e9lectionner (ou cr\u00e9er) un dossier de croquis... @@ -902,14 +1031,6 @@ Send=Envoyer #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=Moniteur s\u00e9rie -#: Serial.java:174 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Port s\u00e9rie \u00ab {0} \u00bb d\u00e9j\u00e0 utilis\u00e9. Essayez de quitter tout logiciel qui \npourrait s'en servir. - -#: Serial.java:121 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=Port s\u00e9rie \u00ab {0} \u00bb d\u00e9j\u00e0 utilis\u00e9. Essayez de quitter tout logiciel qui \npourrait s'en servir. - #: Serial.java:194 #, java-format Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Port s\u00e9rie \u00ab {0} \u00bb non trouv\u00e9. L'avez-vous bien s\u00e9lectionn\u00e9 dans le menu \nOutils > Port s\u00e9rie ? @@ -964,6 +1085,9 @@ Sketchbook\ folder\ disappeared=Le dossier des croquis est disparu #: Preferences.java:315 Sketchbook\ location\:=Emplacement du carnet de croquis\: +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 !Sketches\ (*.ino,\ *.pde)= @@ -998,6 +1122,9 @@ Tamil=Tamoul #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=Le mot-cl\u00e9 \u00ab BYTE \u00bb n'est plus support\u00e9. +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=La classe Client a \u00e9t\u00e9 renomm\u00e9e EthernetClient @@ -1034,12 +1161,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Le dossier croquis a disparu.\n Nous allons essayer de r\u00e9-enregistrer au m\u00eame emplacement,\nmais tout sauf le code sera perdu. -#: Sketch.java:2018 -The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=Le nom du croquis doit \u00eatre chang\u00e9. Les noms de croquis doivent consister\nde caract\u00e8res ASCII et de chiffres (mais ne peuvent commencer par un \nchiffre).\nIls doivent aussi \u00eatre plus courts que 64 caract\u00e8res. +#: ../../../processing/app/Sketch.java:2028 +!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Le dossier des croquis n'existe plus.\nArduino va aller \u00e0 l'emplacement\npar d\u00e9faut, et cr\u00e9er un nouveau dossier\ncroquis si n\u00e9cessaire. Arduino cessera ensuite\nde parler de lui-m\u00eame \u00e0 la troisi\u00e8me personne. +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Ce fichier a d\u00e9j\u00e0 \u00e9t\u00e9 copi\u00e9 \u00e0\nl'emplacement duquel vous essayez de l'ajouter.\nJ'frai rien dans ce cas-l\u00e0. @@ -1143,6 +1273,10 @@ Verify\ code\ after\ upload=V\u00e9rifier le code apr\u00e8s t\u00e9l\u00e9verse #: Editor.java:1105 Visit\ Arduino.cc=Visiter Arduino.cc +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= + #: Base.java:2128 Warning=Avertissement @@ -1241,9 +1375,6 @@ environment=environnement #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -!http\://github.com/arduino/Arduino/issues= - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1266,13 +1397,6 @@ name\ is\ null=nom est nul #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=Le tampon m\u00e9moire readBytesUntil() est trop petit pour les {0} octets \njusqu''au caract\u00e8re {1} inclus - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: erreur interne.. n'a pu trouver le code - #: Editor.java:932 serialMenu\ is\ null=serialMenu est nul @@ -1280,6 +1404,10 @@ serialMenu\ is\ null=serialMenu est nul #, java-format the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=le port s\u00e9rie s\u00e9lectionn\u00e9 {0} n'existe pas ou votre Arduino n'est pas connect\u00e9 +#: ../../../processing/app/Base.java:389 +#, java-format +!unknown\ option\:\ {0}= + #: Preferences.java:391 upload=t\u00e9l\u00e9versement @@ -1298,3 +1426,35 @@ upload=t\u00e9l\u00e9versement #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= + +#: ../../../processing/app/Base.java:476 +#, java-format +!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= + +#: ../../../processing/app/Base.java:509 +#, java-format +!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= + +#: ../../../processing/app/Base.java:507 +#, java-format +!{0}\:\ Invalid\ option\ for\ board\ "{1}"= + +#: ../../../processing/app/Base.java:502 +#, java-format +!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= + +#: ../../../processing/app/Base.java:486 +#, java-format +!{0}\:\ Unknown\ architecture= + +#: ../../../processing/app/Base.java:491 +#, java-format +!{0}\:\ Unknown\ board= + +#: ../../../processing/app/Base.java:481 +#, java-format +!{0}\:\ Unknown\ package= diff --git a/arduino-core/src/processing/app/i18n/Resources_gl.po b/arduino-core/src/processing/app/i18n/Resources_gl.po index 0269dc1c4..98b764f74 100644 --- a/arduino-core/src/processing/app/i18n/Resources_gl.po +++ b/arduino-core/src/processing/app/i18n/Resources_gl.po @@ -33,6 +33,12 @@ msgstr "«Mouse» só é compatíbel coa Arduino Leonardo" msgid "(edit only when Arduino is not running)" msgstr "(editar só cando Arduino non se esté a executar)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -91,6 +97,10 @@ msgstr "Engadir un ficheiro..." msgid "Add Library..." msgstr "Engadir unha biblioteca..." +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -98,6 +108,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "Ocorreu un erro mentres se intentaba amaña-la codificación do\narquivo. Non intentes gardar este sketch porque pode sobreescribir a\nversión anterior. Utiliza Abrir para volver a abrir o sketch e intentalo de novo.\n" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -176,6 +200,30 @@ msgstr "Desexa realmente borrar «{0}»?" msgid "Are you sure you want to delete this sketch?" msgstr "Desexa realmente borrar este sketch?" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "" @@ -184,6 +232,10 @@ msgstr "" msgid "Asturian" msgstr "" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "Formateado Automático" @@ -225,6 +277,14 @@ msgstr "Liña de erro incorrecta: {0}" msgid "Bad file selected" msgstr "Escolleuse un ficheiro danado" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "" @@ -261,6 +321,10 @@ msgstr "Navegar" msgid "Build folder disappeared or could not be written" msgstr "O cartafol de construción desapareceu ou non foi posíbel escribir nel" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Búlgaro" @@ -277,9 +341,15 @@ msgstr "Gravar o cargador de inicio" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "Grabando o cargador de inicio á Tarxeta E/S (Esto pode tardar uns minutos)..." -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" -msgstr "Non foi posíbel abrir a fonte do sketch!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" +msgstr "" #: ../../../processing/app/Preferences.java:92 msgid "Canadian French" @@ -294,6 +364,10 @@ msgstr "Cancelar" msgid "Cannot Rename" msgstr "Non se pode cambiar o nome" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "Retorno de carro" @@ -338,11 +412,6 @@ msgstr "Pechar" msgid "Comment/Uncomment" msgstr "Comentar/Descomentar" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "Erro de compilación, por favor envía este código a {0}" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "Estase a compilar o sketch..." @@ -450,10 +519,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Non se poden ler as configuracións predeterminadas.\nNecesitarás reinstalar Arduino." -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "No se poden ler as preferencias de {0}" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "" #: Base.java:2482 #, java-format @@ -482,6 +550,10 @@ msgstr "Non foi posíbel cambiar o nome do sketch. (2)" msgid "Could not replace {0}" msgstr "Non se pode reemplazar {0}" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Non foi posíbel arquivar o sketch" @@ -551,6 +623,11 @@ msgstr "Gardado rematado." msgid "Done burning bootloader." msgstr "Rematado o grabado do cargador de inicio." +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "Rematouse a compilación." @@ -559,6 +636,10 @@ msgstr "Rematouse a compilación." msgid "Done printing." msgstr "Impresión rematada." +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "Carga rematada." @@ -662,6 +743,10 @@ msgstr "Erro ao grabar o cargador de inicio." msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -671,11 +756,25 @@ msgstr "Produciuse un erro mentres se cargaba o código {0}" msgid "Error while printing." msgstr "Erro na impresión." +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "Estoniano" @@ -696,6 +795,11 @@ msgstr "Exportación cancelada, primeiro débense garda-los cambios." msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "" + #: Editor.java:491 msgid "File" msgstr "Ficheiro" @@ -743,9 +847,10 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "Para obter máis información acerca de como instalar bibliotecas consulte: http://arduino.cc/en/Guide/Libraries.\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " -msgstr "Fórzase o reinicio usando 1200 bps para abrir/pechar no porto" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" +msgstr "" #: Preferences.java:95 msgid "French" @@ -893,9 +998,9 @@ msgstr "Engadiuse ás súas bibliotecas. Vote unha ollada no menú «Importar a msgid "Lithuaninan" msgstr "Lituano" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" -msgstr "Pouca memoria dispoñible, poden ocorrer problemas de estabilidade" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." +msgstr "" #: Preferences.java:107 msgid "Marathi" @@ -909,6 +1014,10 @@ msgstr "Mensaxe" msgid "Missing the */ from the end of a /* comment */" msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "Pódense editar directamente máis preferencias no arquivo" @@ -917,6 +1026,18 @@ msgstr "Pódense editar directamente máis preferencias no arquivo" msgid "Moving" msgstr "Movendo" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "" + #: Sketch.java:282 msgid "Name for new file:" msgstr "Nome do novo ficheiro:" @@ -953,6 +1074,10 @@ msgstr "Pestana seguinte" msgid "No" msgstr "Non" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "Non hai tarxeta seleccionada; por favor escolle unha tarxeta do menú\nFerramentas > Tarxeta" @@ -961,6 +1086,10 @@ msgstr "Non hai tarxeta seleccionada; por favor escolle unha tarxeta do menú\nF msgid "No changes necessary for Auto Format." msgstr "Non se necesitan cambios para o Formateado Automático" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "Non se engadiu ningún ficheiro ao sketch." @@ -973,6 +1102,10 @@ msgstr "No hai un lanzador dispoñible" msgid "No line ending" msgstr "Non hai fin de liña" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "En serio, é hora de que tomes un pouco de aire fresco." @@ -982,6 +1115,19 @@ msgstr "En serio, é hora de que tomes un pouco de aire fresco." msgid "No reference available for \"{0}\"" msgstr "Non hai referencias dispoñíbeis para \"{0}\"" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "" @@ -1018,6 +1164,10 @@ msgstr "Aceptar" msgid "One file added to the sketch." msgstr "Engadiuse un ficheiro ao sketch." +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "Abrir" @@ -1054,14 +1204,27 @@ msgstr "Apegar" msgid "Persian" msgstr "Persa" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "Por favor importa a libraría SPI utilizando o menú\nSketch > Importar Libraría." +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "" + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "Por favor instale o JDK 1.5 ou posterior" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "Polaco" @@ -1224,10 +1387,18 @@ msgstr "Desexa gardar os cambios a \"{0}\"? " msgid "Save sketch folder as..." msgstr "Gardar o cartafol do sketch como..." +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "Gardando..." +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "Selecciona (ou crea unha nova) carpeta para os sketches..." @@ -1260,20 +1431,6 @@ msgstr "Enviar" msgid "Serial Monitor" msgstr "Monitor o porto serie" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "El porto serie ''{0}'' xa está en uso. Intenta pechar calquer outro programa que o poida estar usando." - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "O porto serie «{0}» xa está a ser usado. Probe a pechar calquera programa que o poida estar a usar." - #: Serial.java:194 #, java-format msgid "" @@ -1353,6 +1510,10 @@ msgstr "A carpeta Sketchbook desapareceu" msgid "Sketchbook location:" msgstr "Ubicación do Sketchbook:" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "" @@ -1403,6 +1564,10 @@ msgstr "Tamil" msgid "The 'BYTE' keyword is no longer supported." msgstr "A palabra chave 'BYTE' xa non está soportada." +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "A clase Client foi renomeada a EthernetClient." @@ -1470,12 +1635,12 @@ msgid "" "but anything besides the code will be lost." msgstr "O cartafol do sketch desapareceu.\nHase tentar gardar de novo no mesmo lugar,\npero calquera cousa aparte do código vaise perder." -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." -msgstr "Débese cambiar o nome do sketch. Os nomes de sketch só poden conter\ncaracteres ASCII e números (pero non pode comezar con un número).\nTamén deben conter menos de 64 caracteres." +"They should also be less than 64 characters long." +msgstr "" #: Base.java:259 msgid "" @@ -1486,6 +1651,12 @@ msgid "" "himself in the third person." msgstr "A carpeta Sketchbook xa non existe.\nArduino cambiará á ubicación predeterminada\ndo Sketchbook, e creará unha nova carpeta Sketchbook\nse fose necesario. Arduino despois deixará de falar de si mesmo\nen terceira persoa." +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1628,6 +1799,13 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "Visitar Arduino.cc" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "" + #: Base.java:2128 msgid "Warning" msgstr "Alerta" @@ -1796,10 +1974,6 @@ msgstr "entorno" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "http://github.com/arduino/Arduino/issues" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1829,17 +2003,6 @@ msgstr "nome é nulo" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "O buffer de bytes de readBytesUntil() é demasiado pequeno para os {0} bytes anteriores incluíndo o caracter {1}" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "removeCode: erro interno... non foi posíbel atopar o código" - #: Editor.java:932 msgid "serialMenu is null" msgstr "serialMenu é nulo" @@ -1850,6 +2013,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "O porto serie seleccionado {0} non existe ou a tarxeta non está conectada" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "Opción descoñecida: {0}" + #: Preferences.java:391 msgid "upload" msgstr "carga" @@ -1873,3 +2041,45 @@ msgstr "{0} | Arduino {1}" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "" diff --git a/arduino-core/src/processing/app/i18n/Resources_gl.properties b/arduino-core/src/processing/app/i18n/Resources_gl.properties index 6bb636435..5f362460e 100644 --- a/arduino-core/src/processing/app/i18n/Resources_gl.properties +++ b/arduino-core/src/processing/app/i18n/Resources_gl.properties @@ -17,6 +17,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(editar s\u00f3 cando Arduino non se est\u00e9 a executar) +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -53,9 +56,23 @@ Add\ File...=Engadir un ficheiro... #: Base.java:963 Add\ Library...=Engadir unha biblioteca... +#: ../../../processing/app/Preferences.java:96 +!Albanian= + #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Ocorreu un erro mentres se intentaba ama\u00f1a-la codificaci\u00f3n do\narquivo. Non intentes gardar este sketch porque pode sobreescribir a\nversi\u00f3n anterior. Utiliza Abrir para volver a abrir o sketch e intentalo de novo.\n +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Produciuse un erro desco\u00f1ecido mentres\nse cargaba o c\u00f3digo especifico para a s\u00faa plataforma. @@ -105,12 +122,33 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Desexa realmente borrar \u00ab{0}\ #: Sketch.java:587 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Desexa realmente borrar este sketch? +#: ../../../processing/app/Base.java:356 +!Argument\ required\ for\ --board= + +#: ../../../processing/app/Base.java:370 +!Argument\ required\ for\ --curdir= + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +!Argument\ required\ for\ --port= + +#: ../../../processing/app/Base.java:377 +!Argument\ required\ for\ --pref= + +#: ../../../processing/app/Base.java:384 +!Argument\ required\ for\ --preferences-file= + #: ../../../processing/app/Preferences.java:137 !Armenian= #: ../../../processing/app/Preferences.java:138 !Asturian= +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 Auto\ Format=Formateado Autom\u00e1tico @@ -142,6 +180,12 @@ Bad\ error\ line\:\ {0}=Li\u00f1a de erro incorrecta\: {0} #: Editor.java:2136 Bad\ file\ selected=Escolleuse un ficheiro danado +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +!Basque= + #: ../../../processing/app/Preferences.java:139 !Belarusian= @@ -168,6 +212,9 @@ Browse=Navegar #: Sketch.java:1392 Sketch.java:1423 Build\ folder\ disappeared\ or\ could\ not\ be\ written=O cartafol de construci\u00f3n desapareceu ou non foi pos\u00edbel escribir nel +#: ../../../processing/app/Sketch.java:1530 +!Build\ options\ changed,\ rebuilding\ all= + #: ../../../processing/app/Preferences.java:80 Bulgarian=B\u00falgaro @@ -180,8 +227,13 @@ Burn\ Bootloader=Gravar o cargador de inicio #: Editor.java:2504 Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Grabando o cargador de inicio \u00e1 Tarxeta E/S (Esto pode tardar uns minutos)... -#: ../../../processing/app/Base.java:368 -Can't\ open\ source\ sketch\!=Non foi pos\u00edbel abrir a fonte do sketch\! +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 Canadian\ French=Franc\u00e9s do Canad\u00e1 @@ -193,6 +245,9 @@ Cancel=Cancelar #: Sketch.java:455 Cannot\ Rename=Non se pode cambiar o nome +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 Carriage\ return=Retorno de carro @@ -226,10 +281,6 @@ Close=Pechar #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=Comentar/Descomentar -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Erro de compilaci\u00f3n, por favor env\u00eda este c\u00f3digo a {0} - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=Estase a compilar o sketch... @@ -305,9 +356,8 @@ Could\ not\ re-save\ sketch=Non foi pos\u00edbel gardar de novo o sketch #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Non se poden ler as configuraci\u00f3ns predeterminadas.\nNecesitar\u00e1s reinstalar Arduino. -#: Preferences.java:258 -#, java-format -Could\ not\ read\ preferences\ from\ {0}=No se poden ler as preferencias de {0} +#: ../../../processing/app/Sketch.java:1525 +!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= #: Base.java:2482 #, java-format @@ -330,6 +380,9 @@ Could\ not\ rename\ the\ sketch.\ (2)=Non foi pos\u00edbel cambiar o nome do ske #, java-format Could\ not\ replace\ {0}=Non se pode reemplazar {0} +#: ../../../processing/app/Sketch.java:1579 +!Could\ not\ write\ build\ preferences\ file= + #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Non foi pos\u00edbel arquivar o sketch @@ -378,12 +431,19 @@ Done\ Saving.=Gardado rematado. #: Editor.java:2510 Done\ burning\ bootloader.=Rematado o grabado do cargador de inicio. +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=Rematouse a compilaci\u00f3n. #: Editor.java:2564 Done\ printing.=Impresi\u00f3n rematada. +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=Carga rematada. @@ -462,6 +522,9 @@ Error\ while\ burning\ bootloader.=Erro ao grabar o cargador de inicio. #: ../../../processing/app/Editor.java:2555 !Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=Produciuse un erro mentres se cargaba o c\u00f3digo {0} @@ -469,10 +532,21 @@ Error\ while\ loading\ code\ {0}=Produciuse un erro mentres se cargaba o c\u00f3 #: Editor.java:2567 Error\ while\ printing.=Erro na impresi\u00f3n. +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 !Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 Estonian=Estoniano @@ -488,6 +562,10 @@ Export\ canceled,\ changes\ must\ first\ be\ saved.=Exportaci\u00f3n cancelada, #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +!Failed\ to\ open\ sketch\:\ "{0}"= + #: Editor.java:491 File=Ficheiro @@ -522,8 +600,9 @@ Fix\ Encoding\ &\ Reload=Ama\u00f1ar Codificaci\u00f3n e Recargar #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=Para obter m\u00e1is informaci\u00f3n acerca de como instalar bibliotecas consulte\: http\://arduino.cc/en/Guide/Libraries.\n -#: debug/BasicUploader.java:80 -Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =F\u00f3rzase o reinicio usando 1200 bps para abrir/pechar no porto +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=Franc\u00e9s @@ -627,8 +706,8 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Engadiuse \ #: Preferences.java:106 Lithuaninan=Lituano -#: ../../../processing/app/Sketch.java:1660 -Low\ memory\ available,\ stability\ problems\ may\ occur=Pouca memoria dispo\u00f1ible, poden ocorrer problemas de estabilidade +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 Marathi=Marat\u00ed @@ -639,12 +718,24 @@ Message=Mensaxe #: ../../../processing/app/preproc/PdePreprocessor.java:412 !Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=P\u00f3dense editar directamente m\u00e1is preferencias no arquivo #: Editor.java:2156 Moving=Movendo +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +!Must\ specify\ exactly\ one\ sketch\ file= + +#: ../../../processing/app/Preferences.java:158 +!N'Ko= + #: Sketch.java:282 Name\ for\ new\ file\:=Nome do novo ficheiro\: @@ -672,12 +763,18 @@ Next\ Tab=Pestana seguinte #: Preferences.java:78 UpdateCheck.java:108 No=Non +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Non hai tarxeta seleccionada; por favor escolle unha tarxeta do men\u00fa\nFerramentas > Tarxeta #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Non se necesitan cambios para o Formateado Autom\u00e1tico +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=Non se engadiu ning\u00fan ficheiro ao sketch. @@ -687,6 +784,9 @@ No\ launcher\ available=No hai un lanzador dispo\u00f1ible #: SerialMonitor.java:112 No\ line\ ending=Non hai fin de li\u00f1a +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=En serio, \u00e9 hora de que tomes un pouco de aire fresco. @@ -694,6 +794,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=En serio, \u00e9 hora de que #, java-format No\ reference\ available\ for\ "{0}"=Non hai referencias dispo\u00f1\u00edbeis para "{0}" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +!No\ valid\ code\ files\ found= + #: ../../../processing/app/Base.java:309 !No\ valid\ configured\ cores\ found\!\ Exiting...= @@ -720,6 +830,9 @@ OK=Aceptar #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=Engadiuse un ficheiro ao sketch. +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=Abrir @@ -747,12 +860,22 @@ Paste=Apegar #: Preferences.java:109 Persian=Persa +#: ../../../processing/app/Preferences.java:161 +!Persian\ (Iran)= + #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Por favor importa a librar\u00eda SPI utilizando o men\u00fa\nSketch > Importar Librar\u00eda. +#: ../../../processing/app/debug/Compiler.java:529 +!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=Por favor instale o JDK 1.5 ou posterior +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 Polish=Polaco @@ -874,9 +997,15 @@ Save\ changes\ to\ "{0}"?\ \ =Desexa gardar os cambios a "{0}"? #: Sketch.java:825 Save\ sketch\ folder\ as...=Gardar o cartafol do sketch como... +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=Gardando... +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=Selecciona (ou crea unha nova) carpeta para os sketches... @@ -901,14 +1030,6 @@ Send=Enviar #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=Monitor o porto serie -#: Serial.java:174 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=El porto serie ''{0}'' xa est\u00e1 en uso. Intenta pechar calquer outro programa que o poida estar usando. - -#: Serial.java:121 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=O porto serie \u00ab{0}\u00bb xa est\u00e1 a ser usado. Probe a pechar calquera programa que o poida estar a usar. - #: Serial.java:194 #, java-format Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Porto serie ''{0}'' non atopado. Est\u00e1s seguro de que seleccionaches o porto correcto do men\u00fa Ferramentas > Porto Serie? @@ -963,6 +1084,9 @@ Sketchbook\ folder\ disappeared=A carpeta Sketchbook desapareceu #: Preferences.java:315 Sketchbook\ location\:=Ubicaci\u00f3n do Sketchbook\: +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 !Sketches\ (*.ino,\ *.pde)= @@ -997,6 +1121,9 @@ Tamil=Tamil #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=A palabra chave 'BYTE' xa non est\u00e1 soportada. +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=A clase Client foi renomeada a EthernetClient. @@ -1033,12 +1160,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=O cartafol do sketch desapareceu.\nHase tentar gardar de novo no mesmo lugar,\npero calquera cousa aparte do c\u00f3digo vaise perder. -#: Sketch.java:2018 -The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=D\u00e9bese cambiar o nome do sketch. Os nomes de sketch s\u00f3 poden conter\ncaracteres ASCII e n\u00fameros (pero non pode comezar con un n\u00famero).\nTam\u00e9n deben conter menos de 64 caracteres. +#: ../../../processing/app/Sketch.java:2028 +!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=A carpeta Sketchbook xa non existe.\nArduino cambiar\u00e1 \u00e1 ubicaci\u00f3n predeterminada\ndo Sketchbook, e crear\u00e1 unha nova carpeta Sketchbook\nse fose necesario. Arduino despois deixar\u00e1 de falar de si mesmo\nen terceira persoa. +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Este ficheiro xa foi copiado no lugar\ndende a cal est\u00e1s a tentar engadilo.\nNon vou facer nada. @@ -1142,6 +1272,10 @@ Verify\ code\ after\ upload=Verificar o c\u00f3digo despois de cargar #: Editor.java:1105 Visit\ Arduino.cc=Visitar Arduino.cc +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= + #: Base.java:2128 Warning=Alerta @@ -1240,9 +1374,6 @@ environment=entorno #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1265,13 +1396,6 @@ name\ is\ null=nome \u00e9 nulo #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=O buffer de bytes de readBytesUntil() \u00e9 demasiado pequeno para os {0} bytes anteriores inclu\u00edndo o caracter {1} - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: erro interno... non foi pos\u00edbel atopar o c\u00f3digo - #: Editor.java:932 serialMenu\ is\ null=serialMenu \u00e9 nulo @@ -1279,6 +1403,10 @@ serialMenu\ is\ null=serialMenu \u00e9 nulo #, java-format the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=O porto serie seleccionado {0} non existe ou a tarxeta non est\u00e1 conectada +#: ../../../processing/app/Base.java:389 +#, java-format +unknown\ option\:\ {0}=Opci\u00f3n desco\u00f1ecida\: {0} + #: Preferences.java:391 upload=carga @@ -1297,3 +1425,35 @@ upload=carga #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= + +#: ../../../processing/app/Base.java:476 +#, java-format +!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= + +#: ../../../processing/app/Base.java:509 +#, java-format +!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= + +#: ../../../processing/app/Base.java:507 +#, java-format +!{0}\:\ Invalid\ option\ for\ board\ "{1}"= + +#: ../../../processing/app/Base.java:502 +#, java-format +!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= + +#: ../../../processing/app/Base.java:486 +#, java-format +!{0}\:\ Unknown\ architecture= + +#: ../../../processing/app/Base.java:491 +#, java-format +!{0}\:\ Unknown\ board= + +#: ../../../processing/app/Base.java:481 +#, java-format +!{0}\:\ Unknown\ package= diff --git a/arduino-core/src/processing/app/i18n/Resources_hi.po b/arduino-core/src/processing/app/i18n/Resources_hi.po index 2208d8f4e..4190bf216 100644 --- a/arduino-core/src/processing/app/i18n/Resources_hi.po +++ b/arduino-core/src/processing/app/i18n/Resources_hi.po @@ -34,6 +34,12 @@ msgstr "" msgid "(edit only when Arduino is not running)" msgstr "(तभी सम्पादित करें जब अर्दुइनो चल न रहा हो)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -92,6 +98,10 @@ msgstr "फाइल जोङिये" msgid "Add Library..." msgstr "ग्रन्थ जोड़े" +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "अल्बानी" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -99,6 +109,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "फाइल एन्कोडिंग फिक्स करते समय प्रॉब्लम हो गयी \nस्केत्च को सेव मत करिए क्यूंकि वो पुराणी फाइल को बदल देगी \nओपन आप्शन को इस्तेमाल कीजिये और फिर से कोशिश कीजिये \n" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -177,6 +201,30 @@ msgstr "क्या आप सुनिश्चित करतें है msgid "Are you sure you want to delete this sketch?" msgstr "क्या आप सुनिश्चित करते हैं की यह स्केत्च मिटा दिया जाये ?" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "" @@ -185,6 +233,10 @@ msgstr "" msgid "Asturian" msgstr "" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "स्वत: स्वरूप" @@ -226,6 +278,14 @@ msgstr "Bad error line: {0}" msgid "Bad file selected" msgstr "खराब फाइल चुनी गई" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "" @@ -262,6 +322,10 @@ msgstr "ब्राउज़ करें" msgid "Build folder disappeared or could not be written" msgstr "बिल्ड पुस्तिका गायब हो गयी या उसमे प्रवेश निषेधात्मक है " +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "बिल्ड विकल्प बदले गए, सभी का फिर से निर्माण हो रहा है " + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "" @@ -278,8 +342,14 @@ msgstr "बूटलोडर को जलाइये" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "इ/ओ बोर्ड पर बूटलोडर डाला जा रहा है (इस प्रक्रिया में मिनट लग सकता है.....)" -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" msgstr "" #: ../../../processing/app/Preferences.java:92 @@ -295,6 +365,10 @@ msgstr "रद्द" msgid "Cannot Rename" msgstr "नाम बदला नहीं जा सकता " +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "Carriage return" @@ -339,11 +413,6 @@ msgstr "बंद करें" msgid "Comment/Uncomment" msgstr "कमेन्ट/अनकमेन्ट" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "संकलक त्रुटि {0} इस कोड को भेजें" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "स्केच को कम्पाइल किया जा रहा है ...." @@ -451,10 +520,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "डिफौल्ट सेत्तिंग्स स्तापित नहीं हो सकी \nअर्दुइनो फिर से इन्स्टाल कीजिये" -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "{0} से प्रेफेरेंसस पढ़ी नहीं जा सकी " +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "" #: Base.java:2482 #, java-format @@ -483,6 +551,10 @@ msgstr "स्केत्च का नाम नहीं बदला जा msgid "Could not replace {0}" msgstr "{0} की जगह नहीं कर सका" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "स्केच संग्रह नहीं किया जा सका" @@ -552,6 +624,11 @@ msgstr "सेव पूरा हो गया " msgid "Done burning bootloader." msgstr "बूटलोडर डाला जा चूका है " +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "कम्पाइल हो चुका है" @@ -560,6 +637,10 @@ msgstr "कम्पाइल हो चुका है" msgid "Done printing." msgstr "प्रिंटिंग समाप्त " +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "उपलोड हो गया " @@ -663,6 +744,10 @@ msgstr "बूटलोडर डालते समय त्रुटी " msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -672,11 +757,25 @@ msgstr "कोड लोड करते समय त्रुटी {0}" msgid "Error while printing." msgstr "प्रिंटिंग करते समय त्रुटी " +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "" @@ -697,6 +796,11 @@ msgstr "निर्यात रद्द कर दिया गया, बद msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "स्केच: \"{0}\" खोलने में असफल " + #: Editor.java:491 msgid "File" msgstr "फाइल" @@ -744,8 +848,9 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" msgstr "" #: Preferences.java:95 @@ -894,8 +999,8 @@ msgstr "" msgid "Lithuaninan" msgstr "" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: Preferences.java:107 @@ -910,6 +1015,10 @@ msgstr "संदेश" msgid "Missing the */ from the end of a /* comment */" msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "और बोहोत सी प्रेफेरेंसस सीधा फाइल में सम्पादित की जा सकती हैं " @@ -918,6 +1027,18 @@ msgstr "और बोहोत सी प्रेफेरेंसस सी msgid "Moving" msgstr "गतिशील" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "" + #: Sketch.java:282 msgid "Name for new file:" msgstr "नयी फाइल का नाम " @@ -954,6 +1075,10 @@ msgstr "अगला टैब " msgid "No" msgstr "नहीं " +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "कोई बोर्ड चयनित नही, उपकरण से एक बोर्ड का चयन करें> बोर्ड मेनू" @@ -962,6 +1087,10 @@ msgstr "कोई बोर्ड चयनित नही, उपकरण स msgid "No changes necessary for Auto Format." msgstr "ऑटो फॉर्मेट के लिए कोई बदलाव जरुरी नहीं हैं " +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "स्केच में कोई फाइल नहीं जोड़ी गयी " @@ -974,6 +1103,10 @@ msgstr "कोई प्रारंभ करता उपलभ्द नह msgid "No line ending" msgstr "कोई रेखा समाप्ति नहीं" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "नहीं, वास्तव में, आप के लिए कुछ ताजा हवा के लिए समय है." @@ -983,6 +1116,19 @@ msgstr "नहीं, वास्तव में, आप के लिए क msgid "No reference available for \"{0}\"" msgstr "\"{0}\" के लिये कोई सन्दर्भ उपलब्ध नही है" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "" @@ -1019,6 +1165,10 @@ msgstr "ओके" msgid "One file added to the sketch." msgstr "स्केत्च में एक फाइल जोड़ी गई " +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "खोलें " @@ -1055,14 +1205,27 @@ msgstr "पेस्ट" msgid "Persian" msgstr "पारसी " +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "पारसी (ईरान)" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "स्केच से एस पी आई लायब्रेरी का आयात करें" +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "" + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "कृपया जेडीके 1.5 या बाद का स्थापित करेंं" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "" @@ -1225,10 +1388,18 @@ msgstr "परिवर्तनों को \"{0}\" मे सहेजेँ" msgid "Save sketch folder as..." msgstr "स्केत्च पुस्तिका को इस नाम से सेव करें " +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "सेविंग....." +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "स्केच बनाने के लिए फ़ोल्डर का चयन करें अथवा नया बनाएँ" @@ -1261,20 +1432,6 @@ msgstr "भेजें" msgid "Serial Monitor" msgstr "सीरियल मोनिटर" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "सीरियल पोर्ट ''{0}'' पहले ही इस्तेमाल में .कोशिश कीजिये उन सॉफ्टवेर को बंद करने \n की जो इस सीरियल पोर्ट को इस्तेमाल कर रहे हों" - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "" - #: Serial.java:194 #, java-format msgid "" @@ -1354,6 +1511,10 @@ msgstr "स्केत्चबुक फोल्डर गायब हो msgid "Sketchbook location:" msgstr "स्केत्च किताब का स्थान " +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "" @@ -1404,6 +1565,10 @@ msgstr "तमिल " msgid "The 'BYTE' keyword is no longer supported." msgstr "'बाइट' कीवर्ड अब समर्थित नहीं है" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "क्लाइंट क्लास का नामकरण ईथरनेट क्लाइंट हो गया है" @@ -1471,12 +1636,12 @@ msgid "" "but anything besides the code will be lost." msgstr "स्केत्च पुस्तिका खो गयी है \nपर फिर भी उसी जगह पे सेव करने की कोशिश होगी अन्यथा कोड खो जायगा " -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." -msgstr "स्केत्च का नाम बदलना होगा ,स्केत्च के नाम में \nसिर्फ अक्षर और अंकों का इस्तेमाल कीजिये \nऔर यह भी ध्यान रखें की 64 अक्षर से ज्यादा ना हो " +"They should also be less than 64 characters long." +msgstr "" #: Base.java:259 msgid "" @@ -1487,6 +1652,12 @@ msgid "" "himself in the third person." msgstr "स्केत्चबुक फ़ोल्डर अब मौजूद नहीं है| आर्दुइनो डिफ़ॉल्ट स्केत्चबुक स्थान पर स्विच जाएगा, और यदि आवश्यक एक नया स्केत्चबुक फ़ोल्डर बनाएगा| आर्दुइनो तब तीसरे व्यक्ति में खुद के बारे में बात करना बंद कर देंगे." +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1629,6 +1800,13 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "Arduino.cc देखिये" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "" + #: Base.java:2128 msgid "Warning" msgstr "चेतावनी" @@ -1797,10 +1975,6 @@ msgstr "वातावरण " msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1830,17 +2004,6 @@ msgstr "नाम मे कुछ नही है" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "readBytesUntil() byte बुफ्फेर काफी छोटा है की यह {0} bytes आ जायें और including char {1}" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "कोड हटायें : अंदरूनी त्रुटी.....कोड खोजा नहीं जा सका " - #: Editor.java:932 msgid "serialMenu is null" msgstr "सीरियलमेनू मे कुछ नही है" @@ -1851,6 +2014,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "चुना गया सीरियल पोर्ट {0} मौजूद नहीं है या बोर्ड नहीं जुड़ा हुआ है" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "" + #: Preferences.java:391 msgid "upload" msgstr "उपलोड " @@ -1874,3 +2042,45 @@ msgstr "{0} | अर्दुइनो {1} " #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "{0}: अज्ञात रचना " + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "{0}: अज्ञात बोर्ड " + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "{0}: अज्ञात पैकेज " diff --git a/arduino-core/src/processing/app/i18n/Resources_hi.properties b/arduino-core/src/processing/app/i18n/Resources_hi.properties index 2c3ad48d0..9b0d2608e 100644 --- a/arduino-core/src/processing/app/i18n/Resources_hi.properties +++ b/arduino-core/src/processing/app/i18n/Resources_hi.properties @@ -18,6 +18,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(\u0924\u092d\u0940 \u0938\u092e\u094d\u092a\u093e\u0926\u093f\u0924 \u0915\u0930\u0947\u0902 \u091c\u092c \u0905\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u091a\u0932 \u0928 \u0930\u0939\u093e \u0939\u094b) +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -54,9 +57,23 @@ Add\ File...=\u092b\u093e\u0907\u0932 \u091c\u094b\u0919\u093f\u092f\u0947 #: Base.java:963 Add\ Library...=\u0917\u094d\u0930\u0928\u094d\u0925 \u091c\u094b\u095c\u0947 +#: ../../../processing/app/Preferences.java:96 +Albanian=\u0905\u0932\u094d\u092c\u093e\u0928\u0940 + #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=\u092b\u093e\u0907\u0932 \u090f\u0928\u094d\u0915\u094b\u0921\u093f\u0902\u0917 \u092b\u093f\u0915\u094d\u0938 \u0915\u0930\u0924\u0947 \u0938\u092e\u092f \u092a\u094d\u0930\u0949\u092c\u094d\u0932\u092e \u0939\u094b \u0917\u092f\u0940 \n\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u094b \u0938\u0947\u0935 \u092e\u0924 \u0915\u0930\u093f\u090f \u0915\u094d\u092f\u0942\u0902\u0915\u093f \u0935\u094b \u092a\u0941\u0930\u093e\u0923\u0940 \u092b\u093e\u0907\u0932 \u0915\u094b \u092c\u0926\u0932 \u0926\u0947\u0917\u0940 \n\u0913\u092a\u0928 \u0906\u092a\u094d\u0936\u0928 \u0915\u094b \u0907\u0938\u094d\u0924\u0947\u092e\u093e\u0932 \u0915\u0940\u091c\u093f\u092f\u0947 \u0914\u0930 \u092b\u093f\u0930 \u0938\u0947 \u0915\u094b\u0936\u093f\u0936 \u0915\u0940\u091c\u093f\u092f\u0947 \n +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=\u092e\u0936\u0940\u0928 \u0915\u0947 \u0932\u093f\u090f \u0935\u093f\u0936\u093f\u0937\u094d\u091f \u0915\u094b\u0921 \u0932\u094b\u0921 \u0915\u0930\u0928\u0947 \u0915\u093e \u092a\u094d\u0930\u092f\u093e\u0938 \u0915\u0930\u0924\u0947 \u0938\u092e\u092f \u090f\u0915 \u0905\u091c\u094d\u091e\u093e\u0924 \u0924\u094d\u0930\u0941\u091f\u093f \u0939\u0941\u0908 @@ -106,12 +123,33 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u0915\u094d\u092f\u093e \u0906\u0 #: Sketch.java:587 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u0915\u094d\u092f\u093e \u0906\u092a \u0938\u0941\u0928\u093f\u0936\u094d\u091a\u093f\u0924 \u0915\u0930\u0924\u0947 \u0939\u0948\u0902 \u0915\u0940 \u092f\u0939 \u0938\u094d\u0915\u0947\u0924\u094d\u091a \u092e\u093f\u091f\u093e \u0926\u093f\u092f\u093e \u091c\u093e\u092f\u0947 ? +#: ../../../processing/app/Base.java:356 +!Argument\ required\ for\ --board= + +#: ../../../processing/app/Base.java:370 +!Argument\ required\ for\ --curdir= + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +!Argument\ required\ for\ --port= + +#: ../../../processing/app/Base.java:377 +!Argument\ required\ for\ --pref= + +#: ../../../processing/app/Base.java:384 +!Argument\ required\ for\ --preferences-file= + #: ../../../processing/app/Preferences.java:137 !Armenian= #: ../../../processing/app/Preferences.java:138 !Asturian= +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 Auto\ Format=\u0938\u094d\u0935\u0924\: \u0938\u094d\u0935\u0930\u0942\u092a @@ -143,6 +181,12 @@ Bad\ error\ line\:\ {0}=Bad error line\: {0} #: Editor.java:2136 Bad\ file\ selected=\u0916\u0930\u093e\u092c \u092b\u093e\u0907\u0932 \u091a\u0941\u0928\u0940 \u0917\u0908 +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +!Basque= + #: ../../../processing/app/Preferences.java:139 !Belarusian= @@ -169,6 +213,9 @@ Browse=\u092c\u094d\u0930\u093e\u0909\u091c\u093c \u0915\u0930\u0947\u0902 #: Sketch.java:1392 Sketch.java:1423 Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u092c\u093f\u0932\u094d\u0921 \u092a\u0941\u0938\u094d\u0924\u093f\u0915\u093e \u0917\u093e\u092f\u092c \u0939\u094b \u0917\u092f\u0940 \u092f\u093e \u0909\u0938\u092e\u0947 \u092a\u094d\u0930\u0935\u0947\u0936 \u0928\u093f\u0937\u0947\u0927\u093e\u0924\u094d\u092e\u0915 \u0939\u0948 +#: ../../../processing/app/Sketch.java:1530 +Build\ options\ changed,\ rebuilding\ all=\u092c\u093f\u0932\u094d\u0921 \u0935\u093f\u0915\u0932\u094d\u092a \u092c\u0926\u0932\u0947 \u0917\u090f, \u0938\u092d\u0940 \u0915\u093e \u092b\u093f\u0930 \u0938\u0947 \u0928\u093f\u0930\u094d\u092e\u093e\u0923 \u0939\u094b \u0930\u0939\u093e \u0939\u0948 + #: ../../../processing/app/Preferences.java:80 !Bulgarian= @@ -181,8 +228,13 @@ Burn\ Bootloader=\u092c\u0942\u091f\u0932\u094b\u0921\u0930 \u0915\u094b \u091c\ #: Editor.java:2504 Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u0907/\u0913 \u092c\u094b\u0930\u094d\u0921 \u092a\u0930 \u092c\u0942\u091f\u0932\u094b\u0921\u0930 \u0921\u093e\u0932\u093e \u091c\u093e \u0930\u0939\u093e \u0939\u0948 (\u0907\u0938 \u092a\u094d\u0930\u0915\u094d\u0930\u093f\u092f\u093e \u092e\u0947\u0902 \u092e\u093f\u0928\u091f \u0932\u0917 \u0938\u0915\u0924\u093e \u0939\u0948.....) -#: ../../../processing/app/Base.java:368 -!Can't\ open\ source\ sketch\!= +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 !Canadian\ French= @@ -194,6 +246,9 @@ Cancel=\u0930\u0926\u094d\u0926 #: Sketch.java:455 Cannot\ Rename=\u0928\u093e\u092e \u092c\u0926\u0932\u093e \u0928\u0939\u0940\u0902 \u091c\u093e \u0938\u0915\u0924\u093e +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 Carriage\ return=Carriage return @@ -227,10 +282,6 @@ Close=\u092c\u0902\u0926 \u0915\u0930\u0947\u0902 #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=\u0915\u092e\u0947\u0928\u094d\u091f/\u0905\u0928\u0915\u092e\u0947\u0928\u094d\u091f -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=\u0938\u0902\u0915\u0932\u0915 \u0924\u094d\u0930\u0941\u091f\u093f {0} \u0907\u0938 \u0915\u094b\u0921 \u0915\u094b \u092d\u0947\u091c\u0947\u0902 - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=\u0938\u094d\u0915\u0947\u091a \u0915\u094b \u0915\u092e\u094d\u092a\u093e\u0907\u0932 \u0915\u093f\u092f\u093e \u091c\u093e \u0930\u0939\u093e \u0939\u0948 .... @@ -306,9 +357,8 @@ Could\ not\ re-save\ sketch=\u0906\u092a\u0915\u0940 \u0938\u094d\u0915\u0947\u0 #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u0921\u093f\u092b\u094c\u0932\u094d\u091f \u0938\u0947\u0924\u094d\u0924\u093f\u0902\u0917\u094d\u0938 \u0938\u094d\u0924\u093e\u092a\u093f\u0924 \u0928\u0939\u0940\u0902 \u0939\u094b \u0938\u0915\u0940 \n\u0905\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u092b\u093f\u0930 \u0938\u0947 \u0907\u0928\u094d\u0938\u094d\u091f\u093e\u0932 \u0915\u0940\u091c\u093f\u092f\u0947 -#: Preferences.java:258 -#, java-format -Could\ not\ read\ preferences\ from\ {0}={0} \u0938\u0947 \u092a\u094d\u0930\u0947\u092b\u0947\u0930\u0947\u0902\u0938\u0938 \u092a\u095d\u0940 \u0928\u0939\u0940\u0902 \u091c\u093e \u0938\u0915\u0940 +#: ../../../processing/app/Sketch.java:1525 +!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= #: Base.java:2482 #, java-format @@ -331,6 +381,9 @@ Could\ not\ rename\ the\ sketch.\ (2)=\u0938\u094d\u0915\u0947\u0924\u094d\u091a #, java-format Could\ not\ replace\ {0}={0} \u0915\u0940 \u091c\u0917\u0939 \u0928\u0939\u0940\u0902 \u0915\u0930 \u0938\u0915\u093e +#: ../../../processing/app/Sketch.java:1579 +!Could\ not\ write\ build\ preferences\ file= + #: tools/Archiver.java:74 Couldn't\ archive\ sketch=\u0938\u094d\u0915\u0947\u091a \u0938\u0902\u0917\u094d\u0930\u0939 \u0928\u0939\u0940\u0902 \u0915\u093f\u092f\u093e \u091c\u093e \u0938\u0915\u093e @@ -379,12 +432,19 @@ Done\ Saving.=\u0938\u0947\u0935 \u092a\u0942\u0930\u093e \u0939\u094b \u0917\u0 #: Editor.java:2510 Done\ burning\ bootloader.=\u092c\u0942\u091f\u0932\u094b\u0921\u0930 \u0921\u093e\u0932\u093e \u091c\u093e \u091a\u0942\u0915\u093e \u0939\u0948 +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=\u0915\u092e\u094d\u092a\u093e\u0907\u0932 \u0939\u094b \u091a\u0941\u0915\u093e \u0939\u0948 #: Editor.java:2564 Done\ printing.=\u092a\u094d\u0930\u093f\u0902\u091f\u093f\u0902\u0917 \u0938\u092e\u093e\u092a\u094d\u0924 +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=\u0909\u092a\u0932\u094b\u0921 \u0939\u094b \u0917\u092f\u093e @@ -463,6 +523,9 @@ Error\ while\ burning\ bootloader.=\u092c\u0942\u091f\u0932\u094b\u0921\u0930 \u #: ../../../processing/app/Editor.java:2555 !Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=\u0915\u094b\u0921 \u0932\u094b\u0921 \u0915\u0930\u0924\u0947 \u0938\u092e\u092f \u0924\u094d\u0930\u0941\u091f\u0940 {0} @@ -470,10 +533,21 @@ Error\ while\ loading\ code\ {0}=\u0915\u094b\u0921 \u0932\u094b\u0921 \u0915\u0 #: Editor.java:2567 Error\ while\ printing.=\u092a\u094d\u0930\u093f\u0902\u091f\u093f\u0902\u0917 \u0915\u0930\u0924\u0947 \u0938\u092e\u092f \u0924\u094d\u0930\u0941\u091f\u0940 +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 !Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 !Estonian= @@ -489,6 +563,10 @@ Export\ canceled,\ changes\ must\ first\ be\ saved.=\u0928\u093f\u0930\u094d\u09 #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +Failed\ to\ open\ sketch\:\ "{0}"=\u0938\u094d\u0915\u0947\u091a\: "{0}" \u0916\u094b\u0932\u0928\u0947 \u092e\u0947\u0902 \u0905\u0938\u092b\u0932 + #: Editor.java:491 File=\u092b\u093e\u0907\u0932 @@ -523,8 +601,9 @@ Fix\ Encoding\ &\ Reload=\u090f\u0928\u094d\u0915\u094b\u0921\u093f\u0902\u0917 #: Base.java:1851 !For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n= -#: debug/BasicUploader.java:80 -!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ = +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=\u095e\u094d\u0930\u093e\u0902\u0938\u093f\u0938\u0940 @@ -628,8 +707,8 @@ Japanese=\u091c\u093e\u092a\u093e\u0928\u0940 #: Preferences.java:106 !Lithuaninan= -#: ../../../processing/app/Sketch.java:1660 -!Low\ memory\ available,\ stability\ problems\ may\ occur= +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 Marathi=\u092e\u0930\u093e\u0920\u0940 @@ -640,12 +719,24 @@ Message=\u0938\u0902\u0926\u0947\u0936 #: ../../../processing/app/preproc/PdePreprocessor.java:412 !Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\u0914\u0930 \u092c\u094b\u0939\u094b\u0924 \u0938\u0940 \u092a\u094d\u0930\u0947\u092b\u0947\u0930\u0947\u0902\u0938\u0938 \u0938\u0940\u0927\u093e \u092b\u093e\u0907\u0932 \u092e\u0947\u0902 \u0938\u092e\u094d\u092a\u093e\u0926\u093f\u0924 \u0915\u0940 \u091c\u093e \u0938\u0915\u0924\u0940 \u0939\u0948\u0902 #: Editor.java:2156 Moving=\u0917\u0924\u093f\u0936\u0940\u0932 +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +!Must\ specify\ exactly\ one\ sketch\ file= + +#: ../../../processing/app/Preferences.java:158 +!N'Ko= + #: Sketch.java:282 Name\ for\ new\ file\:=\u0928\u092f\u0940 \u092b\u093e\u0907\u0932 \u0915\u093e \u0928\u093e\u092e @@ -673,12 +764,18 @@ Next\ Tab=\u0905\u0917\u0932\u093e \u091f\u0948\u092c #: Preferences.java:78 UpdateCheck.java:108 No=\u0928\u0939\u0940\u0902 +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u0915\u094b\u0908 \u092c\u094b\u0930\u094d\u0921 \u091a\u092f\u0928\u093f\u0924 \u0928\u0939\u0940, \u0909\u092a\u0915\u0930\u0923 \u0938\u0947 \u090f\u0915 \u092c\u094b\u0930\u094d\u0921 \u0915\u093e \u091a\u092f\u0928 \u0915\u0930\u0947\u0902> \u092c\u094b\u0930\u094d\u0921 \u092e\u0947\u0928\u0942 #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=\u0911\u091f\u094b \u092b\u0949\u0930\u094d\u092e\u0947\u091f \u0915\u0947 \u0932\u093f\u090f \u0915\u094b\u0908 \u092c\u0926\u0932\u093e\u0935 \u091c\u0930\u0941\u0930\u0940 \u0928\u0939\u0940\u0902 \u0939\u0948\u0902 +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=\u0938\u094d\u0915\u0947\u091a \u092e\u0947\u0902 \u0915\u094b\u0908 \u092b\u093e\u0907\u0932 \u0928\u0939\u0940\u0902 \u091c\u094b\u095c\u0940 \u0917\u092f\u0940 @@ -688,6 +785,9 @@ No\ launcher\ available=\u0915\u094b\u0908 \u092a\u094d\u0930\u093e\u0930\u0902\ #: SerialMonitor.java:112 No\ line\ ending=\u0915\u094b\u0908 \u0930\u0947\u0916\u093e \u0938\u092e\u093e\u092a\u094d\u0924\u093f \u0928\u0939\u0940\u0902 +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u0928\u0939\u0940\u0902, \u0935\u093e\u0938\u094d\u0924\u0935 \u092e\u0947\u0902, \u0906\u092a \u0915\u0947 \u0932\u093f\u090f \u0915\u0941\u091b \u0924\u093e\u091c\u093e \u0939\u0935\u093e \u0915\u0947 \u0932\u093f\u090f \u0938\u092e\u092f \u0939\u0948. @@ -695,6 +795,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u0928\u0939\u0940\u0902, \u #, java-format No\ reference\ available\ for\ "{0}"="{0}" \u0915\u0947 \u0932\u093f\u092f\u0947 \u0915\u094b\u0908 \u0938\u0928\u094d\u0926\u0930\u094d\u092d \u0909\u092a\u0932\u092c\u094d\u0927 \u0928\u0939\u0940 \u0939\u0948 +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +!No\ valid\ code\ files\ found= + #: ../../../processing/app/Base.java:309 !No\ valid\ configured\ cores\ found\!\ Exiting...= @@ -721,6 +831,9 @@ OK=\u0913\u0915\u0947 #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u092e\u0947\u0902 \u090f\u0915 \u092b\u093e\u0907\u0932 \u091c\u094b\u095c\u0940 \u0917\u0908 +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=\u0916\u094b\u0932\u0947\u0902 @@ -748,12 +861,22 @@ Paste=\u092a\u0947\u0938\u094d\u091f #: Preferences.java:109 Persian=\u092a\u093e\u0930\u0938\u0940 +#: ../../../processing/app/Preferences.java:161 +Persian\ (Iran)=\u092a\u093e\u0930\u0938\u0940 (\u0908\u0930\u093e\u0928) + #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=\u0938\u094d\u0915\u0947\u091a \u0938\u0947 \u090f\u0938 \u092a\u0940 \u0906\u0908 \u0932\u093e\u092f\u092c\u094d\u0930\u0947\u0930\u0940 \u0915\u093e \u0906\u092f\u093e\u0924 \u0915\u0930\u0947\u0902 +#: ../../../processing/app/debug/Compiler.java:529 +!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=\u0915\u0943\u092a\u092f\u093e \u091c\u0947\u0921\u0940\u0915\u0947 1.5 \u092f\u093e \u092c\u093e\u0926 \u0915\u093e \u0938\u094d\u0925\u093e\u092a\u093f\u0924 \u0915\u0930\u0947\u0902\u0902 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 !Polish= @@ -875,9 +998,15 @@ Save\ changes\ to\ "{0}"?\ \ =\u092a\u0930\u093f\u0935\u0930\u094d\u0924\u0928\u #: Sketch.java:825 Save\ sketch\ folder\ as...=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u092a\u0941\u0938\u094d\u0924\u093f\u0915\u093e \u0915\u094b \u0907\u0938 \u0928\u093e\u092e \u0938\u0947 \u0938\u0947\u0935 \u0915\u0930\u0947\u0902 +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=\u0938\u0947\u0935\u093f\u0902\u0917..... +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=\u0938\u094d\u0915\u0947\u091a \u092c\u0928\u093e\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u092b\u093c\u094b\u0932\u094d\u0921\u0930 \u0915\u093e \u091a\u092f\u0928 \u0915\u0930\u0947\u0902 \u0905\u0925\u0935\u093e \u0928\u092f\u093e \u092c\u0928\u093e\u090f\u0901 @@ -902,14 +1031,6 @@ Send=\u092d\u0947\u091c\u0947\u0902 #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=\u0938\u0940\u0930\u093f\u092f\u0932 \u092e\u094b\u0928\u093f\u091f\u0930 -#: Serial.java:174 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=\u0938\u0940\u0930\u093f\u092f\u0932 \u092a\u094b\u0930\u094d\u091f ''{0}'' \u092a\u0939\u0932\u0947 \u0939\u0940 \u0907\u0938\u094d\u0924\u0947\u092e\u093e\u0932 \u092e\u0947\u0902 .\u0915\u094b\u0936\u093f\u0936 \u0915\u0940\u091c\u093f\u092f\u0947 \u0909\u0928 \u0938\u0949\u092b\u094d\u091f\u0935\u0947\u0930 \u0915\u094b \u092c\u0902\u0926 \u0915\u0930\u0928\u0947 \n \u0915\u0940 \u091c\u094b \u0907\u0938 \u0938\u0940\u0930\u093f\u092f\u0932 \u092a\u094b\u0930\u094d\u091f \u0915\u094b \u0907\u0938\u094d\u0924\u0947\u092e\u093e\u0932 \u0915\u0930 \u0930\u0939\u0947 \u0939\u094b\u0902 - -#: Serial.java:121 -#, java-format -!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.= - #: Serial.java:194 #, java-format Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=\u0938\u0940\u0930\u093f\u092f\u0932 \u092a\u094b\u0930\u094d\u091f ''{0}'' \u0928\u0939\u0940\u0902 \u092e\u093f\u0932\u093e. \u0915\u094d\u092f\u093e \u0905\u092a\u0928\u0947 \u0938\u0939\u0940 \u0938\u0940\u0930\u093f\u092f\u0932 \u092a\u094b\u0930\u094d\u091f \u091a\u0941\u0928\u093e \u0939\u0948 \u091f\u0942\u0932\u094d\u0938 > \u0938\u0940\u0930\u093f\u092f\u0932 \u092a\u094b\u0930\u094d\u091f \u092e\u0947\u0928\u0942 \u092e\u0947\u0902 \u0938\u0947 ? @@ -964,6 +1085,9 @@ Sketchbook\ folder\ disappeared=\u0938\u094d\u0915\u0947\u0924\u094d\u091a\u092c #: Preferences.java:315 Sketchbook\ location\:=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u093f\u0924\u093e\u092c \u0915\u093e \u0938\u094d\u0925\u093e\u0928 +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 !Sketches\ (*.ino,\ *.pde)= @@ -998,6 +1122,9 @@ Tamil=\u0924\u092e\u093f\u0932 #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.='\u092c\u093e\u0907\u091f' \u0915\u0940\u0935\u0930\u094d\u0921 \u0905\u092c \u0938\u092e\u0930\u094d\u0925\u093f\u0924 \u0928\u0939\u0940\u0902 \u0939\u0948 +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=\u0915\u094d\u0932\u093e\u0907\u0902\u091f \u0915\u094d\u0932\u093e\u0938 \u0915\u093e \u0928\u093e\u092e\u0915\u0930\u0923 \u0908\u0925\u0930\u0928\u0947\u091f \u0915\u094d\u0932\u093e\u0907\u0902\u091f \u0939\u094b \u0917\u092f\u093e \u0939\u0948 @@ -1034,12 +1161,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u092a\u0941\u0938\u094d\u0924\u093f\u0915\u093e \u0916\u094b \u0917\u092f\u0940 \u0939\u0948 \n\u092a\u0930 \u092b\u093f\u0930 \u092d\u0940 \u0909\u0938\u0940 \u091c\u0917\u0939 \u092a\u0947 \u0938\u0947\u0935 \u0915\u0930\u0928\u0947 \u0915\u0940 \u0915\u094b\u0936\u093f\u0936 \u0939\u094b\u0917\u0940 \u0905\u0928\u094d\u092f\u0925\u093e \u0915\u094b\u0921 \u0916\u094b \u091c\u093e\u092f\u0917\u093e -#: Sketch.java:2018 -The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u093e \u0928\u093e\u092e \u092c\u0926\u0932\u0928\u093e \u0939\u094b\u0917\u093e ,\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u0947 \u0928\u093e\u092e \u092e\u0947\u0902 \n\u0938\u093f\u0930\u094d\u092b \u0905\u0915\u094d\u0937\u0930 \u0914\u0930 \u0905\u0902\u0915\u094b\u0902 \u0915\u093e \u0907\u0938\u094d\u0924\u0947\u092e\u093e\u0932 \u0915\u0940\u091c\u093f\u092f\u0947 \n\u0914\u0930 \u092f\u0939 \u092d\u0940 \u0927\u094d\u092f\u093e\u0928 \u0930\u0916\u0947\u0902 \u0915\u0940 64 \u0905\u0915\u094d\u0937\u0930 \u0938\u0947 \u091c\u094d\u092f\u093e\u0926\u093e \u0928\u093e \u0939\u094b +#: ../../../processing/app/Sketch.java:2028 +!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=\u0938\u094d\u0915\u0947\u0924\u094d\u091a\u092c\u0941\u0915 \u092b\u093c\u094b\u0932\u094d\u0921\u0930 \u0905\u092c \u092e\u094c\u091c\u0942\u0926 \u0928\u0939\u0940\u0902 \u0939\u0948| \u0906\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u0921\u093f\u092b\u093c\u0949\u0932\u094d\u091f \u0938\u094d\u0915\u0947\u0924\u094d\u091a\u092c\u0941\u0915 \u0938\u094d\u0925\u093e\u0928 \u092a\u0930 \u0938\u094d\u0935\u093f\u091a \u091c\u093e\u090f\u0917\u093e, \u0914\u0930 \u092f\u0926\u093f \u0906\u0935\u0936\u094d\u092f\u0915 \u090f\u0915 \u0928\u092f\u093e \u0938\u094d\u0915\u0947\u0924\u094d\u091a\u092c\u0941\u0915 \u092b\u093c\u094b\u0932\u094d\u0921\u0930 \u092c\u0928\u093e\u090f\u0917\u093e| \u0906\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u0924\u092c \u0924\u0940\u0938\u0930\u0947 \u0935\u094d\u092f\u0915\u094d\u0924\u093f \u092e\u0947\u0902 \u0916\u0941\u0926 \u0915\u0947 \u092c\u093e\u0930\u0947 \u092e\u0947\u0902 \u092c\u093e\u0924 \u0915\u0930\u0928\u093e \u092c\u0902\u0926 \u0915\u0930 \u0926\u0947\u0902\u0917\u0947. +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u092f\u0939 \u092b\u093e\u0907\u0932 \u092a\u0939\u0932\u0947 \u0939\u0940 \u0909\u0938 \u091c\u0917\u0939 \u092a\u0930 \u0939\u0948 \u091c\u093f\u0938 \u091c\u0917\u0939 \u092a\u0930 \u0906\u092a \u0907\u0938\u0947 \u0915\u0949\u092a\u0940 \u0915\u0930 \u0930\u0939\u0947 \u0939\u0948\u0902 \n\u0915\u0941\u091b \u0928\u0939\u0940\u0902 \u0915\u093f\u092f\u093e \u091c\u093e\u092f\u0917\u093e @@ -1143,6 +1273,10 @@ Verify\ /\ Compile=\u0935\u0947\u0930\u093f\u092b\u093e\u092f/\u0915\u092e\u094d #: Editor.java:1105 Visit\ Arduino.cc=Arduino.cc \u0926\u0947\u0916\u093f\u092f\u0947 +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= + #: Base.java:2128 Warning=\u091a\u0947\u0924\u093e\u0935\u0928\u0940 @@ -1241,9 +1375,6 @@ environment=\u0935\u093e\u0924\u093e\u0935\u0930\u0923 #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -!http\://github.com/arduino/Arduino/issues= - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1266,13 +1397,6 @@ name\ is\ null=\u0928\u093e\u092e \u092e\u0947 \u0915\u0941\u091b \u0928\u0939\u #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() byte \u092c\u0941\u092b\u094d\u092b\u0947\u0930 \u0915\u093e\u092b\u0940 \u091b\u094b\u091f\u093e \u0939\u0948 \u0915\u0940 \u092f\u0939 {0} bytes \u0906 \u091c\u093e\u092f\u0947\u0902 \u0914\u0930 including char {1} - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=\u0915\u094b\u0921 \u0939\u091f\u093e\u092f\u0947\u0902 \: \u0905\u0902\u0926\u0930\u0942\u0928\u0940 \u0924\u094d\u0930\u0941\u091f\u0940.....\u0915\u094b\u0921 \u0916\u094b\u091c\u093e \u0928\u0939\u0940\u0902 \u091c\u093e \u0938\u0915\u093e - #: Editor.java:932 serialMenu\ is\ null=\u0938\u0940\u0930\u093f\u092f\u0932\u092e\u0947\u0928\u0942 \u092e\u0947 \u0915\u0941\u091b \u0928\u0939\u0940 \u0939\u0948 @@ -1280,6 +1404,10 @@ serialMenu\ is\ null=\u0938\u0940\u0930\u093f\u092f\u0932\u092e\u0947\u0928\u094 #, java-format the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=\u091a\u0941\u0928\u093e \u0917\u092f\u093e \u0938\u0940\u0930\u093f\u092f\u0932 \u092a\u094b\u0930\u094d\u091f {0} \u092e\u094c\u091c\u0942\u0926 \u0928\u0939\u0940\u0902 \u0939\u0948 \u092f\u093e \u092c\u094b\u0930\u094d\u0921 \u0928\u0939\u0940\u0902 \u091c\u0941\u0921\u093c\u093e \u0939\u0941\u0906 \u0939\u0948 +#: ../../../processing/app/Base.java:389 +#, java-format +!unknown\ option\:\ {0}= + #: Preferences.java:391 upload=\u0909\u092a\u0932\u094b\u0921 @@ -1298,3 +1426,35 @@ upload=\u0909\u092a\u0932\u094b\u0921 #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= + +#: ../../../processing/app/Base.java:476 +#, java-format +!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= + +#: ../../../processing/app/Base.java:509 +#, java-format +!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= + +#: ../../../processing/app/Base.java:507 +#, java-format +!{0}\:\ Invalid\ option\ for\ board\ "{1}"= + +#: ../../../processing/app/Base.java:502 +#, java-format +!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= + +#: ../../../processing/app/Base.java:486 +#, java-format +{0}\:\ Unknown\ architecture={0}\: \u0905\u091c\u094d\u091e\u093e\u0924 \u0930\u091a\u0928\u093e + +#: ../../../processing/app/Base.java:491 +#, java-format +{0}\:\ Unknown\ board={0}\: \u0905\u091c\u094d\u091e\u093e\u0924 \u092c\u094b\u0930\u094d\u0921 + +#: ../../../processing/app/Base.java:481 +#, java-format +{0}\:\ Unknown\ package={0}\: \u0905\u091c\u094d\u091e\u093e\u0924 \u092a\u0948\u0915\u0947\u091c diff --git a/arduino-core/src/processing/app/i18n/Resources_hr_HR.po b/arduino-core/src/processing/app/i18n/Resources_hr_HR.po index 74d191860..a358f24a5 100644 --- a/arduino-core/src/processing/app/i18n/Resources_hr_HR.po +++ b/arduino-core/src/processing/app/i18n/Resources_hr_HR.po @@ -34,6 +34,12 @@ msgstr "'Mouse' podrška dostupna samo na Arduino Leonardo-u" msgid "(edit only when Arduino is not running)" msgstr "(uređivanje je moguće dok Arduino nije pokrenut)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -92,6 +98,10 @@ msgstr "Dodaj datoteku..." msgid "Add Library..." msgstr "Dodavanje biblioteke..." +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "Albanian" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -99,6 +109,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "POjavila se greska prilikom pokušaja popravka enkodinga.\nNemojte pokusati snimiti ovu skicu, jer će \nprepisati orginal. Iskoristite Otvori kako bi ste ponovno otvorili skicu.\n" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -177,6 +201,30 @@ msgstr "Želiš li sigurno obrisati \"{0}\"?" msgid "Are you sure you want to delete this sketch?" msgstr "Želiš li sigurno obrisati skicu?" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "Potreban argument za --board" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "Potreban argument za --curdir" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "Potreban argument za --port" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "Potreban argument za --pref" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "Potreban argument za --preferences-file" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "Armenian" @@ -185,6 +233,10 @@ msgstr "Armenian" msgid "Asturian" msgstr "Asturian" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "Auto Formatiranje" @@ -226,6 +278,14 @@ msgstr "Greška u liniji: {0}" msgid "Bad file selected" msgstr "Pogrešno odabrana datoteka" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "Basque" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "Belarusian" @@ -262,6 +322,10 @@ msgstr "Pregledaj" msgid "Build folder disappeared or could not be written" msgstr "Mapa za kompajliranje je nestala ili se u nju nemože zapisivati" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "Opcije konstrukcije izmjenjene, rekonstrukcija svega" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Bulgarian" @@ -278,9 +342,15 @@ msgstr "Zapiši Bootloader" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "Zapisivanje bootloadera na I/O pločicu (ovo će potrajati nekoliko minuta)..." -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" -msgstr "Nemogu otvoriti skicu!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" +msgstr "" #: ../../../processing/app/Preferences.java:92 msgid "Canadian French" @@ -295,6 +365,10 @@ msgstr "Prekini" msgid "Cannot Rename" msgstr "Nemogu preimenovati" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "Carriage return (CR)" @@ -339,11 +413,6 @@ msgstr "Zatvori" msgid "Comment/Uncomment" msgstr "Komentiraj/odkomentiraj" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "Greška kompajlera, molimo prijavite taj kod na {0}" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "Prevođenje skice..." @@ -451,10 +520,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Nemogu pročitati osnovne postavke.\nPotrebno je ponovno instalirati Arduino." -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "Nemogu pročitati preporučene vrijednost iz {0}" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "Ne mogu se pročitati datoteka prethodnih postavki konstrukcije, rekonstrukcija svega" #: Base.java:2482 #, java-format @@ -483,6 +551,10 @@ msgstr "Nemogu preimenovati skicu.(2)" msgid "Could not replace {0}" msgstr "Nemogu zamjeniti {0}" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "Ne može se upisivati u datoteku postavki konstrukcije" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Nemogu arhivirati skicu" @@ -552,6 +624,11 @@ msgstr "Pohranjivanje završilo." msgid "Done burning bootloader." msgstr "Završilo zapisivanje bootloadera." +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "Kompajliranje zavrseno." @@ -560,6 +637,10 @@ msgstr "Kompajliranje zavrseno." msgid "Done printing." msgstr "Tiskanje završeno." +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "Prenošenje završeno." @@ -663,6 +744,10 @@ msgstr "Greska pri zapisu bootloadera." msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "Greška kod programiranja bootloader-a: nedostaje '{0}' konfiguracijski parametar" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -672,11 +757,25 @@ msgstr "Greška pri učitavanju koda {0}" msgid "Error while printing." msgstr "Greška pri tiskanju." +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "Greška prilikom prebacivanja: nedostaje '{0}' konfiguracijski parametar" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "Estonian" @@ -697,6 +796,11 @@ msgstr "Prekinuto exportiranje, potrebno je prvo pohraniti promjene." msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "Greška otvaranja skice: \"{0}\"" + #: Editor.java:491 msgid "File" msgstr "Datoteka" @@ -744,9 +848,10 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "Informacije o instalaciji dodatnih biblioteka su na: http://arduino.cc/en/Guide/Libraries\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " -msgstr "Pokušaj ponovnog pokretanja korištenjem 1200bps" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" +msgstr "" #: Preferences.java:95 msgid "French" @@ -894,9 +999,9 @@ msgstr "Biblioteka dodana na popis biblioteka. Provjeri \"Uključi biblioteku\" msgid "Lithuaninan" msgstr "Lithuaninan" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" -msgstr "Premalo memorije dostupno, mogu se pojaviti problemi sa stabilnošču." +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." +msgstr "" #: Preferences.java:107 msgid "Marathi" @@ -910,6 +1015,10 @@ msgstr "Poruka" msgid "Missing the */ from the end of a /* comment */" msgstr "Nedostaje */ na kraju bloka /* komentar */" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "Više preporučenih vrijednosti moguće je promjeniti direktno uređivanjem datoteke" @@ -918,6 +1027,18 @@ msgstr "Više preporučenih vrijednosti moguće je promjeniti direktno uređivan msgid "Moving" msgstr "Pomakni" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "Mora se navesti samo jedna datoteka skica" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "N'Ko" + #: Sketch.java:282 msgid "Name for new file:" msgstr "Naziv nove datoteke:" @@ -954,6 +1075,10 @@ msgstr "Slijedeća kartica" msgid "No" msgstr "Ne" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "Nije odabrana niti jedna pločica; odaberite plčicu iz Alati> Pločica izbornika." @@ -962,6 +1087,10 @@ msgstr "Nije odabrana niti jedna pločica; odaberite plčicu iz Alati> Pločica msgid "No changes necessary for Auto Format." msgstr "Nema promjena nakon auto formatiranja." +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "Niti jedna datoteka nije dodana u skicu." @@ -974,6 +1103,10 @@ msgstr "Ne postoji aplikacija za pokretanje" msgid "No line ending" msgstr "Bez znaka za završetak linije" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "Stvarno ? Vrijeme je za malo svježeg zraka." @@ -983,6 +1116,19 @@ msgstr "Stvarno ? Vrijeme je za malo svježeg zraka." msgid "No reference available for \"{0}\"" msgstr "Ne postoji referenca za \"{0}\"" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "Nije pronađena valjana datoteka koda" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "Nije pronađena valida osnova. Izlazak..." @@ -1019,6 +1165,10 @@ msgstr "OK" msgid "One file added to the sketch." msgstr "Jedna datoteka dodana u skicu." +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "Otvori" @@ -1055,14 +1205,27 @@ msgstr "Zaljepi" msgid "Persian" msgstr "Persian" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "Persian (Iran)" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "Molimo uključite SPI biblioteku s Skica > Uključi biblioteku izbornika." +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "Molim vas uvezite \"Wire\" bilblioteku iz izbornika \"Skica > Uvoz biblioteke\"" + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "Molim instalirajte JDK 1.5 ili veći" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "Polish" @@ -1225,10 +1388,18 @@ msgstr "Snimiti promjene u \"{0}\"?" msgid "Save sketch folder as..." msgstr "Snimi skicu u mapu kao ..." +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "Pohranjivanje..." +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "Odaberi (ili kreiraj novu) mapu za skice" @@ -1261,20 +1432,6 @@ msgstr "Pošalji" msgid "Serial Monitor" msgstr "Serial Monitor" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "Serijski port \"{0}\" se već koristi. Pokušajte s zaustavljanjem programa koji ga koriste." - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "Serijski port \"{0}\" se već koristi. Pokušajte s zaustavljanjem programa koji ga koriste." - #: Serial.java:194 #, java-format msgid "" @@ -1354,6 +1511,10 @@ msgstr "Nestala je mapa s biljznicam s skicama" msgid "Sketchbook location:" msgstr "Lokacija skica:" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "Skice (*.ino, *.pde)" @@ -1404,6 +1565,10 @@ msgstr "Tamil" msgid "The 'BYTE' keyword is no longer supported." msgstr "'BYTE' klučna riječ se višew ne koristi." +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "Client klasa je promjenila naziv u EthernetClient." @@ -1471,12 +1636,12 @@ msgid "" "but anything besides the code will be lost." msgstr "Mapa s skicama je nestala.\nPokušat ću pohraniti kod skice, \nno sve izvan toga će biti izgubljeno." -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." -msgstr "Naziv skice se mora promjeniti. Naziv skice može sadržavati\nsamo ASCII znakove i brojeve (no nemože započeti brojem).\nTakođer naziv treba biti manji od 64 znaka." +"They should also be less than 64 characters long." +msgstr "Naziv skice se mora izmijeniti. Nazivi skica mogu samo sadržavati\nASCII karaktere i brojeve (ali ne mogu počinjati s brojem).\nTakođe moraju biti kraći od 64 karaktera." #: Base.java:259 msgid "" @@ -1487,6 +1652,12 @@ msgid "" "himself in the third person." msgstr "Mapa s bilježnicama s skicama više ne postoji.\nArduino će poćet koristiti sistemsku lokaciju kako bi kreirao\nnovu bilježnicu s skicama, ako bude potrebna." +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1629,6 +1800,13 @@ msgstr "Vietnamese" msgid "Visit Arduino.cc" msgstr "Posjeti Arduino.cc" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "UPOZORENJE: biblioteka {0} je pisana za izvršavanje na {1} arhitekturi(ama), i može biti nekompatibilna sa tekućom pločom koja je bazirana {2} arhitekturi(ima)." + #: Base.java:2128 msgid "Warning" msgstr "Upozorenje" @@ -1797,10 +1975,6 @@ msgstr "okolina" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "http://github.com/arduino/Arduino/issues" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1830,17 +2004,6 @@ msgstr "name je null" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "readBytesUntil() byte buffer je premalen za {0} bytes i uključivanje char {1}" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "remoceCode: interna greška ... nemogu nači kod" - #: Editor.java:932 msgid "serialMenu is null" msgstr "serialMenu je null" @@ -1851,6 +2014,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "odabrani serijski port {0} ne postoji ili vaša pločica nije priključena" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "nepoznata opcija: {0}" + #: Preferences.java:391 msgid "upload" msgstr "prijenos" @@ -1874,3 +2042,45 @@ msgstr "{0} | Arduino {1}" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "{0}: Neispravan argument --stavka, treba biti u formi \"stavka=vrijednost\"" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "{0}: Neispravan naziv ploče, treba biti u formi \"package:arch:board\" ili \"package:arch:board:options\"" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "{0}: Neispravna opcija za \"{1}\" opcije za ploču \"{2}\"" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "{0}: Neispravna opcija za za ploču \"{1}\"" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "{0}: Neispravna opcija, treba biti u formi \"naziv=vrijednost\"" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "{0}: Nepoznata arhitektura" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "{0}: Nepoznata ploča" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "{0}: Nepoznat paket" diff --git a/arduino-core/src/processing/app/i18n/Resources_hr_HR.properties b/arduino-core/src/processing/app/i18n/Resources_hr_HR.properties index bbb50b7e4..6967d6130 100644 --- a/arduino-core/src/processing/app/i18n/Resources_hr_HR.properties +++ b/arduino-core/src/processing/app/i18n/Resources_hr_HR.properties @@ -18,6 +18,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(ure\u0111ivanje je mogu\u0107e dok Arduino nije pokrenut) +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -54,9 +57,23 @@ Add\ File...=Dodaj datoteku... #: Base.java:963 Add\ Library...=Dodavanje biblioteke... +#: ../../../processing/app/Preferences.java:96 +Albanian=Albanian + #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=POjavila se greska prilikom poku\u0161aja popravka enkodinga.\nNemojte pokusati snimiti ovu skicu, jer \u0107e \nprepisati orginal. Iskoristite Otvori kako bi ste ponovno otvorili skicu.\n +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Pojavila se nepoznata gre\u0161ka prilikom prijenosa\nplatformno specifi\u010dnog koda na lokalnoj ma\u0161ini. @@ -106,12 +123,33 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u017deli\u0161 li sigurno obrisat #: Sketch.java:587 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u017deli\u0161 li sigurno obrisati skicu? +#: ../../../processing/app/Base.java:356 +Argument\ required\ for\ --board=Potreban argument za --board + +#: ../../../processing/app/Base.java:370 +Argument\ required\ for\ --curdir=Potreban argument za --curdir + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +Argument\ required\ for\ --port=Potreban argument za --port + +#: ../../../processing/app/Base.java:377 +Argument\ required\ for\ --pref=Potreban argument za --pref + +#: ../../../processing/app/Base.java:384 +Argument\ required\ for\ --preferences-file=Potreban argument za --preferences-file + #: ../../../processing/app/Preferences.java:137 Armenian=Armenian #: ../../../processing/app/Preferences.java:138 Asturian=Asturian +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 Auto\ Format=Auto Formatiranje @@ -143,6 +181,12 @@ Bad\ error\ line\:\ {0}=Gre\u0161ka u liniji\: {0} #: Editor.java:2136 Bad\ file\ selected=Pogre\u0161no odabrana datoteka +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +Basque=Basque + #: ../../../processing/app/Preferences.java:139 Belarusian=Belarusian @@ -169,6 +213,9 @@ Browse=Pregledaj #: Sketch.java:1392 Sketch.java:1423 Build\ folder\ disappeared\ or\ could\ not\ be\ written=Mapa za kompajliranje je nestala ili se u nju nemo\u017ee zapisivati +#: ../../../processing/app/Sketch.java:1530 +Build\ options\ changed,\ rebuilding\ all=Opcije konstrukcije izmjenjene, rekonstrukcija svega + #: ../../../processing/app/Preferences.java:80 Bulgarian=Bulgarian @@ -181,8 +228,13 @@ Burn\ Bootloader=Zapi\u0161i Bootloader #: Editor.java:2504 Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Zapisivanje bootloadera na I/O plo\u010dicu (ovo \u0107e potrajati nekoliko minuta)... -#: ../../../processing/app/Base.java:368 -Can't\ open\ source\ sketch\!=Nemogu otvoriti skicu\! +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 Canadian\ French=Canadian French @@ -194,6 +246,9 @@ Cancel=Prekini #: Sketch.java:455 Cannot\ Rename=Nemogu preimenovati +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 Carriage\ return=Carriage return (CR) @@ -227,10 +282,6 @@ Close=Zatvori #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=Komentiraj/odkomentiraj -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Gre\u0161ka kompajlera, molimo prijavite taj kod na {0} - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=Prevo\u0111enje skice... @@ -306,9 +357,8 @@ Could\ not\ re-save\ sketch=Nemogu ponovno pohraniti skicu. #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Nemogu pro\u010ditati osnovne postavke.\nPotrebno je ponovno instalirati Arduino. -#: Preferences.java:258 -#, java-format -Could\ not\ read\ preferences\ from\ {0}=Nemogu pro\u010ditati preporu\u010dene vrijednost iz {0} +#: ../../../processing/app/Sketch.java:1525 +Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=Ne mogu se pro\u010ditati datoteka prethodnih postavki konstrukcije, rekonstrukcija svega #: Base.java:2482 #, java-format @@ -331,6 +381,9 @@ Could\ not\ rename\ the\ sketch.\ (2)=Nemogu preimenovati skicu.(2) #, java-format Could\ not\ replace\ {0}=Nemogu zamjeniti {0} +#: ../../../processing/app/Sketch.java:1579 +Could\ not\ write\ build\ preferences\ file=Ne mo\u017ee se upisivati u datoteku postavki konstrukcije + #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Nemogu arhivirati skicu @@ -379,12 +432,19 @@ Done\ Saving.=Pohranjivanje zavr\u0161ilo. #: Editor.java:2510 Done\ burning\ bootloader.=Zavr\u0161ilo zapisivanje bootloadera. +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=Kompajliranje zavrseno. #: Editor.java:2564 Done\ printing.=Tiskanje zavr\u0161eno. +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=Preno\u0161enje zavr\u0161eno. @@ -463,6 +523,9 @@ Error\ while\ burning\ bootloader.=Greska pri zapisu bootloadera. #: ../../../processing/app/Editor.java:2555 Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=Gre\u0161ka kod programiranja bootloader-a\: nedostaje '{0}' konfiguracijski parametar +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=Gre\u0161ka pri u\u010ditavanju koda {0} @@ -470,10 +533,21 @@ Error\ while\ loading\ code\ {0}=Gre\u0161ka pri u\u010ditavanju koda {0} #: Editor.java:2567 Error\ while\ printing.=Gre\u0161ka pri tiskanju. +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=Gre\u0161ka prilikom prebacivanja\: nedostaje '{0}' konfiguracijski parametar +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 Estonian=Estonian @@ -489,6 +563,10 @@ Export\ canceled,\ changes\ must\ first\ be\ saved.=Prekinuto exportiranje, potr #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +Failed\ to\ open\ sketch\:\ "{0}"=Gre\u0161ka otvaranja skice\: "{0}" + #: Editor.java:491 File=Datoteka @@ -523,8 +601,9 @@ Fix\ Encoding\ &\ Reload=Popravi enkoding i Ponovno u\u010ditaj #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=Informacije o instalaciji dodatnih biblioteka su na\: http\://arduino.cc/en/Guide/Libraries\n -#: debug/BasicUploader.java:80 -Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =Poku\u0161aj ponovnog pokretanja kori\u0161tenjem 1200bps +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=French @@ -628,8 +707,8 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Biblioteka #: Preferences.java:106 Lithuaninan=Lithuaninan -#: ../../../processing/app/Sketch.java:1660 -Low\ memory\ available,\ stability\ problems\ may\ occur=Premalo memorije dostupno, mogu se pojaviti problemi sa stabilno\u0161\u010du. +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 Marathi=Marathi @@ -640,12 +719,24 @@ Message=Poruka #: ../../../processing/app/preproc/PdePreprocessor.java:412 Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Nedostaje */ na kraju bloka /* komentar */ +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Vi\u0161e preporu\u010denih vrijednosti mogu\u0107e je promjeniti direktno ure\u0111ivanjem datoteke #: Editor.java:2156 Moving=Pomakni +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +Must\ specify\ exactly\ one\ sketch\ file=Mora se navesti samo jedna datoteka skica + +#: ../../../processing/app/Preferences.java:158 +N'Ko=N'Ko + #: Sketch.java:282 Name\ for\ new\ file\:=Naziv nove datoteke\: @@ -673,12 +764,18 @@ Next\ Tab=Slijede\u0107a kartica #: Preferences.java:78 UpdateCheck.java:108 No=Ne +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Nije odabrana niti jedna plo\u010dica; odaberite pl\u010dicu iz Alati> Plo\u010dica izbornika. #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Nema promjena nakon auto formatiranja. +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=Niti jedna datoteka nije dodana u skicu. @@ -688,6 +785,9 @@ No\ launcher\ available=Ne postoji aplikacija za pokretanje #: SerialMonitor.java:112 No\ line\ ending=Bez znaka za zavr\u0161etak linije +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Stvarno ? Vrijeme je za malo svje\u017eeg zraka. @@ -695,6 +795,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Stvarno ? Vrijeme je za malo #, java-format No\ reference\ available\ for\ "{0}"=Ne postoji referenca za "{0}" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +No\ valid\ code\ files\ found=Nije prona\u0111ena valjana datoteka koda + #: ../../../processing/app/Base.java:309 No\ valid\ configured\ cores\ found\!\ Exiting...=Nije prona\u0111ena valida osnova. Izlazak... @@ -721,6 +831,9 @@ OK=OK #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=Jedna datoteka dodana u skicu. +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=Otvori @@ -748,12 +861,22 @@ Paste=Zaljepi #: Preferences.java:109 Persian=Persian +#: ../../../processing/app/Preferences.java:161 +Persian\ (Iran)=Persian (Iran) + #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Molimo uklju\u010dite SPI biblioteku s Skica > Uklju\u010di biblioteku izbornika. +#: ../../../processing/app/debug/Compiler.java:529 +Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Molim vas uvezite "Wire" bilblioteku iz izbornika "Skica > Uvoz biblioteke" + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=Molim instalirajte JDK 1.5 ili ve\u0107i +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 Polish=Polish @@ -875,9 +998,15 @@ Save\ changes\ to\ "{0}"?\ \ =Snimiti promjene u "{0}"? #: Sketch.java:825 Save\ sketch\ folder\ as...=Snimi skicu u mapu kao ... +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=Pohranjivanje... +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=Odaberi (ili kreiraj novu) mapu za skice @@ -902,14 +1031,6 @@ Send=Po\u0161alji #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=Serial Monitor -#: Serial.java:174 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Serijski port "{0}" se ve\u0107 koristi. Poku\u0161ajte s zaustavljanjem programa koji ga koriste. - -#: Serial.java:121 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=Serijski port "{0}" se ve\u0107 koristi. Poku\u0161ajte s zaustavljanjem programa koji ga koriste. - #: Serial.java:194 #, java-format Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Serijski port "{0}" nije prona\u0111en. Da li ste odabrali ispravan port s Alati > Serijski port izbornika @@ -964,6 +1085,9 @@ Sketchbook\ folder\ disappeared=Nestala je mapa s biljznicam s skicama #: Preferences.java:315 Sketchbook\ location\:=Lokacija skica\: +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 Sketches\ (*.ino,\ *.pde)=Skice (*.ino, *.pde) @@ -998,6 +1122,9 @@ Tamil=Tamil #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.='BYTE' klu\u010dna rije\u010d se vi\u0161ew ne koristi. +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Client klasa je promjenila naziv u EthernetClient. @@ -1034,12 +1161,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Mapa s skicama je nestala.\nPoku\u0161at \u0107u pohraniti kod skice, \nno sve izvan toga \u0107e biti izgubljeno. -#: Sketch.java:2018 -The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=Naziv skice se mora promjeniti. Naziv skice mo\u017ee sadr\u017eavati\nsamo ASCII znakove i brojeve (no nemo\u017ee zapo\u010deti brojem).\nTako\u0111er naziv treba biti manji od 64 znaka. +#: ../../../processing/app/Sketch.java:2028 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.=Naziv skice se mora izmijeniti. Nazivi skica mogu samo sadr\u017eavati\nASCII karaktere i brojeve (ali ne mogu po\u010dinjati s brojem).\nTako\u0111e moraju biti kra\u0107i od 64 karaktera. #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Mapa s bilje\u017enicama s skicama vi\u0161e ne postoji.\nArduino \u0107e po\u0107et koristiti sistemsku lokaciju kako bi kreirao\nnovu bilje\u017enicu s skicama, ako bude potrebna. +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Datoteka je v\u0107 kopirana na\nmjesto @@ -1143,6 +1273,10 @@ Vietnamese=Vietnamese #: Editor.java:1105 Visit\ Arduino.cc=Posjeti Arduino.cc +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=UPOZORENJE\: biblioteka {0} je pisana za izvr\u0161avanje na {1} arhitekturi(ama), i mo\u017ee biti nekompatibilna sa teku\u0107om plo\u010dom koja je bazirana {2} arhitekturi(ima). + #: Base.java:2128 Warning=Upozorenje @@ -1241,9 +1375,6 @@ environment=okolina #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1266,13 +1397,6 @@ name\ is\ null=name je null #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() byte buffer je premalen za {0} bytes i uklju\u010divanje char {1} - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=remoceCode\: interna gre\u0161ka ... nemogu na\u010di kod - #: Editor.java:932 serialMenu\ is\ null=serialMenu je null @@ -1280,6 +1404,10 @@ serialMenu\ is\ null=serialMenu je null #, java-format the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=odabrani serijski port {0} ne postoji ili va\u0161a plo\u010dica nije priklju\u010dena +#: ../../../processing/app/Base.java:389 +#, java-format +unknown\ option\:\ {0}=nepoznata opcija\: {0} + #: Preferences.java:391 upload=prijenos @@ -1298,3 +1426,35 @@ upload=prijenos #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"={0}\: Neispravan argument --stavka, treba biti u formi "stavka\=vrijednost" + +#: ../../../processing/app/Base.java:476 +#, java-format +{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"={0}\: Neispravan naziv plo\u010de, treba biti u formi "package\:arch\:board" ili "package\:arch\:board\:options" + +#: ../../../processing/app/Base.java:509 +#, java-format +{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"={0}\: Neispravna opcija za "{1}" opcije za plo\u010du "{2}" + +#: ../../../processing/app/Base.java:507 +#, java-format +{0}\:\ Invalid\ option\ for\ board\ "{1}"={0}\: Neispravna opcija za za plo\u010du "{1}" + +#: ../../../processing/app/Base.java:502 +#, java-format +{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"={0}\: Neispravna opcija, treba biti u formi "naziv\=vrijednost" + +#: ../../../processing/app/Base.java:486 +#, java-format +{0}\:\ Unknown\ architecture={0}\: Nepoznata arhitektura + +#: ../../../processing/app/Base.java:491 +#, java-format +{0}\:\ Unknown\ board={0}\: Nepoznata plo\u010da + +#: ../../../processing/app/Base.java:481 +#, java-format +{0}\:\ Unknown\ package={0}\: Nepoznat paket diff --git a/arduino-core/src/processing/app/i18n/Resources_hu.po b/arduino-core/src/processing/app/i18n/Resources_hu.po index 94b5caf0c..891571647 100644 --- a/arduino-core/src/processing/app/i18n/Resources_hu.po +++ b/arduino-core/src/processing/app/i18n/Resources_hu.po @@ -33,6 +33,12 @@ msgstr "Az 'USB Egér' megvalósítást csak az Arduino Leonardo támogatja." msgid "(edit only when Arduino is not running)" msgstr "(csak akkor szerkeszthető, ha az Arduino nem fut)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -91,6 +97,10 @@ msgstr "Fájl hozzáadása..." msgid "Add Library..." msgstr "Függvénykönyvtár hozzáadása..." +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "Albán" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -98,6 +108,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -176,6 +200,30 @@ msgstr "" msgid "Are you sure you want to delete this sketch?" msgstr "" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "" @@ -184,6 +232,10 @@ msgstr "" msgid "Asturian" msgstr "" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "" @@ -225,6 +277,14 @@ msgstr "" msgid "Bad file selected" msgstr "" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "" @@ -261,6 +321,10 @@ msgstr "" msgid "Build folder disappeared or could not be written" msgstr "" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "" @@ -277,8 +341,14 @@ msgstr "" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "" -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" msgstr "" #: ../../../processing/app/Preferences.java:92 @@ -294,6 +364,10 @@ msgstr "" msgid "Cannot Rename" msgstr "" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "Soremelés" @@ -338,11 +412,6 @@ msgstr "" msgid "Comment/Uncomment" msgstr "" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "Fordítási hiba, ezt a kódot kérem küldje el a {0} címre" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "" @@ -450,10 +519,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Az alapértelezett beállítások nem olvashatóak\\nAz Arduino újratelepítése szükséges." -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "A beállítások nem olvashatóak: {0}" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "" #: Base.java:2482 #, java-format @@ -482,6 +550,10 @@ msgstr "" msgid "Could not replace {0}" msgstr "Nem cserélhető: {0}" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "" @@ -551,6 +623,11 @@ msgstr "Mentés kész." msgid "Done burning bootloader." msgstr "" +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "" @@ -559,6 +636,10 @@ msgstr "" msgid "Done printing." msgstr "" +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "" @@ -662,6 +743,10 @@ msgstr "" msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -671,11 +756,25 @@ msgstr "" msgid "Error while printing." msgstr "" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "" @@ -696,6 +795,11 @@ msgstr "" msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "" + #: Editor.java:491 msgid "File" msgstr "" @@ -743,9 +847,10 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "A függvénykönyvtárak telepítéséhez nézd meg:/nhttp://arduino.cc/en/Guide/Libraries\\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " -msgstr "1200 bps sebességbeállítás mellett kényszerített reset kerül a portra" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" +msgstr "" #: Preferences.java:95 msgid "French" @@ -893,8 +998,8 @@ msgstr "" msgid "Lithuaninan" msgstr "Litván" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: Preferences.java:107 @@ -909,6 +1014,10 @@ msgstr "Üzenet" msgid "Missing the */ from the end of a /* comment */" msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "További számos beállítás elérhető a file közvetlen szerkesztésével" @@ -917,6 +1026,18 @@ msgstr "További számos beállítás elérhető a file közvetlen szerkesztés msgid "Moving" msgstr "" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "" + #: Sketch.java:282 msgid "Name for new file:" msgstr "Új file neve:" @@ -953,6 +1074,10 @@ msgstr "Következő fül" msgid "No" msgstr "" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "Nincs alappanel kiválasztva. Választani az Eszközök > Alappanel menüből lehet." @@ -961,6 +1086,10 @@ msgstr "Nincs alappanel kiválasztva. Választani az Eszközök > Alappanel men msgid "No changes necessary for Auto Format." msgstr "" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "" @@ -973,6 +1102,10 @@ msgstr "" msgid "No line ending" msgstr "" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "Hoppá, itt az idő levegőznöd egyet." @@ -982,6 +1115,19 @@ msgstr "Hoppá, itt az idő levegőznöd egyet." msgid "No reference available for \"{0}\"" msgstr "" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "" @@ -1018,6 +1164,10 @@ msgstr "" msgid "One file added to the sketch." msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "" @@ -1054,14 +1204,27 @@ msgstr "" msgid "Persian" msgstr "Perzsa" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "Az SPI függvények használatához a Sketch > Függvény import alatt az SPI-re van szüksége." +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "" + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "A futtatáshoz telepített Java 1.5 vagy újabb szoftverkörnyezet szükséges" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "Lengyel" @@ -1224,10 +1387,18 @@ msgstr "" msgid "Save sketch folder as..." msgstr "" +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "Mentés..." +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "Válassz (vagy hozz létre) mappát a Sketch-eknek..." @@ -1260,20 +1431,6 @@ msgstr "" msgid "Serial Monitor" msgstr "" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "" - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "A {0} soros port használatban van. A programból való kilépés után próbálja újra." - #: Serial.java:194 #, java-format msgid "" @@ -1353,6 +1510,10 @@ msgstr "A SketchBook mappa elérhetetlen" msgid "Sketchbook location:" msgstr "SketchBook helye:" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "" @@ -1403,6 +1564,10 @@ msgstr "Tamil" msgid "The 'BYTE' keyword is no longer supported." msgstr "A 'BYTE' kulcsszó nem támogatott." +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "A Client osztály új neve: EthernetClient" @@ -1470,11 +1635,11 @@ msgid "" "but anything besides the code will be lost." msgstr "" -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." +"They should also be less than 64 characters long." msgstr "" #: Base.java:259 @@ -1486,6 +1651,12 @@ msgid "" "himself in the third person." msgstr "A SketchBook mappa nem érhető el.\\nAz alapértelmezett hely lesz kiválasztva, és\\nitt létrehozva a sketch mappa." +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1628,6 +1799,13 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "" + #: Base.java:2128 msgid "Warning" msgstr "Figyelmeztetés" @@ -1796,10 +1974,6 @@ msgstr "környezet" msgid "http://arduino.cc/" msgstr "" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "" @@ -1829,17 +2003,6 @@ msgstr "" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "" - #: Editor.java:932 msgid "serialMenu is null" msgstr "" @@ -1850,6 +2013,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "kiválasztott {0} port nem elérhető vagy az alappanel nincs csatlakoztatva" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "" + #: Preferences.java:391 msgid "upload" msgstr "feltöltéskor" @@ -1873,3 +2041,45 @@ msgstr "{0} | Arduino {1}" #, java-format msgid "{0}.html" msgstr "" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "" diff --git a/arduino-core/src/processing/app/i18n/Resources_hu.properties b/arduino-core/src/processing/app/i18n/Resources_hu.properties index 09ceb3e7d..5d641fde6 100644 --- a/arduino-core/src/processing/app/i18n/Resources_hu.properties +++ b/arduino-core/src/processing/app/i18n/Resources_hu.properties @@ -17,6 +17,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(csak akkor szerkeszthet\u0151, ha az Arduino nem fut) +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -53,9 +56,23 @@ Add\ File...=F\u00e1jl hozz\u00e1ad\u00e1sa... #: Base.java:963 Add\ Library...=F\u00fcggv\u00e9nyk\u00f6nyvt\u00e1r hozz\u00e1ad\u00e1sa... +#: ../../../processing/app/Preferences.java:96 +Albanian=Alb\u00e1n + #: tools/FixEncoding.java:77 !An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n= +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Rendszerf\u00fcgg\u0151 k\u00f3d bet\u00f6lt\u00e9se sor\u00e1n\\n hiba l\u00e9pett fel. A hiba az \u00d6n g\u00e9p\u00e9ben van. @@ -105,12 +122,33 @@ Arduino\:\ =Arduino\: #: Sketch.java:587 !Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?= +#: ../../../processing/app/Base.java:356 +!Argument\ required\ for\ --board= + +#: ../../../processing/app/Base.java:370 +!Argument\ required\ for\ --curdir= + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +!Argument\ required\ for\ --port= + +#: ../../../processing/app/Base.java:377 +!Argument\ required\ for\ --pref= + +#: ../../../processing/app/Base.java:384 +!Argument\ required\ for\ --preferences-file= + #: ../../../processing/app/Preferences.java:137 !Armenian= #: ../../../processing/app/Preferences.java:138 !Asturian= +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 !Auto\ Format= @@ -142,6 +180,12 @@ Automatically\ associate\ .ino\ files\ with\ Arduino=Automatikus kiterjeszt\u00e #: Editor.java:2136 !Bad\ file\ selected= +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +!Basque= + #: ../../../processing/app/Preferences.java:139 !Belarusian= @@ -168,6 +212,9 @@ Both\ NL\ &\ CR=Soremel\u00e9s \u00e9s kocsivissza #: Sketch.java:1392 Sketch.java:1423 !Build\ folder\ disappeared\ or\ could\ not\ be\ written= +#: ../../../processing/app/Sketch.java:1530 +!Build\ options\ changed,\ rebuilding\ all= + #: ../../../processing/app/Preferences.java:80 !Bulgarian= @@ -180,8 +227,13 @@ Both\ NL\ &\ CR=Soremel\u00e9s \u00e9s kocsivissza #: Editor.java:2504 !Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...= -#: ../../../processing/app/Base.java:368 -!Can't\ open\ source\ sketch\!= +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 !Canadian\ French= @@ -193,6 +245,9 @@ Both\ NL\ &\ CR=Soremel\u00e9s \u00e9s kocsivissza #: Sketch.java:455 !Cannot\ Rename= +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 Carriage\ return=Soremel\u00e9s @@ -226,10 +281,6 @@ Check\ for\ updates\ on\ startup=\u00dajabb verzi\u00f3 ellen\u0151rz\u00e9se in #: Editor.java:1208 Editor.java:2749 !Comment/Uncomment= -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Ford\u00edt\u00e1si hiba, ezt a k\u00f3dot k\u00e9rem k\u00fcldje el a {0} c\u00edmre - #: Sketch.java:1608 Editor.java:1890 !Compiling\ sketch...= @@ -305,9 +356,8 @@ Could\ not\ open\ the\ folder\n{0}=Nem nyithat\u00f3 meg a mappa\:\\n{0} #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Az alap\u00e9rtelezett be\u00e1ll\u00edt\u00e1sok nem olvashat\u00f3ak\\nAz Arduino \u00fajratelep\u00edt\u00e9se sz\u00fcks\u00e9ges. -#: Preferences.java:258 -#, java-format -Could\ not\ read\ preferences\ from\ {0}=A be\u00e1ll\u00edt\u00e1sok nem olvashat\u00f3ak\: {0} +#: ../../../processing/app/Sketch.java:1525 +!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= #: Base.java:2482 #, java-format @@ -330,6 +380,9 @@ Could\ not\ remove\ old\ version\ of\ {0}=Nem t\u00f6r\u00f6lhet\u0151 a {0} r\u #, java-format Could\ not\ replace\ {0}=Nem cser\u00e9lhet\u0151\: {0} +#: ../../../processing/app/Sketch.java:1579 +!Could\ not\ write\ build\ preferences\ file= + #: tools/Archiver.java:74 !Couldn't\ archive\ sketch= @@ -378,12 +431,19 @@ Done\ Saving.=Ment\u00e9s k\u00e9sz. #: Editor.java:2510 !Done\ burning\ bootloader.= +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 !Done\ compiling.= #: Editor.java:2564 !Done\ printing.= +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 !Done\ uploading.= @@ -462,6 +522,9 @@ Error\ touching\ serial\ port\ ''{0}''.=Hiba a "{0}" port hozz\u00e1f\u00e9r\u00 #: ../../../processing/app/Editor.java:2555 !Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format !Error\ while\ loading\ code\ {0}= @@ -469,10 +532,21 @@ Error\ touching\ serial\ port\ ''{0}''.=Hiba a "{0}" port hozz\u00e1f\u00e9r\u00 #: Editor.java:2567 !Error\ while\ printing.= +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 !Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 !Estonian= @@ -488,6 +562,10 @@ Error\ touching\ serial\ port\ ''{0}''.=Hiba a "{0}" port hozz\u00e1f\u00e9r\u00 #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +!Failed\ to\ open\ sketch\:\ "{0}"= + #: Editor.java:491 !File= @@ -522,8 +600,9 @@ FAQ.html=FAQ.html #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=A f\u00fcggv\u00e9nyk\u00f6nyvt\u00e1rak telep\u00edt\u00e9s\u00e9hez n\u00e9zd meg\:/nhttp\://arduino.cc/en/Guide/Libraries\\n -#: debug/BasicUploader.java:80 -Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =1200 bps sebess\u00e9gbe\u00e1ll\u00edt\u00e1s mellett k\u00e9nyszer\u00edtett reset ker\u00fcl a portra +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 !French= @@ -627,8 +706,8 @@ Latvian=Lett #: Preferences.java:106 Lithuaninan=Litv\u00e1n -#: ../../../processing/app/Sketch.java:1660 -!Low\ memory\ available,\ stability\ problems\ may\ occur= +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 !Marathi= @@ -639,12 +718,24 @@ Message=\u00dczenet #: ../../../processing/app/preproc/PdePreprocessor.java:412 !Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Tov\u00e1bbi sz\u00e1mos be\u00e1ll\u00edt\u00e1s el\u00e9rhet\u0151 a file k\u00f6zvetlen szerkeszt\u00e9s\u00e9vel #: Editor.java:2156 !Moving= +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +!Must\ specify\ exactly\ one\ sketch\ file= + +#: ../../../processing/app/Preferences.java:158 +!N'Ko= + #: Sketch.java:282 Name\ for\ new\ file\:=\u00daj file neve\: @@ -672,12 +763,18 @@ Next\ Tab=K\u00f6vetkez\u0151 f\u00fcl #: Preferences.java:78 UpdateCheck.java:108 !No= +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Nincs alappanel kiv\u00e1lasztva. V\u00e1lasztani az Eszk\u00f6z\u00f6k > Alappanel men\u00fcb\u0151l lehet. #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 !No\ changes\ necessary\ for\ Auto\ Format.= +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 !No\ files\ were\ added\ to\ the\ sketch.= @@ -687,6 +784,9 @@ No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu #: SerialMonitor.java:112 !No\ line\ ending= +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Hopp\u00e1, itt az id\u0151 leveg\u0151zn\u00f6d egyet. @@ -694,6 +794,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Hopp\u00e1, itt az id\u0151 #, java-format !No\ reference\ available\ for\ "{0}"= +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +!No\ valid\ code\ files\ found= + #: ../../../processing/app/Base.java:309 !No\ valid\ configured\ cores\ found\!\ Exiting...= @@ -720,6 +830,9 @@ Nope=Dehogy, nem #: Sketch.java:992 Editor.java:376 !One\ file\ added\ to\ the\ sketch.= +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 !Open= @@ -747,12 +860,22 @@ Open...=Megnyit... #: Preferences.java:109 Persian=Perzsa +#: ../../../processing/app/Preferences.java:161 +!Persian\ (Iran)= + #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Az SPI f\u00fcggv\u00e9nyek haszn\u00e1lat\u00e1hoz a Sketch > F\u00fcggv\u00e9ny import alatt az SPI-re van sz\u00fcks\u00e9ge. +#: ../../../processing/app/debug/Compiler.java:529 +!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=A futtat\u00e1shoz telep\u00edtett Java 1.5 vagy \u00fajabb szoftverk\u00f6rnyezet sz\u00fcks\u00e9ges +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 Polish=Lengyel @@ -874,9 +997,15 @@ Save\ Canceled.=Ment\u00e9s megszak\u00edtva. #: Sketch.java:825 !Save\ sketch\ folder\ as...= +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=Ment\u00e9s... +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=V\u00e1lassz (vagy hozz l\u00e9tre) mapp\u00e1t a Sketch-eknek... @@ -901,14 +1030,6 @@ Select\ new\ sketchbook\ location=V\u00e1lasszon \u00faj SketchBook mapp\u00e1t #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 !Serial\ Monitor= -#: Serial.java:174 -#, java-format -!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.= - -#: Serial.java:121 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=A {0} soros port haszn\u00e1latban van. A programb\u00f3l val\u00f3 kil\u00e9p\u00e9s ut\u00e1n pr\u00f3b\u00e1lja \u00fajra. - #: Serial.java:194 #, java-format !Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?= @@ -963,6 +1084,9 @@ Sketchbook\ folder\ disappeared=A SketchBook mappa el\u00e9rhetetlen #: Preferences.java:315 Sketchbook\ location\:=SketchBook helye\: +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 !Sketches\ (*.ino,\ *.pde)= @@ -997,6 +1121,9 @@ Tamil=Tamil #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=A 'BYTE' kulcssz\u00f3 nem t\u00e1mogatott. +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=A Client oszt\u00e1ly \u00faj neve\: EthernetClient @@ -1033,12 +1160,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 !The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.= -#: Sketch.java:2018 -!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.= +#: ../../../processing/app/Sketch.java:2028 +!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=A SketchBook mappa nem \u00e9rhet\u0151 el.\\nAz alap\u00e9rtelmezett hely lesz kiv\u00e1lasztva, \u00e9s\\nitt l\u00e9trehozva a sketch mappa. +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 !This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= @@ -1142,6 +1272,10 @@ Verify\ code\ after\ upload=K\u00f3d ellen\u0151rz\u00e9s felt\u00f6lt\u00e9s ut #: Editor.java:1105 !Visit\ Arduino.cc= +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= + #: Base.java:2128 Warning=Figyelmeztet\u00e9s @@ -1240,9 +1374,6 @@ environment=k\u00f6rnyezet #: Editor.java:1108 !http\://arduino.cc/= -#: ../../../processing/app/debug/Compiler.java:49 -!http\://github.com/arduino/Arduino/issues= - #: UpdateCheck.java:118 !http\://www.arduino.cc/en/Main/Software= @@ -1265,13 +1396,6 @@ index.html=index.html #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -!readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}= - -#: Sketch.java:647 -!removeCode\:\ internal\ error..\ could\ not\ find\ code= - #: Editor.java:932 !serialMenu\ is\ null= @@ -1279,6 +1403,10 @@ platforms.html=platforms.html #, java-format the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=kiv\u00e1lasztott {0} port nem el\u00e9rhet\u0151 vagy az alappanel nincs csatlakoztatva +#: ../../../processing/app/Base.java:389 +#, java-format +!unknown\ option\:\ {0}= + #: Preferences.java:391 upload=felt\u00f6lt\u00e9skor @@ -1297,3 +1425,35 @@ upload=felt\u00f6lt\u00e9skor #: Editor.java:1874 #, java-format !{0}.html= + +#: ../../../processing/app/Base.java:519 +#, java-format +!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= + +#: ../../../processing/app/Base.java:476 +#, java-format +!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= + +#: ../../../processing/app/Base.java:509 +#, java-format +!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= + +#: ../../../processing/app/Base.java:507 +#, java-format +!{0}\:\ Invalid\ option\ for\ board\ "{1}"= + +#: ../../../processing/app/Base.java:502 +#, java-format +!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= + +#: ../../../processing/app/Base.java:486 +#, java-format +!{0}\:\ Unknown\ architecture= + +#: ../../../processing/app/Base.java:491 +#, java-format +!{0}\:\ Unknown\ board= + +#: ../../../processing/app/Base.java:481 +#, java-format +!{0}\:\ Unknown\ package= diff --git a/arduino-core/src/processing/app/i18n/Resources_hy.po b/arduino-core/src/processing/app/i18n/Resources_hy.po index e2e17d1c3..c4b171807 100644 --- a/arduino-core/src/processing/app/i18n/Resources_hy.po +++ b/arduino-core/src/processing/app/i18n/Resources_hy.po @@ -33,6 +33,12 @@ msgstr "" msgid "(edit only when Arduino is not running)" msgstr "" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr "" @@ -91,6 +97,10 @@ msgstr "Ավելացնել նիշք․․․" msgid "Add Library..." msgstr "" +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -98,6 +108,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -176,6 +200,30 @@ msgstr "" msgid "Are you sure you want to delete this sketch?" msgstr "" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "" @@ -184,6 +232,10 @@ msgstr "" msgid "Asturian" msgstr "" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "" @@ -225,6 +277,14 @@ msgstr "" msgid "Bad file selected" msgstr "" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "" @@ -261,6 +321,10 @@ msgstr "Զննել" msgid "Build folder disappeared or could not be written" msgstr "" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "" @@ -277,8 +341,14 @@ msgstr "" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "" -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" msgstr "" #: ../../../processing/app/Preferences.java:92 @@ -294,6 +364,10 @@ msgstr "Չեղարկել" msgid "Cannot Rename" msgstr "" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "" @@ -338,11 +412,6 @@ msgstr "Փակել" msgid "Comment/Uncomment" msgstr "" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "" @@ -450,9 +519,8 @@ msgid "" "You'll need to reinstall Arduino." msgstr "" -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" msgstr "" #: Base.java:2482 @@ -482,6 +550,10 @@ msgstr "" msgid "Could not replace {0}" msgstr "{0}-ն չեղավ փոխարինել" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "" @@ -551,6 +623,11 @@ msgstr "" msgid "Done burning bootloader." msgstr "" +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "" @@ -559,6 +636,10 @@ msgstr "" msgid "Done printing." msgstr "" +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "" @@ -662,6 +743,10 @@ msgstr "" msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -671,11 +756,25 @@ msgstr "" msgid "Error while printing." msgstr "" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "Էստոներեն" @@ -696,6 +795,11 @@ msgstr "" msgid "FAQ.html" msgstr "" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "" + #: Editor.java:491 msgid "File" msgstr "Նիշք" @@ -743,8 +847,9 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" msgstr "" #: Preferences.java:95 @@ -893,8 +998,8 @@ msgstr "" msgid "Lithuaninan" msgstr "Լիտվաներեն" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: Preferences.java:107 @@ -909,6 +1014,10 @@ msgstr "Հաղորդագրություն" msgid "Missing the */ from the end of a /* comment */" msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "" @@ -917,6 +1026,18 @@ msgstr "" msgid "Moving" msgstr "Տեղափոխել" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "" + #: Sketch.java:282 msgid "Name for new file:" msgstr "" @@ -953,6 +1074,10 @@ msgstr "" msgid "No" msgstr "Ոչ" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "" @@ -961,6 +1086,10 @@ msgstr "" msgid "No changes necessary for Auto Format." msgstr "" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "" @@ -973,6 +1102,10 @@ msgstr "" msgid "No line ending" msgstr "" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "" @@ -982,6 +1115,19 @@ msgstr "" msgid "No reference available for \"{0}\"" msgstr "" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "" @@ -1018,6 +1164,10 @@ msgstr "Լավ" msgid "One file added to the sketch." msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "Բացել" @@ -1054,14 +1204,27 @@ msgstr "Փակցնել" msgid "Persian" msgstr "Պարսկերեն" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "" +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "" + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "Լեհերեն" @@ -1224,10 +1387,18 @@ msgstr "" msgid "Save sketch folder as..." msgstr "" +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "Հիշում․․․" +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "" @@ -1260,20 +1431,6 @@ msgstr "Ուղարկել" msgid "Serial Monitor" msgstr "" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "" - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "" - #: Serial.java:194 #, java-format msgid "" @@ -1353,6 +1510,10 @@ msgstr "" msgid "Sketchbook location:" msgstr "" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "" @@ -1403,6 +1564,10 @@ msgstr "" msgid "The 'BYTE' keyword is no longer supported." msgstr "" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "" @@ -1470,11 +1635,11 @@ msgid "" "but anything besides the code will be lost." msgstr "" -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." +"They should also be less than 64 characters long." msgstr "" #: Base.java:259 @@ -1486,6 +1651,12 @@ msgid "" "himself in the third person." msgstr "" +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1628,6 +1799,13 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "" + #: Base.java:2128 msgid "Warning" msgstr "Ուշադրություն" @@ -1796,10 +1974,6 @@ msgstr "միջավայր" msgid "http://arduino.cc/" msgstr "" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "" @@ -1829,17 +2003,6 @@ msgstr "" msgid "platforms.html" msgstr "" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "" - #: Editor.java:932 msgid "serialMenu is null" msgstr "" @@ -1850,6 +2013,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "" + #: Preferences.java:391 msgid "upload" msgstr "" @@ -1873,3 +2041,45 @@ msgstr "" #, java-format msgid "{0}.html" msgstr "" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "" diff --git a/arduino-core/src/processing/app/i18n/Resources_hy.properties b/arduino-core/src/processing/app/i18n/Resources_hy.properties index e672e730e..d457e8a0a 100644 --- a/arduino-core/src/processing/app/i18n/Resources_hy.properties +++ b/arduino-core/src/processing/app/i18n/Resources_hy.properties @@ -17,6 +17,9 @@ #: Preferences.java:478 !(edit\ only\ when\ Arduino\ is\ not\ running)= +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 !.pde\ ->\ .ino= @@ -53,9 +56,23 @@ Add\ File...=\u0531\u057e\u0565\u056c\u0561\u0581\u0576\u0565\u056c \u0576\u056b #: Base.java:963 !Add\ Library...= +#: ../../../processing/app/Preferences.java:96 +!Albanian= + #: tools/FixEncoding.java:77 !An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n= +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 !An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.= @@ -105,12 +122,33 @@ Arabic=\u0531\u0580\u0561\u0562\u0565\u0580\u0565\u0576 #: Sketch.java:587 !Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?= +#: ../../../processing/app/Base.java:356 +!Argument\ required\ for\ --board= + +#: ../../../processing/app/Base.java:370 +!Argument\ required\ for\ --curdir= + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +!Argument\ required\ for\ --port= + +#: ../../../processing/app/Base.java:377 +!Argument\ required\ for\ --pref= + +#: ../../../processing/app/Base.java:384 +!Argument\ required\ for\ --preferences-file= + #: ../../../processing/app/Preferences.java:137 !Armenian= #: ../../../processing/app/Preferences.java:138 !Asturian= +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 !Auto\ Format= @@ -142,6 +180,12 @@ Arabic=\u0531\u0580\u0561\u0562\u0565\u0580\u0565\u0576 #: Editor.java:2136 !Bad\ file\ selected= +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +!Basque= + #: ../../../processing/app/Preferences.java:139 !Belarusian= @@ -168,6 +212,9 @@ Browse=\u0536\u0576\u0576\u0565\u056c #: Sketch.java:1392 Sketch.java:1423 !Build\ folder\ disappeared\ or\ could\ not\ be\ written= +#: ../../../processing/app/Sketch.java:1530 +!Build\ options\ changed,\ rebuilding\ all= + #: ../../../processing/app/Preferences.java:80 !Bulgarian= @@ -180,8 +227,13 @@ Browse=\u0536\u0576\u0576\u0565\u056c #: Editor.java:2504 !Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...= -#: ../../../processing/app/Base.java:368 -!Can't\ open\ source\ sketch\!= +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 !Canadian\ French= @@ -193,6 +245,9 @@ Cancel=\u0549\u0565\u0572\u0561\u0580\u056f\u0565\u056c #: Sketch.java:455 !Cannot\ Rename= +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 !Carriage\ return= @@ -226,10 +281,6 @@ Close=\u0553\u0561\u056f\u0565\u056c #: Editor.java:1208 Editor.java:2749 !Comment/Uncomment= -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -!Compiler\ error,\ please\ submit\ this\ code\ to\ {0}= - #: Sketch.java:1608 Editor.java:1890 !Compiling\ sketch...= @@ -305,9 +356,8 @@ Could\ not\ delete\ {0}={0}-\u0576 \u0579\u0565\u0572\u0561\u057e \u057b\u0576\u #: Preferences.java:219 !Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= -#: Preferences.java:258 -#, java-format -!Could\ not\ read\ preferences\ from\ {0}= +#: ../../../processing/app/Sketch.java:1525 +!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= #: Base.java:2482 #, java-format @@ -330,6 +380,9 @@ Could\ not\ delete\ {0}={0}-\u0576 \u0579\u0565\u0572\u0561\u057e \u057b\u0576\u #, java-format Could\ not\ replace\ {0}={0}-\u0576 \u0579\u0565\u0572\u0561\u057e \u0583\u0578\u056d\u0561\u0580\u056b\u0576\u0565\u056c +#: ../../../processing/app/Sketch.java:1579 +!Could\ not\ write\ build\ preferences\ file= + #: tools/Archiver.java:74 !Couldn't\ archive\ sketch= @@ -378,12 +431,19 @@ Don't\ Save=\u0549\u0570\u056b\u0577\u0565\u056c #: Editor.java:2510 !Done\ burning\ bootloader.= +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 !Done\ compiling.= #: Editor.java:2564 !Done\ printing.= +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 !Done\ uploading.= @@ -462,6 +522,9 @@ Error=\u054d\u056d\u0561\u056c #: ../../../processing/app/Editor.java:2555 !Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format !Error\ while\ loading\ code\ {0}= @@ -469,10 +532,21 @@ Error=\u054d\u056d\u0561\u056c #: Editor.java:2567 !Error\ while\ printing.= +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 !Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 Estonian=\u0537\u057d\u057f\u0578\u0576\u0565\u0580\u0565\u0576 @@ -488,6 +562,10 @@ Examples=\u0555\u0580\u056b\u0576\u0561\u056f\u0576\u0565\u0580 #: Base.java:2100 !FAQ.html= +#: ../../../processing/app/Base.java:416 +#, java-format +!Failed\ to\ open\ sketch\:\ "{0}"= + #: Editor.java:491 File=\u0546\u056b\u0577\u0584 @@ -522,8 +600,9 @@ Find...=\u0533\u057f\u0576\u0565\u056c\u2024\u2024\u2024 #: Base.java:1851 !For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n= -#: debug/BasicUploader.java:80 -!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ = +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=\u0556\u0580\u0561\u0576\u057d\u0565\u0580\u0565\u0576 @@ -627,8 +706,8 @@ Latvian=\u053c\u0561\u057f\u057e\u0565\u0580\u0565\u0576 #: Preferences.java:106 Lithuaninan=\u053c\u056b\u057f\u057e\u0561\u0576\u0565\u0580\u0565\u0576 -#: ../../../processing/app/Sketch.java:1660 -!Low\ memory\ available,\ stability\ problems\ may\ occur= +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 !Marathi= @@ -639,12 +718,24 @@ Message=\u0540\u0561\u0572\u0578\u0580\u0564\u0561\u0563\u0580\u0578\u0582\u0569 #: ../../../processing/app/preproc/PdePreprocessor.java:412 !Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 !More\ preferences\ can\ be\ edited\ directly\ in\ the\ file= #: Editor.java:2156 Moving=\u054f\u0565\u0572\u0561\u0583\u0578\u056d\u0565\u056c +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +!Must\ specify\ exactly\ one\ sketch\ file= + +#: ../../../processing/app/Preferences.java:158 +!N'Ko= + #: Sketch.java:282 !Name\ for\ new\ file\:= @@ -672,12 +763,18 @@ New\ Editor\ Window=\u0546\u0578\u0580 \u056d\u0574\u0562\u0561\u0563\u0580\u056 #: Preferences.java:78 UpdateCheck.java:108 No=\u0548\u0579 +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 !No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.= #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 !No\ changes\ necessary\ for\ Auto\ Format.= +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 !No\ files\ were\ added\ to\ the\ sketch.= @@ -687,6 +784,9 @@ No=\u0548\u0579 #: SerialMonitor.java:112 !No\ line\ ending= +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 !No\ really,\ time\ for\ some\ fresh\ air\ for\ you.= @@ -694,6 +794,16 @@ No=\u0548\u0579 #, java-format !No\ reference\ available\ for\ "{0}"= +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +!No\ valid\ code\ files\ found= + #: ../../../processing/app/Base.java:309 !No\ valid\ configured\ cores\ found\!\ Exiting...= @@ -720,6 +830,9 @@ OK=\u053c\u0561\u057e #: Sketch.java:992 Editor.java:376 !One\ file\ added\ to\ the\ sketch.= +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=\u0532\u0561\u0581\u0565\u056c @@ -747,12 +860,22 @@ Paste=\u0553\u0561\u056f\u0581\u0576\u0565\u056c #: Preferences.java:109 Persian=\u054a\u0561\u0580\u057d\u056f\u0565\u0580\u0565\u0576 +#: ../../../processing/app/Preferences.java:161 +!Persian\ (Iran)= + #: debug/Compiler.java:408 !Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= +#: ../../../processing/app/debug/Compiler.java:529 +!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= + #: Base.java:239 !Please\ install\ JDK\ 1.5\ or\ later= +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 Polish=\u053c\u0565\u0570\u0565\u0580\u0565\u0576 @@ -874,9 +997,15 @@ Save\ As...=\u0540\u056b\u0577\u0565\u056c \u0578\u0580\u057a\u0565\u057d\u2024\ #: Sketch.java:825 !Save\ sketch\ folder\ as...= +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=\u0540\u056b\u0577\u0578\u0582\u0574\u2024\u2024\u2024 +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 !Select\ (or\ create\ new)\ folder\ for\ sketches...= @@ -901,14 +1030,6 @@ Send=\u0548\u0582\u0572\u0561\u0580\u056f\u0565\u056c #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 !Serial\ Monitor= -#: Serial.java:174 -#, java-format -!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.= - -#: Serial.java:121 -#, java-format -!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.= - #: Serial.java:194 #, java-format !Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?= @@ -963,6 +1084,9 @@ Send=\u0548\u0582\u0572\u0561\u0580\u056f\u0565\u056c #: Preferences.java:315 !Sketchbook\ location\:= +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 !Sketches\ (*.ino,\ *.pde)= @@ -997,6 +1121,9 @@ System\ Default=\u0540\u0561\u0574\u0561\u056f\u0561\u0580\u0563\u056b \u056c\u0 #: debug/Compiler.java:414 !The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.= +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 !The\ Client\ class\ has\ been\ renamed\ EthernetClient.= @@ -1033,12 +1160,15 @@ System\ Default=\u0540\u0561\u0574\u0561\u056f\u0561\u0580\u0563\u056b \u056c\u0 #: Sketch.java:1755 !The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.= -#: Sketch.java:2018 -!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.= +#: ../../../processing/app/Sketch.java:2028 +!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= #: Base.java:259 !The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.= +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 !This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= @@ -1142,6 +1272,10 @@ Verify=\u054d\u057f\u0578\u0582\u0563\u0565\u056c #: Editor.java:1105 !Visit\ Arduino.cc= +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= + #: Base.java:2128 Warning=\u0548\u0582\u0577\u0561\u0564\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576 @@ -1240,9 +1374,6 @@ environment=\u0574\u056b\u057b\u0561\u057e\u0561\u0575\u0580 #: Editor.java:1108 !http\://arduino.cc/= -#: ../../../processing/app/debug/Compiler.java:49 -!http\://github.com/arduino/Arduino/issues= - #: UpdateCheck.java:118 !http\://www.arduino.cc/en/Main/Software= @@ -1265,13 +1396,6 @@ environment=\u0574\u056b\u057b\u0561\u057e\u0561\u0575\u0580 #: Base.java:2090 !platforms.html= -#: Serial.java:451 -#, java-format -!readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}= - -#: Sketch.java:647 -!removeCode\:\ internal\ error..\ could\ not\ find\ code= - #: Editor.java:932 !serialMenu\ is\ null= @@ -1279,6 +1403,10 @@ environment=\u0574\u056b\u057b\u0561\u057e\u0561\u0575\u0580 #, java-format !the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected= +#: ../../../processing/app/Base.java:389 +#, java-format +!unknown\ option\:\ {0}= + #: Preferences.java:391 !upload= @@ -1297,3 +1425,35 @@ environment=\u0574\u056b\u057b\u0561\u057e\u0561\u0575\u0580 #: Editor.java:1874 #, java-format !{0}.html= + +#: ../../../processing/app/Base.java:519 +#, java-format +!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= + +#: ../../../processing/app/Base.java:476 +#, java-format +!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= + +#: ../../../processing/app/Base.java:509 +#, java-format +!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= + +#: ../../../processing/app/Base.java:507 +#, java-format +!{0}\:\ Invalid\ option\ for\ board\ "{1}"= + +#: ../../../processing/app/Base.java:502 +#, java-format +!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= + +#: ../../../processing/app/Base.java:486 +#, java-format +!{0}\:\ Unknown\ architecture= + +#: ../../../processing/app/Base.java:491 +#, java-format +!{0}\:\ Unknown\ board= + +#: ../../../processing/app/Base.java:481 +#, java-format +!{0}\:\ Unknown\ package= diff --git a/arduino-core/src/processing/app/i18n/Resources_in.po b/arduino-core/src/processing/app/i18n/Resources_in.po index ef964ccb3..e884c1393 100644 --- a/arduino-core/src/processing/app/i18n/Resources_in.po +++ b/arduino-core/src/processing/app/i18n/Resources_in.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-01-14 17:10+0000\n" -"Last-Translator: Cristian Maglie \n" +"PO-Revision-Date: 2015-01-18 16:06+0000\n" +"Last-Translator: Rendiyono Wahyu Saputro \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/arduino-ide-15/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,26 +23,32 @@ msgstr "" #: debug/Compiler.java:455 msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "" +msgstr "'Keyboard' hanya didukung pada Arduino Leonardo" #: debug/Compiler.java:450 msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "" +msgstr "'Mouse' hanya didukung pada Arduino Leonardo" #: Preferences.java:478 msgid "(edit only when Arduino is not running)" +msgstr "(sunting hanya ketika Arduino tidak berjalan)" + +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" msgstr "" #: Sketch.java:746 msgid ".pde -> .ino" -msgstr "" +msgstr ".pde -> .ino" #: Base.java:773 msgid "" " Are you " "sure you want to Quit?

    Closing the last open sketch will quit Arduino." -msgstr "" +msgstr " Apakah anda ingin keluar?

    Menutup sketsa yang terakhir dibuka akan menghentikan Arduino." #: Editor.java:2053 msgid "" @@ -50,63 +56,81 @@ msgid "" " font: 11pt \"Lucida Grande\"; margin-top: 8px } Do you " "want to save changes to this sketch
    before closing?

    If you don't " "save, your changes will be lost." -msgstr "" +msgstr " Apa anda ingin menyimpan ke sketsa ini
    sebelum ditutup?

    Jika anda tidak menyimpan, perubahanmu akan hilang." #: Sketch.java:398 #, java-format msgid "A file named \"{0}\" already exists in \"{1}\"" -msgstr "" +msgstr "Sebuah berkas bernama \"{0}\" telah ada di \"{1}\"" #: Editor.java:2169 #, java-format msgid "A folder named \"{0}\" already exists. Can't open sketch." -msgstr "" +msgstr "Sebuah folder bernama \"{0}\" telah ada. Tidak dapat membuka sketsa." #: Base.java:2690 #, java-format msgid "A library named {0} already exists" -msgstr "" +msgstr "Sebuah pustaka bernama {0} telah ada" #: UpdateCheck.java:103 msgid "" "A new version of Arduino is available,\n" "would you like to visit the Arduino download page?" -msgstr "" +msgstr "Sebuah versi baru Arduino telah ada,\nanda ingin mengunjungi halaman unduh Arduino?" #: EditorConsole.java:153 msgid "" "A problem occurred while trying to open the\n" "files used to store the console output." -msgstr "" +msgstr "Sebuah masalah terjadi ketika mencoba membuka\nberkas yang digunakan untuk menyimpan output konsol." #: Editor.java:1116 msgid "About Arduino" -msgstr "" +msgstr "Tentang Arduino" #: Editor.java:650 msgid "Add File..." -msgstr "" +msgstr "Tambah Berkas..." #: Base.java:963 msgid "Add Library..." msgstr "Tambah pustaka..." +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "Bahasa Albania" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" "Do not attempt to save this sketch as it may overwrite\n" "the old version. Use Open to re-open the sketch and try again.\n" -msgstr "" +msgstr "Sebuah galat terjadi ketika mencoba memperbaiki pengkodean berkas.\nDo not attempt to save this sketch as it may overwrite\nthe old version. Use Open to re-open the sketch and try again.\n" + +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "Galat terjadi ketika mengunggah sketsa" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "Galat terjadi ketika memeriksa sketsa" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "Galat terjadi ketika memeriksa/mengunggah sketsa" #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" "platform-specific code for your machine." -msgstr "" +msgstr "Galat tidak diketahui terjadi ketika mencoba memuat\nkode khusus platform untuk mesin adna" #: Preferences.java:85 msgid "Arabic" -msgstr "" +msgstr "Bahasa Arab" #: Preferences.java:86 msgid "Aragonese" @@ -114,185 +138,235 @@ msgstr "" #: tools/Archiver.java:48 msgid "Archive Sketch" -msgstr "" +msgstr "Arsip Sketsa" #: tools/Archiver.java:109 msgid "Archive sketch as:" -msgstr "" +msgstr "Arsip sketsa sebagai:" #: tools/Archiver.java:139 msgid "Archive sketch canceled." -msgstr "" +msgstr "Arsip sketsa dibatalkan." #: tools/Archiver.java:75 msgid "" "Archiving the sketch has been canceled because\n" "the sketch couldn't save properly." -msgstr "" +msgstr "Pengarsipan sketsa telah dibatalkan karena\nsketsa tidak bisa disimpan dengan baik." #: ../../../processing/app/I18n.java:83 msgid "Arduino ARM (32-bits) Boards" -msgstr "" +msgstr "Papan Arduino ARM (32-bits)" #: ../../../processing/app/I18n.java:82 msgid "Arduino AVR Boards" -msgstr "" +msgstr "Papan Arduino AVR" #: Editor.java:2137 msgid "" "Arduino can only open its own sketches\n" "and other files ending in .ino or .pde" -msgstr "" +msgstr "Arduino hanya bisa membuka sketsa sendiri\ndan berkas lainnya berakhiran .ino atau .pde" #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" "create a folder to store your settings." -msgstr "" +msgstr "Arduino tidak dapat berjalan karena tidak bisa\nmembuat sebuah folder untuk menyimpan pengaturan anda." #: Base.java:1889 msgid "" "Arduino cannot run because it could not\n" "create a folder to store your sketchbook." -msgstr "" +msgstr "Arduino tidak dapat berjalan karena tidak bisa\nmembuat folder untuk menyimpan buku sketsamu." #: Base.java:240 msgid "" "Arduino requires a full JDK (not just a JRE)\n" "to run. Please install JDK 1.5 or later.\n" "More information can be found in the reference." -msgstr "" +msgstr "Arduino memerlukan JDK penuh (tidak hanya sebuah JRE)\nuntuk dijalankan. Silahkan pasang JDK 1.5 atau yang lebih baru.\nInformasi lebih lanjut dapat ditemukan dalam referensi." #: ../../../processing/app/EditorStatus.java:471 msgid "Arduino: " -msgstr "" +msgstr "Arduino: " #: Sketch.java:588 #, java-format msgid "Are you sure you want to delete \"{0}\"?" -msgstr "" +msgstr "Apakah anda yakin ingin menghapus \"{0}\"?" #: Sketch.java:587 msgid "Are you sure you want to delete this sketch?" -msgstr "" +msgstr "Apakah anda yakin ingin menghapus sketsa ini?" + +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "Argumen diperlukan untuk --board" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "Argumen diperlukan untuk --curdir" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "Argumen diperlukan untuk --get-pref" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "Argumen diperlukan untuk --port" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "Argumen diperlukan untuk --pref" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "Argumen diperlukan untuk --preferences-file" #: ../../../processing/app/Preferences.java:137 msgid "Armenian" -msgstr "" +msgstr "Bahasa Armenia" #: ../../../processing/app/Preferences.java:138 msgid "Asturian" -msgstr "" +msgstr "Bahasa Asturia" + +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "Otorisasi diperlukan" #: tools/AutoFormat.java:91 msgid "Auto Format" -msgstr "" +msgstr "Format Otomatis" #: tools/AutoFormat.java:934 msgid "Auto Format Canceled: Too many left curly braces." -msgstr "" +msgstr "Format Otomatis Dibatalkan: Terlalu banyak tanda kurung kurawal kiri." #: tools/AutoFormat.java:925 msgid "Auto Format Canceled: Too many left parentheses." -msgstr "" +msgstr "Format Otomatis Dibatalkan: Terlalu banyak tanda kurung kiri." #: tools/AutoFormat.java:931 msgid "Auto Format Canceled: Too many right curly braces." -msgstr "" +msgstr "Format Otomatis Dibatalkan: Terlalu banyak tanda kurung kurawal kanan." #: tools/AutoFormat.java:922 msgid "Auto Format Canceled: Too many right parentheses." -msgstr "" +msgstr "Format Otomatis Dibatalkan: Terlalu banyak tanda kurung kanan." #: tools/AutoFormat.java:944 msgid "Auto Format finished." -msgstr "" +msgstr "Format Otomatis selesai." #: Preferences.java:439 msgid "Automatically associate .ino files with Arduino" -msgstr "" +msgstr "Otomatis asosiasi berkas .ino dengan Arduino" #: SerialMonitor.java:110 msgid "Autoscroll" -msgstr "" +msgstr "Gulir otomatis" #: Editor.java:2619 #, java-format msgid "Bad error line: {0}" -msgstr "" +msgstr "Galat baris buruk: {0}" #: Editor.java:2136 msgid "Bad file selected" -msgstr "" +msgstr "Berkas buruk dipilih" + +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "Berkas utama sketsa buruk atau struktur direktori sketsa buruk" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "Bahasa Basque" #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" -msgstr "" +msgstr "Bahasa Belarusia" #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" -msgstr "" +msgstr "Papan" #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" "Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:" " {3}" -msgstr "" +msgstr "Board {0}:{1}:{2} tidak mendefinisikan preferensi ''build.board''. Set otomatis ke: {3}" #: ../../../processing/app/EditorStatus.java:472 msgid "Board: " -msgstr "" +msgstr "Papan:" #: ../../../processing/app/Preferences.java:140 msgid "Bosnian" -msgstr "" +msgstr "Bahasa Bosnia" #: SerialMonitor.java:112 msgid "Both NL & CR" -msgstr "" +msgstr "Keduanya NL & CR" #: Preferences.java:81 msgid "Browse" -msgstr "" +msgstr "Telusuri" #: Sketch.java:1392 Sketch.java:1423 msgid "Build folder disappeared or could not be written" -msgstr "" +msgstr "Folder bangun menghilang atau tidak dapat ditulis" + +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "Opsi bangun berubah, membangun kembali semuanya" #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" -msgstr "" +msgstr "Bahasa Bulgaria" #: ../../../processing/app/Preferences.java:141 msgid "Burmese (Myanmar)" -msgstr "" +msgstr "Bahasa Burma (Myanmar)" #: Editor.java:708 msgid "Burn Bootloader" -msgstr "" +msgstr "Membakar Bootloader" #: Editor.java:2504 msgid "Burning bootloader to I/O Board (this may take a minute)..." -msgstr "" +msgstr "Membakar bootloader ke papan I/O (ini mungkin memakan waktu satu menit)" -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" -msgstr "" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "Hanya bisa melewati satu dari: {0}" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" +msgstr "Tidak dapat menemukan sketsa di jalur yang ditentukan" #: ../../../processing/app/Preferences.java:92 msgid "Canadian French" -msgstr "" +msgstr "Bahasa Perancis Kanada" #: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2064 Editor.java:2145 Editor.java:2465 msgid "Cancel" -msgstr "" +msgstr "Batalkan" #: Sketch.java:455 msgid "Cannot Rename" -msgstr "" +msgstr "Tidak dapat Diubah nama" + +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "Tidak bisa menentukan berkas sketsa" #: SerialMonitor.java:112 msgid "Carriage return" @@ -300,496 +374,527 @@ msgstr "" #: Preferences.java:87 msgid "Catalan" -msgstr "" +msgstr "Bahasa Catalan" #: Preferences.java:419 msgid "Check for updates on startup" -msgstr "" +msgstr "Cek untuk pembaruan saat dijalan pertama kali" #: ../../../processing/app/Preferences.java:142 msgid "Chinese (China)" -msgstr "" +msgstr "China (China)" #: ../../../processing/app/Preferences.java:142 msgid "Chinese (Hong Kong)" -msgstr "" +msgstr "Bahasa China (Hong Kong)" #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" -msgstr "" +msgstr "Bahasa China (Taiwan)" #: ../../../processing/app/Preferences.java:143 msgid "Chinese (Taiwan) (Big5)" -msgstr "" +msgstr "Bahasa China (Taiwan) (Big5)" #: Preferences.java:88 msgid "Chinese Simplified" -msgstr "" +msgstr "Bahasa China Sederhana" #: Preferences.java:89 msgid "Chinese Traditional" -msgstr "" +msgstr "Bahasa China Tradisional" #: Editor.java:521 Editor.java:2024 msgid "Close" -msgstr "" +msgstr "Tutup" #: Editor.java:1208 Editor.java:2749 msgid "Comment/Uncomment" -msgstr "" - -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "" +msgstr "Komentar/Tidak komentar" #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." -msgstr "" +msgstr "Mengkompilasi sketsa..." #: EditorConsole.java:152 msgid "Console Error" -msgstr "" +msgstr "Galat Konsol" #: Editor.java:1157 Editor.java:2707 msgid "Copy" -msgstr "" +msgstr "Salin" #: Editor.java:1177 Editor.java:2723 msgid "Copy as HTML" -msgstr "" +msgstr "Salin sebagai HTML" #: ../../../processing/app/EditorStatus.java:455 msgid "Copy error messages" -msgstr "" +msgstr "Salin pesan galat" #: Editor.java:1165 Editor.java:2715 msgid "Copy for Forum" -msgstr "" +msgstr "Salin untuk Forum" #: Sketch.java:1089 #, java-format msgid "Could not add ''{0}'' to the sketch." -msgstr "" +msgstr "Tidak dapat menambah ''{0}'' ke sketsa." #: Editor.java:2188 msgid "Could not copy to a proper location." -msgstr "" +msgstr "Tidak dapat menyalin ke lokasi yang tepat." #: Editor.java:2179 msgid "Could not create the sketch folder." -msgstr "" +msgstr "Tidak dapat membuat folder sketsa." #: Editor.java:2206 msgid "Could not create the sketch." -msgstr "" +msgstr "Tidak dapat membuat sketsa" #: Sketch.java:617 #, java-format msgid "Could not delete \"{0}\"." -msgstr "" +msgstr "Tidak dapat menghapus \"{0}\"." #: Sketch.java:1066 #, java-format msgid "Could not delete the existing ''{0}'' file." -msgstr "" +msgstr "Tidak dapat menghapus berkas ''{0}'' yang ada." #: Base.java:2533 Base.java:2556 #, java-format msgid "Could not delete {0}" -msgstr "" +msgstr "Tidak dapat menghapus {0}" #: ../../../processing/app/debug/TargetPlatform.java:74 #, java-format msgid "Could not find boards.txt in {0}. Is it pre-1.5?" -msgstr "" +msgstr "Tidak dapat menemukan boards.txt di {0}. Apakah ini pra-1.5?" #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 #, java-format msgid "Could not find tool {0}" -msgstr "" +msgstr "Tidak dapat menemukan alat {0}" #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 #, java-format msgid "Could not find tool {0} from package {1}" -msgstr "" +msgstr "Tidak dapat menemukan alat {0} dari paket {1}" #: Base.java:1934 #, java-format msgid "" "Could not open the URL\n" "{0}" -msgstr "" +msgstr "Tidak dapat membuka URL\n{0}" #: Base.java:1958 #, java-format msgid "" "Could not open the folder\n" "{0}" -msgstr "" +msgstr "Tidak dapat membuka folder\n{0}" #: Sketch.java:1769 msgid "" "Could not properly re-save the sketch. You may be in trouble at this point,\n" "and it might be time to copy and paste your code to another text editor." -msgstr "" +msgstr "Tidak dapat menyimpan kembali sketsa. Anda mungkin berada dalam kesulitan pada saat ini,\ndan mungkin sudah saatnya untuk menyalin dan menempelkan kode ke penyunting teks lain." #: Sketch.java:1768 msgid "Could not re-save sketch" -msgstr "" +msgstr "Tidak dapat menyimpan kembali sketsa" #: Theme.java:52 msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "" +msgstr "Tidak dapat membaca pengaturan tema warna.\nAnda harus memasang ulang Arduino." #: Preferences.java:219 msgid "" "Could not read default settings.\n" "You'll need to reinstall Arduino." -msgstr "" +msgstr "Tidak dapat membaca pengaturan baku.\nAnda harus memasang ulang Arduino." -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "Tidak dapat membaca berkas preferensi bangun, membangun kembali semua" #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" -msgstr "" +msgstr "Tidak dapat membuang versi lama dari {0}" #: Sketch.java:483 Sketch.java:528 #, java-format msgid "Could not rename \"{0}\" to \"{1}\"" -msgstr "" +msgstr "Tidak dapat mengubah nama \"{0}\" ke \"{1}\"" #: Sketch.java:475 msgid "Could not rename the sketch. (0)" -msgstr "" +msgstr "Tidak dapat mengubah nama sketsa. (0)" #: Sketch.java:496 msgid "Could not rename the sketch. (1)" -msgstr "" +msgstr "Tidak dapat mengubah nama sketsa. (1)" #: Sketch.java:503 msgid "Could not rename the sketch. (2)" -msgstr "" +msgstr "Tidak dapat mengubah nama sketsa. (2)" #: Base.java:2492 #, java-format msgid "Could not replace {0}" -msgstr "" +msgstr "Tidak dapat diganti {0}" + +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "Tidak dapat menulis berkas preferensi bangun" #: tools/Archiver.java:74 msgid "Couldn't archive sketch" -msgstr "" +msgstr "Tidak dapat mengarsipkan sketsa" #: Sketch.java:1647 msgid "Couldn't determine program size: {0}" -msgstr "" +msgstr "Tidak dapat menentukan ukuran program: {0}" #: Sketch.java:616 msgid "Couldn't do it" -msgstr "" +msgstr "Tidak dapat melakukan itu" #: debug/BasicUploader.java:209 msgid "" "Couldn't find a Board on the selected port. Check that you have the correct " "port selected. If it is correct, try pressing the board's reset button " "after initiating the upload." -msgstr "" +msgstr "Tidak dapat menemukan sebuah Papan pada port yang dipilih. Cek apakah anda telah memilih port yang benar. Jika sudah benar, coba tekan tombol reset pada papan setelah memulai unggah." #: ../../../processing/app/Preferences.java:82 msgid "Croatian" -msgstr "" +msgstr "Bahasa Kroasia" #: Editor.java:1149 Editor.java:2699 msgid "Cut" -msgstr "" +msgstr "Potong" #: ../../../processing/app/Preferences.java:83 msgid "Czech" -msgstr "" +msgstr "Bahasa Ceko" #: Preferences.java:90 msgid "Danish" -msgstr "" +msgstr "Bahasa Denmark" #: Editor.java:1224 Editor.java:2765 msgid "Decrease Indent" -msgstr "" +msgstr "Menurunkan Indentasi" #: EditorHeader.java:314 Sketch.java:591 msgid "Delete" -msgstr "" +msgstr "Hapus" #: debug/Uploader.java:199 msgid "" "Device is not responding, check the right serial port is selected or RESET " "the board right before exporting" -msgstr "" +msgstr "Perangkat tidak merespon, cek port serial yang tepat dipilih atau RESET papan tepat sebelum mengekspor" #: tools/FixEncoding.java:57 msgid "Discard all changes and reload sketch?" -msgstr "" +msgstr "Buang semua perubahan dan muat ulang sketsa?" #: ../../../processing/app/Preferences.java:438 msgid "Display line numbers" -msgstr "" +msgstr "Tampilkan nomor baris" #: Editor.java:2064 msgid "Don't Save" -msgstr "" +msgstr "Jangan Simpan" #: Editor.java:2275 Editor.java:2311 msgid "Done Saving." -msgstr "" +msgstr "Selesai Menyimpan." #: Editor.java:2510 msgid "Done burning bootloader." -msgstr "" +msgstr "Selesai membakar bootloader." + +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "Selesai mengkompilasi" #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." -msgstr "" +msgstr "Selesai mengkompilasi." #: Editor.java:2564 msgid "Done printing." -msgstr "" +msgstr "Selesai mencetak." + +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "Selesai mengunggah" #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." -msgstr "" +msgstr "Selesai mengunggah." #: Preferences.java:91 msgid "Dutch" -msgstr "" +msgstr "Bahasa Belanda" #: ../../../processing/app/Preferences.java:144 msgid "Dutch (Netherlands)" -msgstr "" +msgstr "Bahasa Belanda (Netherlands)" #: Editor.java:1130 msgid "Edit" -msgstr "" +msgstr "Sunting" #: Preferences.java:370 msgid "Editor font size: " -msgstr "" +msgstr "Penyunting ukuran fonta:" #: Preferences.java:353 msgid "Editor language: " -msgstr "" +msgstr "Penyunting bahasa:" #: Preferences.java:92 msgid "English" -msgstr "" +msgstr "Bahasa Inggris" #: ../../../processing/app/Preferences.java:145 msgid "English (United Kingdom)" -msgstr "" +msgstr "Bahasa Inggris (United Kingdom)" #: Editor.java:1062 msgid "Environment" -msgstr "" +msgstr "Lingkungan" #: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481 #: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543 #: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206 msgid "Error" -msgstr "Error" +msgstr "Galat" #: Sketch.java:1065 Sketch.java:1088 msgid "Error adding file" -msgstr "" +msgstr "Galat menambahkan berkas" #: debug/Compiler.java:369 msgid "Error compiling." -msgstr "" +msgstr "Galat mengkompilasi." #: Base.java:1674 msgid "Error getting the Arduino data folder." -msgstr "Error saat mengambil folder data Arduino" +msgstr "Galat saat mengambil folder data Arduino" #: Serial.java:593 #, java-format msgid "Error inside Serial.{0}()" -msgstr "" +msgstr "Galat didalam Serial.{0}()" #: ../../../processing/app/Base.java:1232 msgid "Error loading libraries" -msgstr "" +msgstr "Galat memuat pustaka" #: ../../../processing/app/debug/TargetPlatform.java:95 #: ../../../processing/app/debug/TargetPlatform.java:106 #: ../../../processing/app/debug/TargetPlatform.java:117 #, java-format msgid "Error loading {0}" -msgstr "" +msgstr "Galat memuat {0}" #: Serial.java:181 #, java-format msgid "Error opening serial port ''{0}''." -msgstr "" +msgstr "Galat membuka port serial ''{0}''." #: Preferences.java:277 msgid "Error reading preferences" -msgstr "" +msgstr "Galat membaca preferensi" #: Preferences.java:279 #, java-format msgid "" "Error reading the preferences file. Please delete (or move)\n" "{0} and restart Arduino." -msgstr "" +msgstr "Galat membaca berkas preferensi. Silakan hapus (atau pindah)\n{0} dan hidup ulang Arduino." #: ../../../cc/arduino/packages/DiscoveryManager.java:25 msgid "Error starting discovery method: " -msgstr "" +msgstr "Galat memulai metode penemuan:" #: Serial.java:125 #, java-format msgid "Error touching serial port ''{0}''." -msgstr "" +msgstr "Galat menyentuh port serial ''{0}''." #: Editor.java:2512 Editor.java:2516 Editor.java:2520 msgid "Error while burning bootloader." -msgstr "" +msgstr "Galat ketika membakar bootloader." #: ../../../processing/app/Editor.java:2555 msgid "Error while burning bootloader: missing '{0}' configuration parameter" -msgstr "" +msgstr "Galat ketika membakar bootloader: kehilangan '{0}' parameter konfigurasi" + +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "Galat ketika mengkompilasi: kehilangan '{0}' parameter konfigurasi" #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" -msgstr "" +msgstr "Galat ketika memuat kode {0}" #: Editor.java:2567 msgid "Error while printing." -msgstr "" +msgstr "Galat ketika mencetak." + +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "Galat ketika mengunggah" #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" -msgstr "" +msgstr "Galat ketika mengunggah: kehilangan '{0}' parameter konfigurasi" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "Galat ketika memeriksa" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "Galat ketika memeriksa/mengunggah" #: Preferences.java:93 msgid "Estonian" -msgstr "" +msgstr "Bahasa Estonia" #: ../../../processing/app/Preferences.java:146 msgid "Estonian (Estonia)" -msgstr "" +msgstr "Bahasa Estonia (Estonia)" #: Editor.java:516 msgid "Examples" -msgstr "" +msgstr "Contoh" #: Editor.java:2482 msgid "Export canceled, changes must first be saved." -msgstr "" +msgstr "Ekspor dibatalkan, perubahan harus disimpan terlebih dahulu." #: Base.java:2100 msgid "FAQ.html" -msgstr "" +msgstr "FAQ.html" + +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "Gagal membuka sketsa: \"{0}\"" #: Editor.java:491 msgid "File" -msgstr "" +msgstr "Berkas" #: Preferences.java:94 msgid "Filipino" -msgstr "" +msgstr "Bahasa Filipina" #: FindReplace.java:124 FindReplace.java:127 msgid "Find" -msgstr "" +msgstr "Cari" #: Editor.java:1249 msgid "Find Next" -msgstr "" +msgstr "Cari Selanjutnya" #: Editor.java:1259 msgid "Find Previous" -msgstr "" +msgstr "Cari Sebelumnya" #: Editor.java:1086 Editor.java:2775 msgid "Find in Reference" -msgstr "" +msgstr "Cari di Referensi" #: Editor.java:1234 msgid "Find..." -msgstr "" +msgstr "Cari..." #: FindReplace.java:80 msgid "Find:" -msgstr "" +msgstr "Cari:" #: ../../../processing/app/Preferences.java:147 msgid "Finnish" -msgstr "" +msgstr "Bahasa Finlandia" #: tools/FixEncoding.java:41 tools/FixEncoding.java:58 #: tools/FixEncoding.java:79 msgid "Fix Encoding & Reload" -msgstr "" +msgstr "Perbaiki Pengkodean & Muat Ulang" #: Base.java:1851 msgid "" "For information on installing libraries, see: " "http://arduino.cc/en/Guide/Libraries\n" -msgstr "" +msgstr "Untuk informasi memasang pustaka, lihat: http://arduino.cc/en/Guide/Libraries\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " -msgstr "" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" +msgstr "Memaksa menyetel ulang menggunakan 1200bps buka / tutup pada port {0}" #: Preferences.java:95 msgid "French" -msgstr "" +msgstr "Bahasa Perancis" #: Editor.java:1097 msgid "Frequently Asked Questions" -msgstr "" +msgstr "Pertanyaan yang Sering Ditanyakan" #: Preferences.java:96 msgid "Galician" -msgstr "" +msgstr "Bahasa Galisia" #: ../../../processing/app/Preferences.java:94 msgid "Georgian" -msgstr "" +msgstr "Bahasa Georgia" #: Preferences.java:97 msgid "German" -msgstr "" +msgstr "Bahasa Jerman" #: Editor.java:1054 msgid "Getting Started" -msgstr "" +msgstr "Persiapan untuk Mulai" #: ../../../processing/app/Sketch.java:1646 #, java-format msgid "" "Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes " "for local variables. Maximum is {1} bytes." -msgstr "" +msgstr "Variable global menggunakan {0} byte ({2}%%) dari memori dinamik, meninggalkan {3} byte untuk variabel lokal. Maksimum adalah {1} byte." #: ../../../processing/app/Sketch.java:1651 #, java-format msgid "Global variables use {0} bytes of dynamic memory." -msgstr "" +msgstr "Variabel global menggunakan {0} byte dari memori dinamik." #: Preferences.java:98 msgid "Greek" -msgstr "" +msgstr "Bahasa Yunani" #: Base.java:2085 msgid "Guide_Environment.html" -msgstr "" +msgstr "Guide_Environment.html" #: Base.java:2071 msgid "Guide_MacOSX.html" @@ -797,7 +902,7 @@ msgstr "Guide_MacOSX.html" #: Base.java:2095 msgid "Guide_Troubleshooting.html" -msgstr "" +msgstr "Guide_Troubleshooting.html" #: Base.java:2073 msgid "Guide_Windows.html" @@ -805,21 +910,21 @@ msgstr "Guide_Windows.html" #: ../../../processing/app/Preferences.java:95 msgid "Hebrew" -msgstr "" +msgstr "Bahasa Ibrani" #: Editor.java:1015 msgid "Help" -msgstr "" +msgstr "Bantuan" #: Preferences.java:99 msgid "Hindi" -msgstr "" +msgstr "Bahasa Hindi" #: Sketch.java:295 msgid "" "How about saving the sketch first \n" "before trying to rename it?" -msgstr "" +msgstr "Bagaimana tentang menyimpan sketsa terlebih dahulu\nsebelum mencoba mengubah namanya?" #: Sketch.java:882 msgid "How very Borges of you" @@ -827,7 +932,7 @@ msgstr "" #: Preferences.java:100 msgid "Hungarian" -msgstr "" +msgstr "Bahasa Hungaria" #: FindReplace.java:96 msgid "Ignore Case" @@ -839,11 +944,11 @@ msgstr "Mengabaikan nama pustaka yang salah" #: Base.java:1436 msgid "Ignoring sketch with bad name" -msgstr "" +msgstr "Mengabaikan sketsa dengan nama buruk" #: Editor.java:636 msgid "Import Library..." -msgstr "" +msgstr "Impor Pustaka..." #: ../../../processing/app/Sketch.java:736 msgid "" @@ -854,48 +959,48 @@ msgid "" "disable this in the Preferences dialog.\n" "\n" "Save sketch and update its extension?" -msgstr "" +msgstr "Di Arduino 1.0, ekstensi berkas baku telah berubah\ndari .pde ke .ino. Sketsa baru (termasuk yang dibuat\nby \"Simpan-Sebagai\") akan menggunakan ekstensi baru. Ekstensi\ndari sketsa yang ada akan diperbarui saat menyimpan, tetapi anda bisa\nmenonaktifkan ini pada dialog Preferensi.\n\nSimpan sketsa dan perbarui ekstensinya?" #: Editor.java:1216 Editor.java:2757 msgid "Increase Indent" -msgstr "" +msgstr "Tingkatkan Indentasi" #: Preferences.java:101 msgid "Indonesian" -msgstr "" +msgstr "Bahasa Indonesia" #: ../../../processing/app/Base.java:1204 #, java-format msgid "Invalid library found in {0}: {1}" -msgstr "" +msgstr "Pustaka tidak sah ditemukan di {0}: {1}" #: Preferences.java:102 msgid "Italian" -msgstr "" +msgstr "Bahasa Italia" #: Preferences.java:103 msgid "Japanese" -msgstr "" +msgstr "Bahasa Jepang" #: Preferences.java:104 msgid "Korean" -msgstr "" +msgstr "Bahasa Korea" #: Preferences.java:105 msgid "Latvian" -msgstr "" +msgstr "Bahasa Latvia" #: Base.java:2699 msgid "Library added to your libraries. Check \"Import library\" menu" -msgstr "" +msgstr "Pustaka telah ditambahkan ke pustakamu. Cek menu \"Impor pustaka\"" #: Preferences.java:106 msgid "Lithuaninan" msgstr "" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" -msgstr "" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." +msgstr "Memori rendah tersedia, masalah stabilitas dapat terjadi." #: Preferences.java:107 msgid "Marathi" @@ -907,60 +1012,84 @@ msgstr "Pesan" #: ../../../processing/app/preproc/PdePreprocessor.java:412 msgid "Missing the */ from the end of a /* comment */" -msgstr "" +msgstr "Kehilangan * / dari akhir sebuah / * komentar * /" + +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "Mode tidak didukung" #: Preferences.java:449 msgid "More preferences can be edited directly in the file" -msgstr "" +msgstr "Preferensi yang lebih dapat disunting langsung di berkas" #: Editor.java:2156 msgid "Moving" +msgstr "Memindahkan" + +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "Banyak berkas tidak didukung" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "Harus menentukan setidaknya satu berkas sketsa" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" msgstr "" #: Sketch.java:282 msgid "Name for new file:" -msgstr "" +msgstr "Nama untuk berkas baru:" #: ../../../processing/app/Preferences.java:149 msgid "Nepali" -msgstr "" +msgstr "Bahasa Nepal" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 msgid "Network upload using programmer not supported" -msgstr "" +msgstr "Unggah jaringan menggunakan programmer tidak didukung" #: EditorToolbar.java:41 Editor.java:493 msgid "New" -msgstr "" +msgstr "Baru" #: EditorToolbar.java:46 msgid "New Editor Window" -msgstr "" +msgstr "Jendela Penyunting Baru" #: EditorHeader.java:292 msgid "New Tab" -msgstr "" +msgstr "Tab Baru" #: SerialMonitor.java:112 msgid "Newline" -msgstr "" +msgstr "Garisbaru" #: EditorHeader.java:340 msgid "Next Tab" -msgstr "" +msgstr "Tab Selanjutnya" #: Preferences.java:78 UpdateCheck.java:108 msgid "No" -msgstr "" +msgstr "Tidak" + +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "Tidak ada data otorisasi ditemukan" #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "" +msgstr "Tidak ada papan yang dipilih; silakan pilih sebuah papan dari Alat > menu Papan." #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "" @@ -973,6 +1102,10 @@ msgstr "" msgid "No line ending" msgstr "" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "" @@ -982,6 +1115,19 @@ msgstr "" msgid "No reference available for \"{0}\"" msgstr "" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "" @@ -1018,6 +1164,10 @@ msgstr "" msgid "One file added to the sketch." msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "" @@ -1028,7 +1178,7 @@ msgstr "" #: Base.java:636 msgid "Open an Arduino sketch..." -msgstr "Buka sebuah sketch Arduino" +msgstr "Buka sebuah sketsa Arduino" #: EditorToolbar.java:46 msgid "Open in Another Window" @@ -1054,13 +1204,26 @@ msgstr "" msgid "Persian" msgstr "" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "" +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "" + #: Base.java:239 msgid "Please install JDK 1.5 or later" -msgstr "Mohon instal JDK 1.5 atau lebih baru" +msgstr "Silakan instal JDK 1.5 atau lebih baru" + +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" #: Preferences.java:110 msgid "Polish" @@ -1224,10 +1387,18 @@ msgstr "" msgid "Save sketch folder as..." msgstr "" +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "" +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "" @@ -1260,20 +1431,6 @@ msgstr "" msgid "Serial Monitor" msgstr "" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "" - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "" - #: Serial.java:194 #, java-format msgid "" @@ -1353,6 +1510,10 @@ msgstr "Folder sketchbook tidak ada" msgid "Sketchbook location:" msgstr "" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "" @@ -1403,6 +1564,10 @@ msgstr "" msgid "The 'BYTE' keyword is no longer supported." msgstr "" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "" @@ -1470,11 +1635,11 @@ msgid "" "but anything besides the code will be lost." msgstr "" -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." +"They should also be less than 64 characters long." msgstr "" #: Base.java:259 @@ -1486,6 +1651,12 @@ msgid "" "himself in the third person." msgstr "" +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1503,7 +1674,7 @@ msgstr "" #: Editor.java:663 msgid "Tools" -msgstr "" +msgstr "Alat" #: Editor.java:1070 msgid "Troubleshooting" @@ -1515,11 +1686,11 @@ msgstr "" #: ../../../processing/app/Editor.java:2507 msgid "Type board password to access its console" -msgstr "" +msgstr "Ketik kata sandi papan untuk mengakses konsolnya" #: ../../../processing/app/Sketch.java:1673 msgid "Type board password to upload a new sketch" -msgstr "" +msgstr "Ketik kata sandi papan untuk mengunggah sketsa baru" #: ../../../processing/app/Preferences.java:118 msgid "Ukrainian" @@ -1528,24 +1699,24 @@ msgstr "" #: ../../../processing/app/Editor.java:2524 #: ../../../processing/app/NetworkMonitor.java:145 msgid "Unable to connect: is the sketch using the bridge?" -msgstr "" +msgstr "Tidak dapat tersambung: apakah sketsa menggunakan jembatan?" #: ../../../processing/app/NetworkMonitor.java:130 msgid "Unable to connect: retrying" -msgstr "" +msgstr "Tidak dapat tersambung: mencoba kembali" #: ../../../processing/app/Editor.java:2526 msgid "Unable to connect: wrong password?" -msgstr "" +msgstr "Tidak dapat tersambung: kata sandi salah?" #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" -msgstr "" +msgstr "Tidak dapat membuka layar serial" #: Sketch.java:1432 #, java-format msgid "Uncaught exception type: {0}" -msgstr "" +msgstr "Tipe pengecualian tidak tertangkap: {0}" #: Editor.java:1133 Editor.java:1355 msgid "Undo" @@ -1560,65 +1731,65 @@ msgstr "" #: UpdateCheck.java:111 msgid "Update" -msgstr "" +msgstr "Perbarui" #: Preferences.java:428 msgid "Update sketch files to new extension on save (.pde -> .ino)" -msgstr "" +msgstr "Perbarui berkas sketsa ke ekstensi baru saat menyimpan (.pde -> .ino)" #: EditorToolbar.java:41 Editor.java:545 msgid "Upload" -msgstr "" +msgstr "Unggah" #: EditorToolbar.java:46 Editor.java:553 msgid "Upload Using Programmer" -msgstr "" +msgstr "Unggah Menggunakan Programmer" #: Editor.java:2403 Editor.java:2439 msgid "Upload canceled." -msgstr "" +msgstr "Unggah dibatalkan." #: ../../../processing/app/Sketch.java:1678 msgid "Upload cancelled" -msgstr "" +msgstr "Unggah dibatalkan" #: Editor.java:2378 msgid "Uploading to I/O Board..." -msgstr "" +msgstr "Mengunggah ke papan I/O..." #: Sketch.java:1622 msgid "Uploading..." -msgstr "" +msgstr "Mengunggah..." #: Editor.java:1269 msgid "Use Selection For Find" -msgstr "" +msgstr "Gunakan Seleksi Untuk Cari" #: Preferences.java:409 msgid "Use external editor" -msgstr "" +msgstr "Gunakan penyunting eksternal" #: ../../../processing/app/debug/Compiler.java:94 #, java-format msgid "Using library {0} in folder: {1} {2}" -msgstr "" +msgstr "Gunakan pustaka {0} dalam folder: {1} {2}" #: ../../../processing/app/debug/Compiler.java:320 #, java-format msgid "Using previously compiled file: {0}" -msgstr "" +msgstr "Gunakan berkas hasil kompilasi sebelumnya: {0}" #: EditorToolbar.java:41 EditorToolbar.java:46 msgid "Verify" -msgstr "" +msgstr "Memeriksa" #: Editor.java:609 msgid "Verify / Compile" -msgstr "" +msgstr "Memeriksa / Kompilasi" #: Preferences.java:400 msgid "Verify code after upload" -msgstr "" +msgstr "Memeriksa kode setelah unggah" #: ../../../processing/app/Preferences.java:154 msgid "Vietnamese" @@ -1626,7 +1797,14 @@ msgstr "" #: Editor.java:1105 msgid "Visit Arduino.cc" -msgstr "" +msgstr "Kunjungi Arduino.cc" + +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "PERINGATAN: pustaka {0} mengklaim berjalan di {1} arsitektur (s) dan mungkin tidak kompatibel dengan papan saat ini yang berjalan pada arsitektur(s) {2}." #: Base.java:2128 msgid "Warning" @@ -1634,11 +1812,11 @@ msgstr "Peringatan" #: debug/Compiler.java:444 msgid "Wire.receive() has been renamed Wire.read()." -msgstr "" +msgstr "Wire.receive() telah diubah namanya Wire.read()." #: debug/Compiler.java:438 msgid "Wire.send() has been renamed Wire.write()." -msgstr "" +msgstr "Wire.send() telah diubah namanya Wire.write()." #: FindReplace.java:105 msgid "Wrap Around" @@ -1648,37 +1826,37 @@ msgstr "" msgid "" "Wrong microcontroller found. Did you select the right board from the Tools " "> Board menu?" -msgstr "" +msgstr "Mikrokontroler yang salah ditemukan. Apakah anda memilih papan yang tepat dari menu Alat > Papan?" #: Preferences.java:77 UpdateCheck.java:108 msgid "Yes" -msgstr "" +msgstr "Ya" #: Sketch.java:1074 msgid "You can't fool me" -msgstr "" +msgstr "Anda tidak bisa menipuku" #: Sketch.java:411 msgid "You can't have a .cpp file with the same name as the sketch." -msgstr "" +msgstr "Anda tidak dapat memiliki sebuah berkas .cpp dengan nama yang sama seperti sketsa." #: Sketch.java:421 msgid "" "You can't rename the sketch to \"{0}\"\n" "because the sketch already has a .cpp file with that name." -msgstr "" +msgstr "Anda tidak dapat mengubah nama sketsa ke \"{0}\"\nkarena sketsa telah memiliki sebuah berkas .cpp dengan nama itu." #: Sketch.java:861 msgid "" "You can't save the sketch as \"{0}\"\n" "because the sketch already has a .cpp file with that name." -msgstr "" +msgstr "Anda tidak dapat menyimpan sketsa sebagai \"{0}\"\nkarena sketsa telah memiliki sebuah berkas .cpp dengan nama itu." #: Sketch.java:883 msgid "" "You cannot save the sketch into a folder\n" "inside itself. This would go on forever." -msgstr "" +msgstr "Anda tidak dapat menyimpan sketsa ke dalam sebuah folder\ndalam dirinya sendiri. Hal ini akan berlangsung selamanya." #: Base.java:1888 msgid "You forgot your sketchbook" @@ -1687,26 +1865,26 @@ msgstr "Anda lupa sketchbook Anda" #: ../../../processing/app/AbstractMonitor.java:92 msgid "" "You've pressed {0} but nothing was sent. Should you select a line ending?" -msgstr "" +msgstr "Anda menekan {0} tetapi tidak ada yang terkirim. Haruskan anda memilih sebuah akhir baris?" #: Base.java:536 msgid "" "You've reached the limit for auto naming of new sketches\n" "for the day. How about going for a walk instead?" -msgstr "" +msgstr "Anda telah mencapai batas untuk penamaan sketsa baru\nuntuk hari ini. Bagaimana kalau jalan-jalan saja?" #: Base.java:2638 msgid "ZIP files or folders" -msgstr "" +msgstr "Berkas ZIP atau folder" #: Base.java:2661 msgid "Zip doesn't contain a library" -msgstr "" +msgstr "Zip tidak berisi sebuah pustaka" #: Sketch.java:364 #, java-format msgid "\".{0}\" is not a valid extension." -msgstr "" +msgstr "\".{0}\" bukan ekstensi sah" #: SketchCode.java:258 #, java-format @@ -1774,102 +1952,134 @@ msgstr "" #: Preferences.java:389 msgid "compilation " -msgstr "" +msgstr "kompilasi" #: ../../../processing/app/NetworkMonitor.java:111 msgid "connected!" -msgstr "" +msgstr "tersambung!" #: Sketch.java:540 msgid "createNewFile() returned false" -msgstr "" +msgstr "buatBerkasBaru() mengembalikan salah" #: ../../../processing/app/EditorStatus.java:469 msgid "enabled in File > Preferences." -msgstr "" +msgstr "diaktifkan pada Berkas > Preferensi." #: Base.java:2090 msgid "environment" -msgstr "" +msgstr "lingkungan" #: Editor.java:1108 msgid "http://arduino.cc/" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "" +msgstr "http://arduino.cc/" #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" -msgstr "" +msgstr "http://www.arduino.cc/en/Main/Software" #: UpdateCheck.java:53 msgid "http://www.arduino.cc/latest.txt" -msgstr "" +msgstr "http://www.arduino.cc/latest.txt" #: Base.java:2075 msgid "http://www.arduino.cc/playground/Learning/Linux" -msgstr "" +msgstr "http://www.arduino.cc/playground/Learning/Linux" #: Preferences.java:625 #, java-format msgid "ignoring invalid font size {0}" -msgstr "" +msgstr "mengabaikan ukuran fonta tidak sah {0}" #: Base.java:2080 msgid "index.html" -msgstr "" +msgstr "index.html" #: Editor.java:936 Editor.java:943 msgid "name is null" -msgstr "" +msgstr "nama adalah tidak ada" #: Base.java:2090 msgid "platforms.html" -msgstr "" - -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "" +msgstr "platforms.html" #: Editor.java:932 msgid "serialMenu is null" -msgstr "" +msgstr "serialMenu adalah tidak ada" #: debug/Uploader.java:195 #, java-format msgid "" "the selected serial port {0} does not exist or your board is not connected" -msgstr "" +msgstr "port serial yang terpilih {0} tidak ada atau papan anda tidak tersambung" + +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "opsi tidak diketahui: {0}" #: Preferences.java:391 msgid "upload" -msgstr "" +msgstr "unggah" #: Editor.java:380 #, java-format msgid "{0} files added to the sketch." -msgstr "" +msgstr "{0} berkas ditambahkan ke dalam sketsa." #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" -msgstr "" +msgstr "{0} mengembalikan {1}" #: Editor.java:2213 #, java-format msgid "{0} | Arduino {1}" -msgstr "" +msgstr "{0} | Arduino {1}" #: Editor.java:1874 #, java-format msgid "{0}.html" -msgstr "" +msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "{0}: Argumen tidak valid untuk --pref, seharusnya dalam bentuk \"preferensi=nilai\"" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "{0}: Nama papan tidak sah, seharusnya dalam bentuk \"paket: arsitektur: papan\" atau \"paket: arsitektur: papan:opsi\"" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "{0}: Opsi tidak valid untuk \"{1}\" opsi untuk papan \"{2}\"" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "{0}: Opsi tidak sah untuk papan \"{1}\"" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "{0}: Opsi tidak sah, seharusnya dalam bentuk \"nama = nilai\"" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "{0}: Arsitektur tidak diketahui" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "{0}: Papan tidak diketahui" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "{0}: Paket tidak diketahui" diff --git a/arduino-core/src/processing/app/i18n/Resources_in.properties b/arduino-core/src/processing/app/i18n/Resources_in.properties index daaaf09df..e71fe475b 100644 --- a/arduino-core/src/processing/app/i18n/Resources_in.properties +++ b/arduino-core/src/processing/app/i18n/Resources_in.properties @@ -2,584 +2,667 @@ # Copyright (C) 2012 # This file is distributed under the same license as the Arduino IDE package. # Rininta Andari , 2012. -# -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2013-11-20 10\:43+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Indonesian (http\://www.transifex.com/projects/p/arduino-ide-15/language/id/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: id\nPlural-Forms\: nplurals\=1; plural\=0;\n +# +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-18 16\:06+0000\nLast-Translator\: Rendiyono Wahyu Saputro \nLanguage-Team\: Indonesian (http\://www.transifex.com/projects/p/arduino-ide-15/language/id/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: id\nPlural-Forms\: nplurals\=1; plural\=0;\n #: Preferences.java:358 Preferences.java:374 !\ \ (requires\ restart\ of\ Arduino)= #: debug/Compiler.java:455 -!'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo= +'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard' hanya didukung pada Arduino Leonardo #: debug/Compiler.java:450 -!'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo= +'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' hanya didukung pada Arduino Leonardo #: Preferences.java:478 -!(edit\ only\ when\ Arduino\ is\ not\ running)= +(edit\ only\ when\ Arduino\ is\ not\ running)=(sunting hanya ketika Arduino tidak berjalan) + +#: ../../../processing/app/helpers/CommandlineParser.java:172 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= #: Sketch.java:746 -!.pde\ ->\ .ino= +.pde\ ->\ .ino=.pde -> .ino #: Base.java:773 -!\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

    Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

    Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= Apakah anda ingin keluar?

    Menutup sketsa yang terakhir dibuka akan menghentikan Arduino. #: Editor.java:2053 -!\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Do\ you\ want\ to\ save\ changes\ to\ this\ sketch
    \ before\ closing?

    If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Do\ you\ want\ to\ save\ changes\ to\ this\ sketch
    \ before\ closing?

    If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= Apa anda ingin menyimpan ke sketsa ini
    sebelum ditutup?

    Jika anda tidak menyimpan, perubahanmu akan hilang. #: Sketch.java:398 #, java-format -!A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"= +A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=Sebuah berkas bernama "{0}" telah ada di "{1}" #: Editor.java:2169 #, java-format -!A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.= +A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=Sebuah folder bernama "{0}" telah ada. Tidak dapat membuka sketsa. #: Base.java:2690 #, java-format -!A\ library\ named\ {0}\ already\ exists= +A\ library\ named\ {0}\ already\ exists=Sebuah pustaka bernama {0} telah ada #: UpdateCheck.java:103 -!A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?= +A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Sebuah versi baru Arduino telah ada,\nanda ingin mengunjungi halaman unduh Arduino? #: EditorConsole.java:153 -!A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.= +A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=Sebuah masalah terjadi ketika mencoba membuka\nberkas yang digunakan untuk menyimpan output konsol. #: Editor.java:1116 -!About\ Arduino= +About\ Arduino=Tentang Arduino #: Editor.java:650 -!Add\ File...= +Add\ File...=Tambah Berkas... #: Base.java:963 Add\ Library...=Tambah pustaka... +#: ../../../../../app/src/processing/app/Preferences.java:110 +!Albanian= + #: tools/FixEncoding.java:77 -!An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n= +An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Sebuah galat terjadi ketika mencoba memperbaiki pengkodean berkas.\nDo not attempt to save this sketch as it may overwrite\nthe old version. Use Open to re-open the sketch and try again.\n + +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= #: Base.java:228 -!An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.= +An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Galat tidak diketahui terjadi ketika mencoba memuat\nkode khusus platform untuk mesin adna #: Preferences.java:85 -!Arabic= +Arabic=Bahasa Arab #: Preferences.java:86 !Aragonese= #: tools/Archiver.java:48 -!Archive\ Sketch= +Archive\ Sketch=Arsip Sketsa #: tools/Archiver.java:109 -!Archive\ sketch\ as\:= +Archive\ sketch\ as\:=Arsip sketsa sebagai\: #: tools/Archiver.java:139 -!Archive\ sketch\ canceled.= +Archive\ sketch\ canceled.=Arsip sketsa dibatalkan. #: tools/Archiver.java:75 -!Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.= +Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=Pengarsipan sketsa telah dibatalkan karena\nsketsa tidak bisa disimpan dengan baik. #: ../../../processing/app/I18n.java:83 -!Arduino\ ARM\ (32-bits)\ Boards= +Arduino\ ARM\ (32-bits)\ Boards=Papan Arduino ARM (32-bits) #: ../../../processing/app/I18n.java:82 -!Arduino\ AVR\ Boards= +Arduino\ AVR\ Boards=Papan Arduino AVR + +#: Editor.java:2137 +Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Arduino hanya bisa membuka sketsa sendiri\ndan berkas lainnya berakhiran .ino atau .pde #: Base.java:1682 -!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.= +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino tidak dapat berjalan karena tidak bisa\nmembuat sebuah folder untuk menyimpan pengaturan anda. #: Base.java:1889 -!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.= +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino tidak dapat berjalan karena tidak bisa\nmembuat folder untuk menyimpan buku sketsamu. #: Base.java:240 -!Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.= +Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino memerlukan JDK penuh (tidak hanya sebuah JRE)\nuntuk dijalankan. Silahkan pasang JDK 1.5 atau yang lebih baru.\nInformasi lebih lanjut dapat ditemukan dalam referensi. #: ../../../processing/app/EditorStatus.java:471 -!Arduino\:\ = +Arduino\:\ =Arduino\: #: Sketch.java:588 #, java-format -!Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?= +Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Apakah anda yakin ingin menghapus "{0}"? #: Sketch.java:587 -!Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?= +Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Apakah anda yakin ingin menghapus sketsa ini? + +#: ../../../processing/app/helpers/CommandlineParser.java:100 +!Argument\ required\ for\ --board= + +#: ../../../processing/app/helpers/CommandlineParser.java:118 +!Argument\ required\ for\ --curdir= + +#: ../../../processing/app/helpers/CommandlineParser.java:60 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/helpers/CommandlineParser.java:109 +!Argument\ required\ for\ --port= + +#: ../../../processing/app/helpers/CommandlineParser.java:140 +!Argument\ required\ for\ --pref= + +#: ../../../processing/app/helpers/CommandlineParser.java:153 +!Argument\ required\ for\ --preferences-file= #: ../../../processing/app/Preferences.java:137 -!Armenian= +Armenian=Bahasa Armenia #: ../../../processing/app/Preferences.java:138 -!Asturian= +Asturian=Bahasa Asturia + +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= #: tools/AutoFormat.java:91 -!Auto\ Format= +Auto\ Format=Format Otomatis #: tools/AutoFormat.java:934 -!Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.= +Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=Format Otomatis Dibatalkan\: Terlalu banyak tanda kurung kurawal kiri. #: tools/AutoFormat.java:925 -!Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.= +Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=Format Otomatis Dibatalkan\: Terlalu banyak tanda kurung kiri. #: tools/AutoFormat.java:931 -!Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.= +Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=Format Otomatis Dibatalkan\: Terlalu banyak tanda kurung kurawal kanan. #: tools/AutoFormat.java:922 -!Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.= +Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=Format Otomatis Dibatalkan\: Terlalu banyak tanda kurung kanan. #: tools/AutoFormat.java:944 -!Auto\ Format\ finished.= +Auto\ Format\ finished.=Format Otomatis selesai. #: Preferences.java:439 -!Automatically\ associate\ .ino\ files\ with\ Arduino= +Automatically\ associate\ .ino\ files\ with\ Arduino=Otomatis asosiasi berkas .ino dengan Arduino #: SerialMonitor.java:110 -!Autoscroll= +Autoscroll=Gulir otomatis #: Editor.java:2619 #, java-format -!Bad\ error\ line\:\ {0}= +Bad\ error\ line\:\ {0}=Galat baris buruk\: {0} #: Editor.java:2136 -!Bad\ file\ selected= +Bad\ file\ selected=Berkas buruk dipilih + +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../../../app/src/processing/app/Preferences.java:163 +!Basque= #: ../../../processing/app/Preferences.java:139 -!Belarusian= +Belarusian=Bahasa Belarusia #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 -!Board= +Board=Papan #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format -!Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= +Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=Board {0}\:{1}\:{2} tidak mendefinisikan preferensi ''build.board''. Set otomatis ke\: {3} #: ../../../processing/app/EditorStatus.java:472 -!Board\:\ = +Board\:\ =Papan\: #: ../../../processing/app/Preferences.java:140 -!Bosnian= +Bosnian=Bahasa Bosnia #: SerialMonitor.java:112 -!Both\ NL\ &\ CR= +Both\ NL\ &\ CR=Keduanya NL & CR #: Preferences.java:81 -!Browse= +Browse=Telusuri #: Sketch.java:1392 Sketch.java:1423 -!Build\ folder\ disappeared\ or\ could\ not\ be\ written= +Build\ folder\ disappeared\ or\ could\ not\ be\ written=Folder bangun menghilang atau tidak dapat ditulis + +#: ../../../processing/app/debug/Compiler.java:211 +!Build\ options\ changed,\ rebuilding\ all= #: ../../../processing/app/Preferences.java:80 -!Bulgarian= +Bulgarian=Bahasa Bulgaria #: ../../../processing/app/Preferences.java:141 -!Burmese\ (Myanmar)= +Burmese\ (Myanmar)=Bahasa Burma (Myanmar) #: Editor.java:708 -!Burn\ Bootloader= +Burn\ Bootloader=Membakar Bootloader #: Editor.java:2504 -!Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...= +Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Membakar bootloader ke papan I/O (ini mungkin memakan waktu satu menit) -#: ../../../processing/app/Base.java:368 -!Can't\ open\ source\ sketch\!= +#: ../../../processing/app/helpers/CommandlineParser.java:54 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 -!Canadian\ French= +Canadian\ French=Bahasa Perancis Kanada #: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2064 Editor.java:2145 Editor.java:2465 -!Cancel= +Cancel=Batalkan #: Sketch.java:455 -!Cannot\ Rename= +Cannot\ Rename=Tidak dapat Diubah nama + +#: ../../../processing/app/helpers/CommandlineParser.java:169 +!Cannot\ specify\ any\ sketch\ files= #: SerialMonitor.java:112 !Carriage\ return= #: Preferences.java:87 -!Catalan= +Catalan=Bahasa Catalan #: Preferences.java:419 -!Check\ for\ updates\ on\ startup= +Check\ for\ updates\ on\ startup=Cek untuk pembaruan saat dijalan pertama kali #: ../../../processing/app/Preferences.java:142 -!Chinese\ (China)= +Chinese\ (China)=China (China) #: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= +Chinese\ (Hong\ Kong)=Bahasa China (Hong Kong) #: ../../../processing/app/Preferences.java:144 -!Chinese\ (Taiwan)= +Chinese\ (Taiwan)=Bahasa China (Taiwan) #: ../../../processing/app/Preferences.java:143 -!Chinese\ (Taiwan)\ (Big5)= +Chinese\ (Taiwan)\ (Big5)=Bahasa China (Taiwan) (Big5) #: Preferences.java:88 -!Chinese\ Simplified= +Chinese\ Simplified=Bahasa China Sederhana #: Preferences.java:89 -!Chinese\ Traditional= +Chinese\ Traditional=Bahasa China Tradisional #: Editor.java:521 Editor.java:2024 -!Close= +Close=Tutup #: Editor.java:1208 Editor.java:2749 -!Comment/Uncomment= - -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -!Compiler\ error,\ please\ submit\ this\ code\ to\ {0}= +Comment/Uncomment=Komentar/Tidak komentar #: Sketch.java:1608 Editor.java:1890 -!Compiling\ sketch...= +Compiling\ sketch...=Mengkompilasi sketsa... #: EditorConsole.java:152 -!Console\ Error= +Console\ Error=Galat Konsol #: Editor.java:1157 Editor.java:2707 -!Copy= +Copy=Salin #: Editor.java:1177 Editor.java:2723 -!Copy\ as\ HTML= +Copy\ as\ HTML=Salin sebagai HTML #: ../../../processing/app/EditorStatus.java:455 -!Copy\ error\ messages= +Copy\ error\ messages=Salin pesan galat #: Editor.java:1165 Editor.java:2715 -!Copy\ for\ Forum= +Copy\ for\ Forum=Salin untuk Forum #: Sketch.java:1089 #, java-format -!Could\ not\ add\ ''{0}''\ to\ the\ sketch.= +Could\ not\ add\ ''{0}''\ to\ the\ sketch.=Tidak dapat menambah ''{0}'' ke sketsa. #: Editor.java:2188 -!Could\ not\ copy\ to\ a\ proper\ location.= +Could\ not\ copy\ to\ a\ proper\ location.=Tidak dapat menyalin ke lokasi yang tepat. #: Editor.java:2179 -!Could\ not\ create\ the\ sketch\ folder.= +Could\ not\ create\ the\ sketch\ folder.=Tidak dapat membuat folder sketsa. #: Editor.java:2206 -!Could\ not\ create\ the\ sketch.= +Could\ not\ create\ the\ sketch.=Tidak dapat membuat sketsa #: Sketch.java:617 #, java-format -!Could\ not\ delete\ "{0}".= +Could\ not\ delete\ "{0}".=Tidak dapat menghapus "{0}". #: Sketch.java:1066 #, java-format -!Could\ not\ delete\ the\ existing\ ''{0}''\ file.= +Could\ not\ delete\ the\ existing\ ''{0}''\ file.=Tidak dapat menghapus berkas ''{0}'' yang ada. #: Base.java:2533 Base.java:2556 #, java-format -!Could\ not\ delete\ {0}= +Could\ not\ delete\ {0}=Tidak dapat menghapus {0} #: ../../../processing/app/debug/TargetPlatform.java:74 #, java-format -!Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?= +Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?=Tidak dapat menemukan boards.txt di {0}. Apakah ini pra-1.5? #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 #, java-format -!Could\ not\ find\ tool\ {0}= +Could\ not\ find\ tool\ {0}=Tidak dapat menemukan alat {0} #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 #, java-format -!Could\ not\ find\ tool\ {0}\ from\ package\ {1}= +Could\ not\ find\ tool\ {0}\ from\ package\ {1}=Tidak dapat menemukan alat {0} dari paket {1} #: Base.java:1934 #, java-format -!Could\ not\ open\ the\ URL\n{0}= +Could\ not\ open\ the\ URL\n{0}=Tidak dapat membuka URL\n{0} #: Base.java:1958 #, java-format -!Could\ not\ open\ the\ folder\n{0}= +Could\ not\ open\ the\ folder\n{0}=Tidak dapat membuka folder\n{0} #: Sketch.java:1769 -!Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.= +Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=Tidak dapat menyimpan kembali sketsa. Anda mungkin berada dalam kesulitan pada saat ini,\ndan mungkin sudah saatnya untuk menyalin dan menempelkan kode ke penyunting teks lain. #: Sketch.java:1768 -!Could\ not\ re-save\ sketch= +Could\ not\ re-save\ sketch=Tidak dapat menyimpan kembali sketsa #: Theme.java:52 -!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= +Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Tidak dapat membaca pengaturan tema warna.\nAnda harus memasang ulang Arduino. #: Preferences.java:219 -!Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= +Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Tidak dapat membaca pengaturan baku.\nAnda harus memasang ulang Arduino. -#: Preferences.java:258 -#, java-format -!Could\ not\ read\ preferences\ from\ {0}= +#: ../../../processing/app/debug/Compiler.java:206 +!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= #: Base.java:2482 #, java-format -!Could\ not\ remove\ old\ version\ of\ {0}= +Could\ not\ remove\ old\ version\ of\ {0}=Tidak dapat membuang versi lama dari {0} #: Sketch.java:483 Sketch.java:528 #, java-format -!Could\ not\ rename\ "{0}"\ to\ "{1}"= +Could\ not\ rename\ "{0}"\ to\ "{1}"=Tidak dapat mengubah nama "{0}" ke "{1}" #: Sketch.java:475 -!Could\ not\ rename\ the\ sketch.\ (0)= +Could\ not\ rename\ the\ sketch.\ (0)=Tidak dapat mengubah nama sketsa. (0) #: Sketch.java:496 -!Could\ not\ rename\ the\ sketch.\ (1)= +Could\ not\ rename\ the\ sketch.\ (1)=Tidak dapat mengubah nama sketsa. (1) #: Sketch.java:503 -!Could\ not\ rename\ the\ sketch.\ (2)= +Could\ not\ rename\ the\ sketch.\ (2)=Tidak dapat mengubah nama sketsa. (2) #: Base.java:2492 #, java-format -!Could\ not\ replace\ {0}= +Could\ not\ replace\ {0}=Tidak dapat diganti {0} + +#: ../../../processing/app/debug/Compiler.java:107 +!Could\ not\ write\ build\ preferences\ file= #: tools/Archiver.java:74 -!Couldn't\ archive\ sketch= +Couldn't\ archive\ sketch=Tidak dapat mengarsipkan sketsa #: Sketch.java:1647 -!Couldn't\ determine\ program\ size\:\ {0}= +Couldn't\ determine\ program\ size\:\ {0}=Tidak dapat menentukan ukuran program\: {0} #: Sketch.java:616 -!Couldn't\ do\ it= +Couldn't\ do\ it=Tidak dapat melakukan itu #: debug/BasicUploader.java:209 -!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.= +Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=Tidak dapat menemukan sebuah Papan pada port yang dipilih. Cek apakah anda telah memilih port yang benar. Jika sudah benar, coba tekan tombol reset pada papan setelah memulai unggah. #: ../../../processing/app/Preferences.java:82 -!Croatian= +Croatian=Bahasa Kroasia #: Editor.java:1149 Editor.java:2699 -!Cut= +Cut=Potong #: ../../../processing/app/Preferences.java:83 -!Czech= +Czech=Bahasa Ceko #: Preferences.java:90 -!Danish= +Danish=Bahasa Denmark #: Editor.java:1224 Editor.java:2765 -!Decrease\ Indent= +Decrease\ Indent=Menurunkan Indentasi #: EditorHeader.java:314 Sketch.java:591 -!Delete= +Delete=Hapus #: debug/Uploader.java:199 -!Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting= +Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=Perangkat tidak merespon, cek port serial yang tepat dipilih atau RESET papan tepat sebelum mengekspor #: tools/FixEncoding.java:57 -!Discard\ all\ changes\ and\ reload\ sketch?= +Discard\ all\ changes\ and\ reload\ sketch?=Buang semua perubahan dan muat ulang sketsa? #: ../../../processing/app/Preferences.java:438 -!Display\ line\ numbers= +Display\ line\ numbers=Tampilkan nomor baris #: Editor.java:2064 -!Don't\ Save= +Don't\ Save=Jangan Simpan #: Editor.java:2275 Editor.java:2311 -!Done\ Saving.= +Done\ Saving.=Selesai Menyimpan. #: Editor.java:2510 -!Done\ burning\ bootloader.= +Done\ burning\ bootloader.=Selesai membakar bootloader. + +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= #: Editor.java:1911 Editor.java:1928 -!Done\ compiling.= +Done\ compiling.=Selesai mengkompilasi. #: Editor.java:2564 -!Done\ printing.= +Done\ printing.=Selesai mencetak. + +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= #: Editor.java:2395 Editor.java:2431 -!Done\ uploading.= +Done\ uploading.=Selesai mengunggah. #: Preferences.java:91 -!Dutch= +Dutch=Bahasa Belanda #: ../../../processing/app/Preferences.java:144 -!Dutch\ (Netherlands)= +Dutch\ (Netherlands)=Bahasa Belanda (Netherlands) #: Editor.java:1130 -!Edit= +Edit=Sunting #: Preferences.java:370 -!Editor\ font\ size\:\ = +Editor\ font\ size\:\ =Penyunting ukuran fonta\: #: Preferences.java:353 -!Editor\ language\:\ = +Editor\ language\:\ =Penyunting bahasa\: #: Preferences.java:92 -!English= +English=Bahasa Inggris #: ../../../processing/app/Preferences.java:145 -!English\ (United\ Kingdom)= +English\ (United\ Kingdom)=Bahasa Inggris (United Kingdom) #: Editor.java:1062 -!Environment= +Environment=Lingkungan #: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481 #: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543 #: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206 -Error=Error +Error=Galat #: Sketch.java:1065 Sketch.java:1088 -!Error\ adding\ file= +Error\ adding\ file=Galat menambahkan berkas #: debug/Compiler.java:369 -!Error\ compiling.= +Error\ compiling.=Galat mengkompilasi. #: Base.java:1674 -Error\ getting\ the\ Arduino\ data\ folder.=Error saat mengambil folder data Arduino +Error\ getting\ the\ Arduino\ data\ folder.=Galat saat mengambil folder data Arduino #: Serial.java:593 #, java-format -!Error\ inside\ Serial.{0}()= +Error\ inside\ Serial.{0}()=Galat didalam Serial.{0}() #: ../../../processing/app/Base.java:1232 -!Error\ loading\ libraries= +Error\ loading\ libraries=Galat memuat pustaka #: ../../../processing/app/debug/TargetPlatform.java:95 #: ../../../processing/app/debug/TargetPlatform.java:106 #: ../../../processing/app/debug/TargetPlatform.java:117 #, java-format -!Error\ loading\ {0}= +Error\ loading\ {0}=Galat memuat {0} #: Serial.java:181 #, java-format -!Error\ opening\ serial\ port\ ''{0}''.= +Error\ opening\ serial\ port\ ''{0}''.=Galat membuka port serial ''{0}''. #: Preferences.java:277 -!Error\ reading\ preferences= +Error\ reading\ preferences=Galat membaca preferensi #: Preferences.java:279 #, java-format -!Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.= +Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Galat membaca berkas preferensi. Silakan hapus (atau pindah)\n{0} dan hidup ulang Arduino. #: ../../../cc/arduino/packages/DiscoveryManager.java:25 -!Error\ starting\ discovery\ method\:\ = +Error\ starting\ discovery\ method\:\ =Galat memulai metode penemuan\: #: Serial.java:125 #, java-format -!Error\ touching\ serial\ port\ ''{0}''.= +Error\ touching\ serial\ port\ ''{0}''.=Galat menyentuh port serial ''{0}''. #: Editor.java:2512 Editor.java:2516 Editor.java:2520 -!Error\ while\ burning\ bootloader.= +Error\ while\ burning\ bootloader.=Galat ketika membakar bootloader. #: ../../../processing/app/Editor.java:2555 -!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=Galat ketika membakar bootloader\: kehilangan '{0}' parameter konfigurasi + +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= #: SketchCode.java:83 #, java-format -!Error\ while\ loading\ code\ {0}= +Error\ while\ loading\ code\ {0}=Galat ketika memuat kode {0} #: Editor.java:2567 -!Error\ while\ printing.= +Error\ while\ printing.=Galat ketika mencetak. + +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 -!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= +Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=Galat ketika mengunggah\: kehilangan '{0}' parameter konfigurasi + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= #: Preferences.java:93 -!Estonian= +Estonian=Bahasa Estonia #: ../../../processing/app/Preferences.java:146 -!Estonian\ (Estonia)= +Estonian\ (Estonia)=Bahasa Estonia (Estonia) #: Editor.java:516 -!Examples= +Examples=Contoh #: Editor.java:2482 -!Export\ canceled,\ changes\ must\ first\ be\ saved.= +Export\ canceled,\ changes\ must\ first\ be\ saved.=Ekspor dibatalkan, perubahan harus disimpan terlebih dahulu. #: Base.java:2100 -!FAQ.html= +FAQ.html=FAQ.html + +#: ../../../processing/app/BaseNoGui.java:460 +#: ../../../../../app/src/processing/app/Base.java:251 +#, java-format +!Failed\ to\ open\ sketch\:\ "{0}"= #: Editor.java:491 -!File= +File=Berkas #: Preferences.java:94 -!Filipino= +Filipino=Bahasa Filipina #: FindReplace.java:124 FindReplace.java:127 -!Find= +Find=Cari #: Editor.java:1249 -!Find\ Next= +Find\ Next=Cari Selanjutnya #: Editor.java:1259 -!Find\ Previous= +Find\ Previous=Cari Sebelumnya #: Editor.java:1086 Editor.java:2775 -!Find\ in\ Reference= +Find\ in\ Reference=Cari di Referensi #: Editor.java:1234 -!Find...= +Find...=Cari... #: FindReplace.java:80 -!Find\:= +Find\:=Cari\: #: ../../../processing/app/Preferences.java:147 -!Finnish= +Finnish=Bahasa Finlandia #: tools/FixEncoding.java:41 tools/FixEncoding.java:58 #: tools/FixEncoding.java:79 -!Fix\ Encoding\ &\ Reload= +Fix\ Encoding\ &\ Reload=Perbaiki Pengkodean & Muat Ulang #: Base.java:1851 -!For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n= +For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=Untuk informasi memasang pustaka, lihat\: http\://arduino.cc/en/Guide/Libraries\n -#: debug/BasicUploader.java:80 -!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ = +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 -!French= +French=Bahasa Perancis #: Editor.java:1097 -!Frequently\ Asked\ Questions= +Frequently\ Asked\ Questions=Pertanyaan yang Sering Ditanyakan #: Preferences.java:96 -!Galician= +Galician=Bahasa Galisia #: ../../../processing/app/Preferences.java:94 -!Georgian= +Georgian=Bahasa Georgia #: Preferences.java:97 -!German= +German=Bahasa Jerman #: Editor.java:1054 -!Getting\ Started= +Getting\ Started=Persiapan untuk Mulai #: ../../../processing/app/Sketch.java:1646 #, java-format -!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.= +Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=Variable global menggunakan {0} byte ({2}%%) dari memori dinamik, meninggalkan {3} byte untuk variabel lokal. Maksimum adalah {1} byte. #: ../../../processing/app/Sketch.java:1651 #, java-format -!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.= +Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=Variabel global menggunakan {0} byte dari memori dinamik. #: Preferences.java:98 -!Greek= +Greek=Bahasa Yunani #: Base.java:2085 -!Guide_Environment.html= +Guide_Environment.html=Guide_Environment.html #: Base.java:2071 Guide_MacOSX.html=Guide_MacOSX.html #: Base.java:2095 -!Guide_Troubleshooting.html= +Guide_Troubleshooting.html=Guide_Troubleshooting.html #: Base.java:2073 Guide_Windows.html=Guide_Windows.html #: ../../../processing/app/Preferences.java:95 -!Hebrew= +Hebrew=Bahasa Ibrani #: Editor.java:1015 -!Help= +Help=Bantuan #: Preferences.java:99 -!Hindi= +Hindi=Bahasa Hindi #: Sketch.java:295 -!How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?= +How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Bagaimana tentang menyimpan sketsa terlebih dahulu\nsebelum mencoba mengubah namanya? #: Sketch.java:882 !How\ very\ Borges\ of\ you= #: Preferences.java:100 -!Hungarian= +Hungarian=Bahasa Hungaria #: FindReplace.java:96 !Ignore\ Case= @@ -588,44 +671,44 @@ Guide_Windows.html=Guide_Windows.html Ignoring\ bad\ library\ name=Mengabaikan nama pustaka yang salah #: Base.java:1436 -!Ignoring\ sketch\ with\ bad\ name= +Ignoring\ sketch\ with\ bad\ name=Mengabaikan sketsa dengan nama buruk #: Editor.java:636 -!Import\ Library...= +Import\ Library...=Impor Pustaka... #: ../../../processing/app/Sketch.java:736 -!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?= +In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=Di Arduino 1.0, ekstensi berkas baku telah berubah\ndari .pde ke .ino. Sketsa baru (termasuk yang dibuat\nby "Simpan-Sebagai") akan menggunakan ekstensi baru. Ekstensi\ndari sketsa yang ada akan diperbarui saat menyimpan, tetapi anda bisa\nmenonaktifkan ini pada dialog Preferensi.\n\nSimpan sketsa dan perbarui ekstensinya? #: Editor.java:1216 Editor.java:2757 -!Increase\ Indent= +Increase\ Indent=Tingkatkan Indentasi #: Preferences.java:101 -!Indonesian= +Indonesian=Bahasa Indonesia #: ../../../processing/app/Base.java:1204 #, java-format -!Invalid\ library\ found\ in\ {0}\:\ {1}= +Invalid\ library\ found\ in\ {0}\:\ {1}=Pustaka tidak sah ditemukan di {0}\: {1} #: Preferences.java:102 -!Italian= +Italian=Bahasa Italia #: Preferences.java:103 -!Japanese= +Japanese=Bahasa Jepang #: Preferences.java:104 -!Korean= +Korean=Bahasa Korea #: Preferences.java:105 -!Latvian= +Latvian=Bahasa Latvia #: Base.java:2699 -!Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu= +Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Pustaka telah ditambahkan ke pustakamu. Cek menu "Impor pustaka" #: Preferences.java:106 !Lithuaninan= -#: ../../../processing/app/Sketch.java:1660 -!Low\ memory\ available,\ stability\ problems\ may\ occur= +#: ../../../processing/app/debug/Compiler.java:333 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 !Marathi= @@ -633,48 +716,66 @@ Ignoring\ bad\ library\ name=Mengabaikan nama pustaka yang salah #: Base.java:2112 Message=Pesan -#: Sketch.java:1712 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../processing/app/preproc/PdePreprocessor.java:412 +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Kehilangan * / dari akhir sebuah / * komentar * / + +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= #: Preferences.java:449 -!More\ preferences\ can\ be\ edited\ directly\ in\ the\ file= +More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Preferensi yang lebih dapat disunting langsung di berkas #: Editor.java:2156 -!Moving= +Moving=Memindahkan + +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/helpers/CommandlineParser.java:166 +!Must\ specify\ exactly\ one\ sketch\ file= + +#: ../../../../../app/src/processing/app/Preferences.java:172 +!N'Ko= #: Sketch.java:282 -!Name\ for\ new\ file\:= +Name\ for\ new\ file\:=Nama untuk berkas baru\: #: ../../../processing/app/Preferences.java:149 -!Nepali= +Nepali=Bahasa Nepal #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 -!Network\ upload\ using\ programmer\ not\ supported= +Network\ upload\ using\ programmer\ not\ supported=Unggah jaringan menggunakan programmer tidak didukung #: EditorToolbar.java:41 Editor.java:493 -!New= +New=Baru #: EditorToolbar.java:46 -!New\ Editor\ Window= +New\ Editor\ Window=Jendela Penyunting Baru #: EditorHeader.java:292 -!New\ Tab= +New\ Tab=Tab Baru #: SerialMonitor.java:112 -!Newline= +Newline=Garisbaru #: EditorHeader.java:340 -!Next\ Tab= +Next\ Tab=Tab Selanjutnya #: Preferences.java:78 UpdateCheck.java:108 -!No= +No=Tidak + +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= #: debug/Compiler.java:126 -!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.= +No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Tidak ada papan yang dipilih; silakan pilih sebuah papan dari Alat > menu Papan. #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 !No\ changes\ necessary\ for\ Auto\ Format.= +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 !No\ files\ were\ added\ to\ the\ sketch.= @@ -684,6 +785,9 @@ Message=Pesan #: SerialMonitor.java:112 !No\ line\ ending= +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 !No\ really,\ time\ for\ some\ fresh\ air\ for\ you.= @@ -691,6 +795,16 @@ Message=Pesan #, java-format !No\ reference\ available\ for\ "{0}"= +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/SketchData.java:135 +!No\ valid\ code\ files\ found= + #: ../../../processing/app/Base.java:309 !No\ valid\ configured\ cores\ found\!\ Exiting...= @@ -717,6 +831,9 @@ Message=Pesan #: Sketch.java:992 Editor.java:376 !One\ file\ added\ to\ the\ sketch.= +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 !Open= @@ -724,7 +841,7 @@ Message=Pesan !Open\ URL= #: Base.java:636 -Open\ an\ Arduino\ sketch...=Buka sebuah sketch Arduino +Open\ an\ Arduino\ sketch...=Buka sebuah sketsa Arduino #: EditorToolbar.java:46 !Open\ in\ Another\ Window= @@ -744,11 +861,21 @@ Open...=Buka... #: Preferences.java:109 !Persian= +#: ../../../../../app/src/processing/app/Preferences.java:175 +!Persian\ (Iran)= + #: debug/Compiler.java:408 !Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= +#: ../../../processing/app/debug/Compiler.java:807 +!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= + #: Base.java:239 -Please\ install\ JDK\ 1.5\ or\ later=Mohon instal JDK 1.5 atau lebih baru +Please\ install\ JDK\ 1.5\ or\ later=Silakan instal JDK 1.5 atau lebih baru + +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:249 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:294 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= #: Preferences.java:110 !Polish= @@ -811,9 +938,6 @@ Problem\ getting\ data\ folder=Masalah saat mengambil folder data #: Sketch.java:355 Sketch.java:362 Sketch.java:373 !Problem\ with\ rename= -#: Editor.java:2137 -!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= - #: ../../../processing/app/I18n.java:86 !Processor= @@ -874,9 +998,15 @@ Quit=Keluar #: Sketch.java:825 !Save\ sketch\ folder\ as...= +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 !Saving...= +#: ../../../../../app/src/processing/app/FindReplace.java:116 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 !Select\ (or\ create\ new)\ folder\ for\ sketches...= @@ -901,14 +1031,6 @@ Quit=Keluar #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 !Serial\ Monitor= -#: Serial.java:174 -#, java-format -!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.= - -#: Serial.java:121 -#, java-format -!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.= - #: Serial.java:194 #, java-format !Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?= @@ -963,6 +1085,9 @@ Sketchbook\ folder\ disappeared=Folder sketchbook tidak ada #: Preferences.java:315 !Sketchbook\ location\:= +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 !Sketches\ (*.ino,\ *.pde)= @@ -997,6 +1122,9 @@ Sketchbook\ folder\ disappeared=Folder sketchbook tidak ada #: debug/Compiler.java:414 !The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.= +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 !The\ Client\ class\ has\ been\ renamed\ EthernetClient.= @@ -1033,12 +1161,15 @@ Sketchbook\ folder\ disappeared=Folder sketchbook tidak ada #: Sketch.java:1755 !The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.= -#: Sketch.java:2018 -!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.= +#: ../../../../../app/src/processing/app/Sketch.java:1470 +!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= #: Base.java:259 !The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.= +#: ../../../processing/app/debug/Compiler.java:464 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 !This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= @@ -1049,7 +1180,7 @@ Sketchbook\ folder\ disappeared=Folder sketchbook tidak ada !Time\ for\ a\ Break= #: Editor.java:663 -!Tools= +Tools=Alat #: Editor.java:1070 !Troubleshooting= @@ -1058,30 +1189,30 @@ Sketchbook\ folder\ disappeared=Folder sketchbook tidak ada !Turkish= #: ../../../processing/app/Editor.java:2507 -!Type\ board\ password\ to\ access\ its\ console= +Type\ board\ password\ to\ access\ its\ console=Ketik kata sandi papan untuk mengakses konsolnya #: ../../../processing/app/Sketch.java:1673 -!Type\ board\ password\ to\ upload\ a\ new\ sketch= +Type\ board\ password\ to\ upload\ a\ new\ sketch=Ketik kata sandi papan untuk mengunggah sketsa baru #: ../../../processing/app/Preferences.java:118 !Ukrainian= #: ../../../processing/app/Editor.java:2524 #: ../../../processing/app/NetworkMonitor.java:145 -!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?= +Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=Tidak dapat tersambung\: apakah sketsa menggunakan jembatan? #: ../../../processing/app/NetworkMonitor.java:130 -!Unable\ to\ connect\:\ retrying= +Unable\ to\ connect\:\ retrying=Tidak dapat tersambung\: mencoba kembali #: ../../../processing/app/Editor.java:2526 -!Unable\ to\ connect\:\ wrong\ password?= +Unable\ to\ connect\:\ wrong\ password?=Tidak dapat tersambung\: kata sandi salah? #: ../../../processing/app/Editor.java:2512 -!Unable\ to\ open\ serial\ monitor= +Unable\ to\ open\ serial\ monitor=Tidak dapat membuka layar serial #: Sketch.java:1432 #, java-format -!Uncaught\ exception\ type\:\ {0}= +Uncaught\ exception\ type\:\ {0}=Tipe pengecualian tidak tertangkap\: {0} #: Editor.java:1133 Editor.java:1355 !Undo= @@ -1090,109 +1221,113 @@ Sketchbook\ folder\ disappeared=Folder sketchbook tidak ada !Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt= #: UpdateCheck.java:111 -!Update= +Update=Perbarui #: Preferences.java:428 -!Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)= +Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Perbarui berkas sketsa ke ekstensi baru saat menyimpan (.pde -> .ino) #: EditorToolbar.java:41 Editor.java:545 -!Upload= +Upload=Unggah #: EditorToolbar.java:46 Editor.java:553 -!Upload\ Using\ Programmer= +Upload\ Using\ Programmer=Unggah Menggunakan Programmer #: Editor.java:2403 Editor.java:2439 -!Upload\ canceled.= +Upload\ canceled.=Unggah dibatalkan. #: ../../../processing/app/Sketch.java:1678 -!Upload\ cancelled= +Upload\ cancelled=Unggah dibatalkan #: Editor.java:2378 -!Uploading\ to\ I/O\ Board...= +Uploading\ to\ I/O\ Board...=Mengunggah ke papan I/O... #: Sketch.java:1622 -!Uploading...= +Uploading...=Mengunggah... #: Editor.java:1269 -!Use\ Selection\ For\ Find= +Use\ Selection\ For\ Find=Gunakan Seleksi Untuk Cari #: Preferences.java:409 -!Use\ external\ editor= +Use\ external\ editor=Gunakan penyunting eksternal #: ../../../processing/app/debug/Compiler.java:94 #, java-format -!Using\ library\ {0}\ in\ folder\:\ {1}\ {2}= +Using\ library\ {0}\ in\ folder\:\ {1}\ {2}=Gunakan pustaka {0} dalam folder\: {1} {2} #: ../../../processing/app/debug/Compiler.java:320 #, java-format -!Using\ previously\ compiled\ file\:\ {0}= +Using\ previously\ compiled\ file\:\ {0}=Gunakan berkas hasil kompilasi sebelumnya\: {0} #: EditorToolbar.java:41 EditorToolbar.java:46 -!Verify= +Verify=Memeriksa #: Editor.java:609 -!Verify\ /\ Compile= +Verify\ /\ Compile=Memeriksa / Kompilasi #: Preferences.java:400 -!Verify\ code\ after\ upload= +Verify\ code\ after\ upload=Memeriksa kode setelah unggah #: ../../../processing/app/Preferences.java:154 !Vietnamese= #: Editor.java:1105 -!Visit\ Arduino.cc= +Visit\ Arduino.cc=Kunjungi Arduino.cc + +#: ../../../processing/app/debug/Compiler.java:375 +#, java-format +!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= #: Base.java:2128 Warning=Peringatan #: debug/Compiler.java:444 -!Wire.receive()\ has\ been\ renamed\ Wire.read().= +Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() telah diubah namanya Wire.read(). #: debug/Compiler.java:438 -!Wire.send()\ has\ been\ renamed\ Wire.write().= +Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() telah diubah namanya Wire.write(). #: FindReplace.java:105 !Wrap\ Around= #: debug/Uploader.java:213 -!Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?= +Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=Mikrokontroler yang salah ditemukan. Apakah anda memilih papan yang tepat dari menu Alat > Papan? #: Preferences.java:77 UpdateCheck.java:108 -!Yes= +Yes=Ya #: Sketch.java:1074 -!You\ can't\ fool\ me= +You\ can't\ fool\ me=Anda tidak bisa menipuku #: Sketch.java:411 -!You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.= +You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Anda tidak dapat memiliki sebuah berkas .cpp dengan nama yang sama seperti sketsa. #: Sketch.java:421 -!You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= +You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Anda tidak dapat mengubah nama sketsa ke "{0}"\nkarena sketsa telah memiliki sebuah berkas .cpp dengan nama itu. #: Sketch.java:861 -!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= +You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Anda tidak dapat menyimpan sketsa sebagai "{0}"\nkarena sketsa telah memiliki sebuah berkas .cpp dengan nama itu. #: Sketch.java:883 -!You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.= +You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Anda tidak dapat menyimpan sketsa ke dalam sebuah folder\ndalam dirinya sendiri. Hal ini akan berlangsung selamanya. #: Base.java:1888 You\ forgot\ your\ sketchbook=Anda lupa sketchbook Anda #: ../../../processing/app/AbstractMonitor.java:92 -!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?= +You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=Anda menekan {0} tetapi tidak ada yang terkirim. Haruskan anda memilih sebuah akhir baris? #: Base.java:536 -!You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?= +You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Anda telah mencapai batas untuk penamaan sketsa baru\nuntuk hari ini. Bagaimana kalau jalan-jalan saja? #: Base.java:2638 -!ZIP\ files\ or\ folders= +ZIP\ files\ or\ folders=Berkas ZIP atau folder #: Base.java:2661 -!Zip\ doesn't\ contain\ a\ library= +Zip\ doesn't\ contain\ a\ library=Zip tidak berisi sebuah pustaka #: Sketch.java:364 #, java-format -!".{0}"\ is\ not\ a\ valid\ extension.= +".{0}"\ is\ not\ a\ valid\ extension.=".{0}" bukan ekstensi sah #: SketchCode.java:258 #, java-format @@ -1223,77 +1358,103 @@ You\ forgot\ your\ sketchbook=Anda lupa sketchbook Anda !baud= #: Preferences.java:389 -!compilation\ = +compilation\ =kompilasi #: ../../../processing/app/NetworkMonitor.java:111 -!connected\!= +connected\!=tersambung\! #: Sketch.java:540 -!createNewFile()\ returned\ false= +createNewFile()\ returned\ false=buatBerkasBaru() mengembalikan salah #: ../../../processing/app/EditorStatus.java:469 -!enabled\ in\ File\ >\ Preferences.= +enabled\ in\ File\ >\ Preferences.=diaktifkan pada Berkas > Preferensi. #: Base.java:2090 -!environment= +environment=lingkungan #: Editor.java:1108 -!http\://arduino.cc/= - -#: ../../../processing/app/debug/Compiler.java:49 -!http\://github.com/arduino/Arduino/issues= +http\://arduino.cc/=http\://arduino.cc/ #: UpdateCheck.java:118 -!http\://www.arduino.cc/en/Main/Software= +http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software #: UpdateCheck.java:53 -!http\://www.arduino.cc/latest.txt= +http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt #: Base.java:2075 -!http\://www.arduino.cc/playground/Learning/Linux= +http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux #: Preferences.java:625 #, java-format -!ignoring\ invalid\ font\ size\ {0}= +ignoring\ invalid\ font\ size\ {0}=mengabaikan ukuran fonta tidak sah {0} #: Base.java:2080 -!index.html= +index.html=index.html #: Editor.java:936 Editor.java:943 -!name\ is\ null= +name\ is\ null=nama adalah tidak ada #: Base.java:2090 -!platforms.html= - -#: Serial.java:451 -#, java-format -!readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}= - -#: Sketch.java:647 -!removeCode\:\ internal\ error..\ could\ not\ find\ code= +platforms.html=platforms.html #: Editor.java:932 -!serialMenu\ is\ null= +serialMenu\ is\ null=serialMenu adalah tidak ada #: debug/Uploader.java:195 #, java-format -!the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected= +the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=port serial yang terpilih {0} tidak ada atau papan anda tidak tersambung + +#: ../../../processing/app/helpers/CommandlineParser.java:158 +#, java-format +!unknown\ option\:\ {0}= #: Preferences.java:391 -!upload= +upload=unggah #: Editor.java:380 #, java-format -!{0}\ files\ added\ to\ the\ sketch.= +{0}\ files\ added\ to\ the\ sketch.={0} berkas ditambahkan ke dalam sketsa. #: debug/Compiler.java:365 #, java-format -!{0}\ returned\ {1}= +{0}\ returned\ {1}={0} mengembalikan {1} #: Editor.java:2213 #, java-format -!{0}\ |\ Arduino\ {1}= +{0}\ |\ Arduino\ {1}={0} | Arduino {1} #: Editor.java:1874 #, java-format -!{0}.html= +{0}.html={0}.html + +#: ../../../processing/app/helpers/CommandlineParser.java:226 +#, java-format +!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= + +#: ../../../processing/app/helpers/CommandlineParser.java:183 +#, java-format +!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= + +#: ../../../processing/app/helpers/CommandlineParser.java:216 +#, java-format +!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= + +#: ../../../processing/app/helpers/CommandlineParser.java:214 +#, java-format +!{0}\:\ Invalid\ option\ for\ board\ "{1}"= + +#: ../../../processing/app/helpers/CommandlineParser.java:209 +#, java-format +!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= + +#: ../../../processing/app/helpers/CommandlineParser.java:193 +#, java-format +!{0}\:\ Unknown\ architecture= + +#: ../../../processing/app/helpers/CommandlineParser.java:198 +#, java-format +!{0}\:\ Unknown\ board= + +#: ../../../processing/app/helpers/CommandlineParser.java:188 +#, java-format +!{0}\:\ Unknown\ package= diff --git a/arduino-core/src/processing/app/i18n/Resources_it_IT.po b/arduino-core/src/processing/app/i18n/Resources_it_IT.po index 393b586b0..02400ed4b 100644 --- a/arduino-core/src/processing/app/i18n/Resources_it_IT.po +++ b/arduino-core/src/processing/app/i18n/Resources_it_IT.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-01-14 17:15+0000\n" +"PO-Revision-Date: 2015-01-16 17:55+0000\n" "Last-Translator: Cristian Maglie \n" "Language-Team: Italian (Italy) (http://www.transifex.com/projects/p/arduino-ide-15/language/it_IT/)\n" "MIME-Version: 1.0\n" @@ -36,6 +36,12 @@ msgstr "'Mouse' supportata solo su Arduino Leonardo" msgid "(edit only when Arduino is not running)" msgstr "(modificabile solo quando Arduino non è in esecuzione)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "--verbose, --verbose-upload e --verbose-build possono essere usati solo insieme a --verify o --upload" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -94,6 +100,10 @@ msgstr "Aggiungi file..." msgid "Add Library..." msgstr "Aggiungi libreria..." +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "Albanese" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -101,6 +111,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "Si è verificato un errore mentre era in corso la correzione della codifica del file.\nNon cercare di salvare questo sketch in quanto potrebbe sovrascrivere\nla versione precedente. Usa \"Apri\" per riaprire lo sketch e riprova\n" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "Errore durante il caricamento dello sketch" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "Errore durante la verifica dello sketch" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "Errore durante il controllo/verifica dello sketch" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -145,7 +169,7 @@ msgstr "Schede Arduino AVR" msgid "" "Arduino can only open its own sketches\n" "and other files ending in .ino or .pde" -msgstr "" +msgstr "Arduino può aprire solo i proprio sketch\no altri file con estensione .ino o .pde" #: Base.java:1682 msgid "" @@ -179,6 +203,30 @@ msgstr "Sei sicuro di voler eliminare \"{0}\"?" msgid "Are you sure you want to delete this sketch?" msgstr "Sei sicuro di voler eliminare questo sketch?" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "Argomento obbligatorio per --board" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "Argomento obbligatorio per --curdir" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "Parametro mancante per --get-pref" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "Argomento obbligatorio per --port" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "Argomento obbligatorio per --pref" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "Argomento obbligatorio per --preferences-file" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "Armeno" @@ -187,6 +235,10 @@ msgstr "Armeno" msgid "Asturian" msgstr "Asturiano" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "Autorizzazione richiesta" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "Formattazione automatica" @@ -228,6 +280,14 @@ msgstr "Errore alla linea: {0}" msgid "Bad file selected" msgstr "Selezionato file errato" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "Il file principale dello sketch o la struttura della cartella è errata" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "Basco" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "Bielorusso" @@ -264,6 +324,10 @@ msgstr "Sfoglia" msgid "Build folder disappeared or could not be written" msgstr "La cartella di generazione è scomparsa o non può essere scritta" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "Opzioni di compilazione cambiate, ricompilo tutto" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Bulgaro" @@ -280,9 +344,15 @@ msgstr "Scrivi il bootloader" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "Sto scrivendo il bootloader sulla scheda di I/O (potrebbe richiedere qualche minuto)..." -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" -msgstr "Impossibile aprire lo sketch!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "Si può usare solo uno tra: {0}" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" +msgstr "Non trovo lo sketch nel percorso specificato" #: ../../../processing/app/Preferences.java:92 msgid "Canadian French" @@ -297,6 +367,10 @@ msgstr "Annulla" msgid "Cannot Rename" msgstr "Impossibile cambiare nome" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "Non posso specificare nessun file dello sketch" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "Ritorno carrello (CR)" @@ -341,11 +415,6 @@ msgstr "Chiudi" msgid "Comment/Uncomment" msgstr "Commenta / togli commento" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "Errore del compilatore, per favore invia questo codice a {0}" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "Sto compilando lo sketch..." @@ -445,7 +514,7 @@ msgstr "Impossibile salvare nuovamente lo sketch" msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "" +msgstr "Non riesco a leggere il tema con le impostazioni dei colori.\nPotrebbe essere necessario reinstallare Arduino." #: Preferences.java:219 msgid "" @@ -453,10 +522,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Impossibile leggere le impostazioni predefinite.\nDevi reinstallare Arduino" -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "Impossibile leggere le impostazioni da {0}" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "Impossibile leggere il file con le preferenze di compilazione, ricompilo tutto" #: Base.java:2482 #, java-format @@ -485,6 +553,10 @@ msgstr "Impossibile cambiare nome allo sketch (2)" msgid "Could not replace {0}" msgstr "Impossibile sostituire {0}" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "Non riesco a scrivere il file con le preferenze di compilazione" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Impossibile archiviare lo sketch" @@ -554,6 +626,11 @@ msgstr "Salvataggio completato" msgid "Done burning bootloader." msgstr "Scrittura bootloader completata" +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "Compilazione completata" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "Compilazione completata" @@ -562,6 +639,10 @@ msgstr "Compilazione completata" msgid "Done printing." msgstr "Stampa completata" +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "Caricamento completato" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "Caricamento completato" @@ -665,6 +746,10 @@ msgstr "Errore durante la scrittura del bootloader" msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "Errore durante la scrittura del bootloader: manca il parametro di configurazione '{0}'" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "Errore durante la compilazione: manca il parametro di configurazione '{0}'" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -674,11 +759,25 @@ msgstr "Errore durante il caricamento del codice {0}" msgid "Error while printing." msgstr "Errore durante la stampa" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "Errore durante il caricamento" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "Errore durante il caricamento: manca il parametro '{0}' nella configurazione" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "Errore durante la verifica" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "Errore durante il caricamento/verifica" + #: Preferences.java:93 msgid "Estonian" msgstr "Estone" @@ -699,6 +798,11 @@ msgstr "Esportazione annullata, le modifiche devono essere prima salvate" msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "Impossibile aprire lo sketch: \"{0}\"" + #: Editor.java:491 msgid "File" msgstr "File" @@ -746,9 +850,10 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "Per informazioni sull'installazione delle librerie guarda http://arduino.cc/en/Guide/Libraries\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " -msgstr "Forzo il reset della porta tramite una apertura/chiusura a 1200bps" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" +msgstr "Forzo il reset aprendo e chiudendo a 1200bps la porta {0}" #: Preferences.java:95 msgid "French" @@ -896,9 +1001,9 @@ msgstr "Libreria aggiunta all'elenco delle librerie. Controlla il menu \"Importa msgid "Lithuaninan" msgstr "Lituano" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" -msgstr "Poca memoria disponibile, potrebbero verificarsi problemi di stabilità" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." +msgstr "Poca memoria disponibile, potrebbero presentarsi problemi di stabilità." #: Preferences.java:107 msgid "Marathi" @@ -912,6 +1017,10 @@ msgstr "Messaggio" msgid "Missing the */ from the end of a /* comment */" msgstr "Manca il */ finale di un /* commento */" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "Modalità non supportata" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "Altre impostazioni possono essere modificate direttamente nel file" @@ -920,6 +1029,18 @@ msgstr "Altre impostazioni possono essere modificate direttamente nel file" msgid "Moving" msgstr "Sto spostando" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "File multipli non supportati" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "Devi indicare un unico sketch" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "N'Ko" + #: Sketch.java:282 msgid "Name for new file:" msgstr "Nome del nuovo file:" @@ -956,6 +1077,10 @@ msgstr "Scheda successiva" msgid "No" msgstr "No" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "Non trovo dati per le autorizzazioni" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "Nessuna scheda selezionata; per favore seleziona una scheda dal menu \"Strumenti > Tipo di Arduino\"" @@ -964,6 +1089,10 @@ msgstr "Nessuna scheda selezionata; per favore seleziona una scheda dal menu \"S msgid "No changes necessary for Auto Format." msgstr "Nessun cambiamento effettuato con la formattazione automatica" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "Nessun parametro da linea di comando trovato" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "Nessun file è stato aggiunto allo sketch" @@ -976,6 +1105,10 @@ msgstr "Nessun escutore disponibile" msgid "No line ending" msgstr "Nessun fine riga" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "Nessun parametro" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "No davvero, è ora di prendere un po' di aria fresca" @@ -985,6 +1118,19 @@ msgstr "No davvero, è ora di prendere un po' di aria fresca" msgid "No reference available for \"{0}\"" msgstr "Nessuna voce disponibile per \"{0}\" nella guida" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "Nessuno sketch" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "Nessuno sketchbook" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "Non sono stati trovati file con codice valido" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "Nessun core configurato valido trovato! Esco..." @@ -1021,6 +1167,10 @@ msgstr "OK" msgid "One file added to the sketch." msgstr "Un file aggiunto allo sketch" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "Solo --verify, --upload o --get-pref sono supportati" + #: EditorToolbar.java:41 msgid "Open" msgstr "Apri" @@ -1057,14 +1207,27 @@ msgstr "Incolla" msgid "Persian" msgstr "Persiano" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "Persiano (Iran)" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "Importa la libreria SPI tramite menu \"Sketch > Importa libreria\"" +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "Devi importare la libreria Wire usando il menu Sketch > Importa Libreria." + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "Per favore installa JDK 1.5 o successivo" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "Selezionare un programmatore dal menù Strumenti->Programmatore" + #: Preferences.java:110 msgid "Polish" msgstr "Polacco" @@ -1227,10 +1390,18 @@ msgstr "Salvare le modifiche a \"{0}\"?" msgid "Save sketch folder as..." msgstr "Salva la cartella dello sketch come..." +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "Salva durante verifica o caricamento" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "Sto salvando..." +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "Cerca in tutti i tabs dello Sketch" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "Seleziona (o crea) la cartella per gli sketch..." @@ -1263,20 +1434,6 @@ msgstr "Invia" msgid "Serial Monitor" msgstr "Monitor seriale" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "La porta seriale \"{0}\" è già in uso. Prova ad uscire da tutti i programmi che potrebbero usarla" - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "La porta seriale \"{0}\" è già in uso. Prova ad uscire da tutti i programmi che potrebbero usarla" - #: Serial.java:194 #, java-format msgid "" @@ -1356,6 +1513,10 @@ msgstr "La cartella degli sketch è scomparsa" msgid "Sketchbook location:" msgstr "Percorso della cartella degli sketch:" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "Percorso dello sketchbook non definito" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "Sketch (*.ino, *.pde)" @@ -1406,6 +1567,10 @@ msgstr "Tamil" msgid "The 'BYTE' keyword is no longer supported." msgstr "La parola chiave 'BYTE' non è più supportata" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "L'opzione --upload supporta solo un file alla volta" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "La classe Client è stata rinominata EthernetClient" @@ -1473,12 +1638,12 @@ msgid "" "but anything besides the code will be lost." msgstr "La cartella dello sketch è sparita.\nProverò a salvare nuovamente nella stessa posizione,\nma qualsiasi cosa in aggiunta al codice andrà persa." -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." -msgstr "Il nome dello sketch è stato modificato.\nI nomi degli sketch possono contenere solo lettere e numeri\n(ASCII senza spazi), non possono iniziare con un numero e devono essere più corti di 64 caratteri" +"They should also be less than 64 characters long." +msgstr "Il nome dello sketch deve essere modificato. Il nome dello sketch può\ncontenere solo caratteri ASCII e numeri (ma non può iniziare con un numero).\nInoltre la sua lunghezza deve essere inferiore a 64 caratteri." #: Base.java:259 msgid "" @@ -1489,6 +1654,12 @@ msgid "" "himself in the third person." msgstr "La cartella degli sketch non esiste più.\nArduino tornerà ad usare la posizione predefinita per la cartella\ne creerà una nuova cartella degli sketch se necessario.\nA quel punto Arduino smetterà di parlare di sé stesso\nin terza persona" +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "Nel platform.txt di terze parti non è definito il compiler.path. Si prega di segnalare questo problema al suo sviluppatore." + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1631,6 +1802,13 @@ msgstr "Vietnamita" msgid "Visit Arduino.cc" msgstr "Visita Arduino.cc" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "ATTENZIONE: la libreria {0} dichiara di funzionare sulle architetture {1} e potrebbe essere incompatibile con la tua attuale scheda che utilizza l'architettura {2}." + #: Base.java:2128 msgid "Warning" msgstr "Attenzione" @@ -1718,7 +1896,7 @@ msgid "" "older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " "to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" " bad characters to get rid of this warning." -msgstr "" +msgstr "\"{0}\" contiene caratteri non riconosciuti. Se questo codice è stato creato con una vecchia versione di Arduino potresti dover usare il comando \"Strumenti->Correggi codifica e ricarica\" per aggiornare lo sketch. In caso contrario, per eliminare questo avviso, devi cancellare i caratteri non supportati dallo sketch." #: debug/Compiler.java:409 msgid "" @@ -1799,10 +1977,6 @@ msgstr "ambiente di sviluppo" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "http://github.com/arduino/Arduino/issues" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1832,17 +2006,6 @@ msgstr "name è nullo" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "Il buffer readBytesUntil() è troppo piccolo per i {0} byte fino al\ncarattere {1} incluso" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "removeCode: errore interno... impossibile trovare il codice" - #: Editor.java:932 msgid "serialMenu is null" msgstr "serialMenu è nullo" @@ -1853,6 +2016,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "La porta seriale selezionata {0} non esiste o la scheda non è connessa" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "opzione sconosciuta: {0}" + #: Preferences.java:391 msgid "upload" msgstr "carica" @@ -1876,3 +2044,45 @@ msgstr "{0} | Arduino {1}" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "{0}: Argomento non valido per --pref, dovrebbe essere nel formato \"pref=valore\"" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "{0}: Nome board non valido, dovrebbe essere nel formato \"package:arch:board\" oppure \"package:arch:board:opzioni\"" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "{0}: Opzione non valida per l'opzione \"{1}\" della board \"{2}\"" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "{0}: Opzione non valida per la scheda \"{1}\"" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "{0}: Opzione non valida, dovrebbe essere nel formato \"nome=valore\"" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "{0}: Architettura sconosciuta" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "{0}: Scheda sconoscita" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "{0}: Package sconosciuto" diff --git a/arduino-core/src/processing/app/i18n/Resources_it_IT.properties b/arduino-core/src/processing/app/i18n/Resources_it_IT.properties index ca1469f51..481bcf49b 100644 --- a/arduino-core/src/processing/app/i18n/Resources_it_IT.properties +++ b/arduino-core/src/processing/app/i18n/Resources_it_IT.properties @@ -6,7 +6,7 @@ # Deiv Xile , 2012. # , 2012. # , 2012. -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:15+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Italian (Italy) (http\://www.transifex.com/projects/p/arduino-ide-15/language/it_IT/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: it_IT\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-16 17\:55+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Italian (Italy) (http\://www.transifex.com/projects/p/arduino-ide-15/language/it_IT/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: it_IT\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(richiede il riavvio di Arduino) @@ -20,6 +20,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(modificabile solo quando Arduino non \u00e8 in esecuzione) +#: ../../../processing/app/Base.java:468 +--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload=--verbose, --verbose-upload e --verbose-build possono essere usati solo insieme a --verify o --upload + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -56,9 +59,23 @@ Add\ File...=Aggiungi file... #: Base.java:963 Add\ Library...=Aggiungi libreria... +#: ../../../processing/app/Preferences.java:96 +Albanian=Albanese + #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Si \u00e8 verificato un errore mentre era in corso la correzione della codifica del file.\nNon cercare di salvare questo sketch in quanto potrebbe sovrascrivere\nla versione precedente. Usa "Apri" per riaprire lo sketch e riprova\n +#: ../../../processing/app/BaseNoGui.java:528 +An\ error\ occurred\ while\ uploading\ the\ sketch=Errore durante il caricamento dello sketch + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +An\ error\ occurred\ while\ verifying\ the\ sketch=Errore durante la verifica dello sketch + +#: ../../../processing/app/BaseNoGui.java:521 +An\ error\ occurred\ while\ verifying/uploading\ the\ sketch=Errore durante il controllo/verifica dello sketch + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Errore sconosciuto durante il caricamento\ndi codice specifico per la tua macchina @@ -87,7 +104,7 @@ Arduino\ ARM\ (32-bits)\ Boards=Schede Arduino ARM (32-bits) Arduino\ AVR\ Boards=Schede Arduino AVR #: Editor.java:2137 -!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= +Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Arduino pu\u00f2 aprire solo i proprio sketch\no altri file con estensione .ino o .pde #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino non pu\u00f2 avviarsi perch\u00e8 non riesce a\ncreare la cartella dove salvare le impostazioni @@ -108,12 +125,33 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Sei sicuro di voler eliminare "{0} #: Sketch.java:587 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Sei sicuro di voler eliminare questo sketch? +#: ../../../processing/app/Base.java:356 +Argument\ required\ for\ --board=Argomento obbligatorio per --board + +#: ../../../processing/app/Base.java:370 +Argument\ required\ for\ --curdir=Argomento obbligatorio per --curdir + +#: ../../../processing/app/Base.java:385 +Argument\ required\ for\ --get-pref=Parametro mancante per --get-pref + +#: ../../../processing/app/Base.java:363 +Argument\ required\ for\ --port=Argomento obbligatorio per --port + +#: ../../../processing/app/Base.java:377 +Argument\ required\ for\ --pref=Argomento obbligatorio per --pref + +#: ../../../processing/app/Base.java:384 +Argument\ required\ for\ --preferences-file=Argomento obbligatorio per --preferences-file + #: ../../../processing/app/Preferences.java:137 Armenian=Armeno #: ../../../processing/app/Preferences.java:138 Asturian=Asturiano +#: ../../../processing/app/debug/Compiler.java:145 +Authorization\ required=Autorizzazione richiesta + #: tools/AutoFormat.java:91 Auto\ Format=Formattazione automatica @@ -145,6 +183,12 @@ Bad\ error\ line\:\ {0}=Errore alla linea\: {0} #: Editor.java:2136 Bad\ file\ selected=Selezionato file errato +#: ../../../processing/app/debug/Compiler.java:89 +Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure=Il file principale dello sketch o la struttura della cartella \u00e8 errata + +#: ../../../processing/app/Preferences.java:149 +Basque=Basco + #: ../../../processing/app/Preferences.java:139 Belarusian=Bielorusso @@ -171,6 +215,9 @@ Browse=Sfoglia #: Sketch.java:1392 Sketch.java:1423 Build\ folder\ disappeared\ or\ could\ not\ be\ written=La cartella di generazione \u00e8 scomparsa o non pu\u00f2 essere scritta +#: ../../../processing/app/Sketch.java:1530 +Build\ options\ changed,\ rebuilding\ all=Opzioni di compilazione cambiate, ricompilo tutto + #: ../../../processing/app/Preferences.java:80 Bulgarian=Bulgaro @@ -183,8 +230,13 @@ Burn\ Bootloader=Scrivi il bootloader #: Editor.java:2504 Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Sto scrivendo il bootloader sulla scheda di I/O (potrebbe richiedere qualche minuto)... -#: ../../../processing/app/Base.java:368 -Can't\ open\ source\ sketch\!=Impossibile aprire lo sketch\! +#: ../../../processing/app/Base.java:379 +#, java-format +Can\ only\ pass\ one\ of\:\ {0}=Si pu\u00f2 usare solo uno tra\: {0} + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +Can't\ find\ the\ sketch\ in\ the\ specified\ path=Non trovo lo sketch nel percorso specificato #: ../../../processing/app/Preferences.java:92 Canadian\ French=Francese canadese @@ -196,6 +248,9 @@ Cancel=Annulla #: Sketch.java:455 Cannot\ Rename=Impossibile cambiare nome +#: ../../../processing/app/Base.java:465 +Cannot\ specify\ any\ sketch\ files=Non posso specificare nessun file dello sketch + #: SerialMonitor.java:112 Carriage\ return=Ritorno carrello (CR) @@ -229,10 +284,6 @@ Close=Chiudi #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=Commenta / togli commento -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Errore del compilatore, per favore invia questo codice a {0} - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=Sto compilando lo sketch... @@ -303,14 +354,13 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=Impossibile salvare nuovamente lo sketch #: Theme.java:52 -!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= +Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Non riesco a leggere il tema con le impostazioni dei colori.\nPotrebbe essere necessario reinstallare Arduino. #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Impossibile leggere le impostazioni predefinite.\nDevi reinstallare Arduino -#: Preferences.java:258 -#, java-format -Could\ not\ read\ preferences\ from\ {0}=Impossibile leggere le impostazioni da {0} +#: ../../../processing/app/Sketch.java:1525 +Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=Impossibile leggere il file con le preferenze di compilazione, ricompilo tutto #: Base.java:2482 #, java-format @@ -333,6 +383,9 @@ Could\ not\ rename\ the\ sketch.\ (2)=Impossibile cambiare nome allo sketch (2) #, java-format Could\ not\ replace\ {0}=Impossibile sostituire {0} +#: ../../../processing/app/Sketch.java:1579 +Could\ not\ write\ build\ preferences\ file=Non riesco a scrivere il file con le preferenze di compilazione + #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Impossibile archiviare lo sketch @@ -381,12 +434,19 @@ Done\ Saving.=Salvataggio completato #: Editor.java:2510 Done\ burning\ bootloader.=Scrittura bootloader completata +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +Done\ compiling=Compilazione completata + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=Compilazione completata #: Editor.java:2564 Done\ printing.=Stampa completata +#: ../../../processing/app/BaseNoGui.java:514 +Done\ uploading=Caricamento completato + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=Caricamento completato @@ -465,6 +525,9 @@ Error\ while\ burning\ bootloader.=Errore durante la scrittura del bootloader #: ../../../processing/app/Editor.java:2555 Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=Errore durante la scrittura del bootloader\: manca il parametro di configurazione '{0}' +#: ../../../../../app/src/processing/app/Editor.java:1940 +Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter=Errore durante la compilazione\: manca il parametro di configurazione '{0}' + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=Errore durante il caricamento del codice {0} @@ -472,10 +535,21 @@ Error\ while\ loading\ code\ {0}=Errore durante il caricamento del codice {0} #: Editor.java:2567 Error\ while\ printing.=Errore durante la stampa +#: ../../../processing/app/BaseNoGui.java:528 +Error\ while\ uploading=Errore durante il caricamento + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=Errore durante il caricamento\: manca il parametro '{0}' nella configurazione +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +Error\ while\ verifying=Errore durante la verifica + +#: ../../../processing/app/BaseNoGui.java:521 +Error\ while\ verifying/uploading=Errore durante il caricamento/verifica + #: Preferences.java:93 Estonian=Estone @@ -491,6 +565,10 @@ Export\ canceled,\ changes\ must\ first\ be\ saved.=Esportazione annullata, le m #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +Failed\ to\ open\ sketch\:\ "{0}"=Impossibile aprire lo sketch\: "{0}" + #: Editor.java:491 File=File @@ -525,8 +603,9 @@ Fix\ Encoding\ &\ Reload=Correggi codifica e ricarica #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=Per informazioni sull'installazione delle librerie guarda http\://arduino.cc/en/Guide/Libraries\n -#: debug/BasicUploader.java:80 -Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =Forzo il reset della porta tramite una apertura/chiusura a 1200bps +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}=Forzo il reset aprendo e chiudendo a 1200bps la porta {0} #: Preferences.java:95 French=Francese @@ -630,8 +709,8 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Libreria ag #: Preferences.java:106 Lithuaninan=Lituano -#: ../../../processing/app/Sketch.java:1660 -Low\ memory\ available,\ stability\ problems\ may\ occur=Poca memoria disponibile, potrebbero verificarsi problemi di stabilit\u00e0 +#: ../../../processing/app/Sketch.java:1684 +Low\ memory\ available,\ stability\ problems\ may\ occur.=Poca memoria disponibile, potrebbero presentarsi problemi di stabilit\u00e0. #: Preferences.java:107 Marathi=Marathi @@ -642,12 +721,24 @@ Message=Messaggio #: ../../../processing/app/preproc/PdePreprocessor.java:412 Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Manca il */ finale di un /* commento */ +#: ../../../processing/app/BaseNoGui.java:455 +Mode\ not\ supported=Modalit\u00e0 non supportata + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Altre impostazioni possono essere modificate direttamente nel file #: Editor.java:2156 Moving=Sto spostando +#: ../../../processing/app/BaseNoGui.java:484 +Multiple\ files\ not\ supported=File multipli non supportati + +#: ../../../processing/app/Base.java:395 +Must\ specify\ exactly\ one\ sketch\ file=Devi indicare un unico sketch + +#: ../../../processing/app/Preferences.java:158 +N'Ko=N'Ko + #: Sketch.java:282 Name\ for\ new\ file\:=Nome del nuovo file\: @@ -675,12 +766,18 @@ Next\ Tab=Scheda successiva #: Preferences.java:78 UpdateCheck.java:108 No=No +#: ../../../processing/app/debug/Compiler.java:146 +No\ athorization\ data\ found=Non trovo dati per le autorizzazioni + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Nessuna scheda selezionata; per favore seleziona una scheda dal menu "Strumenti > Tipo di Arduino" #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Nessun cambiamento effettuato con la formattazione automatica +#: ../../../processing/app/BaseNoGui.java:665 +No\ command\ line\ parameters\ found=Nessun parametro da linea di comando trovato + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=Nessun file \u00e8 stato aggiunto allo sketch @@ -690,6 +787,9 @@ No\ launcher\ available=Nessun escutore disponibile #: SerialMonitor.java:112 No\ line\ ending=Nessun fine riga +#: ../../../processing/app/BaseNoGui.java:665 +No\ parameters=Nessun parametro + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=No davvero, \u00e8 ora di prendere un po' di aria fresca @@ -697,6 +797,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=No davvero, \u00e8 ora di pr #, java-format No\ reference\ available\ for\ "{0}"=Nessuna voce disponibile per "{0}" nella guida +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +No\ sketch=Nessuno sketch + +#: ../../../processing/app/BaseNoGui.java:428 +No\ sketchbook=Nessuno sketchbook + +#: ../../../processing/app/Sketch.java:204 +No\ valid\ code\ files\ found=Non sono stati trovati file con codice valido + #: ../../../processing/app/Base.java:309 No\ valid\ configured\ cores\ found\!\ Exiting...=Nessun core configurato valido trovato\! Esco... @@ -723,6 +833,9 @@ OK=OK #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=Un file aggiunto allo sketch +#: ../../../processing/app/BaseNoGui.java:455 +Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported=Solo --verify, --upload o --get-pref sono supportati + #: EditorToolbar.java:41 Open=Apri @@ -750,12 +863,22 @@ Paste=Incolla #: Preferences.java:109 Persian=Persiano +#: ../../../processing/app/Preferences.java:161 +Persian\ (Iran)=Persiano (Iran) + #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Importa la libreria SPI tramite menu "Sketch > Importa libreria" +#: ../../../processing/app/debug/Compiler.java:529 +Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Devi importare la libreria Wire usando il menu Sketch > Importa Libreria. + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=Per favore installa JDK 1.5 o successivo +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu=Selezionare un programmatore dal men\u00f9 Strumenti->Programmatore + #: Preferences.java:110 Polish=Polacco @@ -877,9 +1000,15 @@ Save\ changes\ to\ "{0}"?\ \ =Salvare le modifiche a "{0}"? #: Sketch.java:825 Save\ sketch\ folder\ as...=Salva la cartella dello sketch come... +#: ../../../../../app/src/processing/app/Preferences.java:425 +Save\ when\ verifying\ or\ uploading=Salva durante verifica o caricamento + #: Editor.java:2270 Editor.java:2308 Saving...=Sto salvando... +#: ../../../processing/app/FindReplace.java:131 +Search\ all\ Sketch\ Tabs=Cerca in tutti i tabs dello Sketch + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=Seleziona (o crea) la cartella per gli sketch... @@ -904,14 +1033,6 @@ Send=Invia #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=Monitor seriale -#: Serial.java:174 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=La porta seriale "{0}" \u00e8 gi\u00e0 in uso. Prova ad uscire da tutti i programmi che potrebbero usarla - -#: Serial.java:121 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=La porta seriale "{0}" \u00e8 gi\u00e0 in uso. Prova ad uscire da tutti i programmi che potrebbero usarla - #: Serial.java:194 #, java-format Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Porta seriale "{0}" non trovata. Hai selezionato quella giusta dal menu "Strumenti > Porta seriale"? @@ -966,6 +1087,9 @@ Sketchbook\ folder\ disappeared=La cartella degli sketch \u00e8 scomparsa #: Preferences.java:315 Sketchbook\ location\:=Percorso della cartella degli sketch\: +#: ../../../processing/app/BaseNoGui.java:428 +Sketchbook\ path\ not\ defined=Percorso dello sketchbook non definito + #: ../../../processing/app/Base.java:785 Sketches\ (*.ino,\ *.pde)=Sketch (*.ino, *.pde) @@ -1000,6 +1124,9 @@ Tamil=Tamil #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=La parola chiave 'BYTE' non \u00e8 pi\u00f9 supportata +#: ../../../processing/app/BaseNoGui.java:484 +The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time=L'opzione --upload supporta solo un file alla volta + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=La classe Client \u00e8 stata rinominata EthernetClient @@ -1036,12 +1163,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=La cartella dello sketch \u00e8 sparita.\nProver\u00f2 a salvare nuovamente nella stessa posizione,\nma qualsiasi cosa in aggiunta al codice andr\u00e0 persa. -#: Sketch.java:2018 -The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=Il nome dello sketch \u00e8 stato modificato.\nI nomi degli sketch possono contenere solo lettere e numeri\n(ASCII senza spazi), non possono iniziare con un numero e devono essere pi\u00f9 corti di 64 caratteri +#: ../../../processing/app/Sketch.java:2028 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.=Il nome dello sketch deve essere modificato. Il nome dello sketch pu\u00f2\ncontenere solo caratteri ASCII e numeri (ma non pu\u00f2 iniziare con un numero).\nInoltre la sua lunghezza deve essere inferiore a 64 caratteri. #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=La cartella degli sketch non esiste pi\u00f9.\nArduino torner\u00e0 ad usare la posizione predefinita per la cartella\ne creer\u00e0 una nuova cartella degli sketch se necessario.\nA quel punto Arduino smetter\u00e0 di parlare di s\u00e9 stesso\nin terza persona +#: ../../../processing/app/debug/Compiler.java:201 +Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.=Nel platform.txt di terze parti non \u00e8 definito il compiler.path. Si prega di segnalare questo problema al suo sviluppatore. + #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Questo file \u00e8 gi\u00e0 stato copiato nella posizione\ndove stai cercando di aggiungerlo.\nNon far\u00f2 un bel nulla @@ -1145,6 +1275,10 @@ Vietnamese=Vietnamita #: Editor.java:1105 Visit\ Arduino.cc=Visita Arduino.cc +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=ATTENZIONE\: la libreria {0} dichiara di funzionare sulle architetture {1} e potrebbe essere incompatibile con la tua attuale scheda che utilizza l'architettura {2}. + #: Base.java:2128 Warning=Attenzione @@ -1199,7 +1333,7 @@ Zip\ doesn't\ contain\ a\ library=Il file ZIP non contiene una libreria #: SketchCode.java:258 #, java-format -!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= +"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" contiene caratteri non riconosciuti. Se questo codice \u00e8 stato creato con una vecchia versione di Arduino potresti dover usare il comando "Strumenti->Correggi codifica e ricarica" per aggiornare lo sketch. In caso contrario, per eliminare questo avviso, devi cancellare i caratteri non supportati dallo sketch. #: debug/Compiler.java:409 \nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nA partire da Arduino 0019, la libreria Ethernet dipende dalla libreria SPI.\nSembra che tu stia usando quella o un'altra libreria che dipende\ndalla libreria SPI\n @@ -1243,9 +1377,6 @@ environment=ambiente di sviluppo #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1268,13 +1399,6 @@ name\ is\ null=name \u00e8 nullo #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=Il buffer readBytesUntil() \u00e8 troppo piccolo per i {0} byte fino al\ncarattere {1} incluso - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: errore interno... impossibile trovare il codice - #: Editor.java:932 serialMenu\ is\ null=serialMenu \u00e8 nullo @@ -1282,6 +1406,10 @@ serialMenu\ is\ null=serialMenu \u00e8 nullo #, java-format the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=La porta seriale selezionata {0} non esiste o la scheda non \u00e8 connessa +#: ../../../processing/app/Base.java:389 +#, java-format +unknown\ option\:\ {0}=opzione sconosciuta\: {0} + #: Preferences.java:391 upload=carica @@ -1300,3 +1428,35 @@ upload=carica #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"={0}\: Argomento non valido per --pref, dovrebbe essere nel formato "pref\=valore" + +#: ../../../processing/app/Base.java:476 +#, java-format +{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"={0}\: Nome board non valido, dovrebbe essere nel formato "package\:arch\:board" oppure "package\:arch\:board\:opzioni" + +#: ../../../processing/app/Base.java:509 +#, java-format +{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"={0}\: Opzione non valida per l'opzione "{1}" della board "{2}" + +#: ../../../processing/app/Base.java:507 +#, java-format +{0}\:\ Invalid\ option\ for\ board\ "{1}"={0}\: Opzione non valida per la scheda "{1}" + +#: ../../../processing/app/Base.java:502 +#, java-format +{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"={0}\: Opzione non valida, dovrebbe essere nel formato "nome\=valore" + +#: ../../../processing/app/Base.java:486 +#, java-format +{0}\:\ Unknown\ architecture={0}\: Architettura sconosciuta + +#: ../../../processing/app/Base.java:491 +#, java-format +{0}\:\ Unknown\ board={0}\: Scheda sconoscita + +#: ../../../processing/app/Base.java:481 +#, java-format +{0}\:\ Unknown\ package={0}\: Package sconosciuto diff --git a/arduino-core/src/processing/app/i18n/Resources_iw.po b/arduino-core/src/processing/app/i18n/Resources_iw.po index 9dc5ed83f..4dfcc994d 100644 --- a/arduino-core/src/processing/app/i18n/Resources_iw.po +++ b/arduino-core/src/processing/app/i18n/Resources_iw.po @@ -33,6 +33,12 @@ msgstr "'עכבר' נתמך ב Arduino Leonardo בלבד." msgid "(edit only when Arduino is not running)" msgstr "(ערוך רק כשארדואינו אינו במצב ריצה)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -91,6 +97,10 @@ msgstr "הוסף קובץ..." msgid "Add Library..." msgstr "הוסף ספריה..." +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "אלבנית" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -98,6 +108,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "התרחשה שגאיה בנסיון לתקן את קידוד הקובץ.\nלא לנסות לשמור את הסקיצה היא יכולה לדרוס\nאת הגרסא הישנה. נא להשתמש ב- פתח כדי לפתוח מחדש את הסקיצה ולנסות שוב.\n" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -176,6 +200,30 @@ msgstr "האם אתה בטוח שאתה רוצה למחוק את \"{0}\"?" msgid "Are you sure you want to delete this sketch?" msgstr "האם אתה בטוח שאתה רוצה למחוק את הסקיצה הזו?" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "ארגומנט דרוש עבור --board" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "ארגומנט דרוש עבור --curdir" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "ארגומנט דרוש עבור --port" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "ארגומנט דרוש עבור --pref" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "ארגומנט דרוש עבור --prereferences-files" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "ארמנית" @@ -184,6 +232,10 @@ msgstr "ארמנית" msgid "Asturian" msgstr "אוסטרית" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "עיצוב אוטומטי" @@ -225,6 +277,14 @@ msgstr "שגיאה חמורה בשורה: {0}" msgid "Bad file selected" msgstr "נבחר קובץ לא תקין" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "באסקית" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "בלארוסית" @@ -261,6 +321,10 @@ msgstr "חפש" msgid "Build folder disappeared or could not be written" msgstr "ספריה ה-build נמחקה או שלא ניתן לכתוב לתוכה" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "אפשרויות בנייה השתנו, בונה מחדש" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "בולגרית" @@ -277,9 +341,15 @@ msgstr "צריבת תוכנת הפעלה." msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "צורב תוכנת הפעלה ללוח I\\O (זה יימשך כדקה)..." -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" -msgstr "לא ניתו לפתוח את מקור הסקיצה" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" +msgstr "" #: ../../../processing/app/Preferences.java:92 msgid "Canadian French" @@ -294,6 +364,10 @@ msgstr "בטל" msgid "Cannot Rename" msgstr "אין אפשרות לשנות שם" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "תחילת שורה" @@ -338,11 +412,6 @@ msgstr "סגור" msgid "Comment/Uncomment" msgstr "הערות/הסר הערות" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "שגיאת קומפילציה, נא לשלוח את הקוד ל {0}" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "מבצע קומפילציה לסקיצה..." @@ -450,10 +519,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "ארעה שגיאה בקריאת הגדרות ברירת המחדל.\nאנא התקן מחדש את הארדואינו." -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "לא יכול לקרוא העדפות מ {0}" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "לא מסוגל לקרוא אפשרויות בנייה קודמות, בונה הכול" #: Base.java:2482 #, java-format @@ -482,6 +550,10 @@ msgstr "אין אפשרות לשנות את שם הסקיצה. (2)" msgid "Could not replace {0}" msgstr "לא ניתן להחליף את {0}" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "לא מסוגל לכתוב לקובץ העדפות בנייה" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "לא ניתן להכניס את הסקיצה לארכיון" @@ -551,6 +623,11 @@ msgstr "שמירה בוצעה." msgid "Done burning bootloader." msgstr "צריבת תוכנת הפעלה הסתיימה." +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "קומפילציה הסתיימה." @@ -559,6 +636,10 @@ msgstr "קומפילציה הסתיימה." msgid "Done printing." msgstr "ההדפסה הסתיימה." +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "העלאה הסתיימה." @@ -662,6 +743,10 @@ msgstr "שגיאה אירעה בעת צריבת תוכנת הפעלה." msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "שגיה במהלך צריבת bootloader: פרמטר הגדרות '{0}' חסר" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -671,11 +756,25 @@ msgstr "שגיאה בזמן טעינת הקוד {0}" msgid "Error while printing." msgstr "שגיאה בתהליך ההדפסה." +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "שגיאה במהלך העלאת תכנית: פרמטר הגדרות '{0}' חסר" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "אסטונית" @@ -696,6 +795,11 @@ msgstr "חובה לשמור שינויים לפני, הייצוא בוטל." msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "לא הצליח לפתוח את הסקיצה: \"{0}\"" + #: Editor.java:491 msgid "File" msgstr "קובץ" @@ -743,9 +847,10 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "לפרטים על התקנת ספריות, ראה: http://arduino.cc/en/Guide/Libraries\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " -msgstr "מכריח אתחול משתמש ב 1200 סיביות לשנייה פתיחה/סגירה בפורט" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" +msgstr "" #: Preferences.java:95 msgid "French" @@ -893,9 +998,9 @@ msgstr "הספריה התווספה לרשימת הספריות שלך. בדוק msgid "Lithuaninan" msgstr "ליטאית" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" -msgstr "זכרון זמין נמוך, בעיות יציבות עלולות להופיע." +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." +msgstr "" #: Preferences.java:107 msgid "Marathi" @@ -909,6 +1014,10 @@ msgstr "הודעה" msgid "Missing the */ from the end of a /* comment */" msgstr "חסר סימן /* מסוף /* הערה*/" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "העדפות נוספות ניתנות לעריכה ישירות בתוך הקובץ" @@ -917,6 +1026,18 @@ msgstr "העדפות נוספות ניתנות לעריכה ישירות בתו msgid "Moving" msgstr "מעביר" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "עליך לציין קובץ סקיצה אחד בלבד" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "" + #: Sketch.java:282 msgid "Name for new file:" msgstr "שם קובץ חדש:" @@ -953,6 +1074,10 @@ msgstr "לשונית הבאה" msgid "No" msgstr "לא" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "לא נבחר לוח; בבקשה בחר לוח מתפריט כלים > לוחות." @@ -961,6 +1086,10 @@ msgstr "לא נבחר לוח; בבקשה בחר לוח מתפריט כלים > msgid "No changes necessary for Auto Format." msgstr "אין שינויים שמצריכים עיצוב אוטומטי." +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "לא התווספו קבצים חדשים לסקיצה." @@ -973,6 +1102,10 @@ msgstr "אין תוכנת הפעלה זמינה" msgid "No line ending" msgstr "אין סוף שורה" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "לא, באמת, הגיע הזמן לנשום קצת אוויר נקי." @@ -982,6 +1115,19 @@ msgstr "לא, באמת, הגיע הזמן לנשום קצת אוויר נקי." msgid "No reference available for \"{0}\"" msgstr "אין ייחוס זמין ל \"{0}\"" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "קבצי קוד קבילים לא נמצאו" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "לא נמצאו ליבות תקינות-מוגדרות! יוצא..." @@ -1018,6 +1164,10 @@ msgstr "אשר" msgid "One file added to the sketch." msgstr "קובץ אחד התווסף לסקיצה" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "פתח" @@ -1054,14 +1204,27 @@ msgstr "הדבק" msgid "Persian" msgstr "פרסית" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "פרסית (איראן)" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "אנא ייבא את ספריית ה-SPI מתפריט סקיצה -> ייבא ספריה." +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "" + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "אנא התקן JDK גירסה 1.5 ומעלה" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "פולנית" @@ -1224,10 +1387,18 @@ msgstr "שמור שינויים ל \"{0}\"?" msgid "Save sketch folder as..." msgstr "שמור את תיקיית הסקיצה ב..." +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "שומר..." +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "בחר ספריה לסקיצות (או ייצר חדשה)..." @@ -1260,20 +1431,6 @@ msgstr "שלח" msgid "Serial Monitor" msgstr "מסך סיריאלי" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "פורט סיריאלי \"{0}\" כבר בשימוש. יש לנסות לצאת מתוכנות שככל הנראה משתמשות בו." - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "הפורט הסיריאלי \"{0}\" כבר בשימוש. נסה לצאת מתוכנות שככל הנראה משתמשות בו." - #: Serial.java:194 #, java-format msgid "" @@ -1353,6 +1510,10 @@ msgstr "הספריה של ספר הסקיצות נעלמה" msgid "Sketchbook location:" msgstr "מיקום חוברת הסקיצות:" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "" @@ -1403,6 +1564,10 @@ msgstr "טאמילית" msgid "The 'BYTE' keyword is no longer supported." msgstr "המילה 'BYTE' אינה נתמכת יותר." +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "המחלקה Client שונתה ל EthernetClient." @@ -1470,12 +1635,12 @@ msgid "" "but anything besides the code will be lost." msgstr "תיקיית הסקיצה נעלמה. יבוצע ניסיון לשמור מחדש באותו מיקום, אבל כל הדברים מלבד הקוד יימחקו." -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." -msgstr "חובה לשנות את שם הסקיצה. שמות סקיצות יכולים להכיל\nרק תווי ASCII או אותיות (אבל לא יכולים להתחיל בספרה).\nכמו כן, השמות צריכים להיות קצרים מ-64 תווים." +"They should also be less than 64 characters long." +msgstr "" #: Base.java:259 msgid "" @@ -1486,6 +1651,12 @@ msgid "" "himself in the third person." msgstr "הספריה של ספר הסקיצות לא קיימת יותר.\nהארדואינו ישתמש במיקום ברירת המחדל של ספר הסקיצות ויצור ספריה חדשה לפי הצורך.\nהארדואינו יפסיק לדבר על עצמו בגוף שלישי." +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1628,6 +1799,13 @@ msgstr "וויאטנאמית" msgid "Visit Arduino.cc" msgstr "בקר ב Arduino.cc" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "" + #: Base.java:2128 msgid "Warning" msgstr "אזהרה" @@ -1796,10 +1974,6 @@ msgstr "סביבה" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "http://github.com/arduino/Arduino/issues" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1829,17 +2003,6 @@ msgstr "השם ריק" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "readBytesUntil() byte מחסנית קטנה מידי עד ל {0} סיביות וכוללת את התו {1}" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "removeCode: שגיאה פנימית.. הקוד לא נמצא" - #: Editor.java:932 msgid "serialMenu is null" msgstr "תפריט סיריאלי ריק" @@ -1850,6 +2013,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "הפורט הסיריאלי שנבחר {0} אינו קיים או שהלוח אינו מחובר" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "" + #: Preferences.java:391 msgid "upload" msgstr "העלאה" @@ -1873,3 +2041,45 @@ msgstr "{0} | ארדואינו {1}" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "" diff --git a/arduino-core/src/processing/app/i18n/Resources_iw.properties b/arduino-core/src/processing/app/i18n/Resources_iw.properties index 412e8d80f..eff4ad8d0 100644 --- a/arduino-core/src/processing/app/i18n/Resources_iw.properties +++ b/arduino-core/src/processing/app/i18n/Resources_iw.properties @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2013-11-20 10\:43+0000\nLast-Translator\: cmaglie \nLanguage-Team\: Hebrew (http\://www.transifex.com/projects/p/arduino-ide-15/language/he/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: he\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Hebrew (http\://www.transifex.com/projects/p/arduino-ide-15/language/he/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: he\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(\u05d3\u05d5\u05e8\u05e9 \u05d0\u05ea\u05d7\u05d5\u05dc \u05dc-\u05d0\u05e8\u05d3\u05d5\u05d0\u05d9\u05e0\u05d5) @@ -17,6 +17,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(\u05e2\u05e8\u05d5\u05da \u05e8\u05e7 \u05db\u05e9\u05d0\u05e8\u05d3\u05d5\u05d0\u05d9\u05e0\u05d5 \u05d0\u05d9\u05e0\u05d5 \u05d1\u05de\u05e6\u05d1 \u05e8\u05d9\u05e6\u05d4) +#: ../../../processing/app/helpers/CommandlineParser.java:172 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -53,9 +56,23 @@ Add\ File...=\u05d4\u05d5\u05e1\u05e3 \u05e7\u05d5\u05d1\u05e5... #: Base.java:963 Add\ Library...=\u05d4\u05d5\u05e1\u05e3 \u05e1\u05e4\u05e8\u05d9\u05d4... +#: ../../../../../app/src/processing/app/Preferences.java:110 +!Albanian= + #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=\u05d4\u05ea\u05e8\u05d7\u05e9\u05d4 \u05e9\u05d2\u05d0\u05d9\u05d4 \u05d1\u05e0\u05e1\u05d9\u05d5\u05df \u05dc\u05ea\u05e7\u05df \u05d0\u05ea \u05e7\u05d9\u05d3\u05d5\u05d3 \u05d4\u05e7\u05d5\u05d1\u05e5.\n\u05dc\u05d0 \u05dc\u05e0\u05e1\u05d5\u05ea \u05dc\u05e9\u05de\u05d5\u05e8 \u05d0\u05ea \u05d4\u05e1\u05e7\u05d9\u05e6\u05d4 \u05d4\u05d9\u05d0 \u05d9\u05db\u05d5\u05dc\u05d4 \u05dc\u05d3\u05e8\u05d5\u05e1\n\u05d0\u05ea \u05d4\u05d2\u05e8\u05e1\u05d0 \u05d4\u05d9\u05e9\u05e0\u05d4. \u05e0\u05d0 \u05dc\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1- \u05e4\u05ea\u05d7 \u05db\u05d3\u05d9 \u05dc\u05e4\u05ea\u05d5\u05d7 \u05de\u05d7\u05d3\u05e9 \u05d0\u05ea \u05d4\u05e1\u05e7\u05d9\u05e6\u05d4 \u05d5\u05dc\u05e0\u05e1\u05d5\u05ea \u05e9\u05d5\u05d1.\n +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=\u05d0\u05e8\u05e2\u05d4 \u05e9\u05d2\u05d9\u05d0\u05d4 \u05dc\u05d0 \u05d9\u05d3\u05d5\u05e2\u05d4 \u05d1\u05de\u05d4\u05dc\u05da \u05e0\u05d9\u05e1\u05d9\u05d5\u05df \u05dc\u05d8\u05e2\u05d5\u05df\n\u05e7\u05d5\u05d3 \u05dc\u05de\u05db\u05e9\u05d9\u05e8 \u05e9\u05dc\u05da. @@ -83,6 +100,9 @@ Arduino\ ARM\ (32-bits)\ Boards=\u05dc\u05d5\u05d7\u05d5\u05ea ARM \u05d0\u05e8\ #: ../../../processing/app/I18n.java:82 Arduino\ AVR\ Boards=\u05dc\u05d5\u05d7\u05d5\u05ea \u05d0\u05e8\u05d3\u05d5\u05d5\u05d9\u05e0\u05d5 AVR +#: Editor.java:2137 +!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=\u05d4\u05d0\u05e8\u05d3\u05d5\u05d0\u05d9\u05e0\u05d5 \u05dc\u05d0 \u05d9\u05db\u05d5\u05dc \u05dc\u05e8\u05d5\u05e5 \u05de\u05e4\u05e0\u05d9 \u05e9\u05dc\u05d0 \u05e0\u05d9\u05ea\u05df\n\u05dc\u05d9\u05d9\u05e6\u05e8 \u05e1\u05e4\u05e8\u05d9\u05d4 \u05dc\u05e9\u05de\u05d9\u05e8\u05ea \u05d4\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05e9\u05dc\u05da. @@ -93,7 +113,7 @@ Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ you Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=\u05d0\u05e8\u05d3\u05d5\u05d0\u05d9\u05e0\u05d5 \u05d3\u05d5\u05e8\u05e9 JDK \u05de\u05dc\u05d0 (\u05dc\u05d0 \u05e8\u05e7 JRE) \u05db\u05d3\u05d9 \u05dc\u05e8\u05d5\u05e5.\n\u05d0\u05e0\u05d0 \u05d4\u05ea\u05e7\u05df JDK \u05d2\u05d9\u05e8\u05e1\u05d4 1.5 \u05d5\u05de\u05e2\u05dc\u05d4.\n\u05de\u05d9\u05d3\u05e2 \u05e0\u05d5\u05e1\u05e3 \u05e0\u05d9\u05ea\u05df \u05dc\u05de\u05e6\u05d5\u05d0 \u05d1-reference. #: ../../../processing/app/EditorStatus.java:471 -!Arduino\:\ = +Arduino\:\ =\u05d0\u05e8\u05d3\u05d5\u05d0\u05d9\u05e0\u05d5\: #: Sketch.java:588 #, java-format @@ -102,11 +122,32 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u05d4\u05d0\u05dd \u05d0\u05ea\u0 #: Sketch.java:587 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u05d4\u05d0\u05dd \u05d0\u05ea\u05d4 \u05d1\u05d8\u05d5\u05d7 \u05e9\u05d0\u05ea\u05d4 \u05e8\u05d5\u05e6\u05d4 \u05dc\u05de\u05d7\u05d5\u05e7 \u05d0\u05ea \u05d4\u05e1\u05e7\u05d9\u05e6\u05d4 \u05d4\u05d6\u05d5? +#: ../../../processing/app/helpers/CommandlineParser.java:100 +!Argument\ required\ for\ --board= + +#: ../../../processing/app/helpers/CommandlineParser.java:118 +!Argument\ required\ for\ --curdir= + +#: ../../../processing/app/helpers/CommandlineParser.java:60 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/helpers/CommandlineParser.java:109 +!Argument\ required\ for\ --port= + +#: ../../../processing/app/helpers/CommandlineParser.java:140 +!Argument\ required\ for\ --pref= + +#: ../../../processing/app/helpers/CommandlineParser.java:153 +!Argument\ required\ for\ --preferences-file= + #: ../../../processing/app/Preferences.java:137 -!Armenian= +Armenian=\u05d0\u05e8\u05de\u05e0\u05d9\u05ea #: ../../../processing/app/Preferences.java:138 -!Asturian= +Asturian=\u05d0\u05d5\u05e1\u05d8\u05e8\u05d9\u05ea + +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= #: tools/AutoFormat.java:91 Auto\ Format=\u05e2\u05d9\u05e6\u05d5\u05d1 \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9 @@ -139,8 +180,14 @@ Bad\ error\ line\:\ {0}=\u05e9\u05d2\u05d9\u05d0\u05d4 \u05d7\u05de\u05d5\u05e8\ #: Editor.java:2136 Bad\ file\ selected=\u05e0\u05d1\u05d7\u05e8 \u05e7\u05d5\u05d1\u05e5 \u05dc\u05d0 \u05ea\u05e7\u05d9\u05df +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../../../app/src/processing/app/Preferences.java:163 +!Basque= + #: ../../../processing/app/Preferences.java:139 -!Belarusian= +Belarusian=\u05d1\u05dc\u05d0\u05e8\u05d5\u05e1\u05d9\u05ea #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 @@ -148,13 +195,13 @@ Board=\u05dc\u05d5\u05d7 #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format -!Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= +Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=\u05dc\u05d5\u05d7 {0}\:{1}\:{2} \u05d0\u05d9\u05e0\u05d5 \u05de\u05e1\u05d5\u05d2\u05dc \u05dc\u05d4\u05d2\u05d3\u05d9\u05e8 \u05d0\u05ea \u05d4\u05e2\u05d3\u05e4\u05ea "build.board". \u05e9\u05d5\u05e0\u05d4-\u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05ea \u05dc\: {3} #: ../../../processing/app/EditorStatus.java:472 -!Board\:\ = +Board\:\ =\u05dc\u05d5\u05d7\: #: ../../../processing/app/Preferences.java:140 -!Bosnian= +Bosnian=\u05d1\u05d5\u05e1\u05e0\u05d9\u05ea #: SerialMonitor.java:112 Both\ NL\ &\ CR=\u05ea\u05d7\u05d9\u05dc\u05ea \u05e9\u05d5\u05e8\u05d4 \u05d5\u05de\u05e2\u05d1\u05e8 \u05dc\u05e9\u05d5\u05e8\u05d4 \u05d7\u05d3\u05e9\u05d4 @@ -165,11 +212,14 @@ Browse=\u05d7\u05e4\u05e9 #: Sketch.java:1392 Sketch.java:1423 Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u05e1\u05e4\u05e8\u05d9\u05d4 \u05d4-build \u05e0\u05de\u05d7\u05e7\u05d4 \u05d0\u05d5 \u05e9\u05dc\u05d0 \u05e0\u05d9\u05ea\u05df \u05dc\u05db\u05ea\u05d5\u05d1 \u05dc\u05ea\u05d5\u05db\u05d4 +#: ../../../processing/app/debug/Compiler.java:211 +!Build\ options\ changed,\ rebuilding\ all= + #: ../../../processing/app/Preferences.java:80 Bulgarian=\u05d1\u05d5\u05dc\u05d2\u05e8\u05d9\u05ea #: ../../../processing/app/Preferences.java:141 -!Burmese\ (Myanmar)= +Burmese\ (Myanmar)=\u05d1 #: Editor.java:708 Burn\ Bootloader=\u05e6\u05e8\u05d9\u05d1\u05ea \u05ea\u05d5\u05db\u05e0\u05ea \u05d4\u05e4\u05e2\u05dc\u05d4. @@ -177,8 +227,13 @@ Burn\ Bootloader=\u05e6\u05e8\u05d9\u05d1\u05ea \u05ea\u05d5\u05db\u05e0\u05ea \ #: Editor.java:2504 Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u05e6\u05d5\u05e8\u05d1 \u05ea\u05d5\u05db\u05e0\u05ea \u05d4\u05e4\u05e2\u05dc\u05d4 \u05dc\u05dc\u05d5\u05d7 I\\O (\u05d6\u05d4 \u05d9\u05d9\u05de\u05e9\u05da \u05db\u05d3\u05e7\u05d4)... -#: ../../../processing/app/Base.java:368 -Can't\ open\ source\ sketch\!=\u05dc\u05d0 \u05e0\u05d9\u05ea\u05d5 \u05dc\u05e4\u05ea\u05d5\u05d7 \u05d0\u05ea \u05de\u05e7\u05d5\u05e8 \u05d4\u05e1\u05e7\u05d9\u05e6\u05d4 +#: ../../../processing/app/helpers/CommandlineParser.java:54 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 Canadian\ French=\u05e6\u05e8\u05e4\u05ea \u05d4\u05e7\u05e0\u05d3\u05d9\u05ea @@ -190,6 +245,9 @@ Cancel=\u05d1\u05d8\u05dc #: Sketch.java:455 Cannot\ Rename=\u05d0\u05d9\u05df \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05dc\u05e9\u05e0\u05d5\u05ea \u05e9\u05dd +#: ../../../processing/app/helpers/CommandlineParser.java:169 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 Carriage\ return=\u05ea\u05d7\u05d9\u05dc\u05ea \u05e9\u05d5\u05e8\u05d4 @@ -200,16 +258,16 @@ Catalan=\u05e7\u05d8\u05dc\u05d5\u05e0\u05d9\u05ea Check\ for\ updates\ on\ startup=\u05d1\u05d3\u05d5\u05e7 \u05e2\u05d3\u05db\u05d5\u05e0\u05d9\u05dd \u05d1\u05d4\u05e4\u05e2\u05dc\u05d4 #: ../../../processing/app/Preferences.java:142 -!Chinese\ (China)= +Chinese\ (China)=\u05e1\u05d9\u05e0\u05d9\u05ea (\u05e1\u05d9\u05df(\u05de\u05e0\u05d3\u05e8\u05d9\u05e0\u05d9\u05ea)) #: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= +Chinese\ (Hong\ Kong)=\u05e1\u05d9\u05e0\u05d9\u05ea (\u05d4\u05d5\u05e0\u05d2 \u05e7\u05d5\u05e0\u05d2(\u05d9\u05b0\u05d5\u05b5\u05d4)) #: ../../../processing/app/Preferences.java:144 -!Chinese\ (Taiwan)= +Chinese\ (Taiwan)=\u05e1\u05d9\u05e0\u05d9\u05ea (\u05d8\u05d0\u05d9\u05d5\u05d5\u05d0\u05df (\u05de\u05b4\u05d9\u05df)) #: ../../../processing/app/Preferences.java:143 -!Chinese\ (Taiwan)\ (Big5)= +Chinese\ (Taiwan)\ (Big5)=\u05e1\u05d9\u05df (\u05d8\u05d9\u05d5\u05d5\u05d0\u05df) (Big5) #: Preferences.java:88 Chinese\ Simplified=\u05e1\u05d9\u05e0\u05d9\u05ea \u05e4\u05e9\u05d5\u05d8\u05d4 @@ -223,10 +281,6 @@ Close=\u05e1\u05d2\u05d5\u05e8 #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=\u05d4\u05e2\u05e8\u05d5\u05ea/\u05d4\u05e1\u05e8 \u05d4\u05e2\u05e8\u05d5\u05ea -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=\u05e9\u05d2\u05d9\u05d0\u05ea \u05e7\u05d5\u05de\u05e4\u05d9\u05dc\u05e6\u05d9\u05d4, \u05e0\u05d0 \u05dc\u05e9\u05dc\u05d5\u05d7 \u05d0\u05ea \u05d4\u05e7\u05d5\u05d3 \u05dc {0} - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=\u05de\u05d1\u05e6\u05e2 \u05e7\u05d5\u05de\u05e4\u05d9\u05dc\u05e6\u05d9\u05d4 \u05dc\u05e1\u05e7\u05d9\u05e6\u05d4... @@ -240,7 +294,7 @@ Copy=\u05d4\u05e2\u05ea\u05e7 Copy\ as\ HTML=\u05d4\u05e2\u05ea\u05e7 \u05db HTML #: ../../../processing/app/EditorStatus.java:455 -!Copy\ error\ messages= +Copy\ error\ messages=\u05d4\u05e2\u05ea\u05e7 \u05d4\u05d5\u05d3\u05e2\u05d5\u05ea \u05e9\u05d2\u05d9\u05d0\u05d4 #: Editor.java:1165 Editor.java:2715 Copy\ for\ Forum=\u05d4\u05e2\u05ea\u05e7 \u05db\u05d3\u05d9 \u05dc\u05e4\u05e8\u05e1\u05dd \u05d1\u05e4\u05d5\u05e8\u05d5\u05dd @@ -272,15 +326,15 @@ Could\ not\ delete\ {0}=\u05dc\u05d0 \u05e0\u05d9\u05ea\u05df \u05dc\u05de\u05d7 #: ../../../processing/app/debug/TargetPlatform.java:74 #, java-format -!Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?= +Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?=\u05dc\u05d0 \u05e0\u05d9\u05ea\u05df \u05dc\u05de\u05e6\u05d5\u05d0 \u05d0\u05ea boards.txt \u05d1{0}. Is it pre-1.5? #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 #, java-format -!Could\ not\ find\ tool\ {0}= +Could\ not\ find\ tool\ {0}=\u05dc\u05d0 \u05e0\u05d9\u05ea\u05df \u05dc\u05de\u05e6\u05d5\u05d0 \u05d0\u05ea \u05d4\u05db\u05dc\u05d9 {0} #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 #, java-format -!Could\ not\ find\ tool\ {0}\ from\ package\ {1}= +Could\ not\ find\ tool\ {0}\ from\ package\ {1}=\u05dc\u05d0 \u05e0\u05d9\u05ea\u05df \u05dc\u05de\u05e6\u05d5\u05d0 \u05d0\u05ea \u05d4\u05db\u05dc\u05d9 {0} \u05de\u05d7\u05d1\u05d9\u05dc\u05d4 {1} #: Base.java:1934 #, java-format @@ -297,14 +351,13 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=\u05dc\u05d0 \u05e0\u05d9\u05ea\u05df \u05dc\u05e9\u05de\u05d5\u05e8 \u05de\u05d7\u05d3\u05e9 \u05d0\u05ea \u05d4\u05e1\u05e7\u05d9\u05e6\u05d4 #: Theme.java:52 -Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u05dc\u05d0 \u05e0\u05d9\u05ea \u05dc\u05e7\u05e8\u05d5\u05d0 \u05d0\u05ea \u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05e2\u05e8\u05db\u05ea \u05d4\u05e6\u05d1\u05e2\u05d9\u05dd.\n\u05e6\u05e8\u05d9\u05da \u05dc\u05d4\u05ea\u05e7\u05d9\u05df \u05de\u05d7\u05d3\u05e9 \u05e2\u05d9\u05d1\u05d5\u05d3. +!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u05d0\u05e8\u05e2\u05d4 \u05e9\u05d2\u05d9\u05d0\u05d4 \u05d1\u05e7\u05e8\u05d9\u05d0\u05ea \u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05d1\u05e8\u05d9\u05e8\u05ea \u05d4\u05de\u05d7\u05d3\u05dc.\n\u05d0\u05e0\u05d0 \u05d4\u05ea\u05e7\u05df \u05de\u05d7\u05d3\u05e9 \u05d0\u05ea \u05d4\u05d0\u05e8\u05d3\u05d5\u05d0\u05d9\u05e0\u05d5. -#: Preferences.java:258 -#, java-format -Could\ not\ read\ preferences\ from\ {0}=\u05dc\u05d0 \u05d9\u05db\u05d5\u05dc \u05dc\u05e7\u05e8\u05d5\u05d0 \u05d4\u05e2\u05d3\u05e4\u05d5\u05ea \u05de {0} +#: ../../../processing/app/debug/Compiler.java:206 +!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= #: Base.java:2482 #, java-format @@ -327,6 +380,9 @@ Could\ not\ rename\ the\ sketch.\ (2)=\u05d0\u05d9\u05df \u05d0\u05e4\u05e9\u05e #, java-format Could\ not\ replace\ {0}=\u05dc\u05d0 \u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05d7\u05dc\u05d9\u05e3 \u05d0\u05ea {0} +#: ../../../processing/app/debug/Compiler.java:107 +!Could\ not\ write\ build\ preferences\ file= + #: tools/Archiver.java:74 Couldn't\ archive\ sketch=\u05dc\u05d0 \u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05db\u05e0\u05d9\u05e1 \u05d0\u05ea \u05d4\u05e1\u05e7\u05d9\u05e6\u05d4 \u05dc\u05d0\u05e8\u05db\u05d9\u05d5\u05df @@ -364,7 +420,7 @@ Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ Discard\ all\ changes\ and\ reload\ sketch?=\u05dc\u05d4\u05ea\u05e2\u05dc\u05dd \u05de\u05db\u05dc \u05d4\u05e9\u05d9\u05e0\u05d5\u05d9\u05d9\u05dd \u05d5\u05dc\u05d8\u05e2\u05d5\u05df \u05de\u05d7\u05d3\u05e9 \u05d0\u05ea \u05d4\u05e1\u05e7\u05d9\u05e6\u05d4? #: ../../../processing/app/Preferences.java:438 -!Display\ line\ numbers= +Display\ line\ numbers=\u05d4\u05e6\u05d2 \u05de\u05e1\u05e4\u05d5\u05e8 \u05e9\u05d5\u05e8\u05d5\u05ea #: Editor.java:2064 Don't\ Save=\u05d0\u05dc \u05ea\u05e9\u05de\u05d5\u05e8 @@ -375,12 +431,19 @@ Done\ Saving.=\u05e9\u05de\u05d9\u05e8\u05d4 \u05d1\u05d5\u05e6\u05e2\u05d4. #: Editor.java:2510 Done\ burning\ bootloader.=\u05e6\u05e8\u05d9\u05d1\u05ea \u05ea\u05d5\u05db\u05e0\u05ea \u05d4\u05e4\u05e2\u05dc\u05d4 \u05d4\u05e1\u05ea\u05d9\u05d9\u05de\u05d4. +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=\u05e7\u05d5\u05de\u05e4\u05d9\u05dc\u05e6\u05d9\u05d4 \u05d4\u05e1\u05ea\u05d9\u05d9\u05de\u05d4. #: Editor.java:2564 Done\ printing.=\u05d4\u05d4\u05d3\u05e4\u05e1\u05d4 \u05d4\u05e1\u05ea\u05d9\u05d9\u05de\u05d4. +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=\u05d4\u05e2\u05dc\u05d0\u05d4 \u05d4\u05e1\u05ea\u05d9\u05d9\u05de\u05d4. @@ -388,7 +451,7 @@ Done\ uploading.=\u05d4\u05e2\u05dc\u05d0\u05d4 \u05d4\u05e1\u05ea\u05d9\u05d9\u Dutch=\u05d4\u05d5\u05dc\u05e0\u05d3\u05d9\u05ea #: ../../../processing/app/Preferences.java:144 -!Dutch\ (Netherlands)= +Dutch\ (Netherlands)=\u05e0\u05d5\u05e8\u05d1\u05d2\u05d9\u05ea (\u05e0\u05d5\u05e8\u05d1\u05d2\u05d9\u05d4) #: Editor.java:1130 Edit=\u05e2\u05e8\u05d5\u05da @@ -403,7 +466,7 @@ Editor\ language\:\ =\u05e9\u05e4\u05ea \u05d4\u05e2\u05d5\u05e8\u05da\: English=\u05d0\u05e0\u05d2\u05dc\u05d9\u05ea #: ../../../processing/app/Preferences.java:145 -!English\ (United\ Kingdom)= +English\ (United\ Kingdom)=\u05d0\u05e0\u05d2\u05dc\u05d9\u05ea (\u05d4\u05de\u05de\u05dc\u05db\u05d4 \u05d4\u05de\u05d0\u05d5\u05d7\u05d3\u05ea) #: Editor.java:1062 Environment=\u05e1\u05d1\u05d9\u05d1\u05d4 @@ -427,13 +490,13 @@ Error\ getting\ the\ Arduino\ data\ folder.=\u05e9\u05d2\u05d9\u05d0\u05d4 \u05d Error\ inside\ Serial.{0}()=\u05e9\u05d2\u05d9\u05d0\u05d4 \u05d1\u05e1\u05d9\u05e8\u05d9\u05d0\u05dc. {0}() #: ../../../processing/app/Base.java:1232 -!Error\ loading\ libraries= +Error\ loading\ libraries=\u05e9\u05d2\u05d9\u05d0\u05d4 \u05d1\u05d8\u05e2\u05d9\u05e0\u05d4 \u05d4\u05e1\u05e4\u05e8\u05d9\u05d5\u05ea #: ../../../processing/app/debug/TargetPlatform.java:95 #: ../../../processing/app/debug/TargetPlatform.java:106 #: ../../../processing/app/debug/TargetPlatform.java:117 #, java-format -!Error\ loading\ {0}= +Error\ loading\ {0}=\u05e9\u05d2\u05d9\u05d0\u05d4 \u05d1\u05d8\u05e2\u05d9\u05e0\u05d4 {0} #: Serial.java:181 #, java-format @@ -447,7 +510,7 @@ Error\ reading\ preferences=\u05e9\u05d2\u05d9\u05d0\u05d4 \u05d1\u05e7\u05e8\u0 Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=\u05d0\u05e8\u05e2\u05d4 \u05e9\u05d2\u05d9\u05d0\u05d4 \u05d1\u05e7\u05e8\u05d9\u05d0\u05ea \u05e7\u05d5\u05d1\u05e5 \u05d4\u05d4\u05e2\u05d3\u05e4\u05d5\u05ea.\n\u05d0\u05e0\u05d0 \u05de\u05d7\u05e7 (\u05d0\u05d5 \u05d4\u05d6\u05d6) \u05d0\u05ea {0} \u05d5\u05d0\u05ea\u05d7\u05dc \u05d0\u05ea \u05d4\u05d0\u05e8\u05d3\u05d5\u05d0\u05d9\u05e0\u05d5. #: ../../../cc/arduino/packages/DiscoveryManager.java:25 -!Error\ starting\ discovery\ method\:\ = +Error\ starting\ discovery\ method\:\ =\u05e9\u05d2\u05d9\u05d0\u05d4 \u05d1\u05d4\u05ea\u05d7\u05dc\u05ea \u05d4\u05dc\u05d9\u05da \u05d2\u05d9\u05dc\u05d5\u05d9\: #: Serial.java:125 #, java-format @@ -457,7 +520,10 @@ Error\ touching\ serial\ port\ ''{0}''.=\u05e9\u05d2\u05d9\u05d0\u05d4 \u05d1\u0 Error\ while\ burning\ bootloader.=\u05e9\u05d2\u05d9\u05d0\u05d4 \u05d0\u05d9\u05e8\u05e2\u05d4 \u05d1\u05e2\u05ea \u05e6\u05e8\u05d9\u05d1\u05ea \u05ea\u05d5\u05db\u05e0\u05ea \u05d4\u05e4\u05e2\u05dc\u05d4. #: ../../../processing/app/Editor.java:2555 -!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=\u05e9\u05d2\u05d9\u05d4 \u05d1\u05de\u05d4\u05dc\u05da \u05e6\u05e8\u05d9\u05d1\u05ea bootloader\: \u05e4\u05e8\u05de\u05d8\u05e8 \u05d4\u05d2\u05d3\u05e8\u05d5\u05ea '{0}' \u05d7\u05e1\u05e8 + +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= #: SketchCode.java:83 #, java-format @@ -466,15 +532,26 @@ Error\ while\ loading\ code\ {0}=\u05e9\u05d2\u05d9\u05d0\u05d4 \u05d1\u05d6\u05 #: Editor.java:2567 Error\ while\ printing.=\u05e9\u05d2\u05d9\u05d0\u05d4 \u05d1\u05ea\u05d4\u05dc\u05d9\u05da \u05d4\u05d4\u05d3\u05e4\u05e1\u05d4. +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 -!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= +Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=\u05e9\u05d2\u05d9\u05d0\u05d4 \u05d1\u05de\u05d4\u05dc\u05da \u05d4\u05e2\u05dc\u05d0\u05ea \u05ea\u05db\u05e0\u05d9\u05ea\: \u05e4\u05e8\u05de\u05d8\u05e8 \u05d4\u05d2\u05d3\u05e8\u05d5\u05ea '{0}' \u05d7\u05e1\u05e8 + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= #: Preferences.java:93 Estonian=\u05d0\u05e1\u05d8\u05d5\u05e0\u05d9\u05ea #: ../../../processing/app/Preferences.java:146 -!Estonian\ (Estonia)= +Estonian\ (Estonia)=\u05d0\u05e1\u05d8\u05d5\u05e0\u05d9\u05ea (\u05d0\u05e1\u05d8\u05d5\u05e0\u05d9\u05d4) #: Editor.java:516 Examples=\u05d3\u05d5\u05d2\u05de\u05d0\u05d5\u05ea @@ -485,6 +562,11 @@ Export\ canceled,\ changes\ must\ first\ be\ saved.=\u05d7\u05d5\u05d1\u05d4 \u0 #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/BaseNoGui.java:460 +#: ../../../../../app/src/processing/app/Base.java:251 +#, java-format +!Failed\ to\ open\ sketch\:\ "{0}"= + #: Editor.java:491 File=\u05e7\u05d5\u05d1\u05e5 @@ -510,7 +592,7 @@ Find...=\u05d7\u05e4\u05e9... Find\:=\u05d7\u05e4\u05e9\: #: ../../../processing/app/Preferences.java:147 -!Finnish= +Finnish=\u05e4\u05d9\u05e0\u05d9\u05ea #: tools/FixEncoding.java:41 tools/FixEncoding.java:58 #: tools/FixEncoding.java:79 @@ -519,8 +601,9 @@ Fix\ Encoding\ &\ Reload=\u05ea\u05e7\u05df \u05d1\u05e2\u05d9\u05d5\u05ea \u05e #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=\u05dc\u05e4\u05e8\u05d8\u05d9\u05dd \u05e2\u05dc \u05d4\u05ea\u05e7\u05e0\u05ea \u05e1\u05e4\u05e8\u05d9\u05d5\u05ea, \u05e8\u05d0\u05d4\: http\://arduino.cc/en/Guide/Libraries\n -#: debug/BasicUploader.java:80 -Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =\u05de\u05db\u05e8\u05d9\u05d7 \u05d0\u05ea\u05d7\u05d5\u05dc \u05de\u05e9\u05ea\u05de\u05e9 \u05d1 1200 \u05e1\u05d9\u05d1\u05d9\u05d5\u05ea \u05dc\u05e9\u05e0\u05d9\u05d9\u05d4 \u05e4\u05ea\u05d9\u05d7\u05d4/\u05e1\u05d2\u05d9\u05e8\u05d4 \u05d1\u05e4\u05d5\u05e8\u05d8 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=\u05e6\u05e8\u05e4\u05ea\u05d9\u05ea @@ -542,11 +625,11 @@ Getting\ Started=\u05de\u05ea\u05d7\u05d9\u05dc\u05d9\u05dd #: ../../../processing/app/Sketch.java:1646 #, java-format -!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.= +Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=\u05de\u05e9\u05ea\u05e0\u05d9\u05dd \u05d2\u05dc\u05d5\u05d1\u05dc\u05d9\u05dd \u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05d1-{0} \u05d1\u05d9\u05d9\u05d8 ({2}%%) \u05e9\u05dc \u05d6\u05d9\u05db\u05e8\u05d5\u05df \u05d3\u05d9\u05e0\u05de\u05d9, \u05de\u05e9\u05d0\u05d9\u05e8 {3} \u05d1\u05d9\u05d9\u05d8 \u05dc\u05d0\u05d7\u05e1\u05d5\u05df \u05de\u05e9\u05ea\u05e0\u05d9\u05dd \u05de\u05e7\u05d5\u05de\u05d9\u05d9\u05dd. \u05de\u05e8\u05d1 \u05d4\u05de\u05e7\u05d5\u05dd \u05d4\u05d5\u05d0 {1} \u05d1\u05d9\u05d9\u05d8\u05d9\u05dd. #: ../../../processing/app/Sketch.java:1651 #, java-format -!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.= +Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05d2\u05dc\u05d5\u05d1\u05dc\u05d9\u05dd \u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05d1{0} \u05d1\u05d9\u05d9\u05d8 \u05e9\u05dc \u05d6\u05db\u05e8\u05d5\u05df \u05d3\u05d9\u05e0\u05de\u05d9. #: Preferences.java:98 Greek=\u05d9\u05d5\u05d5\u05e0\u05d9\u05ea @@ -594,7 +677,7 @@ Ignoring\ sketch\ with\ bad\ name=\u05de\u05ea\u05e2\u05dc\u05dd \u05de\u05e1\u0 Import\ Library...=\u05d9\u05d9\u05d1\u05d0 \u05e1\u05e4\u05e8\u05d9\u05d4... #: ../../../processing/app/Sketch.java:736 -!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?= +In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=\u05d1\u05d0\u05e8\u05d3\u05d5\u05d0\u05d9\u05e0\u05d5 \u05d2\u05e8\u05e1\u05d4 1.0, \u05e1\u05d9\u05d5\u05de\u05ea \u05d4\u05e7\u05d5\u05d1\u05e5 \u05dc\u05d1\u05e8\u05d9\u05e8\u05ea \u05d4\u05de\u05d7\u05d3\u05dc \u05d4\u05e9\u05ea\u05e0\u05ea\u05d4\n\u05de\u05e1\u05d9\u05d5\u05de\u05ea .pde \u05dc\u05e1\u05d9\u05d5\u05de\u05ea .ino. \u05e1\u05e7\u05d9\u05e6\u05d5\u05ea \u05d7\u05d3\u05e9\u05d5\u05ea (\u05db\u05d5\u05dc\u05dc \u05d0\u05dc\u05d5 \u05e9\u05e0\u05d5\u05e6\u05e8\u05d5 \u05e2"\u05d9\n\u05dc\u05d7\u05d9\u05e6\u05d4 \u05e2\u05dc "\u05e9\u05de\u05d9\u05e8\u05d4 \u05d1\u05e9\u05dd") \u05d9\u05e9\u05ea\u05de\u05e9\u05d5 \u05d1\u05e1\u05d9\u05d5\u05de\u05ea \u05d4\u05d7\u05d3\u05e9\u05d4. \u05d4\u05e1\u05d9\u05d5\u05de\u05ea \u05e9\u05dc\n\u05e7\u05d1\u05e6\u05d9\u05dd \u05d9\u05e9\u05e0\u05d9\u05dd \u05ea\u05e2\u05d5\u05d3\u05db\u05df \u05d1\u05de\u05d4\u05dc\u05da \u05e9\u05de\u05d9\u05e8\u05d4, \u05d0\u05d5\u05dc\u05dd \u05e0\u05d9\u05ea\u05df \u05dc\u05d1\u05d8\u05dc \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05d6\u05d5\n\u05d1\u05d7\u05dc\u05d5\u05df \u05d4\u05d4\u05e2\u05d3\u05e4\u05d5\u05ea.\n\n\u05dc\u05e9\u05de\u05d5\u05e8 \u05e1\u05e7\u05d9\u05e6\u05d4 \u05d6\u05d5 \u05d5\u05dc\u05e2\u05d3\u05db\u05df \u05d0\u05ea \u05d4\u05e1\u05d9\u05d5\u05de\u05ea \u05e9\u05dc\u05d4? #: Editor.java:1216 Editor.java:2757 Increase\ Indent=\u05d4\u05d2\u05d3\u05dc \u05d4\u05d6\u05d7\u05d4 @@ -604,7 +687,7 @@ Indonesian=\u05d0\u05d9\u05e0\u05d3\u05d5\u05e0\u05d6\u05d9\u05ea #: ../../../processing/app/Base.java:1204 #, java-format -!Invalid\ library\ found\ in\ {0}\:\ {1}= +Invalid\ library\ found\ in\ {0}\:\ {1}=\u05e1\u05e4\u05e8\u05d9\u05d9\u05d4 \u05dc\u05d0 \u05e7\u05d1\u05d9\u05dc\u05d4 \u05e0\u05de\u05e6\u05d0\u05d4 \u05d1{0}\: {1} #: Preferences.java:102 Italian=\u05d0\u05d9\u05d8\u05dc\u05e7\u05d9\u05ea @@ -624,8 +707,8 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=\u05d4\u05e #: Preferences.java:106 Lithuaninan=\u05dc\u05d9\u05d8\u05d0\u05d9\u05ea -#: ../../../processing/app/Sketch.java:1660 -!Low\ memory\ available,\ stability\ problems\ may\ occur= +#: ../../../processing/app/debug/Compiler.java:333 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 Marathi=\u05de\u05d0\u05e8\u05d9\u05ea @@ -633,8 +716,11 @@ Marathi=\u05de\u05d0\u05e8\u05d9\u05ea #: Base.java:2112 Message=\u05d4\u05d5\u05d3\u05e2\u05d4 -#: Sketch.java:1712 -Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=\u05d7\u05e1\u05e8 /* \u05d1\u05e1\u05d5\u05e3 \u05d4- /* \u05d4\u05e2\u05e8\u05d4 */ +#: ../../../processing/app/preproc/PdePreprocessor.java:412 +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=\u05d7\u05e1\u05e8 \u05e1\u05d9\u05de\u05df /* \u05de\u05e1\u05d5\u05e3 /* \u05d4\u05e2\u05e8\u05d4*/ + +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\u05d4\u05e2\u05d3\u05e4\u05d5\u05ea \u05e0\u05d5\u05e1\u05e4\u05d5\u05ea \u05e0\u05d9\u05ea\u05e0\u05d5\u05ea \u05dc\u05e2\u05e8\u05d9\u05db\u05d4 \u05d9\u05e9\u05d9\u05e8\u05d5\u05ea \u05d1\u05ea\u05d5\u05da \u05d4\u05e7\u05d5\u05d1\u05e5 @@ -642,14 +728,23 @@ More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\u05d4\u05e2\u05d3\u #: Editor.java:2156 Moving=\u05de\u05e2\u05d1\u05d9\u05e8 +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/helpers/CommandlineParser.java:166 +!Must\ specify\ exactly\ one\ sketch\ file= + +#: ../../../../../app/src/processing/app/Preferences.java:172 +!N'Ko= + #: Sketch.java:282 Name\ for\ new\ file\:=\u05e9\u05dd \u05e7\u05d5\u05d1\u05e5 \u05d7\u05d3\u05e9\: #: ../../../processing/app/Preferences.java:149 -!Nepali= +Nepali=\u05e0\u05e4\u05d0\u05dc\u05d9\u05ea #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 -!Network\ upload\ using\ programmer\ not\ supported= +Network\ upload\ using\ programmer\ not\ supported=\u05d4\u05e2\u05dc\u05d0\u05ea \u05e8\u05e9\u05ea \u05d1\u05e9\u05d9\u05de\u05d5\u05e9 \u05d3\u05e8\u05da (?) \u05d0\u05d9\u05e0\u05d4 \u05e0\u05ea\u05de\u05db\u05ea. #: EditorToolbar.java:41 Editor.java:493 New=\u05d7\u05d3\u05e9 @@ -669,12 +764,18 @@ Next\ Tab=\u05dc\u05e9\u05d5\u05e0\u05d9\u05ea \u05d4\u05d1\u05d0\u05d4 #: Preferences.java:78 UpdateCheck.java:108 No=\u05dc\u05d0 +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u05dc\u05d0 \u05e0\u05d1\u05d7\u05e8 \u05dc\u05d5\u05d7; \u05d1\u05d1\u05e7\u05e9\u05d4 \u05d1\u05d7\u05e8 \u05dc\u05d5\u05d7 \u05de\u05ea\u05e4\u05e8\u05d9\u05d8 \u05db\u05dc\u05d9\u05dd > \u05dc\u05d5\u05d7\u05d5\u05ea. #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=\u05d0\u05d9\u05df \u05e9\u05d9\u05e0\u05d5\u05d9\u05d9\u05dd \u05e9\u05de\u05e6\u05e8\u05d9\u05db\u05d9\u05dd \u05e2\u05d9\u05e6\u05d5\u05d1 \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9. +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=\u05dc\u05d0 \u05d4\u05ea\u05d5\u05d5\u05e1\u05e4\u05d5 \u05e7\u05d1\u05e6\u05d9\u05dd \u05d7\u05d3\u05e9\u05d9\u05dd \u05dc\u05e1\u05e7\u05d9\u05e6\u05d4. @@ -684,6 +785,9 @@ No\ launcher\ available=\u05d0\u05d9\u05df \u05ea\u05d5\u05db\u05e0\u05ea \u05d4 #: SerialMonitor.java:112 No\ line\ ending=\u05d0\u05d9\u05df \u05e1\u05d5\u05e3 \u05e9\u05d5\u05e8\u05d4 +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u05dc\u05d0, \u05d1\u05d0\u05de\u05ea, \u05d4\u05d2\u05d9\u05e2 \u05d4\u05d6\u05de\u05df \u05dc\u05e0\u05e9\u05d5\u05dd \u05e7\u05e6\u05ea \u05d0\u05d5\u05d5\u05d9\u05e8 \u05e0\u05e7\u05d9. @@ -691,8 +795,18 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u05dc\u05d0, \u05d1\u05d0\u #, java-format No\ reference\ available\ for\ "{0}"=\u05d0\u05d9\u05df \u05d9\u05d9\u05d7\u05d5\u05e1 \u05d6\u05de\u05d9\u05df \u05dc "{0}" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/SketchData.java:135 +!No\ valid\ code\ files\ found= + #: ../../../processing/app/Base.java:309 -!No\ valid\ configured\ cores\ found\!\ Exiting...= +No\ valid\ configured\ cores\ found\!\ Exiting...=\u05dc\u05d0 \u05e0\u05de\u05e6\u05d0\u05d5 \u05dc\u05d9\u05d1\u05d5\u05ea \u05ea\u05e7\u05d9\u05e0\u05d5\u05ea-\u05de\u05d5\u05d2\u05d3\u05e8\u05d5\u05ea\! \u05d9\u05d5\u05e6\u05d0... #: ../../../processing/app/debug/TargetPackage.java:63 #, java-format @@ -717,6 +831,9 @@ OK=\u05d0\u05e9\u05e8 #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=\u05e7\u05d5\u05d1\u05e5 \u05d0\u05d7\u05d3 \u05d4\u05ea\u05d5\u05d5\u05e1\u05e3 \u05dc\u05e1\u05e7\u05d9\u05e6\u05d4 +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=\u05e4\u05ea\u05d7 @@ -736,7 +853,7 @@ Open...=\u05e4\u05ea\u05d7... Page\ Setup=\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05e2\u05de\u05d5\u05d3 #: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 -!Password\:= +Password\:=\u05e1\u05d9\u05e1\u05de\u05d4\: #: Editor.java:1189 Editor.java:2731 Paste=\u05d4\u05d3\u05d1\u05e7 @@ -744,26 +861,36 @@ Paste=\u05d4\u05d3\u05d1\u05e7 #: Preferences.java:109 Persian=\u05e4\u05e8\u05e1\u05d9\u05ea +#: ../../../../../app/src/processing/app/Preferences.java:175 +!Persian\ (Iran)= + #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=\u05d0\u05e0\u05d0 \u05d9\u05d9\u05d1\u05d0 \u05d0\u05ea \u05e1\u05e4\u05e8\u05d9\u05d9\u05ea \u05d4-SPI \u05de\u05ea\u05e4\u05e8\u05d9\u05d8 \u05e1\u05e7\u05d9\u05e6\u05d4 -> \u05d9\u05d9\u05d1\u05d0 \u05e1\u05e4\u05e8\u05d9\u05d4. +#: ../../../processing/app/debug/Compiler.java:807 +!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=\u05d0\u05e0\u05d0 \u05d4\u05ea\u05e7\u05df JDK \u05d2\u05d9\u05e8\u05e1\u05d4 1.5 \u05d5\u05de\u05e2\u05dc\u05d4 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:249 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:294 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 Polish=\u05e4\u05d5\u05dc\u05e0\u05d9\u05ea #: ../../../processing/app/Editor.java:718 -!Port= +Port=\u05e4\u05ea\u05d7\u05d4 #: ../../../processing/app/Preferences.java:151 -!Portugese= +Portugese=\u05e4\u05d5\u05e8\u05d8\u05d5\u05d2\u05d6\u05d9\u05ea #: ../../../processing/app/Preferences.java:127 -!Portuguese\ (Brazil)= +Portuguese\ (Brazil)=\u05e4\u05d5\u05e8\u05d8\u05d5\u05d2\u05d6\u05d9\u05ea (\u05d1\u05e8\u05d6\u05d9\u05dc) #: ../../../processing/app/Preferences.java:128 -!Portuguese\ (Portugal)= +Portuguese\ (Portugal)=\u05e4\u05d5\u05e8\u05d8\u05d5\u05d2\u05d6\u05d9\u05ea (\u05e4\u05d5\u05e8\u05d8\u05d5\u05d2\u05dc) #: Preferences.java:295 Editor.java:583 Preferences=\u05d4\u05e2\u05d3\u05e4\u05d5\u05ea @@ -811,9 +938,6 @@ Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troublesh #: Sketch.java:355 Sketch.java:362 Sketch.java:373 Problem\ with\ rename=\u05d1\u05e2\u05d9\u05d4 \u05d1\u05e9\u05d9\u05e0\u05d5\u05d9 \u05e9\u05dd -#: Editor.java:2137 -Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=\u05d4\u05e2\u05d9\u05d1\u05d5\u05d3 \u05d9\u05db\u05d5\u05dc \u05dc\u05e4\u05ea\u05d5\u05d7 \u05e8\u05e7 \u05d0\u05ea \u05d4\u05e1\u05e7\u05d9\u05e6\u05d5\u05ea \u05e9\u05dc \u05e2\u05e6\u05de\u05d5\n\u05d5\u05e7\u05d1\u05e6\u05d9\u05dd \u05e9\u05de\u05e1\u05ea\u05d9\u05d9\u05de\u05d9\u05dd \u05d1 ino. \u05d0\u05d5 pde. - #: ../../../processing/app/I18n.java:86 Processor=\u05de\u05e2\u05d1\u05d3 @@ -874,9 +998,15 @@ Save\ changes\ to\ "{0}"?\ \ =\u05e9\u05de\u05d5\u05e8 \u05e9\u05d9\u05e0\u05d5\ #: Sketch.java:825 Save\ sketch\ folder\ as...=\u05e9\u05de\u05d5\u05e8 \u05d0\u05ea \u05ea\u05d9\u05e7\u05d9\u05d9\u05ea \u05d4\u05e1\u05e7\u05d9\u05e6\u05d4 \u05d1... +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=\u05e9\u05d5\u05de\u05e8... +#: ../../../../../app/src/processing/app/FindReplace.java:116 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=\u05d1\u05d7\u05e8 \u05e1\u05e4\u05e8\u05d9\u05d4 \u05dc\u05e1\u05e7\u05d9\u05e6\u05d5\u05ea (\u05d0\u05d5 \u05d9\u05d9\u05e6\u05e8 \u05d7\u05d3\u05e9\u05d4)... @@ -901,14 +1031,6 @@ Send=\u05e9\u05dc\u05d7 #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=\u05de\u05e1\u05da \u05e1\u05d9\u05e8\u05d9\u05d0\u05dc\u05d9 -#: Serial.java:174 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=\u05e4\u05d5\u05e8\u05d8 \u05e1\u05d9\u05e8\u05d9\u05d0\u05dc\u05d9 "{0}" \u05db\u05d1\u05e8 \u05d1\u05e9\u05d9\u05de\u05d5\u05e9. \u05d9\u05e9 \u05dc\u05e0\u05e1\u05d5\u05ea \u05dc\u05e6\u05d0\u05ea \u05de\u05ea\u05d5\u05db\u05e0\u05d5\u05ea \u05e9\u05db\u05db\u05dc \u05d4\u05e0\u05e8\u05d0\u05d4 \u05de\u05e9\u05ea\u05de\u05e9\u05d5\u05ea \u05d1\u05d5. - -#: Serial.java:121 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=\u05d4\u05e4\u05d5\u05e8\u05d8 \u05d4\u05e1\u05d9\u05e8\u05d9\u05d0\u05dc\u05d9 "{0}" \u05db\u05d1\u05e8 \u05d1\u05e9\u05d9\u05de\u05d5\u05e9. \u05e0\u05e1\u05d4 \u05dc\u05e6\u05d0\u05ea \u05de\u05ea\u05d5\u05db\u05e0\u05d5\u05ea \u05e9\u05db\u05db\u05dc \u05d4\u05e0\u05e8\u05d0\u05d4 \u05de\u05e9\u05ea\u05de\u05e9\u05d5\u05ea \u05d1\u05d5. - #: Serial.java:194 #, java-format Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=\u05e4\u05d5\u05e8\u05d8 \u05e1\u05d9\u05e8\u05d9\u05d0\u05dc\u05d9 "{0}" \u05dc\u05d0 \u05e0\u05de\u05e6\u05d0. \u05d4\u05d0\u05dd \u05d1\u05d7\u05e8\u05ea \u05d0\u05ea \u05d4\u05e4\u05d5\u05e8\u05d8 \u05d4\u05e0\u05db\u05d5\u05df \u05d1\u05ea\u05e4\u05e8\u05d9\u05d8 \u05db\u05dc\u05d9\u05dd > \u05e4\u05d5\u05e8\u05d8 \u05e1\u05d9\u05e8\u05d9\u05d0\u05dc\u05d9 ? @@ -963,6 +1085,9 @@ Sketchbook\ folder\ disappeared=\u05d4\u05e1\u05e4\u05e8\u05d9\u05d4 \u05e9\u05d #: Preferences.java:315 Sketchbook\ location\:=\u05de\u05d9\u05e7\u05d5\u05dd \u05d7\u05d5\u05d1\u05e8\u05ea \u05d4\u05e1\u05e7\u05d9\u05e6\u05d5\u05ea\: +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 !Sketches\ (*.ino,\ *.pde)= @@ -986,7 +1111,7 @@ Spanish=\u05e1\u05e4\u05e8\u05d3\u05d9\u05ea Sunshine=\u05d0\u05d5\u05e8 \u05e9\u05de\u05e9 #: ../../../processing/app/Preferences.java:153 -!Swedish= +Swedish=\u05e9\u05d1\u05d3\u05d9\u05ea #: Preferences.java:84 System\ Default=\u05d1\u05e8\u05d9\u05e8\u05ea \u05de\u05d7\u05d3\u05dc \u05e9\u05dc \u05d4\u05de\u05e2\u05e8\u05db\u05ea @@ -997,6 +1122,9 @@ Tamil=\u05d8\u05d0\u05de\u05d9\u05dc\u05d9\u05ea #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=\u05d4\u05de\u05d9\u05dc\u05d4 'BYTE' \u05d0\u05d9\u05e0\u05d4 \u05e0\u05ea\u05de\u05db\u05ea \u05d9\u05d5\u05ea\u05e8. +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=\u05d4\u05de\u05d7\u05dc\u05e7\u05d4 Client \u05e9\u05d5\u05e0\u05ea\u05d4 \u05dc EthernetClient. @@ -1033,12 +1161,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=\u05ea\u05d9\u05e7\u05d9\u05d9\u05ea \u05d4\u05e1\u05e7\u05d9\u05e6\u05d4 \u05e0\u05e2\u05dc\u05de\u05d4. \u05d9\u05d1\u05d5\u05e6\u05e2 \u05e0\u05d9\u05e1\u05d9\u05d5\u05df \u05dc\u05e9\u05de\u05d5\u05e8 \u05de\u05d7\u05d3\u05e9 \u05d1\u05d0\u05d5\u05ea\u05d5 \u05de\u05d9\u05e7\u05d5\u05dd, \u05d0\u05d1\u05dc \u05db\u05dc \u05d4\u05d3\u05d1\u05e8\u05d9\u05dd \u05de\u05dc\u05d1\u05d3 \u05d4\u05e7\u05d5\u05d3 \u05d9\u05d9\u05de\u05d7\u05e7\u05d5. -#: Sketch.java:2018 -The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=\u05d7\u05d5\u05d1\u05d4 \u05dc\u05e9\u05e0\u05d5\u05ea \u05d0\u05ea \u05e9\u05dd \u05d4\u05e1\u05e7\u05d9\u05e6\u05d4. \u05e9\u05de\u05d5\u05ea \u05e1\u05e7\u05d9\u05e6\u05d5\u05ea \u05d9\u05db\u05d5\u05dc\u05d9\u05dd \u05dc\u05d4\u05db\u05d9\u05dc\n\u05e8\u05e7 \u05ea\u05d5\u05d5\u05d9 ASCII \u05d0\u05d5 \u05d0\u05d5\u05ea\u05d9\u05d5\u05ea (\u05d0\u05d1\u05dc \u05dc\u05d0 \u05d9\u05db\u05d5\u05dc\u05d9\u05dd \u05dc\u05d4\u05ea\u05d7\u05d9\u05dc \u05d1\u05e1\u05e4\u05e8\u05d4).\n\u05db\u05de\u05d5 \u05db\u05df, \u05d4\u05e9\u05de\u05d5\u05ea \u05e6\u05e8\u05d9\u05db\u05d9\u05dd \u05dc\u05d4\u05d9\u05d5\u05ea \u05e7\u05e6\u05e8\u05d9\u05dd \u05de-64 \u05ea\u05d5\u05d5\u05d9\u05dd. +#: ../../../../../app/src/processing/app/Sketch.java:1470 +!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=\u05d4\u05e1\u05e4\u05e8\u05d9\u05d4 \u05e9\u05dc \u05e1\u05e4\u05e8 \u05d4\u05e1\u05e7\u05d9\u05e6\u05d5\u05ea \u05dc\u05d0 \u05e7\u05d9\u05d9\u05de\u05ea \u05d9\u05d5\u05ea\u05e8.\n\u05d4\u05d0\u05e8\u05d3\u05d5\u05d0\u05d9\u05e0\u05d5 \u05d9\u05e9\u05ea\u05de\u05e9 \u05d1\u05de\u05d9\u05e7\u05d5\u05dd \u05d1\u05e8\u05d9\u05e8\u05ea \u05d4\u05de\u05d7\u05d3\u05dc \u05e9\u05dc \u05e1\u05e4\u05e8 \u05d4\u05e1\u05e7\u05d9\u05e6\u05d5\u05ea \u05d5\u05d9\u05e6\u05d5\u05e8 \u05e1\u05e4\u05e8\u05d9\u05d4 \u05d7\u05d3\u05e9\u05d4 \u05dc\u05e4\u05d9 \u05d4\u05e6\u05d5\u05e8\u05da.\n\u05d4\u05d0\u05e8\u05d3\u05d5\u05d0\u05d9\u05e0\u05d5 \u05d9\u05e4\u05e1\u05d9\u05e7 \u05dc\u05d3\u05d1\u05e8 \u05e2\u05dc \u05e2\u05e6\u05de\u05d5 \u05d1\u05d2\u05d5\u05e3 \u05e9\u05dc\u05d9\u05e9\u05d9. +#: ../../../processing/app/debug/Compiler.java:464 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u05d4\u05e7\u05d5\u05d1\u05e5 \u05db\u05d1\u05e8 \u05d4\u05d5\u05e2\u05ea\u05e7 \u05dc\u05de\u05e7\u05d5\u05dd \u05d0\u05dc\u05d9\u05d5\n\u05d0\u05ea\u05d4 \u05de\u05e0\u05e1\u05d4 \u05dc\u05d4\u05d5\u05e1\u05d9\u05e3 \u05d0\u05d5\u05ea\u05d5.\n\u05dc\u05d0 \u05e2\u05d5\u05e9\u05d4 \u05e9\u05d5\u05dd \u05e9\u05d9\u05e0\u05d5\u05d9. @@ -1105,7 +1236,7 @@ Upload\ Using\ Programmer=\u05d4\u05e2\u05dc\u05d4 \u05d1\u05e2\u05d6\u05e8\u05e Upload\ canceled.=\u05d4\u05e2\u05dc\u05d0\u05d4 \u05d1\u05d5\u05d8\u05dc\u05d4. #: ../../../processing/app/Sketch.java:1678 -!Upload\ cancelled= +Upload\ cancelled=\u05d4\u05e2\u05dc\u05d0\u05d4 \u05d1\u05d5\u05d8\u05dc\u05d4 #: Editor.java:2378 Uploading\ to\ I/O\ Board...=\u05de\u05e2\u05dc\u05d4 \u05dc\u05dc\u05d5\u05d7 I/O @@ -1137,11 +1268,15 @@ Verify\ /\ Compile=\u05d0\u05de\u05ea / \u05d1\u05e6\u05e2 \u05e7\u05d5\u05de\u0 Verify\ code\ after\ upload=\u05d0\u05de\u05ea \u05d0\u05ea \u05d4\u05e7\u05d5\u05d3 \u05d1\u05e1\u05d9\u05d5\u05dd \u05d4\u05d4\u05e2\u05dc\u05d0\u05d4 #: ../../../processing/app/Preferences.java:154 -!Vietnamese= +Vietnamese=\u05d5\u05d5\u05d9\u05d0\u05d8\u05e0\u05d0\u05de\u05d9\u05ea #: Editor.java:1105 Visit\ Arduino.cc=\u05d1\u05e7\u05e8 \u05d1 Arduino.cc +#: ../../../processing/app/debug/Compiler.java:375 +#, java-format +!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= + #: Base.java:2128 Warning=\u05d0\u05d6\u05d4\u05e8\u05d4 @@ -1196,7 +1331,7 @@ Zip\ doesn't\ contain\ a\ library=\u05e7\u05d5\u05d1\u05e5 \u05d4-ZIP \u05dc\u05 #: SketchCode.java:258 #, java-format -"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" \u05de\u05db\u05d9\u05dc \u05ea\u05d5\u05d5\u05d9\u05dd \u05dc\u05d0 \u05de\u05d6\u05d5\u05d4\u05d9\u05dd. \u05d0\u05dd \u05d4\u05e7\u05d5\u05d3 \u05e0\u05db\u05ea\u05d1 \u05d1\u05d2\u05d9\u05e8\u05e1\u05d4 \u05d9\u05e9\u05e0\u05d4 \u05d9\u05d5\u05ea\u05e8, \u05d9\u05d9\u05ea\u05db\u05df \u05e9\u05ea\u05e6\u05d8\u05e8\u05da \u05dc\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1- \u05db\u05dc\u05d9\u05dd -> "\u05ea\u05e7\u05df \u05e7\u05d9\u05d3\u05d5\u05d3 \u05d5\u05d8\u05e2\u05df \u05de\u05d7\u05d3\u05e9" \u05db\u05d3\u05d9 \u05dc\u05e2\u05d3\u05db\u05df \u05d0\u05ea \u05d4\u05e1\u05e7\u05d9\u05e6\u05d4 \u05dc\u05e9\u05d9\u05de\u05d5\u05e9 \u05d1\u05e7\u05d9\u05d3\u05d5\u05d3 UTF-8. \u05d0\u05dd \u05dc\u05d0, \u05d9\u05d9\u05ea\u05db\u05df \u05d5\u05ea\u05e6\u05d8\u05e8\u05da \u05dc\u05de\u05d7\u05d5\u05e7 \u05d0\u05ea \u05d4\u05ea\u05d5\u05d5\u05d9\u05dd \u05d4\u05dc\u05d0 \u05de\u05d6\u05d5\u05d4\u05d9\u05dd \u05db\u05d3\u05d9 \u05dc\u05d4\u05d9\u05e4\u05d8\u05e8 \u05de\u05d4\u05e2\u05e8\u05d4 \u05d6\u05d5. +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 \nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\n\u05d4\u05d7\u05dc \u05de\u05d0\u05e8\u05d3\u05d5\u05d0\u05d9\u05e0\u05d5 0019, \u05e1\u05e4\u05e8\u05d9\u05d9\u05ea \u05d4-Ethernet \u05ea\u05dc\u05d5\u05d9\u05d4 \u05d1\u05e1\u05e4\u05e8\u05d9\u05d9\u05ea \u05d4-SPI.\n\u05e0\u05e8\u05d0\u05d4 \u05e9\u05d0\u05ea\u05d4 \u05de\u05e9\u05ea\u05de\u05e9 \u05d1\u05d4 \u05d0\u05d5 \u05d1\u05e1\u05e4\u05e8\u05d9\u05d4 \u05d0\u05d7\u05e8\u05ea \u05e9\u05ea\u05dc\u05d5\u05d9\u05d4 \u05d1\u05e1\u05e4\u05e8\u05d9\u05d9\u05ea \u05d4-SPI.\n @@ -1226,13 +1361,13 @@ baud=\u05e9\u05d9\u05d3\u05d5\u05e8 compilation\ =\u05e7\u05d5\u05de\u05e4\u05d9\u05dc\u05e6\u05d9\u05d4 #: ../../../processing/app/NetworkMonitor.java:111 -!connected\!= +connected\!=\u05de\u05d7\u05d5\u05d1\u05e8\! #: Sketch.java:540 createNewFile()\ returned\ false=createNewFile() \u05d4\u05d7\u05d6\u05d9\u05e8 \u05e2\u05e8\u05da \u05e9\u05dc\u05d9\u05dc\u05d9 #: ../../../processing/app/EditorStatus.java:469 -!enabled\ in\ File\ >\ Preferences.= +enabled\ in\ File\ >\ Preferences.=\u05de\u05d0\u05d5\u05e4\u05e9\u05e8 \u05d1 \u05e7\u05d5\u05d1\u05e5 > \u05d4\u05e2\u05d3\u05e4\u05d5\u05ea #: Base.java:2090 environment=\u05e1\u05d1\u05d9\u05d1\u05d4 @@ -1240,9 +1375,6 @@ environment=\u05e1\u05d1\u05d9\u05d1\u05d4 #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1265,13 +1397,6 @@ name\ is\ null=\u05d4\u05e9\u05dd \u05e8\u05d9\u05e7 #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() byte \u05de\u05d7\u05e1\u05e0\u05d9\u05ea \u05e7\u05d8\u05e0\u05d4 \u05de\u05d9\u05d3\u05d9 \u05e2\u05d3 \u05dc {0} \u05e1\u05d9\u05d1\u05d9\u05d5\u05ea \u05d5\u05db\u05d5\u05dc\u05dc\u05ea \u05d0\u05ea \u05d4\u05ea\u05d5 {1} - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: \u05e9\u05d2\u05d9\u05d0\u05d4 \u05e4\u05e0\u05d9\u05de\u05d9\u05ea.. \u05d4\u05e7\u05d5\u05d3 \u05dc\u05d0 \u05e0\u05de\u05e6\u05d0 - #: Editor.java:932 serialMenu\ is\ null=\u05ea\u05e4\u05e8\u05d9\u05d8 \u05e1\u05d9\u05e8\u05d9\u05d0\u05dc\u05d9 \u05e8\u05d9\u05e7 @@ -1279,6 +1404,10 @@ serialMenu\ is\ null=\u05ea\u05e4\u05e8\u05d9\u05d8 \u05e1\u05d9\u05e8\u05d9\u05 #, java-format the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=\u05d4\u05e4\u05d5\u05e8\u05d8 \u05d4\u05e1\u05d9\u05e8\u05d9\u05d0\u05dc\u05d9 \u05e9\u05e0\u05d1\u05d7\u05e8 {0} \u05d0\u05d9\u05e0\u05d5 \u05e7\u05d9\u05d9\u05dd \u05d0\u05d5 \u05e9\u05d4\u05dc\u05d5\u05d7 \u05d0\u05d9\u05e0\u05d5 \u05de\u05d7\u05d5\u05d1\u05e8 +#: ../../../processing/app/helpers/CommandlineParser.java:158 +#, java-format +!unknown\ option\:\ {0}= + #: Preferences.java:391 upload=\u05d4\u05e2\u05dc\u05d0\u05d4 @@ -1297,3 +1426,35 @@ upload=\u05d4\u05e2\u05dc\u05d0\u05d4 #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/helpers/CommandlineParser.java:226 +#, java-format +!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= + +#: ../../../processing/app/helpers/CommandlineParser.java:183 +#, java-format +!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= + +#: ../../../processing/app/helpers/CommandlineParser.java:216 +#, java-format +!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= + +#: ../../../processing/app/helpers/CommandlineParser.java:214 +#, java-format +!{0}\:\ Invalid\ option\ for\ board\ "{1}"= + +#: ../../../processing/app/helpers/CommandlineParser.java:209 +#, java-format +!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= + +#: ../../../processing/app/helpers/CommandlineParser.java:193 +#, java-format +!{0}\:\ Unknown\ architecture= + +#: ../../../processing/app/helpers/CommandlineParser.java:198 +#, java-format +!{0}\:\ Unknown\ board= + +#: ../../../processing/app/helpers/CommandlineParser.java:188 +#, java-format +!{0}\:\ Unknown\ package= diff --git a/arduino-core/src/processing/app/i18n/Resources_ja_JP.po b/arduino-core/src/processing/app/i18n/Resources_ja_JP.po index 81d252916..564936612 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ja_JP.po +++ b/arduino-core/src/processing/app/i18n/Resources_ja_JP.po @@ -9,8 +9,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-01-14 17:10+0000\n" -"Last-Translator: Cristian Maglie \n" +"PO-Revision-Date: 2015-01-14 18:03+0000\n" +"Last-Translator: Masanori Ohgita \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/arduino-ide-15/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -34,6 +34,12 @@ msgstr "「Mouse」はArduino Leonardoだけで使えます。" msgid "(edit only when Arduino is not running)" msgstr "編集する際には、Arduino IDEを終了させておいてください。" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "--verbose、--verbose-upload および --verbose-build は --verify または --upload と一緒でのみ利用できます。" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pdeから.inoへ" @@ -92,6 +98,10 @@ msgstr "ファイルを追加..." msgid "Add Library..." msgstr "ライブラリをインストール..." +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "アルバニア語" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -99,6 +109,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "エンコーディングを修正しようとしましたが、エラーが発生しました。\n今ここで保存すると、修正前のスケッチをおかしな内容で上書きしてしまう\n可能性があります。スケッチを開き直して、もう一度エンコーディングの\n修正をしてみてください。\n" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "スケッチをアップロード中にエラーが発生しました" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "スケッチを検証中にエラーが発生しました" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "スケッチを検証中/アップロード中にエラーが発生しました" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -143,7 +167,7 @@ msgstr "Arduino AVR ボード" msgid "" "Arduino can only open its own sketches\n" "and other files ending in .ino or .pde" -msgstr "" +msgstr "Arduinoは、ファイル名が拡張子.inoまたは.pdeで終わるスケッチまたはファイルのみを開くことができます。" #: Base.java:1682 msgid "" @@ -177,14 +201,42 @@ msgstr "「{0}」を本当に削除しますか?" msgid "Are you sure you want to delete this sketch?" msgstr "このスケッチを本当に削除しますか?" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "--boardのための引数は必須です" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "--curdirのための引数は必須です" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "--get-prefのための引数は" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "--portのための引数は" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "--prefのための引数は" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "--preferences-fileのための引数は" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" -msgstr "" +msgstr "アルメニア" #: ../../../processing/app/Preferences.java:138 msgid "Asturian" msgstr "" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "が必要です" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "自動整形" @@ -226,6 +278,14 @@ msgstr "エラーの行番号「{0}」は範囲外です。" msgid "Bad file selected" msgstr "間違ったファイルを開きました。" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "" @@ -262,6 +322,10 @@ msgstr "参照" msgid "Build folder disappeared or could not be written" msgstr "ビルド用のフォルダが消えてしまったか、書き込みができません。" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "ビルドオプションが変更されました。全体をリビルドしています。" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "ブルガリア語" @@ -278,9 +342,15 @@ msgstr "ブートローダを書き込む" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "マイコンボードにブートローダを書き込んでいます..." -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" -msgstr "ソーススケッチを開けません!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" +msgstr "" #: ../../../processing/app/Preferences.java:92 msgid "Canadian French" @@ -295,6 +365,10 @@ msgstr "キャンセル" msgid "Cannot Rename" msgstr "名前を変更できません。" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "CRのみ" @@ -339,11 +413,6 @@ msgstr "閉じる" msgid "Comment/Uncomment" msgstr "コメント化・復帰" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "コンパイラのエラーです。問題の起きたスケッチを{0}に送ってください。" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "スケッチをコンパイルしています..." @@ -362,7 +431,7 @@ msgstr "HTML形式でコピーする" #: ../../../processing/app/EditorStatus.java:455 msgid "Copy error messages" -msgstr "" +msgstr "コピーエラー" #: Editor.java:1165 Editor.java:2715 msgid "Copy for Forum" @@ -443,7 +512,7 @@ msgstr "スケッチを保存し直すことができませんでした。" msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "" +msgstr "色テーマ設定を読み込めません。Arduinoを再インストールする必要がります。" #: Preferences.java:219 msgid "" @@ -451,10 +520,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "既定の設定を読み込むことができませんでした。\nArduino IDEをもう一度インストールしてください。" -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "「{0}」から設定を読み込めませんでした。" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "前回のビルド設定ファイルを読み込めません。全体をリビルド" #: Base.java:2482 #, java-format @@ -483,6 +551,10 @@ msgstr "スケッチの名前を変更できませんでした。(2)" msgid "Could not replace {0}" msgstr "「{0}」を置き換える事ができませんでした。" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "ビルド設定ファイルを" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "スケッチをアーカイブできませんでした。" @@ -538,7 +610,7 @@ msgstr "未保存の変更を破棄してスケッチを読み込み直します #: ../../../processing/app/Preferences.java:438 msgid "Display line numbers" -msgstr "" +msgstr "行番号の" #: Editor.java:2064 msgid "Don't Save" @@ -552,6 +624,11 @@ msgstr "保存しました。" msgid "Done burning bootloader." msgstr "ブートローダの書き込みが完了しました。" +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "コンパイル" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "コンパイル終了。" @@ -560,6 +637,10 @@ msgstr "コンパイル終了。" msgid "Done printing." msgstr "印刷が完了しました。" +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "アップロード" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "マイコンボードへの書き込みが完了しました。" @@ -663,6 +744,10 @@ msgstr "ブートローダの書き込み中にエラーが発生しました。 msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "ブートローダの書き込み中にエラー: 設定パラメータ '{0}' が見つかりません" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -672,11 +757,25 @@ msgstr "「{0}」からコードを読み込む際にエラーが発生しまし msgid "Error while printing." msgstr "印刷中にエラーが発生しました。" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "アップロード中にエラーが発生しました: '{0}' 設定パラメータが見つかりません" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "エストニア語" @@ -697,6 +796,11 @@ msgstr "エクスポートを中止しました。エクスポートを行う前 msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "" + #: Editor.java:491 msgid "File" msgstr "ファイル" @@ -744,9 +848,10 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "ライブラリのインストール方法については、以下のページをご覧ください。http://arduino.cc/en/Guide/Libraries\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " -msgstr "シリアルポートを1200bpsで開閉する事により、リセットを行なっています。" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" +msgstr "" #: Preferences.java:95 msgid "French" @@ -894,9 +999,9 @@ msgstr "ライブラリをインストールしました。メニューの「ラ msgid "Lithuaninan" msgstr "リトアニア語" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" -msgstr "利用可能なメモリが少なくなっています。\n安定性に問題が生じる恐れがあります。" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." +msgstr "" #: Preferences.java:107 msgid "Marathi" @@ -910,6 +1015,10 @@ msgstr "メッセージ" msgid "Missing the */ from the end of a /* comment */" msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "以下のファイルを直接編集すれば、より多くの設定を行うことができます。" @@ -918,6 +1027,18 @@ msgstr "以下のファイルを直接編集すれば、より多くの設定を msgid "Moving" msgstr "移動中" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "" + #: Sketch.java:282 msgid "Name for new file:" msgstr "新規ファイルの名前:" @@ -954,6 +1075,10 @@ msgstr "次のタブ" msgid "No" msgstr "いいえ" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "マイコンボードが選ばれていません。「ツール」メニューの「マイコンボード」の選択肢から、マイコンボードを選んでください。" @@ -962,6 +1087,10 @@ msgstr "マイコンボードが選ばれていません。「ツール」メニ msgid "No changes necessary for Auto Format." msgstr "整形の必要はありませんでした。" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "スケッチにファイルは追加されませんでした。" @@ -974,6 +1103,10 @@ msgstr "外部プログラム起動ツールが有りません。" msgid "No line ending" msgstr "改行なし" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "先程も指摘したように、今日は頑張りすぎです。" @@ -983,6 +1116,19 @@ msgstr "先程も指摘したように、今日は頑張りすぎです。" msgid "No reference available for \"{0}\"" msgstr "リファレンスマニュアルに「{0}」はありません。" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "有効な構成されたコアが見つかりません! 終了しています..." @@ -1019,6 +1165,10 @@ msgstr "OK" msgid "One file added to the sketch." msgstr "スケッチにファイルを1個追加しました。" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "開く" @@ -1055,14 +1205,27 @@ msgstr "貼り付け" msgid "Persian" msgstr "ペルシャ語" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "「スケッチ」メニューの「ライブラリを使用」で、SPIライブラリを読み込んでください。" +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "" + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "JDKのバージョン1.5以降をインストールしてください。" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "ポーランド語" @@ -1225,10 +1388,18 @@ msgstr "変更内容を「{0}」に書き込みますか?" msgid "Save sketch folder as..." msgstr "スケッチのフォルダの保存先..." +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "保存中です..." +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "スケッチを保存するフォルダを選択するか作成してください。" @@ -1261,20 +1432,6 @@ msgstr "送信" msgid "Serial Monitor" msgstr "シリアルモニタ" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "シリアルポート「{0}」は、ほかのアプリケーションが使用中です。シリアルポートを使っている可能性のあるアプリケーションを終了してみてください。" - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "シリアルポート「{0}」は、他のソフトウェアで使われています。シリアルポートを使っている可能性の有るソフトウェアを終了させてみてください。" - #: Serial.java:194 #, java-format msgid "" @@ -1354,6 +1511,10 @@ msgstr "スケッチブックの保存場所フォルダがありません。" msgid "Sketchbook location:" msgstr "スケッチブックの保存場所:" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "スケッチ (*.ino, *pde)" @@ -1404,6 +1565,10 @@ msgstr "タミル語" msgid "The 'BYTE' keyword is no longer supported." msgstr "「BYTE」キーワードは、使用できなくなりました。" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "「Client」クラスは「EthernetClient」に名称変更されました。" @@ -1471,12 +1636,12 @@ msgid "" "but anything besides the code will be lost." msgstr "スケッチを保存してあったフォルダが無くなってしまいました。\n同じ場所に保存しなおしますが、このスケッチと一緒に保存してあった\nファイルは無くなるかもしれません。" -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." -msgstr "都合により、スケッチの名前を変更しました。\nスケッチの名前に使える文字は半角英数字です(数字は先頭を除く)。\nまた、64文字以下であることが必要です。" +"They should also be less than 64 characters long." +msgstr "" #: Base.java:259 msgid "" @@ -1487,6 +1652,12 @@ msgid "" "himself in the third person." msgstr "スケッチブックの保存場所フォルダが有りません。\nデフォルトの場所にスケッチブックの保存場所\nフォルダを作成し、今後はこちらを使用します。" +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1629,6 +1800,13 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "Arduino.ccウェブサイトを開く" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "" + #: Base.java:2128 msgid "Warning" msgstr "警告" @@ -1797,10 +1975,6 @@ msgstr "environment" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "http://github.com/arduino/Arduino/issues" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1830,17 +2004,6 @@ msgstr "nameがnullです" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "readBytesUntil()で文字「{1}」が見つかるまで読み込もうとしましたが、バッファの長さ{0}バイトでは足りません。" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "removeCode:内部エラー、対象のコードが見つかりません。" - #: Editor.java:932 msgid "serialMenu is null" msgstr "serialMenuがnullです" @@ -1851,6 +2014,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "シリアルポート「{0}」が選択されていますが、そのポートは存在しないか、マイコンボードが接続されていません。" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "" + #: Preferences.java:391 msgid "upload" msgstr "書き込み" @@ -1874,3 +2042,45 @@ msgstr "{0} | Arduino {1}" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "" diff --git a/arduino-core/src/processing/app/i18n/Resources_ja_JP.properties b/arduino-core/src/processing/app/i18n/Resources_ja_JP.properties index bf80d4f45..870df6f15 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ja_JP.properties +++ b/arduino-core/src/processing/app/i18n/Resources_ja_JP.properties @@ -4,7 +4,7 @@ # Shigeru KANEMOTO . # #, fuzzy -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Japanese (Japan) (http\://www.transifex.com/projects/p/arduino-ide-15/language/ja_JP/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ja_JP\nPlural-Forms\: nplurals\=1; plural\=0;\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 18\:03+0000\nLast-Translator\: Masanori Ohgita \nLanguage-Team\: Japanese (Japan) (http\://www.transifex.com/projects/p/arduino-ide-15/language/ja_JP/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ja_JP\nPlural-Forms\: nplurals\=1; plural\=0;\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ \u5909\u66f4\u306e\u53cd\u6620\u306b\u306fArduino IDE\u306e\u518d\u8d77\u52d5\u304c\u5fc5\u8981 @@ -18,6 +18,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=\u7de8\u96c6\u3059\u308b\u969b\u306b\u306f\u3001Arduino IDE\u3092\u7d42\u4e86\u3055\u305b\u3066\u304a\u3044\u3066\u304f\u3060\u3055\u3044\u3002 +#: ../../../processing/app/Base.java:468 +--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload=--verbose\u3001--verbose-upload \u304a\u3088\u3073 --verbose-build \u306f --verify \u307e\u305f\u306f --upload \u3068\u4e00\u7dd2\u3067\u306e\u307f\u5229\u7528\u3067\u304d\u307e\u3059\u3002 + #: Sketch.java:746 .pde\ ->\ .ino=.pde\u304b\u3089.ino\u3078 @@ -54,9 +57,23 @@ Add\ File...=\u30d5\u30a1\u30a4\u30eb\u3092\u8ffd\u52a0... #: Base.java:963 Add\ Library...=\u30e9\u30a4\u30d6\u30e9\u30ea\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb... +#: ../../../processing/app/Preferences.java:96 +Albanian=\u30a2\u30eb\u30d0\u30cb\u30a2\u8a9e + #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u3092\u4fee\u6b63\u3057\u3088\u3046\u3068\u3057\u307e\u3057\u305f\u304c\u3001\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\n\u4eca\u3053\u3053\u3067\u4fdd\u5b58\u3059\u308b\u3068\u3001\u4fee\u6b63\u524d\u306e\u30b9\u30b1\u30c3\u30c1\u3092\u304a\u304b\u3057\u306a\u5185\u5bb9\u3067\u4e0a\u66f8\u304d\u3057\u3066\u3057\u307e\u3046\n\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002\u30b9\u30b1\u30c3\u30c1\u3092\u958b\u304d\u76f4\u3057\u3066\u3001\u3082\u3046\u4e00\u5ea6\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u306e\n\u4fee\u6b63\u3092\u3057\u3066\u307f\u3066\u304f\u3060\u3055\u3044\u3002\n +#: ../../../processing/app/BaseNoGui.java:528 +An\ error\ occurred\ while\ uploading\ the\ sketch=\u30b9\u30b1\u30c3\u30c1\u3092\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +An\ error\ occurred\ while\ verifying\ the\ sketch=\u30b9\u30b1\u30c3\u30c1\u3092\u691c\u8a3c\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f + +#: ../../../processing/app/BaseNoGui.java:521 +An\ error\ occurred\ while\ verifying/uploading\ the\ sketch=\u30b9\u30b1\u30c3\u30c1\u3092\u691c\u8a3c\u4e2d/\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0\u4f9d\u5b58\u306e\u6a5f\u80fd\u3092\u8aad\u307f\u8fbc\u3080\u969b\u306b\u3001\n\u4f55\u3089\u304b\u306e\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002 @@ -85,7 +102,7 @@ Arduino\ ARM\ (32-bits)\ Boards=Arduino ARM (32\u30d3\u30c3\u30c8) \u30dc\u30fc\ Arduino\ AVR\ Boards=Arduino AVR \u30dc\u30fc\u30c9 #: Editor.java:2137 -!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= +Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Arduino\u306f\u3001\u30d5\u30a1\u30a4\u30eb\u540d\u304c\u62e1\u5f35\u5b50.ino\u307e\u305f\u306f.pde\u3067\u7d42\u308f\u308b\u30b9\u30b1\u30c3\u30c1\u307e\u305f\u306f\u30d5\u30a1\u30a4\u30eb\u306e\u307f\u3092\u958b\u304f\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002 #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=\u8a2d\u5b9a\u3092\u4fdd\u5b58\u3059\u308b\u305f\u3081\u306e\u30d5\u30a9\u30eb\u30c0\u3092\u4f5c\u6210\u3067\u304d\u306a\u3044\u305f\u3081\u3001\u52d5\u4f5c\u3092\u505c\u6b62\u3057\u307e\u3059\u3002 @@ -106,12 +123,33 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u300c{0}\u300d\u3092\u672c\u5f53\ #: Sketch.java:587 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u3053\u306e\u30b9\u30b1\u30c3\u30c1\u3092\u672c\u5f53\u306b\u524a\u9664\u3057\u307e\u3059\u304b\uff1f +#: ../../../processing/app/Base.java:356 +Argument\ required\ for\ --board=--board\u306e\u305f\u3081\u306e\u5f15\u6570\u306f\u5fc5\u9808\u3067\u3059 + +#: ../../../processing/app/Base.java:370 +Argument\ required\ for\ --curdir=--curdir\u306e\u305f\u3081\u306e\u5f15\u6570\u306f\u5fc5\u9808\u3067\u3059 + +#: ../../../processing/app/Base.java:385 +Argument\ required\ for\ --get-pref=--get-pref\u306e\u305f\u3081\u306e\u5f15\u6570\u306f + +#: ../../../processing/app/Base.java:363 +Argument\ required\ for\ --port=--port\u306e\u305f\u3081\u306e\u5f15\u6570\u306f + +#: ../../../processing/app/Base.java:377 +Argument\ required\ for\ --pref=--pref\u306e\u305f\u3081\u306e\u5f15\u6570\u306f + +#: ../../../processing/app/Base.java:384 +Argument\ required\ for\ --preferences-file=--preferences-file\u306e\u305f\u3081\u306e\u5f15\u6570\u306f + #: ../../../processing/app/Preferences.java:137 -!Armenian= +Armenian=\u30a2\u30eb\u30e1\u30cb\u30a2 #: ../../../processing/app/Preferences.java:138 !Asturian= +#: ../../../processing/app/debug/Compiler.java:145 +Authorization\ required=\u304c\u5fc5\u8981\u3067\u3059 + #: tools/AutoFormat.java:91 Auto\ Format=\u81ea\u52d5\u6574\u5f62 @@ -143,6 +181,12 @@ Bad\ error\ line\:\ {0}=\u30a8\u30e9\u30fc\u306e\u884c\u756a\u53f7\u300c{0}\u300 #: Editor.java:2136 Bad\ file\ selected=\u9593\u9055\u3063\u305f\u30d5\u30a1\u30a4\u30eb\u3092\u958b\u304d\u307e\u3057\u305f\u3002 +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +!Basque= + #: ../../../processing/app/Preferences.java:139 !Belarusian= @@ -169,6 +213,9 @@ Browse=\u53c2\u7167 #: Sketch.java:1392 Sketch.java:1423 Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u30d3\u30eb\u30c9\u7528\u306e\u30d5\u30a9\u30eb\u30c0\u304c\u6d88\u3048\u3066\u3057\u307e\u3063\u305f\u304b\u3001\u66f8\u304d\u8fbc\u307f\u304c\u3067\u304d\u307e\u305b\u3093\u3002 +#: ../../../processing/app/Sketch.java:1530 +Build\ options\ changed,\ rebuilding\ all=\u30d3\u30eb\u30c9\u30aa\u30d7\u30b7\u30e7\u30f3\u304c\u5909\u66f4\u3055\u308c\u307e\u3057\u305f\u3002\u5168\u4f53\u3092\u30ea\u30d3\u30eb\u30c9\u3057\u3066\u3044\u307e\u3059\u3002 + #: ../../../processing/app/Preferences.java:80 Bulgarian=\u30d6\u30eb\u30ac\u30ea\u30a2\u8a9e @@ -181,8 +228,13 @@ Burn\ Bootloader=\u30d6\u30fc\u30c8\u30ed\u30fc\u30c0\u3092\u66f8\u304d\u8fbc\u3 #: Editor.java:2504 Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9\u306b\u30d6\u30fc\u30c8\u30ed\u30fc\u30c0\u3092\u66f8\u304d\u8fbc\u3093\u3067\u3044\u307e\u3059... -#: ../../../processing/app/Base.java:368 -Can't\ open\ source\ sketch\!=\u30bd\u30fc\u30b9\u30b9\u30b1\u30c3\u30c1\u3092\u958b\u3051\u307e\u305b\u3093\uff01 +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 !Canadian\ French= @@ -194,6 +246,9 @@ Cancel=\u30ad\u30e3\u30f3\u30bb\u30eb #: Sketch.java:455 Cannot\ Rename=\u540d\u524d\u3092\u5909\u66f4\u3067\u304d\u307e\u305b\u3093\u3002 +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 Carriage\ return=CR\u306e\u307f @@ -227,10 +282,6 @@ Close=\u9589\u3058\u308b #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=\u30b3\u30e1\u30f3\u30c8\u5316\u30fb\u5fa9\u5e30 -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=\u30b3\u30f3\u30d1\u30a4\u30e9\u306e\u30a8\u30e9\u30fc\u3067\u3059\u3002\u554f\u984c\u306e\u8d77\u304d\u305f\u30b9\u30b1\u30c3\u30c1\u3092{0}\u306b\u9001\u3063\u3066\u304f\u3060\u3055\u3044\u3002 - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=\u30b9\u30b1\u30c3\u30c1\u3092\u30b3\u30f3\u30d1\u30a4\u30eb\u3057\u3066\u3044\u307e\u3059... @@ -244,7 +295,7 @@ Copy=\u30b3\u30d4\u30fc Copy\ as\ HTML=HTML\u5f62\u5f0f\u3067\u30b3\u30d4\u30fc\u3059\u308b #: ../../../processing/app/EditorStatus.java:455 -!Copy\ error\ messages= +Copy\ error\ messages=\u30b3\u30d4\u30fc\u30a8\u30e9\u30fc #: Editor.java:1165 Editor.java:2715 Copy\ for\ Forum=\u30d5\u30a9\u30fc\u30e9\u30e0\u6295\u7a3f\u5f62\u5f0f\u3067\u30b3\u30d4\u30fc\u3059\u308b @@ -301,14 +352,13 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=\u30b9\u30b1\u30c3\u30c1\u3092\u4fdd\u5b58\u3057\u76f4\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 #: Theme.java:52 -!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= +Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u8272\u30c6\u30fc\u30de\u8a2d\u5b9a\u3092\u8aad\u307f\u8fbc\u3081\u307e\u305b\u3093\u3002Arduino\u3092\u518d\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u5fc5\u8981\u304c\u308a\u307e\u3059\u3002 #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u65e2\u5b9a\u306e\u8a2d\u5b9a\u3092\u8aad\u307f\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002\nArduino IDE\u3092\u3082\u3046\u4e00\u5ea6\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u304f\u3060\u3055\u3044\u3002 -#: Preferences.java:258 -#, java-format -Could\ not\ read\ preferences\ from\ {0}=\u300c{0}\u300d\u304b\u3089\u8a2d\u5b9a\u3092\u8aad\u307f\u8fbc\u3081\u307e\u305b\u3093\u3067\u3057\u305f\u3002 +#: ../../../processing/app/Sketch.java:1525 +Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=\u524d\u56de\u306e\u30d3\u30eb\u30c9\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u8aad\u307f\u8fbc\u3081\u307e\u305b\u3093\u3002\u5168\u4f53\u3092\u30ea\u30d3\u30eb\u30c9 #: Base.java:2482 #, java-format @@ -331,6 +381,9 @@ Could\ not\ rename\ the\ sketch.\ (2)=\u30b9\u30b1\u30c3\u30c1\u306e\u540d\u524d #, java-format Could\ not\ replace\ {0}=\u300c{0}\u300d\u3092\u7f6e\u304d\u63db\u3048\u308b\u4e8b\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 +#: ../../../processing/app/Sketch.java:1579 +Could\ not\ write\ build\ preferences\ file=\u30d3\u30eb\u30c9\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092 + #: tools/Archiver.java:74 Couldn't\ archive\ sketch=\u30b9\u30b1\u30c3\u30c1\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 @@ -368,7 +421,7 @@ Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ Discard\ all\ changes\ and\ reload\ sketch?=\u672a\u4fdd\u5b58\u306e\u5909\u66f4\u3092\u7834\u68c4\u3057\u3066\u30b9\u30b1\u30c3\u30c1\u3092\u8aad\u307f\u8fbc\u307f\u76f4\u3057\u307e\u3059\u304b\uff1f #: ../../../processing/app/Preferences.java:438 -!Display\ line\ numbers= +Display\ line\ numbers=\u884c\u756a\u53f7\u306e #: Editor.java:2064 Don't\ Save=\u4fdd\u5b58\u3057\u306a\u3044 @@ -379,12 +432,19 @@ Done\ Saving.=\u4fdd\u5b58\u3057\u307e\u3057\u305f\u3002 #: Editor.java:2510 Done\ burning\ bootloader.=\u30d6\u30fc\u30c8\u30ed\u30fc\u30c0\u306e\u66f8\u304d\u8fbc\u307f\u304c\u5b8c\u4e86\u3057\u307e\u3057\u305f\u3002 +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +Done\ compiling=\u30b3\u30f3\u30d1\u30a4\u30eb + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=\u30b3\u30f3\u30d1\u30a4\u30eb\u7d42\u4e86\u3002 #: Editor.java:2564 Done\ printing.=\u5370\u5237\u304c\u5b8c\u4e86\u3057\u307e\u3057\u305f\u3002 +#: ../../../processing/app/BaseNoGui.java:514 +Done\ uploading=\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9 + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9\u3078\u306e\u66f8\u304d\u8fbc\u307f\u304c\u5b8c\u4e86\u3057\u307e\u3057\u305f\u3002 @@ -463,6 +523,9 @@ Error\ while\ burning\ bootloader.=\u30d6\u30fc\u30c8\u30ed\u30fc\u30c0\u306e\u6 #: ../../../processing/app/Editor.java:2555 Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=\u30d6\u30fc\u30c8\u30ed\u30fc\u30c0\u306e\u66f8\u304d\u8fbc\u307f\u4e2d\u306b\u30a8\u30e9\u30fc\: \u8a2d\u5b9a\u30d1\u30e9\u30e1\u30fc\u30bf '{0}' \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093 +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=\u300c{0}\u300d\u304b\u3089\u30b3\u30fc\u30c9\u3092\u8aad\u307f\u8fbc\u3080\u969b\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002 @@ -470,10 +533,21 @@ Error\ while\ loading\ code\ {0}=\u300c{0}\u300d\u304b\u3089\u30b3\u30fc\u30c9\u #: Editor.java:2567 Error\ while\ printing.=\u5370\u5237\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002 +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\: '{0}' \u8a2d\u5b9a\u30d1\u30e9\u30e1\u30fc\u30bf\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093 +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 Estonian=\u30a8\u30b9\u30c8\u30cb\u30a2\u8a9e @@ -489,6 +563,10 @@ Export\ canceled,\ changes\ must\ first\ be\ saved.=\u30a8\u30af\u30b9\u30dd\u30 #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +!Failed\ to\ open\ sketch\:\ "{0}"= + #: Editor.java:491 File=\u30d5\u30a1\u30a4\u30eb @@ -523,8 +601,9 @@ Fix\ Encoding\ &\ Reload=\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u3092\ #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5\u306b\u3064\u3044\u3066\u306f\u3001\u4ee5\u4e0b\u306e\u30da\u30fc\u30b8\u3092\u3054\u89a7\u304f\u3060\u3055\u3044\u3002http\://arduino.cc/en/Guide/Libraries\n -#: debug/BasicUploader.java:80 -Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =\u30b7\u30ea\u30a2\u30eb\u30dd\u30fc\u30c8\u30921200bps\u3067\u958b\u9589\u3059\u308b\u4e8b\u306b\u3088\u308a\u3001\u30ea\u30bb\u30c3\u30c8\u3092\u884c\u306a\u3063\u3066\u3044\u307e\u3059\u3002 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=\u30d5\u30e9\u30f3\u30b9\u8a9e @@ -628,8 +707,8 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=\u30e9\u30a #: Preferences.java:106 Lithuaninan=\u30ea\u30c8\u30a2\u30cb\u30a2\u8a9e -#: ../../../processing/app/Sketch.java:1660 -Low\ memory\ available,\ stability\ problems\ may\ occur=\u5229\u7528\u53ef\u80fd\u306a\u30e1\u30e2\u30ea\u304c\u5c11\u306a\u304f\u306a\u3063\u3066\u3044\u307e\u3059\u3002\n\u5b89\u5b9a\u6027\u306b\u554f\u984c\u304c\u751f\u3058\u308b\u6050\u308c\u304c\u3042\u308a\u307e\u3059\u3002 +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 Marathi=\u30de\u30e9\u30fc\u30c6\u30a3\u8a9e @@ -640,12 +719,24 @@ Message=\u30e1\u30c3\u30bb\u30fc\u30b8 #: ../../../processing/app/preproc/PdePreprocessor.java:412 !Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\u4ee5\u4e0b\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u76f4\u63a5\u7de8\u96c6\u3059\u308c\u3070\u3001\u3088\u308a\u591a\u304f\u306e\u8a2d\u5b9a\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002 #: Editor.java:2156 Moving=\u79fb\u52d5\u4e2d +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +!Must\ specify\ exactly\ one\ sketch\ file= + +#: ../../../processing/app/Preferences.java:158 +!N'Ko= + #: Sketch.java:282 Name\ for\ new\ file\:=\u65b0\u898f\u30d5\u30a1\u30a4\u30eb\u306e\u540d\u524d\uff1a @@ -673,12 +764,18 @@ Next\ Tab=\u6b21\u306e\u30bf\u30d6 #: Preferences.java:78 UpdateCheck.java:108 No=\u3044\u3044\u3048 +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9\u304c\u9078\u3070\u308c\u3066\u3044\u307e\u305b\u3093\u3002\u300c\u30c4\u30fc\u30eb\u300d\u30e1\u30cb\u30e5\u30fc\u306e\u300c\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9\u300d\u306e\u9078\u629e\u80a2\u304b\u3089\u3001\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9\u3092\u9078\u3093\u3067\u304f\u3060\u3055\u3044\u3002 #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=\u6574\u5f62\u306e\u5fc5\u8981\u306f\u3042\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002 +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=\u30b9\u30b1\u30c3\u30c1\u306b\u30d5\u30a1\u30a4\u30eb\u306f\u8ffd\u52a0\u3055\u308c\u307e\u305b\u3093\u3067\u3057\u305f\u3002 @@ -688,6 +785,9 @@ No\ launcher\ available=\u5916\u90e8\u30d7\u30ed\u30b0\u30e9\u30e0\u8d77\u52d5\u #: SerialMonitor.java:112 No\ line\ ending=\u6539\u884c\u306a\u3057 +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u5148\u7a0b\u3082\u6307\u6458\u3057\u305f\u3088\u3046\u306b\u3001\u4eca\u65e5\u306f\u9811\u5f35\u308a\u3059\u304e\u3067\u3059\u3002 @@ -695,6 +795,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u5148\u7a0b\u3082\u6307\u64 #, java-format No\ reference\ available\ for\ "{0}"=\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb\u306b\u300c{0}\u300d\u306f\u3042\u308a\u307e\u305b\u3093\u3002 +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +!No\ valid\ code\ files\ found= + #: ../../../processing/app/Base.java:309 No\ valid\ configured\ cores\ found\!\ Exiting...=\u6709\u52b9\u306a\u69cb\u6210\u3055\u308c\u305f\u30b3\u30a2\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\uff01 \u7d42\u4e86\u3057\u3066\u3044\u307e\u3059... @@ -721,6 +831,9 @@ OK=OK #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=\u30b9\u30b1\u30c3\u30c1\u306b\u30d5\u30a1\u30a4\u30eb\u30921\u500b\u8ffd\u52a0\u3057\u307e\u3057\u305f\u3002 +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=\u958b\u304f @@ -748,12 +861,22 @@ Paste=\u8cbc\u308a\u4ed8\u3051 #: Preferences.java:109 Persian=\u30da\u30eb\u30b7\u30e3\u8a9e +#: ../../../processing/app/Preferences.java:161 +!Persian\ (Iran)= + #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=\u300c\u30b9\u30b1\u30c3\u30c1\u300d\u30e1\u30cb\u30e5\u30fc\u306e\u300c\u30e9\u30a4\u30d6\u30e9\u30ea\u3092\u4f7f\u7528\u300d\u3067\u3001SPI\u30e9\u30a4\u30d6\u30e9\u30ea\u3092\u8aad\u307f\u8fbc\u3093\u3067\u304f\u3060\u3055\u3044\u3002 +#: ../../../processing/app/debug/Compiler.java:529 +!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=JDK\u306e\u30d0\u30fc\u30b8\u30e7\u30f31.5\u4ee5\u964d\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u304f\u3060\u3055\u3044\u3002 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 Polish=\u30dd\u30fc\u30e9\u30f3\u30c9\u8a9e @@ -875,9 +998,15 @@ Save\ changes\ to\ "{0}"?\ \ =\u5909\u66f4\u5185\u5bb9\u3092\u300c{0}\u300d\u306 #: Sketch.java:825 Save\ sketch\ folder\ as...=\u30b9\u30b1\u30c3\u30c1\u306e\u30d5\u30a9\u30eb\u30c0\u306e\u4fdd\u5b58\u5148... +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=\u4fdd\u5b58\u4e2d\u3067\u3059... +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=\u30b9\u30b1\u30c3\u30c1\u3092\u4fdd\u5b58\u3059\u308b\u30d5\u30a9\u30eb\u30c0\u3092\u9078\u629e\u3059\u308b\u304b\u4f5c\u6210\u3057\u3066\u304f\u3060\u3055\u3044\u3002 @@ -902,14 +1031,6 @@ Send=\u9001\u4fe1 #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=\u30b7\u30ea\u30a2\u30eb\u30e2\u30cb\u30bf -#: Serial.java:174 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=\u30b7\u30ea\u30a2\u30eb\u30dd\u30fc\u30c8\u300c{0}\u300d\u306f\u3001\u307b\u304b\u306e\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u304c\u4f7f\u7528\u4e2d\u3067\u3059\u3002\u30b7\u30ea\u30a2\u30eb\u30dd\u30fc\u30c8\u3092\u4f7f\u3063\u3066\u3044\u308b\u53ef\u80fd\u6027\u306e\u3042\u308b\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3057\u3066\u307f\u3066\u304f\u3060\u3055\u3044\u3002 - -#: Serial.java:121 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=\u30b7\u30ea\u30a2\u30eb\u30dd\u30fc\u30c8\u300c{0}\u300d\u306f\u3001\u4ed6\u306e\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3067\u4f7f\u308f\u308c\u3066\u3044\u307e\u3059\u3002\u30b7\u30ea\u30a2\u30eb\u30dd\u30fc\u30c8\u3092\u4f7f\u3063\u3066\u3044\u308b\u53ef\u80fd\u6027\u306e\u6709\u308b\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u3092\u7d42\u4e86\u3055\u305b\u3066\u307f\u3066\u304f\u3060\u3055\u3044\u3002 - #: Serial.java:194 #, java-format Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=\u30b7\u30ea\u30a2\u30eb\u30dd\u30fc\u30c8\u300c{0}\u300d\u304c\u5b58\u5728\u3057\u307e\u305b\u3093\u3002\u300c\u30c4\u30fc\u30eb\u300d\u30e1\u30cb\u30e5\u30fc\u306e\u300c\u30b7\u30ea\u30a2\u30eb\u30dd\u30fc\u30c8\u300d\u3067\u3001\u6b63\u3057\u3044\u30b7\u30ea\u30a2\u30eb\u30dd\u30fc\u30c8\u3092\u9078\u3093\u3067\u3042\u308a\u307e\u3059\u304b\uff1f @@ -964,6 +1085,9 @@ Sketchbook\ folder\ disappeared=\u30b9\u30b1\u30c3\u30c1\u30d6\u30c3\u30af\u306e #: Preferences.java:315 Sketchbook\ location\:=\u30b9\u30b1\u30c3\u30c1\u30d6\u30c3\u30af\u306e\u4fdd\u5b58\u5834\u6240\uff1a +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 Sketches\ (*.ino,\ *.pde)=\u30b9\u30b1\u30c3\u30c1 (*.ino, *pde) @@ -998,6 +1122,9 @@ Tamil=\u30bf\u30df\u30eb\u8a9e #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=\u300cBYTE\u300d\u30ad\u30fc\u30ef\u30fc\u30c9\u306f\u3001\u4f7f\u7528\u3067\u304d\u306a\u304f\u306a\u308a\u307e\u3057\u305f\u3002 +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=\u300cClient\u300d\u30af\u30e9\u30b9\u306f\u300cEthernetClient\u300d\u306b\u540d\u79f0\u5909\u66f4\u3055\u308c\u307e\u3057\u305f\u3002 @@ -1034,12 +1161,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=\u30b9\u30b1\u30c3\u30c1\u3092\u4fdd\u5b58\u3057\u3066\u3042\u3063\u305f\u30d5\u30a9\u30eb\u30c0\u304c\u7121\u304f\u306a\u3063\u3066\u3057\u307e\u3044\u307e\u3057\u305f\u3002\n\u540c\u3058\u5834\u6240\u306b\u4fdd\u5b58\u3057\u306a\u304a\u3057\u307e\u3059\u304c\u3001\u3053\u306e\u30b9\u30b1\u30c3\u30c1\u3068\u4e00\u7dd2\u306b\u4fdd\u5b58\u3057\u3066\u3042\u3063\u305f\n\u30d5\u30a1\u30a4\u30eb\u306f\u7121\u304f\u306a\u308b\u304b\u3082\u3057\u308c\u307e\u305b\u3093\u3002 -#: Sketch.java:2018 -The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=\u90fd\u5408\u306b\u3088\u308a\u3001\u30b9\u30b1\u30c3\u30c1\u306e\u540d\u524d\u3092\u5909\u66f4\u3057\u307e\u3057\u305f\u3002\n\u30b9\u30b1\u30c3\u30c1\u306e\u540d\u524d\u306b\u4f7f\u3048\u308b\u6587\u5b57\u306f\u534a\u89d2\u82f1\u6570\u5b57\u3067\u3059\uff08\u6570\u5b57\u306f\u5148\u982d\u3092\u9664\u304f\uff09\u3002\n\u307e\u305f\u300164\u6587\u5b57\u4ee5\u4e0b\u3067\u3042\u308b\u3053\u3068\u304c\u5fc5\u8981\u3067\u3059\u3002 +#: ../../../processing/app/Sketch.java:2028 +!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=\u30b9\u30b1\u30c3\u30c1\u30d6\u30c3\u30af\u306e\u4fdd\u5b58\u5834\u6240\u30d5\u30a9\u30eb\u30c0\u304c\u6709\u308a\u307e\u305b\u3093\u3002\n\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u5834\u6240\u306b\u30b9\u30b1\u30c3\u30c1\u30d6\u30c3\u30af\u306e\u4fdd\u5b58\u5834\u6240\n\u30d5\u30a9\u30eb\u30c0\u3092\u4f5c\u6210\u3057\u3001\u4eca\u5f8c\u306f\u3053\u3061\u3089\u3092\u4f7f\u7528\u3057\u307e\u3059\u3002 +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u3053\u306e\u30d5\u30a1\u30a4\u30eb\u306f\u3059\u3067\u306b\u30b3\u30d4\u30fc\u3055\u308c\u3066\u30b9\u30b1\u30c3\u30c1\u306e\u4e2d\u306b\u3042\u308a\u307e\u3059\u3002\u307e\u3060\u3001\u4f55\u3082\u3057\u3066\u307e\u305b\u3093\u3088\uff01 @@ -1143,6 +1273,10 @@ Verify\ code\ after\ upload=\u66f8\u304d\u8fbc\u307f\u3092\u691c\u8a3c\u3059\u30 #: Editor.java:1105 Visit\ Arduino.cc=Arduino.cc\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u3092\u958b\u304f +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= + #: Base.java:2128 Warning=\u8b66\u544a @@ -1241,9 +1375,6 @@ environment=environment #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1266,13 +1397,6 @@ name\ is\ null=name\u304cnull\u3067\u3059 #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil()\u3067\u6587\u5b57\u300c{1}\u300d\u304c\u898b\u3064\u304b\u308b\u307e\u3067\u8aad\u307f\u8fbc\u3082\u3046\u3068\u3057\u307e\u3057\u305f\u304c\u3001\u30d0\u30c3\u30d5\u30a1\u306e\u9577\u3055{0}\u30d0\u30a4\u30c8\u3067\u306f\u8db3\u308a\u307e\u305b\u3093\u3002 - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\uff1a\u5185\u90e8\u30a8\u30e9\u30fc\u3001\u5bfe\u8c61\u306e\u30b3\u30fc\u30c9\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002 - #: Editor.java:932 serialMenu\ is\ null=serialMenu\u304cnull\u3067\u3059 @@ -1280,6 +1404,10 @@ serialMenu\ is\ null=serialMenu\u304cnull\u3067\u3059 #, java-format the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=\u30b7\u30ea\u30a2\u30eb\u30dd\u30fc\u30c8\u300c{0}\u300d\u304c\u9078\u629e\u3055\u308c\u3066\u3044\u307e\u3059\u304c\u3001\u305d\u306e\u30dd\u30fc\u30c8\u306f\u5b58\u5728\u3057\u306a\u3044\u304b\u3001\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9\u304c\u63a5\u7d9a\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002 +#: ../../../processing/app/Base.java:389 +#, java-format +!unknown\ option\:\ {0}= + #: Preferences.java:391 upload=\u66f8\u304d\u8fbc\u307f @@ -1298,3 +1426,35 @@ upload=\u66f8\u304d\u8fbc\u307f #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= + +#: ../../../processing/app/Base.java:476 +#, java-format +!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= + +#: ../../../processing/app/Base.java:509 +#, java-format +!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= + +#: ../../../processing/app/Base.java:507 +#, java-format +!{0}\:\ Invalid\ option\ for\ board\ "{1}"= + +#: ../../../processing/app/Base.java:502 +#, java-format +!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= + +#: ../../../processing/app/Base.java:486 +#, java-format +!{0}\:\ Unknown\ architecture= + +#: ../../../processing/app/Base.java:491 +#, java-format +!{0}\:\ Unknown\ board= + +#: ../../../processing/app/Base.java:481 +#, java-format +!{0}\:\ Unknown\ package= diff --git a/arduino-core/src/processing/app/i18n/Resources_ka_GE.po b/arduino-core/src/processing/app/i18n/Resources_ka_GE.po index 353cd1685..129efe979 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ka_GE.po +++ b/arduino-core/src/processing/app/i18n/Resources_ka_GE.po @@ -34,6 +34,12 @@ msgstr "'Mouse'-ის მხარდაჭერა აქვს მხოლ msgid "(edit only when Arduino is not running)" msgstr "(ჩაასწორეთ მხოლოდ როცა Arduino გათიშულია)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -92,6 +98,10 @@ msgstr "ფაილის დამატება..." msgid "Add Library..." msgstr "ბიბლიოთეკის დამატება..." +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "ალბანური" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -99,6 +109,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "შეცდომა ფაილის კოდირების შეკეთებისას.\nარ შეეცადოთ ჩანახატის შენახვა, რადგან შეიძლება ზედგადააწეროს\nძველ ვერსიას. გამოიყენეთ 'გახსნა' ფაილი გადატვირთვისთვის და კიდევ სცადეთ.\n" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -177,6 +201,30 @@ msgstr "ნამდვილად გსურთ \"{0}\"-ის წაშლ msgid "Are you sure you want to delete this sketch?" msgstr "ნამდვილად გსურთ მოცემული ჩანახატის წაშლა?" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "ბრძანება --board მოითხოვს არგუმენტს" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "ბრძანება --curdir მოითხოვს არგუმენტს" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "ბრძანება --port მოითხოვს არგუმენტს" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "ბრძანება --pref მოითხოვს არგუმენტს" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "ბრძანება --preferences-file მოითხოვს არგუმენტს" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "სომხური" @@ -185,6 +233,10 @@ msgstr "სომხური" msgid "Asturian" msgstr "ავსტრიული" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "ავტოდაფორმატება" @@ -226,6 +278,14 @@ msgstr "ცუდი შეცდომის ხაზი:{0}" msgid "Bad file selected" msgstr "არჩეულია არასწორი ფაილი" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "ბასკური" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "ბელარუსული" @@ -262,6 +322,10 @@ msgstr "ნახვა" msgid "Build folder disappeared or could not be written" msgstr "ასაწყობი საქაღალდე არ მოიძებნა, ან შეუძლებელია მასში ჩაწერა" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "აწყობის მომართვა შეიცვალა; იწყობა ხელახლა" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "ბულგარული" @@ -278,9 +342,15 @@ msgstr "ჩამტვირთველის ჩაწერა" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "ჩამტვირთველის ჩაწერა I/O დაფაზე (შესაძლოა ერთი წუთი დასჭირდეს)..." -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" -msgstr "ვერ მოხერხდა პირველწყაროს ჩანახატის გახსნა!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" +msgstr "" #: ../../../processing/app/Preferences.java:92 msgid "Canadian French" @@ -295,6 +365,10 @@ msgstr "გაუქმება" msgid "Cannot Rename" msgstr "გადარქმევა შეუძლებელია" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "ახალ სტრიქონზე გადასვლა" @@ -339,11 +413,6 @@ msgstr "დახურვა" msgid "Comment/Uncomment" msgstr "კომენტარის გადართვა" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "მაკომპილირებლის შეცდომა, გთხოვთ გააგზავნეთ ეს კოდი შემდეგ მისამართზე {0}" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "ჩანახატის დაკომპილება..." @@ -451,10 +520,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "შეუძლებელია ნაგულისხმები მომართვის წაკითხვა.\nგთხოვთ გადააყენოთ Arduino." -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "შეუძლებელია მომართვის ამოკითხვა ფაილიდან {0}" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "აწყობის წინა მომართვის ფაილის წაკითხვა ვერ მოხერხდა; იწყობა ხელახლა" #: Base.java:2482 #, java-format @@ -483,6 +551,10 @@ msgstr "ჩანახატის გადარქმევა შეუძ msgid "Could not replace {0}" msgstr "შეუძლებელია ჩანაცვლდეს {0}" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "აწყობის ფაილის ჩაწერა ვერ მოხერხდა" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "ვერ მოხერხდა ჩანახატის არქივში გადატანა" @@ -552,6 +624,11 @@ msgstr "შენახვა დასრულდა." msgid "Done burning bootloader." msgstr "ჩამტვირთველის ჩაწერა დასრულებულია." +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "დაკომპილება დასრულდა." @@ -560,6 +637,10 @@ msgstr "დაკომპილება დასრულდა." msgid "Done printing." msgstr "ბეჭდვა დასრულდა" +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "ატვირთვა დასრულდა." @@ -663,6 +744,10 @@ msgstr "შეცდომა ჩამტვირთველის ჩაწ msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "შეცდომა ჩამტვირთველის ჩაწერისას: ვერ მოიძებნა კონფიგურაციის პარამეტრი '{0}'" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -672,11 +757,25 @@ msgstr "შეცდომა შემდეგი კოდის ჩატვ msgid "Error while printing." msgstr "შეცდომა ბეჭდვისას." +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "შეცდომა ატვირთვისას: ვერ მოიძებნა კონფიგურაციის პარამეტრი '{0}'" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "ესტონური" @@ -697,6 +796,11 @@ msgstr "გატანა გაუქმებულია, რადგან msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "ვერ მოხერხდა ჩანახატის გახსნა: \"{0}\"" + #: Editor.java:491 msgid "File" msgstr "ფაილი" @@ -744,9 +848,10 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "დამატებითი ცნობებისთვის იმაზე, თუ როგორ ყენდება ბიბლიოთეკები, იხ.: http://arduino.cc/en/Guide/Libraries\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " -msgstr "ძალდატანილია ჩამოყრა პორტზე გახსნა-დახურვის 1200bps სიგნალით" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" +msgstr "" #: Preferences.java:95 msgid "French" @@ -894,9 +999,9 @@ msgstr "ბიბლიოთეკა დაემატა ჩამონა msgid "Lithuaninan" msgstr "ლიტვური" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" -msgstr "ხელმისაწვდომია მეხსიერება მცირეა, შესაძლოა შეფერხებებს ადგილი ჰქონდეს" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." +msgstr "" #: Preferences.java:107 msgid "Marathi" @@ -910,6 +1015,10 @@ msgstr "შეტყობინება" msgid "Missing the */ from the end of a /* comment */" msgstr "არ მოიძებნება */ დაბოლოება კომენტარის ბლოკიდან /* კომენტარი */" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "მეტი ცვლილების შეტანა შესაძლებელია უშუალოდ ფაილიდან" @@ -918,6 +1027,18 @@ msgstr "მეტი ცვლილების შეტანა შესა msgid "Moving" msgstr "გადატანა" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "უნდა მიუთითოთ ჩანახატის მხოლოდ ერთი ფაილი" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "" + #: Sketch.java:282 msgid "Name for new file:" msgstr "ახალი ფაილის სახელი:" @@ -954,6 +1075,10 @@ msgstr "შემდეგი ჩანართი" msgid "No" msgstr "არა" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "დაფა არჩეული არ არის; გთხოვთ აირჩიოთ მენიუდან 'ხელსაწყოები' -> 'დაფა'" @@ -962,6 +1087,10 @@ msgstr "დაფა არჩეული არ არის; გთხოვ msgid "No changes necessary for Auto Format." msgstr "ავტო-ფორმატირებისთვის ცვლილებები საჭირო არ არის." +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "ჩანახატს ფაილები არ დაემატა." @@ -974,6 +1103,10 @@ msgstr "გამშვვები ხელმისაწვდომი ა msgid "No line ending" msgstr "სტრიქონის ბოლოს გარეშე" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "მართლა, დროა სუფთა ჰაერზე გახვიდეთ." @@ -983,6 +1116,19 @@ msgstr "მართლა, დროა სუფთა ჰაერზე გ msgid "No reference available for \"{0}\"" msgstr "ცნობა \"{0}\"-თვის მიუწვდომელია" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "არ მოიძებნა მართებული კოდური ფაილები" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "არ მოიძებნა გამართული ბირთვები! ითიშება..." @@ -1019,6 +1165,10 @@ msgstr "OK" msgid "One file added to the sketch." msgstr "ჩანახატს დაემატა ერთი ფაილი." +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "გახსნა" @@ -1055,14 +1205,27 @@ msgstr "ჩასმა" msgid "Persian" msgstr "სპარსული" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "სპარსული (ირანი)" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "შემოიტანეთ SPI ბიბლიოთეკა მენიუდან 'ჩანახატი' -> 'ბიბლიოთეკის შემოტანა'" +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "შემოიტანეთ Wire ბიბლიოთეკა მენიუდან 'ჩანახატი' -> 'ბიბლიოთეკის შემოტანა'" + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "გთხოვთ ჩააყენოთ JDK 1.5 ან უფრო ახალი" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "პოლონური" @@ -1225,10 +1388,18 @@ msgstr "შენახვა \"{0}\" ფაილის ცვლილებ msgid "Save sketch folder as..." msgstr "ჩანახატის საქაღალდის შენახვა როგორც..." +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "შენახვა..." +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "აირჩიეთ (ან შექმენით ახალი) საქაღალდე ჩანახატებისთვის..." @@ -1261,20 +1432,6 @@ msgstr "გაგზავნა" msgid "Serial Monitor" msgstr "მიმდევრობითი პორტის მონიტორინგი" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "სერიული პორტი ''{0}'' უკვე გამოიყენება. შეეცადეთ გათიშოთ პროგრამები, რომლებიც მას იყენებენ." - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "სერიული პორტი ''{0}'' უკვე გამოიყენება. შეეცადეთ გათიშოთ პროგრამები, რომლებიც მას იყენებენ." - #: Serial.java:194 #, java-format msgid "" @@ -1354,6 +1511,10 @@ msgstr "ალბომის საქაღლდე არ მოიძებ msgid "Sketchbook location:" msgstr "ალბომის მდებარეობა:" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "ჩანახატები (*.ino, *.pde)" @@ -1404,6 +1565,10 @@ msgstr "ტამილური" msgid "The 'BYTE' keyword is no longer supported." msgstr "საკვანძო სიტყვა 'BYTE' აღარ არის მხარდაჭერილი." +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "Client კლასის ახალი სახელი არის EthernetClient" @@ -1471,12 +1636,12 @@ msgid "" "but anything besides the code will be lost." msgstr "ჩანახატის საქაღალდე არ მოიძებნა.\nშევეცდები იგივე ადგილას შენახვას, მაგრამ\nყველაფერი მოცემული კოდის გარდა დაიკარგება." -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." -msgstr "ჩანახატს უნდა შეეცვალოს სახელი. ის შეიძლება შედგებოდეს\nმხოლოდ ASCII სიმბოლოებისა და ციფრებისაგან (მაგრამ არ შეიძლება იწყებოდეს ციფრით).\nდასახელება უნდა შეიცავდეს არაუმეტეს 64 სიმბოლოსა." +"They should also be less than 64 characters long." +msgstr "" #: Base.java:259 msgid "" @@ -1487,6 +1652,12 @@ msgid "" "himself in the third person." msgstr "ალბომის საქაღალდე აღარ არსებობს.\nArduino გამოიყენებს ალბომების ნაგულისხმებ\nმდებარეობას და შექმნის ახალ ალბომს თუ ეს\nსაჭირო იქნება. Arduino აღარ ისაუბრებს მის\nშესახებ მესამე პირში." +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1629,6 +1800,13 @@ msgstr "ვიეტნამური" msgid "Visit Arduino.cc" msgstr "ეწვიეთ საიტს Arduino.cc" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "გაფრთხილება: ბიბლიოთეკა {0} აცხადებს, რომ მუშაობს {1} არქიტექტურაზე და შესაძლებელია არ იყოს თავსებადი თქვენს დაფასთან, რომელიც მუშაობს {2} არქიტექტურაზე" + #: Base.java:2128 msgid "Warning" msgstr "გაფრთხილება" @@ -1797,10 +1975,6 @@ msgstr "environment" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "http://github.com/arduino/Arduino/issues" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1830,17 +2004,6 @@ msgstr "name არის ბათილი" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "readBytesUntil() ბაიტური ბუფერი მეტისმეტად მცირეა {0} ბაიტისთვის char {1}-დე და მის ჩათვლით" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "removeCode: შინაგანი შეცდომა... კოდი არ მოიძებნა" - #: Editor.java:932 msgid "serialMenu is null" msgstr "serialMenu არის ბათილი" @@ -1851,6 +2014,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "არჩეული სერიული პორტი {0} არ არსებობს ან დაფა დაკავშირებული არ არის." +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "უცნობი ოფცია:{0}" + #: Preferences.java:391 msgid "upload" msgstr "ატვირთვა" @@ -1874,3 +2042,45 @@ msgstr "{0} | Arduino {1}" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "{0}: უცნობი არქიტექტურა" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "{0}: უცნობი დაფა" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "{0}: უცნობი პაკეტი" diff --git a/arduino-core/src/processing/app/i18n/Resources_ka_GE.properties b/arduino-core/src/processing/app/i18n/Resources_ka_GE.properties index d408798e1..16fca07c2 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ka_GE.properties +++ b/arduino-core/src/processing/app/i18n/Resources_ka_GE.properties @@ -18,6 +18,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(\u10e9\u10d0\u10d0\u10e1\u10ec\u10dd\u10e0\u10d4\u10d7 \u10db\u10ee\u10dd\u10da\u10dd\u10d3 \u10e0\u10dd\u10ea\u10d0 Arduino \u10d2\u10d0\u10d7\u10d8\u10e8\u10e3\u10da\u10d8\u10d0) +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -54,9 +57,23 @@ Add\ File...=\u10e4\u10d0\u10d8\u10da\u10d8\u10e1 \u10d3\u10d0\u10db\u10d0\u10e2 #: Base.java:963 Add\ Library...=\u10d1\u10d8\u10d1\u10da\u10d8\u10dd\u10d7\u10d4\u10d9\u10d8\u10e1 \u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10d0... +#: ../../../processing/app/Preferences.java:96 +Albanian=\u10d0\u10da\u10d1\u10d0\u10dc\u10e3\u10e0\u10d8 + #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=\u10e8\u10d4\u10ea\u10d3\u10dd\u10db\u10d0 \u10e4\u10d0\u10d8\u10da\u10d8\u10e1 \u10d9\u10dd\u10d3\u10d8\u10e0\u10d4\u10d1\u10d8\u10e1 \u10e8\u10d4\u10d9\u10d4\u10d7\u10d4\u10d1\u10d8\u10e1\u10d0\u10e1.\n\u10d0\u10e0 \u10e8\u10d4\u10d4\u10ea\u10d0\u10d3\u10dd\u10d7 \u10e9\u10d0\u10dc\u10d0\u10ee\u10d0\u10e2\u10d8\u10e1 \u10e8\u10d4\u10dc\u10d0\u10ee\u10d5\u10d0, \u10e0\u10d0\u10d3\u10d2\u10d0\u10dc \u10e8\u10d4\u10d8\u10eb\u10da\u10d4\u10d1\u10d0 \u10d6\u10d4\u10d3\u10d2\u10d0\u10d3\u10d0\u10d0\u10ec\u10d4\u10e0\u10dd\u10e1\n\u10eb\u10d5\u10d4\u10da \u10d5\u10d4\u10e0\u10e1\u10d8\u10d0\u10e1. \u10d2\u10d0\u10db\u10dd\u10d8\u10e7\u10d4\u10dc\u10d4\u10d7 '\u10d2\u10d0\u10ee\u10e1\u10dc\u10d0' \u10e4\u10d0\u10d8\u10da\u10d8 \u10d2\u10d0\u10d3\u10d0\u10e2\u10d5\u10d8\u10e0\u10d7\u10d5\u10d8\u10e1\u10d7\u10d5\u10d8\u10e1 \u10d3\u10d0 \u10d9\u10d8\u10d3\u10d4\u10d5 \u10e1\u10ea\u10d0\u10d3\u10d4\u10d7.\n +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=\u10d7\u10e5\u10d5\u10d4\u10dc\u10d8 \u10db\u10d0\u10dc\u10e5\u10d0\u10dc\u10d8\u10e1 \u10de\u10da\u10d0\u10e2\u10e4\u10dd\u10e0\u10db\u10d8\u10e1\u10d7\u10d5\u10d8\u10e1 \u10d2\u10d0\u10dc\u10d9\u10e3\u10d7\u10d5\u10dc\u10d8\u10da\u10d8\n\u10d9\u10dd\u10d3\u10d8\u10e1 \u10e9\u10d0\u10e2\u10d5\u10d8\u10e0\u10d7\u10d5\u10d8\u10e1\u10d0\u10e1 \u10e8\u10d4\u10d8\u10e5\u10db\u10dc\u10d0 \u10e3\u10ea\u10dc\u10dd\u10d1\u10d8 \u10e8\u10d4\u10ea\u10d3\u10dd\u10db\u10d0. @@ -106,12 +123,33 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u10dc\u10d0\u10db\u10d3\u10d5\u10 #: Sketch.java:587 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u10dc\u10d0\u10db\u10d3\u10d5\u10d8\u10da\u10d0\u10d3 \u10d2\u10e1\u10e3\u10e0\u10d7 \u10db\u10dd\u10ea\u10d4\u10db\u10e3\u10da\u10d8 \u10e9\u10d0\u10dc\u10d0\u10ee\u10d0\u10e2\u10d8\u10e1 \u10ec\u10d0\u10e8\u10da\u10d0? +#: ../../../processing/app/Base.java:356 +Argument\ required\ for\ --board=\u10d1\u10e0\u10eb\u10d0\u10dc\u10d4\u10d1\u10d0 --board \u10db\u10dd\u10d8\u10d7\u10ee\u10dd\u10d5\u10e1 \u10d0\u10e0\u10d2\u10e3\u10db\u10d4\u10dc\u10e2\u10e1 + +#: ../../../processing/app/Base.java:370 +Argument\ required\ for\ --curdir=\u10d1\u10e0\u10eb\u10d0\u10dc\u10d4\u10d1\u10d0 --curdir \u10db\u10dd\u10d8\u10d7\u10ee\u10dd\u10d5\u10e1 \u10d0\u10e0\u10d2\u10e3\u10db\u10d4\u10dc\u10e2\u10e1 + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +Argument\ required\ for\ --port=\u10d1\u10e0\u10eb\u10d0\u10dc\u10d4\u10d1\u10d0 --port \u10db\u10dd\u10d8\u10d7\u10ee\u10dd\u10d5\u10e1 \u10d0\u10e0\u10d2\u10e3\u10db\u10d4\u10dc\u10e2\u10e1 + +#: ../../../processing/app/Base.java:377 +Argument\ required\ for\ --pref=\u10d1\u10e0\u10eb\u10d0\u10dc\u10d4\u10d1\u10d0 --pref \u10db\u10dd\u10d8\u10d7\u10ee\u10dd\u10d5\u10e1 \u10d0\u10e0\u10d2\u10e3\u10db\u10d4\u10dc\u10e2\u10e1 + +#: ../../../processing/app/Base.java:384 +Argument\ required\ for\ --preferences-file=\u10d1\u10e0\u10eb\u10d0\u10dc\u10d4\u10d1\u10d0 --preferences-file \u10db\u10dd\u10d8\u10d7\u10ee\u10dd\u10d5\u10e1 \u10d0\u10e0\u10d2\u10e3\u10db\u10d4\u10dc\u10e2\u10e1 + #: ../../../processing/app/Preferences.java:137 Armenian=\u10e1\u10dd\u10db\u10ee\u10e3\u10e0\u10d8 #: ../../../processing/app/Preferences.java:138 Asturian=\u10d0\u10d5\u10e1\u10e2\u10e0\u10d8\u10e3\u10da\u10d8 +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 Auto\ Format=\u10d0\u10d5\u10e2\u10dd\u10d3\u10d0\u10e4\u10dd\u10e0\u10db\u10d0\u10e2\u10d4\u10d1\u10d0 @@ -143,6 +181,12 @@ Bad\ error\ line\:\ {0}=\u10ea\u10e3\u10d3\u10d8 \u10e8\u10d4\u10ea\u10d3\u10dd\ #: Editor.java:2136 Bad\ file\ selected=\u10d0\u10e0\u10e9\u10d4\u10e3\u10da\u10d8\u10d0 \u10d0\u10e0\u10d0\u10e1\u10ec\u10dd\u10e0\u10d8 \u10e4\u10d0\u10d8\u10da\u10d8 +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +Basque=\u10d1\u10d0\u10e1\u10d9\u10e3\u10e0\u10d8 + #: ../../../processing/app/Preferences.java:139 Belarusian=\u10d1\u10d4\u10da\u10d0\u10e0\u10e3\u10e1\u10e3\u10da\u10d8 @@ -169,6 +213,9 @@ Browse=\u10dc\u10d0\u10ee\u10d5\u10d0 #: Sketch.java:1392 Sketch.java:1423 Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u10d0\u10e1\u10d0\u10ec\u10e7\u10dd\u10d1\u10d8 \u10e1\u10d0\u10e5\u10d0\u10e6\u10d0\u10da\u10d3\u10d4 \u10d0\u10e0 \u10db\u10dd\u10d8\u10eb\u10d4\u10d1\u10dc\u10d0, \u10d0\u10dc \u10e8\u10d4\u10e3\u10eb\u10da\u10d4\u10d1\u10d4\u10da\u10d8\u10d0 \u10db\u10d0\u10e1\u10e8\u10d8 \u10e9\u10d0\u10ec\u10d4\u10e0\u10d0 +#: ../../../processing/app/Sketch.java:1530 +Build\ options\ changed,\ rebuilding\ all=\u10d0\u10ec\u10e7\u10dd\u10d1\u10d8\u10e1 \u10db\u10dd\u10db\u10d0\u10e0\u10d7\u10d5\u10d0 \u10e8\u10d4\u10d8\u10ea\u10d5\u10d0\u10da\u10d0; \u10d8\u10ec\u10e7\u10dd\u10d1\u10d0 \u10ee\u10d4\u10da\u10d0\u10ee\u10da\u10d0 + #: ../../../processing/app/Preferences.java:80 Bulgarian=\u10d1\u10e3\u10da\u10d2\u10d0\u10e0\u10e3\u10da\u10d8 @@ -181,8 +228,13 @@ Burn\ Bootloader=\u10e9\u10d0\u10db\u10e2\u10d5\u10d8\u10e0\u10d7\u10d5\u10d4\u1 #: Editor.java:2504 Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u10e9\u10d0\u10db\u10e2\u10d5\u10d8\u10e0\u10d7\u10d5\u10d4\u10da\u10d8\u10e1 \u10e9\u10d0\u10ec\u10d4\u10e0\u10d0 I/O \u10d3\u10d0\u10e4\u10d0\u10d6\u10d4 (\u10e8\u10d4\u10e1\u10d0\u10eb\u10da\u10dd\u10d0 \u10d4\u10e0\u10d7\u10d8 \u10ec\u10e3\u10d7\u10d8 \u10d3\u10d0\u10e1\u10ed\u10d8\u10e0\u10d3\u10d4\u10e1)... -#: ../../../processing/app/Base.java:368 -Can't\ open\ source\ sketch\!=\u10d5\u10d4\u10e0 \u10db\u10dd\u10ee\u10d4\u10e0\u10ee\u10d3\u10d0 \u10de\u10d8\u10e0\u10d5\u10d4\u10da\u10ec\u10e7\u10d0\u10e0\u10dd\u10e1 \u10e9\u10d0\u10dc\u10d0\u10ee\u10d0\u10e2\u10d8\u10e1 \u10d2\u10d0\u10ee\u10e1\u10dc\u10d0\! +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 Canadian\ French=\u10d9\u10d0\u10dc\u10d0\u10d3\u10e3\u10e0\u10d8 \u10e4\u10e0\u10d0\u10dc\u10d2\u10e3\u10da\u10d8 @@ -194,6 +246,9 @@ Cancel=\u10d2\u10d0\u10e3\u10e5\u10db\u10d4\u10d1\u10d0 #: Sketch.java:455 Cannot\ Rename=\u10d2\u10d0\u10d3\u10d0\u10e0\u10e5\u10db\u10d4\u10d5\u10d0 \u10e8\u10d4\u10e3\u10eb\u10da\u10d4\u10d1\u10d4\u10da\u10d8\u10d0 +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 Carriage\ return=\u10d0\u10ee\u10d0\u10da \u10e1\u10e2\u10e0\u10d8\u10e5\u10dd\u10dc\u10d6\u10d4 \u10d2\u10d0\u10d3\u10d0\u10e1\u10d5\u10da\u10d0 @@ -227,10 +282,6 @@ Close=\u10d3\u10d0\u10ee\u10e3\u10e0\u10d5\u10d0 #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=\u10d9\u10dd\u10db\u10d4\u10dc\u10e2\u10d0\u10e0\u10d8\u10e1 \u10d2\u10d0\u10d3\u10d0\u10e0\u10d7\u10d5\u10d0 -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=\u10db\u10d0\u10d9\u10dd\u10db\u10de\u10d8\u10da\u10d8\u10e0\u10d4\u10d1\u10da\u10d8\u10e1 \u10e8\u10d4\u10ea\u10d3\u10dd\u10db\u10d0, \u10d2\u10d7\u10ee\u10dd\u10d5\u10d7 \u10d2\u10d0\u10d0\u10d2\u10d6\u10d0\u10d5\u10dc\u10d4\u10d7 \u10d4\u10e1 \u10d9\u10dd\u10d3\u10d8 \u10e8\u10d4\u10db\u10d3\u10d4\u10d2 \u10db\u10d8\u10e1\u10d0\u10db\u10d0\u10e0\u10d7\u10d6\u10d4 {0} - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=\u10e9\u10d0\u10dc\u10d0\u10ee\u10d0\u10e2\u10d8\u10e1 \u10d3\u10d0\u10d9\u10dd\u10db\u10de\u10d8\u10da\u10d4\u10d1\u10d0... @@ -306,9 +357,8 @@ Could\ not\ re-save\ sketch=\u10e9\u10d0\u10dc\u10d0\u10ee\u10d0\u10e2\u10d8\u10 #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u10e8\u10d4\u10e3\u10eb\u10da\u10d4\u10d1\u10d4\u10da\u10d8\u10d0 \u10dc\u10d0\u10d2\u10e3\u10da\u10d8\u10e1\u10ee\u10db\u10d4\u10d1\u10d8 \u10db\u10dd\u10db\u10d0\u10e0\u10d7\u10d5\u10d8\u10e1 \u10ec\u10d0\u10d9\u10d8\u10d7\u10ee\u10d5\u10d0.\n\u10d2\u10d7\u10ee\u10dd\u10d5\u10d7 \u10d2\u10d0\u10d3\u10d0\u10d0\u10e7\u10d4\u10dc\u10dd\u10d7 Arduino. -#: Preferences.java:258 -#, java-format -Could\ not\ read\ preferences\ from\ {0}=\u10e8\u10d4\u10e3\u10eb\u10da\u10d4\u10d1\u10d4\u10da\u10d8\u10d0 \u10db\u10dd\u10db\u10d0\u10e0\u10d7\u10d5\u10d8\u10e1 \u10d0\u10db\u10dd\u10d9\u10d8\u10d7\u10ee\u10d5\u10d0 \u10e4\u10d0\u10d8\u10da\u10d8\u10d3\u10d0\u10dc {0} +#: ../../../processing/app/Sketch.java:1525 +Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=\u10d0\u10ec\u10e7\u10dd\u10d1\u10d8\u10e1 \u10ec\u10d8\u10dc\u10d0 \u10db\u10dd\u10db\u10d0\u10e0\u10d7\u10d5\u10d8\u10e1 \u10e4\u10d0\u10d8\u10da\u10d8\u10e1 \u10ec\u10d0\u10d9\u10d8\u10d7\u10ee\u10d5\u10d0 \u10d5\u10d4\u10e0 \u10db\u10dd\u10ee\u10d4\u10e0\u10ee\u10d3\u10d0; \u10d8\u10ec\u10e7\u10dd\u10d1\u10d0 \u10ee\u10d4\u10da\u10d0\u10ee\u10da\u10d0 #: Base.java:2482 #, java-format @@ -331,6 +381,9 @@ Could\ not\ rename\ the\ sketch.\ (2)=\u10e9\u10d0\u10dc\u10d0\u10ee\u10d0\u10e2 #, java-format Could\ not\ replace\ {0}=\u10e8\u10d4\u10e3\u10eb\u10da\u10d4\u10d1\u10d4\u10da\u10d8\u10d0 \u10e9\u10d0\u10dc\u10d0\u10ea\u10d5\u10da\u10d3\u10d4\u10e1 {0} +#: ../../../processing/app/Sketch.java:1579 +Could\ not\ write\ build\ preferences\ file=\u10d0\u10ec\u10e7\u10dd\u10d1\u10d8\u10e1 \u10e4\u10d0\u10d8\u10da\u10d8\u10e1 \u10e9\u10d0\u10ec\u10d4\u10e0\u10d0 \u10d5\u10d4\u10e0 \u10db\u10dd\u10ee\u10d4\u10e0\u10ee\u10d3\u10d0 + #: tools/Archiver.java:74 Couldn't\ archive\ sketch=\u10d5\u10d4\u10e0 \u10db\u10dd\u10ee\u10d4\u10e0\u10ee\u10d3\u10d0 \u10e9\u10d0\u10dc\u10d0\u10ee\u10d0\u10e2\u10d8\u10e1 \u10d0\u10e0\u10e5\u10d8\u10d5\u10e8\u10d8 \u10d2\u10d0\u10d3\u10d0\u10e2\u10d0\u10dc\u10d0 @@ -379,12 +432,19 @@ Done\ Saving.=\u10e8\u10d4\u10dc\u10d0\u10ee\u10d5\u10d0 \u10d3\u10d0\u10e1\u10e #: Editor.java:2510 Done\ burning\ bootloader.=\u10e9\u10d0\u10db\u10e2\u10d5\u10d8\u10e0\u10d7\u10d5\u10d4\u10da\u10d8\u10e1 \u10e9\u10d0\u10ec\u10d4\u10e0\u10d0 \u10d3\u10d0\u10e1\u10e0\u10e3\u10da\u10d4\u10d1\u10e3\u10da\u10d8\u10d0. +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=\u10d3\u10d0\u10d9\u10dd\u10db\u10de\u10d8\u10da\u10d4\u10d1\u10d0 \u10d3\u10d0\u10e1\u10e0\u10e3\u10da\u10d3\u10d0. #: Editor.java:2564 Done\ printing.=\u10d1\u10d4\u10ed\u10d3\u10d5\u10d0 \u10d3\u10d0\u10e1\u10e0\u10e3\u10da\u10d3\u10d0 +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=\u10d0\u10e2\u10d5\u10d8\u10e0\u10d7\u10d5\u10d0 \u10d3\u10d0\u10e1\u10e0\u10e3\u10da\u10d3\u10d0. @@ -463,6 +523,9 @@ Error\ while\ burning\ bootloader.=\u10e8\u10d4\u10ea\u10d3\u10dd\u10db\u10d0 \u #: ../../../processing/app/Editor.java:2555 Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=\u10e8\u10d4\u10ea\u10d3\u10dd\u10db\u10d0 \u10e9\u10d0\u10db\u10e2\u10d5\u10d8\u10e0\u10d7\u10d5\u10d4\u10da\u10d8\u10e1 \u10e9\u10d0\u10ec\u10d4\u10e0\u10d8\u10e1\u10d0\u10e1\: \u10d5\u10d4\u10e0 \u10db\u10dd\u10d8\u10eb\u10d4\u10d1\u10dc\u10d0 \u10d9\u10dd\u10dc\u10e4\u10d8\u10d2\u10e3\u10e0\u10d0\u10ea\u10d8\u10d8\u10e1 \u10de\u10d0\u10e0\u10d0\u10db\u10d4\u10e2\u10e0\u10d8 '{0}' +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=\u10e8\u10d4\u10ea\u10d3\u10dd\u10db\u10d0 \u10e8\u10d4\u10db\u10d3\u10d4\u10d2\u10d8 \u10d9\u10dd\u10d3\u10d8\u10e1 \u10e9\u10d0\u10e2\u10d5\u10d8\u10e0\u10d7\u10d5\u10d8\u10e1\u10d0\u10e1 {0} @@ -470,10 +533,21 @@ Error\ while\ loading\ code\ {0}=\u10e8\u10d4\u10ea\u10d3\u10dd\u10db\u10d0 \u10 #: Editor.java:2567 Error\ while\ printing.=\u10e8\u10d4\u10ea\u10d3\u10dd\u10db\u10d0 \u10d1\u10d4\u10ed\u10d3\u10d5\u10d8\u10e1\u10d0\u10e1. +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=\u10e8\u10d4\u10ea\u10d3\u10dd\u10db\u10d0 \u10d0\u10e2\u10d5\u10d8\u10e0\u10d7\u10d5\u10d8\u10e1\u10d0\u10e1\: \u10d5\u10d4\u10e0 \u10db\u10dd\u10d8\u10eb\u10d4\u10d1\u10dc\u10d0 \u10d9\u10dd\u10dc\u10e4\u10d8\u10d2\u10e3\u10e0\u10d0\u10ea\u10d8\u10d8\u10e1 \u10de\u10d0\u10e0\u10d0\u10db\u10d4\u10e2\u10e0\u10d8 '{0}' +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 Estonian=\u10d4\u10e1\u10e2\u10dd\u10dc\u10e3\u10e0\u10d8 @@ -489,6 +563,10 @@ Export\ canceled,\ changes\ must\ first\ be\ saved.=\u10d2\u10d0\u10e2\u10d0\u10 #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +Failed\ to\ open\ sketch\:\ "{0}"=\u10d5\u10d4\u10e0 \u10db\u10dd\u10ee\u10d4\u10e0\u10ee\u10d3\u10d0 \u10e9\u10d0\u10dc\u10d0\u10ee\u10d0\u10e2\u10d8\u10e1 \u10d2\u10d0\u10ee\u10e1\u10dc\u10d0\: "{0}" + #: Editor.java:491 File=\u10e4\u10d0\u10d8\u10da\u10d8 @@ -523,8 +601,9 @@ Fix\ Encoding\ &\ Reload=\u10d9\u10dd\u10d3\u10d8\u10e0\u10d4\u10d1\u10d8\u10e1 #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=\u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10d8\u10d7\u10d8 \u10ea\u10dc\u10dd\u10d1\u10d4\u10d1\u10d8\u10e1\u10d7\u10d5\u10d8\u10e1 \u10d8\u10db\u10d0\u10d6\u10d4, \u10d7\u10e3 \u10e0\u10dd\u10d2\u10dd\u10e0 \u10e7\u10d4\u10dc\u10d3\u10d4\u10d1\u10d0 \u10d1\u10d8\u10d1\u10da\u10d8\u10dd\u10d7\u10d4\u10d9\u10d4\u10d1\u10d8, \u10d8\u10ee.\: http\://arduino.cc/en/Guide/Libraries\n -#: debug/BasicUploader.java:80 -Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =\u10eb\u10d0\u10da\u10d3\u10d0\u10e2\u10d0\u10dc\u10d8\u10da\u10d8\u10d0 \u10e9\u10d0\u10db\u10dd\u10e7\u10e0\u10d0 \u10de\u10dd\u10e0\u10e2\u10d6\u10d4 \u10d2\u10d0\u10ee\u10e1\u10dc\u10d0-\u10d3\u10d0\u10ee\u10e3\u10e0\u10d5\u10d8\u10e1 1200bps \u10e1\u10d8\u10d2\u10dc\u10d0\u10da\u10d8\u10d7 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=\u10e4\u10e0\u10d0\u10dc\u10d2\u10e3\u10da\u10d8 @@ -628,8 +707,8 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=\u10d1\u10d #: Preferences.java:106 Lithuaninan=\u10da\u10d8\u10e2\u10d5\u10e3\u10e0\u10d8 -#: ../../../processing/app/Sketch.java:1660 -Low\ memory\ available,\ stability\ problems\ may\ occur=\u10ee\u10d4\u10da\u10db\u10d8\u10e1\u10d0\u10ec\u10d5\u10d3\u10dd\u10db\u10d8\u10d0 \u10db\u10d4\u10ee\u10e1\u10d8\u10d4\u10e0\u10d4\u10d1\u10d0 \u10db\u10ea\u10d8\u10e0\u10d4\u10d0, \u10e8\u10d4\u10e1\u10d0\u10eb\u10da\u10dd\u10d0 \u10e8\u10d4\u10e4\u10d4\u10e0\u10ee\u10d4\u10d1\u10d4\u10d1\u10e1 \u10d0\u10d3\u10d2\u10d8\u10da\u10d8 \u10f0\u10e5\u10dd\u10dc\u10d3\u10d4\u10e1 +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 Marathi=\u10db\u10d0\u10e0\u10d0\u10d7\u10f0\u10d8 @@ -640,12 +719,24 @@ Message=\u10e8\u10d4\u10e2\u10e7\u10dd\u10d1\u10d8\u10dc\u10d4\u10d1\u10d0 #: ../../../processing/app/preproc/PdePreprocessor.java:412 Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=\u10d0\u10e0 \u10db\u10dd\u10d8\u10eb\u10d4\u10d1\u10dc\u10d4\u10d1\u10d0 */ \u10d3\u10d0\u10d1\u10dd\u10da\u10dd\u10d4\u10d1\u10d0 \u10d9\u10dd\u10db\u10d4\u10dc\u10e2\u10d0\u10e0\u10d8\u10e1 \u10d1\u10da\u10dd\u10d9\u10d8\u10d3\u10d0\u10dc /* \u10d9\u10dd\u10db\u10d4\u10dc\u10e2\u10d0\u10e0\u10d8 */ +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\u10db\u10d4\u10e2\u10d8 \u10ea\u10d5\u10da\u10d8\u10da\u10d4\u10d1\u10d8\u10e1 \u10e8\u10d4\u10e2\u10d0\u10dc\u10d0 \u10e8\u10d4\u10e1\u10d0\u10eb\u10da\u10d4\u10d1\u10d4\u10da\u10d8\u10d0 \u10e3\u10e8\u10e3\u10d0\u10da\u10dd\u10d3 \u10e4\u10d0\u10d8\u10da\u10d8\u10d3\u10d0\u10dc #: Editor.java:2156 Moving=\u10d2\u10d0\u10d3\u10d0\u10e2\u10d0\u10dc\u10d0 +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +Must\ specify\ exactly\ one\ sketch\ file=\u10e3\u10dc\u10d3\u10d0 \u10db\u10d8\u10e3\u10d7\u10d8\u10d7\u10dd\u10d7 \u10e9\u10d0\u10dc\u10d0\u10ee\u10d0\u10e2\u10d8\u10e1 \u10db\u10ee\u10dd\u10da\u10dd\u10d3 \u10d4\u10e0\u10d7\u10d8 \u10e4\u10d0\u10d8\u10da\u10d8 + +#: ../../../processing/app/Preferences.java:158 +!N'Ko= + #: Sketch.java:282 Name\ for\ new\ file\:=\u10d0\u10ee\u10d0\u10da\u10d8 \u10e4\u10d0\u10d8\u10da\u10d8\u10e1 \u10e1\u10d0\u10ee\u10d4\u10da\u10d8\: @@ -673,12 +764,18 @@ Next\ Tab=\u10e8\u10d4\u10db\u10d3\u10d4\u10d2\u10d8 \u10e9\u10d0\u10dc\u10d0\u1 #: Preferences.java:78 UpdateCheck.java:108 No=\u10d0\u10e0\u10d0 +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u10d3\u10d0\u10e4\u10d0 \u10d0\u10e0\u10e9\u10d4\u10e3\u10da\u10d8 \u10d0\u10e0 \u10d0\u10e0\u10d8\u10e1; \u10d2\u10d7\u10ee\u10dd\u10d5\u10d7 \u10d0\u10d8\u10e0\u10e9\u10d8\u10dd\u10d7 \u10db\u10d4\u10dc\u10d8\u10e3\u10d3\u10d0\u10dc '\u10ee\u10d4\u10da\u10e1\u10d0\u10ec\u10e7\u10dd\u10d4\u10d1\u10d8' -> '\u10d3\u10d0\u10e4\u10d0' #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=\u10d0\u10d5\u10e2\u10dd-\u10e4\u10dd\u10e0\u10db\u10d0\u10e2\u10d8\u10e0\u10d4\u10d1\u10d8\u10e1\u10d7\u10d5\u10d8\u10e1 \u10ea\u10d5\u10da\u10d8\u10da\u10d4\u10d1\u10d4\u10d1\u10d8 \u10e1\u10d0\u10ed\u10d8\u10e0\u10dd \u10d0\u10e0 \u10d0\u10e0\u10d8\u10e1. +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=\u10e9\u10d0\u10dc\u10d0\u10ee\u10d0\u10e2\u10e1 \u10e4\u10d0\u10d8\u10da\u10d4\u10d1\u10d8 \u10d0\u10e0 \u10d3\u10d0\u10d4\u10db\u10d0\u10e2\u10d0. @@ -688,6 +785,9 @@ No\ launcher\ available=\u10d2\u10d0\u10db\u10e8\u10d5\u10d5\u10d4\u10d1\u10d8 \ #: SerialMonitor.java:112 No\ line\ ending=\u10e1\u10e2\u10e0\u10d8\u10e5\u10dd\u10dc\u10d8\u10e1 \u10d1\u10dd\u10da\u10dd\u10e1 \u10d2\u10d0\u10e0\u10d4\u10e8\u10d4 +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u10db\u10d0\u10e0\u10d7\u10da\u10d0, \u10d3\u10e0\u10dd\u10d0 \u10e1\u10e3\u10e4\u10d7\u10d0 \u10f0\u10d0\u10d4\u10e0\u10d6\u10d4 \u10d2\u10d0\u10ee\u10d5\u10d8\u10d3\u10d4\u10d7. @@ -695,6 +795,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u10db\u10d0\u10e0\u10d7\u10 #, java-format No\ reference\ available\ for\ "{0}"=\u10ea\u10dc\u10dd\u10d1\u10d0 "{0}"-\u10d7\u10d5\u10d8\u10e1 \u10db\u10d8\u10e3\u10ec\u10d5\u10d3\u10dd\u10db\u10d4\u10da\u10d8\u10d0 +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +No\ valid\ code\ files\ found=\u10d0\u10e0 \u10db\u10dd\u10d8\u10eb\u10d4\u10d1\u10dc\u10d0 \u10db\u10d0\u10e0\u10d7\u10d4\u10d1\u10e3\u10da\u10d8 \u10d9\u10dd\u10d3\u10e3\u10e0\u10d8 \u10e4\u10d0\u10d8\u10da\u10d4\u10d1\u10d8 + #: ../../../processing/app/Base.java:309 No\ valid\ configured\ cores\ found\!\ Exiting...=\u10d0\u10e0 \u10db\u10dd\u10d8\u10eb\u10d4\u10d1\u10dc\u10d0 \u10d2\u10d0\u10db\u10d0\u10e0\u10d7\u10e3\u10da\u10d8 \u10d1\u10d8\u10e0\u10d7\u10d5\u10d4\u10d1\u10d8\! \u10d8\u10d7\u10d8\u10e8\u10d4\u10d1\u10d0... @@ -721,6 +831,9 @@ OK=OK #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=\u10e9\u10d0\u10dc\u10d0\u10ee\u10d0\u10e2\u10e1 \u10d3\u10d0\u10d4\u10db\u10d0\u10e2\u10d0 \u10d4\u10e0\u10d7\u10d8 \u10e4\u10d0\u10d8\u10da\u10d8. +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=\u10d2\u10d0\u10ee\u10e1\u10dc\u10d0 @@ -748,12 +861,22 @@ Paste=\u10e9\u10d0\u10e1\u10db\u10d0 #: Preferences.java:109 Persian=\u10e1\u10de\u10d0\u10e0\u10e1\u10e3\u10da\u10d8 +#: ../../../processing/app/Preferences.java:161 +Persian\ (Iran)=\u10e1\u10de\u10d0\u10e0\u10e1\u10e3\u10da\u10d8 (\u10d8\u10e0\u10d0\u10dc\u10d8) + #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=\u10e8\u10d4\u10db\u10dd\u10d8\u10e2\u10d0\u10dc\u10d4\u10d7 SPI \u10d1\u10d8\u10d1\u10da\u10d8\u10dd\u10d7\u10d4\u10d9\u10d0 \u10db\u10d4\u10dc\u10d8\u10e3\u10d3\u10d0\u10dc '\u10e9\u10d0\u10dc\u10d0\u10ee\u10d0\u10e2\u10d8' -> '\u10d1\u10d8\u10d1\u10da\u10d8\u10dd\u10d7\u10d4\u10d9\u10d8\u10e1 \u10e8\u10d4\u10db\u10dd\u10e2\u10d0\u10dc\u10d0' +#: ../../../processing/app/debug/Compiler.java:529 +Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=\u10e8\u10d4\u10db\u10dd\u10d8\u10e2\u10d0\u10dc\u10d4\u10d7 Wire \u10d1\u10d8\u10d1\u10da\u10d8\u10dd\u10d7\u10d4\u10d9\u10d0 \u10db\u10d4\u10dc\u10d8\u10e3\u10d3\u10d0\u10dc '\u10e9\u10d0\u10dc\u10d0\u10ee\u10d0\u10e2\u10d8' -> '\u10d1\u10d8\u10d1\u10da\u10d8\u10dd\u10d7\u10d4\u10d9\u10d8\u10e1 \u10e8\u10d4\u10db\u10dd\u10e2\u10d0\u10dc\u10d0' + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=\u10d2\u10d7\u10ee\u10dd\u10d5\u10d7 \u10e9\u10d0\u10d0\u10e7\u10d4\u10dc\u10dd\u10d7 JDK 1.5 \u10d0\u10dc \u10e3\u10e4\u10e0\u10dd \u10d0\u10ee\u10d0\u10da\u10d8 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 Polish=\u10de\u10dd\u10da\u10dd\u10dc\u10e3\u10e0\u10d8 @@ -875,9 +998,15 @@ Save\ changes\ to\ "{0}"?\ \ =\u10e8\u10d4\u10dc\u10d0\u10ee\u10d5\u10d0 "{0}" \ #: Sketch.java:825 Save\ sketch\ folder\ as...=\u10e9\u10d0\u10dc\u10d0\u10ee\u10d0\u10e2\u10d8\u10e1 \u10e1\u10d0\u10e5\u10d0\u10e6\u10d0\u10da\u10d3\u10d8\u10e1 \u10e8\u10d4\u10dc\u10d0\u10ee\u10d5\u10d0 \u10e0\u10dd\u10d2\u10dd\u10e0\u10ea... +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=\u10e8\u10d4\u10dc\u10d0\u10ee\u10d5\u10d0... +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=\u10d0\u10d8\u10e0\u10e9\u10d8\u10d4\u10d7 (\u10d0\u10dc \u10e8\u10d4\u10e5\u10db\u10d4\u10dc\u10d8\u10d7 \u10d0\u10ee\u10d0\u10da\u10d8) \u10e1\u10d0\u10e5\u10d0\u10e6\u10d0\u10da\u10d3\u10d4 \u10e9\u10d0\u10dc\u10d0\u10ee\u10d0\u10e2\u10d4\u10d1\u10d8\u10e1\u10d7\u10d5\u10d8\u10e1... @@ -902,14 +1031,6 @@ Send=\u10d2\u10d0\u10d2\u10d6\u10d0\u10d5\u10dc\u10d0 #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=\u10db\u10d8\u10db\u10d3\u10d4\u10d5\u10e0\u10dd\u10d1\u10d8\u10d7\u10d8 \u10de\u10dd\u10e0\u10e2\u10d8\u10e1 \u10db\u10dd\u10dc\u10d8\u10e2\u10dd\u10e0\u10d8\u10dc\u10d2\u10d8 -#: Serial.java:174 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=\u10e1\u10d4\u10e0\u10d8\u10e3\u10da\u10d8 \u10de\u10dd\u10e0\u10e2\u10d8 ''{0}'' \u10e3\u10d9\u10d5\u10d4 \u10d2\u10d0\u10db\u10dd\u10d8\u10e7\u10d4\u10dc\u10d4\u10d1\u10d0. \u10e8\u10d4\u10d4\u10ea\u10d0\u10d3\u10d4\u10d7 \u10d2\u10d0\u10d7\u10d8\u10e8\u10dd\u10d7 \u10de\u10e0\u10dd\u10d2\u10e0\u10d0\u10db\u10d4\u10d1\u10d8, \u10e0\u10dd\u10db\u10da\u10d4\u10d1\u10d8\u10ea \u10db\u10d0\u10e1 \u10d8\u10e7\u10d4\u10dc\u10d4\u10d1\u10d4\u10dc. - -#: Serial.java:121 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=\u10e1\u10d4\u10e0\u10d8\u10e3\u10da\u10d8 \u10de\u10dd\u10e0\u10e2\u10d8 ''{0}'' \u10e3\u10d9\u10d5\u10d4 \u10d2\u10d0\u10db\u10dd\u10d8\u10e7\u10d4\u10dc\u10d4\u10d1\u10d0. \u10e8\u10d4\u10d4\u10ea\u10d0\u10d3\u10d4\u10d7 \u10d2\u10d0\u10d7\u10d8\u10e8\u10dd\u10d7 \u10de\u10e0\u10dd\u10d2\u10e0\u10d0\u10db\u10d4\u10d1\u10d8, \u10e0\u10dd\u10db\u10da\u10d4\u10d1\u10d8\u10ea \u10db\u10d0\u10e1 \u10d8\u10e7\u10d4\u10dc\u10d4\u10d1\u10d4\u10dc. - #: Serial.java:194 #, java-format Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=\u10e1\u10d4\u10e0\u10d8\u10e3\u10da\u10d8 \u10de\u10dd\u10e0\u10e2\u10d8 "{0}" \u10dc\u10d0\u10de\u10dd\u10d5\u10dc\u10d8 \u10d0\u10e0 \u10d0\u10e0\u10d8\u10e1. \u10dc\u10d0\u10db\u10d3\u10d5\u10d8\u10da\u10d0\u10d3 \u10d0\u10d8\u10e0\u10e9\u10d8\u10d4\u10d7 \u10e1\u10d0\u10ed\u10d8\u10e0\u10dd \u10db\u10d4\u10dc\u10d8\u10e3\u10d3\u10d0\u10dc '\u10ee\u10d4\u10da\u10e1\u10d0\u10ec\u10e7\u10dd\u10d4\u10d1\u10d8' -> '\u10e1\u10d4\u10e0\u10d8\u10e3\u10da\u10d8 \u10de\u10dd\u10e0\u10e2\u10d8'? @@ -964,6 +1085,9 @@ Sketchbook\ folder\ disappeared=\u10d0\u10da\u10d1\u10dd\u10db\u10d8\u10e1 \u10e #: Preferences.java:315 Sketchbook\ location\:=\u10d0\u10da\u10d1\u10dd\u10db\u10d8\u10e1 \u10db\u10d3\u10d4\u10d1\u10d0\u10e0\u10d4\u10dd\u10d1\u10d0\: +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 Sketches\ (*.ino,\ *.pde)=\u10e9\u10d0\u10dc\u10d0\u10ee\u10d0\u10e2\u10d4\u10d1\u10d8 (*.ino, *.pde) @@ -998,6 +1122,9 @@ Tamil=\u10e2\u10d0\u10db\u10d8\u10da\u10e3\u10e0\u10d8 #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=\u10e1\u10d0\u10d9\u10d5\u10d0\u10dc\u10eb\u10dd \u10e1\u10d8\u10e2\u10e7\u10d5\u10d0 'BYTE' \u10d0\u10e6\u10d0\u10e0 \u10d0\u10e0\u10d8\u10e1 \u10db\u10ee\u10d0\u10e0\u10d3\u10d0\u10ed\u10d4\u10e0\u10d8\u10da\u10d8. +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Client \u10d9\u10da\u10d0\u10e1\u10d8\u10e1 \u10d0\u10ee\u10d0\u10da\u10d8 \u10e1\u10d0\u10ee\u10d4\u10da\u10d8 \u10d0\u10e0\u10d8\u10e1 EthernetClient @@ -1034,12 +1161,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=\u10e9\u10d0\u10dc\u10d0\u10ee\u10d0\u10e2\u10d8\u10e1 \u10e1\u10d0\u10e5\u10d0\u10e6\u10d0\u10da\u10d3\u10d4 \u10d0\u10e0 \u10db\u10dd\u10d8\u10eb\u10d4\u10d1\u10dc\u10d0.\n\u10e8\u10d4\u10d5\u10d4\u10ea\u10d3\u10d4\u10d1\u10d8 \u10d8\u10d2\u10d8\u10d5\u10d4 \u10d0\u10d3\u10d2\u10d8\u10da\u10d0\u10e1 \u10e8\u10d4\u10dc\u10d0\u10ee\u10d5\u10d0\u10e1, \u10db\u10d0\u10d2\u10e0\u10d0\u10db\n\u10e7\u10d5\u10d4\u10da\u10d0\u10e4\u10d4\u10e0\u10d8 \u10db\u10dd\u10ea\u10d4\u10db\u10e3\u10da\u10d8 \u10d9\u10dd\u10d3\u10d8\u10e1 \u10d2\u10d0\u10e0\u10d3\u10d0 \u10d3\u10d0\u10d8\u10d9\u10d0\u10e0\u10d2\u10d4\u10d1\u10d0. -#: Sketch.java:2018 -The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=\u10e9\u10d0\u10dc\u10d0\u10ee\u10d0\u10e2\u10e1 \u10e3\u10dc\u10d3\u10d0 \u10e8\u10d4\u10d4\u10ea\u10d5\u10d0\u10da\u10dd\u10e1 \u10e1\u10d0\u10ee\u10d4\u10da\u10d8. \u10d8\u10e1 \u10e8\u10d4\u10d8\u10eb\u10da\u10d4\u10d1\u10d0 \u10e8\u10d4\u10d3\u10d2\u10d4\u10d1\u10dd\u10d3\u10d4\u10e1\n\u10db\u10ee\u10dd\u10da\u10dd\u10d3 ASCII \u10e1\u10d8\u10db\u10d1\u10dd\u10da\u10dd\u10d4\u10d1\u10d8\u10e1\u10d0 \u10d3\u10d0 \u10ea\u10d8\u10e4\u10e0\u10d4\u10d1\u10d8\u10e1\u10d0\u10d2\u10d0\u10dc (\u10db\u10d0\u10d2\u10e0\u10d0\u10db \u10d0\u10e0 \u10e8\u10d4\u10d8\u10eb\u10da\u10d4\u10d1\u10d0 \u10d8\u10ec\u10e7\u10d4\u10d1\u10dd\u10d3\u10d4\u10e1 \u10ea\u10d8\u10e4\u10e0\u10d8\u10d7).\n\u10d3\u10d0\u10e1\u10d0\u10ee\u10d4\u10da\u10d4\u10d1\u10d0 \u10e3\u10dc\u10d3\u10d0 \u10e8\u10d4\u10d8\u10ea\u10d0\u10d5\u10d3\u10d4\u10e1 \u10d0\u10e0\u10d0\u10e3\u10db\u10d4\u10e2\u10d4\u10e1 64 \u10e1\u10d8\u10db\u10d1\u10dd\u10da\u10dd\u10e1\u10d0. +#: ../../../processing/app/Sketch.java:2028 +!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=\u10d0\u10da\u10d1\u10dd\u10db\u10d8\u10e1 \u10e1\u10d0\u10e5\u10d0\u10e6\u10d0\u10da\u10d3\u10d4 \u10d0\u10e6\u10d0\u10e0 \u10d0\u10e0\u10e1\u10d4\u10d1\u10dd\u10d1\u10e1.\nArduino \u10d2\u10d0\u10db\u10dd\u10d8\u10e7\u10d4\u10dc\u10d4\u10d1\u10e1 \u10d0\u10da\u10d1\u10dd\u10db\u10d4\u10d1\u10d8\u10e1 \u10dc\u10d0\u10d2\u10e3\u10da\u10d8\u10e1\u10ee\u10db\u10d4\u10d1\n\u10db\u10d3\u10d4\u10d1\u10d0\u10e0\u10d4\u10dd\u10d1\u10d0\u10e1 \u10d3\u10d0 \u10e8\u10d4\u10e5\u10db\u10dc\u10d8\u10e1 \u10d0\u10ee\u10d0\u10da \u10d0\u10da\u10d1\u10dd\u10db\u10e1 \u10d7\u10e3 \u10d4\u10e1\n\u10e1\u10d0\u10ed\u10d8\u10e0\u10dd \u10d8\u10e5\u10dc\u10d4\u10d1\u10d0. Arduino \u10d0\u10e6\u10d0\u10e0 \u10d8\u10e1\u10d0\u10e3\u10d1\u10e0\u10d4\u10d1\u10e1 \u10db\u10d8\u10e1\n\u10e8\u10d4\u10e1\u10d0\u10ee\u10d4\u10d1 \u10db\u10d4\u10e1\u10d0\u10db\u10d4 \u10de\u10d8\u10e0\u10e8\u10d8. +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u10e4\u10d0\u10d8\u10da\u10d8\u10e1 \u10d0\u10e1\u10da\u10d8 \u10e3\u10d5\u10d4 \u10d0\u10e0\u10e1\u10d4\u10d1\u10dd\u10d1\u10e1 \u10d8\u10e5,\n\u10e1\u10d0\u10d3\u10d0\u10ea \u10ea\u10d3\u10d8\u10da\u10dd\u10d1\u10d7 \u10db\u10d8\u10e1 \u10e9\u10d0\u10e1\u10db\u10d0\u10e1.\n\u10d1\u10e0\u10eb\u10d0\u10dc\u10d4\u10d1\u10d0\u10e1 \u10d0\u10e0 \u10e8\u10d4\u10d2\u10d8\u10e1\u10e0\u10e3\u10da\u10d4\u10d1\u10d7. @@ -1143,6 +1273,10 @@ Vietnamese=\u10d5\u10d8\u10d4\u10e2\u10dc\u10d0\u10db\u10e3\u10e0\u10d8 #: Editor.java:1105 Visit\ Arduino.cc=\u10d4\u10ec\u10d5\u10d8\u10d4\u10d7 \u10e1\u10d0\u10d8\u10e2\u10e1 Arduino.cc +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=\u10d2\u10d0\u10e4\u10e0\u10d7\u10ee\u10d8\u10da\u10d4\u10d1\u10d0\: \u10d1\u10d8\u10d1\u10da\u10d8\u10dd\u10d7\u10d4\u10d9\u10d0 {0} \u10d0\u10ea\u10ee\u10d0\u10d3\u10d4\u10d1\u10e1, \u10e0\u10dd\u10db \u10db\u10e3\u10e8\u10d0\u10dd\u10d1\u10e1 {1} \u10d0\u10e0\u10e5\u10d8\u10e2\u10d4\u10e5\u10e2\u10e3\u10e0\u10d0\u10d6\u10d4 \u10d3\u10d0 \u10e8\u10d4\u10e1\u10d0\u10eb\u10da\u10d4\u10d1\u10d4\u10da\u10d8\u10d0 \u10d0\u10e0 \u10d8\u10e7\u10dd\u10e1 \u10d7\u10d0\u10d5\u10e1\u10d4\u10d1\u10d0\u10d3\u10d8 \u10d7\u10e5\u10d5\u10d4\u10dc\u10e1 \u10d3\u10d0\u10e4\u10d0\u10e1\u10d7\u10d0\u10dc, \u10e0\u10dd\u10db\u10d4\u10da\u10d8\u10ea \u10db\u10e3\u10e8\u10d0\u10dd\u10d1\u10e1 {2} \u10d0\u10e0\u10e5\u10d8\u10e2\u10d4\u10e5\u10e2\u10e3\u10e0\u10d0\u10d6\u10d4 + #: Base.java:2128 Warning=\u10d2\u10d0\u10e4\u10e0\u10d7\u10ee\u10d8\u10da\u10d4\u10d1\u10d0 @@ -1241,9 +1375,6 @@ environment=environment #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1266,13 +1397,6 @@ name\ is\ null=name \u10d0\u10e0\u10d8\u10e1 \u10d1\u10d0\u10d7\u10d8\u10da\u10d #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() \u10d1\u10d0\u10d8\u10e2\u10e3\u10e0\u10d8 \u10d1\u10e3\u10e4\u10d4\u10e0\u10d8 \u10db\u10d4\u10e2\u10d8\u10e1\u10db\u10d4\u10e2\u10d0\u10d3 \u10db\u10ea\u10d8\u10e0\u10d4\u10d0 {0} \u10d1\u10d0\u10d8\u10e2\u10d8\u10e1\u10d7\u10d5\u10d8\u10e1 char {1}-\u10d3\u10d4 \u10d3\u10d0 \u10db\u10d8\u10e1 \u10e9\u10d0\u10d7\u10d5\u10da\u10d8\u10d7 - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: \u10e8\u10d8\u10dc\u10d0\u10d2\u10d0\u10dc\u10d8 \u10e8\u10d4\u10ea\u10d3\u10dd\u10db\u10d0... \u10d9\u10dd\u10d3\u10d8 \u10d0\u10e0 \u10db\u10dd\u10d8\u10eb\u10d4\u10d1\u10dc\u10d0 - #: Editor.java:932 serialMenu\ is\ null=serialMenu \u10d0\u10e0\u10d8\u10e1 \u10d1\u10d0\u10d7\u10d8\u10da\u10d8 @@ -1280,6 +1404,10 @@ serialMenu\ is\ null=serialMenu \u10d0\u10e0\u10d8\u10e1 \u10d1\u10d0\u10d7\u10d #, java-format the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=\u10d0\u10e0\u10e9\u10d4\u10e3\u10da\u10d8 \u10e1\u10d4\u10e0\u10d8\u10e3\u10da\u10d8 \u10de\u10dd\u10e0\u10e2\u10d8 {0} \u10d0\u10e0 \u10d0\u10e0\u10e1\u10d4\u10d1\u10dd\u10d1\u10e1 \u10d0\u10dc \u10d3\u10d0\u10e4\u10d0 \u10d3\u10d0\u10d9\u10d0\u10d5\u10e8\u10d8\u10e0\u10d4\u10d1\u10e3\u10da\u10d8 \u10d0\u10e0 \u10d0\u10e0\u10d8\u10e1. +#: ../../../processing/app/Base.java:389 +#, java-format +unknown\ option\:\ {0}=\u10e3\u10ea\u10dc\u10dd\u10d1\u10d8 \u10dd\u10e4\u10ea\u10d8\u10d0\:{0} + #: Preferences.java:391 upload=\u10d0\u10e2\u10d5\u10d8\u10e0\u10d7\u10d5\u10d0 @@ -1298,3 +1426,35 @@ upload=\u10d0\u10e2\u10d5\u10d8\u10e0\u10d7\u10d5\u10d0 #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= + +#: ../../../processing/app/Base.java:476 +#, java-format +!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= + +#: ../../../processing/app/Base.java:509 +#, java-format +!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= + +#: ../../../processing/app/Base.java:507 +#, java-format +!{0}\:\ Invalid\ option\ for\ board\ "{1}"= + +#: ../../../processing/app/Base.java:502 +#, java-format +!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= + +#: ../../../processing/app/Base.java:486 +#, java-format +{0}\:\ Unknown\ architecture={0}\: \u10e3\u10ea\u10dc\u10dd\u10d1\u10d8 \u10d0\u10e0\u10e5\u10d8\u10e2\u10d4\u10e5\u10e2\u10e3\u10e0\u10d0 + +#: ../../../processing/app/Base.java:491 +#, java-format +{0}\:\ Unknown\ board={0}\: \u10e3\u10ea\u10dc\u10dd\u10d1\u10d8 \u10d3\u10d0\u10e4\u10d0 + +#: ../../../processing/app/Base.java:481 +#, java-format +{0}\:\ Unknown\ package={0}\: \u10e3\u10ea\u10dc\u10dd\u10d1\u10d8 \u10de\u10d0\u10d9\u10d4\u10e2\u10d8 diff --git a/arduino-core/src/processing/app/i18n/Resources_ko_KR.po b/arduino-core/src/processing/app/i18n/Resources_ko_KR.po index 1bd6622e7..31b1f8952 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ko_KR.po +++ b/arduino-core/src/processing/app/i18n/Resources_ko_KR.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-01-14 17:10+0000\n" -"Last-Translator: Cristian Maglie \n" +"PO-Revision-Date: 2015-01-15 13:01+0000\n" +"Last-Translator: Ki-hyeok Park \n" "Language-Team: Korean (Korea) (http://www.transifex.com/projects/p/arduino-ide-15/language/ko_KR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,6 +33,12 @@ msgstr "'마우스' 는 Arduino Leonardo에서만 사용가능합니다." msgid "(edit only when Arduino is not running)" msgstr "(아두이노가 실행되지 않는 경우에만 수정 가능)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "--verbose, --verbose-upload 와 --verbose-build 는 --verify 나 --upload와 함께 써야만 합니다." + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -91,6 +97,10 @@ msgstr "파일 추가…" msgid "Add Library..." msgstr "라이브러리 추가…" +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -98,6 +108,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "파일 인코딩 문제를 해결하는 동안 오류가 발생했습니다.\n이전 버젼을 덮어쓸 수 있으므로 이 스케치 저장하지 마십시요.\n열기 메뉴를 사용하여 스케치를 다시 열고 다시 시도하십시요.\n" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "스케치를 업로드 하는 동안 에러가 발생하였습니다." + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -176,6 +200,30 @@ msgstr "정말로 \"{0}\"를 삭제하시겠습니까?" msgid "Are you sure you want to delete this sketch?" msgstr "정말로 스케치를 삭제하시겠습니까?" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "아르메니안" @@ -184,6 +232,10 @@ msgstr "아르메니안" msgid "Asturian" msgstr "오스트리아어" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "자동 포맷" @@ -225,6 +277,14 @@ msgstr "잘못된 오류 라인: {0}" msgid "Bad file selected" msgstr "잘못된 파일이 선택됐습니다" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "벨로루시어" @@ -261,6 +321,10 @@ msgstr "찾아보기" msgid "Build folder disappeared or could not be written" msgstr "빌드 폴더가 사라졌거나 저장할 수 없습니다" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "빌드 선택사항 변경됨, 모두 다시 빌드합니다. " + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "불가리어" @@ -277,9 +341,15 @@ msgstr "부트로더 굽기" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "I/O 보드에 부트로더 굽기 (이것은 시간이 걸릴 수 있습니다)…" -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" -msgstr "소스 스케치를 열 수 없음 !" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" +msgstr "" #: ../../../processing/app/Preferences.java:92 msgid "Canadian French" @@ -294,6 +364,10 @@ msgstr "취소" msgid "Cannot Rename" msgstr "이름을 바꿀 수 없습니다" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "캐리지 리턴" @@ -338,11 +412,6 @@ msgstr "닫기" msgid "Comment/Uncomment" msgstr "주석추가/주석삭제" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "컴파일 에러,이 코드를 {0}로 제출해 주시기 바랍니다" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "스케치를 컴파일 중…" @@ -450,10 +519,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "기본 설정을 읽을 수 없습니다.\n아두이노를 다시 설치해야 합니다." -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "{0}로 부터 환경설정을 읽을 수 없습니다" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "이전의 빌드 설정 파일을 읽을 수 없습니다. 모두 다시 빌드합니다. " #: Base.java:2482 #, java-format @@ -482,6 +550,10 @@ msgstr "스케치 이름을 바꿀 수 없습니다. (2)" msgid "Could not replace {0}" msgstr "{0}를 바꿀 수 없습니다" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "빌드 설정 파일을 쓸 수 없습니다. " + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "스케치를 보관 할 수 없습니다" @@ -551,6 +623,11 @@ msgstr "저장 완료." msgid "Done burning bootloader." msgstr "부트로더 굽기 완료" +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "컴파일 완료" @@ -559,6 +636,10 @@ msgstr "컴파일 완료" msgid "Done printing." msgstr "인쇄 완료" +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "업로드 완료" @@ -662,6 +743,10 @@ msgstr "부트로더 굽는중 에러발생" msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "부트로더를 구울때 오류: 설정 값'{0}' 이 없음" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -671,11 +756,25 @@ msgstr "코드 {0}를 로딩하는 중 에러" msgid "Error while printing." msgstr "인홰하는 중에 오류 발생했습니다." +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "업로드 오류: 설정 값'{0}' 이 없음" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "에스토니아어" @@ -696,6 +795,11 @@ msgstr "내보내기 취소, 변경 사항은 먼저 저장되야 합니다." msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "열기 실패 스케치: \"{0}\"" + #: Editor.java:491 msgid "File" msgstr "파일" @@ -743,9 +847,10 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "라이브러리 설치를 위해서 다음 사이트를 참고하세요: http://arduino.cc/en/Guide/Libraries\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " -msgstr "1200bps를 사용하여 포트를 리셋합니다." +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" +msgstr "" #: Preferences.java:95 msgid "French" @@ -893,9 +998,9 @@ msgstr "라이브러리가 추가됐습니다. \"Import library\" 메뉴를 확 msgid "Lithuaninan" msgstr "리투아니아어" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" -msgstr "메모리 부족, 안정성 문제가 생길 수 있습니다." +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." +msgstr "" #: Preferences.java:107 msgid "Marathi" @@ -909,6 +1014,10 @@ msgstr "메시지" msgid "Missing the */ from the end of a /* comment */" msgstr "*/ 가 주석 처리 끝에 빠졌습니다. (/* 주석 */)" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "추가적인 환경 설정은 파일에서 직접 편집할 수 있습니다" @@ -917,6 +1026,18 @@ msgstr "추가적인 환경 설정은 파일에서 직접 편집할 수 있습 msgid "Moving" msgstr "이동" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "단 1개의 스케치 파일을 선택해야 합니다. " + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "" + #: Sketch.java:282 msgid "Name for new file:" msgstr "새로운 파일을 위한 이름:" @@ -953,6 +1074,10 @@ msgstr "다음 탭" msgid "No" msgstr "아니요" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "보드가 선택되지 않았습니다; 툴>보드 메뉴에서 보드를 선택하시기 바랍니다." @@ -961,6 +1086,10 @@ msgstr "보드가 선택되지 않았습니다; 툴>보드 메뉴에서 보드 msgid "No changes necessary for Auto Format." msgstr "자동 포맷을 위해 변경이 필요없습니다." +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "스케치에 파일이 추가되지 않았습니다." @@ -973,6 +1102,10 @@ msgstr "런처를 사용할 수 없습니다" msgid "No line ending" msgstr "No line ending" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "당신의 신선한 공기를 위한 시간입니다." @@ -982,6 +1115,19 @@ msgstr "당신의 신선한 공기를 위한 시간입니다." msgid "No reference available for \"{0}\"" msgstr "\"{0}\" 가 잠조에 존재하지 않습니다." +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "유효한 코드 파일을 찾지 못하였습니다. " + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "유효한 코어 설정이 없습니다. 종료중…" @@ -1018,6 +1164,10 @@ msgstr "확인" msgid "One file added to the sketch." msgstr "파일이 스케치에 추가됐습니다." +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "열기" @@ -1054,14 +1204,27 @@ msgstr "붙여넣기" msgid "Persian" msgstr "페르시아어" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "스케치 > 라이브러리 가져오기 메뉴에서 SPI 라이브러리를 가져오시기 바랍니다." +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "Sketch > Import Library 메뉴에서 the Wire library를 들여오십시요. " + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "JDK 1.5이상을 설치하시기 바랍니다." +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "폴란드어" @@ -1224,10 +1387,18 @@ msgstr "변경 사항을 \"{0}\"? 에 저장하시겠습니까? " msgid "Save sketch folder as..." msgstr "스케치 폴더를 다른 이름으로 저장…" +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "저장…" +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "스케치를 위한 폴더를 선택(또는 새로 만들기)…" @@ -1260,20 +1431,6 @@ msgstr "전송" msgid "Serial Monitor" msgstr "시리얼 모니터" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "시리얼 포트 ''{0}'' 가 이미 사용되고 있습니다. 이 포트를 사용하는 다른 프로그램을 종료하십시요. " - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "시리얼 포트 ''{0}'' 가 이미 사용되고 있습니다. 이 포트를 사용하는 다른 프로그램을 종료하십시요. " - #: Serial.java:194 #, java-format msgid "" @@ -1353,6 +1510,10 @@ msgstr "스케치북 폴더가 사라졌습니니다." msgid "Sketchbook location:" msgstr "스케치북 위치: " +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "스케치 (*.ino, *.pde)" @@ -1403,6 +1564,10 @@ msgstr "타밀어" msgid "The 'BYTE' keyword is no longer supported." msgstr "'BYTE' 키워드는 더 이상 지원되지 않습니니다." +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "Client 클래스는 EthernetClient로 이름이 변경되었습니다." @@ -1470,12 +1635,12 @@ msgid "" "but anything besides the code will be lost." msgstr "스케치 폴더가 사라졌습니다\n같은 장소에 다시 저장을 시도합니다,\n하지만 코드를 제외한 나머지 부분은 잃어버립니다." -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." -msgstr "스케치 이름을 변경해야 합니다. 스케치 이름은 아스키 문자나\n숫자(하지만 숫자로 시작할 수 없습니다)만 가능합니다.\n그리고 64자 미만이여야 합니다." +"They should also be less than 64 characters long." +msgstr "스케치의 이름은 수정이 되어야 합니다. 스케치의 이름은 \nASCII 문자와 숫자로만 구성이 가능하며,(숫자로 시작할 수 없음)\n최대 64 문자열까지 가능합니다. " #: Base.java:259 msgid "" @@ -1486,6 +1651,12 @@ msgid "" "himself in the third person." msgstr "스케치북 폴더가 더 이상 존재하지 않습니다.\n아두이노는 기본 스케치북 위치로 전환합니다\n그리고 필요하면 새로운 스케치북 폴더를 만들겁니다\n그러면 아두이노는 더 이상 이 문제에 대해\n얘기하지 않을겁니다." +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1628,6 +1799,13 @@ msgstr "베트남어" msgid "Visit Arduino.cc" msgstr "Arduino.cc 방문하기" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "" + #: Base.java:2128 msgid "Warning" msgstr "경고" @@ -1796,10 +1974,6 @@ msgstr "환경설정" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "http://github.com/arduino/Arduino/issues" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1829,17 +2003,6 @@ msgstr "name 이 null입니다." msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "char {1}을 포함 {0} 바이트를 위한 readBytesUntil() 바이트 버퍼가 너무 작습니니다." - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "removeCode: 내부 에러.. 코드를 찾을 수 없습니다" - #: Editor.java:932 msgid "serialMenu is null" msgstr "serialMenu가 Null입니다" @@ -1850,6 +2013,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "선택돤 시리얼 포트{0}는 존재하지 않거나 해당 보드가 연결되지 않았습니다." +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "" + #: Preferences.java:391 msgid "upload" msgstr "업로드" @@ -1873,3 +2041,45 @@ msgstr "{0} | 아두이노 {1}" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "" diff --git a/arduino-core/src/processing/app/i18n/Resources_ko_KR.properties b/arduino-core/src/processing/app/i18n/Resources_ko_KR.properties index a20d53400..6aec8457b 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ko_KR.properties +++ b/arduino-core/src/processing/app/i18n/Resources_ko_KR.properties @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # Jinbuhm Kim , 2012. # -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Korean (Korea) (http\://www.transifex.com/projects/p/arduino-ide-15/language/ko_KR/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ko_KR\nPlural-Forms\: nplurals\=1; plural\=0;\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-15 13\:01+0000\nLast-Translator\: Ki-hyeok Park \nLanguage-Team\: Korean (Korea) (http\://www.transifex.com/projects/p/arduino-ide-15/language/ko_KR/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ko_KR\nPlural-Forms\: nplurals\=1; plural\=0;\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ (\uc544\ub450\uc774\ub178\ub97c \uc7ac\uc2dc\uc791\ud574\uc57c \ud568) @@ -17,6 +17,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(\uc544\ub450\uc774\ub178\uac00 \uc2e4\ud589\ub418\uc9c0 \uc54a\ub294 \uacbd\uc6b0\uc5d0\ub9cc \uc218\uc815 \uac00\ub2a5) +#: ../../../processing/app/Base.java:468 +--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload=--verbose, --verbose-upload \uc640 --verbose-build \ub294 --verify \ub098 --upload\uc640 \ud568\uaed8 \uc368\uc57c\ub9cc \ud569\ub2c8\ub2e4. + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -53,9 +56,23 @@ Add\ File...=\ud30c\uc77c \ucd94\uac00\u2026 #: Base.java:963 Add\ Library...=\ub77c\uc774\ube0c\ub7ec\ub9ac \ucd94\uac00\u2026 +#: ../../../processing/app/Preferences.java:96 +!Albanian= + #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=\ud30c\uc77c \uc778\ucf54\ub529 \ubb38\uc81c\ub97c \ud574\uacb0\ud558\ub294 \ub3d9\uc548 \uc624\ub958\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4.\n\uc774\uc804 \ubc84\uc83c\uc744 \ub36e\uc5b4\uc4f8 \uc218 \uc788\uc73c\ubbc0\ub85c \uc774 \uc2a4\ucf00\uce58 \uc800\uc7a5\ud558\uc9c0 \ub9c8\uc2ed\uc2dc\uc694.\n\uc5f4\uae30 \uba54\ub274\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc2a4\ucf00\uce58\ub97c \ub2e4\uc2dc \uc5f4\uace0 \ub2e4\uc2dc \uc2dc\ub3c4\ud558\uc2ed\uc2dc\uc694.\n +#: ../../../processing/app/BaseNoGui.java:528 +An\ error\ occurred\ while\ uploading\ the\ sketch=\uc2a4\ucf00\uce58\ub97c \uc5c5\ub85c\ub4dc \ud558\ub294 \ub3d9\uc548 \uc5d0\ub7ec\uac00 \ubc1c\uc0dd\ud558\uc600\uc2b5\ub2c8\ub2e4. + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=\ud50c\ub7ab\ud3fc\uc5d0 \ud2b9\uc815\ud55c \ucf54\ub4dc\ub97c \ub85c\ub4dc\ud558\ub294 \ub3d9\uc548\n\uc54c\uc218 \uc5c6\ub294 \uc5d0\ub7ec\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2c8\ub2e4. @@ -105,12 +122,33 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\uc815\ub9d0\ub85c "{0}"\ub97c \uc #: Sketch.java:587 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\uc815\ub9d0\ub85c \uc2a4\ucf00\uce58\ub97c \uc0ad\uc81c\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? +#: ../../../processing/app/Base.java:356 +!Argument\ required\ for\ --board= + +#: ../../../processing/app/Base.java:370 +!Argument\ required\ for\ --curdir= + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +!Argument\ required\ for\ --port= + +#: ../../../processing/app/Base.java:377 +!Argument\ required\ for\ --pref= + +#: ../../../processing/app/Base.java:384 +!Argument\ required\ for\ --preferences-file= + #: ../../../processing/app/Preferences.java:137 Armenian=\uc544\ub974\uba54\ub2c8\uc548 #: ../../../processing/app/Preferences.java:138 Asturian=\uc624\uc2a4\ud2b8\ub9ac\uc544\uc5b4 +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 Auto\ Format=\uc790\ub3d9 \ud3ec\ub9f7 @@ -142,6 +180,12 @@ Bad\ error\ line\:\ {0}=\uc798\ubabb\ub41c \uc624\ub958 \ub77c\uc778\: {0} #: Editor.java:2136 Bad\ file\ selected=\uc798\ubabb\ub41c \ud30c\uc77c\uc774 \uc120\ud0dd\ub410\uc2b5\ub2c8\ub2e4 +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +!Basque= + #: ../../../processing/app/Preferences.java:139 Belarusian=\ubca8\ub85c\ub8e8\uc2dc\uc5b4 @@ -168,6 +212,9 @@ Browse=\ucc3e\uc544\ubcf4\uae30 #: Sketch.java:1392 Sketch.java:1423 Build\ folder\ disappeared\ or\ could\ not\ be\ written=\ube4c\ub4dc \ud3f4\ub354\uac00 \uc0ac\ub77c\uc84c\uac70\ub098 \uc800\uc7a5\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4 +#: ../../../processing/app/Sketch.java:1530 +Build\ options\ changed,\ rebuilding\ all=\ube4c\ub4dc \uc120\ud0dd\uc0ac\ud56d \ubcc0\uacbd\ub428, \ubaa8\ub450 \ub2e4\uc2dc \ube4c\ub4dc\ud569\ub2c8\ub2e4. + #: ../../../processing/app/Preferences.java:80 Bulgarian=\ubd88\uac00\ub9ac\uc5b4 @@ -180,8 +227,13 @@ Burn\ Bootloader=\ubd80\ud2b8\ub85c\ub354 \uad7d\uae30 #: Editor.java:2504 Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=I/O \ubcf4\ub4dc\uc5d0 \ubd80\ud2b8\ub85c\ub354 \uad7d\uae30 (\uc774\uac83\uc740 \uc2dc\uac04\uc774 \uac78\ub9b4 \uc218 \uc788\uc2b5\ub2c8\ub2e4)\u2026 -#: ../../../processing/app/Base.java:368 -Can't\ open\ source\ sketch\!=\uc18c\uc2a4 \uc2a4\ucf00\uce58\ub97c \uc5f4 \uc218 \uc5c6\uc74c \! +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 Canadian\ French=\uce90\ub098\ub2e4 \ud504\ub791\uc2a4\uc5b4 @@ -193,6 +245,9 @@ Cancel=\ucde8\uc18c #: Sketch.java:455 Cannot\ Rename=\uc774\ub984\uc744 \ubc14\uafc0 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4 +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 Carriage\ return=\uce90\ub9ac\uc9c0 \ub9ac\ud134 @@ -226,10 +281,6 @@ Close=\ub2eb\uae30 #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=\uc8fc\uc11d\ucd94\uac00/\uc8fc\uc11d\uc0ad\uc81c -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=\ucef4\ud30c\uc77c \uc5d0\ub7ec,\uc774 \ucf54\ub4dc\ub97c {0}\ub85c \uc81c\ucd9c\ud574 \uc8fc\uc2dc\uae30 \ubc14\ub78d\ub2c8\ub2e4 - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=\uc2a4\ucf00\uce58\ub97c \ucef4\ud30c\uc77c \uc911\u2026 @@ -305,9 +356,8 @@ Could\ not\ re-save\ sketch=\uc7ac \uc800\uc7a5\uc744 \ud560 \uc218 \uc5c6\uc2b5 #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\uae30\ubcf8 \uc124\uc815\uc744 \uc77d\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.\n\uc544\ub450\uc774\ub178\ub97c \ub2e4\uc2dc \uc124\uce58\ud574\uc57c \ud569\ub2c8\ub2e4. -#: Preferences.java:258 -#, java-format -Could\ not\ read\ preferences\ from\ {0}={0}\ub85c \ubd80\ud130 \ud658\uacbd\uc124\uc815\uc744 \uc77d\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4 +#: ../../../processing/app/Sketch.java:1525 +Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=\uc774\uc804\uc758 \ube4c\ub4dc \uc124\uc815 \ud30c\uc77c\uc744 \uc77d\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. \ubaa8\ub450 \ub2e4\uc2dc \ube4c\ub4dc\ud569\ub2c8\ub2e4. #: Base.java:2482 #, java-format @@ -330,6 +380,9 @@ Could\ not\ rename\ the\ sketch.\ (2)=\uc2a4\ucf00\uce58 \uc774\ub984\uc744 \ubc #, java-format Could\ not\ replace\ {0}={0}\ub97c \ubc14\uafc0 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4 +#: ../../../processing/app/Sketch.java:1579 +Could\ not\ write\ build\ preferences\ file=\ube4c\ub4dc \uc124\uc815 \ud30c\uc77c\uc744 \uc4f8 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. + #: tools/Archiver.java:74 Couldn't\ archive\ sketch=\uc2a4\ucf00\uce58\ub97c \ubcf4\uad00 \ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4 @@ -378,12 +431,19 @@ Done\ Saving.=\uc800\uc7a5 \uc644\ub8cc. #: Editor.java:2510 Done\ burning\ bootloader.=\ubd80\ud2b8\ub85c\ub354 \uad7d\uae30 \uc644\ub8cc +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=\ucef4\ud30c\uc77c \uc644\ub8cc #: Editor.java:2564 Done\ printing.=\uc778\uc1c4 \uc644\ub8cc +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=\uc5c5\ub85c\ub4dc \uc644\ub8cc @@ -462,6 +522,9 @@ Error\ while\ burning\ bootloader.=\ubd80\ud2b8\ub85c\ub354 \uad7d\ub294\uc911 \ #: ../../../processing/app/Editor.java:2555 Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=\ubd80\ud2b8\ub85c\ub354\ub97c \uad6c\uc6b8\ub54c \uc624\ub958\: \uc124\uc815 \uac12'{0}' \uc774 \uc5c6\uc74c +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=\ucf54\ub4dc {0}\ub97c \ub85c\ub529\ud558\ub294 \uc911 \uc5d0\ub7ec @@ -469,10 +532,21 @@ Error\ while\ loading\ code\ {0}=\ucf54\ub4dc {0}\ub97c \ub85c\ub529\ud558\ub294 #: Editor.java:2567 Error\ while\ printing.=\uc778\ud670\ud558\ub294 \uc911\uc5d0 \uc624\ub958 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4. +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=\uc5c5\ub85c\ub4dc \uc624\ub958\: \uc124\uc815 \uac12'{0}' \uc774 \uc5c6\uc74c +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 Estonian=\uc5d0\uc2a4\ud1a0\ub2c8\uc544\uc5b4 @@ -488,6 +562,10 @@ Export\ canceled,\ changes\ must\ first\ be\ saved.=\ub0b4\ubcf4\ub0b4\uae30 \uc #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +Failed\ to\ open\ sketch\:\ "{0}"=\uc5f4\uae30 \uc2e4\ud328 \uc2a4\ucf00\uce58\: "{0}" + #: Editor.java:491 File=\ud30c\uc77c @@ -522,8 +600,9 @@ Fix\ Encoding\ &\ Reload=\uc778\ucf54\ub529 \uc218\uc815 & \uc0c8\ub85c \uace0\u #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=\ub77c\uc774\ube0c\ub7ec\ub9ac \uc124\uce58\ub97c \uc704\ud574\uc11c \ub2e4\uc74c \uc0ac\uc774\ud2b8\ub97c \ucc38\uace0\ud558\uc138\uc694\: http\://arduino.cc/en/Guide/Libraries\n -#: debug/BasicUploader.java:80 -Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =1200bps\ub97c \uc0ac\uc6a9\ud558\uc5ec \ud3ec\ud2b8\ub97c \ub9ac\uc14b\ud569\ub2c8\ub2e4. +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=\ud504\ub791\uc2a4\uc5b4 @@ -627,8 +706,8 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=\ub77c\uc77 #: Preferences.java:106 Lithuaninan=\ub9ac\ud22c\uc544\ub2c8\uc544\uc5b4 -#: ../../../processing/app/Sketch.java:1660 -Low\ memory\ available,\ stability\ problems\ may\ occur=\uba54\ubaa8\ub9ac \ubd80\uc871, \uc548\uc815\uc131 \ubb38\uc81c\uac00 \uc0dd\uae38 \uc218 \uc788\uc2b5\ub2c8\ub2e4. +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 Marathi=\ub9c8\ub77c\ud2f0\uc5b4 @@ -639,12 +718,24 @@ Message=\uba54\uc2dc\uc9c0 #: ../../../processing/app/preproc/PdePreprocessor.java:412 Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=*/ \uac00 \uc8fc\uc11d \ucc98\ub9ac \ub05d\uc5d0 \ube60\uc84c\uc2b5\ub2c8\ub2e4. (/* \uc8fc\uc11d */) +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\ucd94\uac00\uc801\uc778 \ud658\uacbd \uc124\uc815\uc740 \ud30c\uc77c\uc5d0\uc11c \uc9c1\uc811 \ud3b8\uc9d1\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4 #: Editor.java:2156 Moving=\uc774\ub3d9 +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +Must\ specify\ exactly\ one\ sketch\ file=\ub2e8 1\uac1c\uc758 \uc2a4\ucf00\uce58 \ud30c\uc77c\uc744 \uc120\ud0dd\ud574\uc57c \ud569\ub2c8\ub2e4. + +#: ../../../processing/app/Preferences.java:158 +!N'Ko= + #: Sketch.java:282 Name\ for\ new\ file\:=\uc0c8\ub85c\uc6b4 \ud30c\uc77c\uc744 \uc704\ud55c \uc774\ub984\: @@ -672,12 +763,18 @@ Next\ Tab=\ub2e4\uc74c \ud0ed #: Preferences.java:78 UpdateCheck.java:108 No=\uc544\ub2c8\uc694 +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\ubcf4\ub4dc\uac00 \uc120\ud0dd\ub418\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4; \ud234>\ubcf4\ub4dc \uba54\ub274\uc5d0\uc11c \ubcf4\ub4dc\ub97c \uc120\ud0dd\ud558\uc2dc\uae30 \ubc14\ub78d\ub2c8\ub2e4. #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=\uc790\ub3d9 \ud3ec\ub9f7\uc744 \uc704\ud574 \ubcc0\uacbd\uc774 \ud544\uc694\uc5c6\uc2b5\ub2c8\ub2e4. +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=\uc2a4\ucf00\uce58\uc5d0 \ud30c\uc77c\uc774 \ucd94\uac00\ub418\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4. @@ -687,6 +784,9 @@ No\ launcher\ available=\ub7f0\ucc98\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b #: SerialMonitor.java:112 No\ line\ ending=No line ending +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\ub2f9\uc2e0\uc758 \uc2e0\uc120\ud55c \uacf5\uae30\ub97c \uc704\ud55c \uc2dc\uac04\uc785\ub2c8\ub2e4. @@ -694,6 +794,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\ub2f9\uc2e0\uc758 \uc2e0\uc #, java-format No\ reference\ available\ for\ "{0}"="{0}" \uac00 \uc7a0\uc870\uc5d0 \uc874\uc7ac\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +No\ valid\ code\ files\ found=\uc720\ud6a8\ud55c \ucf54\ub4dc \ud30c\uc77c\uc744 \ucc3e\uc9c0 \ubabb\ud558\uc600\uc2b5\ub2c8\ub2e4. + #: ../../../processing/app/Base.java:309 No\ valid\ configured\ cores\ found\!\ Exiting...=\uc720\ud6a8\ud55c \ucf54\uc5b4 \uc124\uc815\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. \uc885\ub8cc\uc911\u2026 @@ -720,6 +830,9 @@ OK=\ud655\uc778 #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=\ud30c\uc77c\uc774 \uc2a4\ucf00\uce58\uc5d0 \ucd94\uac00\ub410\uc2b5\ub2c8\ub2e4. +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=\uc5f4\uae30 @@ -747,12 +860,22 @@ Paste=\ubd99\uc5ec\ub123\uae30 #: Preferences.java:109 Persian=\ud398\ub974\uc2dc\uc544\uc5b4 +#: ../../../processing/app/Preferences.java:161 +!Persian\ (Iran)= + #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=\uc2a4\ucf00\uce58 > \ub77c\uc774\ube0c\ub7ec\ub9ac \uac00\uc838\uc624\uae30 \uba54\ub274\uc5d0\uc11c SPI \ub77c\uc774\ube0c\ub7ec\ub9ac\ub97c \uac00\uc838\uc624\uc2dc\uae30 \ubc14\ub78d\ub2c8\ub2e4. +#: ../../../processing/app/debug/Compiler.java:529 +Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Sketch > Import Library \uba54\ub274\uc5d0\uc11c the Wire library\ub97c \ub4e4\uc5ec\uc624\uc2ed\uc2dc\uc694. + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=JDK 1.5\uc774\uc0c1\uc744 \uc124\uce58\ud558\uc2dc\uae30 \ubc14\ub78d\ub2c8\ub2e4. +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 Polish=\ud3f4\ub780\ub4dc\uc5b4 @@ -874,9 +997,15 @@ Save\ changes\ to\ "{0}"?\ \ =\ubcc0\uacbd \uc0ac\ud56d\uc744 "{0}"? \uc5d0 \uc8 #: Sketch.java:825 Save\ sketch\ folder\ as...=\uc2a4\ucf00\uce58 \ud3f4\ub354\ub97c \ub2e4\ub978 \uc774\ub984\uc73c\ub85c \uc800\uc7a5\u2026 +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=\uc800\uc7a5\u2026 +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=\uc2a4\ucf00\uce58\ub97c \uc704\ud55c \ud3f4\ub354\ub97c \uc120\ud0dd(\ub610\ub294 \uc0c8\ub85c \ub9cc\ub4e4\uae30)\u2026 @@ -901,14 +1030,6 @@ Send=\uc804\uc1a1 #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=\uc2dc\ub9ac\uc5bc \ubaa8\ub2c8\ud130 -#: Serial.java:174 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=\uc2dc\ub9ac\uc5bc \ud3ec\ud2b8 ''{0}'' \uac00 \uc774\ubbf8 \uc0ac\uc6a9\ub418\uace0 \uc788\uc2b5\ub2c8\ub2e4. \uc774 \ud3ec\ud2b8\ub97c \uc0ac\uc6a9\ud558\ub294 \ub2e4\ub978 \ud504\ub85c\uadf8\ub7a8\uc744 \uc885\ub8cc\ud558\uc2ed\uc2dc\uc694. - -#: Serial.java:121 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=\uc2dc\ub9ac\uc5bc \ud3ec\ud2b8 ''{0}'' \uac00 \uc774\ubbf8 \uc0ac\uc6a9\ub418\uace0 \uc788\uc2b5\ub2c8\ub2e4. \uc774 \ud3ec\ud2b8\ub97c \uc0ac\uc6a9\ud558\ub294 \ub2e4\ub978 \ud504\ub85c\uadf8\ub7a8\uc744 \uc885\ub8cc\ud558\uc2ed\uc2dc\uc694. - #: Serial.java:194 #, java-format Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=\uc2dc\ub9ac\uc5bc \ud3ec\ud2b8 ''{0}''\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. \ud234 > \uc2dc\ub9ac\uc5bc \ud3ec\ud2b8 \uba54\ub274\uc5d0\uc11c \uc62c\ubc14\ub978 \ud3ec\ud2b8\ub97c\uc120\ud0dd\ud588\ub098\uc694? @@ -963,6 +1084,9 @@ Sketchbook\ folder\ disappeared=\uc2a4\ucf00\uce58\ubd81 \ud3f4\ub354\uac00 \uc0 #: Preferences.java:315 Sketchbook\ location\:=\uc2a4\ucf00\uce58\ubd81 \uc704\uce58\: +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 Sketches\ (*.ino,\ *.pde)=\uc2a4\ucf00\uce58 (*.ino, *.pde) @@ -997,6 +1121,9 @@ Tamil=\ud0c0\ubc00\uc5b4 #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.='BYTE' \ud0a4\uc6cc\ub4dc\ub294 \ub354 \uc774\uc0c1 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2c8\ub2e4. +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Client \ud074\ub798\uc2a4\ub294 EthernetClient\ub85c \uc774\ub984\uc774 \ubcc0\uacbd\ub418\uc5c8\uc2b5\ub2c8\ub2e4. @@ -1033,12 +1160,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=\uc2a4\ucf00\uce58 \ud3f4\ub354\uac00 \uc0ac\ub77c\uc84c\uc2b5\ub2c8\ub2e4\n\uac19\uc740 \uc7a5\uc18c\uc5d0 \ub2e4\uc2dc \uc800\uc7a5\uc744 \uc2dc\ub3c4\ud569\ub2c8\ub2e4,\n\ud558\uc9c0\ub9cc \ucf54\ub4dc\ub97c \uc81c\uc678\ud55c \ub098\uba38\uc9c0 \ubd80\ubd84\uc740 \uc783\uc5b4\ubc84\ub9bd\ub2c8\ub2e4. -#: Sketch.java:2018 -The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=\uc2a4\ucf00\uce58 \uc774\ub984\uc744 \ubcc0\uacbd\ud574\uc57c \ud569\ub2c8\ub2e4. \uc2a4\ucf00\uce58 \uc774\ub984\uc740 \uc544\uc2a4\ud0a4 \ubb38\uc790\ub098\n\uc22b\uc790(\ud558\uc9c0\ub9cc \uc22b\uc790\ub85c \uc2dc\uc791\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4)\ub9cc \uac00\ub2a5\ud569\ub2c8\ub2e4.\n\uadf8\ub9ac\uace0 64\uc790 \ubbf8\ub9cc\uc774\uc5ec\uc57c \ud569\ub2c8\ub2e4. +#: ../../../processing/app/Sketch.java:2028 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.=\uc2a4\ucf00\uce58\uc758 \uc774\ub984\uc740 \uc218\uc815\uc774 \ub418\uc5b4\uc57c \ud569\ub2c8\ub2e4. \uc2a4\ucf00\uce58\uc758 \uc774\ub984\uc740 \nASCII \ubb38\uc790\uc640 \uc22b\uc790\ub85c\ub9cc \uad6c\uc131\uc774 \uac00\ub2a5\ud558\uba70,(\uc22b\uc790\ub85c \uc2dc\uc791\ud560 \uc218 \uc5c6\uc74c)\n\ucd5c\ub300 64 \ubb38\uc790\uc5f4\uae4c\uc9c0 \uac00\ub2a5\ud569\ub2c8\ub2e4. #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=\uc2a4\ucf00\uce58\ubd81 \ud3f4\ub354\uac00 \ub354 \uc774\uc0c1 \uc874\uc7ac\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.\n\uc544\ub450\uc774\ub178\ub294 \uae30\ubcf8 \uc2a4\ucf00\uce58\ubd81 \uc704\uce58\ub85c \uc804\ud658\ud569\ub2c8\ub2e4\n\uadf8\ub9ac\uace0 \ud544\uc694\ud558\uba74 \uc0c8\ub85c\uc6b4 \uc2a4\ucf00\uce58\ubd81 \ud3f4\ub354\ub97c \ub9cc\ub4e4\uac81\ub2c8\ub2e4\n\uadf8\ub7ec\uba74 \uc544\ub450\uc774\ub178\ub294 \ub354 \uc774\uc0c1 \uc774 \ubb38\uc81c\uc5d0 \ub300\ud574\n\uc598\uae30\ud558\uc9c0 \uc54a\uc744\uac81\ub2c8\ub2e4. +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\uc774 \ud30c\uc77c\uc740 \uc774\ubbf8 \ub2f9\uc2e0\uc774 \ucd94\uac00\ud558\ub824\ub294\n\uc7a5\uc18c\uc5d0 \ubcf5\uc0ac\ub418\uc5c8\uc2b5\ub2c8\ub2e4.\n\ub354 \uc774\uc0c1 \uc9c4\ud589 \ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. @@ -1142,6 +1272,10 @@ Vietnamese=\ubca0\ud2b8\ub0a8\uc5b4 #: Editor.java:1105 Visit\ Arduino.cc=Arduino.cc \ubc29\ubb38\ud558\uae30 +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= + #: Base.java:2128 Warning=\uacbd\uace0 @@ -1240,9 +1374,6 @@ environment=\ud658\uacbd\uc124\uc815 #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1265,13 +1396,6 @@ name\ is\ null=name \uc774 null\uc785\ub2c8\ub2e4. #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=char {1}\uc744 \ud3ec\ud568 {0} \ubc14\uc774\ud2b8\ub97c \uc704\ud55c readBytesUntil() \ubc14\uc774\ud2b8 \ubc84\ud37c\uac00 \ub108\ubb34 \uc791\uc2b5\ub2c8\ub2c8\ub2e4. - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: \ub0b4\ubd80 \uc5d0\ub7ec.. \ucf54\ub4dc\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4 - #: Editor.java:932 serialMenu\ is\ null=serialMenu\uac00 Null\uc785\ub2c8\ub2e4 @@ -1279,6 +1403,10 @@ serialMenu\ is\ null=serialMenu\uac00 Null\uc785\ub2c8\ub2e4 #, java-format the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=\uc120\ud0dd\ub3e4 \uc2dc\ub9ac\uc5bc \ud3ec\ud2b8{0}\ub294 \uc874\uc7ac\ud558\uc9c0 \uc54a\uac70\ub098 \ud574\ub2f9 \ubcf4\ub4dc\uac00 \uc5f0\uacb0\ub418\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4. +#: ../../../processing/app/Base.java:389 +#, java-format +!unknown\ option\:\ {0}= + #: Preferences.java:391 upload=\uc5c5\ub85c\ub4dc @@ -1297,3 +1425,35 @@ upload=\uc5c5\ub85c\ub4dc #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= + +#: ../../../processing/app/Base.java:476 +#, java-format +!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= + +#: ../../../processing/app/Base.java:509 +#, java-format +!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= + +#: ../../../processing/app/Base.java:507 +#, java-format +!{0}\:\ Invalid\ option\ for\ board\ "{1}"= + +#: ../../../processing/app/Base.java:502 +#, java-format +!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= + +#: ../../../processing/app/Base.java:486 +#, java-format +!{0}\:\ Unknown\ architecture= + +#: ../../../processing/app/Base.java:491 +#, java-format +!{0}\:\ Unknown\ board= + +#: ../../../processing/app/Base.java:481 +#, java-format +!{0}\:\ Unknown\ package= diff --git a/arduino-core/src/processing/app/i18n/Resources_lt_LT.po b/arduino-core/src/processing/app/i18n/Resources_lt_LT.po index 9d021f34d..ef2c7b49f 100644 --- a/arduino-core/src/processing/app/i18n/Resources_lt_LT.po +++ b/arduino-core/src/processing/app/i18n/Resources_lt_LT.po @@ -34,6 +34,12 @@ msgstr "" msgid "(edit only when Arduino is not running)" msgstr "" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr "" @@ -92,6 +98,10 @@ msgstr "" msgid "Add Library..." msgstr "Pridėti bibleoteką..." +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -99,6 +109,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -177,6 +201,30 @@ msgstr "" msgid "Are you sure you want to delete this sketch?" msgstr "" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "" @@ -185,6 +233,10 @@ msgstr "" msgid "Asturian" msgstr "" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "" @@ -226,6 +278,14 @@ msgstr "" msgid "Bad file selected" msgstr "" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "" @@ -262,6 +322,10 @@ msgstr "" msgid "Build folder disappeared or could not be written" msgstr "" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "" @@ -278,8 +342,14 @@ msgstr "" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "" -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" msgstr "" #: ../../../processing/app/Preferences.java:92 @@ -295,6 +365,10 @@ msgstr "" msgid "Cannot Rename" msgstr "" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "" @@ -339,11 +413,6 @@ msgstr "" msgid "Comment/Uncomment" msgstr "" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "" @@ -451,9 +520,8 @@ msgid "" "You'll need to reinstall Arduino." msgstr "" -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" msgstr "" #: Base.java:2482 @@ -483,6 +551,10 @@ msgstr "" msgid "Could not replace {0}" msgstr "" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "" @@ -552,6 +624,11 @@ msgstr "" msgid "Done burning bootloader." msgstr "" +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "" @@ -560,6 +637,10 @@ msgstr "" msgid "Done printing." msgstr "" +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "" @@ -663,6 +744,10 @@ msgstr "" msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -672,11 +757,25 @@ msgstr "" msgid "Error while printing." msgstr "" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "" @@ -697,6 +796,11 @@ msgstr "" msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "" + #: Editor.java:491 msgid "File" msgstr "" @@ -744,8 +848,9 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "Daugiau informacijos apie bibliotekų diegimą, žiurėkite: http://arduino.cc/en/Guide/Libraries\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" msgstr "" #: Preferences.java:95 @@ -894,8 +999,8 @@ msgstr "" msgid "Lithuaninan" msgstr "" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: Preferences.java:107 @@ -910,6 +1015,10 @@ msgstr "" msgid "Missing the */ from the end of a /* comment */" msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "" @@ -918,6 +1027,18 @@ msgstr "" msgid "Moving" msgstr "" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "" + #: Sketch.java:282 msgid "Name for new file:" msgstr "" @@ -954,6 +1075,10 @@ msgstr "" msgid "No" msgstr "" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "" @@ -962,6 +1087,10 @@ msgstr "" msgid "No changes necessary for Auto Format." msgstr "" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "" @@ -974,6 +1103,10 @@ msgstr "" msgid "No line ending" msgstr "" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "Na tikrai, tau laikas įkvėpti gryno oro." @@ -983,6 +1116,19 @@ msgstr "Na tikrai, tau laikas įkvėpti gryno oro." msgid "No reference available for \"{0}\"" msgstr "" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "" @@ -1019,6 +1165,10 @@ msgstr "" msgid "One file added to the sketch." msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "" @@ -1055,14 +1205,27 @@ msgstr "" msgid "Persian" msgstr "" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "" +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "" + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "" @@ -1225,10 +1388,18 @@ msgstr "" msgid "Save sketch folder as..." msgstr "" +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "" +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "" @@ -1261,20 +1432,6 @@ msgstr "" msgid "Serial Monitor" msgstr "" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "" - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "" - #: Serial.java:194 #, java-format msgid "" @@ -1354,6 +1511,10 @@ msgstr "" msgid "Sketchbook location:" msgstr "" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "" @@ -1404,6 +1565,10 @@ msgstr "" msgid "The 'BYTE' keyword is no longer supported." msgstr "" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "" @@ -1471,11 +1636,11 @@ msgid "" "but anything besides the code will be lost." msgstr "" -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." +"They should also be less than 64 characters long." msgstr "" #: Base.java:259 @@ -1487,6 +1652,12 @@ msgid "" "himself in the third person." msgstr "" +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1629,6 +1800,13 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "" + #: Base.java:2128 msgid "Warning" msgstr "" @@ -1797,10 +1975,6 @@ msgstr "" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "http://github.com/arduino/Arduino/issues" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1830,17 +2004,6 @@ msgstr "" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "" - #: Editor.java:932 msgid "serialMenu is null" msgstr "" @@ -1851,6 +2014,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "" + #: Preferences.java:391 msgid "upload" msgstr "" @@ -1874,3 +2042,45 @@ msgstr "" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "" diff --git a/arduino-core/src/processing/app/i18n/Resources_lt_LT.properties b/arduino-core/src/processing/app/i18n/Resources_lt_LT.properties index 5a8575821..8f068e090 100644 --- a/arduino-core/src/processing/app/i18n/Resources_lt_LT.properties +++ b/arduino-core/src/processing/app/i18n/Resources_lt_LT.properties @@ -18,6 +18,9 @@ #: Preferences.java:478 !(edit\ only\ when\ Arduino\ is\ not\ running)= +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 !.pde\ ->\ .ino= @@ -54,9 +57,23 @@ #: Base.java:963 Add\ Library...=Prid\u0117ti bibleotek\u0105... +#: ../../../processing/app/Preferences.java:96 +!Albanian= + #: tools/FixEncoding.java:77 !An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n= +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 !An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.= @@ -106,12 +123,33 @@ Add\ Library...=Prid\u0117ti bibleotek\u0105... #: Sketch.java:587 !Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?= +#: ../../../processing/app/Base.java:356 +!Argument\ required\ for\ --board= + +#: ../../../processing/app/Base.java:370 +!Argument\ required\ for\ --curdir= + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +!Argument\ required\ for\ --port= + +#: ../../../processing/app/Base.java:377 +!Argument\ required\ for\ --pref= + +#: ../../../processing/app/Base.java:384 +!Argument\ required\ for\ --preferences-file= + #: ../../../processing/app/Preferences.java:137 !Armenian= #: ../../../processing/app/Preferences.java:138 !Asturian= +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 !Auto\ Format= @@ -143,6 +181,12 @@ Add\ Library...=Prid\u0117ti bibleotek\u0105... #: Editor.java:2136 !Bad\ file\ selected= +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +!Basque= + #: ../../../processing/app/Preferences.java:139 !Belarusian= @@ -169,6 +213,9 @@ Add\ Library...=Prid\u0117ti bibleotek\u0105... #: Sketch.java:1392 Sketch.java:1423 !Build\ folder\ disappeared\ or\ could\ not\ be\ written= +#: ../../../processing/app/Sketch.java:1530 +!Build\ options\ changed,\ rebuilding\ all= + #: ../../../processing/app/Preferences.java:80 !Bulgarian= @@ -181,8 +228,13 @@ Add\ Library...=Prid\u0117ti bibleotek\u0105... #: Editor.java:2504 !Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...= -#: ../../../processing/app/Base.java:368 -!Can't\ open\ source\ sketch\!= +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 !Canadian\ French= @@ -194,6 +246,9 @@ Add\ Library...=Prid\u0117ti bibleotek\u0105... #: Sketch.java:455 !Cannot\ Rename= +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 !Carriage\ return= @@ -227,10 +282,6 @@ Add\ Library...=Prid\u0117ti bibleotek\u0105... #: Editor.java:1208 Editor.java:2749 !Comment/Uncomment= -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -!Compiler\ error,\ please\ submit\ this\ code\ to\ {0}= - #: Sketch.java:1608 Editor.java:1890 !Compiling\ sketch...= @@ -306,9 +357,8 @@ Could\ not\ open\ the\ folder\n{0}=Ne\u012fmanoma atidaryti aplank\u0105\n{0} #: Preferences.java:219 !Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= -#: Preferences.java:258 -#, java-format -!Could\ not\ read\ preferences\ from\ {0}= +#: ../../../processing/app/Sketch.java:1525 +!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= #: Base.java:2482 #, java-format @@ -331,6 +381,9 @@ Could\ not\ open\ the\ folder\n{0}=Ne\u012fmanoma atidaryti aplank\u0105\n{0} #, java-format !Could\ not\ replace\ {0}= +#: ../../../processing/app/Sketch.java:1579 +!Could\ not\ write\ build\ preferences\ file= + #: tools/Archiver.java:74 !Couldn't\ archive\ sketch= @@ -379,12 +432,19 @@ Could\ not\ open\ the\ folder\n{0}=Ne\u012fmanoma atidaryti aplank\u0105\n{0} #: Editor.java:2510 !Done\ burning\ bootloader.= +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 !Done\ compiling.= #: Editor.java:2564 !Done\ printing.= +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 !Done\ uploading.= @@ -463,6 +523,9 @@ Could\ not\ open\ the\ folder\n{0}=Ne\u012fmanoma atidaryti aplank\u0105\n{0} #: ../../../processing/app/Editor.java:2555 !Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format !Error\ while\ loading\ code\ {0}= @@ -470,10 +533,21 @@ Could\ not\ open\ the\ folder\n{0}=Ne\u012fmanoma atidaryti aplank\u0105\n{0} #: Editor.java:2567 !Error\ while\ printing.= +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 !Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 !Estonian= @@ -489,6 +563,10 @@ Could\ not\ open\ the\ folder\n{0}=Ne\u012fmanoma atidaryti aplank\u0105\n{0} #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +!Failed\ to\ open\ sketch\:\ "{0}"= + #: Editor.java:491 !File= @@ -523,8 +601,9 @@ FAQ.html=FAQ.html #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=Daugiau informacijos apie bibliotek\u0173 diegim\u0105, \u017eiur\u0117kite\: http\://arduino.cc/en/Guide/Libraries\n -#: debug/BasicUploader.java:80 -!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ = +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 !French= @@ -628,8 +707,8 @@ Ignoring\ bad\ library\ name=Ignoruojamas blogas bibleotekos pavadinimas #: Preferences.java:106 !Lithuaninan= -#: ../../../processing/app/Sketch.java:1660 -!Low\ memory\ available,\ stability\ problems\ may\ occur= +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 !Marathi= @@ -640,12 +719,24 @@ Ignoring\ bad\ library\ name=Ignoruojamas blogas bibleotekos pavadinimas #: ../../../processing/app/preproc/PdePreprocessor.java:412 !Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 !More\ preferences\ can\ be\ edited\ directly\ in\ the\ file= #: Editor.java:2156 !Moving= +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +!Must\ specify\ exactly\ one\ sketch\ file= + +#: ../../../processing/app/Preferences.java:158 +!N'Ko= + #: Sketch.java:282 !Name\ for\ new\ file\:= @@ -673,12 +764,18 @@ Ignoring\ bad\ library\ name=Ignoruojamas blogas bibleotekos pavadinimas #: Preferences.java:78 UpdateCheck.java:108 !No= +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 !No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.= #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 !No\ changes\ necessary\ for\ Auto\ Format.= +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 !No\ files\ were\ added\ to\ the\ sketch.= @@ -688,6 +785,9 @@ Ignoring\ bad\ library\ name=Ignoruojamas blogas bibleotekos pavadinimas #: SerialMonitor.java:112 !No\ line\ ending= +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Na tikrai, tau laikas \u012fkv\u0117pti gryno oro. @@ -695,6 +795,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Na tikrai, tau laikas \u012f #, java-format !No\ reference\ available\ for\ "{0}"= +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +!No\ valid\ code\ files\ found= + #: ../../../processing/app/Base.java:309 !No\ valid\ configured\ cores\ found\!\ Exiting...= @@ -721,6 +831,9 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Na tikrai, tau laikas \u012f #: Sketch.java:992 Editor.java:376 !One\ file\ added\ to\ the\ sketch.= +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 !Open= @@ -748,12 +861,22 @@ Open...=Atidaryti... #: Preferences.java:109 !Persian= +#: ../../../processing/app/Preferences.java:161 +!Persian\ (Iran)= + #: debug/Compiler.java:408 !Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= +#: ../../../processing/app/debug/Compiler.java:529 +!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= + #: Base.java:239 !Please\ install\ JDK\ 1.5\ or\ later= +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 !Polish= @@ -875,9 +998,15 @@ Quit=I\u0161eiti #: Sketch.java:825 !Save\ sketch\ folder\ as...= +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 !Saving...= +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 !Select\ (or\ create\ new)\ folder\ for\ sketches...= @@ -902,14 +1031,6 @@ Quit=I\u0161eiti #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 !Serial\ Monitor= -#: Serial.java:174 -#, java-format -!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.= - -#: Serial.java:121 -#, java-format -!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.= - #: Serial.java:194 #, java-format !Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?= @@ -964,6 +1085,9 @@ Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ f #: Preferences.java:315 !Sketchbook\ location\:= +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 !Sketches\ (*.ino,\ *.pde)= @@ -998,6 +1122,9 @@ Sunshine=Saul\u0117s \u0161viesa #: debug/Compiler.java:414 !The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.= +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 !The\ Client\ class\ has\ been\ renamed\ EthernetClient.= @@ -1034,12 +1161,15 @@ Sunshine=Saul\u0117s \u0161viesa #: Sketch.java:1755 !The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.= -#: Sketch.java:2018 -!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.= +#: ../../../processing/app/Sketch.java:2028 +!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= #: Base.java:259 !The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.= +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 !This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= @@ -1143,6 +1273,10 @@ Time\ for\ a\ Break=Laikas pertraukai #: Editor.java:1105 !Visit\ Arduino.cc= +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= + #: Base.java:2128 !Warning= @@ -1241,9 +1375,6 @@ Time\ for\ a\ Break=Laikas pertraukai #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1266,13 +1397,6 @@ index.html=index.html #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -!readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}= - -#: Sketch.java:647 -!removeCode\:\ internal\ error..\ could\ not\ find\ code= - #: Editor.java:932 !serialMenu\ is\ null= @@ -1280,6 +1404,10 @@ platforms.html=platforms.html #, java-format !the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected= +#: ../../../processing/app/Base.java:389 +#, java-format +!unknown\ option\:\ {0}= + #: Preferences.java:391 !upload= @@ -1298,3 +1426,35 @@ platforms.html=platforms.html #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= + +#: ../../../processing/app/Base.java:476 +#, java-format +!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= + +#: ../../../processing/app/Base.java:509 +#, java-format +!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= + +#: ../../../processing/app/Base.java:507 +#, java-format +!{0}\:\ Invalid\ option\ for\ board\ "{1}"= + +#: ../../../processing/app/Base.java:502 +#, java-format +!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= + +#: ../../../processing/app/Base.java:486 +#, java-format +!{0}\:\ Unknown\ architecture= + +#: ../../../processing/app/Base.java:491 +#, java-format +!{0}\:\ Unknown\ board= + +#: ../../../processing/app/Base.java:481 +#, java-format +!{0}\:\ Unknown\ package= diff --git a/arduino-core/src/processing/app/i18n/Resources_lv_LV.po b/arduino-core/src/processing/app/i18n/Resources_lv_LV.po index 13d3d837a..673e2cf7c 100644 --- a/arduino-core/src/processing/app/i18n/Resources_lv_LV.po +++ b/arduino-core/src/processing/app/i18n/Resources_lv_LV.po @@ -34,6 +34,12 @@ msgstr "'Pele' ir tikai atbalstīta uz Arduino Leonardo" msgid "(edit only when Arduino is not running)" msgstr "(rediģējiet tikai tad, kad Arduino nav palaists)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -92,6 +98,10 @@ msgstr "Pievienot failu..." msgid "Add Library..." msgstr "Pievienot bibliotēku..." +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -99,6 +109,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "Radās kļūda, labojot faila kodējumu.\nNemēģiniet saglabāt šo skici, jo var tikt pārrakstīta vecā versija.\nIzmantojiet Atvērt, lai atvērtu pa jaunu skici un mēģinātu vēlreiz.\n" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -177,6 +201,30 @@ msgstr "Vai tiešām vēlaties izdzēst \"{0}\"?" msgid "Are you sure you want to delete this sketch?" msgstr "Vai tiešām vēlaties izdzēst šo skici?" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "" @@ -185,6 +233,10 @@ msgstr "" msgid "Asturian" msgstr "" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "Automātiskā formatēšana" @@ -226,6 +278,14 @@ msgstr "Kļūdas rinda: {0}" msgid "Bad file selected" msgstr "Izvēlētais fails nav derīgs" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "" @@ -262,6 +322,10 @@ msgstr "Pārlūkot" msgid "Build folder disappeared or could not be written" msgstr "Būvējamā mape pazuda, vai nevarēja tajā ierakstīt" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "" @@ -278,8 +342,14 @@ msgstr "Iededzināt sāknēšanas ielādētāju" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "Iededzina sāknēšanas ielādētāju I/O platē (tas var aizņemt kādu laiku)..." -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" msgstr "" #: ../../../processing/app/Preferences.java:92 @@ -295,6 +365,10 @@ msgstr "Atcelt" msgid "Cannot Rename" msgstr "Nevar pārsaukt" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "Kursora atgriešanās" @@ -339,11 +413,6 @@ msgstr "Aizvērt" msgid "Comment/Uncomment" msgstr "Komentēt/atkomentēt" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "Kompilatora kļūda, lūdzu, nosūtiet šo kodu uz {0}" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "Kompilē skici..." @@ -451,10 +520,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Nevar nolasīt noklusējuma iestatījumus.\nJums vajadzēs pārinstalēt Arduino." -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "Neizdevās nolasīt iestatījumus no {0}" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "" #: Base.java:2482 #, java-format @@ -483,6 +551,10 @@ msgstr "Neizdevās pārsaukt skici. (2)" msgid "Could not replace {0}" msgstr "Neizdevās aizvietot {0}" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Neizdevās arhivēt skici" @@ -552,6 +624,11 @@ msgstr "Saglabāšana pabeigta." msgid "Done burning bootloader." msgstr "Sāknēšanas ielādētājs iededzināts." +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "Kompilēšana pabeigta." @@ -560,6 +637,10 @@ msgstr "Kompilēšana pabeigta." msgid "Done printing." msgstr "Drukāšana pabeigta." +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "Augšupielādēšana pabeigta." @@ -663,6 +744,10 @@ msgstr "Neizdevāš iededzināt sāknēšanas ielādētāju." msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -672,11 +757,25 @@ msgstr "Radās kļūda, ielādējot kodu {0}" msgid "Error while printing." msgstr "Drukājot radās kļūda." +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "Estonian" @@ -697,6 +796,11 @@ msgstr "Eksportēšana atcelta, vispirms jāsaglabā izmaiņas." msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "" + #: Editor.java:491 msgid "File" msgstr "Fails" @@ -744,9 +848,10 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "Lai uzzinātu par bibliotēku instalēšanu, apskatiet: http://arduino.cc/en/Guide/Libraries\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " -msgstr "Piespiedu atiestatīšana izmantojot 1200bps porta atvēršanu/aizvēršanu" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" +msgstr "" #: Preferences.java:95 msgid "French" @@ -894,8 +999,8 @@ msgstr "Bibliotēka tika pievienota sarakstam. Pārbaudiet \"Importēt bibliotē msgid "Lithuaninan" msgstr "Lithuaninan" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: Preferences.java:107 @@ -910,6 +1015,10 @@ msgstr "Ziņojums" msgid "Missing the */ from the end of a /* comment */" msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "Vairāk iestatījumus var izmainīt tieši failā" @@ -918,6 +1027,18 @@ msgstr "Vairāk iestatījumus var izmainīt tieši failā" msgid "Moving" msgstr "Pārvieto" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "" + #: Sketch.java:282 msgid "Name for new file:" msgstr "Jaunā faila nosaukums:" @@ -954,6 +1075,10 @@ msgstr "Nākamā cilne" msgid "No" msgstr "Nē" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "Lūdzu, vispirms izvēlieties platie no Rīki > Plate izvēlnes." @@ -962,6 +1087,10 @@ msgstr "Lūdzu, vispirms izvēlieties platie no Rīki > Plate izvēlnes." msgid "No changes necessary for Auto Format." msgstr "Izmaiņas nav nepieciešamas priekš automātiskās formatēšanas." +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "Neviens fails netika pievienots skicei." @@ -974,6 +1103,10 @@ msgstr "Neviens palaidējs nav pieejams" msgid "No line ending" msgstr "Bez rindu beigām" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "Nē, patiešām, laiks ieelpot svaigu gaisu!" @@ -983,6 +1116,19 @@ msgstr "Nē, patiešām, laiks ieelpot svaigu gaisu!" msgid "No reference available for \"{0}\"" msgstr "Nevar atrast atsauci priekš \"{0}\"" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "" @@ -1019,6 +1165,10 @@ msgstr "Labi" msgid "One file added to the sketch." msgstr "Viens fails tika pievienots skicei." +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "Atvērt" @@ -1055,14 +1205,27 @@ msgstr "Ielīmēt" msgid "Persian" msgstr "Persian" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "Lūdzu, importējiet SPI bibliotēku no Skice > Importēt bibliotēku izvēlnes." +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "" + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "Lūdzu, instalējiet JDK 1.5 vai jaunāku" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "Polish" @@ -1225,10 +1388,18 @@ msgstr "Vai saglabāt izmaiņas failā \"{0}\"?" msgid "Save sketch folder as..." msgstr "Saglabāt skices mapi kā..." +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "Saglabā..." +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "Izvēlieties (vai izveidojiet jaunu) mapi skicēm..." @@ -1261,20 +1432,6 @@ msgstr "Sūtīt" msgid "Serial Monitor" msgstr "Seriālā porta monitors" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "Seriālais ports \"{0}\" jau tiek izmantots. Pamēģiniet iziet no programmām, kas to varētu izmantot." - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "Seriālais ports \"{0}\" jau tiek izmantots. Pamēģiniet iziet no programmām, kas to varētu izmantot." - #: Serial.java:194 #, java-format msgid "" @@ -1354,6 +1511,10 @@ msgstr "Skiču burtnīcas mape ir pazudusi" msgid "Sketchbook location:" msgstr "Skiču burtnīcas atrašanās vieta:" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "" @@ -1404,6 +1565,10 @@ msgstr "Tamil" msgid "The 'BYTE' keyword is no longer supported." msgstr "'BYTE' atslēgasvārds vairs netiek atbalstīts." +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "Klienta klase ir pārsaukta par EthernetClient." @@ -1471,12 +1636,12 @@ msgid "" "but anything besides the code will be lost." msgstr "Skices mape ir pazudusi.\nTiks mēģināts saglabāt tajā pašā vietā,\nbet viss, izņemot kodu, zudīs." -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." -msgstr "Skices nosaukums bija jāizmaina. Skiču nosaukumi var saturēt tikai\nASCII rakstzīmes un numurus (bet nevar sākties ar ciparu).\nTām vajadētu būt arī mazāk par 64 rakstzīmēm." +"They should also be less than 64 characters long." +msgstr "" #: Base.java:259 msgid "" @@ -1487,6 +1652,12 @@ msgid "" "himself in the third person." msgstr "Skiču burtnīcas mape vairs neeksistē.\nArduino pārslēgsies uz noklusējuma skiču burtnīcas\natrašanās vietu un izveidos jaunu skiču burtnīcas mapi,\nja nepieciešams. Tad Arduino pārstās runāt par sevi\ntrešajā personā." +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1629,6 +1800,13 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "Apmeklēt Arduino.cc" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "" + #: Base.java:2128 msgid "Warning" msgstr "Brīdinājums" @@ -1797,10 +1975,6 @@ msgstr "vide" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1830,17 +2004,6 @@ msgstr "vārds ir tukšs" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "readBytesUntil() baitu buferis ir pārāk mazs priekš {0} baitiem līdz un ieskaitot rakstzīmi {1}" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "removeCode: iekšēja kļūda... nevar atrast kodu" - #: Editor.java:932 msgid "serialMenu is null" msgstr "serialMenu ir tukšs" @@ -1851,6 +2014,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "izvēlētais seriālais ports {0} neeksistē, vai arī jūsu plate nav pievienota" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "" + #: Preferences.java:391 msgid "upload" msgstr "augšupielādē" @@ -1874,3 +2042,45 @@ msgstr "{0} | Arduino {1}" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "" diff --git a/arduino-core/src/processing/app/i18n/Resources_lv_LV.properties b/arduino-core/src/processing/app/i18n/Resources_lv_LV.properties index cc3af2433..19f987b7f 100644 --- a/arduino-core/src/processing/app/i18n/Resources_lv_LV.properties +++ b/arduino-core/src/processing/app/i18n/Resources_lv_LV.properties @@ -18,6 +18,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(redi\u0123\u0113jiet tikai tad, kad Arduino nav palaists) +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -54,9 +57,23 @@ Add\ File...=Pievienot failu... #: Base.java:963 Add\ Library...=Pievienot bibliot\u0113ku... +#: ../../../processing/app/Preferences.java:96 +!Albanian= + #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Rad\u0101s k\u013c\u016bda, labojot faila kod\u0113jumu.\nNem\u0113\u0123iniet saglab\u0101t \u0161o skici, jo var tikt p\u0101rrakst\u012bta vec\u0101 versija.\nIzmantojiet Atv\u0113rt, lai atv\u0113rtu pa jaunu skici un m\u0113\u0123in\u0101tu v\u0113lreiz.\n +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Rad\u0101s nezin\u0101ma k\u013c\u016bda, m\u0113\u0123inot iel\u0101d\u0113t\nplatformai piel\u0101gotu kodu j\u016bsu dator\u0101. @@ -106,12 +123,33 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Vai tie\u0161\u0101m v\u0113laties #: Sketch.java:587 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Vai tie\u0161\u0101m v\u0113laties izdz\u0113st \u0161o skici? +#: ../../../processing/app/Base.java:356 +!Argument\ required\ for\ --board= + +#: ../../../processing/app/Base.java:370 +!Argument\ required\ for\ --curdir= + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +!Argument\ required\ for\ --port= + +#: ../../../processing/app/Base.java:377 +!Argument\ required\ for\ --pref= + +#: ../../../processing/app/Base.java:384 +!Argument\ required\ for\ --preferences-file= + #: ../../../processing/app/Preferences.java:137 !Armenian= #: ../../../processing/app/Preferences.java:138 !Asturian= +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 Auto\ Format=Autom\u0101tisk\u0101 format\u0113\u0161ana @@ -143,6 +181,12 @@ Bad\ error\ line\:\ {0}=K\u013c\u016bdas rinda\: {0} #: Editor.java:2136 Bad\ file\ selected=Izv\u0113l\u0113tais fails nav der\u012bgs +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +!Basque= + #: ../../../processing/app/Preferences.java:139 !Belarusian= @@ -169,6 +213,9 @@ Browse=P\u0101rl\u016bkot #: Sketch.java:1392 Sketch.java:1423 Build\ folder\ disappeared\ or\ could\ not\ be\ written=B\u016bv\u0113jam\u0101 mape pazuda, vai nevar\u0113ja taj\u0101 ierakst\u012bt +#: ../../../processing/app/Sketch.java:1530 +!Build\ options\ changed,\ rebuilding\ all= + #: ../../../processing/app/Preferences.java:80 !Bulgarian= @@ -181,8 +228,13 @@ Burn\ Bootloader=Iededzin\u0101t s\u0101kn\u0113\u0161anas iel\u0101d\u0113t\u01 #: Editor.java:2504 Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Iededzina s\u0101kn\u0113\u0161anas iel\u0101d\u0113t\u0101ju I/O plat\u0113 (tas var aiz\u0146emt k\u0101du laiku)... -#: ../../../processing/app/Base.java:368 -!Can't\ open\ source\ sketch\!= +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 !Canadian\ French= @@ -194,6 +246,9 @@ Cancel=Atcelt #: Sketch.java:455 Cannot\ Rename=Nevar p\u0101rsaukt +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 Carriage\ return=Kursora atgrie\u0161an\u0101s @@ -227,10 +282,6 @@ Close=Aizv\u0113rt #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=Koment\u0113t/atkoment\u0113t -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Kompilatora k\u013c\u016bda, l\u016bdzu, nos\u016btiet \u0161o kodu uz {0} - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=Kompil\u0113 skici... @@ -306,9 +357,8 @@ Could\ not\ re-save\ sketch=Neizdev\u0101s pa jaunam saglab\u0101t skici. #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Nevar nolas\u012bt noklus\u0113juma iestat\u012bjumus.\nJums vajadz\u0113s p\u0101rinstal\u0113t Arduino. -#: Preferences.java:258 -#, java-format -Could\ not\ read\ preferences\ from\ {0}=Neizdev\u0101s nolas\u012bt iestat\u012bjumus no {0} +#: ../../../processing/app/Sketch.java:1525 +!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= #: Base.java:2482 #, java-format @@ -331,6 +381,9 @@ Could\ not\ rename\ the\ sketch.\ (2)=Neizdev\u0101s p\u0101rsaukt skici. (2) #, java-format Could\ not\ replace\ {0}=Neizdev\u0101s aizvietot {0} +#: ../../../processing/app/Sketch.java:1579 +!Could\ not\ write\ build\ preferences\ file= + #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Neizdev\u0101s arhiv\u0113t skici @@ -379,12 +432,19 @@ Done\ Saving.=Saglab\u0101\u0161ana pabeigta. #: Editor.java:2510 Done\ burning\ bootloader.=S\u0101kn\u0113\u0161anas iel\u0101d\u0113t\u0101js iededzin\u0101ts. +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=Kompil\u0113\u0161ana pabeigta. #: Editor.java:2564 Done\ printing.=Druk\u0101\u0161ana pabeigta. +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=Aug\u0161upiel\u0101d\u0113\u0161ana pabeigta. @@ -463,6 +523,9 @@ Error\ while\ burning\ bootloader.=Neizdev\u0101\u0161 iededzin\u0101t s\u0101kn #: ../../../processing/app/Editor.java:2555 !Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=Rad\u0101s k\u013c\u016bda, iel\u0101d\u0113jot kodu {0} @@ -470,10 +533,21 @@ Error\ while\ loading\ code\ {0}=Rad\u0101s k\u013c\u016bda, iel\u0101d\u0113jot #: Editor.java:2567 Error\ while\ printing.=Druk\u0101jot rad\u0101s k\u013c\u016bda. +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 !Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 Estonian=Estonian @@ -489,6 +563,10 @@ Export\ canceled,\ changes\ must\ first\ be\ saved.=Eksport\u0113\u0161ana atcel #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +!Failed\ to\ open\ sketch\:\ "{0}"= + #: Editor.java:491 File=Fails @@ -523,8 +601,9 @@ Fix\ Encoding\ &\ Reload=Salabot kod\u0113jumu un p\u0101rl\u0101d\u0113t #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=Lai uzzin\u0101tu par bibliot\u0113ku instal\u0113\u0161anu, apskatiet\: http\://arduino.cc/en/Guide/Libraries\n -#: debug/BasicUploader.java:80 -Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =Piespiedu atiestat\u012b\u0161ana izmantojot 1200bps porta atv\u0113r\u0161anu/aizv\u0113r\u0161anu +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=French @@ -628,8 +707,8 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Bibliot\u01 #: Preferences.java:106 Lithuaninan=Lithuaninan -#: ../../../processing/app/Sketch.java:1660 -!Low\ memory\ available,\ stability\ problems\ may\ occur= +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 Marathi=Marathi @@ -640,12 +719,24 @@ Message=Zi\u0146ojums #: ../../../processing/app/preproc/PdePreprocessor.java:412 !Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Vair\u0101k iestat\u012bjumus var izmain\u012bt tie\u0161i fail\u0101 #: Editor.java:2156 Moving=P\u0101rvieto +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +!Must\ specify\ exactly\ one\ sketch\ file= + +#: ../../../processing/app/Preferences.java:158 +!N'Ko= + #: Sketch.java:282 Name\ for\ new\ file\:=Jaun\u0101 faila nosaukums\: @@ -673,12 +764,18 @@ Next\ Tab=N\u0101kam\u0101 cilne #: Preferences.java:78 UpdateCheck.java:108 No=N\u0113 +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=L\u016bdzu, vispirms izv\u0113lieties platie no R\u012bki > Plate izv\u0113lnes. #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Izmai\u0146as nav nepiecie\u0161amas priek\u0161 autom\u0101tisk\u0101s format\u0113\u0161anas. +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=Neviens fails netika pievienots skicei. @@ -688,6 +785,9 @@ No\ launcher\ available=Neviens palaid\u0113js nav pieejams #: SerialMonitor.java:112 No\ line\ ending=Bez rindu beig\u0101m +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=N\u0113, patie\u0161\u0101m, laiks ieelpot svaigu gaisu\! @@ -695,6 +795,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=N\u0113, patie\u0161\u0101m, #, java-format No\ reference\ available\ for\ "{0}"=Nevar atrast atsauci priek\u0161 "{0}" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +!No\ valid\ code\ files\ found= + #: ../../../processing/app/Base.java:309 !No\ valid\ configured\ cores\ found\!\ Exiting...= @@ -721,6 +831,9 @@ OK=Labi #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=Viens fails tika pievienots skicei. +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=Atv\u0113rt @@ -748,12 +861,22 @@ Paste=Iel\u012bm\u0113t #: Preferences.java:109 Persian=Persian +#: ../../../processing/app/Preferences.java:161 +!Persian\ (Iran)= + #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=L\u016bdzu, import\u0113jiet SPI bibliot\u0113ku no Skice > Import\u0113t bibliot\u0113ku izv\u0113lnes. +#: ../../../processing/app/debug/Compiler.java:529 +!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=L\u016bdzu, instal\u0113jiet JDK 1.5 vai jaun\u0101ku +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 Polish=Polish @@ -875,9 +998,15 @@ Save\ changes\ to\ "{0}"?\ \ =Vai saglab\u0101t izmai\u0146as fail\u0101 "{0}"? #: Sketch.java:825 Save\ sketch\ folder\ as...=Saglab\u0101t skices mapi k\u0101... +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=Saglab\u0101... +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=Izv\u0113lieties (vai izveidojiet jaunu) mapi skic\u0113m... @@ -902,14 +1031,6 @@ Send=S\u016bt\u012bt #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=Seri\u0101l\u0101 porta monitors -#: Serial.java:174 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Seri\u0101lais ports "{0}" jau tiek izmantots. Pam\u0113\u0123iniet iziet no programm\u0101m, kas to var\u0113tu izmantot. - -#: Serial.java:121 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=Seri\u0101lais ports "{0}" jau tiek izmantots. Pam\u0113\u0123iniet iziet no programm\u0101m, kas to var\u0113tu izmantot. - #: Serial.java:194 #, java-format Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Seri\u0101lais ports "{0}" netika atrasts. Vai j\u016bs izv\u0113l\u0113j\u0101ties pareizo no R\u012bki > Seri\u0101lais ports izv\u0113lnes? @@ -964,6 +1085,9 @@ Sketchbook\ folder\ disappeared=Ski\u010du burtn\u012bcas mape ir pazudusi #: Preferences.java:315 Sketchbook\ location\:=Ski\u010du burtn\u012bcas atra\u0161an\u0101s vieta\: +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 !Sketches\ (*.ino,\ *.pde)= @@ -998,6 +1122,9 @@ Tamil=Tamil #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.='BYTE' atsl\u0113gasv\u0101rds vairs netiek atbalst\u012bts. +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Klienta klase ir p\u0101rsaukta par EthernetClient. @@ -1034,12 +1161,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Skices mape ir pazudusi.\nTiks m\u0113\u0123in\u0101ts saglab\u0101t taj\u0101 pa\u0161\u0101 viet\u0101,\nbet viss, iz\u0146emot kodu, zud\u012bs. -#: Sketch.java:2018 -The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=Skices nosaukums bija j\u0101izmaina. Ski\u010du nosaukumi var satur\u0113t tikai\nASCII rakstz\u012bmes un numurus (bet nevar s\u0101kties ar ciparu).\nT\u0101m vajad\u0113tu b\u016bt ar\u012b maz\u0101k par 64 rakstz\u012bm\u0113m. +#: ../../../processing/app/Sketch.java:2028 +!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Ski\u010du burtn\u012bcas mape vairs neeksist\u0113.\nArduino p\u0101rsl\u0113gsies uz noklus\u0113juma ski\u010du burtn\u012bcas\natra\u0161an\u0101s vietu un izveidos jaunu ski\u010du burtn\u012bcas mapi,\nja nepiecie\u0161ams. Tad Arduino p\u0101rst\u0101s run\u0101t par sevi\ntre\u0161aj\u0101 person\u0101. +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Fails jau ir ticis iekop\u0113ts viet\u0101,\nno kurienes j\u016bs to cent\u0101ties pievienot.\nEs neko nedar\u012b\u0161u. @@ -1143,6 +1273,10 @@ Verify\ code\ after\ upload=P\u0101rbaud\u012bt kodu p\u0113c aug\u0161upiel\u01 #: Editor.java:1105 Visit\ Arduino.cc=Apmekl\u0113t Arduino.cc +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= + #: Base.java:2128 Warning=Br\u012bdin\u0101jums @@ -1241,9 +1375,6 @@ environment=vide #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -!http\://github.com/arduino/Arduino/issues= - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1266,13 +1397,6 @@ name\ is\ null=v\u0101rds ir tuk\u0161s #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() baitu buferis ir p\u0101r\u0101k mazs priek\u0161 {0} baitiem l\u012bdz un ieskaitot rakstz\u012bmi {1} - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: iek\u0161\u0113ja k\u013c\u016bda... nevar atrast kodu - #: Editor.java:932 serialMenu\ is\ null=serialMenu ir tuk\u0161s @@ -1280,6 +1404,10 @@ serialMenu\ is\ null=serialMenu ir tuk\u0161s #, java-format the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=izv\u0113l\u0113tais seri\u0101lais ports {0} neeksist\u0113, vai ar\u012b j\u016bsu plate nav pievienota +#: ../../../processing/app/Base.java:389 +#, java-format +!unknown\ option\:\ {0}= + #: Preferences.java:391 upload=aug\u0161upiel\u0101d\u0113 @@ -1298,3 +1426,35 @@ upload=aug\u0161upiel\u0101d\u0113 #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= + +#: ../../../processing/app/Base.java:476 +#, java-format +!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= + +#: ../../../processing/app/Base.java:509 +#, java-format +!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= + +#: ../../../processing/app/Base.java:507 +#, java-format +!{0}\:\ Invalid\ option\ for\ board\ "{1}"= + +#: ../../../processing/app/Base.java:502 +#, java-format +!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= + +#: ../../../processing/app/Base.java:486 +#, java-format +!{0}\:\ Unknown\ architecture= + +#: ../../../processing/app/Base.java:491 +#, java-format +!{0}\:\ Unknown\ board= + +#: ../../../processing/app/Base.java:481 +#, java-format +!{0}\:\ Unknown\ package= diff --git a/arduino-core/src/processing/app/i18n/Resources_mr.po b/arduino-core/src/processing/app/i18n/Resources_mr.po index aefd14e11..6ce4bdbb0 100644 --- a/arduino-core/src/processing/app/i18n/Resources_mr.po +++ b/arduino-core/src/processing/app/i18n/Resources_mr.po @@ -33,6 +33,12 @@ msgstr "" msgid "(edit only when Arduino is not running)" msgstr "" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr "" @@ -91,6 +97,10 @@ msgstr "फाईल सामील करा" msgid "Add Library..." msgstr "" +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -98,6 +108,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -176,6 +200,30 @@ msgstr "" msgid "Are you sure you want to delete this sketch?" msgstr "" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "" @@ -184,6 +232,10 @@ msgstr "" msgid "Asturian" msgstr "" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "" @@ -225,6 +277,14 @@ msgstr "" msgid "Bad file selected" msgstr "" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "" @@ -261,6 +321,10 @@ msgstr "" msgid "Build folder disappeared or could not be written" msgstr "" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "" @@ -277,8 +341,14 @@ msgstr "बूटलोडर टाका" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "" -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" msgstr "" #: ../../../processing/app/Preferences.java:92 @@ -294,6 +364,10 @@ msgstr "" msgid "Cannot Rename" msgstr "" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "" @@ -338,11 +412,6 @@ msgstr "पण बंद करा" msgid "Comment/Uncomment" msgstr "टिपणी करा / टिपणी काढा" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "स्केचचे कंपाइलिंग सुरु आहे..." @@ -450,9 +519,8 @@ msgid "" "You'll need to reinstall Arduino." msgstr "" -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" msgstr "" #: Base.java:2482 @@ -482,6 +550,10 @@ msgstr "" msgid "Could not replace {0}" msgstr "" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "" @@ -551,6 +623,11 @@ msgstr "" msgid "Done burning bootloader." msgstr "" +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "कंपाइलिंग पूर्ण" @@ -559,6 +636,10 @@ msgstr "कंपाइलिंग पूर्ण" msgid "Done printing." msgstr "" +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "" @@ -662,6 +743,10 @@ msgstr "" msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -671,11 +756,25 @@ msgstr "" msgid "Error while printing." msgstr "" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "" @@ -696,6 +795,11 @@ msgstr "" msgid "FAQ.html" msgstr "" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "" + #: Editor.java:491 msgid "File" msgstr "फाईल" @@ -743,8 +847,9 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" msgstr "" #: Preferences.java:95 @@ -893,8 +998,8 @@ msgstr "" msgid "Lithuaninan" msgstr "" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: Preferences.java:107 @@ -909,6 +1014,10 @@ msgstr "" msgid "Missing the */ from the end of a /* comment */" msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "" @@ -917,6 +1026,18 @@ msgstr "" msgid "Moving" msgstr "" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "" + #: Sketch.java:282 msgid "Name for new file:" msgstr "" @@ -953,6 +1074,10 @@ msgstr "" msgid "No" msgstr "" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "" @@ -961,6 +1086,10 @@ msgstr "" msgid "No changes necessary for Auto Format." msgstr "" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "स्केच मध्ये फाईल सामील नाही." @@ -973,6 +1102,10 @@ msgstr "" msgid "No line ending" msgstr "" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "" @@ -982,6 +1115,19 @@ msgstr "" msgid "No reference available for \"{0}\"" msgstr "साठी संदर्भ उपलब्ध नाही {0}" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "" @@ -1018,6 +1164,10 @@ msgstr "" msgid "One file added to the sketch." msgstr "स्केच मध्ये एक फाईल सामील केली" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "" @@ -1054,14 +1204,27 @@ msgstr "पेस्ट" msgid "Persian" msgstr "" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "" +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "" + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "" @@ -1224,10 +1387,18 @@ msgstr "येथे बदल जतन करा {0}" msgid "Save sketch folder as..." msgstr "" +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "" +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "" @@ -1260,20 +1431,6 @@ msgstr "" msgid "Serial Monitor" msgstr "सिरीयल नियंत्रक" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "" - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "" - #: Serial.java:194 #, java-format msgid "" @@ -1353,6 +1510,10 @@ msgstr "" msgid "Sketchbook location:" msgstr "" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "" @@ -1403,6 +1564,10 @@ msgstr "" msgid "The 'BYTE' keyword is no longer supported." msgstr "" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "" @@ -1470,11 +1635,11 @@ msgid "" "but anything besides the code will be lost." msgstr "" -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." +"They should also be less than 64 characters long." msgstr "" #: Base.java:259 @@ -1486,6 +1651,12 @@ msgid "" "himself in the third person." msgstr "" +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1628,6 +1799,13 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "arduino.cc ला भेट द्या" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "" + #: Base.java:2128 msgid "Warning" msgstr "" @@ -1796,10 +1974,6 @@ msgstr "" msgid "http://arduino.cc/" msgstr "" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "" @@ -1829,17 +2003,6 @@ msgstr "नाव रिक्त आहे" msgid "platforms.html" msgstr "" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "" - #: Editor.java:932 msgid "serialMenu is null" msgstr "सिरिअल मेनू रिक्त आहे" @@ -1850,6 +2013,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "" + #: Preferences.java:391 msgid "upload" msgstr "" @@ -1873,3 +2041,45 @@ msgstr "" #, java-format msgid "{0}.html" msgstr "" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "" diff --git a/arduino-core/src/processing/app/i18n/Resources_mr.properties b/arduino-core/src/processing/app/i18n/Resources_mr.properties index f0b4653b6..1aae90c65 100644 --- a/arduino-core/src/processing/app/i18n/Resources_mr.properties +++ b/arduino-core/src/processing/app/i18n/Resources_mr.properties @@ -17,6 +17,9 @@ #: Preferences.java:478 !(edit\ only\ when\ Arduino\ is\ not\ running)= +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 !.pde\ ->\ .ino= @@ -53,9 +56,23 @@ Add\ File...=\u092b\u093e\u0908\u0932 \u0938\u093e\u092e\u0940\u0932 \u0915\u093 #: Base.java:963 !Add\ Library...= +#: ../../../processing/app/Preferences.java:96 +!Albanian= + #: tools/FixEncoding.java:77 !An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n= +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 !An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.= @@ -105,12 +122,33 @@ Add\ File...=\u092b\u093e\u0908\u0932 \u0938\u093e\u092e\u0940\u0932 \u0915\u093 #: Sketch.java:587 !Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?= +#: ../../../processing/app/Base.java:356 +!Argument\ required\ for\ --board= + +#: ../../../processing/app/Base.java:370 +!Argument\ required\ for\ --curdir= + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +!Argument\ required\ for\ --port= + +#: ../../../processing/app/Base.java:377 +!Argument\ required\ for\ --pref= + +#: ../../../processing/app/Base.java:384 +!Argument\ required\ for\ --preferences-file= + #: ../../../processing/app/Preferences.java:137 !Armenian= #: ../../../processing/app/Preferences.java:138 !Asturian= +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 !Auto\ Format= @@ -142,6 +180,12 @@ Add\ File...=\u092b\u093e\u0908\u0932 \u0938\u093e\u092e\u0940\u0932 \u0915\u093 #: Editor.java:2136 !Bad\ file\ selected= +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +!Basque= + #: ../../../processing/app/Preferences.java:139 !Belarusian= @@ -168,6 +212,9 @@ Board=\u092c\u094b\u0930\u094d\u0921 #: Sketch.java:1392 Sketch.java:1423 !Build\ folder\ disappeared\ or\ could\ not\ be\ written= +#: ../../../processing/app/Sketch.java:1530 +!Build\ options\ changed,\ rebuilding\ all= + #: ../../../processing/app/Preferences.java:80 !Bulgarian= @@ -180,8 +227,13 @@ Burn\ Bootloader=\u092c\u0942\u091f\u0932\u094b\u0921\u0930 \u091f\u093e\u0915\u #: Editor.java:2504 !Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...= -#: ../../../processing/app/Base.java:368 -!Can't\ open\ source\ sketch\!= +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 !Canadian\ French= @@ -193,6 +245,9 @@ Burn\ Bootloader=\u092c\u0942\u091f\u0932\u094b\u0921\u0930 \u091f\u093e\u0915\u #: Sketch.java:455 !Cannot\ Rename= +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 !Carriage\ return= @@ -226,10 +281,6 @@ Close=\u092a\u0923 \u092c\u0902\u0926 \u0915\u0930\u093e #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=\u091f\u093f\u092a\u0923\u0940 \u0915\u0930\u093e / \u091f\u093f\u092a\u0923\u0940 \u0915\u093e\u0922\u093e -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -!Compiler\ error,\ please\ submit\ this\ code\ to\ {0}= - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=\u0938\u094d\u0915\u0947\u091a\u091a\u0947 \u0915\u0902\u092a\u093e\u0907\u0932\u093f\u0902\u0917 \u0938\u0941\u0930\u0941 \u0906\u0939\u0947... @@ -305,9 +356,8 @@ Copy\ for\ Forum=\u092b\u094b\u0930\u092e \u0938\u093e\u0920\u0940 \u0915\u0949\ #: Preferences.java:219 !Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= -#: Preferences.java:258 -#, java-format -!Could\ not\ read\ preferences\ from\ {0}= +#: ../../../processing/app/Sketch.java:1525 +!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= #: Base.java:2482 #, java-format @@ -330,6 +380,9 @@ Copy\ for\ Forum=\u092b\u094b\u0930\u092e \u0938\u093e\u0920\u0940 \u0915\u0949\ #, java-format !Could\ not\ replace\ {0}= +#: ../../../processing/app/Sketch.java:1579 +!Could\ not\ write\ build\ preferences\ file= + #: tools/Archiver.java:74 !Couldn't\ archive\ sketch= @@ -378,12 +431,19 @@ Decrease\ Indent=\u0905\u0902\u0924\u0930 \u0915\u092e\u0940 \u0915\u0930\u093e #: Editor.java:2510 !Done\ burning\ bootloader.= +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=\u0915\u0902\u092a\u093e\u0907\u0932\u093f\u0902\u0917 \u092a\u0942\u0930\u094d\u0923 #: Editor.java:2564 !Done\ printing.= +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 !Done\ uploading.= @@ -462,6 +522,9 @@ Environment=\u092a\u0930\u093f\u0938\u0930 #: ../../../processing/app/Editor.java:2555 !Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format !Error\ while\ loading\ code\ {0}= @@ -469,10 +532,21 @@ Environment=\u092a\u0930\u093f\u0938\u0930 #: Editor.java:2567 !Error\ while\ printing.= +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 !Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 !Estonian= @@ -488,6 +562,10 @@ Examples=\u0909\u0926\u093e\u0939\u0930\u0923\u0947 #: Base.java:2100 !FAQ.html= +#: ../../../processing/app/Base.java:416 +#, java-format +!Failed\ to\ open\ sketch\:\ "{0}"= + #: Editor.java:491 File=\u092b\u093e\u0908\u0932 @@ -522,8 +600,9 @@ Find...=\u0936\u094b\u0927 #: Base.java:1851 !For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n= -#: debug/BasicUploader.java:80 -!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ = +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 !French= @@ -627,8 +706,8 @@ Increase\ Indent=\u0905\u0902\u0924\u0930 \u0935\u093e\u0922\u0935\u093e #: Preferences.java:106 !Lithuaninan= -#: ../../../processing/app/Sketch.java:1660 -!Low\ memory\ available,\ stability\ problems\ may\ occur= +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 !Marathi= @@ -639,12 +718,24 @@ Increase\ Indent=\u0905\u0902\u0924\u0930 \u0935\u093e\u0922\u0935\u093e #: ../../../processing/app/preproc/PdePreprocessor.java:412 !Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 !More\ preferences\ can\ be\ edited\ directly\ in\ the\ file= #: Editor.java:2156 !Moving= +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +!Must\ specify\ exactly\ one\ sketch\ file= + +#: ../../../processing/app/Preferences.java:158 +!N'Ko= + #: Sketch.java:282 !Name\ for\ new\ file\:= @@ -672,12 +763,18 @@ New=\u0928\u0935\u0940\u0928 #: Preferences.java:78 UpdateCheck.java:108 !No= +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 !No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.= #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 !No\ changes\ necessary\ for\ Auto\ Format.= +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=\u0938\u094d\u0915\u0947\u091a \u092e\u0927\u094d\u092f\u0947 \u092b\u093e\u0908\u0932 \u0938\u093e\u092e\u0940\u0932 \u0928\u093e\u0939\u0940. @@ -687,6 +784,9 @@ No\ files\ were\ added\ to\ the\ sketch.=\u0938\u094d\u0915\u0947\u091a \u092e\u #: SerialMonitor.java:112 !No\ line\ ending= +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 !No\ really,\ time\ for\ some\ fresh\ air\ for\ you.= @@ -694,6 +794,16 @@ No\ files\ were\ added\ to\ the\ sketch.=\u0938\u094d\u0915\u0947\u091a \u092e\u #, java-format No\ reference\ available\ for\ "{0}"=\u0938\u093e\u0920\u0940 \u0938\u0902\u0926\u0930\u094d\u092d \u0909\u092a\u0932\u092c\u094d\u0927 \u0928\u093e\u0939\u0940 {0} +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +!No\ valid\ code\ files\ found= + #: ../../../processing/app/Base.java:309 !No\ valid\ configured\ cores\ found\!\ Exiting...= @@ -720,6 +830,9 @@ No\ reference\ available\ for\ "{0}"=\u0938\u093e\u0920\u0940 \u0938\u0902\u0926 #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=\u0938\u094d\u0915\u0947\u091a \u092e\u0927\u094d\u092f\u0947 \u090f\u0915 \u092b\u093e\u0908\u0932 \u0938\u093e\u092e\u0940\u0932 \u0915\u0947\u0932\u0940 +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 !Open= @@ -747,12 +860,22 @@ Paste=\u092a\u0947\u0938\u094d\u091f #: Preferences.java:109 !Persian= +#: ../../../processing/app/Preferences.java:161 +!Persian\ (Iran)= + #: debug/Compiler.java:408 !Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= +#: ../../../processing/app/debug/Compiler.java:529 +!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= + #: Base.java:239 !Please\ install\ JDK\ 1.5\ or\ later= +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 !Polish= @@ -874,9 +997,15 @@ Save\ changes\ to\ "{0}"?\ \ =\u092f\u0947\u0925\u0947 \u092c\u0926\u0932 \u091c #: Sketch.java:825 !Save\ sketch\ folder\ as...= +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 !Saving...= +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 !Select\ (or\ create\ new)\ folder\ for\ sketches...= @@ -901,14 +1030,6 @@ Select\ All=\u0938\u0930\u094d\u0935 \u0928\u093f\u0935\u0921\u093e #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=\u0938\u093f\u0930\u0940\u092f\u0932 \u0928\u093f\u092f\u0902\u0924\u094d\u0930\u0915 -#: Serial.java:174 -#, java-format -!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.= - -#: Serial.java:121 -#, java-format -!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.= - #: Serial.java:194 #, java-format !Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?= @@ -963,6 +1084,9 @@ Sketchbook=\u0938\u094d\u0915\u0947\u091a \u092a\u0941\u0938\u094d\u0924\u093f\u #: Preferences.java:315 !Sketchbook\ location\:= +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 !Sketches\ (*.ino,\ *.pde)= @@ -997,6 +1121,9 @@ Sketchbook=\u0938\u094d\u0915\u0947\u091a \u092a\u0941\u0938\u094d\u0924\u093f\u #: debug/Compiler.java:414 !The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.= +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 !The\ Client\ class\ has\ been\ renamed\ EthernetClient.= @@ -1033,12 +1160,15 @@ Sketchbook=\u0938\u094d\u0915\u0947\u091a \u092a\u0941\u0938\u094d\u0924\u093f\u #: Sketch.java:1755 !The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.= -#: Sketch.java:2018 -!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.= +#: ../../../processing/app/Sketch.java:2028 +!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= #: Base.java:259 !The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.= +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 !This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= @@ -1142,6 +1272,10 @@ Verify\ /\ Compile=\u092a\u0921\u0924\u093e\u0933\u0923\u0940 / \u0915\u0902\u09 #: Editor.java:1105 Visit\ Arduino.cc=arduino.cc \u0932\u093e \u092d\u0947\u091f \u0926\u094d\u092f\u093e +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= + #: Base.java:2128 !Warning= @@ -1240,9 +1374,6 @@ Visit\ Arduino.cc=arduino.cc \u0932\u093e \u092d\u0947\u091f \u0926\u094d\u092f\ #: Editor.java:1108 !http\://arduino.cc/= -#: ../../../processing/app/debug/Compiler.java:49 -!http\://github.com/arduino/Arduino/issues= - #: UpdateCheck.java:118 !http\://www.arduino.cc/en/Main/Software= @@ -1265,13 +1396,6 @@ name\ is\ null=\u0928\u093e\u0935 \u0930\u093f\u0915\u094d\u0924 \u0906\u0939\u0 #: Base.java:2090 !platforms.html= -#: Serial.java:451 -#, java-format -!readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}= - -#: Sketch.java:647 -!removeCode\:\ internal\ error..\ could\ not\ find\ code= - #: Editor.java:932 serialMenu\ is\ null=\u0938\u093f\u0930\u093f\u0905\u0932 \u092e\u0947\u0928\u0942 \u0930\u093f\u0915\u094d\u0924 \u0906\u0939\u0947 @@ -1279,6 +1403,10 @@ serialMenu\ is\ null=\u0938\u093f\u0930\u093f\u0905\u0932 \u092e\u0947\u0928\u09 #, java-format !the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected= +#: ../../../processing/app/Base.java:389 +#, java-format +!unknown\ option\:\ {0}= + #: Preferences.java:391 !upload= @@ -1297,3 +1425,35 @@ serialMenu\ is\ null=\u0938\u093f\u0930\u093f\u0905\u0932 \u092e\u0947\u0928\u09 #: Editor.java:1874 #, java-format !{0}.html= + +#: ../../../processing/app/Base.java:519 +#, java-format +!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= + +#: ../../../processing/app/Base.java:476 +#, java-format +!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= + +#: ../../../processing/app/Base.java:509 +#, java-format +!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= + +#: ../../../processing/app/Base.java:507 +#, java-format +!{0}\:\ Invalid\ option\ for\ board\ "{1}"= + +#: ../../../processing/app/Base.java:502 +#, java-format +!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= + +#: ../../../processing/app/Base.java:486 +#, java-format +!{0}\:\ Unknown\ architecture= + +#: ../../../processing/app/Base.java:491 +#, java-format +!{0}\:\ Unknown\ board= + +#: ../../../processing/app/Base.java:481 +#, java-format +!{0}\:\ Unknown\ package= diff --git a/arduino-core/src/processing/app/i18n/Resources_my_MM.po b/arduino-core/src/processing/app/i18n/Resources_my_MM.po index eb953064f..6fa3bd046 100644 --- a/arduino-core/src/processing/app/i18n/Resources_my_MM.po +++ b/arduino-core/src/processing/app/i18n/Resources_my_MM.po @@ -33,6 +33,12 @@ msgstr "" msgid "(edit only when Arduino is not running)" msgstr "" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr "" @@ -91,6 +97,10 @@ msgstr "" msgid "Add Library..." msgstr "" +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -98,6 +108,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -176,6 +200,30 @@ msgstr "" msgid "Are you sure you want to delete this sketch?" msgstr "" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "" @@ -184,6 +232,10 @@ msgstr "" msgid "Asturian" msgstr "" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "" @@ -225,6 +277,14 @@ msgstr "" msgid "Bad file selected" msgstr "" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "" @@ -261,6 +321,10 @@ msgstr "" msgid "Build folder disappeared or could not be written" msgstr "" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "" @@ -277,8 +341,14 @@ msgstr "" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "" -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" msgstr "" #: ../../../processing/app/Preferences.java:92 @@ -294,6 +364,10 @@ msgstr "" msgid "Cannot Rename" msgstr "" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "" @@ -338,11 +412,6 @@ msgstr "" msgid "Comment/Uncomment" msgstr "" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "" @@ -450,9 +519,8 @@ msgid "" "You'll need to reinstall Arduino." msgstr "" -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" msgstr "" #: Base.java:2482 @@ -482,6 +550,10 @@ msgstr "" msgid "Could not replace {0}" msgstr "" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "" @@ -551,6 +623,11 @@ msgstr "" msgid "Done burning bootloader." msgstr "" +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "" @@ -559,6 +636,10 @@ msgstr "" msgid "Done printing." msgstr "" +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "" @@ -662,6 +743,10 @@ msgstr "" msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -671,11 +756,25 @@ msgstr "" msgid "Error while printing." msgstr "" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "" @@ -696,6 +795,11 @@ msgstr "" msgid "FAQ.html" msgstr "" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "" + #: Editor.java:491 msgid "File" msgstr "" @@ -743,8 +847,9 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" msgstr "" #: Preferences.java:95 @@ -893,8 +998,8 @@ msgstr "" msgid "Lithuaninan" msgstr "" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: Preferences.java:107 @@ -909,6 +1014,10 @@ msgstr "" msgid "Missing the */ from the end of a /* comment */" msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "" @@ -917,6 +1026,18 @@ msgstr "" msgid "Moving" msgstr "" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "" + #: Sketch.java:282 msgid "Name for new file:" msgstr "" @@ -953,6 +1074,10 @@ msgstr "" msgid "No" msgstr "" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "" @@ -961,6 +1086,10 @@ msgstr "" msgid "No changes necessary for Auto Format." msgstr "" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "" @@ -973,6 +1102,10 @@ msgstr "" msgid "No line ending" msgstr "" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "" @@ -982,6 +1115,19 @@ msgstr "" msgid "No reference available for \"{0}\"" msgstr "" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "" @@ -1018,6 +1164,10 @@ msgstr "" msgid "One file added to the sketch." msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "" @@ -1054,14 +1204,27 @@ msgstr "" msgid "Persian" msgstr "" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "" +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "" + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "" @@ -1224,10 +1387,18 @@ msgstr "" msgid "Save sketch folder as..." msgstr "" +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "" +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "" @@ -1260,20 +1431,6 @@ msgstr "" msgid "Serial Monitor" msgstr "" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "" - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "" - #: Serial.java:194 #, java-format msgid "" @@ -1353,6 +1510,10 @@ msgstr "" msgid "Sketchbook location:" msgstr "" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "" @@ -1403,6 +1564,10 @@ msgstr "" msgid "The 'BYTE' keyword is no longer supported." msgstr "" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "" @@ -1470,11 +1635,11 @@ msgid "" "but anything besides the code will be lost." msgstr "" -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." +"They should also be less than 64 characters long." msgstr "" #: Base.java:259 @@ -1486,6 +1651,12 @@ msgid "" "himself in the third person." msgstr "" +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1628,6 +1799,13 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "" + #: Base.java:2128 msgid "Warning" msgstr "" @@ -1796,10 +1974,6 @@ msgstr "" msgid "http://arduino.cc/" msgstr "" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "" @@ -1829,17 +2003,6 @@ msgstr "" msgid "platforms.html" msgstr "" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "" - #: Editor.java:932 msgid "serialMenu is null" msgstr "" @@ -1850,6 +2013,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "" + #: Preferences.java:391 msgid "upload" msgstr "" @@ -1873,3 +2041,45 @@ msgstr "" #, java-format msgid "{0}.html" msgstr "" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "" diff --git a/arduino-core/src/processing/app/i18n/Resources_my_MM.properties b/arduino-core/src/processing/app/i18n/Resources_my_MM.properties index 0b21c65f4..90aba781a 100644 --- a/arduino-core/src/processing/app/i18n/Resources_my_MM.properties +++ b/arduino-core/src/processing/app/i18n/Resources_my_MM.properties @@ -17,6 +17,9 @@ #: Preferences.java:478 !(edit\ only\ when\ Arduino\ is\ not\ running)= +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 !.pde\ ->\ .ino= @@ -53,9 +56,23 @@ #: Base.java:963 !Add\ Library...= +#: ../../../processing/app/Preferences.java:96 +!Albanian= + #: tools/FixEncoding.java:77 !An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n= +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 !An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.= @@ -105,12 +122,33 @@ #: Sketch.java:587 !Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?= +#: ../../../processing/app/Base.java:356 +!Argument\ required\ for\ --board= + +#: ../../../processing/app/Base.java:370 +!Argument\ required\ for\ --curdir= + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +!Argument\ required\ for\ --port= + +#: ../../../processing/app/Base.java:377 +!Argument\ required\ for\ --pref= + +#: ../../../processing/app/Base.java:384 +!Argument\ required\ for\ --preferences-file= + #: ../../../processing/app/Preferences.java:137 !Armenian= #: ../../../processing/app/Preferences.java:138 !Asturian= +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 !Auto\ Format= @@ -142,6 +180,12 @@ #: Editor.java:2136 !Bad\ file\ selected= +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +!Basque= + #: ../../../processing/app/Preferences.java:139 !Belarusian= @@ -168,6 +212,9 @@ #: Sketch.java:1392 Sketch.java:1423 !Build\ folder\ disappeared\ or\ could\ not\ be\ written= +#: ../../../processing/app/Sketch.java:1530 +!Build\ options\ changed,\ rebuilding\ all= + #: ../../../processing/app/Preferences.java:80 !Bulgarian= @@ -180,8 +227,13 @@ #: Editor.java:2504 !Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...= -#: ../../../processing/app/Base.java:368 -!Can't\ open\ source\ sketch\!= +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 !Canadian\ French= @@ -193,6 +245,9 @@ #: Sketch.java:455 !Cannot\ Rename= +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 !Carriage\ return= @@ -226,10 +281,6 @@ #: Editor.java:1208 Editor.java:2749 !Comment/Uncomment= -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -!Compiler\ error,\ please\ submit\ this\ code\ to\ {0}= - #: Sketch.java:1608 Editor.java:1890 !Compiling\ sketch...= @@ -305,9 +356,8 @@ #: Preferences.java:219 !Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= -#: Preferences.java:258 -#, java-format -!Could\ not\ read\ preferences\ from\ {0}= +#: ../../../processing/app/Sketch.java:1525 +!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= #: Base.java:2482 #, java-format @@ -330,6 +380,9 @@ #, java-format !Could\ not\ replace\ {0}= +#: ../../../processing/app/Sketch.java:1579 +!Could\ not\ write\ build\ preferences\ file= + #: tools/Archiver.java:74 !Couldn't\ archive\ sketch= @@ -378,12 +431,19 @@ #: Editor.java:2510 !Done\ burning\ bootloader.= +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 !Done\ compiling.= #: Editor.java:2564 !Done\ printing.= +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 !Done\ uploading.= @@ -462,6 +522,9 @@ #: ../../../processing/app/Editor.java:2555 !Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format !Error\ while\ loading\ code\ {0}= @@ -469,10 +532,21 @@ #: Editor.java:2567 !Error\ while\ printing.= +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 !Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 !Estonian= @@ -488,6 +562,10 @@ #: Base.java:2100 !FAQ.html= +#: ../../../processing/app/Base.java:416 +#, java-format +!Failed\ to\ open\ sketch\:\ "{0}"= + #: Editor.java:491 !File= @@ -522,8 +600,9 @@ #: Base.java:1851 !For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n= -#: debug/BasicUploader.java:80 -!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ = +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 !French= @@ -627,8 +706,8 @@ #: Preferences.java:106 !Lithuaninan= -#: ../../../processing/app/Sketch.java:1660 -!Low\ memory\ available,\ stability\ problems\ may\ occur= +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 !Marathi= @@ -639,12 +718,24 @@ #: ../../../processing/app/preproc/PdePreprocessor.java:412 !Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 !More\ preferences\ can\ be\ edited\ directly\ in\ the\ file= #: Editor.java:2156 !Moving= +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +!Must\ specify\ exactly\ one\ sketch\ file= + +#: ../../../processing/app/Preferences.java:158 +!N'Ko= + #: Sketch.java:282 !Name\ for\ new\ file\:= @@ -672,12 +763,18 @@ #: Preferences.java:78 UpdateCheck.java:108 !No= +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 !No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.= #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 !No\ changes\ necessary\ for\ Auto\ Format.= +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 !No\ files\ were\ added\ to\ the\ sketch.= @@ -687,6 +784,9 @@ #: SerialMonitor.java:112 !No\ line\ ending= +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 !No\ really,\ time\ for\ some\ fresh\ air\ for\ you.= @@ -694,6 +794,16 @@ #, java-format !No\ reference\ available\ for\ "{0}"= +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +!No\ valid\ code\ files\ found= + #: ../../../processing/app/Base.java:309 !No\ valid\ configured\ cores\ found\!\ Exiting...= @@ -720,6 +830,9 @@ #: Sketch.java:992 Editor.java:376 !One\ file\ added\ to\ the\ sketch.= +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 !Open= @@ -747,12 +860,22 @@ #: Preferences.java:109 !Persian= +#: ../../../processing/app/Preferences.java:161 +!Persian\ (Iran)= + #: debug/Compiler.java:408 !Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= +#: ../../../processing/app/debug/Compiler.java:529 +!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= + #: Base.java:239 !Please\ install\ JDK\ 1.5\ or\ later= +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 !Polish= @@ -874,9 +997,15 @@ #: Sketch.java:825 !Save\ sketch\ folder\ as...= +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 !Saving...= +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 !Select\ (or\ create\ new)\ folder\ for\ sketches...= @@ -901,14 +1030,6 @@ #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 !Serial\ Monitor= -#: Serial.java:174 -#, java-format -!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.= - -#: Serial.java:121 -#, java-format -!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.= - #: Serial.java:194 #, java-format !Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?= @@ -963,6 +1084,9 @@ #: Preferences.java:315 !Sketchbook\ location\:= +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 !Sketches\ (*.ino,\ *.pde)= @@ -997,6 +1121,9 @@ #: debug/Compiler.java:414 !The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.= +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 !The\ Client\ class\ has\ been\ renamed\ EthernetClient.= @@ -1033,12 +1160,15 @@ #: Sketch.java:1755 !The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.= -#: Sketch.java:2018 -!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.= +#: ../../../processing/app/Sketch.java:2028 +!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= #: Base.java:259 !The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.= +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 !This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= @@ -1142,6 +1272,10 @@ #: Editor.java:1105 !Visit\ Arduino.cc= +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= + #: Base.java:2128 !Warning= @@ -1240,9 +1374,6 @@ #: Editor.java:1108 !http\://arduino.cc/= -#: ../../../processing/app/debug/Compiler.java:49 -!http\://github.com/arduino/Arduino/issues= - #: UpdateCheck.java:118 !http\://www.arduino.cc/en/Main/Software= @@ -1265,13 +1396,6 @@ #: Base.java:2090 !platforms.html= -#: Serial.java:451 -#, java-format -!readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}= - -#: Sketch.java:647 -!removeCode\:\ internal\ error..\ could\ not\ find\ code= - #: Editor.java:932 !serialMenu\ is\ null= @@ -1279,6 +1403,10 @@ #, java-format !the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected= +#: ../../../processing/app/Base.java:389 +#, java-format +!unknown\ option\:\ {0}= + #: Preferences.java:391 !upload= @@ -1297,3 +1425,35 @@ #: Editor.java:1874 #, java-format !{0}.html= + +#: ../../../processing/app/Base.java:519 +#, java-format +!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= + +#: ../../../processing/app/Base.java:476 +#, java-format +!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= + +#: ../../../processing/app/Base.java:509 +#, java-format +!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= + +#: ../../../processing/app/Base.java:507 +#, java-format +!{0}\:\ Invalid\ option\ for\ board\ "{1}"= + +#: ../../../processing/app/Base.java:502 +#, java-format +!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= + +#: ../../../processing/app/Base.java:486 +#, java-format +!{0}\:\ Unknown\ architecture= + +#: ../../../processing/app/Base.java:491 +#, java-format +!{0}\:\ Unknown\ board= + +#: ../../../processing/app/Base.java:481 +#, java-format +!{0}\:\ Unknown\ package= diff --git a/arduino-core/src/processing/app/i18n/Resources_nb_NO.po b/arduino-core/src/processing/app/i18n/Resources_nb_NO.po index a98f0586f..18f3c6e67 100644 --- a/arduino-core/src/processing/app/i18n/Resources_nb_NO.po +++ b/arduino-core/src/processing/app/i18n/Resources_nb_NO.po @@ -34,6 +34,12 @@ msgstr "'Mus' er kun støttet på Arduino Leonardo" msgid "(edit only when Arduino is not running)" msgstr "(redigeres kun når Arduino ikke kjører)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -92,6 +98,10 @@ msgstr "Legg til fil..." msgid "Add Library..." msgstr "Legg til Bibliotek..." +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -99,6 +109,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "Det oppstod en feil under reparering av tegnkoding for filen.\nIkke forsøk å lagre denne skissen siden den kan overskrive\nden gamle versjonen. Benytt Åpne for å åpne skissen på nytt og prøv igjen.\n" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -177,6 +201,30 @@ msgstr "Er du sikker på at du vil slette \"{0}\"?" msgid "Are you sure you want to delete this sketch?" msgstr "Er du sikker på at du vil slette denne skissen?" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "" @@ -185,6 +233,10 @@ msgstr "" msgid "Asturian" msgstr "" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "Autoformater" @@ -226,6 +278,14 @@ msgstr "Stygg feil på linje: {0}" msgid "Bad file selected" msgstr "Ugyldig fil valgt" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "" @@ -262,6 +322,10 @@ msgstr "Bla i gjennom" msgid "Build folder disappeared or could not be written" msgstr "Byggemappen forsvant eller kunne ikke skrives til" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Bulgarsk" @@ -278,9 +342,15 @@ msgstr "Skriv oppstartslaster" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "Skriver oppstartslaster til I/O kort (dette kan ta et minutt..." -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" -msgstr "Kan ikke åpne kilde skisse!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" +msgstr "" #: ../../../processing/app/Preferences.java:92 msgid "Canadian French" @@ -295,6 +365,10 @@ msgstr "Avbryt" msgid "Cannot Rename" msgstr "Kan ikke døpe om" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "Vognretur" @@ -339,11 +413,6 @@ msgstr "Lukk" msgid "Comment/Uncomment" msgstr "Kommenter/Fjern kommentar" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "Kompilatorfeil, vennligst send denne koden til {0}" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "Kompilerer skisse..." @@ -451,10 +520,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Kunne ikke lese standard innstillinger.\nDu må installere Arduino på nytt." -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "Klarte ikke å lese innstillinger fra {0}" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "" #: Base.java:2482 #, java-format @@ -483,6 +551,10 @@ msgstr "Kunne ikke omdøpe skissen. {2}" msgid "Could not replace {0}" msgstr "Kunne ikke erstatte {0}" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Kunne ikke arkivere skisse" @@ -552,6 +624,11 @@ msgstr "Lagret" msgid "Done burning bootloader." msgstr "Skriving av oppstartslaster er ferdig" +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "Kompilering er ferdig." @@ -560,6 +637,10 @@ msgstr "Kompilering er ferdig." msgid "Done printing." msgstr "Utskrift ferdig." +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "Opplasting ferdig." @@ -663,6 +744,10 @@ msgstr "Feil oppstod under skriving av oppstartslaster." msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -672,11 +757,25 @@ msgstr "File ved lasting av koden {0}" msgid "Error while printing." msgstr "Feil under utskrift." +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "Estisk" @@ -697,6 +796,11 @@ msgstr "Eksport avbrutt, endringer må lagres først." msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "" + #: Editor.java:491 msgid "File" msgstr "Fil" @@ -744,9 +848,10 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "For informasjon om hvordan biblioteker installeres, se:http://arduino.cc/en/Guide/Libraries\\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " -msgstr "Tvungen reset ved 1200bps åpne/lukke på porten" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" +msgstr "" #: Preferences.java:95 msgid "French" @@ -894,9 +999,9 @@ msgstr "Biblioteket er lagt til dine bibliotek. Se \"Importer bibliotek\" menyen msgid "Lithuaninan" msgstr "Litauisk" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" -msgstr "Lite minne tilgjengelig, stabilitetsproblemer kan forekomme" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." +msgstr "" #: Preferences.java:107 msgid "Marathi" @@ -910,6 +1015,10 @@ msgstr "Melding" msgid "Missing the */ from the end of a /* comment */" msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "Flere instillinger kan redigeres direkte i filen" @@ -918,6 +1027,18 @@ msgstr "Flere instillinger kan redigeres direkte i filen" msgid "Moving" msgstr "Flytter" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "" + #: Sketch.java:282 msgid "Name for new file:" msgstr "Navn på ny fil:" @@ -954,6 +1075,10 @@ msgstr "Neste fane" msgid "No" msgstr "Nei" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "Ingen kort valgt, vennligst velg et kort fra Verktøy > Kort menyen." @@ -962,6 +1087,10 @@ msgstr "Ingen kort valgt, vennligst velg et kort fra Verktøy > Kort menyen." msgid "No changes necessary for Auto Format." msgstr "Ingen endringer nødvendig for autoformatering." +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "Ingen filer ble lagt til skissen." @@ -974,6 +1103,10 @@ msgstr "Ikke noe startprogramm tilgjengelig" msgid "No line ending" msgstr "Ingen linjeslutt" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "Ærlig talt, nå er det på tide med litt frisk luft." @@ -983,6 +1116,19 @@ msgstr "Ærlig talt, nå er det på tide med litt frisk luft." msgid "No reference available for \"{0}\"" msgstr "Ingen referanse tilgjengelig for \"{0}\"" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "Fant ingen gyldige kjerner konfigurert! Avslutter..." @@ -1019,6 +1165,10 @@ msgstr "OK" msgid "One file added to the sketch." msgstr "En fil ble lagt til skissen." +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "Åpne" @@ -1055,14 +1205,27 @@ msgstr "Lim inn" msgid "Persian" msgstr "Persisk" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "Vennligst importer SPI biblioteket fra Skisse > Importer bibliotek menyen." +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "" + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "Vennligst installer JDK 1.5 eller nyere" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "Polsk" @@ -1225,10 +1388,18 @@ msgstr "Lagre endringer i \"{0}\"? " msgid "Save sketch folder as..." msgstr "Lagre skissemappe som..." +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "Lagrer..." +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "Velg (eller opprett ny) mappe for skisser..." @@ -1261,20 +1432,6 @@ msgstr "Send" msgid "Serial Monitor" msgstr "Seriell overvåker" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "Serieporten ''{0}'' er allerede i bruk. Prøv å avslutte eventuelle program som kan tenkes å benytte den." - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "Serieporten \"{0}\" er allerede i bruk. Prøve å avslutt eventuelle program som kan tenkes å bruke den." - #: Serial.java:194 #, java-format msgid "" @@ -1354,6 +1511,10 @@ msgstr "Mappen for skisser er forsvunnet" msgid "Sketchbook location:" msgstr "Skissebok plassering:" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "" @@ -1404,6 +1565,10 @@ msgstr "Tamilsk" msgid "The 'BYTE' keyword is no longer supported." msgstr "'BYTE' nøkkelordet er ikke støttet lenger." +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "Client klassen har blitt omdøpt til EthernetClient." @@ -1471,12 +1636,12 @@ msgid "" "but anything besides the code will be lost." msgstr "Skissemappen har forsvunnet.\n Vil forsøke å lagre på nytt i samme lokasjon,\nmen alt utenom kildekoden vil gå tapt." -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." -msgstr "Navnet på skissen måtte endres. Skissenavn kan kun inneholde\nASCII karakterer og nummer (men kan ikke starte med et nummer).\nDe bør også være kortere en 64 karakterer." +"They should also be less than 64 characters long." +msgstr "" #: Base.java:259 msgid "" @@ -1487,6 +1652,12 @@ msgid "" "himself in the third person." msgstr "Mappen for skisser eksisterer ikke lenger.\nArduino vil nå gå over til å bruke standard mappe for\nskisser, og hvis nødvendig opprette en ny mappe\n. Etterpå vil Arduino slutte å omtale seg selv i\ntredje person." +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1629,6 +1800,13 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "Besøk Arduino.cc" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "" + #: Base.java:2128 msgid "Warning" msgstr "Advarsel" @@ -1797,10 +1975,6 @@ msgstr "miljø" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "http://github.com/arduino/Arduino/issues" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1830,17 +2004,6 @@ msgstr "name er null" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "Byte bufferet for readByteUntil() er for lite for {0} byter opp til og med char {1}" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "removeCode: intern feil.. kunne ikke finne kode" - #: Editor.java:932 msgid "serialMenu is null" msgstr "serialMenu er null" @@ -1851,6 +2014,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "den valgte serieporten {0} eksisterer ikke, eller kortet ditt er ikke tilkoblet" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "" + #: Preferences.java:391 msgid "upload" msgstr "last opp" @@ -1874,3 +2042,45 @@ msgstr "{0} | Arduino {1}" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "" diff --git a/arduino-core/src/processing/app/i18n/Resources_nb_NO.properties b/arduino-core/src/processing/app/i18n/Resources_nb_NO.properties index be0d57b4e..e1a6f5447 100644 --- a/arduino-core/src/processing/app/i18n/Resources_nb_NO.properties +++ b/arduino-core/src/processing/app/i18n/Resources_nb_NO.properties @@ -18,6 +18,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(redigeres kun n\u00e5r Arduino ikke kj\u00f8rer) +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -54,9 +57,23 @@ Add\ File...=Legg til fil... #: Base.java:963 Add\ Library...=Legg til Bibliotek... +#: ../../../processing/app/Preferences.java:96 +!Albanian= + #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Det oppstod en feil under reparering av tegnkoding for filen.\nIkke fors\u00f8k \u00e5 lagre denne skissen siden den kan overskrive\nden gamle versjonen. Benytt \u00c5pne for \u00e5 \u00e5pne skissen p\u00e5 nytt og pr\u00f8v igjen.\n +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=En ukjent feil oppstod under lasting av\nplattformspesifik kode for din maskin. @@ -106,12 +123,33 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Er du sikker p\u00e5 at du vil sle #: Sketch.java:587 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Er du sikker p\u00e5 at du vil slette denne skissen? +#: ../../../processing/app/Base.java:356 +!Argument\ required\ for\ --board= + +#: ../../../processing/app/Base.java:370 +!Argument\ required\ for\ --curdir= + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +!Argument\ required\ for\ --port= + +#: ../../../processing/app/Base.java:377 +!Argument\ required\ for\ --pref= + +#: ../../../processing/app/Base.java:384 +!Argument\ required\ for\ --preferences-file= + #: ../../../processing/app/Preferences.java:137 !Armenian= #: ../../../processing/app/Preferences.java:138 !Asturian= +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 Auto\ Format=Autoformater @@ -143,6 +181,12 @@ Bad\ error\ line\:\ {0}=Stygg feil p\u00e5 linje\: {0} #: Editor.java:2136 Bad\ file\ selected=Ugyldig fil valgt +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +!Basque= + #: ../../../processing/app/Preferences.java:139 !Belarusian= @@ -169,6 +213,9 @@ Browse=Bla i gjennom #: Sketch.java:1392 Sketch.java:1423 Build\ folder\ disappeared\ or\ could\ not\ be\ written=Byggemappen forsvant eller kunne ikke skrives til +#: ../../../processing/app/Sketch.java:1530 +!Build\ options\ changed,\ rebuilding\ all= + #: ../../../processing/app/Preferences.java:80 Bulgarian=Bulgarsk @@ -181,8 +228,13 @@ Burn\ Bootloader=Skriv oppstartslaster #: Editor.java:2504 Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Skriver oppstartslaster til I/O kort (dette kan ta et minutt... -#: ../../../processing/app/Base.java:368 -Can't\ open\ source\ sketch\!=Kan ikke \u00e5pne kilde skisse\! +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 Canadian\ French=Kanadisk fransk @@ -194,6 +246,9 @@ Cancel=Avbryt #: Sketch.java:455 Cannot\ Rename=Kan ikke d\u00f8pe om +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 Carriage\ return=Vognretur @@ -227,10 +282,6 @@ Close=Lukk #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=Kommenter/Fjern kommentar -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Kompilatorfeil, vennligst send denne koden til {0} - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=Kompilerer skisse... @@ -306,9 +357,8 @@ Could\ not\ re-save\ sketch=Kunne ikke lagre skissen p\u00e5 nytt #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Kunne ikke lese standard innstillinger.\nDu m\u00e5 installere Arduino p\u00e5 nytt. -#: Preferences.java:258 -#, java-format -Could\ not\ read\ preferences\ from\ {0}=Klarte ikke \u00e5 lese innstillinger fra {0} +#: ../../../processing/app/Sketch.java:1525 +!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= #: Base.java:2482 #, java-format @@ -331,6 +381,9 @@ Could\ not\ rename\ the\ sketch.\ (2)=Kunne ikke omd\u00f8pe skissen. {2} #, java-format Could\ not\ replace\ {0}=Kunne ikke erstatte {0} +#: ../../../processing/app/Sketch.java:1579 +!Could\ not\ write\ build\ preferences\ file= + #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Kunne ikke arkivere skisse @@ -379,12 +432,19 @@ Done\ Saving.=Lagret #: Editor.java:2510 Done\ burning\ bootloader.=Skriving av oppstartslaster er ferdig +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=Kompilering er ferdig. #: Editor.java:2564 Done\ printing.=Utskrift ferdig. +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=Opplasting ferdig. @@ -463,6 +523,9 @@ Error\ while\ burning\ bootloader.=Feil oppstod under skriving av oppstartslaste #: ../../../processing/app/Editor.java:2555 !Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=File ved lasting av koden {0} @@ -470,10 +533,21 @@ Error\ while\ loading\ code\ {0}=File ved lasting av koden {0} #: Editor.java:2567 Error\ while\ printing.=Feil under utskrift. +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 !Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 Estonian=Estisk @@ -489,6 +563,10 @@ Export\ canceled,\ changes\ must\ first\ be\ saved.=Eksport avbrutt, endringer m #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +!Failed\ to\ open\ sketch\:\ "{0}"= + #: Editor.java:491 File=Fil @@ -523,8 +601,9 @@ Fix\ Encoding\ &\ Reload=Fiks tegnkoding & Last p\u00e5 nytt #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=For informasjon om hvordan biblioteker installeres, se\:http\://arduino.cc/en/Guide/Libraries\\n -#: debug/BasicUploader.java:80 -Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =Tvungen reset ved 1200bps \u00e5pne/lukke p\u00e5 porten +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=Fransk @@ -628,8 +707,8 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Biblioteket #: Preferences.java:106 Lithuaninan=Litauisk -#: ../../../processing/app/Sketch.java:1660 -Low\ memory\ available,\ stability\ problems\ may\ occur=Lite minne tilgjengelig, stabilitetsproblemer kan forekomme +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 Marathi=Marathi @@ -640,12 +719,24 @@ Message=Melding #: ../../../processing/app/preproc/PdePreprocessor.java:412 !Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Flere instillinger kan redigeres direkte i filen #: Editor.java:2156 Moving=Flytter +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +!Must\ specify\ exactly\ one\ sketch\ file= + +#: ../../../processing/app/Preferences.java:158 +!N'Ko= + #: Sketch.java:282 Name\ for\ new\ file\:=Navn p\u00e5 ny fil\: @@ -673,12 +764,18 @@ Next\ Tab=Neste fane #: Preferences.java:78 UpdateCheck.java:108 No=Nei +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Ingen kort valgt, vennligst velg et kort fra Verkt\u00f8y > Kort menyen. #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Ingen endringer n\u00f8dvendig for autoformatering. +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=Ingen filer ble lagt til skissen. @@ -688,6 +785,9 @@ No\ launcher\ available=Ikke noe startprogramm tilgjengelig #: SerialMonitor.java:112 No\ line\ ending=Ingen linjeslutt +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u00c6rlig talt, n\u00e5 er det p\u00e5 tide med litt frisk luft. @@ -695,6 +795,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u00c6rlig talt, n\u00e5 er #, java-format No\ reference\ available\ for\ "{0}"=Ingen referanse tilgjengelig for "{0}" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +!No\ valid\ code\ files\ found= + #: ../../../processing/app/Base.java:309 No\ valid\ configured\ cores\ found\!\ Exiting...=Fant ingen gyldige kjerner konfigurert\! Avslutter... @@ -721,6 +831,9 @@ OK=OK #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=En fil ble lagt til skissen. +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=\u00c5pne @@ -748,12 +861,22 @@ Paste=Lim inn #: Preferences.java:109 Persian=Persisk +#: ../../../processing/app/Preferences.java:161 +!Persian\ (Iran)= + #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Vennligst importer SPI biblioteket fra Skisse > Importer bibliotek menyen. +#: ../../../processing/app/debug/Compiler.java:529 +!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=Vennligst installer JDK 1.5 eller nyere +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 Polish=Polsk @@ -875,9 +998,15 @@ Save\ changes\ to\ "{0}"?\ \ =Lagre endringer i "{0}"? #: Sketch.java:825 Save\ sketch\ folder\ as...=Lagre skissemappe som... +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=Lagrer... +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=Velg (eller opprett ny) mappe for skisser... @@ -902,14 +1031,6 @@ Send=Send #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=Seriell overv\u00e5ker -#: Serial.java:174 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Serieporten ''{0}'' er allerede i bruk. Pr\u00f8v \u00e5 avslutte eventuelle program som kan tenkes \u00e5 benytte den. - -#: Serial.java:121 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=Serieporten "{0}" er allerede i bruk. Pr\u00f8ve \u00e5 avslutt eventuelle program som kan tenkes \u00e5 bruke den. - #: Serial.java:194 #, java-format Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Fant ikke serieporten ''{0}''. Valgte du den riktige fra Verkt\u00f8y > Serieport menyen? @@ -964,6 +1085,9 @@ Sketchbook\ folder\ disappeared=Mappen for skisser er forsvunnet #: Preferences.java:315 Sketchbook\ location\:=Skissebok plassering\: +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 !Sketches\ (*.ino,\ *.pde)= @@ -998,6 +1122,9 @@ Tamil=Tamilsk #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.='BYTE' n\u00f8kkelordet er ikke st\u00f8ttet lenger. +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Client klassen har blitt omd\u00f8pt til EthernetClient. @@ -1034,12 +1161,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Skissemappen har forsvunnet.\n Vil fors\u00f8ke \u00e5 lagre p\u00e5 nytt i samme lokasjon,\nmen alt utenom kildekoden vil g\u00e5 tapt. -#: Sketch.java:2018 -The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=Navnet p\u00e5 skissen m\u00e5tte endres. Skissenavn kan kun inneholde\nASCII karakterer og nummer (men kan ikke starte med et nummer).\nDe b\u00f8r ogs\u00e5 v\u00e6re kortere en 64 karakterer. +#: ../../../processing/app/Sketch.java:2028 +!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Mappen for skisser eksisterer ikke lenger.\nArduino vil n\u00e5 g\u00e5 over til \u00e5 bruke standard mappe for\nskisser, og hvis n\u00f8dvendig opprette en ny mappe\n. Etterp\u00e5 vil Arduino slutte \u00e5 omtale seg selv i\ntredje person. +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Denne filen har allerede blitt kopiert til den\nlokasjonen som du pr\u00f8ver \u00e5 legge den til.\nKan'ke gj\u00f8re ikkeno'. @@ -1143,6 +1273,10 @@ Verify\ code\ after\ upload=Sjekk kode etter opplasting #: Editor.java:1105 Visit\ Arduino.cc=Bes\u00f8k Arduino.cc +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= + #: Base.java:2128 Warning=Advarsel @@ -1241,9 +1375,6 @@ environment=milj\u00f8 #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1266,13 +1397,6 @@ name\ is\ null=name er null #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=Byte bufferet for readByteUntil() er for lite for {0} byter opp til og med char {1} - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: intern feil.. kunne ikke finne kode - #: Editor.java:932 serialMenu\ is\ null=serialMenu er null @@ -1280,6 +1404,10 @@ serialMenu\ is\ null=serialMenu er null #, java-format the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=den valgte serieporten {0} eksisterer ikke, eller kortet ditt er ikke tilkoblet +#: ../../../processing/app/Base.java:389 +#, java-format +!unknown\ option\:\ {0}= + #: Preferences.java:391 upload=last opp @@ -1298,3 +1426,35 @@ upload=last opp #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= + +#: ../../../processing/app/Base.java:476 +#, java-format +!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= + +#: ../../../processing/app/Base.java:509 +#, java-format +!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= + +#: ../../../processing/app/Base.java:507 +#, java-format +!{0}\:\ Invalid\ option\ for\ board\ "{1}"= + +#: ../../../processing/app/Base.java:502 +#, java-format +!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= + +#: ../../../processing/app/Base.java:486 +#, java-format +!{0}\:\ Unknown\ architecture= + +#: ../../../processing/app/Base.java:491 +#, java-format +!{0}\:\ Unknown\ board= + +#: ../../../processing/app/Base.java:481 +#, java-format +!{0}\:\ Unknown\ package= diff --git a/arduino-core/src/processing/app/i18n/Resources_ne.po b/arduino-core/src/processing/app/i18n/Resources_ne.po index ade1e8ae7..8f7870f09 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ne.po +++ b/arduino-core/src/processing/app/i18n/Resources_ne.po @@ -33,6 +33,12 @@ msgstr "" msgid "(edit only when Arduino is not running)" msgstr "" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr "" @@ -91,6 +97,10 @@ msgstr "" msgid "Add Library..." msgstr "सङ्रह थप्नुहोस्" +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -98,6 +108,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -176,6 +200,30 @@ msgstr "" msgid "Are you sure you want to delete this sketch?" msgstr "" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "" @@ -184,6 +232,10 @@ msgstr "" msgid "Asturian" msgstr "" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "" @@ -225,6 +277,14 @@ msgstr "" msgid "Bad file selected" msgstr "" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "" @@ -261,6 +321,10 @@ msgstr "" msgid "Build folder disappeared or could not be written" msgstr "" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "" @@ -277,8 +341,14 @@ msgstr "" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "" -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" msgstr "" #: ../../../processing/app/Preferences.java:92 @@ -294,6 +364,10 @@ msgstr "रद्द गर्नुहोस" msgid "Cannot Rename" msgstr "" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "" @@ -338,11 +412,6 @@ msgstr "" msgid "Comment/Uncomment" msgstr "" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "" @@ -450,9 +519,8 @@ msgid "" "You'll need to reinstall Arduino." msgstr "" -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" msgstr "" #: Base.java:2482 @@ -482,6 +550,10 @@ msgstr "" msgid "Could not replace {0}" msgstr "" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "" @@ -551,6 +623,11 @@ msgstr "" msgid "Done burning bootloader." msgstr "" +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "" @@ -559,6 +636,10 @@ msgstr "" msgid "Done printing." msgstr "" +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "" @@ -662,6 +743,10 @@ msgstr "" msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -671,11 +756,25 @@ msgstr "" msgid "Error while printing." msgstr "" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "" @@ -696,6 +795,11 @@ msgstr "" msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "" + #: Editor.java:491 msgid "File" msgstr "" @@ -743,8 +847,9 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" msgstr "" #: Preferences.java:95 @@ -893,8 +998,8 @@ msgstr "" msgid "Lithuaninan" msgstr "" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: Preferences.java:107 @@ -909,6 +1014,10 @@ msgstr "सन्देश " msgid "Missing the */ from the end of a /* comment */" msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "" @@ -917,6 +1026,18 @@ msgstr "" msgid "Moving" msgstr "" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "" + #: Sketch.java:282 msgid "Name for new file:" msgstr "" @@ -953,6 +1074,10 @@ msgstr "" msgid "No" msgstr "होइन " +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "" @@ -961,6 +1086,10 @@ msgstr "" msgid "No changes necessary for Auto Format." msgstr "" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "" @@ -973,6 +1102,10 @@ msgstr "" msgid "No line ending" msgstr "" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "" @@ -982,6 +1115,19 @@ msgstr "" msgid "No reference available for \"{0}\"" msgstr "" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "" @@ -1018,6 +1164,10 @@ msgstr "हुन्छ " msgid "One file added to the sketch." msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "खोल्नुहोस" @@ -1054,14 +1204,27 @@ msgstr "" msgid "Persian" msgstr "" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "" +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "" + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "कृपया JDK 1.5 वा JDK 1.5 JDK इन्स्टल गर्नुहोस " +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "" @@ -1224,10 +1387,18 @@ msgstr "" msgid "Save sketch folder as..." msgstr "" +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "" +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "" @@ -1260,20 +1431,6 @@ msgstr "" msgid "Serial Monitor" msgstr "" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "" - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "" - #: Serial.java:194 #, java-format msgid "" @@ -1353,6 +1510,10 @@ msgstr "" msgid "Sketchbook location:" msgstr "" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "" @@ -1403,6 +1564,10 @@ msgstr "" msgid "The 'BYTE' keyword is no longer supported." msgstr "" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "" @@ -1470,11 +1635,11 @@ msgid "" "but anything besides the code will be lost." msgstr "" -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." +"They should also be less than 64 characters long." msgstr "" #: Base.java:259 @@ -1486,6 +1651,12 @@ msgid "" "himself in the third person." msgstr "" +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1628,6 +1799,13 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "" + #: Base.java:2128 msgid "Warning" msgstr "चेतावनी" @@ -1796,10 +1974,6 @@ msgstr "वातावरण " msgid "http://arduino.cc/" msgstr "" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "" @@ -1829,17 +2003,6 @@ msgstr "" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "" - #: Editor.java:932 msgid "serialMenu is null" msgstr "" @@ -1850,6 +2013,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "" + #: Preferences.java:391 msgid "upload" msgstr "" @@ -1873,3 +2041,45 @@ msgstr "" #, java-format msgid "{0}.html" msgstr "" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "" diff --git a/arduino-core/src/processing/app/i18n/Resources_ne.properties b/arduino-core/src/processing/app/i18n/Resources_ne.properties index e39b2500b..344acf5e4 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ne.properties +++ b/arduino-core/src/processing/app/i18n/Resources_ne.properties @@ -17,6 +17,9 @@ #: Preferences.java:478 !(edit\ only\ when\ Arduino\ is\ not\ running)= +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 !.pde\ ->\ .ino= @@ -53,9 +56,23 @@ #: Base.java:963 Add\ Library...=\u0938\u0919\u094d\u0930\u0939 \u0925\u092a\u094d\u0928\u0941\u0939\u094b\u0938\u094d +#: ../../../processing/app/Preferences.java:96 +!Albanian= + #: tools/FixEncoding.java:77 !An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n= +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 !An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.= @@ -105,12 +122,33 @@ Arabic=\u0905\u0930\u092c\u0940 #: Sketch.java:587 !Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?= +#: ../../../processing/app/Base.java:356 +!Argument\ required\ for\ --board= + +#: ../../../processing/app/Base.java:370 +!Argument\ required\ for\ --curdir= + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +!Argument\ required\ for\ --port= + +#: ../../../processing/app/Base.java:377 +!Argument\ required\ for\ --pref= + +#: ../../../processing/app/Base.java:384 +!Argument\ required\ for\ --preferences-file= + #: ../../../processing/app/Preferences.java:137 !Armenian= #: ../../../processing/app/Preferences.java:138 !Asturian= +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 !Auto\ Format= @@ -142,6 +180,12 @@ Arabic=\u0905\u0930\u092c\u0940 #: Editor.java:2136 !Bad\ file\ selected= +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +!Basque= + #: ../../../processing/app/Preferences.java:139 !Belarusian= @@ -168,6 +212,9 @@ Arabic=\u0905\u0930\u092c\u0940 #: Sketch.java:1392 Sketch.java:1423 !Build\ folder\ disappeared\ or\ could\ not\ be\ written= +#: ../../../processing/app/Sketch.java:1530 +!Build\ options\ changed,\ rebuilding\ all= + #: ../../../processing/app/Preferences.java:80 !Bulgarian= @@ -180,8 +227,13 @@ Arabic=\u0905\u0930\u092c\u0940 #: Editor.java:2504 !Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...= -#: ../../../processing/app/Base.java:368 -!Can't\ open\ source\ sketch\!= +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 !Canadian\ French= @@ -193,6 +245,9 @@ Cancel=\u0930\u0926\u094d\u0926 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938 #: Sketch.java:455 !Cannot\ Rename= +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 !Carriage\ return= @@ -226,10 +281,6 @@ Cancel=\u0930\u0926\u094d\u0926 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938 #: Editor.java:1208 Editor.java:2749 !Comment/Uncomment= -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -!Compiler\ error,\ please\ submit\ this\ code\ to\ {0}= - #: Sketch.java:1608 Editor.java:1890 !Compiling\ sketch...= @@ -305,9 +356,8 @@ Could\ not\ delete\ {0}={0} \u0930\u0926\u094d\u0926 \u0917\u0930\u094d\u0928\u0 #: Preferences.java:219 !Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= -#: Preferences.java:258 -#, java-format -!Could\ not\ read\ preferences\ from\ {0}= +#: ../../../processing/app/Sketch.java:1525 +!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= #: Base.java:2482 #, java-format @@ -330,6 +380,9 @@ Could\ not\ delete\ {0}={0} \u0930\u0926\u094d\u0926 \u0917\u0930\u094d\u0928\u0 #, java-format !Could\ not\ replace\ {0}= +#: ../../../processing/app/Sketch.java:1579 +!Could\ not\ write\ build\ preferences\ file= + #: tools/Archiver.java:74 !Couldn't\ archive\ sketch= @@ -378,12 +431,19 @@ Could\ not\ delete\ {0}={0} \u0930\u0926\u094d\u0926 \u0917\u0930\u094d\u0928\u0 #: Editor.java:2510 !Done\ burning\ bootloader.= +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 !Done\ compiling.= #: Editor.java:2564 !Done\ printing.= +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 !Done\ uploading.= @@ -462,6 +522,9 @@ Error=\u0924\u094d\u0930\u0941\u091f\u0940 #: ../../../processing/app/Editor.java:2555 !Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format !Error\ while\ loading\ code\ {0}= @@ -469,10 +532,21 @@ Error=\u0924\u094d\u0930\u0941\u091f\u0940 #: Editor.java:2567 !Error\ while\ printing.= +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 !Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 !Estonian= @@ -488,6 +562,10 @@ Error=\u0924\u094d\u0930\u0941\u091f\u0940 #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +!Failed\ to\ open\ sketch\:\ "{0}"= + #: Editor.java:491 !File= @@ -522,8 +600,9 @@ Find\:=\u0916\u094b\u091c\u094d\u0928\u0941\u0939\u094b\u0938\u094d\: #: Base.java:1851 !For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n= -#: debug/BasicUploader.java:80 -!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ = +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=\u092b\u094d\u0930\u0947\u0928\u094d\u091a @@ -627,8 +706,8 @@ Korean=\u0915\u094b\u0930\u093f\u092f\u0928 #: Preferences.java:106 !Lithuaninan= -#: ../../../processing/app/Sketch.java:1660 -!Low\ memory\ available,\ stability\ problems\ may\ occur= +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 !Marathi= @@ -639,12 +718,24 @@ Message=\u0938\u0928\u094d\u0926\u0947\u0936 #: ../../../processing/app/preproc/PdePreprocessor.java:412 !Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 !More\ preferences\ can\ be\ edited\ directly\ in\ the\ file= #: Editor.java:2156 !Moving= +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +!Must\ specify\ exactly\ one\ sketch\ file= + +#: ../../../processing/app/Preferences.java:158 +!N'Ko= + #: Sketch.java:282 !Name\ for\ new\ file\:= @@ -672,12 +763,18 @@ New=\u0928\u092f\u093e\u0901 #: Preferences.java:78 UpdateCheck.java:108 No=\u0939\u094b\u0907\u0928 +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 !No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.= #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 !No\ changes\ necessary\ for\ Auto\ Format.= +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 !No\ files\ were\ added\ to\ the\ sketch.= @@ -687,6 +784,9 @@ No=\u0939\u094b\u0907\u0928 #: SerialMonitor.java:112 !No\ line\ ending= +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 !No\ really,\ time\ for\ some\ fresh\ air\ for\ you.= @@ -694,6 +794,16 @@ No=\u0939\u094b\u0907\u0928 #, java-format !No\ reference\ available\ for\ "{0}"= +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +!No\ valid\ code\ files\ found= + #: ../../../processing/app/Base.java:309 !No\ valid\ configured\ cores\ found\!\ Exiting...= @@ -720,6 +830,9 @@ OK=\u0939\u0941\u0928\u094d\u091b #: Sketch.java:992 Editor.java:376 !One\ file\ added\ to\ the\ sketch.= +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=\u0916\u094b\u0932\u094d\u0928\u0941\u0939\u094b\u0938 @@ -747,12 +860,22 @@ Open...=\u0916\u094b\u0932\u094d\u0928\u0941\u0939\u094b\u0938 #: Preferences.java:109 !Persian= +#: ../../../processing/app/Preferences.java:161 +!Persian\ (Iran)= + #: debug/Compiler.java:408 !Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= +#: ../../../processing/app/debug/Compiler.java:529 +!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=\u0915\u0943\u092a\u092f\u093e JDK 1.5 \u0935\u093e JDK 1.5 JDK \u0907\u0928\u094d\u0938\u094d\u091f\u0932 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 !Polish= @@ -874,9 +997,15 @@ Save=\u092c\u091a\u0924 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938 #: Sketch.java:825 !Save\ sketch\ folder\ as...= +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 !Saving...= +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 !Select\ (or\ create\ new)\ folder\ for\ sketches...= @@ -901,14 +1030,6 @@ Save=\u092c\u091a\u0924 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938 #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 !Serial\ Monitor= -#: Serial.java:174 -#, java-format -!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.= - -#: Serial.java:121 -#, java-format -!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.= - #: Serial.java:194 #, java-format !Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?= @@ -963,6 +1084,9 @@ Save=\u092c\u091a\u0924 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938 #: Preferences.java:315 !Sketchbook\ location\:= +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 !Sketches\ (*.ino,\ *.pde)= @@ -997,6 +1121,9 @@ Save=\u092c\u091a\u0924 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938 #: debug/Compiler.java:414 !The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.= +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 !The\ Client\ class\ has\ been\ renamed\ EthernetClient.= @@ -1033,12 +1160,15 @@ Save=\u092c\u091a\u0924 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938 #: Sketch.java:1755 !The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.= -#: Sketch.java:2018 -!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.= +#: ../../../processing/app/Sketch.java:2028 +!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= #: Base.java:259 !The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.= +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 !This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= @@ -1142,6 +1272,10 @@ Verify=\u092a\u094d\u0930\u092e\u093e\u0923\u093f\u0924 \u0917\u0930\u094d\u0928 #: Editor.java:1105 !Visit\ Arduino.cc= +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= + #: Base.java:2128 Warning=\u091a\u0947\u0924\u093e\u0935\u0928\u0940 @@ -1240,9 +1374,6 @@ environment=\u0935\u093e\u0924\u093e\u0935\u0930\u0923 #: Editor.java:1108 !http\://arduino.cc/= -#: ../../../processing/app/debug/Compiler.java:49 -!http\://github.com/arduino/Arduino/issues= - #: UpdateCheck.java:118 !http\://www.arduino.cc/en/Main/Software= @@ -1265,13 +1396,6 @@ index.html=index.html #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -!readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}= - -#: Sketch.java:647 -!removeCode\:\ internal\ error..\ could\ not\ find\ code= - #: Editor.java:932 !serialMenu\ is\ null= @@ -1279,6 +1403,10 @@ platforms.html=platforms.html #, java-format !the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected= +#: ../../../processing/app/Base.java:389 +#, java-format +!unknown\ option\:\ {0}= + #: Preferences.java:391 !upload= @@ -1297,3 +1425,35 @@ platforms.html=platforms.html #: Editor.java:1874 #, java-format !{0}.html= + +#: ../../../processing/app/Base.java:519 +#, java-format +!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= + +#: ../../../processing/app/Base.java:476 +#, java-format +!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= + +#: ../../../processing/app/Base.java:509 +#, java-format +!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= + +#: ../../../processing/app/Base.java:507 +#, java-format +!{0}\:\ Invalid\ option\ for\ board\ "{1}"= + +#: ../../../processing/app/Base.java:502 +#, java-format +!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= + +#: ../../../processing/app/Base.java:486 +#, java-format +!{0}\:\ Unknown\ architecture= + +#: ../../../processing/app/Base.java:491 +#, java-format +!{0}\:\ Unknown\ board= + +#: ../../../processing/app/Base.java:481 +#, java-format +!{0}\:\ Unknown\ package= diff --git a/arduino-core/src/processing/app/i18n/Resources_nl.po b/arduino-core/src/processing/app/i18n/Resources_nl.po index bfe7144f4..fc52e79e4 100644 --- a/arduino-core/src/processing/app/i18n/Resources_nl.po +++ b/arduino-core/src/processing/app/i18n/Resources_nl.po @@ -35,6 +35,12 @@ msgstr "'Mouse' kan alleen met de Arduino Leonardo worden gebruikt" msgid "(edit only when Arduino is not running)" msgstr "(alleen bewerken wanneer Arduino niet wordt uitgevoerd)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -93,6 +99,10 @@ msgstr "Bestand toevoegen..." msgid "Add Library..." msgstr "Bibliotheek toevoegen…" +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "Albanees" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -100,6 +110,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "Er is een fout opgetreden bij het repareren van de bestandscodering.\nProbeer deze schets niet op te slaan omdat een oudere versie\nmogelijk overschreven wordt. Gebruik Openen om de schets opnieuw te openen en probeer het nogmaals.\n" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -178,6 +202,30 @@ msgstr "Weet u zeker dat u \"{0}\" wilt verwijderen?" msgid "Are you sure you want to delete this sketch?" msgstr "Weet u zeker dat u deze schets wilt verwijderen?" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "Argument vereist voor --board" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "Argument vereist voor --curdir" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "Argument vereist voor --port" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "Argument vereist voor --pref" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "Argument vereist voor --preferences-file" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "Armeens" @@ -186,6 +234,10 @@ msgstr "Armeens" msgid "Asturian" msgstr "Asturisch" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "Automatische opmaak" @@ -227,6 +279,14 @@ msgstr "Ernstige fout regel: {0}" msgid "Bad file selected" msgstr "Foutief bestand geselecteerd" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "Baskisch" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "Witrussisch" @@ -263,6 +323,10 @@ msgstr "Bladeren" msgid "Build folder disappeared or could not be written" msgstr "De map met bouwpogingen is verdwenen of er kon niet naar geschreven worden" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "Build-opties gewijzigd, alles wordt opnieuw gebuild" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Bulgaars" @@ -279,8 +343,14 @@ msgstr "Bootloader branden\n " msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "Bootloader naar I/O-board branden (dit kan even duren)..." -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" msgstr "" #: ../../../processing/app/Preferences.java:92 @@ -296,6 +366,10 @@ msgstr "Annuleren" msgid "Cannot Rename" msgstr "Hernoemen mislukt" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "Regelterugloop" @@ -340,11 +414,6 @@ msgstr "Sluiten" msgid "Comment/Uncomment" msgstr "Opmerking maken/opmerking wissen" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "Compiler-fout. Gelieve deze code op te sturen naar {0}" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "Bezig met het compileren van de schets..." @@ -452,10 +521,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Kan de standaard instellingen niet lezen.\nU moet Arduino opnieuw installeren." -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "Kon de voorkeuren niet lezen van {0}" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "Kan het vroegere bestand met build-voorkeuren niet lezen. Alles wordt opnieuw opgebouwd." #: Base.java:2482 #, java-format @@ -484,6 +552,10 @@ msgstr "Kan schets (2) niet hernoemen." msgid "Could not replace {0}" msgstr "Kan {0} niet vervangen" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "Kan het bestand met build-voorkeuren niet schrijven" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Kan de schets niet archiveren" @@ -553,6 +625,11 @@ msgstr "Opslaan voltooid." msgid "Done burning bootloader." msgstr "Klaar met het branden van de bootloader." +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "Compileren voltooid." @@ -561,6 +638,10 @@ msgstr "Compileren voltooid." msgid "Done printing." msgstr "Afdrukken voltooid." +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "Uploaden voltooid." @@ -664,6 +745,10 @@ msgstr "Fout bij het branden van de bootloader." msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "Fout bij het branden van de bootloader: configuratie-parameter '{0}' ontbreekt" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -673,11 +758,25 @@ msgstr "Fout bij het laden van code {0}" msgid "Error while printing." msgstr "Fout bij het afdrukken." +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "Fout bij het uploaden: configuratie-parameter '{0}' ontbreekt" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "Estisch" @@ -698,6 +797,11 @@ msgstr "Exporteren is geannuleerd, wijzigingen moeten eerst worden opgeslagen." msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "Openen van schets \"{0}\" is mislukt" + #: Editor.java:491 msgid "File" msgstr "Bestand" @@ -745,9 +849,10 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "Meer info over het installeren van bibliotheken op: http://arduino.cc/en/Guide/Libraries\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " -msgstr "Een reset wordt geforceerd (met 1200bps openen/sluiten) op poort" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" +msgstr "" #: Preferences.java:95 msgid "French" @@ -895,9 +1000,9 @@ msgstr "Bibliotheek toegevoegd aan uw bibliotheken. Controleer het \"Bibliothee msgid "Lithuaninan" msgstr "Litouws" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" -msgstr "Weinig geheugen beschikbaar; er kunnen zich stabiliteitsproblemen voordoen" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." +msgstr "" #: Preferences.java:107 msgid "Marathi" @@ -911,6 +1016,10 @@ msgstr "Boodschap" msgid "Missing the */ from the end of a /* comment */" msgstr "De */ aan het einde van een /* opmerking */ ontbreekt" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "Meer voorkeuren kunnen rechtstreeks in het bestand worden bewerkt" @@ -919,6 +1028,18 @@ msgstr "Meer voorkeuren kunnen rechtstreeks in het bestand worden bewerkt" msgid "Moving" msgstr "Bezig met verplaatsen" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "U moet precies één schetsbestand opgeven" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "N'Ko" + #: Sketch.java:282 msgid "Name for new file:" msgstr "Naam voor het nieuwe bestand:" @@ -955,6 +1076,10 @@ msgstr "Volgende tabblad" msgid "No" msgstr "Nee" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "Geen board geselecteerd; kies een board in het menu Hulpmiddelen > Board" @@ -963,6 +1088,10 @@ msgstr "Geen board geselecteerd; kies een board in het menu Hulpmiddelen > Board msgid "No changes necessary for Auto Format." msgstr "Geen aanpassingen noodzakelijk voor automatische opmaak." +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "Er zijn geen nieuw bestanden aan de schets toegevoegd." @@ -975,6 +1104,10 @@ msgstr "Geen launcher beschikbaar" msgid "No line ending" msgstr "Geen regeleinde" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "Nee, echt, even tijd voor een beetje frisse lucht." @@ -984,6 +1117,19 @@ msgstr "Nee, echt, even tijd voor een beetje frisse lucht." msgid "No reference available for \"{0}\"" msgstr "Geen naslagwerk beschikbaar voor \"{0}\"" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "Geen geldige codes gevonden" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "Geen geldig geconfigureerde kernen gevonden! Opwindend..." @@ -1020,6 +1166,10 @@ msgstr "OK" msgid "One file added to the sketch." msgstr "Er is een bestand toegevoegd aan de schets." +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "Openen" @@ -1056,14 +1206,27 @@ msgstr "Plakken" msgid "Persian" msgstr "Perzisch" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "Perzisch (Iran)" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "Gelieve de SPI-bibliotheek te importeren via het menu Schets -> Bibliotheek importeren." +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "Importeer de Wire-bibliotheek via het menu Schets > Bibliotheek importeren" + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "Gelieve JDK 1.5 of later te installeren" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "Pools" @@ -1226,10 +1389,18 @@ msgstr "Gemaakte wijzigingen in \"{0}\" opslaan? " msgid "Save sketch folder as..." msgstr "Schetsmap opslaan als..." +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "Opslaan..." +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "Een map voor schetsen kiezen (of aanmaken)..." @@ -1262,20 +1433,6 @@ msgstr "Verzenden" msgid "Serial Monitor" msgstr "Seriële monitor" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "Seriële poort \"{0}\" is reeds in gebruik. Probeer andere programma's af te sluiten die de poort in gebruik hebben." - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "Seriële poort \"{0}\" is reeds in gebruik. Probeer andere programma's af te sluiten die de poort in gebruik hebben." - #: Serial.java:194 #, java-format msgid "" @@ -1355,6 +1512,10 @@ msgstr "De map met schetsboeken is verdwenen" msgid "Sketchbook location:" msgstr "Schetsboeklocatie:" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "Schetsen (*.ino, *.pde)" @@ -1405,6 +1566,10 @@ msgstr "Tamil" msgid "The 'BYTE' keyword is no longer supported." msgstr "De term 'BYTE' wordt niet langer ondersteund." +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "De Client-klasse is hernoemd naar EthernetClient" @@ -1472,12 +1637,12 @@ msgid "" "but anything besides the code will be lost." msgstr "De map met schetsen is verdwenen.\nEr wordt geprobeerd opnieuw op dezelfde locatie op te slaan,\nmaar alles behalve de code zal verloren zijn." -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." -msgstr "De naam van de schets moest veranderd worden. Namen van schetsen kunnen enkel bestaan\nuit ASCII karakters en cijfers (maar ze mogen niet met een cijfer beginnen).\nZe moeten ook minder dan 64 karakters lang zijn." +"They should also be less than 64 characters long." +msgstr "De naam van de schets moet gewijzigd worden.\nNamen van schetsen mogen alleen ASCII-tekens en cijfers\nbevatten (maar mogen niet met een cijfer beginnen).\nZe mogen maximaal 63 tekens lang zijn." #: Base.java:259 msgid "" @@ -1488,6 +1653,12 @@ msgid "" "himself in the third person." msgstr "De schetsboekmap bestaat niet meer.\nArduino zal overschakelen naar de standaard schetsboeklocatie,\nen, indien nodig, een nieuwe schetsboekmap aanmaken.\nArduino zal daarna ophouden over zichzelf te\npraten in de derde persoon." +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1630,6 +1801,13 @@ msgstr "Vietnamees" msgid "Visit Arduino.cc" msgstr "Bezoek Arduino.cc" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "WAARSCHUWING: bibliotheek {0} beweert te werken onder architectuur {1} en kan incompatible zijn met uw huidige board dat werkt onder architectuur {2}." + #: Base.java:2128 msgid "Warning" msgstr "Waarschuwing" @@ -1798,10 +1976,6 @@ msgstr "omgeving" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "http://github.com/arduino/Arduino/issues" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1831,17 +2005,6 @@ msgstr "naam is leeg" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "readBytesUntil() byte buffer is te klein voor de {0} bytes tot en met teken {1}" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "removeCode: interne fout.. geen code gevonden" - #: Editor.java:932 msgid "serialMenu is null" msgstr "serialMenu is leeg" @@ -1852,6 +2015,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "de geselecteerde seriële poort {0} bestaat niet of uw board is niet aangesloten." +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "onbekende optie: {0}" + #: Preferences.java:391 msgid "upload" msgstr "uploaden" @@ -1875,3 +2043,45 @@ msgstr "{0} | Arduino {1}" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "{0}: Ongeldig argument voor --pref. Het moet de vorm \"pref=waarde\" hebben." + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "{0}: Ongeldige boardnaam. Het moet de vorm \"package:arch:board\" of \"package:arch:board:options\" hebben." + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "{0}: Ongeldige optie voor \"{1}\" optie voor board \"{2}\"" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "{0}: Ongeldige optie voor board \"{1}\"" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "{0}: Ongeldige optie. Het moet de vorm \"name=waarde\" hebben." + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "{0}: Onbekende architectuur" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "{0}:Onbekend board" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "{0}: Onbekend pakket" diff --git a/arduino-core/src/processing/app/i18n/Resources_nl.properties b/arduino-core/src/processing/app/i18n/Resources_nl.properties index 661c16f0b..7334d667a 100644 --- a/arduino-core/src/processing/app/i18n/Resources_nl.properties +++ b/arduino-core/src/processing/app/i18n/Resources_nl.properties @@ -19,6 +19,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(alleen bewerken wanneer Arduino niet wordt uitgevoerd) +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -55,9 +58,23 @@ Add\ File...=Bestand toevoegen... #: Base.java:963 Add\ Library...=Bibliotheek toevoegen\u2026 +#: ../../../processing/app/Preferences.java:96 +Albanian=Albanees + #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Er is een fout opgetreden bij het repareren van de bestandscodering.\nProbeer deze schets niet op te slaan omdat een oudere versie\nmogelijk overschreven wordt. Gebruik Openen om de schets opnieuw te openen en probeer het nogmaals.\n +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Er is een onbekende fout opgetreden bij het laden\nvan de platform-specifieke code voor uw machine. @@ -107,12 +124,33 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Weet u zeker dat u "{0}" wilt verw #: Sketch.java:587 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Weet u zeker dat u deze schets wilt verwijderen? +#: ../../../processing/app/Base.java:356 +Argument\ required\ for\ --board=Argument vereist voor --board + +#: ../../../processing/app/Base.java:370 +Argument\ required\ for\ --curdir=Argument vereist voor --curdir + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +Argument\ required\ for\ --port=Argument vereist voor --port + +#: ../../../processing/app/Base.java:377 +Argument\ required\ for\ --pref=Argument vereist voor --pref + +#: ../../../processing/app/Base.java:384 +Argument\ required\ for\ --preferences-file=Argument vereist voor --preferences-file + #: ../../../processing/app/Preferences.java:137 Armenian=Armeens #: ../../../processing/app/Preferences.java:138 Asturian=Asturisch +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 Auto\ Format=Automatische opmaak @@ -144,6 +182,12 @@ Bad\ error\ line\:\ {0}=Ernstige fout regel\: {0} #: Editor.java:2136 Bad\ file\ selected=Foutief bestand geselecteerd +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +Basque=Baskisch + #: ../../../processing/app/Preferences.java:139 Belarusian=Witrussisch @@ -170,6 +214,9 @@ Browse=Bladeren #: Sketch.java:1392 Sketch.java:1423 Build\ folder\ disappeared\ or\ could\ not\ be\ written=De map met bouwpogingen is verdwenen of er kon niet naar geschreven worden +#: ../../../processing/app/Sketch.java:1530 +Build\ options\ changed,\ rebuilding\ all=Build-opties gewijzigd, alles wordt opnieuw gebuild + #: ../../../processing/app/Preferences.java:80 Bulgarian=Bulgaars @@ -182,8 +229,13 @@ Burn\ Bootloader=Bootloader branden\n #: Editor.java:2504 Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Bootloader naar I/O-board branden (dit kan even duren)... -#: ../../../processing/app/Base.java:368 -!Can't\ open\ source\ sketch\!= +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 Canadian\ French=Canadees Frans @@ -195,6 +247,9 @@ Cancel=Annuleren #: Sketch.java:455 Cannot\ Rename=Hernoemen mislukt +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 Carriage\ return=Regelterugloop @@ -228,10 +283,6 @@ Close=Sluiten #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=Opmerking maken/opmerking wissen -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Compiler-fout. Gelieve deze code op te sturen naar {0} - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=Bezig met het compileren van de schets... @@ -307,9 +358,8 @@ Could\ not\ re-save\ sketch=De schets kan niet opnieuw worden opgeslagen. #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Kan de standaard instellingen niet lezen.\nU moet Arduino opnieuw installeren. -#: Preferences.java:258 -#, java-format -Could\ not\ read\ preferences\ from\ {0}=Kon de voorkeuren niet lezen van {0} +#: ../../../processing/app/Sketch.java:1525 +Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=Kan het vroegere bestand met build-voorkeuren niet lezen. Alles wordt opnieuw opgebouwd. #: Base.java:2482 #, java-format @@ -332,6 +382,9 @@ Could\ not\ rename\ the\ sketch.\ (2)=Kan schets (2) niet hernoemen. #, java-format Could\ not\ replace\ {0}=Kan {0} niet vervangen +#: ../../../processing/app/Sketch.java:1579 +Could\ not\ write\ build\ preferences\ file=Kan het bestand met build-voorkeuren niet schrijven + #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Kan de schets niet archiveren @@ -380,12 +433,19 @@ Done\ Saving.=Opslaan voltooid. #: Editor.java:2510 Done\ burning\ bootloader.=Klaar met het branden van de bootloader. +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=Compileren voltooid. #: Editor.java:2564 Done\ printing.=Afdrukken voltooid. +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=Uploaden voltooid. @@ -464,6 +524,9 @@ Error\ while\ burning\ bootloader.=Fout bij het branden van de bootloader. #: ../../../processing/app/Editor.java:2555 Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=Fout bij het branden van de bootloader\: configuratie-parameter '{0}' ontbreekt +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=Fout bij het laden van code {0} @@ -471,10 +534,21 @@ Error\ while\ loading\ code\ {0}=Fout bij het laden van code {0} #: Editor.java:2567 Error\ while\ printing.=Fout bij het afdrukken. +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=Fout bij het uploaden\: configuratie-parameter '{0}' ontbreekt +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 Estonian=Estisch @@ -490,6 +564,10 @@ Export\ canceled,\ changes\ must\ first\ be\ saved.=Exporteren is geannuleerd, w #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +Failed\ to\ open\ sketch\:\ "{0}"=Openen van schets "{0}" is mislukt + #: Editor.java:491 File=Bestand @@ -524,8 +602,9 @@ Fix\ Encoding\ &\ Reload=Codering repareren en opnieuw laden #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=Meer info over het installeren van bibliotheken op\: http\://arduino.cc/en/Guide/Libraries\n -#: debug/BasicUploader.java:80 -Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =Een reset wordt geforceerd (met 1200bps openen/sluiten) op poort +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=Frans @@ -629,8 +708,8 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Bibliotheek #: Preferences.java:106 Lithuaninan=Litouws -#: ../../../processing/app/Sketch.java:1660 -Low\ memory\ available,\ stability\ problems\ may\ occur=Weinig geheugen beschikbaar; er kunnen zich stabiliteitsproblemen voordoen +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 Marathi=Marathi @@ -641,12 +720,24 @@ Message=Boodschap #: ../../../processing/app/preproc/PdePreprocessor.java:412 Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=De */ aan het einde van een /* opmerking */ ontbreekt +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Meer voorkeuren kunnen rechtstreeks in het bestand worden bewerkt #: Editor.java:2156 Moving=Bezig met verplaatsen +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +Must\ specify\ exactly\ one\ sketch\ file=U moet precies \u00e9\u00e9n schetsbestand opgeven + +#: ../../../processing/app/Preferences.java:158 +N'Ko=N'Ko + #: Sketch.java:282 Name\ for\ new\ file\:=Naam voor het nieuwe bestand\: @@ -674,12 +765,18 @@ Next\ Tab=Volgende tabblad #: Preferences.java:78 UpdateCheck.java:108 No=Nee +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Geen board geselecteerd; kies een board in het menu Hulpmiddelen > Board #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Geen aanpassingen noodzakelijk voor automatische opmaak. +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=Er zijn geen nieuw bestanden aan de schets toegevoegd. @@ -689,6 +786,9 @@ No\ launcher\ available=Geen launcher beschikbaar #: SerialMonitor.java:112 No\ line\ ending=Geen regeleinde +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Nee, echt, even tijd voor een beetje frisse lucht. @@ -696,6 +796,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Nee, echt, even tijd voor ee #, java-format No\ reference\ available\ for\ "{0}"=Geen naslagwerk beschikbaar voor "{0}" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +No\ valid\ code\ files\ found=Geen geldige codes gevonden + #: ../../../processing/app/Base.java:309 No\ valid\ configured\ cores\ found\!\ Exiting...=Geen geldig geconfigureerde kernen gevonden\! Opwindend... @@ -722,6 +832,9 @@ OK=OK #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=Er is een bestand toegevoegd aan de schets. +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=Openen @@ -749,12 +862,22 @@ Paste=Plakken #: Preferences.java:109 Persian=Perzisch +#: ../../../processing/app/Preferences.java:161 +Persian\ (Iran)=Perzisch (Iran) + #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Gelieve de SPI-bibliotheek te importeren via het menu Schets -> Bibliotheek importeren. +#: ../../../processing/app/debug/Compiler.java:529 +Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Importeer de Wire-bibliotheek via het menu Schets > Bibliotheek importeren + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=Gelieve JDK 1.5 of later te installeren +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 Polish=Pools @@ -876,9 +999,15 @@ Save\ changes\ to\ "{0}"?\ \ =Gemaakte wijzigingen in "{0}" opslaan? #: Sketch.java:825 Save\ sketch\ folder\ as...=Schetsmap opslaan als... +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=Opslaan... +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=Een map voor schetsen kiezen (of aanmaken)... @@ -903,14 +1032,6 @@ Send=Verzenden #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=Seri\u00eble monitor -#: Serial.java:174 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Seri\u00eble poort "{0}" is reeds in gebruik. Probeer andere programma's af te sluiten die de poort in gebruik hebben. - -#: Serial.java:121 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=Seri\u00eble poort "{0}" is reeds in gebruik. Probeer andere programma's af te sluiten die de poort in gebruik hebben. - #: Serial.java:194 #, java-format Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Seri\u00eble poort "{0}" is niet gevonden. Hebt u de juiste gekozen in het menu Hulpmiddelen > Poort? @@ -965,6 +1086,9 @@ Sketchbook\ folder\ disappeared=De map met schetsboeken is verdwenen #: Preferences.java:315 Sketchbook\ location\:=Schetsboeklocatie\: +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 Sketches\ (*.ino,\ *.pde)=Schetsen (*.ino, *.pde) @@ -999,6 +1123,9 @@ Tamil=Tamil #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=De term 'BYTE' wordt niet langer ondersteund. +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=De Client-klasse is hernoemd naar EthernetClient @@ -1035,12 +1162,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=De map met schetsen is verdwenen.\nEr wordt geprobeerd opnieuw op dezelfde locatie op te slaan,\nmaar alles behalve de code zal verloren zijn. -#: Sketch.java:2018 -The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=De naam van de schets moest veranderd worden. Namen van schetsen kunnen enkel bestaan\nuit ASCII karakters en cijfers (maar ze mogen niet met een cijfer beginnen).\nZe moeten ook minder dan 64 karakters lang zijn. +#: ../../../processing/app/Sketch.java:2028 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.=De naam van de schets moet gewijzigd worden.\nNamen van schetsen mogen alleen ASCII-tekens en cijfers\nbevatten (maar mogen niet met een cijfer beginnen).\nZe mogen maximaal 63 tekens lang zijn. #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=De schetsboekmap bestaat niet meer.\nArduino zal overschakelen naar de standaard schetsboeklocatie,\nen, indien nodig, een nieuwe schetsboekmap aanmaken.\nArduino zal daarna ophouden over zichzelf te\npraten in de derde persoon. +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Dit bestand is al gekopieerd naar de locatie\nvanwaar u het probeert toe te voegen.\nIk doe niets onzinnigs\!. @@ -1144,6 +1274,10 @@ Vietnamese=Vietnamees #: Editor.java:1105 Visit\ Arduino.cc=Bezoek Arduino.cc +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=WAARSCHUWING\: bibliotheek {0} beweert te werken onder architectuur {1} en kan incompatible zijn met uw huidige board dat werkt onder architectuur {2}. + #: Base.java:2128 Warning=Waarschuwing @@ -1242,9 +1376,6 @@ environment=omgeving #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1267,13 +1398,6 @@ name\ is\ null=naam is leeg #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() byte buffer is te klein voor de {0} bytes tot en met teken {1} - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: interne fout.. geen code gevonden - #: Editor.java:932 serialMenu\ is\ null=serialMenu is leeg @@ -1281,6 +1405,10 @@ serialMenu\ is\ null=serialMenu is leeg #, java-format the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=de geselecteerde seri\u00eble poort {0} bestaat niet of uw board is niet aangesloten. +#: ../../../processing/app/Base.java:389 +#, java-format +unknown\ option\:\ {0}=onbekende optie\: {0} + #: Preferences.java:391 upload=uploaden @@ -1299,3 +1427,35 @@ upload=uploaden #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"={0}\: Ongeldig argument voor --pref. Het moet de vorm "pref\=waarde" hebben. + +#: ../../../processing/app/Base.java:476 +#, java-format +{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"={0}\: Ongeldige boardnaam. Het moet de vorm "package\:arch\:board" of "package\:arch\:board\:options" hebben. + +#: ../../../processing/app/Base.java:509 +#, java-format +{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"={0}\: Ongeldige optie voor "{1}" optie voor board "{2}" + +#: ../../../processing/app/Base.java:507 +#, java-format +{0}\:\ Invalid\ option\ for\ board\ "{1}"={0}\: Ongeldige optie voor board "{1}" + +#: ../../../processing/app/Base.java:502 +#, java-format +{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"={0}\: Ongeldige optie. Het moet de vorm "name\=waarde" hebben. + +#: ../../../processing/app/Base.java:486 +#, java-format +{0}\:\ Unknown\ architecture={0}\: Onbekende architectuur + +#: ../../../processing/app/Base.java:491 +#, java-format +{0}\:\ Unknown\ board={0}\:Onbekend board + +#: ../../../processing/app/Base.java:481 +#, java-format +{0}\:\ Unknown\ package={0}\: Onbekend pakket diff --git a/arduino-core/src/processing/app/i18n/Resources_nl_NL.po b/arduino-core/src/processing/app/i18n/Resources_nl_NL.po index 3f1385524..053faec51 100644 --- a/arduino-core/src/processing/app/i18n/Resources_nl_NL.po +++ b/arduino-core/src/processing/app/i18n/Resources_nl_NL.po @@ -33,6 +33,12 @@ msgstr "'Muis' wordt enkel ondersteund door de Arduino Leonardo" msgid "(edit only when Arduino is not running)" msgstr "" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -91,6 +97,10 @@ msgstr "" msgid "Add Library..." msgstr "Voeg bibliotheek toe..." +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -98,6 +108,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -176,6 +200,30 @@ msgstr "" msgid "Are you sure you want to delete this sketch?" msgstr "" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "" @@ -184,6 +232,10 @@ msgstr "" msgid "Asturian" msgstr "" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "" @@ -225,6 +277,14 @@ msgstr "" msgid "Bad file selected" msgstr "" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "" @@ -261,6 +321,10 @@ msgstr "Bladeren" msgid "Build folder disappeared or could not be written" msgstr "" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "" @@ -277,8 +341,14 @@ msgstr "" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "" -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" msgstr "" #: ../../../processing/app/Preferences.java:92 @@ -294,6 +364,10 @@ msgstr "Annuleren" msgid "Cannot Rename" msgstr "" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "" @@ -338,11 +412,6 @@ msgstr "Sluiten" msgid "Comment/Uncomment" msgstr "" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "Sketch aan het compileren..." @@ -450,9 +519,8 @@ msgid "" "You'll need to reinstall Arduino." msgstr "" -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" msgstr "" #: Base.java:2482 @@ -482,6 +550,10 @@ msgstr "" msgid "Could not replace {0}" msgstr "Kon {0} niet vervangen" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "" @@ -551,6 +623,11 @@ msgstr "" msgid "Done burning bootloader." msgstr "" +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "" @@ -559,6 +636,10 @@ msgstr "" msgid "Done printing." msgstr "" +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "" @@ -662,6 +743,10 @@ msgstr "" msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -671,11 +756,25 @@ msgstr "" msgid "Error while printing." msgstr "" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "Ests" @@ -696,6 +795,11 @@ msgstr "" msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "" + #: Editor.java:491 msgid "File" msgstr "Bestand" @@ -743,8 +847,9 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "Voor informatie over het installeren van bibliotheken, zie: http://arduino.cc/en/Guide/Libraries\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" msgstr "" #: Preferences.java:95 @@ -893,8 +998,8 @@ msgstr "Bibliotheek is aan je bibliotheken toegevoegd. Zie het \"Bibliotheken im msgid "Lithuaninan" msgstr "Litouws" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: Preferences.java:107 @@ -909,6 +1014,10 @@ msgstr "Bericht" msgid "Missing the */ from the end of a /* comment */" msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "" @@ -917,6 +1026,18 @@ msgstr "" msgid "Moving" msgstr "" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "" + #: Sketch.java:282 msgid "Name for new file:" msgstr "" @@ -953,6 +1074,10 @@ msgstr "" msgid "No" msgstr "Nee" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "" @@ -961,6 +1086,10 @@ msgstr "" msgid "No changes necessary for Auto Format." msgstr "" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "" @@ -973,6 +1102,10 @@ msgstr "" msgid "No line ending" msgstr "" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "Nee serieus, hoogste tijd voor wat frisse lucht voor jou." @@ -982,6 +1115,19 @@ msgstr "Nee serieus, hoogste tijd voor wat frisse lucht voor jou." msgid "No reference available for \"{0}\"" msgstr "" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "" @@ -1018,6 +1164,10 @@ msgstr "OK" msgid "One file added to the sketch." msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "Open" @@ -1054,14 +1204,27 @@ msgstr "Plakken" msgid "Persian" msgstr "Perzisch" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "" +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "" + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "Installeer JDK 1.5 of een recentere versie" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "Pools" @@ -1224,10 +1387,18 @@ msgstr "" msgid "Save sketch folder as..." msgstr "" +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "" +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "Kies (of maak een nieuwe) map voor sketches..." @@ -1260,20 +1431,6 @@ msgstr "" msgid "Serial Monitor" msgstr "" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "" - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "" - #: Serial.java:194 #, java-format msgid "" @@ -1353,6 +1510,10 @@ msgstr "Sketchbook-map is verdwenen" msgid "Sketchbook location:" msgstr "Sketchbooklocatie:" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "" @@ -1403,6 +1564,10 @@ msgstr "" msgid "The 'BYTE' keyword is no longer supported." msgstr "Het \"BYTE\" keyword wordt niet langer ondersteund." +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "" @@ -1470,11 +1635,11 @@ msgid "" "but anything besides the code will be lost." msgstr "" -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." +"They should also be less than 64 characters long." msgstr "" #: Base.java:259 @@ -1486,6 +1651,12 @@ msgid "" "himself in the third person." msgstr "De sketchbookmap bestaat niet meer.\nArduino zal overschakelen naar de standaardlocatie en zal zo nodig een nieuwe sketchbookmap aanmaken. Daarna zal Arduino ophouden met over zichzelf te praten in de derde persoon." +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1628,6 +1799,13 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "" + #: Base.java:2128 msgid "Warning" msgstr "Waarschuwing" @@ -1796,10 +1974,6 @@ msgstr "omgeving" msgid "http://arduino.cc/" msgstr "" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "" @@ -1829,17 +2003,6 @@ msgstr "" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "" - #: Editor.java:932 msgid "serialMenu is null" msgstr "" @@ -1850,6 +2013,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "" + #: Preferences.java:391 msgid "upload" msgstr "" @@ -1873,3 +2041,45 @@ msgstr "" #, java-format msgid "{0}.html" msgstr "" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "" diff --git a/arduino-core/src/processing/app/i18n/Resources_nl_NL.properties b/arduino-core/src/processing/app/i18n/Resources_nl_NL.properties index 2f5f79cee..ce35806ed 100644 --- a/arduino-core/src/processing/app/i18n/Resources_nl_NL.properties +++ b/arduino-core/src/processing/app/i18n/Resources_nl_NL.properties @@ -17,6 +17,9 @@ #: Preferences.java:478 !(edit\ only\ when\ Arduino\ is\ not\ running)= +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -53,9 +56,23 @@ About\ Arduino=Over Arduino #: Base.java:963 Add\ Library...=Voeg bibliotheek toe... +#: ../../../processing/app/Preferences.java:96 +!Albanian= + #: tools/FixEncoding.java:77 !An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n= +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Een onbekende fout is opgetreden tijdens het laden van platform-specifieke code voor jouw apparaat. @@ -105,12 +122,33 @@ Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ #: Sketch.java:587 !Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?= +#: ../../../processing/app/Base.java:356 +!Argument\ required\ for\ --board= + +#: ../../../processing/app/Base.java:370 +!Argument\ required\ for\ --curdir= + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +!Argument\ required\ for\ --port= + +#: ../../../processing/app/Base.java:377 +!Argument\ required\ for\ --pref= + +#: ../../../processing/app/Base.java:384 +!Argument\ required\ for\ --preferences-file= + #: ../../../processing/app/Preferences.java:137 !Armenian= #: ../../../processing/app/Preferences.java:138 !Asturian= +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 !Auto\ Format= @@ -142,6 +180,12 @@ Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ #: Editor.java:2136 !Bad\ file\ selected= +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +!Basque= + #: ../../../processing/app/Preferences.java:139 !Belarusian= @@ -168,6 +212,9 @@ Browse=Bladeren #: Sketch.java:1392 Sketch.java:1423 !Build\ folder\ disappeared\ or\ could\ not\ be\ written= +#: ../../../processing/app/Sketch.java:1530 +!Build\ options\ changed,\ rebuilding\ all= + #: ../../../processing/app/Preferences.java:80 !Bulgarian= @@ -180,8 +227,13 @@ Browse=Bladeren #: Editor.java:2504 !Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...= -#: ../../../processing/app/Base.java:368 -!Can't\ open\ source\ sketch\!= +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 !Canadian\ French= @@ -193,6 +245,9 @@ Cancel=Annuleren #: Sketch.java:455 !Cannot\ Rename= +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 !Carriage\ return= @@ -226,10 +281,6 @@ Close=Sluiten #: Editor.java:1208 Editor.java:2749 !Comment/Uncomment= -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -!Compiler\ error,\ please\ submit\ this\ code\ to\ {0}= - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=Sketch aan het compileren... @@ -305,9 +356,8 @@ Could\ not\ open\ the\ folder\n{0}=Kon de map niet openen\n{0} #: Preferences.java:219 !Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= -#: Preferences.java:258 -#, java-format -!Could\ not\ read\ preferences\ from\ {0}= +#: ../../../processing/app/Sketch.java:1525 +!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= #: Base.java:2482 #, java-format @@ -330,6 +380,9 @@ Could\ not\ remove\ old\ version\ of\ {0}=Kon de oude versie van {0} niet verwij #, java-format Could\ not\ replace\ {0}=Kon {0} niet vervangen +#: ../../../processing/app/Sketch.java:1579 +!Could\ not\ write\ build\ preferences\ file= + #: tools/Archiver.java:74 !Couldn't\ archive\ sketch= @@ -378,12 +431,19 @@ Don't\ Save=Niet opslaan #: Editor.java:2510 !Done\ burning\ bootloader.= +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 !Done\ compiling.= #: Editor.java:2564 !Done\ printing.= +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 !Done\ uploading.= @@ -462,6 +522,9 @@ Error\ reading\ preferences=Fout bij het lezen van de voorkeuren #: ../../../processing/app/Editor.java:2555 !Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format !Error\ while\ loading\ code\ {0}= @@ -469,10 +532,21 @@ Error\ reading\ preferences=Fout bij het lezen van de voorkeuren #: Editor.java:2567 !Error\ while\ printing.= +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 !Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 Estonian=Ests @@ -488,6 +562,10 @@ Examples=Voorbeelden #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +!Failed\ to\ open\ sketch\:\ "{0}"= + #: Editor.java:491 File=Bestand @@ -522,8 +600,9 @@ Find\:=Zoek\: #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=Voor informatie over het installeren van bibliotheken, zie\: http\://arduino.cc/en/Guide/Libraries\n -#: debug/BasicUploader.java:80 -!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ = +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=Frans @@ -627,8 +706,8 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Bibliotheek #: Preferences.java:106 Lithuaninan=Litouws -#: ../../../processing/app/Sketch.java:1660 -!Low\ memory\ available,\ stability\ problems\ may\ occur= +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 !Marathi= @@ -639,12 +718,24 @@ Message=Bericht #: ../../../processing/app/preproc/PdePreprocessor.java:412 !Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 !More\ preferences\ can\ be\ edited\ directly\ in\ the\ file= #: Editor.java:2156 !Moving= +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +!Must\ specify\ exactly\ one\ sketch\ file= + +#: ../../../processing/app/Preferences.java:158 +!N'Ko= + #: Sketch.java:282 !Name\ for\ new\ file\:= @@ -672,12 +763,18 @@ New=Nieuw #: Preferences.java:78 UpdateCheck.java:108 No=Nee +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 !No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.= #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 !No\ changes\ necessary\ for\ Auto\ Format.= +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 !No\ files\ were\ added\ to\ the\ sketch.= @@ -687,6 +784,9 @@ No=Nee #: SerialMonitor.java:112 !No\ line\ ending= +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Nee serieus, hoogste tijd voor wat frisse lucht voor jou. @@ -694,6 +794,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Nee serieus, hoogste tijd vo #, java-format !No\ reference\ available\ for\ "{0}"= +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +!No\ valid\ code\ files\ found= + #: ../../../processing/app/Base.java:309 !No\ valid\ configured\ cores\ found\!\ Exiting...= @@ -720,6 +830,9 @@ OK=OK #: Sketch.java:992 Editor.java:376 !One\ file\ added\ to\ the\ sketch.= +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=Open @@ -747,12 +860,22 @@ Paste=Plakken #: Preferences.java:109 Persian=Perzisch +#: ../../../processing/app/Preferences.java:161 +!Persian\ (Iran)= + #: debug/Compiler.java:408 !Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= +#: ../../../processing/app/debug/Compiler.java:529 +!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=Installeer JDK 1.5 of een recentere versie +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 Polish=Pools @@ -874,9 +997,15 @@ Save\ As...=Opslaan als... #: Sketch.java:825 !Save\ sketch\ folder\ as...= +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 !Saving...= +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=Kies (of maak een nieuwe) map voor sketches... @@ -901,14 +1030,6 @@ Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 !Serial\ Monitor= -#: Serial.java:174 -#, java-format -!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.= - -#: Serial.java:121 -#, java-format -!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.= - #: Serial.java:194 #, java-format !Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?= @@ -963,6 +1084,9 @@ Sketchbook\ folder\ disappeared=Sketchbook-map is verdwenen #: Preferences.java:315 Sketchbook\ location\:=Sketchbooklocatie\: +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 !Sketches\ (*.ino,\ *.pde)= @@ -997,6 +1121,9 @@ Sunshine=Zonneschijn #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=Het "BYTE" keyword wordt niet langer ondersteund. +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 !The\ Client\ class\ has\ been\ renamed\ EthernetClient.= @@ -1033,12 +1160,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 !The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.= -#: Sketch.java:2018 -!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.= +#: ../../../processing/app/Sketch.java:2028 +!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=De sketchbookmap bestaat niet meer.\nArduino zal overschakelen naar de standaardlocatie en zal zo nodig een nieuwe sketchbookmap aanmaken. Daarna zal Arduino ophouden met over zichzelf te praten in de derde persoon. +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 !This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= @@ -1142,6 +1272,10 @@ Verify=Verifi\u00eber #: Editor.java:1105 !Visit\ Arduino.cc= +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= + #: Base.java:2128 Warning=Waarschuwing @@ -1240,9 +1374,6 @@ environment=omgeving #: Editor.java:1108 !http\://arduino.cc/= -#: ../../../processing/app/debug/Compiler.java:49 -!http\://github.com/arduino/Arduino/issues= - #: UpdateCheck.java:118 !http\://www.arduino.cc/en/Main/Software= @@ -1265,13 +1396,6 @@ index.html=index.html #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -!readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}= - -#: Sketch.java:647 -!removeCode\:\ internal\ error..\ could\ not\ find\ code= - #: Editor.java:932 !serialMenu\ is\ null= @@ -1279,6 +1403,10 @@ platforms.html=platforms.html #, java-format !the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected= +#: ../../../processing/app/Base.java:389 +#, java-format +!unknown\ option\:\ {0}= + #: Preferences.java:391 !upload= @@ -1297,3 +1425,35 @@ platforms.html=platforms.html #: Editor.java:1874 #, java-format !{0}.html= + +#: ../../../processing/app/Base.java:519 +#, java-format +!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= + +#: ../../../processing/app/Base.java:476 +#, java-format +!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= + +#: ../../../processing/app/Base.java:509 +#, java-format +!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= + +#: ../../../processing/app/Base.java:507 +#, java-format +!{0}\:\ Invalid\ option\ for\ board\ "{1}"= + +#: ../../../processing/app/Base.java:502 +#, java-format +!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= + +#: ../../../processing/app/Base.java:486 +#, java-format +!{0}\:\ Unknown\ architecture= + +#: ../../../processing/app/Base.java:491 +#, java-format +!{0}\:\ Unknown\ board= + +#: ../../../processing/app/Base.java:481 +#, java-format +!{0}\:\ Unknown\ package= diff --git a/arduino-core/src/processing/app/i18n/Resources_pl.po b/arduino-core/src/processing/app/i18n/Resources_pl.po index 81391c4be..6131706e7 100644 --- a/arduino-core/src/processing/app/i18n/Resources_pl.po +++ b/arduino-core/src/processing/app/i18n/Resources_pl.po @@ -33,6 +33,12 @@ msgstr "'Myszka\" wspierana tylko na Arduino Leonardo" msgid "(edit only when Arduino is not running)" msgstr "(edytuj tylko kiedy Arduino nie pracuje)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -91,6 +97,10 @@ msgstr "Dodaj plik..." msgid "Add Library..." msgstr "Dodaj bibliotekę..." +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "Albański" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -98,6 +108,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "Napotkano błąd przy próbie naprawy pliku kodowania.\nNie próbuj zapisać szkicu ponieważ może nadpisać\nstarą wersję. Użyj Otwórz do ponownego otwarcia szkicu i spróbuj ponownie.\n" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -176,6 +200,30 @@ msgstr "Jesteś pewien że chcesz usunąc \"{0}\"?" msgid "Are you sure you want to delete this sketch?" msgstr "Jesteś pewien że chcesz usunąc ten szkic ?" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "Wymagany argument dla - płyty" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "Wymagany argument dla - curdir" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "Wymagany argument dla - portu" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "Wymagany argument dla - pref" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "Wymagany argument dla - preferences-file" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "Armeński" @@ -184,6 +232,10 @@ msgstr "Armeński" msgid "Asturian" msgstr "Asturii" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "Automatyczny format" @@ -225,6 +277,14 @@ msgstr "Błąd w lini: {0}" msgid "Bad file selected" msgstr "Wybrano zły plik" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "Baskijski" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "Białoruski" @@ -261,6 +321,10 @@ msgstr "Przeglądaj" msgid "Build folder disappeared or could not be written" msgstr "Folder budowy zniknął lub nie może być zapisany" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "Opcje projektu zmienione, przeładuj całość" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Bułgarski" @@ -277,9 +341,15 @@ msgstr "Wypal bootloader" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "Wgrywanie bootloadera do płytki I/O ( może to zając kilka minut)..." -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" -msgstr "Nie można otworzyć źródła szkicu !" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" +msgstr "" #: ../../../processing/app/Preferences.java:92 msgid "Canadian French" @@ -294,6 +364,10 @@ msgstr "Anuluj" msgid "Cannot Rename" msgstr "Nie można zmienić nazwy" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "powrót Karetki" @@ -338,11 +412,6 @@ msgstr "Zamknij" msgid "Comment/Uncomment" msgstr "Komentuj/Odkomentuj " -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "Błąd kompilatora , proszę przekazać kod do {0}" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "Kompilowanie szkicu..." @@ -450,10 +519,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Nie można odczytać domyślnych ustawień.\nMusisz przeinstalować Arduino." -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "Nie można odczytać ustawień z {0}" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "Nie można odczytać poprzednich preferencji projektu, przeładuj całość" #: Base.java:2482 #, java-format @@ -482,6 +550,10 @@ msgstr "Nie można zmienić nazwy szkicu. (2)" msgid "Could not replace {0}" msgstr "Nie można zastąpić {0}" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "Nie można zapisać pliku preferensji budowy" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Nie można zaarchiwizować szkicu" @@ -551,6 +623,11 @@ msgstr "Skończony zapis." msgid "Done burning bootloader." msgstr "Skończone wgrywanie bootloadera." +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "Koniec kompilacji." @@ -559,6 +636,10 @@ msgstr "Koniec kompilacji." msgid "Done printing." msgstr "Drukowanie skończone." +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "Skończone wgrywanie." @@ -662,6 +743,10 @@ msgstr "Błąd przy wgrywaniu bootloadera." msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "Błąd przy wgrywaniu bootloadera; brak '{0}' parametru konfiguracji" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -671,11 +756,25 @@ msgstr "Błąd przy odczycie kodu {0}" msgid "Error while printing." msgstr "Błąd wydruku." +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "Błąd przy wgrywaniu; brak '{0}' parametru konfiguracji" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "Estoński" @@ -696,6 +795,11 @@ msgstr "Eksport anulowany, zmiany muszą być najpierw zapisane." msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "Nie udało się odczytać szkicu: \"{0}\"" + #: Editor.java:491 msgid "File" msgstr "Plik" @@ -743,9 +847,10 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "Informację o instalacji bibliotek znajdziesz pod adresem http://arduino.cc/en/Guide/Libraries\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " -msgstr "Wymuszam reset używając 1200bps otwórz/zamknij na porcie" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" +msgstr "" #: Preferences.java:95 msgid "French" @@ -893,9 +998,9 @@ msgstr "Biblioteka dodana do bibliotek. Sprawdź \"Importuj biblioteki\" menu" msgid "Lithuaninan" msgstr "Litewski" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" -msgstr "Niski poziom dostępnej pamięci, mogą wystąpić problemy z stabilnością" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." +msgstr "" #: Preferences.java:107 msgid "Marathi" @@ -909,6 +1014,10 @@ msgstr "Wiadomości" msgid "Missing the */ from the end of a /* comment */" msgstr "Brak */ na końcu lini /* komentarz */" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "Więcej preferencji może być edytowanych bezpośrednio w pliku" @@ -917,6 +1026,18 @@ msgstr "Więcej preferencji może być edytowanych bezpośrednio w pliku" msgid "Moving" msgstr "Przenoszenie" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "Musisz wskazać dokładnie jeden plik szkicu" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "N'Ko" + #: Sketch.java:282 msgid "Name for new file:" msgstr "Nazwa dla nowego pliku:" @@ -953,6 +1074,10 @@ msgstr "Następna zakładka" msgid "No" msgstr "Nie" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "Brak wybranej płytki: proszę wybrać płytkę z Narzędzia > Menu Płytek." @@ -961,6 +1086,10 @@ msgstr "Brak wybranej płytki: proszę wybrać płytkę z Narzędzia > Menu Pły msgid "No changes necessary for Auto Format." msgstr "Brak zmian potrzebnych do Auto Formatu." +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "Żadne pliki nie były dodane do szkicu." @@ -973,6 +1102,10 @@ msgstr "Brak dostępnego launchera" msgid "No line ending" msgstr "Brak zakończenia lini" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "Nie, na serio , pora wyjść na świeże powietrze" @@ -982,6 +1115,19 @@ msgstr "Nie, na serio , pora wyjść na świeże powietrze" msgid "No reference available for \"{0}\"" msgstr "Brak referencji dostępnych dla \"{0}\"" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "Nie znaleziono poprawnych plików z kodem" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "Nie znaleziono skonfigurowanych rdzeni! Wychodzę..." @@ -1018,6 +1164,10 @@ msgstr "Ok" msgid "One file added to the sketch." msgstr "Jeden plik dodany do szkicu." +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "Otwórz" @@ -1054,14 +1204,27 @@ msgstr "Wklej" msgid "Persian" msgstr "Perski" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "Perski (Iran)" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "Proszę zaimportować bilbiotekę SPI z Szkic > Importuj bibliotekę" +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "Proszę zaimportować Bibliotekę Przewodów z Szkic > Zaimportu bibliotekę menu." + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "Proszę zainstalować JDK 1.5 lub nowsze" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "Polski" @@ -1224,10 +1387,18 @@ msgstr "Zapisać zmiany do \"{0}\"?" msgid "Save sketch folder as..." msgstr "Zapisz folder szkicu jako..." +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "Zapisywanie..." +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "Wybierz (lub utwórz nowy) folder dla szkiców..,." @@ -1260,20 +1431,6 @@ msgstr "Wyślij" msgid "Serial Monitor" msgstr "Szeregowy monitor" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "Port szeregowy ''{0}'' jest już w użyciu. Spróbuj wyłączyć programy które mogą go używać." - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "Port szeregowy ''{0}'' jest już w użyciu. Spróbuj wyłączyć programy które mogą go używać." - #: Serial.java:194 #, java-format msgid "" @@ -1353,6 +1510,10 @@ msgstr "Folder brudnopisu zniknął " msgid "Sketchbook location:" msgstr "Lokalizacja szkicownika:" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "Szkice (*.ino, *.pde)" @@ -1403,6 +1564,10 @@ msgstr "Tamilski" msgid "The 'BYTE' keyword is no longer supported." msgstr "Słowo kluczowe 'BYTE' nie jest dłużej wspierane." +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "Klasa Client została przemianowana na EthernetClient." @@ -1470,12 +1635,12 @@ msgid "" "but anything besides the code will be lost." msgstr "Folder szkicu znikł.\nSpróbuję zapisać ponownie w tej samej lokalizacji,,\nale wszystko oprócz kodu zniknie." -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." -msgstr "Nazwa szkicu musi być zmodyfikowana. Nazwa szkicu może zawierać jedynie\nsymbole ASCII oraz numery (ale nie może zaczynać się numerem).\nOraz powinna być krótsza niż 64 znaki." +"They should also be less than 64 characters long." +msgstr "Nazwa szkicu musiała zostać zmodyfikowana. Nazwy szkiców mogą składać się tylko\nz znaków ASCII i liczb (ale nie mogą się od liczb zaczynać)\nPowinny też być krótsze niż 64 znaki." #: Base.java:259 msgid "" @@ -1486,6 +1651,12 @@ msgid "" "himself in the third person." msgstr "Folder szkicownika nie istnieje.\nArduino przełączy się na domyślny szkicownik,\noraz utworzy nowy szkicownik jeśli potrzeba.\nPotem Arduino przestanie mówić o sobie \nw trzeciej osobie." +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1628,6 +1799,13 @@ msgstr "Wietnamski" msgid "Visit Arduino.cc" msgstr "Odwiedź Arduino.cc" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "UWAGA: biblioteka {0} działa na architekturze(/architekturach) {1} i może nie być kompatybilna z obecną płytką która działa na {2} architekturze(/architekturach) ." + #: Base.java:2128 msgid "Warning" msgstr "Ostrzeżenia" @@ -1796,10 +1974,6 @@ msgstr "środowisko" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "http://github.com/arduino/Arduino/issues" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1829,17 +2003,6 @@ msgstr "pusta nazwa" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "readBytesUntil() bufor jest za mały dla {0} bajtów wraz z znakami char {1}" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "removeCode: internal error.. nie można znaleźć kodu" - #: Editor.java:932 msgid "serialMenu is null" msgstr "szeregoweMenu jest puste" @@ -1850,6 +2013,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "wybrany port szeregowy {0} nie istnieje na twojej płycie lub jest niepodłączony" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "nieznana opcja : {0}" + #: Preferences.java:391 msgid "upload" msgstr "wgrać" @@ -1873,3 +2041,45 @@ msgstr "{0} | Arduino {1}" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "{0}: Nieznany argument do --pref, powinien być formatu \"pref=value\"" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "{0}: Niewłaściwa nazwa płytki, powinna mieć format \"package:arch:board\" lub \"package:arch:board:options\"" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "{0}: Niewłaściwa opcja dla \"{1}\" opcji płytki \"{2}\"" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "{0}: Niewłaściwa opcja dla płytki \"{1}\"" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "{0}: Niewłaściwa opcja, powinna być formatu \"name=value\"" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "{0}: Nieznana architektura" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "{0}: Nieznana płytka" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "{0}: Nieznany pakiet" diff --git a/arduino-core/src/processing/app/i18n/Resources_pl.properties b/arduino-core/src/processing/app/i18n/Resources_pl.properties index 6c7502128..1c345796c 100644 --- a/arduino-core/src/processing/app/i18n/Resources_pl.properties +++ b/arduino-core/src/processing/app/i18n/Resources_pl.properties @@ -17,6 +17,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(edytuj tylko kiedy Arduino nie pracuje) +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -53,9 +56,23 @@ Add\ File...=Dodaj plik... #: Base.java:963 Add\ Library...=Dodaj bibliotek\u0119... +#: ../../../processing/app/Preferences.java:96 +Albanian=Alba\u0144ski + #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Napotkano b\u0142\u0105d przy pr\u00f3bie naprawy pliku kodowania.\nNie pr\u00f3buj zapisa\u0107 szkicu poniewa\u017c mo\u017ce nadpisa\u0107\nstar\u0105 wersj\u0119. U\u017cyj Otw\u00f3rz do ponownego otwarcia szkicu i spr\u00f3buj ponownie.\n +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Nieznany b\u0142\u0105d wyst\u0105pi\u0142 podczas pr\u00f3by wgrania\nkodu specyficznego dla platformy twojej maszyny. @@ -105,12 +122,33 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Jeste\u015b pewien \u017ce chcesz #: Sketch.java:587 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Jeste\u015b pewien \u017ce chcesz usun\u0105c ten szkic ? +#: ../../../processing/app/Base.java:356 +Argument\ required\ for\ --board=Wymagany argument dla - p\u0142yty + +#: ../../../processing/app/Base.java:370 +Argument\ required\ for\ --curdir=Wymagany argument dla - curdir + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +Argument\ required\ for\ --port=Wymagany argument dla - portu + +#: ../../../processing/app/Base.java:377 +Argument\ required\ for\ --pref=Wymagany argument dla - pref + +#: ../../../processing/app/Base.java:384 +Argument\ required\ for\ --preferences-file=Wymagany argument dla - preferences-file + #: ../../../processing/app/Preferences.java:137 Armenian=Arme\u0144ski #: ../../../processing/app/Preferences.java:138 Asturian=Asturii +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 Auto\ Format=Automatyczny format @@ -142,6 +180,12 @@ Bad\ error\ line\:\ {0}=B\u0142\u0105d w lini\: {0} #: Editor.java:2136 Bad\ file\ selected=Wybrano z\u0142y plik +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +Basque=Baskijski + #: ../../../processing/app/Preferences.java:139 Belarusian=Bia\u0142oruski @@ -168,6 +212,9 @@ Browse=Przegl\u0105daj #: Sketch.java:1392 Sketch.java:1423 Build\ folder\ disappeared\ or\ could\ not\ be\ written=Folder budowy znikn\u0105\u0142 lub nie mo\u017ce by\u0107 zapisany +#: ../../../processing/app/Sketch.java:1530 +Build\ options\ changed,\ rebuilding\ all=Opcje projektu zmienione, prze\u0142aduj ca\u0142o\u015b\u0107 + #: ../../../processing/app/Preferences.java:80 Bulgarian=Bu\u0142garski @@ -180,8 +227,13 @@ Burn\ Bootloader=Wypal bootloader #: Editor.java:2504 Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Wgrywanie bootloadera do p\u0142ytki I/O ( mo\u017ce to zaj\u0105c kilka minut)... -#: ../../../processing/app/Base.java:368 -Can't\ open\ source\ sketch\!=Nie mo\u017cna otworzy\u0107 \u017ar\u00f3d\u0142a szkicu \! +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 Canadian\ French=Kanadyjski Francuski @@ -193,6 +245,9 @@ Cancel=Anuluj #: Sketch.java:455 Cannot\ Rename=Nie mo\u017cna zmieni\u0107 nazwy +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 Carriage\ return=powr\u00f3t Karetki @@ -226,10 +281,6 @@ Close=Zamknij #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=Komentuj/Odkomentuj -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=B\u0142\u0105d kompilatora , prosz\u0119 przekaza\u0107 kod do {0} - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=Kompilowanie szkicu... @@ -305,9 +356,8 @@ Could\ not\ re-save\ sketch=Nie mo\u017cna ponownie zapisa\u0107 szkicu #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Nie mo\u017cna odczyta\u0107 domy\u015blnych ustawie\u0144.\nMusisz przeinstalowa\u0107 Arduino. -#: Preferences.java:258 -#, java-format -Could\ not\ read\ preferences\ from\ {0}=Nie mo\u017cna odczyta\u0107 ustawie\u0144 z {0} +#: ../../../processing/app/Sketch.java:1525 +Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=Nie mo\u017cna odczyta\u0107 poprzednich preferencji projektu, prze\u0142aduj ca\u0142o\u015b\u0107 #: Base.java:2482 #, java-format @@ -330,6 +380,9 @@ Could\ not\ rename\ the\ sketch.\ (2)=Nie mo\u017cna zmieni\u0107 nazwy szkicu. #, java-format Could\ not\ replace\ {0}=Nie mo\u017cna zast\u0105pi\u0107 {0} +#: ../../../processing/app/Sketch.java:1579 +Could\ not\ write\ build\ preferences\ file=Nie mo\u017cna zapisa\u0107 pliku preferensji budowy + #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Nie mo\u017cna zaarchiwizowa\u0107 szkicu @@ -378,12 +431,19 @@ Done\ Saving.=Sko\u0144czony zapis. #: Editor.java:2510 Done\ burning\ bootloader.=Sko\u0144czone wgrywanie bootloadera. +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=Koniec kompilacji. #: Editor.java:2564 Done\ printing.=Drukowanie sko\u0144czone. +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=Sko\u0144czone wgrywanie. @@ -462,6 +522,9 @@ Error\ while\ burning\ bootloader.=B\u0142\u0105d przy wgrywaniu bootloadera. #: ../../../processing/app/Editor.java:2555 Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=B\u0142\u0105d przy wgrywaniu bootloadera; brak '{0}' parametru konfiguracji +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=B\u0142\u0105d przy odczycie kodu {0} @@ -469,10 +532,21 @@ Error\ while\ loading\ code\ {0}=B\u0142\u0105d przy odczycie kodu {0} #: Editor.java:2567 Error\ while\ printing.=B\u0142\u0105d wydruku. +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=B\u0142\u0105d przy wgrywaniu; brak '{0}' parametru konfiguracji +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 Estonian=Esto\u0144ski @@ -488,6 +562,10 @@ Export\ canceled,\ changes\ must\ first\ be\ saved.=Eksport anulowany, zmiany mu #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +Failed\ to\ open\ sketch\:\ "{0}"=Nie uda\u0142o si\u0119 odczyta\u0107 szkicu\: "{0}" + #: Editor.java:491 File=Plik @@ -522,8 +600,9 @@ Fix\ Encoding\ &\ Reload=Popraw kodowanie i Prze\u0142aduj #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=Informacj\u0119 o instalacji bibliotek znajdziesz pod adresem http\://arduino.cc/en/Guide/Libraries\n -#: debug/BasicUploader.java:80 -Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =Wymuszam reset u\u017cywaj\u0105c 1200bps otw\u00f3rz/zamknij na porcie +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=Francuski @@ -627,8 +706,8 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Biblioteka #: Preferences.java:106 Lithuaninan=Litewski -#: ../../../processing/app/Sketch.java:1660 -Low\ memory\ available,\ stability\ problems\ may\ occur=Niski poziom dost\u0119pnej pami\u0119ci, mog\u0105 wyst\u0105pi\u0107 problemy z stabilno\u015bci\u0105 +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 Marathi=Marathi @@ -639,12 +718,24 @@ Message=Wiadomo\u015bci #: ../../../processing/app/preproc/PdePreprocessor.java:412 Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Brak */ na ko\u0144cu lini /* komentarz */ +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Wi\u0119cej preferencji mo\u017ce by\u0107 edytowanych bezpo\u015brednio w pliku #: Editor.java:2156 Moving=Przenoszenie +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +Must\ specify\ exactly\ one\ sketch\ file=Musisz wskaza\u0107 dok\u0142adnie jeden plik szkicu + +#: ../../../processing/app/Preferences.java:158 +N'Ko=N'Ko + #: Sketch.java:282 Name\ for\ new\ file\:=Nazwa dla nowego pliku\: @@ -672,12 +763,18 @@ Next\ Tab=Nast\u0119pna zak\u0142adka #: Preferences.java:78 UpdateCheck.java:108 No=Nie +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Brak wybranej p\u0142ytki\: prosz\u0119 wybra\u0107 p\u0142ytk\u0119 z Narz\u0119dzia > Menu P\u0142ytek. #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Brak zmian potrzebnych do Auto Formatu. +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=\u017badne pliki nie by\u0142y dodane do szkicu. @@ -687,6 +784,9 @@ No\ launcher\ available=Brak dost\u0119pnego launchera #: SerialMonitor.java:112 No\ line\ ending=Brak zako\u0144czenia lini +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Nie, na serio , pora wyj\u015b\u0107 na \u015bwie\u017ce powietrze @@ -694,6 +794,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Nie, na serio , pora wyj\u01 #, java-format No\ reference\ available\ for\ "{0}"=Brak referencji dost\u0119pnych dla "{0}" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +No\ valid\ code\ files\ found=Nie znaleziono poprawnych plik\u00f3w z kodem + #: ../../../processing/app/Base.java:309 No\ valid\ configured\ cores\ found\!\ Exiting...=Nie znaleziono skonfigurowanych rdzeni\! Wychodz\u0119... @@ -720,6 +830,9 @@ OK=Ok #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=Jeden plik dodany do szkicu. +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=Otw\u00f3rz @@ -747,12 +860,22 @@ Paste=Wklej #: Preferences.java:109 Persian=Perski +#: ../../../processing/app/Preferences.java:161 +Persian\ (Iran)=Perski (Iran) + #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Prosz\u0119 zaimportowa\u0107 bilbiotek\u0119 SPI z Szkic > Importuj bibliotek\u0119 +#: ../../../processing/app/debug/Compiler.java:529 +Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Prosz\u0119 zaimportowa\u0107 Bibliotek\u0119 Przewod\u00f3w z Szkic > Zaimportu bibliotek\u0119 menu. + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=Prosz\u0119 zainstalowa\u0107 JDK 1.5 lub nowsze +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 Polish=Polski @@ -874,9 +997,15 @@ Save\ changes\ to\ "{0}"?\ \ =Zapisa\u0107 zmiany do "{0}"? #: Sketch.java:825 Save\ sketch\ folder\ as...=Zapisz folder szkicu jako... +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=Zapisywanie... +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=Wybierz (lub utw\u00f3rz nowy) folder dla szkic\u00f3w..,. @@ -901,14 +1030,6 @@ Send=Wy\u015blij #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=Szeregowy monitor -#: Serial.java:174 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Port szeregowy ''{0}'' jest ju\u017c w u\u017cyciu. Spr\u00f3buj wy\u0142\u0105czy\u0107 programy kt\u00f3re mog\u0105 go u\u017cywa\u0107. - -#: Serial.java:121 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=Port szeregowy ''{0}'' jest ju\u017c w u\u017cyciu. Spr\u00f3buj wy\u0142\u0105czy\u0107 programy kt\u00f3re mog\u0105 go u\u017cywa\u0107. - #: Serial.java:194 #, java-format Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Port szeregowy ''{0}'' nie znaleziony . Czy wybra\u0142e\u015b poprawny z Narz\u0119dzia > Port Szeregowy? @@ -963,6 +1084,9 @@ Sketchbook\ folder\ disappeared=Folder brudnopisu znikn\u0105\u0142 #: Preferences.java:315 Sketchbook\ location\:=Lokalizacja szkicownika\: +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 Sketches\ (*.ino,\ *.pde)=Szkice (*.ino, *.pde) @@ -997,6 +1121,9 @@ Tamil=Tamilski #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=S\u0142owo kluczowe 'BYTE' nie jest d\u0142u\u017cej wspierane. +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Klasa Client zosta\u0142a przemianowana na EthernetClient. @@ -1033,12 +1160,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Folder szkicu znik\u0142.\nSpr\u00f3buj\u0119 zapisa\u0107 ponownie w tej samej lokalizacji,,\nale wszystko opr\u00f3cz kodu zniknie. -#: Sketch.java:2018 -The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=Nazwa szkicu musi by\u0107 zmodyfikowana. Nazwa szkicu mo\u017ce zawiera\u0107 jedynie\nsymbole ASCII oraz numery (ale nie mo\u017ce zaczyna\u0107 si\u0119 numerem).\nOraz powinna by\u0107 kr\u00f3tsza ni\u017c 64 znaki. +#: ../../../processing/app/Sketch.java:2028 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.=Nazwa szkicu musia\u0142a zosta\u0107 zmodyfikowana. Nazwy szkic\u00f3w mog\u0105 sk\u0142ada\u0107 si\u0119 tylko\nz znak\u00f3w ASCII i liczb (ale nie mog\u0105 si\u0119 od liczb zaczyna\u0107)\nPowinny te\u017c by\u0107 kr\u00f3tsze ni\u017c 64 znaki. #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Folder szkicownika nie istnieje.\nArduino prze\u0142\u0105czy si\u0119 na domy\u015blny szkicownik,\noraz utworzy nowy szkicownik je\u015bli potrzeba.\nPotem Arduino przestanie m\u00f3wi\u0107 o sobie \nw trzeciej osobie. +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Ten plik zosta\u0142 ju\u017c skopiowany do \nlokalizacji z kt\u00f3rej pr\u00f3bowa\u0142e\u015b go doda\u0107.\nTo nic nie zmieni. @@ -1142,6 +1272,10 @@ Vietnamese=Wietnamski #: Editor.java:1105 Visit\ Arduino.cc=Odwied\u017a Arduino.cc +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=UWAGA\: biblioteka {0} dzia\u0142a na architekturze(/architekturach) {1} i mo\u017ce nie by\u0107 kompatybilna z obecn\u0105 p\u0142ytk\u0105 kt\u00f3ra dzia\u0142a na {2} architekturze(/architekturach) . + #: Base.java:2128 Warning=Ostrze\u017cenia @@ -1240,9 +1374,6 @@ environment=\u015brodowisko #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1265,13 +1396,6 @@ name\ is\ null=pusta nazwa #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() bufor jest za ma\u0142y dla {0} bajt\u00f3w wraz z znakami char {1} - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: internal error.. nie mo\u017cna znale\u017a\u0107 kodu - #: Editor.java:932 serialMenu\ is\ null=szeregoweMenu jest puste @@ -1279,6 +1403,10 @@ serialMenu\ is\ null=szeregoweMenu jest puste #, java-format the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=wybrany port szeregowy {0} nie istnieje na twojej p\u0142ycie lub jest niepod\u0142\u0105czony +#: ../../../processing/app/Base.java:389 +#, java-format +unknown\ option\:\ {0}=nieznana opcja \: {0} + #: Preferences.java:391 upload=wgra\u0107 @@ -1297,3 +1425,35 @@ upload=wgra\u0107 #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"={0}\: Nieznany argument do --pref, powinien by\u0107 formatu "pref\=value" + +#: ../../../processing/app/Base.java:476 +#, java-format +{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"={0}\: Niew\u0142a\u015bciwa nazwa p\u0142ytki, powinna mie\u0107 format "package\:arch\:board" lub "package\:arch\:board\:options" + +#: ../../../processing/app/Base.java:509 +#, java-format +{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"={0}\: Niew\u0142a\u015bciwa opcja dla "{1}" opcji p\u0142ytki "{2}" + +#: ../../../processing/app/Base.java:507 +#, java-format +{0}\:\ Invalid\ option\ for\ board\ "{1}"={0}\: Niew\u0142a\u015bciwa opcja dla p\u0142ytki "{1}" + +#: ../../../processing/app/Base.java:502 +#, java-format +{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"={0}\: Niew\u0142a\u015bciwa opcja, powinna by\u0107 formatu "name\=value" + +#: ../../../processing/app/Base.java:486 +#, java-format +{0}\:\ Unknown\ architecture={0}\: Nieznana architektura + +#: ../../../processing/app/Base.java:491 +#, java-format +{0}\:\ Unknown\ board={0}\: Nieznana p\u0142ytka + +#: ../../../processing/app/Base.java:481 +#, java-format +{0}\:\ Unknown\ package={0}\: Nieznany pakiet diff --git a/arduino-core/src/processing/app/i18n/Resources_pt.po b/arduino-core/src/processing/app/i18n/Resources_pt.po index a19175e86..221236431 100644 --- a/arduino-core/src/processing/app/i18n/Resources_pt.po +++ b/arduino-core/src/processing/app/i18n/Resources_pt.po @@ -33,6 +33,12 @@ msgstr "" msgid "(edit only when Arduino is not running)" msgstr "" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr "" @@ -91,6 +97,10 @@ msgstr "" msgid "Add Library..." msgstr "" +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -98,6 +108,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -176,6 +200,30 @@ msgstr "" msgid "Are you sure you want to delete this sketch?" msgstr "" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "" @@ -184,6 +232,10 @@ msgstr "" msgid "Asturian" msgstr "" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "" @@ -225,6 +277,14 @@ msgstr "" msgid "Bad file selected" msgstr "" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "" @@ -261,6 +321,10 @@ msgstr "" msgid "Build folder disappeared or could not be written" msgstr "" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "" @@ -277,8 +341,14 @@ msgstr "" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "" -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" msgstr "" #: ../../../processing/app/Preferences.java:92 @@ -294,6 +364,10 @@ msgstr "" msgid "Cannot Rename" msgstr "" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "" @@ -338,11 +412,6 @@ msgstr "" msgid "Comment/Uncomment" msgstr "" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "" @@ -450,9 +519,8 @@ msgid "" "You'll need to reinstall Arduino." msgstr "" -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" msgstr "" #: Base.java:2482 @@ -482,6 +550,10 @@ msgstr "" msgid "Could not replace {0}" msgstr "" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "" @@ -551,6 +623,11 @@ msgstr "" msgid "Done burning bootloader." msgstr "" +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "" @@ -559,6 +636,10 @@ msgstr "" msgid "Done printing." msgstr "" +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "" @@ -662,6 +743,10 @@ msgstr "" msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -671,11 +756,25 @@ msgstr "" msgid "Error while printing." msgstr "" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "" @@ -696,6 +795,11 @@ msgstr "" msgid "FAQ.html" msgstr "" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "" + #: Editor.java:491 msgid "File" msgstr "" @@ -743,8 +847,9 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" msgstr "" #: Preferences.java:95 @@ -893,8 +998,8 @@ msgstr "" msgid "Lithuaninan" msgstr "" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: Preferences.java:107 @@ -909,6 +1014,10 @@ msgstr "" msgid "Missing the */ from the end of a /* comment */" msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "" @@ -917,6 +1026,18 @@ msgstr "" msgid "Moving" msgstr "" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "" + #: Sketch.java:282 msgid "Name for new file:" msgstr "" @@ -953,6 +1074,10 @@ msgstr "" msgid "No" msgstr "" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "" @@ -961,6 +1086,10 @@ msgstr "" msgid "No changes necessary for Auto Format." msgstr "" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "" @@ -973,6 +1102,10 @@ msgstr "" msgid "No line ending" msgstr "" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "" @@ -982,6 +1115,19 @@ msgstr "" msgid "No reference available for \"{0}\"" msgstr "" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "" @@ -1018,6 +1164,10 @@ msgstr "" msgid "One file added to the sketch." msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "" @@ -1054,14 +1204,27 @@ msgstr "" msgid "Persian" msgstr "" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "" +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "" + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "" @@ -1224,10 +1387,18 @@ msgstr "" msgid "Save sketch folder as..." msgstr "" +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "" +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "" @@ -1260,20 +1431,6 @@ msgstr "" msgid "Serial Monitor" msgstr "" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "" - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "" - #: Serial.java:194 #, java-format msgid "" @@ -1353,6 +1510,10 @@ msgstr "" msgid "Sketchbook location:" msgstr "" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "" @@ -1403,6 +1564,10 @@ msgstr "" msgid "The 'BYTE' keyword is no longer supported." msgstr "" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "" @@ -1470,11 +1635,11 @@ msgid "" "but anything besides the code will be lost." msgstr "" -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." +"They should also be less than 64 characters long." msgstr "" #: Base.java:259 @@ -1486,6 +1651,12 @@ msgid "" "himself in the third person." msgstr "" +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1628,6 +1799,13 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "" + #: Base.java:2128 msgid "Warning" msgstr "" @@ -1796,10 +1974,6 @@ msgstr "" msgid "http://arduino.cc/" msgstr "" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "" @@ -1829,17 +2003,6 @@ msgstr "" msgid "platforms.html" msgstr "" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "" - #: Editor.java:932 msgid "serialMenu is null" msgstr "" @@ -1850,6 +2013,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "" + #: Preferences.java:391 msgid "upload" msgstr "" @@ -1873,3 +2041,45 @@ msgstr "" #, java-format msgid "{0}.html" msgstr "" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "" diff --git a/arduino-core/src/processing/app/i18n/Resources_pt.properties b/arduino-core/src/processing/app/i18n/Resources_pt.properties index e22e62bd7..f642e58a5 100644 --- a/arduino-core/src/processing/app/i18n/Resources_pt.properties +++ b/arduino-core/src/processing/app/i18n/Resources_pt.properties @@ -17,6 +17,9 @@ #: Preferences.java:478 !(edit\ only\ when\ Arduino\ is\ not\ running)= +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 !.pde\ ->\ .ino= @@ -53,9 +56,23 @@ #: Base.java:963 !Add\ Library...= +#: ../../../processing/app/Preferences.java:96 +!Albanian= + #: tools/FixEncoding.java:77 !An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n= +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 !An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.= @@ -105,12 +122,33 @@ #: Sketch.java:587 !Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?= +#: ../../../processing/app/Base.java:356 +!Argument\ required\ for\ --board= + +#: ../../../processing/app/Base.java:370 +!Argument\ required\ for\ --curdir= + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +!Argument\ required\ for\ --port= + +#: ../../../processing/app/Base.java:377 +!Argument\ required\ for\ --pref= + +#: ../../../processing/app/Base.java:384 +!Argument\ required\ for\ --preferences-file= + #: ../../../processing/app/Preferences.java:137 !Armenian= #: ../../../processing/app/Preferences.java:138 !Asturian= +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 !Auto\ Format= @@ -142,6 +180,12 @@ #: Editor.java:2136 !Bad\ file\ selected= +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +!Basque= + #: ../../../processing/app/Preferences.java:139 !Belarusian= @@ -168,6 +212,9 @@ #: Sketch.java:1392 Sketch.java:1423 !Build\ folder\ disappeared\ or\ could\ not\ be\ written= +#: ../../../processing/app/Sketch.java:1530 +!Build\ options\ changed,\ rebuilding\ all= + #: ../../../processing/app/Preferences.java:80 !Bulgarian= @@ -180,8 +227,13 @@ #: Editor.java:2504 !Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...= -#: ../../../processing/app/Base.java:368 -!Can't\ open\ source\ sketch\!= +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 !Canadian\ French= @@ -193,6 +245,9 @@ #: Sketch.java:455 !Cannot\ Rename= +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 !Carriage\ return= @@ -226,10 +281,6 @@ #: Editor.java:1208 Editor.java:2749 !Comment/Uncomment= -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -!Compiler\ error,\ please\ submit\ this\ code\ to\ {0}= - #: Sketch.java:1608 Editor.java:1890 !Compiling\ sketch...= @@ -305,9 +356,8 @@ #: Preferences.java:219 !Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= -#: Preferences.java:258 -#, java-format -!Could\ not\ read\ preferences\ from\ {0}= +#: ../../../processing/app/Sketch.java:1525 +!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= #: Base.java:2482 #, java-format @@ -330,6 +380,9 @@ #, java-format !Could\ not\ replace\ {0}= +#: ../../../processing/app/Sketch.java:1579 +!Could\ not\ write\ build\ preferences\ file= + #: tools/Archiver.java:74 !Couldn't\ archive\ sketch= @@ -378,12 +431,19 @@ #: Editor.java:2510 !Done\ burning\ bootloader.= +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 !Done\ compiling.= #: Editor.java:2564 !Done\ printing.= +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 !Done\ uploading.= @@ -462,6 +522,9 @@ #: ../../../processing/app/Editor.java:2555 !Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format !Error\ while\ loading\ code\ {0}= @@ -469,10 +532,21 @@ #: Editor.java:2567 !Error\ while\ printing.= +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 !Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 !Estonian= @@ -488,6 +562,10 @@ #: Base.java:2100 !FAQ.html= +#: ../../../processing/app/Base.java:416 +#, java-format +!Failed\ to\ open\ sketch\:\ "{0}"= + #: Editor.java:491 !File= @@ -522,8 +600,9 @@ #: Base.java:1851 !For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n= -#: debug/BasicUploader.java:80 -!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ = +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 !French= @@ -627,8 +706,8 @@ #: Preferences.java:106 !Lithuaninan= -#: ../../../processing/app/Sketch.java:1660 -!Low\ memory\ available,\ stability\ problems\ may\ occur= +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 !Marathi= @@ -639,12 +718,24 @@ #: ../../../processing/app/preproc/PdePreprocessor.java:412 !Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 !More\ preferences\ can\ be\ edited\ directly\ in\ the\ file= #: Editor.java:2156 !Moving= +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +!Must\ specify\ exactly\ one\ sketch\ file= + +#: ../../../processing/app/Preferences.java:158 +!N'Ko= + #: Sketch.java:282 !Name\ for\ new\ file\:= @@ -672,12 +763,18 @@ #: Preferences.java:78 UpdateCheck.java:108 !No= +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 !No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.= #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 !No\ changes\ necessary\ for\ Auto\ Format.= +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 !No\ files\ were\ added\ to\ the\ sketch.= @@ -687,6 +784,9 @@ #: SerialMonitor.java:112 !No\ line\ ending= +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 !No\ really,\ time\ for\ some\ fresh\ air\ for\ you.= @@ -694,6 +794,16 @@ #, java-format !No\ reference\ available\ for\ "{0}"= +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +!No\ valid\ code\ files\ found= + #: ../../../processing/app/Base.java:309 !No\ valid\ configured\ cores\ found\!\ Exiting...= @@ -720,6 +830,9 @@ #: Sketch.java:992 Editor.java:376 !One\ file\ added\ to\ the\ sketch.= +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 !Open= @@ -747,12 +860,22 @@ #: Preferences.java:109 !Persian= +#: ../../../processing/app/Preferences.java:161 +!Persian\ (Iran)= + #: debug/Compiler.java:408 !Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= +#: ../../../processing/app/debug/Compiler.java:529 +!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= + #: Base.java:239 !Please\ install\ JDK\ 1.5\ or\ later= +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 !Polish= @@ -874,9 +997,15 @@ #: Sketch.java:825 !Save\ sketch\ folder\ as...= +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 !Saving...= +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 !Select\ (or\ create\ new)\ folder\ for\ sketches...= @@ -901,14 +1030,6 @@ #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 !Serial\ Monitor= -#: Serial.java:174 -#, java-format -!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.= - -#: Serial.java:121 -#, java-format -!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.= - #: Serial.java:194 #, java-format !Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?= @@ -963,6 +1084,9 @@ #: Preferences.java:315 !Sketchbook\ location\:= +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 !Sketches\ (*.ino,\ *.pde)= @@ -997,6 +1121,9 @@ #: debug/Compiler.java:414 !The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.= +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 !The\ Client\ class\ has\ been\ renamed\ EthernetClient.= @@ -1033,12 +1160,15 @@ #: Sketch.java:1755 !The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.= -#: Sketch.java:2018 -!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.= +#: ../../../processing/app/Sketch.java:2028 +!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= #: Base.java:259 !The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.= +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 !This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= @@ -1142,6 +1272,10 @@ #: Editor.java:1105 !Visit\ Arduino.cc= +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= + #: Base.java:2128 !Warning= @@ -1240,9 +1374,6 @@ #: Editor.java:1108 !http\://arduino.cc/= -#: ../../../processing/app/debug/Compiler.java:49 -!http\://github.com/arduino/Arduino/issues= - #: UpdateCheck.java:118 !http\://www.arduino.cc/en/Main/Software= @@ -1265,13 +1396,6 @@ #: Base.java:2090 !platforms.html= -#: Serial.java:451 -#, java-format -!readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}= - -#: Sketch.java:647 -!removeCode\:\ internal\ error..\ could\ not\ find\ code= - #: Editor.java:932 !serialMenu\ is\ null= @@ -1279,6 +1403,10 @@ #, java-format !the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected= +#: ../../../processing/app/Base.java:389 +#, java-format +!unknown\ option\:\ {0}= + #: Preferences.java:391 !upload= @@ -1297,3 +1425,35 @@ #: Editor.java:1874 #, java-format !{0}.html= + +#: ../../../processing/app/Base.java:519 +#, java-format +!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= + +#: ../../../processing/app/Base.java:476 +#, java-format +!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= + +#: ../../../processing/app/Base.java:509 +#, java-format +!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= + +#: ../../../processing/app/Base.java:507 +#, java-format +!{0}\:\ Invalid\ option\ for\ board\ "{1}"= + +#: ../../../processing/app/Base.java:502 +#, java-format +!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= + +#: ../../../processing/app/Base.java:486 +#, java-format +!{0}\:\ Unknown\ architecture= + +#: ../../../processing/app/Base.java:491 +#, java-format +!{0}\:\ Unknown\ board= + +#: ../../../processing/app/Base.java:481 +#, java-format +!{0}\:\ Unknown\ package= diff --git a/arduino-core/src/processing/app/i18n/Resources_pt_BR.po b/arduino-core/src/processing/app/i18n/Resources_pt_BR.po index 69da36c83..1f11a0156 100644 --- a/arduino-core/src/processing/app/i18n/Resources_pt_BR.po +++ b/arduino-core/src/processing/app/i18n/Resources_pt_BR.po @@ -39,6 +39,12 @@ msgstr "'Mouse' suportado apenas no Arduino Leonardo" msgid "(edit only when Arduino is not running)" msgstr "(editar apenas quando o Arduino não estiver rodando)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -97,6 +103,10 @@ msgstr "Adicionar Arquivo..." msgid "Add Library..." msgstr "Adicionar Biblioteca..." +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "Albanês" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -104,6 +114,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "Um erro ocorreu ao tentar corrigir a codificação do arquivo.\nNão tente salvar este sketch pois ele pode ser sobrescrever a\nversão antiga. Use Abrir para reabrir o sketch e tente novamente.\n" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -182,6 +206,30 @@ msgstr "Tem certeza que quer excluir \"{0}\"?" msgid "Are you sure you want to delete this sketch?" msgstr "Tem certeza que quer excluir este sketch?" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "Argumento requerido para --board" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "Argumento requerido para --curdir" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "Argumento requerido para --port" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "Argumento requerido para --pref" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "Argumento requerido para --preferences-file" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "Armênio" @@ -190,6 +238,10 @@ msgstr "Armênio" msgid "Asturian" msgstr "Asturiano" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "Autoformatação" @@ -231,6 +283,14 @@ msgstr "Erro na linha: {0}" msgid "Bad file selected" msgstr "Arquivo inválido selecionado" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "Basco" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "Bielorrusso" @@ -267,6 +327,10 @@ msgstr "Navegador" msgid "Build folder disappeared or could not be written" msgstr "A pasta de compilação desapareceu ou não pode ser escrita" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "Opções de compilação alteradas, recompilando tudo" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Búlgaro" @@ -283,9 +347,15 @@ msgstr "Gravar Bootloader" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "Gravando o bootloader na placa de E/S (isso pode demorar um tempinho)..." -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" -msgstr "Não é possível abrir o fonte do sketch!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" +msgstr "" #: ../../../processing/app/Preferences.java:92 msgid "Canadian French" @@ -300,6 +370,10 @@ msgstr "Cancelar" msgid "Cannot Rename" msgstr "Não é possível renomear" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "Retorno de carro" @@ -344,11 +418,6 @@ msgstr "Fechar" msgid "Comment/Uncomment" msgstr "Comentar/descomentar" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "Erro do compilador. Por favor, envie este código para {0}" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "Compilando sketch..." @@ -456,10 +525,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Não foi possível ler as configurações padrão.\nVocê terá que reinstalar o Arduino." -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "Não foi possível ler as preferências de {0}" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "Não foi possível ler o arquivo de preferências de compilação, recompilando tudo" #: Base.java:2482 #, java-format @@ -488,6 +556,10 @@ msgstr "Não foi possível renomear o sketch. (2)" msgid "Could not replace {0}" msgstr "Não foi possível substituir {0}" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "Não foi possível escrever o arquivo de preferências de build" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Não foi possível arquivar sketch" @@ -557,6 +629,11 @@ msgstr "Salvo." msgid "Done burning bootloader." msgstr "Gravação do bootloader concluída." +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "Compilação terminada." @@ -565,6 +642,10 @@ msgstr "Compilação terminada." msgid "Done printing." msgstr "Impressão terminada." +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "Carregado." @@ -668,6 +749,10 @@ msgstr "Erro ao gravar o bootloader." msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "Erro ao gravar bootloader: faltando o parâmetro de configuração '{0}'" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -677,11 +762,25 @@ msgstr "Erro durante o carregamento do código {0}" msgid "Error while printing." msgstr "Erro durante impressão." +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "Erro ao carregar: faltando o parâmetro de configuração '{0}'" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "Estoniano" @@ -702,6 +801,11 @@ msgstr "Exportação cancelada, alterações devem ser salvas antes." msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "Falha ao abrir o rascunho: \"{0}\"" + #: Editor.java:491 msgid "File" msgstr "Arquivo" @@ -749,9 +853,10 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "Para informações sobre como instalar Bibliotecas, veja: http://arduino.cc/en/Guide/Libraries\\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " -msgstr "Forçando reset usando 1200bps na porta open/close" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" +msgstr "" #: Preferences.java:95 msgid "French" @@ -899,9 +1004,9 @@ msgstr "Biblioteca adicionada. Veja o menu \"Importar biblioteca\"" msgid "Lithuaninan" msgstr "Lituano" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" -msgstr "Pouca memória disponível, problemas de estabilidade podem ocorrer" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." +msgstr "" #: Preferences.java:107 msgid "Marathi" @@ -915,6 +1020,10 @@ msgstr "Mensagem" msgid "Missing the */ from the end of a /* comment */" msgstr "Falta o */ do final de um /* comentário */" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "Mais preferências podem ser editadas diretamente no arquivo" @@ -923,6 +1032,18 @@ msgstr "Mais preferências podem ser editadas diretamente no arquivo" msgid "Moving" msgstr "Movendo" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "É preciso especificar exatamente um arquivo de rascunho" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "N'Ko" + #: Sketch.java:282 msgid "Name for new file:" msgstr "Nome para o novo arquivo:" @@ -959,6 +1080,10 @@ msgstr "Próxima Aba" msgid "No" msgstr "Não" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "Nenhuma placa selecionada. Por favor, escolha uma placa no menu Ferramentas > Placa" @@ -967,6 +1092,10 @@ msgstr "Nenhuma placa selecionada. Por favor, escolha uma placa no menu Ferramen msgid "No changes necessary for Auto Format." msgstr "Nenhuma alteração necessária para Autoformatação" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "Nenhum arquivo foi adicionado ao sketch." @@ -979,6 +1108,10 @@ msgstr "Nenhum lançador disponível." msgid "No line ending" msgstr "Nenhum final-de-linha" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "Sério, você precisa de ar fresco." @@ -988,6 +1121,19 @@ msgstr "Sério, você precisa de ar fresco." msgid "No reference available for \"{0}\"" msgstr "Sem referência disponível para \"{0}\"" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "Não foram encontrados arquivos de código válidos" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "Não encontrado nenhum núcleo válido configurado. Saindo..." @@ -1024,6 +1170,10 @@ msgstr "OK" msgid "One file added to the sketch." msgstr "Um arquivo adicionado ao sketch." +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "Abrir" @@ -1060,14 +1210,27 @@ msgstr "Colar" msgid "Persian" msgstr "Persa" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "Persa (Irã)" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "Favor importar a biblioteca SPI a partir do menu Sketch > Importar biblioteca." +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "Favor importar a biblioteca Wire a partir do menu Sketch > Importar biblioteca." + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "Por favor, instale o JDK 1.5 ou superior." +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "Polonês" @@ -1230,10 +1393,18 @@ msgstr "Salvar alterações em \"{0}\"?" msgid "Save sketch folder as..." msgstr "Salvar a pasta de sketches como..." +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "Salvando..." +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "Selecione (ou crie uma nova) pasta para as sketches..." @@ -1266,20 +1437,6 @@ msgstr "Enviar" msgid "Serial Monitor" msgstr "Monitor serial" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "Porta Serial \"{0}\" já está sendo usada. Feche qualquer programa que talvez a esteja ocupando." - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "Porta Serial \"{0}\" já está sendo usada. Feche qualquer programa que talvez a esteja ocupando." - #: Serial.java:194 #, java-format msgid "" @@ -1359,6 +1516,10 @@ msgstr "A pasta de sketchbooks desapareceu" msgid "Sketchbook location:" msgstr "Local do Sketchbook:" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "Sketches (*.ino, *.pde)" @@ -1409,6 +1570,10 @@ msgstr "Tâmil" msgid "The 'BYTE' keyword is no longer supported." msgstr "A palavra-chave 'BYTE\" não é mais suportada." +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "A classe Cliente foi renomeada para EthernetClient." @@ -1476,12 +1641,12 @@ msgid "" "but anything besides the code will be lost." msgstr "A pasta do sketch desapareceu.\nTentarei salvar novamente no mesmo local,\nmas qualquer coisa além do código será perdida." -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." -msgstr "O nome do sketch teve que ser modificado. Nomes de sketch podem ser formados apenas de caracteres ASCII e números (mas não podem começar com números) e devem conter menos de 64 caracteres." +"They should also be less than 64 characters long." +msgstr "O nome do sketch teve de ser modificado. Nomes de sketch podem conter apenas\ncaracteres ASCII e números (mas não podem começar com um número).\nEles devem também ter menos de 64 caracteres de tamanho." #: Base.java:259 msgid "" @@ -1492,6 +1657,12 @@ msgid "" "himself in the third person." msgstr "A pasta do sketchbook não existe mais.\nO Arduino irá alternar para o local padrão\ndo sketchbook e criar uma nova pasta de\nsketchbook, se necessário. E então, o\nArduino irá parar de falar sobre si mesmo\nna terceira pessoa." +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1634,6 +1805,13 @@ msgstr "Vietnamita" msgid "Visit Arduino.cc" msgstr "Visite Arduino.cc" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "AVISO: a biblioteca {0} alega rodar em arquitetura(s) {1} e pode ser incompatível com sua placa atual, que roda em arquitetura(s) {2}." + #: Base.java:2128 msgid "Warning" msgstr "Aviso" @@ -1802,10 +1980,6 @@ msgstr "ambiente" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "http://github.com/arduino/Arduino/issues" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1835,17 +2009,6 @@ msgstr "nome é nulo" msgid "platforms.html" msgstr "plataformas.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "O buffer de byte de readBytesUntil() é muito pequeno para até {0} bytes, incluindo o caractere {1}" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "removeCode: erro interno.. não foi possível encontrar o código" - #: Editor.java:932 msgid "serialMenu is null" msgstr "serialMenu é nulo" @@ -1856,6 +2019,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "a porta serial {0} selecionada não existe ou sua placa não está conectada" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "opção não identificada: {0}" + #: Preferences.java:391 msgid "upload" msgstr "carregar" @@ -1879,3 +2047,45 @@ msgstr "{0} | Arduino {1}" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "{0}: Argumento inválido para --pref, deve estar na forma \"pref=value\"" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "{0}: Nome inválido de placa, deveria ser na forma \"pacote:arqu:placa\" ou \"pacote:arqu:placa:opções\"" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "{0}: Opção inválida para a opção \"{1}\" para a placa \"{2}\"" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "{0}: Opção inválida para a placa \"{1}\"" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "{0}: Opção iválida, deve estar na forma \"nome=valor\"" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "{0}: Arquitetura não identificada" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "{0}: placa não identificada" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "{0}: Pacote não identificado" diff --git a/arduino-core/src/processing/app/i18n/Resources_pt_BR.properties b/arduino-core/src/processing/app/i18n/Resources_pt_BR.properties index 2f6103d55..a1aed0c22 100644 --- a/arduino-core/src/processing/app/i18n/Resources_pt_BR.properties +++ b/arduino-core/src/processing/app/i18n/Resources_pt_BR.properties @@ -22,6 +22,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(editar apenas quando o Arduino n\u00e3o estiver rodando) +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -58,9 +61,23 @@ Add\ File...=Adicionar Arquivo... #: Base.java:963 Add\ Library...=Adicionar Biblioteca... +#: ../../../processing/app/Preferences.java:96 +Albanian=Alban\u00eas + #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Um erro ocorreu ao tentar corrigir a codifica\u00e7\u00e3o do arquivo.\nN\u00e3o tente salvar este sketch pois ele pode ser sobrescrever a\nvers\u00e3o antiga. Use Abrir para reabrir o sketch e tente novamente.\n +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Ocorreu um erro desconhecido ao tenta carregar\nc\u00f3digo espec\u00edfico da plataforma para sua m\u00e1quina. @@ -110,12 +127,33 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Tem certeza que quer excluir "{0}" #: Sketch.java:587 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Tem certeza que quer excluir este sketch? +#: ../../../processing/app/Base.java:356 +Argument\ required\ for\ --board=Argumento requerido para --board + +#: ../../../processing/app/Base.java:370 +Argument\ required\ for\ --curdir=Argumento requerido para --curdir + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +Argument\ required\ for\ --port=Argumento requerido para --port + +#: ../../../processing/app/Base.java:377 +Argument\ required\ for\ --pref=Argumento requerido para --pref + +#: ../../../processing/app/Base.java:384 +Argument\ required\ for\ --preferences-file=Argumento requerido para --preferences-file + #: ../../../processing/app/Preferences.java:137 Armenian=Arm\u00eanio #: ../../../processing/app/Preferences.java:138 Asturian=Asturiano +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 Auto\ Format=Autoformata\u00e7\u00e3o @@ -147,6 +185,12 @@ Bad\ error\ line\:\ {0}=Erro na linha\: {0} #: Editor.java:2136 Bad\ file\ selected=Arquivo inv\u00e1lido selecionado +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +Basque=Basco + #: ../../../processing/app/Preferences.java:139 Belarusian=Bielorrusso @@ -173,6 +217,9 @@ Browse=Navegador #: Sketch.java:1392 Sketch.java:1423 Build\ folder\ disappeared\ or\ could\ not\ be\ written=A pasta de compila\u00e7\u00e3o desapareceu ou n\u00e3o pode ser escrita +#: ../../../processing/app/Sketch.java:1530 +Build\ options\ changed,\ rebuilding\ all=Op\u00e7\u00f5es de compila\u00e7\u00e3o alteradas, recompilando tudo + #: ../../../processing/app/Preferences.java:80 Bulgarian=B\u00falgaro @@ -185,8 +232,13 @@ Burn\ Bootloader=Gravar Bootloader #: Editor.java:2504 Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Gravando o bootloader na placa de E/S (isso pode demorar um tempinho)... -#: ../../../processing/app/Base.java:368 -Can't\ open\ source\ sketch\!=N\u00e3o \u00e9 poss\u00edvel abrir o fonte do sketch\! +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 Canadian\ French=Franc\u00eas canadense @@ -198,6 +250,9 @@ Cancel=Cancelar #: Sketch.java:455 Cannot\ Rename=N\u00e3o \u00e9 poss\u00edvel renomear +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 Carriage\ return=Retorno de carro @@ -231,10 +286,6 @@ Close=Fechar #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=Comentar/descomentar -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Erro do compilador. Por favor, envie este c\u00f3digo para {0} - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=Compilando sketch... @@ -310,9 +361,8 @@ Could\ not\ re-save\ sketch=N\u00e3o foi poss\u00edvel salvar novamente o sketch #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=N\u00e3o foi poss\u00edvel ler as configura\u00e7\u00f5es padr\u00e3o.\nVoc\u00ea ter\u00e1 que reinstalar o Arduino. -#: Preferences.java:258 -#, java-format -Could\ not\ read\ preferences\ from\ {0}=N\u00e3o foi poss\u00edvel ler as prefer\u00eancias de {0} +#: ../../../processing/app/Sketch.java:1525 +Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=N\u00e3o foi poss\u00edvel ler o arquivo de prefer\u00eancias de compila\u00e7\u00e3o, recompilando tudo #: Base.java:2482 #, java-format @@ -335,6 +385,9 @@ Could\ not\ rename\ the\ sketch.\ (2)=N\u00e3o foi poss\u00edvel renomear o sket #, java-format Could\ not\ replace\ {0}=N\u00e3o foi poss\u00edvel substituir {0} +#: ../../../processing/app/Sketch.java:1579 +Could\ not\ write\ build\ preferences\ file=N\u00e3o foi poss\u00edvel escrever o arquivo de prefer\u00eancias de build + #: tools/Archiver.java:74 Couldn't\ archive\ sketch=N\u00e3o foi poss\u00edvel arquivar sketch @@ -383,12 +436,19 @@ Done\ Saving.=Salvo. #: Editor.java:2510 Done\ burning\ bootloader.=Grava\u00e7\u00e3o do bootloader conclu\u00edda. +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=Compila\u00e7\u00e3o terminada. #: Editor.java:2564 Done\ printing.=Impress\u00e3o terminada. +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=Carregado. @@ -467,6 +527,9 @@ Error\ while\ burning\ bootloader.=Erro ao gravar o bootloader. #: ../../../processing/app/Editor.java:2555 Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=Erro ao gravar bootloader\: faltando o par\u00e2metro de configura\u00e7\u00e3o '{0}' +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=Erro durante o carregamento do c\u00f3digo {0} @@ -474,10 +537,21 @@ Error\ while\ loading\ code\ {0}=Erro durante o carregamento do c\u00f3digo {0} #: Editor.java:2567 Error\ while\ printing.=Erro durante impress\u00e3o. +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=Erro ao carregar\: faltando o par\u00e2metro de configura\u00e7\u00e3o '{0}' +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 Estonian=Estoniano @@ -493,6 +567,10 @@ Export\ canceled,\ changes\ must\ first\ be\ saved.=Exporta\u00e7\u00e3o cancela #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +Failed\ to\ open\ sketch\:\ "{0}"=Falha ao abrir o rascunho\: "{0}" + #: Editor.java:491 File=Arquivo @@ -527,8 +605,9 @@ Fix\ Encoding\ &\ Reload=Corrigir codifica\u00e7\u00e3o e recarregar #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=Para informa\u00e7\u00f5es sobre como instalar Bibliotecas, veja\: http\://arduino.cc/en/Guide/Libraries\\n -#: debug/BasicUploader.java:80 -Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =For\u00e7ando reset usando 1200bps na porta open/close +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=Franc\u00eas @@ -632,8 +711,8 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Biblioteca #: Preferences.java:106 Lithuaninan=Lituano -#: ../../../processing/app/Sketch.java:1660 -Low\ memory\ available,\ stability\ problems\ may\ occur=Pouca mem\u00f3ria dispon\u00edvel, problemas de estabilidade podem ocorrer +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 Marathi=Marathi @@ -644,12 +723,24 @@ Message=Mensagem #: ../../../processing/app/preproc/PdePreprocessor.java:412 Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Falta o */ do final de um /* coment\u00e1rio */ +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Mais prefer\u00eancias podem ser editadas diretamente no arquivo #: Editor.java:2156 Moving=Movendo +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +Must\ specify\ exactly\ one\ sketch\ file=\u00c9 preciso especificar exatamente um arquivo de rascunho + +#: ../../../processing/app/Preferences.java:158 +N'Ko=N'Ko + #: Sketch.java:282 Name\ for\ new\ file\:=Nome para o novo arquivo\: @@ -677,12 +768,18 @@ Next\ Tab=Pr\u00f3xima Aba #: Preferences.java:78 UpdateCheck.java:108 No=N\u00e3o +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Nenhuma placa selecionada. Por favor, escolha uma placa no menu Ferramentas > Placa #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Nenhuma altera\u00e7\u00e3o necess\u00e1ria para Autoformata\u00e7\u00e3o +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=Nenhum arquivo foi adicionado ao sketch. @@ -692,6 +789,9 @@ No\ launcher\ available=Nenhum lan\u00e7ador dispon\u00edvel. #: SerialMonitor.java:112 No\ line\ ending=Nenhum final-de-linha +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=S\u00e9rio, voc\u00ea precisa de ar fresco. @@ -699,6 +799,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=S\u00e9rio, voc\u00ea precis #, java-format No\ reference\ available\ for\ "{0}"=Sem refer\u00eancia dispon\u00edvel para "{0}" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +No\ valid\ code\ files\ found=N\u00e3o foram encontrados arquivos de c\u00f3digo v\u00e1lidos + #: ../../../processing/app/Base.java:309 No\ valid\ configured\ cores\ found\!\ Exiting...=N\u00e3o encontrado nenhum n\u00facleo v\u00e1lido configurado. Saindo... @@ -725,6 +835,9 @@ OK=OK #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=Um arquivo adicionado ao sketch. +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=Abrir @@ -752,12 +865,22 @@ Paste=Colar #: Preferences.java:109 Persian=Persa +#: ../../../processing/app/Preferences.java:161 +Persian\ (Iran)=Persa (Ir\u00e3) + #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Favor importar a biblioteca SPI a partir do menu Sketch > Importar biblioteca. +#: ../../../processing/app/debug/Compiler.java:529 +Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Favor importar a biblioteca Wire a partir do menu Sketch > Importar biblioteca. + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=Por favor, instale o JDK 1.5 ou superior. +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 Polish=Polon\u00eas @@ -879,9 +1002,15 @@ Save\ changes\ to\ "{0}"?\ \ =Salvar altera\u00e7\u00f5es em "{0}"? #: Sketch.java:825 Save\ sketch\ folder\ as...=Salvar a pasta de sketches como... +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=Salvando... +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=Selecione (ou crie uma nova) pasta para as sketches... @@ -906,14 +1035,6 @@ Send=Enviar #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=Monitor serial -#: Serial.java:174 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Porta Serial "{0}" j\u00e1 est\u00e1 sendo usada. Feche qualquer programa que talvez a esteja ocupando. - -#: Serial.java:121 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=Porta Serial "{0}" j\u00e1 est\u00e1 sendo usada. Feche qualquer programa que talvez a esteja ocupando. - #: Serial.java:194 #, java-format Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Porta Serial "{0}" n\u00e3o encontrada. Voc\u00ea selecionou corretamente em Ferramentas > Porta Serial? @@ -968,6 +1089,9 @@ Sketchbook\ folder\ disappeared=A pasta de sketchbooks desapareceu #: Preferences.java:315 Sketchbook\ location\:=Local do Sketchbook\: +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 Sketches\ (*.ino,\ *.pde)=Sketches (*.ino, *.pde) @@ -1002,6 +1126,9 @@ Tamil=T\u00e2mil #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=A palavra-chave 'BYTE" n\u00e3o \u00e9 mais suportada. +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=A classe Cliente foi renomeada para EthernetClient. @@ -1038,12 +1165,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=A pasta do sketch desapareceu.\nTentarei salvar novamente no mesmo local,\nmas qualquer coisa al\u00e9m do c\u00f3digo ser\u00e1 perdida. -#: Sketch.java:2018 -The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=O nome do sketch teve que ser modificado. Nomes de sketch podem ser formados apenas de caracteres ASCII e n\u00fameros (mas n\u00e3o podem come\u00e7ar com n\u00fameros) e devem conter menos de 64 caracteres. +#: ../../../processing/app/Sketch.java:2028 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.=O nome do sketch teve de ser modificado. Nomes de sketch podem conter apenas\ncaracteres ASCII e n\u00fameros (mas n\u00e3o podem come\u00e7ar com um n\u00famero).\nEles devem tamb\u00e9m ter menos de 64 caracteres de tamanho. #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=A pasta do sketchbook n\u00e3o existe mais.\nO Arduino ir\u00e1 alternar para o local padr\u00e3o\ndo sketchbook e criar uma nova pasta de\nsketchbook, se necess\u00e1rio. E ent\u00e3o, o\nArduino ir\u00e1 parar de falar sobre si mesmo\nna terceira pessoa. +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Este arquivo j\u00e1 foi copiado para o local\nonde voc\u00ea est\u00e1 tentando adicion\u00e1-lo.\nEu ainda n\u00e3o fiz nada. @@ -1147,6 +1277,10 @@ Vietnamese=Vietnamita #: Editor.java:1105 Visit\ Arduino.cc=Visite Arduino.cc +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=AVISO\: a biblioteca {0} alega rodar em arquitetura(s) {1} e pode ser incompat\u00edvel com sua placa atual, que roda em arquitetura(s) {2}. + #: Base.java:2128 Warning=Aviso @@ -1245,9 +1379,6 @@ environment=ambiente #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1270,13 +1401,6 @@ name\ is\ null=nome \u00e9 nulo #: Base.java:2090 platforms.html=plataformas.html -#: Serial.java:451 -#, java-format -readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=O buffer de byte de readBytesUntil() \u00e9 muito pequeno para at\u00e9 {0} bytes, incluindo o caractere {1} - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: erro interno.. n\u00e3o foi poss\u00edvel encontrar o c\u00f3digo - #: Editor.java:932 serialMenu\ is\ null=serialMenu \u00e9 nulo @@ -1284,6 +1408,10 @@ serialMenu\ is\ null=serialMenu \u00e9 nulo #, java-format the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=a porta serial {0} selecionada n\u00e3o existe ou sua placa n\u00e3o est\u00e1 conectada +#: ../../../processing/app/Base.java:389 +#, java-format +unknown\ option\:\ {0}=op\u00e7\u00e3o n\u00e3o identificada\: {0} + #: Preferences.java:391 upload=carregar @@ -1302,3 +1430,35 @@ upload=carregar #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"={0}\: Argumento inv\u00e1lido para --pref, deve estar na forma "pref\=value" + +#: ../../../processing/app/Base.java:476 +#, java-format +{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"={0}\: Nome inv\u00e1lido de placa, deveria ser na forma "pacote\:arqu\:placa" ou "pacote\:arqu\:placa\:op\u00e7\u00f5es" + +#: ../../../processing/app/Base.java:509 +#, java-format +{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"={0}\: Op\u00e7\u00e3o inv\u00e1lida para a op\u00e7\u00e3o "{1}" para a placa "{2}" + +#: ../../../processing/app/Base.java:507 +#, java-format +{0}\:\ Invalid\ option\ for\ board\ "{1}"={0}\: Op\u00e7\u00e3o inv\u00e1lida para a placa "{1}" + +#: ../../../processing/app/Base.java:502 +#, java-format +{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"={0}\: Op\u00e7\u00e3o iv\u00e1lida, deve estar na forma "nome\=valor" + +#: ../../../processing/app/Base.java:486 +#, java-format +{0}\:\ Unknown\ architecture={0}\: Arquitetura n\u00e3o identificada + +#: ../../../processing/app/Base.java:491 +#, java-format +{0}\:\ Unknown\ board={0}\: placa n\u00e3o identificada + +#: ../../../processing/app/Base.java:481 +#, java-format +{0}\:\ Unknown\ package={0}\: Pacote n\u00e3o identificado diff --git a/arduino-core/src/processing/app/i18n/Resources_pt_PT.po b/arduino-core/src/processing/app/i18n/Resources_pt_PT.po index e8d04f2d3..46c3d37e3 100644 --- a/arduino-core/src/processing/app/i18n/Resources_pt_PT.po +++ b/arduino-core/src/processing/app/i18n/Resources_pt_PT.po @@ -15,8 +15,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-01-14 17:10+0000\n" -"Last-Translator: Cristian Maglie \n" +"PO-Revision-Date: 2015-01-14 18:43+0000\n" +"Last-Translator: renatose \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/arduino-ide-15/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,6 +40,12 @@ msgstr "'Rato' é apenas suportado no Arduino Leonardo" msgid "(edit only when Arduino is not running)" msgstr "(altere apenas quando o Arduino não estiver em execução)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "--verbose, --verbose-upload e --verbose-build só podem ser usados juntamente com --verify ou --upload" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -98,6 +104,10 @@ msgstr "Adicionar Ficheiro..." msgid "Add Library..." msgstr "Adicionar Biblioteca..." +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "Albanês" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -105,6 +115,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "Ocorreu um erro enquanto tentava corrigir a codificação do ficheiro.\nNão tente guardar este rascunho porque pode escrever sobre a\nversão antiga. Use Abrir para reabrir o rascunho e tentar novamente.\n" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "Ocorreu um erro a enviar o rascunho" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "Ocorreu um erro a verificar o rascunho" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "Ocorreu um erro a verificar/enviar o rascunho" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -149,7 +173,7 @@ msgstr "Placas Arduino AVR" msgid "" "Arduino can only open its own sketches\n" "and other files ending in .ino or .pde" -msgstr "" +msgstr "O Arduino só consegue abrir os seus próprios rascunhos e outros ficheiros terminados em .ino ou .pde" #: Base.java:1682 msgid "" @@ -183,6 +207,30 @@ msgstr "Tem a certeza que pretende apagar \"{0}\"?" msgid "Are you sure you want to delete this sketch?" msgstr "Tem a certeza que deseja apagar este rascunho?" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "Argumento necessário para --board" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "Argumento necessário para --curdir" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "Argumento necessário para --get-pref" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "Argumento necessário para --port" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "Argumento necessário para --pref" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "Argumento necessário para --preferences-file" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "Arménio" @@ -191,6 +239,10 @@ msgstr "Arménio" msgid "Asturian" msgstr "" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "Autorização requerida" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "Formatar Automaticamente" @@ -232,6 +284,14 @@ msgstr "Erro na linha: {0}" msgid "Bad file selected" msgstr "Ficheiro incorreto selecionado " +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "Mau ficheiro primário do rascunho ou má estrutura do directório do rascunho" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "Basco" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "Bielorrusso" @@ -268,6 +328,10 @@ msgstr "Procurar" msgid "Build folder disappeared or could not be written" msgstr "Pasta de compilação desapareceu ou é apenas de leitura" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "Opções de compilação alteradas, compilando tudo" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Búlgaro" @@ -284,9 +348,15 @@ msgstr "Gravar bootloader" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "A gravar o bootloader na Placa E/S (isto pode demorar um minuto)..." -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" -msgstr "Não foi possível abrir o rascunho original!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "Só pode passar um de: {0}" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" +msgstr "Não foi possível encontrar o rascunho no caminho especificado" #: ../../../processing/app/Preferences.java:92 msgid "Canadian French" @@ -301,6 +371,10 @@ msgstr "Cancelar" msgid "Cannot Rename" msgstr "Não é possível alterar o nome" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "Não é possível especificar nenhum ficheiro de rascunho" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "Retorno de linha" @@ -345,11 +419,6 @@ msgstr "Fechar" msgid "Comment/Uncomment" msgstr "Comentar/Eliminar Comentário" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "Erro do compilador, por favor envie este código para {0}" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "A compilar o rascunho..." @@ -449,7 +518,7 @@ msgstr "Não foi possível voltar a guardar o rascunho" msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "" +msgstr "Não foi possível ler as definições de tema de cores.\nÉ necessário reinstalar o Arduino." #: Preferences.java:219 msgid "" @@ -457,10 +526,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Não foi possível ler as configurações predefinidas.⏎ Terás de reinstalar o Arduino." -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "Não foi possível lerr as preferências em {0}" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "Falha ao ler as preferências de compilação anteriores, compilando tudo" #: Base.java:2482 #, java-format @@ -489,6 +557,10 @@ msgstr "Não foi possível mudar o nome do rascunho. (2)" msgid "Could not replace {0}" msgstr "Não foi possível substituir {0}" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "Falha ao escrever o ficheiro de preferências de compilação" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Não foi possível arquivar o Rascunho" @@ -558,6 +630,11 @@ msgstr "Guardado com Sucesso." msgid "Done burning bootloader." msgstr "Concluída a gravação do bootloader." +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "Compilado" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "Compilação Terminada" @@ -566,6 +643,10 @@ msgstr "Compilação Terminada" msgid "Done printing." msgstr "Impressão terminada" +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "Enviado" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "Carregamento completo" @@ -669,6 +750,10 @@ msgstr "Erro ao gravar o bootloader." msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "Erro ao gravar o bootloader: parâmetro de configuração '{0}' não encontrado" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "Erro a compilar: o parâmetro de configuração '{0}' está em falta" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -678,11 +763,25 @@ msgstr "Erro ao carregar o código {0}" msgid "Error while printing." msgstr "Erro ao imprimir." +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "Erro a enviar" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "Erro durante o upload: parâmetro de configuração '{0}' não encontrado" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "Erro a verificar" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "Erro a verificar/enviar" + #: Preferences.java:93 msgid "Estonian" msgstr "Estónio" @@ -703,6 +802,11 @@ msgstr "Exportação cancelada, tem de guardar as alterações efetuadas primeir msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "Falhou a abertura do rascunho: \"{0}\"" + #: Editor.java:491 msgid "File" msgstr "Ficheiro" @@ -750,9 +854,10 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "Para mais informação sobre como instalar bibliotecas visite: http://arduino.cc/en/Guide/Libraries \\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " -msgstr "A forçar reset usando 1200bps abre/fecha na porta" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" +msgstr "A forçar um reset usando 1200bps abre/fecha na porta {0}" #: Preferences.java:95 msgid "French" @@ -900,9 +1005,9 @@ msgstr "Biblioteca adicionada às suas bibliotecas. Verifique o menu \"Importar msgid "Lithuaninan" msgstr "Lituano" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" -msgstr "Pouca memória disponível, poderão surgir problemas de estabilidade" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." +msgstr "Pouca memória disponível, podem ocorrer problemas de estabilidade." #: Preferences.java:107 msgid "Marathi" @@ -916,6 +1021,10 @@ msgstr "Mensagem" msgid "Missing the */ from the end of a /* comment */" msgstr "Falta o */ do final do /* comentário */" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "Modo não suportado" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "Outras preferências podem ser alteradas diretamente no ficheiro" @@ -924,6 +1033,18 @@ msgstr "Outras preferências podem ser alteradas diretamente no ficheiro" msgid "Moving" msgstr "A mover" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "Ficheiros múltiplos não suportados" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "Deve especificar exactamente um ficheiro de rascunho" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "" + #: Sketch.java:282 msgid "Name for new file:" msgstr "Nome para o novo ficheiro:" @@ -960,6 +1081,10 @@ msgstr "Próxima Tab" msgid "No" msgstr "Não" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "Não selecionou a placa; por favor escolha a placa no menu Ferramentas > Placa." @@ -968,6 +1093,10 @@ msgstr "Não selecionou a placa; por favor escolha a placa no menu Ferramentas > msgid "No changes necessary for Auto Format." msgstr "Não são necessárias alterações para Formatação Automática" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "Não foram encontrados parâmetros de linha de comandos" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "Não foram adicionados ficheiros ao rascunho." @@ -980,6 +1109,10 @@ msgstr "Não há iniciador disponível" msgid "No line ending" msgstr "Sem final de linha" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "Sem parâmetros" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "A sério! Que tal ir dar uma volta e apanhar ar fresco." @@ -989,6 +1122,19 @@ msgstr "A sério! Que tal ir dar uma volta e apanhar ar fresco." msgid "No reference available for \"{0}\"" msgstr "Referência não encontrada para \"{0}\"" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "Sem rascunho" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "Sem bloco de rascunhos" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "Não foram encontrados ficheiros de código válidos" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "Não foram encontrados núcleos configurados válidos! A sair..." @@ -1025,6 +1171,10 @@ msgstr "OK" msgid "One file added to the sketch." msgstr "Um ficheiro adicionado ao rascunho." +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "Apenas --verify, --upload ou --get-pref são suportados" + #: EditorToolbar.java:41 msgid "Open" msgstr "Abrir" @@ -1061,14 +1211,27 @@ msgstr "Colar" msgid "Persian" msgstr "Persa" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "Persa (Irão)" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "Por favor importe a biblioteca SPI no menu Rascunho > Importar Biblioteca." +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "Por favor importe a biblioteca Wire do menu Rascunho > Importar Biblioteca." + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "Por favor instale o JDK 1.5 ou superior" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "Por favor seleccione um programador do menu Ferramentas->Programador" + #: Preferences.java:110 msgid "Polish" msgstr "Polaco" @@ -1231,10 +1394,18 @@ msgstr "Deseja guardar as alterações a \"{0}\"? " msgid "Save sketch folder as..." msgstr "Guardar a pasta de rascunhos como..." +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "Guardar enquanto verifica ou envia" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "A guardar..." +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "Escolhe uma (ou cria uma nova) pasta para os rascunhos..." @@ -1267,20 +1438,6 @@ msgstr "Enviar" msgid "Serial Monitor" msgstr "Monitor Série" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "Porta série \"{0}\" já em uso. Tente fechar quaisquer programas que possam estar a utilizá-la." - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "Porta série \"{0}\" já em uso. Tente fechar quaisquer programas que possam estar a utilizá-la." - #: Serial.java:194 #, java-format msgid "" @@ -1360,6 +1517,10 @@ msgstr "A pasta do bloco de rascunhos desapareceu." msgid "Sketchbook location:" msgstr "Localização do bloco de rascunhos:" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "Caminho do bloco de rascunhos não definido" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "Rascunhos (*.ino, *.pde)" @@ -1410,6 +1571,10 @@ msgstr "Tâmil" msgid "The 'BYTE' keyword is no longer supported." msgstr "A palavra-chave 'BYTE' já não é permitida." +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "O nome da classe Client foi mudado para EthernetClient." @@ -1477,12 +1642,12 @@ msgid "" "but anything besides the code will be lost." msgstr "A pasta de rascunhos desapareceu.\nVou tentar guardar novamente no mesmo sítio,\nmas tudo para além do código será perdido." -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." -msgstr "O nome do rascunho teve de ser modificado. Os nomes de rascunhos só podem consistir em\ncaracteres e números ASCII (sem começar por um digito). \nDevem também ter menos de 64 caracteres de comprimento." +"They should also be less than 64 characters long." +msgstr "O nome do rascunho teve de ser modificado. Nomes de rascunho apenas\npodem ser constituidos por caracteres ASCII e numeros (mas podem começar\ncom um numero): Devem também ter menos de 64 caracteres." #: Base.java:259 msgid "" @@ -1493,6 +1658,12 @@ msgid "" "himself in the third person." msgstr "A pasta do bloco de rascunhos já não existe.\nO Arduino irá mudar para a localização por defeito, e\ncriar uma nova pasta de bloco de rascunhos, caso necessário.\nDepois disto o Arduino deverá parar de\nfalar de si mesmo na terceira pessoa." +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1635,6 +1806,13 @@ msgstr "Vietnamita" msgid "Visit Arduino.cc" msgstr "Visitar Arduino.cc" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "AVISO: a biblioteca {0} diz que pode ser executada em {1} arquitectura(s) e pode ser incompatível com a sua placa actual que é executada em {2} arquitectura(s)." + #: Base.java:2128 msgid "Warning" msgstr "Aviso" @@ -1803,10 +1981,6 @@ msgstr "ambiente" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "http://github.com/arduino/Arduino/issues" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1836,17 +2010,6 @@ msgstr "nome é nulo" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "O buffer byte de readBytesUntil() é demasiado pequeno para os {0} bytes até e incluindo char {1}" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "removeCode: erro interno.. não foi possível encontrar código" - #: Editor.java:932 msgid "serialMenu is null" msgstr "serialMenu é nulo" @@ -1857,6 +2020,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "a porta série {0} selecionada não existe ou a placa não está ligada." +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "opção desconhecida: {0}" + #: Preferences.java:391 msgid "upload" msgstr "upload" @@ -1880,3 +2048,45 @@ msgstr "{0} | Arduino {1}" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "{0}: Argumento inválido para --pref, deve ser da forma \"pref=valor\"" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "{0}: Nome de placa inválido, deve ser da forma \"pacote:arquitectura:placa\" ou \"pacote:arquitectura:placa:opções\"" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "{0}: Opção inválida para \"{1}\" opção para placa \"{2}\"" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "{0}: Opção inválida para a placa \"{1}\"" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "{0}: Opção inválida, deve ser da forma \"nome=valor\"" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "{0}: Arquitetura desconhecida" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "{0}: Placa desconhecida" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "{0}: Pacote inválido" diff --git a/arduino-core/src/processing/app/i18n/Resources_pt_PT.properties b/arduino-core/src/processing/app/i18n/Resources_pt_PT.properties index d66b12ac7..1117b9a1f 100644 --- a/arduino-core/src/processing/app/i18n/Resources_pt_PT.properties +++ b/arduino-core/src/processing/app/i18n/Resources_pt_PT.properties @@ -10,7 +10,7 @@ # , 2012. # , 2012. # , 2012. -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Portuguese (Portugal) (http\://www.transifex.com/projects/p/arduino-ide-15/language/pt_PT/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: pt_PT\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 18\:43+0000\nLast-Translator\: renatose \nLanguage-Team\: Portuguese (Portugal) (http\://www.transifex.com/projects/p/arduino-ide-15/language/pt_PT/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: pt_PT\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(requer rein\u00edcio do Arduino) @@ -24,6 +24,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(altere apenas quando o Arduino n\u00e3o estiver em execu\u00e7\u00e3o) +#: ../../../processing/app/Base.java:468 +--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload=--verbose, --verbose-upload e --verbose-build s\u00f3 podem ser usados juntamente com --verify ou --upload + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -60,9 +63,23 @@ Add\ File...=Adicionar Ficheiro... #: Base.java:963 Add\ Library...=Adicionar Biblioteca... +#: ../../../processing/app/Preferences.java:96 +Albanian=Alban\u00eas + #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Ocorreu um erro enquanto tentava corrigir a codifica\u00e7\u00e3o do ficheiro.\nN\u00e3o tente guardar este rascunho porque pode escrever sobre a\nvers\u00e3o antiga. Use Abrir para reabrir o rascunho e tentar novamente.\n +#: ../../../processing/app/BaseNoGui.java:528 +An\ error\ occurred\ while\ uploading\ the\ sketch=Ocorreu um erro a enviar o rascunho + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +An\ error\ occurred\ while\ verifying\ the\ sketch=Ocorreu um erro a verificar o rascunho + +#: ../../../processing/app/BaseNoGui.java:521 +An\ error\ occurred\ while\ verifying/uploading\ the\ sketch=Ocorreu um erro a verificar/enviar o rascunho + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Ocorreu um erro desconhecido ao tentar carregar\nc\u00f3digo espec\u00edfico da plataforma para a sua m\u00e1quina. @@ -91,7 +108,7 @@ Arduino\ ARM\ (32-bits)\ Boards=Placas Arduino ARM (32-bits) Arduino\ AVR\ Boards=Placas Arduino AVR #: Editor.java:2137 -!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= +Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=O Arduino s\u00f3 consegue abrir os seus pr\u00f3prios rascunhos e outros ficheiros terminados em .ino ou .pde #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=O Arduino n\u00e3o pode ser executado porque n\u00e3o foi\nposs\u00edvel criar uma pasta para guardar as configura\u00e7\u00f5es. @@ -112,12 +129,33 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Tem a certeza que pretende apagar #: Sketch.java:587 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Tem a certeza que deseja apagar este rascunho? +#: ../../../processing/app/Base.java:356 +Argument\ required\ for\ --board=Argumento necess\u00e1rio para --board + +#: ../../../processing/app/Base.java:370 +Argument\ required\ for\ --curdir=Argumento necess\u00e1rio para --curdir + +#: ../../../processing/app/Base.java:385 +Argument\ required\ for\ --get-pref=Argumento necess\u00e1rio para --get-pref + +#: ../../../processing/app/Base.java:363 +Argument\ required\ for\ --port=Argumento necess\u00e1rio para --port + +#: ../../../processing/app/Base.java:377 +Argument\ required\ for\ --pref=Argumento necess\u00e1rio para --pref + +#: ../../../processing/app/Base.java:384 +Argument\ required\ for\ --preferences-file=Argumento necess\u00e1rio para --preferences-file + #: ../../../processing/app/Preferences.java:137 Armenian=Arm\u00e9nio #: ../../../processing/app/Preferences.java:138 !Asturian= +#: ../../../processing/app/debug/Compiler.java:145 +Authorization\ required=Autoriza\u00e7\u00e3o requerida + #: tools/AutoFormat.java:91 Auto\ Format=Formatar Automaticamente @@ -149,6 +187,12 @@ Bad\ error\ line\:\ {0}=Erro na linha\: {0} #: Editor.java:2136 Bad\ file\ selected=Ficheiro incorreto selecionado +#: ../../../processing/app/debug/Compiler.java:89 +Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure=Mau ficheiro prim\u00e1rio do rascunho ou m\u00e1 estrutura do direct\u00f3rio do rascunho + +#: ../../../processing/app/Preferences.java:149 +Basque=Basco + #: ../../../processing/app/Preferences.java:139 Belarusian=Bielorrusso @@ -175,6 +219,9 @@ Browse=Procurar #: Sketch.java:1392 Sketch.java:1423 Build\ folder\ disappeared\ or\ could\ not\ be\ written=Pasta de compila\u00e7\u00e3o desapareceu ou \u00e9 apenas de leitura +#: ../../../processing/app/Sketch.java:1530 +Build\ options\ changed,\ rebuilding\ all=Op\u00e7\u00f5es de compila\u00e7\u00e3o alteradas, compilando tudo + #: ../../../processing/app/Preferences.java:80 Bulgarian=B\u00falgaro @@ -187,8 +234,13 @@ Burn\ Bootloader=Gravar bootloader #: Editor.java:2504 Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=A gravar o bootloader na Placa E/S (isto pode demorar um minuto)... -#: ../../../processing/app/Base.java:368 -Can't\ open\ source\ sketch\!=N\u00e3o foi poss\u00edvel abrir o rascunho original\! +#: ../../../processing/app/Base.java:379 +#, java-format +Can\ only\ pass\ one\ of\:\ {0}=S\u00f3 pode passar um de\: {0} + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +Can't\ find\ the\ sketch\ in\ the\ specified\ path=N\u00e3o foi poss\u00edvel encontrar o rascunho no caminho especificado #: ../../../processing/app/Preferences.java:92 Canadian\ French=Franc\u00eas Canadiano @@ -200,6 +252,9 @@ Cancel=Cancelar #: Sketch.java:455 Cannot\ Rename=N\u00e3o \u00e9 poss\u00edvel alterar o nome +#: ../../../processing/app/Base.java:465 +Cannot\ specify\ any\ sketch\ files=N\u00e3o \u00e9 poss\u00edvel especificar nenhum ficheiro de rascunho + #: SerialMonitor.java:112 Carriage\ return=Retorno de linha @@ -233,10 +288,6 @@ Close=Fechar #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=Comentar/Eliminar Coment\u00e1rio -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Erro do compilador, por favor envie este c\u00f3digo para {0} - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=A compilar o rascunho... @@ -307,14 +358,13 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=N\u00e3o foi poss\u00edvel voltar a guardar o rascunho #: Theme.java:52 -!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= +Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=N\u00e3o foi poss\u00edvel ler as defini\u00e7\u00f5es de tema de cores.\n\u00c9 necess\u00e1rio reinstalar o Arduino. #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=N\u00e3o foi poss\u00edvel ler as configura\u00e7\u00f5es predefinidas.\u23ce Ter\u00e1s de reinstalar o Arduino. -#: Preferences.java:258 -#, java-format -Could\ not\ read\ preferences\ from\ {0}=N\u00e3o foi poss\u00edvel lerr as prefer\u00eancias em {0} +#: ../../../processing/app/Sketch.java:1525 +Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=Falha ao ler as prefer\u00eancias de compila\u00e7\u00e3o anteriores, compilando tudo #: Base.java:2482 #, java-format @@ -337,6 +387,9 @@ Could\ not\ rename\ the\ sketch.\ (2)=N\u00e3o foi poss\u00edvel mudar o nome do #, java-format Could\ not\ replace\ {0}=N\u00e3o foi poss\u00edvel substituir {0} +#: ../../../processing/app/Sketch.java:1579 +Could\ not\ write\ build\ preferences\ file=Falha ao escrever o ficheiro de prefer\u00eancias de compila\u00e7\u00e3o + #: tools/Archiver.java:74 Couldn't\ archive\ sketch=N\u00e3o foi poss\u00edvel arquivar o Rascunho @@ -385,12 +438,19 @@ Done\ Saving.=Guardado com Sucesso. #: Editor.java:2510 Done\ burning\ bootloader.=Conclu\u00edda a grava\u00e7\u00e3o do bootloader. +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +Done\ compiling=Compilado + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=Compila\u00e7\u00e3o Terminada #: Editor.java:2564 Done\ printing.=Impress\u00e3o terminada +#: ../../../processing/app/BaseNoGui.java:514 +Done\ uploading=Enviado + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=Carregamento completo @@ -469,6 +529,9 @@ Error\ while\ burning\ bootloader.=Erro ao gravar o bootloader. #: ../../../processing/app/Editor.java:2555 Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=Erro ao gravar o bootloader\: par\u00e2metro de configura\u00e7\u00e3o '{0}' n\u00e3o encontrado +#: ../../../../../app/src/processing/app/Editor.java:1940 +Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter=Erro a compilar\: o par\u00e2metro de configura\u00e7\u00e3o '{0}' est\u00e1 em falta + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=Erro ao carregar o c\u00f3digo {0} @@ -476,10 +539,21 @@ Error\ while\ loading\ code\ {0}=Erro ao carregar o c\u00f3digo {0} #: Editor.java:2567 Error\ while\ printing.=Erro ao imprimir. +#: ../../../processing/app/BaseNoGui.java:528 +Error\ while\ uploading=Erro a enviar + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=Erro durante o upload\: par\u00e2metro de configura\u00e7\u00e3o '{0}' n\u00e3o encontrado +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +Error\ while\ verifying=Erro a verificar + +#: ../../../processing/app/BaseNoGui.java:521 +Error\ while\ verifying/uploading=Erro a verificar/enviar + #: Preferences.java:93 Estonian=Est\u00f3nio @@ -495,6 +569,10 @@ Export\ canceled,\ changes\ must\ first\ be\ saved.=Exporta\u00e7\u00e3o cancela #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +Failed\ to\ open\ sketch\:\ "{0}"=Falhou a abertura do rascunho\: "{0}" + #: Editor.java:491 File=Ficheiro @@ -529,8 +607,9 @@ Fix\ Encoding\ &\ Reload=Corrigir Codifica\u00e7\u00e3o & Recarregar #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=Para mais informa\u00e7\u00e3o sobre como instalar bibliotecas visite\: http\://arduino.cc/en/Guide/Libraries \\n -#: debug/BasicUploader.java:80 -Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =A for\u00e7ar reset usando 1200bps abre/fecha na porta +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}=A for\u00e7ar um reset usando 1200bps abre/fecha na porta {0} #: Preferences.java:95 French=Franc\u00eas @@ -634,8 +713,8 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Biblioteca #: Preferences.java:106 Lithuaninan=Lituano -#: ../../../processing/app/Sketch.java:1660 -Low\ memory\ available,\ stability\ problems\ may\ occur=Pouca mem\u00f3ria dispon\u00edvel, poder\u00e3o surgir problemas de estabilidade +#: ../../../processing/app/Sketch.java:1684 +Low\ memory\ available,\ stability\ problems\ may\ occur.=Pouca mem\u00f3ria dispon\u00edvel, podem ocorrer problemas de estabilidade. #: Preferences.java:107 Marathi=Marata @@ -646,12 +725,24 @@ Message=Mensagem #: ../../../processing/app/preproc/PdePreprocessor.java:412 Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Falta o */ do final do /* coment\u00e1rio */ +#: ../../../processing/app/BaseNoGui.java:455 +Mode\ not\ supported=Modo n\u00e3o suportado + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Outras prefer\u00eancias podem ser alteradas diretamente no ficheiro #: Editor.java:2156 Moving=A mover +#: ../../../processing/app/BaseNoGui.java:484 +Multiple\ files\ not\ supported=Ficheiros m\u00faltiplos n\u00e3o suportados + +#: ../../../processing/app/Base.java:395 +Must\ specify\ exactly\ one\ sketch\ file=Deve especificar exactamente um ficheiro de rascunho + +#: ../../../processing/app/Preferences.java:158 +!N'Ko= + #: Sketch.java:282 Name\ for\ new\ file\:=Nome para o novo ficheiro\: @@ -679,12 +770,18 @@ Next\ Tab=Pr\u00f3xima Tab #: Preferences.java:78 UpdateCheck.java:108 No=N\u00e3o +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=N\u00e3o selecionou a placa; por favor escolha a placa no menu Ferramentas > Placa. #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=N\u00e3o s\u00e3o necess\u00e1rias altera\u00e7\u00f5es para Formata\u00e7\u00e3o Autom\u00e1tica +#: ../../../processing/app/BaseNoGui.java:665 +No\ command\ line\ parameters\ found=N\u00e3o foram encontrados par\u00e2metros de linha de comandos + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=N\u00e3o foram adicionados ficheiros ao rascunho. @@ -694,6 +791,9 @@ No\ launcher\ available=N\u00e3o h\u00e1 iniciador dispon\u00edvel #: SerialMonitor.java:112 No\ line\ ending=Sem final de linha +#: ../../../processing/app/BaseNoGui.java:665 +No\ parameters=Sem par\u00e2metros + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=A s\u00e9rio\! Que tal ir dar uma volta e apanhar ar fresco. @@ -701,6 +801,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=A s\u00e9rio\! Que tal ir da #, java-format No\ reference\ available\ for\ "{0}"=Refer\u00eancia n\u00e3o encontrada para "{0}" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +No\ sketch=Sem rascunho + +#: ../../../processing/app/BaseNoGui.java:428 +No\ sketchbook=Sem bloco de rascunhos + +#: ../../../processing/app/Sketch.java:204 +No\ valid\ code\ files\ found=N\u00e3o foram encontrados ficheiros de c\u00f3digo v\u00e1lidos + #: ../../../processing/app/Base.java:309 No\ valid\ configured\ cores\ found\!\ Exiting...=N\u00e3o foram encontrados n\u00facleos configurados v\u00e1lidos\! A sair... @@ -727,6 +837,9 @@ OK=OK #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=Um ficheiro adicionado ao rascunho. +#: ../../../processing/app/BaseNoGui.java:455 +Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported=Apenas --verify, --upload ou --get-pref s\u00e3o suportados + #: EditorToolbar.java:41 Open=Abrir @@ -754,12 +867,22 @@ Paste=Colar #: Preferences.java:109 Persian=Persa +#: ../../../processing/app/Preferences.java:161 +Persian\ (Iran)=Persa (Ir\u00e3o) + #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Por favor importe a biblioteca SPI no menu Rascunho > Importar Biblioteca. +#: ../../../processing/app/debug/Compiler.java:529 +Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Por favor importe a biblioteca Wire do menu Rascunho > Importar Biblioteca. + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=Por favor instale o JDK 1.5 ou superior +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu=Por favor seleccione um programador do menu Ferramentas->Programador + #: Preferences.java:110 Polish=Polaco @@ -881,9 +1004,15 @@ Save\ changes\ to\ "{0}"?\ \ =Deseja guardar as altera\u00e7\u00f5es a "{0}"? #: Sketch.java:825 Save\ sketch\ folder\ as...=Guardar a pasta de rascunhos como... +#: ../../../../../app/src/processing/app/Preferences.java:425 +Save\ when\ verifying\ or\ uploading=Guardar enquanto verifica ou envia + #: Editor.java:2270 Editor.java:2308 Saving...=A guardar... +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=Escolhe uma (ou cria uma nova) pasta para os rascunhos... @@ -908,14 +1037,6 @@ Send=Enviar #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=Monitor S\u00e9rie -#: Serial.java:174 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Porta s\u00e9rie "{0}" j\u00e1 em uso. Tente fechar quaisquer programas que possam estar a utiliz\u00e1-la. - -#: Serial.java:121 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=Porta s\u00e9rie "{0}" j\u00e1 em uso. Tente fechar quaisquer programas que possam estar a utiliz\u00e1-la. - #: Serial.java:194 #, java-format Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Porta s\u00e9rie "{0}" j\u00e1 n\u00e3o encontrada. Selecionou a porta certa no menu Ferramentas > Porta S\u00e9rie ? @@ -970,6 +1091,9 @@ Sketchbook\ folder\ disappeared=A pasta do bloco de rascunhos desapareceu. #: Preferences.java:315 Sketchbook\ location\:=Localiza\u00e7\u00e3o do bloco de rascunhos\: +#: ../../../processing/app/BaseNoGui.java:428 +Sketchbook\ path\ not\ defined=Caminho do bloco de rascunhos n\u00e3o definido + #: ../../../processing/app/Base.java:785 Sketches\ (*.ino,\ *.pde)=Rascunhos (*.ino, *.pde) @@ -1004,6 +1128,9 @@ Tamil=T\u00e2mil #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=A palavra-chave 'BYTE' j\u00e1 n\u00e3o \u00e9 permitida. +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=O nome da classe Client foi mudado para EthernetClient. @@ -1040,12 +1167,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=A pasta de rascunhos desapareceu.\nVou tentar guardar novamente no mesmo s\u00edtio,\nmas tudo para al\u00e9m do c\u00f3digo ser\u00e1 perdido. -#: Sketch.java:2018 -The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=O nome do rascunho teve de ser modificado. Os nomes de rascunhos s\u00f3 podem consistir em\ncaracteres e n\u00fameros ASCII (sem come\u00e7ar por um digito). \nDevem tamb\u00e9m ter menos de 64 caracteres de comprimento. +#: ../../../processing/app/Sketch.java:2028 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.=O nome do rascunho teve de ser modificado. Nomes de rascunho apenas\npodem ser constituidos por caracteres ASCII e numeros (mas podem come\u00e7ar\ncom um numero)\: Devem tamb\u00e9m ter menos de 64 caracteres. #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=A pasta do bloco de rascunhos j\u00e1 n\u00e3o existe.\nO Arduino ir\u00e1 mudar para a localiza\u00e7\u00e3o por defeito, e\ncriar uma nova pasta de bloco de rascunhos, caso necess\u00e1rio.\nDepois disto o Arduino dever\u00e1 parar de\nfalar de si mesmo na terceira pessoa. +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Este ficheiro j\u00e1 tinha sido copiado para a\u23ce localiza\u00e7\u00e3o onde est\u00e1s a tentar adicion\u00e1-lo.\u23ce N\u00e3o vou fazer nadinha. @@ -1149,6 +1279,10 @@ Vietnamese=Vietnamita #: Editor.java:1105 Visit\ Arduino.cc=Visitar Arduino.cc +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=AVISO\: a biblioteca {0} diz que pode ser executada em {1} arquitectura(s) e pode ser incompat\u00edvel com a sua placa actual que \u00e9 executada em {2} arquitectura(s). + #: Base.java:2128 Warning=Aviso @@ -1247,9 +1381,6 @@ environment=ambiente #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1272,13 +1403,6 @@ name\ is\ null=nome \u00e9 nulo #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=O buffer byte de readBytesUntil() \u00e9 demasiado pequeno para os {0} bytes at\u00e9 e incluindo char {1} - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: erro interno.. n\u00e3o foi poss\u00edvel encontrar c\u00f3digo - #: Editor.java:932 serialMenu\ is\ null=serialMenu \u00e9 nulo @@ -1286,6 +1410,10 @@ serialMenu\ is\ null=serialMenu \u00e9 nulo #, java-format the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=a porta s\u00e9rie {0} selecionada n\u00e3o existe ou a placa n\u00e3o est\u00e1 ligada. +#: ../../../processing/app/Base.java:389 +#, java-format +unknown\ option\:\ {0}=op\u00e7\u00e3o desconhecida\: {0} + #: Preferences.java:391 upload=upload @@ -1304,3 +1432,35 @@ upload=upload #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"={0}\: Argumento inv\u00e1lido para --pref, deve ser da forma "pref\=valor" + +#: ../../../processing/app/Base.java:476 +#, java-format +{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"={0}\: Nome de placa inv\u00e1lido, deve ser da forma "pacote\:arquitectura\:placa" ou "pacote\:arquitectura\:placa\:op\u00e7\u00f5es" + +#: ../../../processing/app/Base.java:509 +#, java-format +{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"={0}\: Op\u00e7\u00e3o inv\u00e1lida para "{1}" op\u00e7\u00e3o para placa "{2}" + +#: ../../../processing/app/Base.java:507 +#, java-format +{0}\:\ Invalid\ option\ for\ board\ "{1}"={0}\: Op\u00e7\u00e3o inv\u00e1lida para a placa "{1}" + +#: ../../../processing/app/Base.java:502 +#, java-format +{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"={0}\: Op\u00e7\u00e3o inv\u00e1lida, deve ser da forma "nome\=valor" + +#: ../../../processing/app/Base.java:486 +#, java-format +{0}\:\ Unknown\ architecture={0}\: Arquitetura desconhecida + +#: ../../../processing/app/Base.java:491 +#, java-format +{0}\:\ Unknown\ board={0}\: Placa desconhecida + +#: ../../../processing/app/Base.java:481 +#, java-format +{0}\:\ Unknown\ package={0}\: Pacote inv\u00e1lido diff --git a/arduino-core/src/processing/app/i18n/Resources_ro.po b/arduino-core/src/processing/app/i18n/Resources_ro.po index d1a2d1a83..4bf0828c0 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ro.po +++ b/arduino-core/src/processing/app/i18n/Resources_ro.po @@ -36,6 +36,12 @@ msgstr "'Mouse' este compatibil doar cu Arduino Leonardo" msgid "(edit only when Arduino is not running)" msgstr "(editează doar atunci când Arduino IDE nu funcţionează)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -94,6 +100,10 @@ msgstr "Adaugă fişier..." msgid "Add Library..." msgstr "Adaugă biblioteca" +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "Albaneză" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -101,6 +111,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "A apărut o eroare în timpul corectării codării fişierului.\nNu salva aceasta schiţa deoarece se va suprascrie fişierul vechi.\nRedeschide schiţa şi încearcă din nou.\n" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -179,6 +203,30 @@ msgstr "Eşti sigur ca vrei să ştergi \"{0}\"?" msgid "Are you sure you want to delete this sketch?" msgstr "Eşti sigur că doreşti să ştergi această schiţa?" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "Argument necesar pentru --board" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "Argument necesar pentru --curdir" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "Argument necesar pentru --port" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "Argument necesar pentru --pref" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "Argument necesar pentru --preferences-file" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "Armeană" @@ -187,6 +235,10 @@ msgstr "Armeană" msgid "Asturian" msgstr "Asturiană" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "Auto formatare" @@ -228,6 +280,14 @@ msgstr "Linie eronata: {0}" msgid "Bad file selected" msgstr "Fişierul selectat este invalid" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "Bască" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "Belarusă" @@ -264,6 +324,10 @@ msgstr "Răsfoire" msgid "Build folder disappeared or could not be written" msgstr "Directorul 'build' a dispărut sau nu poate fi scris" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "Opțiunea pentru build a fost modificată, se execută rebuild all" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Bulgară" @@ -280,9 +344,15 @@ msgstr "Încărcă Bootloader" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "Se încarcă bootloader-ul în placa de dezvoltare (acest lucru o sa dureze un pic)..." -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" -msgstr "Nu se poate deschide schiţa sursă!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" +msgstr "" #: ../../../processing/app/Preferences.java:92 msgid "Canadian French" @@ -297,6 +367,10 @@ msgstr "Renunţă" msgid "Cannot Rename" msgstr "Nu pot redenumi" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "Revenire cursor (ENTER)" @@ -341,11 +415,6 @@ msgstr "Închide" msgid "Comment/Uncomment" msgstr "Pune comentariu/Elimină comentariu" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "Eroare de compilator, te rog trimite acest cod către {0}" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "Compilez schiţa..." @@ -453,10 +522,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Nu s-a putut citi setările implicite.\nVa trebui să reinstalezi Arduino IDE." -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "Nu se pot citi preferinţele din {0}" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "Nu se pot citi preferințele anterioare pentru build. Se executa rebuild all." #: Base.java:2482 #, java-format @@ -485,6 +553,10 @@ msgstr "Nu pot redenumi schiţa. (2)" msgid "Could not replace {0}" msgstr "Nu se poate înlocui {0}" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "Nu pot scrie în fișierul de preferințe pentru build." + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Nu am putut arhiva schiţa" @@ -554,6 +626,11 @@ msgstr "Salvare finalizată." msgid "Done burning bootloader." msgstr "Încărcarea bootloader-ului a fost finalizată." +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "Compilare terminata." @@ -562,6 +639,10 @@ msgstr "Compilare terminata." msgid "Done printing." msgstr "Tiparire finalizată." +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "Încărcare finalizata." @@ -665,6 +746,10 @@ msgstr "Eroare în timpul încărcării bootloader-ului." msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "Eroare în timpul încărcării bootloader-ului: lipseşte parametrul de configurare '{0}'" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -674,11 +759,25 @@ msgstr "Eroare la încărcarea codului {0}" msgid "Error while printing." msgstr "Eroare în timpul tipăririi." +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "Eroare în timpul încărcării: lipseşte parametrul de configurare '{0}'" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "Estoniană" @@ -699,6 +798,11 @@ msgstr "Exportul a fost anulat, modificările trebuiesc întâi salvate." msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "Nu am reușit să deschid schița : \"{0}\"" + #: Editor.java:491 msgid "File" msgstr "Fişier" @@ -746,9 +850,10 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "Mai multe informaţii despre instalarea bibliotecilor Arduino găseşti aici:http://arduino.cc/en/Guide/Libraries\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " -msgstr "Resetare forţată a portului folosind secvenţa open/close la 1200bps" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" +msgstr "" #: Preferences.java:95 msgid "French" @@ -896,9 +1001,9 @@ msgstr "Biblioteca a fost adăugată. Verifică meniul \"Importă bibliotecă\"" msgid "Lithuaninan" msgstr "Lituaniană" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" -msgstr "Memoria disponibilă este foarte redusă, pot apărea probleme de stabilitate" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." +msgstr "" #: Preferences.java:107 msgid "Marathi" @@ -912,6 +1017,10 @@ msgstr "Mesaj" msgid "Missing the */ from the end of a /* comment */" msgstr "Lipsă */ din sfârșitul unui /*comentariu*/" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "Alte preferinţe pot fi editate direct în fişier" @@ -920,6 +1029,18 @@ msgstr "Alte preferinţe pot fi editate direct în fişier" msgid "Moving" msgstr "Mut" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "Trebuie să specificați exact un fișier schiță" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "N'Ko" + #: Sketch.java:282 msgid "Name for new file:" msgstr "Numele noului fişier" @@ -956,6 +1077,10 @@ msgstr "Fila următoare" msgid "No" msgstr "Nu" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "Nu este selectată nici o placă de dezvoltare; te rog alege una din meniul Instrumente>Placă de dezvoltare" @@ -964,6 +1089,10 @@ msgstr "Nu este selectată nici o placă de dezvoltare; te rog alege una din men msgid "No changes necessary for Auto Format." msgstr "Nu a rezultat nici o modificare în urma auto formatării." +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "Nici un fişier nu a fost adăugat schiţei." @@ -976,6 +1105,10 @@ msgstr "Nu este disponibil nici un lansator" msgid "No line ending" msgstr "Fără editarea liniei" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "Pe bune, e timpul sa ieşi la aer." @@ -985,6 +1118,19 @@ msgstr "Pe bune, e timpul sa ieşi la aer." msgid "No reference available for \"{0}\"" msgstr "Nici un rezultat disponibil pentru \"{0}\"" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "Nu s-au găsit coduri valide" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "Nu s-au gasit nuclee configurate valid! Anulare..." @@ -1021,6 +1167,10 @@ msgstr "OK" msgid "One file added to the sketch." msgstr "Un fişier a fost adăugat schiţei." +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "Deschide" @@ -1057,14 +1207,27 @@ msgstr "Lipire" msgid "Persian" msgstr "Persană" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "Persană (Iran)" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "Te rog importa biblioteca SPI din meniul Schiţe > Importă bibliotecă." +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "Te rog importă biblioteca Wire din meniul Schiţă > Imporă bibliotecă" + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "Te rog instalează JDK 1.5 sau o versiune ulterioară" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "Poloneză" @@ -1227,10 +1390,18 @@ msgstr "Salvaţi modificările pentru \"{0}\"?" msgid "Save sketch folder as..." msgstr "Salvează directorul schiţei ca..." +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "Salvez..." +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "Selectează (sau creează un nou) director pentru schiţe..." @@ -1263,20 +1434,6 @@ msgstr "Trimite" msgid "Serial Monitor" msgstr "Terminal serial" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "Portul serial ''{0}'' este deja în uz. Verifică ce programe îl folosesc şi încearcă să le închizi." - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "Portul serial ''{0}'' este deja în uz. Verifică ce programe îl folosesc şi încearcă să le închizi." - #: Serial.java:194 #, java-format msgid "" @@ -1356,6 +1513,10 @@ msgstr "Dosarul cu schiţe a dispărut" msgid "Sketchbook location:" msgstr "Locaţia dosarului cu schiţe:" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "Schițe (*.ino, *.pde)" @@ -1406,6 +1567,10 @@ msgstr "Tamilă" msgid "The 'BYTE' keyword is no longer supported." msgstr "Nu mai puteţi folosi cuvântul cheie 'BYTE'." +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "Clasa Client a fost redenumită în EthernetClient." @@ -1473,11 +1638,11 @@ msgid "" "but anything besides the code will be lost." msgstr "Directorul schiţei a dispărut.\nVoi încerca să salvez din nou în aceiaşi locaţie,\ndar se vor pierde orice alte informaţii, mai puţin codul." -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." +"They should also be less than 64 characters long." msgstr "A fost necesar să modific numele schiţei. Numele unei schiţe poate conţine\ndoar caractere ASCII şi numere (dar nu poate începe cu un număr).\nDe asemenea nu poate avea mai mult de 64 caractere." #: Base.java:259 @@ -1489,6 +1654,12 @@ msgid "" "himself in the third person." msgstr "Dosarul cu schiţe nu mai exista.\nArduino v-a comuta pe locaţia implicită a directorului\nde schiţe, şi dacă e necesar v-a crea un nou dosar cu schiţe.\nArduino nu va mai vorbi despre el la persoana a trei-a." +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1631,6 +1802,13 @@ msgstr "Vietnameză" msgid "Visit Arduino.cc" msgstr "Vizitaţi Arduino.cc" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "AVERTISMENT: biblioteca {0} pretinde rularea pe arhitectura(ile) {1} și poate fi incompatibilă cu board-ul curent care rulează pe arhitectura(ile) {2}." + #: Base.java:2128 msgid "Warning" msgstr "Avertisment" @@ -1799,10 +1977,6 @@ msgstr "mediu de programare" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "http://github.com/arduino/Arduino/issues" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1832,17 +2006,6 @@ msgstr "numele este inexistent" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "Buferul este prea mic pentru cei {0} bytes specificaţi ca parametru pentru funcţia readBytesUntil() luând în considerare şi caracterul menţionat la {1}" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "removeCode: internal error.. nu am putut găsi codul" - #: Editor.java:932 msgid "serialMenu is null" msgstr "serialMenu este inexistent" @@ -1853,6 +2016,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "portul serial {0} nu există sau placa de dezvoltare nu este conectată" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "opțiune necunoscută : {0}" + #: Preferences.java:391 msgid "upload" msgstr "compilare" @@ -1876,3 +2044,45 @@ msgstr "{0} | Arduino {1}" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "{0}: Argument invalid atașat de --pref, ar trebuii să fie de forma \"pref=value\"" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "{0}: nume board incorect, ar trebui să fie de forma \"package:arch:board\" sau \"package:arch:board:options\"" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "{0}: opțiune nevalidă pentru opțiunea \"{1}\" pentru board \"{2}\"" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "{0}: Opțiune invalidă pentru board \"{1}\"" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "{0}: Opțiune invalidă, ar trebuii să fie de forma \"name=value\"" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "{0}: Arhitectură necunoscută" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "{0}: Board necunoscut" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "{0}: Pachet necunoscut" diff --git a/arduino-core/src/processing/app/i18n/Resources_ro.properties b/arduino-core/src/processing/app/i18n/Resources_ro.properties index af684c08e..96f7fdad3 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ro.properties +++ b/arduino-core/src/processing/app/i18n/Resources_ro.properties @@ -20,6 +20,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(editeaz\u0103 doar atunci c\u00e2nd Arduino IDE nu func\u0163ioneaz\u0103) +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -56,9 +59,23 @@ Add\ File...=Adaug\u0103 fi\u015fier... #: Base.java:963 Add\ Library...=Adaug\u0103 biblioteca +#: ../../../processing/app/Preferences.java:96 +Albanian=Albanez\u0103 + #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=A ap\u0103rut o eroare \u00een timpul corect\u0103rii cod\u0103rii fi\u015fierului.\nNu salva aceasta schi\u0163a deoarece se va suprascrie fi\u015fierul vechi.\nRedeschide schi\u0163a \u015fi \u00eencearc\u0103 din nou.\n +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=O eroare necunoscuta \u00een timp ce se \u00eenc\u0103rca\ncodul specific pentru sistemul dumneavoastr\u0103 de operare. @@ -108,12 +125,33 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=E\u015fti sigur ca vrei s\u0103 \u #: Sketch.java:587 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=E\u015fti sigur c\u0103 dore\u015fti s\u0103 \u015ftergi aceast\u0103 schi\u0163a? +#: ../../../processing/app/Base.java:356 +Argument\ required\ for\ --board=Argument necesar pentru --board + +#: ../../../processing/app/Base.java:370 +Argument\ required\ for\ --curdir=Argument necesar pentru --curdir + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +Argument\ required\ for\ --port=Argument necesar pentru --port + +#: ../../../processing/app/Base.java:377 +Argument\ required\ for\ --pref=Argument necesar pentru --pref + +#: ../../../processing/app/Base.java:384 +Argument\ required\ for\ --preferences-file=Argument necesar pentru --preferences-file + #: ../../../processing/app/Preferences.java:137 Armenian=Armean\u0103 #: ../../../processing/app/Preferences.java:138 Asturian=Asturian\u0103 +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 Auto\ Format=Auto formatare @@ -145,6 +183,12 @@ Bad\ error\ line\:\ {0}=Linie eronata\: {0} #: Editor.java:2136 Bad\ file\ selected=Fi\u015fierul selectat este invalid +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +Basque=Basc\u0103 + #: ../../../processing/app/Preferences.java:139 Belarusian=Belarus\u0103 @@ -171,6 +215,9 @@ Browse=R\u0103sfoire #: Sketch.java:1392 Sketch.java:1423 Build\ folder\ disappeared\ or\ could\ not\ be\ written=Directorul 'build' a disp\u0103rut sau nu poate fi scris +#: ../../../processing/app/Sketch.java:1530 +Build\ options\ changed,\ rebuilding\ all=Op\u021biunea pentru build a fost modificat\u0103, se execut\u0103 rebuild all + #: ../../../processing/app/Preferences.java:80 Bulgarian=Bulgar\u0103 @@ -183,8 +230,13 @@ Burn\ Bootloader=\u00cenc\u0103rc\u0103 Bootloader #: Editor.java:2504 Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Se \u00eencarc\u0103 bootloader-ul \u00een placa de dezvoltare (acest lucru o sa dureze un pic)... -#: ../../../processing/app/Base.java:368 -Can't\ open\ source\ sketch\!=Nu se poate deschide schi\u0163a surs\u0103\! +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 Canadian\ French=Francez\u0103 canadian\u0103 @@ -196,6 +248,9 @@ Cancel=Renun\u0163\u0103 #: Sketch.java:455 Cannot\ Rename=Nu pot redenumi +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 Carriage\ return=Revenire cursor (ENTER) @@ -229,10 +284,6 @@ Close=\u00cenchide #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=Pune comentariu/Elimin\u0103 comentariu -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Eroare de compilator, te rog trimite acest cod c\u0103tre {0} - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=Compilez schi\u0163a... @@ -308,9 +359,8 @@ Could\ not\ re-save\ sketch=Nu am putut re-salva schi\u0163a. #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Nu s-a putut citi set\u0103rile implicite.\nVa trebui s\u0103 reinstalezi Arduino IDE. -#: Preferences.java:258 -#, java-format -Could\ not\ read\ preferences\ from\ {0}=Nu se pot citi preferin\u0163ele din {0} +#: ../../../processing/app/Sketch.java:1525 +Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=Nu se pot citi preferin\u021bele anterioare pentru build. Se executa rebuild all. #: Base.java:2482 #, java-format @@ -333,6 +383,9 @@ Could\ not\ rename\ the\ sketch.\ (2)=Nu pot redenumi schi\u0163a. (2) #, java-format Could\ not\ replace\ {0}=Nu se poate \u00eenlocui {0} +#: ../../../processing/app/Sketch.java:1579 +Could\ not\ write\ build\ preferences\ file=Nu pot scrie \u00een fi\u0219ierul de preferin\u021be pentru build. + #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Nu am putut arhiva schi\u0163a @@ -381,12 +434,19 @@ Done\ Saving.=Salvare finalizat\u0103. #: Editor.java:2510 Done\ burning\ bootloader.=\u00cenc\u0103rcarea bootloader-ului a fost finalizat\u0103. +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=Compilare terminata. #: Editor.java:2564 Done\ printing.=Tiparire finalizat\u0103. +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=\u00cenc\u0103rcare finalizata. @@ -465,6 +525,9 @@ Error\ while\ burning\ bootloader.=Eroare \u00een timpul \u00eenc\u0103rc\u0103r #: ../../../processing/app/Editor.java:2555 Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=Eroare \u00een timpul \u00eenc\u0103rc\u0103rii bootloader-ului\: lipse\u015fte parametrul de configurare '{0}' +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=Eroare la \u00eenc\u0103rcarea codului {0} @@ -472,10 +535,21 @@ Error\ while\ loading\ code\ {0}=Eroare la \u00eenc\u0103rcarea codului {0} #: Editor.java:2567 Error\ while\ printing.=Eroare \u00een timpul tip\u0103ririi. +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=Eroare \u00een timpul \u00eenc\u0103rc\u0103rii\: lipse\u015fte parametrul de configurare '{0}' +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 Estonian=Estonian\u0103 @@ -491,6 +565,10 @@ Export\ canceled,\ changes\ must\ first\ be\ saved.=Exportul a fost anulat, modi #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +Failed\ to\ open\ sketch\:\ "{0}"=Nu am reu\u0219it s\u0103 deschid schi\u021ba \: "{0}" + #: Editor.java:491 File=Fi\u015fier @@ -525,8 +603,9 @@ Fix\ Encoding\ &\ Reload=Reparare fi\u015fier #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=Mai multe informa\u0163ii despre instalarea bibliotecilor Arduino g\u0103se\u015fti aici\:http\://arduino.cc/en/Guide/Libraries\n -#: debug/BasicUploader.java:80 -Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =Resetare for\u0163at\u0103 a portului folosind secven\u0163a open/close la 1200bps +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=Francez\u0103 @@ -630,8 +709,8 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Biblioteca #: Preferences.java:106 Lithuaninan=Lituanian\u0103 -#: ../../../processing/app/Sketch.java:1660 -Low\ memory\ available,\ stability\ problems\ may\ occur=Memoria disponibil\u0103 este foarte redus\u0103, pot ap\u0103rea probleme de stabilitate +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 Marathi=Marathi @@ -642,12 +721,24 @@ Message=Mesaj #: ../../../processing/app/preproc/PdePreprocessor.java:412 Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Lips\u0103 */ din sf\u00e2r\u0219itul unui /*comentariu*/ +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Alte preferin\u0163e pot fi editate direct \u00een fi\u015fier #: Editor.java:2156 Moving=Mut +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +Must\ specify\ exactly\ one\ sketch\ file=Trebuie s\u0103 specifica\u021bi exact un fi\u0219ier schi\u021b\u0103 + +#: ../../../processing/app/Preferences.java:158 +N'Ko=N'Ko + #: Sketch.java:282 Name\ for\ new\ file\:=Numele noului fi\u015fier @@ -675,12 +766,18 @@ Next\ Tab=Fila urm\u0103toare #: Preferences.java:78 UpdateCheck.java:108 No=Nu +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Nu este selectat\u0103 nici o plac\u0103 de dezvoltare; te rog alege una din meniul Instrumente>Plac\u0103 de dezvoltare #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Nu a rezultat nici o modificare \u00een urma auto format\u0103rii. +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=Nici un fi\u015fier nu a fost ad\u0103ugat schi\u0163ei. @@ -690,6 +787,9 @@ No\ launcher\ available=Nu este disponibil nici un lansator #: SerialMonitor.java:112 No\ line\ ending=F\u0103r\u0103 editarea liniei +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Pe bune, e timpul sa ie\u015fi la aer. @@ -697,6 +797,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Pe bune, e timpul sa ie\u015 #, java-format No\ reference\ available\ for\ "{0}"=Nici un rezultat disponibil pentru "{0}" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +No\ valid\ code\ files\ found=Nu s-au g\u0103sit coduri valide + #: ../../../processing/app/Base.java:309 No\ valid\ configured\ cores\ found\!\ Exiting...=Nu s-au gasit nuclee configurate valid\! Anulare... @@ -723,6 +833,9 @@ OK=OK #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=Un fi\u015fier a fost ad\u0103ugat schi\u0163ei. +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=Deschide @@ -750,12 +863,22 @@ Paste=Lipire #: Preferences.java:109 Persian=Persan\u0103 +#: ../../../processing/app/Preferences.java:161 +Persian\ (Iran)=Persan\u0103 (Iran) + #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Te rog importa biblioteca SPI din meniul Schi\u0163e > Import\u0103 bibliotec\u0103. +#: ../../../processing/app/debug/Compiler.java:529 +Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Te rog import\u0103 biblioteca Wire din meniul Schi\u0163\u0103 > Impor\u0103 bibliotec\u0103 + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=Te rog instaleaz\u0103 JDK 1.5 sau o versiune ulterioar\u0103 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 Polish=Polonez\u0103 @@ -877,9 +1000,15 @@ Save\ changes\ to\ "{0}"?\ \ =Salva\u0163i modific\u0103rile pentru "{0}"? #: Sketch.java:825 Save\ sketch\ folder\ as...=Salveaz\u0103 directorul schi\u0163ei ca... +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=Salvez... +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=Selecteaz\u0103 (sau creeaz\u0103 un nou) director pentru schi\u0163e... @@ -904,14 +1033,6 @@ Send=Trimite #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=Terminal serial -#: Serial.java:174 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Portul serial ''{0}'' este deja \u00een uz. Verific\u0103 ce programe \u00eel folosesc \u015fi \u00eencearc\u0103 s\u0103 le \u00eenchizi. - -#: Serial.java:121 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=Portul serial ''{0}'' este deja \u00een uz. Verific\u0103 ce programe \u00eel folosesc \u015fi \u00eencearc\u0103 s\u0103 le \u00eenchizi. - #: Serial.java:194 #, java-format Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Nu am g\u0103sit portul serial ''{0}''. Ai f\u0103cut corect selec\u0163ia \u00een meniul Instrumente> Port serial? @@ -966,6 +1087,9 @@ Sketchbook\ folder\ disappeared=Dosarul cu schi\u0163e a disp\u0103rut #: Preferences.java:315 Sketchbook\ location\:=Loca\u0163ia dosarului cu schi\u0163e\: +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 Sketches\ (*.ino,\ *.pde)=Schi\u021be (*.ino, *.pde) @@ -1000,6 +1124,9 @@ Tamil=Tamil\u0103 #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=Nu mai pute\u0163i folosi cuv\u00e2ntul cheie 'BYTE'. +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Clasa Client a fost redenumit\u0103 \u00een EthernetClient. @@ -1036,12 +1163,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Directorul schi\u0163ei a disp\u0103rut.\nVoi \u00eencerca s\u0103 salvez din nou \u00een aceia\u015fi loca\u0163ie,\ndar se vor pierde orice alte informa\u0163ii, mai pu\u0163in codul. -#: Sketch.java:2018 -The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=A fost necesar s\u0103 modific numele schi\u0163ei. Numele unei schi\u0163e poate con\u0163ine\ndoar caractere ASCII \u015fi numere (dar nu poate \u00eencepe cu un num\u0103r).\nDe asemenea nu poate avea mai mult de 64 caractere. +#: ../../../processing/app/Sketch.java:2028 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.=A fost necesar s\u0103 modific numele schi\u0163ei. Numele unei schi\u0163e poate con\u0163ine\ndoar caractere ASCII \u015fi numere (dar nu poate \u00eencepe cu un num\u0103r).\nDe asemenea nu poate avea mai mult de 64 caractere. #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Dosarul cu schi\u0163e nu mai exista.\nArduino v-a comuta pe loca\u0163ia implicit\u0103 a directorului\nde schi\u0163e, \u015fi dac\u0103 e necesar v-a crea un nou dosar cu schi\u0163e.\nArduino nu va mai vorbi despre el la persoana a trei-a. +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Acest fi\u015fier a fost deja copiat \u00een\nloca\u0163ia \u00een care \u00eencerci s\u0103-l adaugi.\nM\u0103 opresc aici. @@ -1145,6 +1275,10 @@ Vietnamese=Vietnamez\u0103 #: Editor.java:1105 Visit\ Arduino.cc=Vizita\u0163i Arduino.cc +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=AVERTISMENT\: biblioteca {0} pretinde rularea pe arhitectura(ile) {1} \u0219i poate fi incompatibil\u0103 cu board-ul curent care ruleaz\u0103 pe arhitectura(ile) {2}. + #: Base.java:2128 Warning=Avertisment @@ -1243,9 +1377,6 @@ environment=mediu de programare #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1268,13 +1399,6 @@ name\ is\ null=numele este inexistent #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=Buferul este prea mic pentru cei {0} bytes specifica\u0163i ca parametru pentru func\u0163ia readBytesUntil() lu\u00e2nd \u00een considerare \u015fi caracterul men\u0163ionat la {1} - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: internal error.. nu am putut g\u0103si codul - #: Editor.java:932 serialMenu\ is\ null=serialMenu este inexistent @@ -1282,6 +1406,10 @@ serialMenu\ is\ null=serialMenu este inexistent #, java-format the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=portul serial {0} nu exist\u0103 sau placa de dezvoltare nu este conectat\u0103 +#: ../../../processing/app/Base.java:389 +#, java-format +unknown\ option\:\ {0}=op\u021biune necunoscut\u0103 \: {0} + #: Preferences.java:391 upload=compilare @@ -1300,3 +1428,35 @@ upload=compilare #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"={0}\: Argument invalid ata\u0219at de --pref, ar trebuii s\u0103 fie de forma "pref\=value" + +#: ../../../processing/app/Base.java:476 +#, java-format +{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"={0}\: nume board incorect, ar trebui s\u0103 fie de forma "package\:arch\:board" sau "package\:arch\:board\:options" + +#: ../../../processing/app/Base.java:509 +#, java-format +{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"={0}\: op\u021biune nevalid\u0103 pentru op\u021biunea "{1}" pentru board "{2}" + +#: ../../../processing/app/Base.java:507 +#, java-format +{0}\:\ Invalid\ option\ for\ board\ "{1}"={0}\: Op\u021biune invalid\u0103 pentru board "{1}" + +#: ../../../processing/app/Base.java:502 +#, java-format +{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"={0}\: Op\u021biune invalid\u0103, ar trebuii s\u0103 fie de forma "name\=value" + +#: ../../../processing/app/Base.java:486 +#, java-format +{0}\:\ Unknown\ architecture={0}\: Arhitectur\u0103 necunoscut\u0103 + +#: ../../../processing/app/Base.java:491 +#, java-format +{0}\:\ Unknown\ board={0}\: Board necunoscut + +#: ../../../processing/app/Base.java:481 +#, java-format +{0}\:\ Unknown\ package={0}\: Pachet necunoscut diff --git a/arduino-core/src/processing/app/i18n/Resources_ru.po b/arduino-core/src/processing/app/i18n/Resources_ru.po index 175448a87..4ac759f10 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ru.po +++ b/arduino-core/src/processing/app/i18n/Resources_ru.po @@ -33,6 +33,12 @@ msgstr "Поддержка мыши только в Arduino Leonardo" msgid "(edit only when Arduino is not running)" msgstr "(редактировать, только когда Arduino не запущен)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -91,6 +97,10 @@ msgstr "Добавить файл..." msgid "Add Library..." msgstr "Добавить библиотеку..." +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -98,6 +108,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -176,6 +200,30 @@ msgstr "Вы действительно хотите удалить \"{0}\"?" msgid "Are you sure you want to delete this sketch?" msgstr "Вы действительно хотите удалить этот эскиз?" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "Армянский" @@ -184,6 +232,10 @@ msgstr "Армянский" msgid "Asturian" msgstr "Астурийский" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "АвтоФорматирование" @@ -225,6 +277,14 @@ msgstr "Плохая ошибка в строке {0}" msgid "Bad file selected" msgstr "Это плохой файл" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "Белорусский" @@ -261,6 +321,10 @@ msgstr "Обзор" msgid "Build folder disappeared or could not be written" msgstr "Папка сборки исчезла или не имеет доступ на запись" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Болгарский - Bulgarian" @@ -277,9 +341,15 @@ msgstr "Записать Загрузчик" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "Загрузка бутлоадера в плату (это может занять минуту)..." -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" -msgstr "Невозможно открыть эскиз!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" +msgstr "" #: ../../../processing/app/Preferences.java:92 msgid "Canadian French" @@ -294,6 +364,10 @@ msgstr "Отмена" msgid "Cannot Rename" msgstr "Не переименовывается" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "Возврат каретки" @@ -338,11 +412,6 @@ msgstr "Закрыть" msgid "Comment/Uncomment" msgstr "Добавить/Удалить комментарий" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "Ошибка компилятора. Пожалуйста, отправьте этот код {0}" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "Компиляция скетча..." @@ -450,9 +519,8 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Умолчания не считываются.\nПереустановите Arduino." -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" msgstr "" #: Base.java:2482 @@ -482,6 +550,10 @@ msgstr "Невозможно переименовать эскиз. (2)" msgid "Could not replace {0}" msgstr "{0} не заменяется" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Эскиз не архивируется" @@ -551,6 +623,11 @@ msgstr "Сохранили." msgid "Done burning bootloader." msgstr "Запись загрузчика завершена" +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "Компиляция завершена" @@ -559,6 +636,10 @@ msgstr "Компиляция завершена" msgid "Done printing." msgstr "Напечатали." +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "Вгрузили." @@ -662,6 +743,10 @@ msgstr "Ошибка при записи загрузчика" msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -671,11 +756,25 @@ msgstr "Ошибка при загрузке кода {0}" msgid "Error while printing." msgstr "Не напечаталось." +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "Эстонский - Estonian" @@ -696,6 +795,11 @@ msgstr "Экспорт отменен, изменения должны быть msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "" + #: Editor.java:491 msgid "File" msgstr "Файл" @@ -743,9 +847,10 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "За информацией по установке библиотек, курить: http://arduino.cc/en/Guide/Libraries\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " -msgstr "Перезагрузка платы открытием/закрытием порта на 1200bps" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" +msgstr "" #: Preferences.java:95 msgid "French" @@ -893,9 +998,9 @@ msgstr "Библиотеки добавлены, смотрите меню \"И msgid "Lithuaninan" msgstr "Литовский - Lithuaninan" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" -msgstr "Мало памяти, могут возникнуть проблемы со стабильностью" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." +msgstr "" #: Preferences.java:107 msgid "Marathi" @@ -909,6 +1014,10 @@ msgstr "Сообщение" msgid "Missing the */ from the end of a /* comment */" msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "Больше опций можно редактировать непосредственно в файле" @@ -917,6 +1026,18 @@ msgstr "Больше опций можно редактировать непос msgid "Moving" msgstr "Перемещение" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "" + #: Sketch.java:282 msgid "Name for new file:" msgstr "Имя для нового файла:" @@ -953,6 +1074,10 @@ msgstr "Следующая вкладка" msgid "No" msgstr "Нет" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "Не выбрана плата; пожалуйста, выберите плату из меню Сервис > Плата." @@ -961,6 +1086,10 @@ msgstr "Не выбрана плата; пожалуйста, выберите msgid "No changes necessary for Auto Format." msgstr "" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "Файлы не были добавлены в скетч" @@ -973,6 +1102,10 @@ msgstr "Загрузчик не доступен" msgid "No line ending" msgstr "Не найден конец строки" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "Да хорош, пора тебе пойти проветриться." @@ -982,6 +1115,19 @@ msgstr "Да хорош, пора тебе пойти проветриться." msgid "No reference available for \"{0}\"" msgstr "В справочнике нет ничего похожего на \"{0}\"" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "" @@ -1018,6 +1164,10 @@ msgstr "ОК" msgid "One file added to the sketch." msgstr "Один файл добавлен в эскиз." +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "Открыть" @@ -1054,14 +1204,27 @@ msgstr "Вставить" msgid "Persian" msgstr "Персидский - Persian" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "Пожалуйста импортируйте библиотеку SPI из меню Эскиз > Импорт библиотеки." +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "" + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "Пожалуйста, установите JDK версии 1.5 или новее" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "Польский - " @@ -1224,10 +1387,18 @@ msgstr "Сохранить изменения в \"{0}\"? " msgid "Save sketch folder as..." msgstr "Сохранить папку скетча как..." +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "Сохраняем..." +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "Выберите (или создайте новую) папку для скетчей..." @@ -1260,20 +1431,6 @@ msgstr "Отправить" msgid "Serial Monitor" msgstr "Монитор последовательного порта" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "" - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "" - #: Serial.java:194 #, java-format msgid "" @@ -1353,6 +1510,10 @@ msgstr "Исчезла папка Sketchbook" msgid "Sketchbook location:" msgstr "Размещение папки скетчей" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "" @@ -1403,6 +1564,10 @@ msgstr "Тамильский - Tamil" msgid "The 'BYTE' keyword is no longer supported." msgstr "Ключевое слово \"BYTE\" больше не поддерживается" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "Класс Client был переименован в EthernetClient." @@ -1470,12 +1635,12 @@ msgid "" "but anything besides the code will be lost." msgstr "Папка скетчей исчезла. Будет попытка повторно сохранить в том же месте, но всё, кроме кода, будет потеряно." -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." -msgstr "Имя эскиза автоматически изменено. Имя эскиза может\nсостоять только из символов (ASCII) и цифр, и не может\nначинаться с цифры и быть длиннее 64 знаков" +"They should also be less than 64 characters long." +msgstr "" #: Base.java:259 msgid "" @@ -1486,6 +1651,12 @@ msgid "" "himself in the third person." msgstr "Папка Sketchbook больше не существует. Arduino переключится на папку по умолчанию, и создаст новую папку Sketchbook, если потребуется. Arduino прекратит говорить о себе в третьем лице." +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1628,6 +1799,13 @@ msgstr "Вьетнамский" msgid "Visit Arduino.cc" msgstr "Посетить Arduino.cc" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "" + #: Base.java:2128 msgid "Warning" msgstr "Предупреждение" @@ -1796,10 +1974,6 @@ msgstr "окружение" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "http://github.com/arduino/Arduino/issues" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1829,17 +2003,6 @@ msgstr "совсем нет имени" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "removeCode: внутренняя ошибка... не могу найти код" - #: Editor.java:932 msgid "serialMenu is null" msgstr "" @@ -1850,6 +2013,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "" + #: Preferences.java:391 msgid "upload" msgstr "Загрузить" @@ -1873,3 +2041,45 @@ msgstr "{0} | Arduino {1}" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "" diff --git a/arduino-core/src/processing/app/i18n/Resources_ru.properties b/arduino-core/src/processing/app/i18n/Resources_ru.properties index 7acda03eb..4d00fc8b1 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ru.properties +++ b/arduino-core/src/processing/app/i18n/Resources_ru.properties @@ -17,6 +17,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c, \u0442\u043e\u043b\u044c\u043a\u043e \u043a\u043e\u0433\u0434\u0430 Arduino \u043d\u0435 \u0437\u0430\u043f\u0443\u0449\u0435\u043d) +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -53,9 +56,23 @@ Add\ File...=\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0444\u0430\u0439 #: Base.java:963 Add\ Library...=\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0443... +#: ../../../processing/app/Preferences.java:96 +!Albanian= + #: tools/FixEncoding.java:77 !An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n= +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u0430\u044f \u043e\u0448\u0438\u0431\u043a\u0430 \u0432\u043e \u0432\u0440\u0435\u043c\u044f \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438 \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u043e-\u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0433\u043e \u043a\u043e\u0434\u0430 \u0434\u043b\u044f \u0432\u0430\u0448\u0435\u0439 \u043c\u0430\u0448\u0438\u043d\u044b. @@ -105,12 +122,33 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u0412\u044b \u0434\u0435\u0439\u0 #: Sketch.java:587 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u044d\u0442\u043e\u0442 \u044d\u0441\u043a\u0438\u0437? +#: ../../../processing/app/Base.java:356 +!Argument\ required\ for\ --board= + +#: ../../../processing/app/Base.java:370 +!Argument\ required\ for\ --curdir= + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +!Argument\ required\ for\ --port= + +#: ../../../processing/app/Base.java:377 +!Argument\ required\ for\ --pref= + +#: ../../../processing/app/Base.java:384 +!Argument\ required\ for\ --preferences-file= + #: ../../../processing/app/Preferences.java:137 Armenian=\u0410\u0440\u043c\u044f\u043d\u0441\u043a\u0438\u0439 #: ../../../processing/app/Preferences.java:138 Asturian=\u0410\u0441\u0442\u0443\u0440\u0438\u0439\u0441\u043a\u0438\u0439 +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 Auto\ Format=\u0410\u0432\u0442\u043e\u0424\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 @@ -142,6 +180,12 @@ Bad\ error\ line\:\ {0}=\u041f\u043b\u043e\u0445\u0430\u044f \u043e\u0448\u0438\ #: Editor.java:2136 Bad\ file\ selected=\u042d\u0442\u043e \u043f\u043b\u043e\u0445\u043e\u0439 \u0444\u0430\u0439\u043b +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +!Basque= + #: ../../../processing/app/Preferences.java:139 Belarusian=\u0411\u0435\u043b\u043e\u0440\u0443\u0441\u0441\u043a\u0438\u0439 @@ -168,6 +212,9 @@ Browse=\u041e\u0431\u0437\u043e\u0440 #: Sketch.java:1392 Sketch.java:1423 Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u041f\u0430\u043f\u043a\u0430 \u0441\u0431\u043e\u0440\u043a\u0438 \u0438\u0441\u0447\u0435\u0437\u043b\u0430 \u0438\u043b\u0438 \u043d\u0435 \u0438\u043c\u0435\u0435\u0442 \u0434\u043e\u0441\u0442\u0443\u043f \u043d\u0430 \u0437\u0430\u043f\u0438\u0441\u044c +#: ../../../processing/app/Sketch.java:1530 +!Build\ options\ changed,\ rebuilding\ all= + #: ../../../processing/app/Preferences.java:80 Bulgarian=\u0411\u043e\u043b\u0433\u0430\u0440\u0441\u043a\u0438\u0439 - Bulgarian @@ -180,8 +227,13 @@ Burn\ Bootloader=\u0417\u0430\u043f\u0438\u0441\u0430\u0442\u044c \u0417\u0430\u #: Editor.java:2504 Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u0431\u0443\u0442\u043b\u043e\u0430\u0434\u0435\u0440\u0430 \u0432 \u043f\u043b\u0430\u0442\u0443 (\u044d\u0442\u043e \u043c\u043e\u0436\u0435\u0442 \u0437\u0430\u043d\u044f\u0442\u044c \u043c\u0438\u043d\u0443\u0442\u0443)... -#: ../../../processing/app/Base.java:368 -Can't\ open\ source\ sketch\!=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043e\u0442\u043a\u0440\u044b\u0442\u044c \u044d\u0441\u043a\u0438\u0437\! +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 Canadian\ French=\u041a\u0430\u043d\u0430\u0434\u0441\u043a\u0438\u0439 \u0424\u0440\u0430\u043d\u0446\u0443\u0437\u0441\u043a\u0438\u0439 - Canadian French @@ -193,6 +245,9 @@ Cancel=\u041e\u0442\u043c\u0435\u043d\u0430 #: Sketch.java:455 Cannot\ Rename=\u041d\u0435 \u043f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u044b\u0432\u0430\u0435\u0442\u0441\u044f +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 Carriage\ return=\u0412\u043e\u0437\u0432\u0440\u0430\u0442 \u043a\u0430\u0440\u0435\u0442\u043a\u0438 @@ -226,10 +281,6 @@ Close=\u0417\u0430\u043a\u0440\u044b\u0442\u044c #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c/\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0439 -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=\u041e\u0448\u0438\u0431\u043a\u0430 \u043a\u043e\u043c\u043f\u0438\u043b\u044f\u0442\u043e\u0440\u0430. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u043e\u0442\u043f\u0440\u0430\u0432\u044c\u0442\u0435 \u044d\u0442\u043e\u0442 \u043a\u043e\u0434 {0} - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=\u041a\u043e\u043c\u043f\u0438\u043b\u044f\u0446\u0438\u044f \u0441\u043a\u0435\u0442\u0447\u0430... @@ -305,9 +356,8 @@ Could\ not\ re-save\ sketch=\u042d\u0441\u043a\u0438\u0437 \u043d\u0435 \u043f\u #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u0423\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044f \u043d\u0435 \u0441\u0447\u0438\u0442\u044b\u0432\u0430\u044e\u0442\u0441\u044f.\n\u041f\u0435\u0440\u0435\u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0435 Arduino. -#: Preferences.java:258 -#, java-format -!Could\ not\ read\ preferences\ from\ {0}= +#: ../../../processing/app/Sketch.java:1525 +!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= #: Base.java:2482 #, java-format @@ -330,6 +380,9 @@ Could\ not\ rename\ the\ sketch.\ (2)=\u041d\u0435\u0432\u043e\u0437\u043c\u043e #, java-format Could\ not\ replace\ {0}={0} \u043d\u0435 \u0437\u0430\u043c\u0435\u043d\u044f\u0435\u0442\u0441\u044f +#: ../../../processing/app/Sketch.java:1579 +!Could\ not\ write\ build\ preferences\ file= + #: tools/Archiver.java:74 Couldn't\ archive\ sketch=\u042d\u0441\u043a\u0438\u0437 \u043d\u0435 \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0443\u0435\u0442\u0441\u044f @@ -378,12 +431,19 @@ Done\ Saving.=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u043b\u0438. #: Editor.java:2510 Done\ burning\ bootloader.=\u0417\u0430\u043f\u0438\u0441\u044c \u0437\u0430\u0433\u0440\u0443\u0437\u0447\u0438\u043a\u0430 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0430 +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=\u041a\u043e\u043c\u043f\u0438\u043b\u044f\u0446\u0438\u044f \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0430 #: Editor.java:2564 Done\ printing.=\u041d\u0430\u043f\u0435\u0447\u0430\u0442\u0430\u043b\u0438. +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=\u0412\u0433\u0440\u0443\u0437\u0438\u043b\u0438. @@ -462,6 +522,9 @@ Error\ while\ burning\ bootloader.=\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u #: ../../../processing/app/Editor.java:2555 !Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0435 \u043a\u043e\u0434\u0430 {0} @@ -469,10 +532,21 @@ Error\ while\ loading\ code\ {0}=\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u04 #: Editor.java:2567 Error\ while\ printing.=\u041d\u0435 \u043d\u0430\u043f\u0435\u0447\u0430\u0442\u0430\u043b\u043e\u0441\u044c. +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 !Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 Estonian=\u042d\u0441\u0442\u043e\u043d\u0441\u043a\u0438\u0439 - Estonian @@ -488,6 +562,10 @@ Export\ canceled,\ changes\ must\ first\ be\ saved.=\u042d\u043a\u0441\u043f\u04 #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +!Failed\ to\ open\ sketch\:\ "{0}"= + #: Editor.java:491 File=\u0424\u0430\u0439\u043b @@ -522,8 +600,9 @@ Fix\ Encoding\ &\ Reload=\u0418\u0441\u043f\u0440\u0430\u0432\u0438\u0442\u044c #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=\u0417\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0435\u0439 \u043f\u043e \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0435 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a, \u043a\u0443\u0440\u0438\u0442\u044c\: http\://arduino.cc/en/Guide/Libraries\n -#: debug/BasicUploader.java:80 -Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =\u041f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u043f\u043b\u0430\u0442\u044b \u043e\u0442\u043a\u0440\u044b\u0442\u0438\u0435\u043c/\u0437\u0430\u043a\u0440\u044b\u0442\u0438\u0435\u043c \u043f\u043e\u0440\u0442\u0430 \u043d\u0430 1200bps +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=\u0424\u0440\u0430\u043d\u0446\u0443\u0437\u0441\u043a\u0438\u0439 - French @@ -627,8 +706,8 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=\u0411\u043 #: Preferences.java:106 Lithuaninan=\u041b\u0438\u0442\u043e\u0432\u0441\u043a\u0438\u0439 - Lithuaninan -#: ../../../processing/app/Sketch.java:1660 -Low\ memory\ available,\ stability\ problems\ may\ occur=\u041c\u0430\u043b\u043e \u043f\u0430\u043c\u044f\u0442\u0438, \u043c\u043e\u0433\u0443\u0442 \u0432\u043e\u0437\u043d\u0438\u043a\u043d\u0443\u0442\u044c \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b \u0441\u043e \u0441\u0442\u0430\u0431\u0438\u043b\u044c\u043d\u043e\u0441\u0442\u044c\u044e +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 Marathi=M\u0430\u0440\u0430\u0442\u0445\u0438 - Marathi @@ -639,12 +718,24 @@ Message=\u0421\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 #: ../../../processing/app/preproc/PdePreprocessor.java:412 !Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\u0411\u043e\u043b\u044c\u0448\u0435 \u043e\u043f\u0446\u0438\u0439 \u043c\u043e\u0436\u043d\u043e \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043d\u0435\u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0435\u043d\u043d\u043e \u0432 \u0444\u0430\u0439\u043b\u0435 #: Editor.java:2156 Moving=\u041f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d\u0438\u0435 +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +!Must\ specify\ exactly\ one\ sketch\ file= + +#: ../../../processing/app/Preferences.java:158 +!N'Ko= + #: Sketch.java:282 Name\ for\ new\ file\:=\u0418\u043c\u044f \u0434\u043b\u044f \u043d\u043e\u0432\u043e\u0433\u043e \u0444\u0430\u0439\u043b\u0430\: @@ -672,12 +763,18 @@ Next\ Tab=\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0430\u044f \u0432\u043a\u0 #: Preferences.java:78 UpdateCheck.java:108 No=\u041d\u0435\u0442 +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u041d\u0435 \u0432\u044b\u0431\u0440\u0430\u043d\u0430 \u043f\u043b\u0430\u0442\u0430; \u043f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u043f\u043b\u0430\u0442\u0443 \u0438\u0437 \u043c\u0435\u043d\u044e \u0421\u0435\u0440\u0432\u0438\u0441 > \u041f\u043b\u0430\u0442\u0430. #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 !No\ changes\ necessary\ for\ Auto\ Format.= +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=\u0424\u0430\u0439\u043b\u044b \u043d\u0435 \u0431\u044b\u043b\u0438 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u044b \u0432 \u0441\u043a\u0435\u0442\u0447 @@ -687,6 +784,9 @@ No\ launcher\ available=\u0417\u0430\u0433\u0440\u0443\u0437\u0447\u0438\u043a \ #: SerialMonitor.java:112 No\ line\ ending=\u041d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d \u043a\u043e\u043d\u0435\u0446 \u0441\u0442\u0440\u043e\u043a\u0438 +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u0414\u0430 \u0445\u043e\u0440\u043e\u0448, \u043f\u043e\u0440\u0430 \u0442\u0435\u0431\u0435 \u043f\u043e\u0439\u0442\u0438 \u043f\u0440\u043e\u0432\u0435\u0442\u0440\u0438\u0442\u044c\u0441\u044f. @@ -694,6 +794,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u0414\u0430 \u0445\u043e\u0 #, java-format No\ reference\ available\ for\ "{0}"=\u0412 \u0441\u043f\u0440\u0430\u0432\u043e\u0447\u043d\u0438\u043a\u0435 \u043d\u0435\u0442 \u043d\u0438\u0447\u0435\u0433\u043e \u043f\u043e\u0445\u043e\u0436\u0435\u0433\u043e \u043d\u0430 "{0}" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +!No\ valid\ code\ files\ found= + #: ../../../processing/app/Base.java:309 !No\ valid\ configured\ cores\ found\!\ Exiting...= @@ -720,6 +830,9 @@ OK=\u041e\u041a #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=\u041e\u0434\u0438\u043d \u0444\u0430\u0439\u043b \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d \u0432 \u044d\u0441\u043a\u0438\u0437. +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=\u041e\u0442\u043a\u0440\u044b\u0442\u044c @@ -747,12 +860,22 @@ Paste=\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c #: Preferences.java:109 Persian=\u041f\u0435\u0440\u0441\u0438\u0434\u0441\u043a\u0438\u0439 - Persian +#: ../../../processing/app/Preferences.java:161 +!Persian\ (Iran)= + #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=\u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430 \u0438\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u0443\u0439\u0442\u0435 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0443 SPI \u0438\u0437 \u043c\u0435\u043d\u044e \u042d\u0441\u043a\u0438\u0437 > \u0418\u043c\u043f\u043e\u0440\u0442 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0438. +#: ../../../processing/app/debug/Compiler.java:529 +!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=\u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0435 JDK \u0432\u0435\u0440\u0441\u0438\u0438 1.5 \u0438\u043b\u0438 \u043d\u043e\u0432\u0435\u0435 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 Polish=\u041f\u043e\u043b\u044c\u0441\u043a\u0438\u0439 - @@ -874,9 +997,15 @@ Save\ changes\ to\ "{0}"?\ \ =\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u #: Sketch.java:825 Save\ sketch\ folder\ as...=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u043f\u0430\u043f\u043a\u0443 \u0441\u043a\u0435\u0442\u0447\u0430 \u043a\u0430\u043a... +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=\u0421\u043e\u0445\u0440\u0430\u043d\u044f\u0435\u043c... +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 (\u0438\u043b\u0438 \u0441\u043e\u0437\u0434\u0430\u0439\u0442\u0435 \u043d\u043e\u0432\u0443\u044e) \u043f\u0430\u043f\u043a\u0443 \u0434\u043b\u044f \u0441\u043a\u0435\u0442\u0447\u0435\u0439... @@ -901,14 +1030,6 @@ Send=\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=\u041c\u043e\u043d\u0438\u0442\u043e\u0440 \u043f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u043f\u043e\u0440\u0442\u0430 -#: Serial.java:174 -#, java-format -!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.= - -#: Serial.java:121 -#, java-format -!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.= - #: Serial.java:194 #, java-format Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=\u041f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u043f\u043e\u0440\u0442 ''{0}'' \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442. \u0412\u044b \u0432\u044b\u0431\u0440\u0430\u043b\u0438 \u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u044b\u0439 \u0432 \u043c\u0435\u043d\u044e \u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b > \u041f\u043e\u0440\u0442 ? @@ -963,6 +1084,9 @@ Sketchbook\ folder\ disappeared=\u0418\u0441\u0447\u0435\u0437\u043b\u0430 \u043 #: Preferences.java:315 Sketchbook\ location\:=\u0420\u0430\u0437\u043c\u0435\u0449\u0435\u043d\u0438\u0435 \u043f\u0430\u043f\u043a\u0438 \u0441\u043a\u0435\u0442\u0447\u0435\u0439 +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 !Sketches\ (*.ino,\ *.pde)= @@ -997,6 +1121,9 @@ Tamil=\u0422\u0430\u043c\u0438\u043b\u044c\u0441\u043a\u0438\u0439 - Tamil #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=\u041a\u043b\u044e\u0447\u0435\u0432\u043e\u0435 \u0441\u043b\u043e\u0432\u043e "BYTE" \u0431\u043e\u043b\u044c\u0448\u0435 \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=\u041a\u043b\u0430\u0441\u0441 Client \u0431\u044b\u043b \u043f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d \u0432 EthernetClient. @@ -1033,12 +1160,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=\u041f\u0430\u043f\u043a\u0430 \u0441\u043a\u0435\u0442\u0447\u0435\u0439 \u0438\u0441\u0447\u0435\u0437\u043b\u0430. \u0411\u0443\u0434\u0435\u0442 \u043f\u043e\u043f\u044b\u0442\u043a\u0430 \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u043e \u0441\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u0432 \u0442\u043e\u043c \u0436\u0435 \u043c\u0435\u0441\u0442\u0435, \u043d\u043e \u0432\u0441\u0451, \u043a\u0440\u043e\u043c\u0435 \u043a\u043e\u0434\u0430, \u0431\u0443\u0434\u0435\u0442 \u043f\u043e\u0442\u0435\u0440\u044f\u043d\u043e. -#: Sketch.java:2018 -The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=\u0418\u043c\u044f \u044d\u0441\u043a\u0438\u0437\u0430 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u043e. \u0418\u043c\u044f \u044d\u0441\u043a\u0438\u0437\u0430 \u043c\u043e\u0436\u0435\u0442\n\u0441\u043e\u0441\u0442\u043e\u044f\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u0438\u0437 \u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432 (ASCII) \u0438 \u0446\u0438\u0444\u0440, \u0438 \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\n\u043d\u0430\u0447\u0438\u043d\u0430\u0442\u044c\u0441\u044f \u0441 \u0446\u0438\u0444\u0440\u044b \u0438 \u0431\u044b\u0442\u044c \u0434\u043b\u0438\u043d\u043d\u0435\u0435 64 \u0437\u043d\u0430\u043a\u043e\u0432 +#: ../../../processing/app/Sketch.java:2028 +!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=\u041f\u0430\u043f\u043a\u0430 Sketchbook \u0431\u043e\u043b\u044c\u0448\u0435 \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442. Arduino \u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0438\u0442\u0441\u044f \u043d\u0430 \u043f\u0430\u043f\u043a\u0443 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e, \u0438 \u0441\u043e\u0437\u0434\u0430\u0441\u0442 \u043d\u043e\u0432\u0443\u044e \u043f\u0430\u043f\u043a\u0443 Sketchbook, \u0435\u0441\u043b\u0438 \u043f\u043e\u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f. Arduino \u043f\u0440\u0435\u043a\u0440\u0430\u0442\u0438\u0442 \u0433\u043e\u0432\u043e\u0440\u0438\u0442\u044c \u043e \u0441\u0435\u0431\u0435 \u0432 \u0442\u0440\u0435\u0442\u044c\u0435\u043c \u043b\u0438\u0446\u0435. +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u042d\u0442\u043e\u0442 \u0444\u0430\u0439\u043b \u0443\u0436\u0435 \u0431\u044b\u043b \u0441\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d \u0432 \u043c\u0435\u0441\u0442\u043e, \u0438\u0437 \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u0432\u044b \u043f\u044b\u0442\u0430\u0435\u0442\u0435\u0441\u044c \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0435\u0433\u043e. \u041d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u0441\u0434\u0435\u043b\u0430\u043d\u043e. @@ -1142,6 +1272,10 @@ Vietnamese=\u0412\u044c\u0435\u0442\u043d\u0430\u043c\u0441\u043a\u0438\u0439 #: Editor.java:1105 Visit\ Arduino.cc=\u041f\u043e\u0441\u0435\u0442\u0438\u0442\u044c Arduino.cc +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= + #: Base.java:2128 Warning=\u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0435 @@ -1240,9 +1374,6 @@ environment=\u043e\u043a\u0440\u0443\u0436\u0435\u043d\u0438\u0435 #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1265,13 +1396,6 @@ name\ is\ null=\u0441\u043e\u0432\u0441\u0435\u043c \u043d\u0435\u0442 \u0438\u0 #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -!readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}= - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: \u0432\u043d\u0443\u0442\u0440\u0435\u043d\u043d\u044f\u044f \u043e\u0448\u0438\u0431\u043a\u0430... \u043d\u0435 \u043c\u043e\u0433\u0443 \u043d\u0430\u0439\u0442\u0438 \u043a\u043e\u0434 - #: Editor.java:932 !serialMenu\ is\ null= @@ -1279,6 +1403,10 @@ removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: \u0432\u043 #, java-format !the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected= +#: ../../../processing/app/Base.java:389 +#, java-format +!unknown\ option\:\ {0}= + #: Preferences.java:391 upload=\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c @@ -1297,3 +1425,35 @@ upload=\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= + +#: ../../../processing/app/Base.java:476 +#, java-format +!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= + +#: ../../../processing/app/Base.java:509 +#, java-format +!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= + +#: ../../../processing/app/Base.java:507 +#, java-format +!{0}\:\ Invalid\ option\ for\ board\ "{1}"= + +#: ../../../processing/app/Base.java:502 +#, java-format +!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= + +#: ../../../processing/app/Base.java:486 +#, java-format +!{0}\:\ Unknown\ architecture= + +#: ../../../processing/app/Base.java:491 +#, java-format +!{0}\:\ Unknown\ board= + +#: ../../../processing/app/Base.java:481 +#, java-format +!{0}\:\ Unknown\ package= diff --git a/arduino-core/src/processing/app/i18n/Resources_sl_SI.po b/arduino-core/src/processing/app/i18n/Resources_sl_SI.po index 522be5641..8be58e670 100644 --- a/arduino-core/src/processing/app/i18n/Resources_sl_SI.po +++ b/arduino-core/src/processing/app/i18n/Resources_sl_SI.po @@ -33,6 +33,12 @@ msgstr "Miška je podprta samo na Arduinu Leonardo" msgid "(edit only when Arduino is not running)" msgstr "(urejaj samo takrat, ko se Arduino ne izvaja)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -91,6 +97,10 @@ msgstr "Dodaj datoteko..." msgid "Add Library..." msgstr "Dodaj knjižnico..." +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -98,6 +108,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "Napaka se je pojavila med poskusom popravila ⏎ kodiranja datoteke. Ne shranjuj te skice, saj bi lahko prepisala ⏎ starejšo različico. Uporabi \"Odpri\" za ponovno odpiranje ⏎skice in poskusi ponovno.\\n" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -176,6 +200,30 @@ msgstr "Si prepričan/a, da želiš izbrisati \"{0}\"?" msgid "Are you sure you want to delete this sketch?" msgstr "Si prepričan/a, da želiš izbrisati to skico?" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "Armensko" @@ -184,6 +232,10 @@ msgstr "Armensko" msgid "Asturian" msgstr "Astursko " +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "Avtomatsko formatiranje" @@ -225,6 +277,14 @@ msgstr "Napaka v vrstici: {0}" msgid "Bad file selected" msgstr "Izbrana napačna datoteka" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "Belorusko" @@ -261,6 +321,10 @@ msgstr "Brskaj" msgid "Build folder disappeared or could not be written" msgstr "Mapa za graditev je izginila ali je ni bilo mogoče zapisati" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Bolgarsko" @@ -277,9 +341,15 @@ msgstr "Zapeči zagonski nalagalnik" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "Pečenje zagonskega nalagalnika na I/O Ploščo (to lahko traja nekaj minut)..." -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" -msgstr "Izvorne skice ni bilo mogoče odpreti!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" +msgstr "" #: ../../../processing/app/Preferences.java:92 msgid "Canadian French" @@ -294,6 +364,10 @@ msgstr "Prekliči" msgid "Cannot Rename" msgstr "Preimenovanje ni mogoče" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "Na začetek vrstice - CR" @@ -338,11 +412,6 @@ msgstr "Zapri" msgid "Comment/Uncomment" msgstr "Komentiraj/Odkomentiraj " -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "Napaka prevajalnika, prosim predloži to kodo v {0}" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "Prevajanje skice..." @@ -450,10 +519,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Privzeti nastavitev ni bilo mogoče prebrati.⏎\nMoral/a boš ponovno naložiti Arduino." -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "Iz {0} ni bilo mogoče prebrati nastavitev" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "" #: Base.java:2482 #, java-format @@ -482,6 +550,10 @@ msgstr "Skice ni bilo mogoče preimenovati. (2)" msgid "Could not replace {0}" msgstr "Ni mogoče zamenjati {0}" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Arhiviranje skice ni uspelo" @@ -551,6 +623,11 @@ msgstr "Shranjevanje končano." msgid "Done burning bootloader." msgstr "Zagonski nalagalnik je zapečen." +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "Prevajanje končano." @@ -559,6 +636,10 @@ msgstr "Prevajanje končano." msgid "Done printing." msgstr "Tiskanje končano." +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "Nalaganje končano." @@ -662,6 +743,10 @@ msgstr "Napaka pri pečenju zagonskega nalagalnika." msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "Napaka pri pečenju zagonskega nalagalnika: manjka '{0}' nastavitveni parameter" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -671,11 +756,25 @@ msgstr "Napaka pri nalaganju kode {0}" msgid "Error while printing." msgstr "Napaka pri tiskanju." +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "Napaka pri nalaganju: manjka '{0}' nastavitveni parameter" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "Estonsko" @@ -696,6 +795,11 @@ msgstr "Izvoz preklican, spremembe morajo biti shranjene." msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "" + #: Editor.java:491 msgid "File" msgstr "Datoteka" @@ -743,9 +847,10 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "Za informacije o nalaganju knjižnic glej: http://arduino.cc/en/Guide/Libraries \\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " -msgstr "Prisiljena ponastavitev z uporabo 1200bps open/close na vratih" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" +msgstr "" #: Preferences.java:95 msgid "French" @@ -893,9 +998,9 @@ msgstr "Knjižnica je bila dodana med ostale knjižnice. Preveri meni \"Uvozi kn msgid "Lithuaninan" msgstr "Litvansko " -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" -msgstr "Na voljo je premalo spomina. Pojavljajo se lahko napake" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." +msgstr "" #: Preferences.java:107 msgid "Marathi" @@ -909,6 +1014,10 @@ msgstr "Sporočilo" msgid "Missing the */ from the end of a /* comment */" msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "Več nastavitev je mogoče spreminjati neposredno v datoteki" @@ -917,6 +1026,18 @@ msgstr "Več nastavitev je mogoče spreminjati neposredno v datoteki" msgid "Moving" msgstr "Prenašam" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "" + #: Sketch.java:282 msgid "Name for new file:" msgstr "Ime nove datoteke:" @@ -953,6 +1074,10 @@ msgstr "Naslednji zavihek" msgid "No" msgstr "Ne" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "Plošča ni izbrana; prosim izberi ploščo v meniju Orodja > Plošča." @@ -961,6 +1086,10 @@ msgstr "Plošča ni izbrana; prosim izberi ploščo v meniju Orodja > Plošča." msgid "No changes necessary for Auto Format." msgstr "Ni potrebnih sprememb za Avtomatsko formatiranje." +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "Skici ni bila dodana nobena datoteka." @@ -973,6 +1102,10 @@ msgstr "Noben zaganjalnik ni na voljo" msgid "No line ending" msgstr "Brez urejanja" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "Zdaj pa res, čas je za malo svežega zraka." @@ -982,6 +1115,19 @@ msgstr "Zdaj pa res, čas je za malo svežega zraka." msgid "No reference available for \"{0}\"" msgstr "Reference za \"{0}\" ni na voljo" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "Veljavnih konfiguriranih jeder ni bilo mogoče najti! Prekinjam..." @@ -1018,6 +1164,10 @@ msgstr "V redu" msgid "One file added to the sketch." msgstr "Skici je bila dodana ena datoteka." +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "Odpri" @@ -1054,14 +1204,27 @@ msgstr "Prilepi" msgid "Persian" msgstr "Perzijsko" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "Prosim uvozi SPI knjižnico iz menija Skica > Uvozi knjižnico." +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "" + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "Prosim naloži JDK 1.5 ali novejše" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "Poljsko" @@ -1224,10 +1387,18 @@ msgstr "Shrani spremembe v \"{0}\"? " msgid "Save sketch folder as..." msgstr "Shrani mapo skice kot..." +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "Shranjujem..." +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "Izberi (ali ustvari novo) mapo za skice..." @@ -1260,20 +1431,6 @@ msgstr "Pošlji" msgid "Serial Monitor" msgstr "Serijski vmesnik" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "Serijska vrata ''{0}'' so v uporabi. Poskusi zapreti programe, ki bi jih lahko uporabljali." - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "Serijska vrata ''{0}'' so v uporabi. Poskusi zapreti programe, ki bi jih lahko uporabljali." - #: Serial.java:194 #, java-format msgid "" @@ -1353,6 +1510,10 @@ msgstr "Mapa s skicami je izginila" msgid "Sketchbook location:" msgstr "Lokacija skicirke:" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "Skice (*.ino, *.pde)" @@ -1403,6 +1564,10 @@ msgstr "Tamilsko" msgid "The 'BYTE' keyword is no longer supported." msgstr "Ključna beseda \"BYTE\" ni več podprta." +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "Client razred je bil preimenovan v EthernetClient." @@ -1470,12 +1635,12 @@ msgid "" "but anything besides the code will be lost." msgstr "Mapa s skico je izginila.⏎\nPoskušal bom ponovno shraniti v isto lokacijo,⏎\nvendar bo potem vse, razen kode, izgubljeno." -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." -msgstr "Ime skice je bilo spremenjeno. Ime skice lahko vsebuje samo ASCII⏎\nznake in številke (vendar se ne sme začeti s številko).⏎\nIme mora biti tudi krajše od 64 znakov." +"They should also be less than 64 characters long." +msgstr "" #: Base.java:259 msgid "" @@ -1486,6 +1651,12 @@ msgid "" "himself in the third person." msgstr "Mapa s skicami ne obstaja več. ⏎\nArduino bo izbral privzeto lokacijo in⏎\nustvaril novo mapo, če bo to potrebno.⏎\nArduino bo potem nehal govoriti o sebi⏎\nv tretji osebi." +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1628,6 +1799,13 @@ msgstr "Vietnamsko" msgid "Visit Arduino.cc" msgstr "Obišči Arduino.cc" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "" + #: Base.java:2128 msgid "Warning" msgstr "Opozorilo" @@ -1796,10 +1974,6 @@ msgstr "okolje" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "http://github.com/arduino/Arduino/issues" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1829,17 +2003,6 @@ msgstr "ime je prazno" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "readBytesUntil() medpomnilnik je premajhne za {0} bajtov do vključno znaka {1}" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "removeCode: interna napaka... kode ni bilo mogoče najti" - #: Editor.java:932 msgid "serialMenu is null" msgstr "serialMenu je prazen" @@ -1850,6 +2013,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "Izbrana serijska vrata {0} ne obstajajo ali pa ploščica ni povezana" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "" + #: Preferences.java:391 msgid "upload" msgstr "Naloži" @@ -1873,3 +2041,45 @@ msgstr "{0} | Arduino {1}" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "" diff --git a/arduino-core/src/processing/app/i18n/Resources_sl_SI.properties b/arduino-core/src/processing/app/i18n/Resources_sl_SI.properties index 6fe449e03..6b20ad5d2 100644 --- a/arduino-core/src/processing/app/i18n/Resources_sl_SI.properties +++ b/arduino-core/src/processing/app/i18n/Resources_sl_SI.properties @@ -17,6 +17,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(urejaj samo takrat, ko se Arduino ne izvaja) +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -53,9 +56,23 @@ Add\ File...=Dodaj datoteko... #: Base.java:963 Add\ Library...=Dodaj knji\u017enico... +#: ../../../processing/app/Preferences.java:96 +!Albanian= + #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Napaka se je pojavila med poskusom popravila \u23ce kodiranja datoteke. Ne shranjuj te skice, saj bi lahko prepisala \u23ce starej\u0161o razli\u010dico. Uporabi "Odpri" za ponovno odpiranje \u23ceskice in poskusi ponovno.\\n +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Med nalaganjem kode za tvoj operacijski sistem\u23ce\nse je pojavila neznana napaka. @@ -105,12 +122,33 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Si prepri\u010dan/a, da \u017eeli\ #: Sketch.java:587 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Si prepri\u010dan/a, da \u017eeli\u0161 izbrisati to skico? +#: ../../../processing/app/Base.java:356 +!Argument\ required\ for\ --board= + +#: ../../../processing/app/Base.java:370 +!Argument\ required\ for\ --curdir= + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +!Argument\ required\ for\ --port= + +#: ../../../processing/app/Base.java:377 +!Argument\ required\ for\ --pref= + +#: ../../../processing/app/Base.java:384 +!Argument\ required\ for\ --preferences-file= + #: ../../../processing/app/Preferences.java:137 Armenian=Armensko #: ../../../processing/app/Preferences.java:138 Asturian=Astursko +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 Auto\ Format=Avtomatsko formatiranje @@ -142,6 +180,12 @@ Bad\ error\ line\:\ {0}=Napaka v vrstici\: {0} #: Editor.java:2136 Bad\ file\ selected=Izbrana napa\u010dna datoteka +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +!Basque= + #: ../../../processing/app/Preferences.java:139 Belarusian=Belorusko @@ -168,6 +212,9 @@ Browse=Brskaj #: Sketch.java:1392 Sketch.java:1423 Build\ folder\ disappeared\ or\ could\ not\ be\ written=Mapa za graditev je izginila ali je ni bilo mogo\u010de zapisati +#: ../../../processing/app/Sketch.java:1530 +!Build\ options\ changed,\ rebuilding\ all= + #: ../../../processing/app/Preferences.java:80 Bulgarian=Bolgarsko @@ -180,8 +227,13 @@ Burn\ Bootloader=Zape\u010di zagonski nalagalnik #: Editor.java:2504 Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Pe\u010denje zagonskega nalagalnika na I/O Plo\u0161\u010do (to lahko traja nekaj minut)... -#: ../../../processing/app/Base.java:368 -Can't\ open\ source\ sketch\!=Izvorne skice ni bilo mogo\u010de odpreti\! +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 Canadian\ French=Francosko - Kanadsko @@ -193,6 +245,9 @@ Cancel=Prekli\u010di #: Sketch.java:455 Cannot\ Rename=Preimenovanje ni mogo\u010de +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 Carriage\ return=Na za\u010detek vrstice - CR @@ -226,10 +281,6 @@ Close=Zapri #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=Komentiraj/Odkomentiraj -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Napaka prevajalnika, prosim predlo\u017ei to kodo v {0} - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=Prevajanje skice... @@ -305,9 +356,8 @@ Could\ not\ re-save\ sketch=Skice ni bilo mogo\u010de ponovno shraniti #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Privzeti nastavitev ni bilo mogo\u010de prebrati.\u23ce\nMoral/a bo\u0161 ponovno nalo\u017eiti Arduino. -#: Preferences.java:258 -#, java-format -Could\ not\ read\ preferences\ from\ {0}=Iz {0} ni bilo mogo\u010de prebrati nastavitev +#: ../../../processing/app/Sketch.java:1525 +!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= #: Base.java:2482 #, java-format @@ -330,6 +380,9 @@ Could\ not\ rename\ the\ sketch.\ (2)=Skice ni bilo mogo\u010de preimenovati. (2 #, java-format Could\ not\ replace\ {0}=Ni mogo\u010de zamenjati {0} +#: ../../../processing/app/Sketch.java:1579 +!Could\ not\ write\ build\ preferences\ file= + #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Arhiviranje skice ni uspelo @@ -378,12 +431,19 @@ Done\ Saving.=Shranjevanje kon\u010dano. #: Editor.java:2510 Done\ burning\ bootloader.=Zagonski nalagalnik je zape\u010den. +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=Prevajanje kon\u010dano. #: Editor.java:2564 Done\ printing.=Tiskanje kon\u010dano. +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=Nalaganje kon\u010dano. @@ -462,6 +522,9 @@ Error\ while\ burning\ bootloader.=Napaka pri pe\u010denju zagonskega nalagalnik #: ../../../processing/app/Editor.java:2555 Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=Napaka pri pe\u010denju zagonskega nalagalnika\: manjka '{0}' nastavitveni parameter +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=Napaka pri nalaganju kode {0} @@ -469,10 +532,21 @@ Error\ while\ loading\ code\ {0}=Napaka pri nalaganju kode {0} #: Editor.java:2567 Error\ while\ printing.=Napaka pri tiskanju. +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=Napaka pri nalaganju\: manjka '{0}' nastavitveni parameter +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 Estonian=Estonsko @@ -488,6 +562,10 @@ Export\ canceled,\ changes\ must\ first\ be\ saved.=Izvoz preklican, spremembe m #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +!Failed\ to\ open\ sketch\:\ "{0}"= + #: Editor.java:491 File=Datoteka @@ -522,8 +600,9 @@ Fix\ Encoding\ &\ Reload=Popravi kodiranje in ponovno nalo\u017ei #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=Za informacije o nalaganju knji\u017enic glej\: http\://arduino.cc/en/Guide/Libraries \\n -#: debug/BasicUploader.java:80 -Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =Prisiljena ponastavitev z uporabo 1200bps open/close na vratih +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=Francosko @@ -627,8 +706,8 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Knji\u017en #: Preferences.java:106 Lithuaninan=Litvansko -#: ../../../processing/app/Sketch.java:1660 -Low\ memory\ available,\ stability\ problems\ may\ occur=Na voljo je premalo spomina. Pojavljajo se lahko napake +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 Marathi=Marathi @@ -639,12 +718,24 @@ Message=Sporo\u010dilo #: ../../../processing/app/preproc/PdePreprocessor.java:412 !Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Ve\u010d nastavitev je mogo\u010de spreminjati neposredno v datoteki #: Editor.java:2156 Moving=Prena\u0161am +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +!Must\ specify\ exactly\ one\ sketch\ file= + +#: ../../../processing/app/Preferences.java:158 +!N'Ko= + #: Sketch.java:282 Name\ for\ new\ file\:=Ime nove datoteke\: @@ -672,12 +763,18 @@ Next\ Tab=Naslednji zavihek #: Preferences.java:78 UpdateCheck.java:108 No=Ne +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Plo\u0161\u010da ni izbrana; prosim izberi plo\u0161\u010do v meniju Orodja > Plo\u0161\u010da. #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Ni potrebnih sprememb za Avtomatsko formatiranje. +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=Skici ni bila dodana nobena datoteka. @@ -687,6 +784,9 @@ No\ launcher\ available=Noben zaganjalnik ni na voljo #: SerialMonitor.java:112 No\ line\ ending=Brez urejanja +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Zdaj pa res, \u010das je za malo sve\u017eega zraka. @@ -694,6 +794,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Zdaj pa res, \u010das je za #, java-format No\ reference\ available\ for\ "{0}"=Reference za "{0}" ni na voljo +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +!No\ valid\ code\ files\ found= + #: ../../../processing/app/Base.java:309 No\ valid\ configured\ cores\ found\!\ Exiting...=Veljavnih konfiguriranih jeder ni bilo mogo\u010de najti\! Prekinjam... @@ -720,6 +830,9 @@ OK=V redu #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=Skici je bila dodana ena datoteka. +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=Odpri @@ -747,12 +860,22 @@ Paste=Prilepi #: Preferences.java:109 Persian=Perzijsko +#: ../../../processing/app/Preferences.java:161 +!Persian\ (Iran)= + #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Prosim uvozi SPI knji\u017enico iz menija Skica > Uvozi knji\u017enico. +#: ../../../processing/app/debug/Compiler.java:529 +!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=Prosim nalo\u017ei JDK 1.5 ali novej\u0161e +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 Polish=Poljsko @@ -874,9 +997,15 @@ Save\ changes\ to\ "{0}"?\ \ =Shrani spremembe v "{0}"? #: Sketch.java:825 Save\ sketch\ folder\ as...=Shrani mapo skice kot... +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=Shranjujem... +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=Izberi (ali ustvari novo) mapo za skice... @@ -901,14 +1030,6 @@ Send=Po\u0161lji #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=Serijski vmesnik -#: Serial.java:174 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Serijska vrata ''{0}'' so v uporabi. Poskusi zapreti programe, ki bi jih lahko uporabljali. - -#: Serial.java:121 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=Serijska vrata ''{0}'' so v uporabi. Poskusi zapreti programe, ki bi jih lahko uporabljali. - #: Serial.java:194 #, java-format Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Serijska vrata ''{0}'' niso bila najdena. Si izbral/a pravilna vrata v meniju Orodja > Serijska vrata? @@ -963,6 +1084,9 @@ Sketchbook\ folder\ disappeared=Mapa s skicami je izginila #: Preferences.java:315 Sketchbook\ location\:=Lokacija skicirke\: +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 Sketches\ (*.ino,\ *.pde)=Skice (*.ino, *.pde) @@ -997,6 +1121,9 @@ Tamil=Tamilsko #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=Klju\u010dna beseda "BYTE" ni ve\u010d podprta. +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Client razred je bil preimenovan v EthernetClient. @@ -1033,12 +1160,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Mapa s skico je izginila.\u23ce\nPosku\u0161al bom ponovno shraniti v isto lokacijo,\u23ce\nvendar bo potem vse, razen kode, izgubljeno. -#: Sketch.java:2018 -The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=Ime skice je bilo spremenjeno. Ime skice lahko vsebuje samo ASCII\u23ce\nznake in \u0161tevilke (vendar se ne sme za\u010deti s \u0161tevilko).\u23ce\nIme mora biti tudi kraj\u0161e od 64 znakov. +#: ../../../processing/app/Sketch.java:2028 +!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Mapa s skicami ne obstaja ve\u010d. \u23ce\nArduino bo izbral privzeto lokacijo in\u23ce\nustvaril novo mapo, \u010de bo to potrebno.\u23ce\nArduino bo potem nehal govoriti o sebi\u23ce\nv tretji osebi. +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Ta datoteka je \u017ee bila kopirana na lokacijo\u23ce iz katere jo posku\u0161a\u0161 dodati.\u23ce Tokrat ne bom naredil ni\u010d. @@ -1142,6 +1272,10 @@ Vietnamese=Vietnamsko #: Editor.java:1105 Visit\ Arduino.cc=Obi\u0161\u010di Arduino.cc +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= + #: Base.java:2128 Warning=Opozorilo @@ -1240,9 +1374,6 @@ environment=okolje #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1265,13 +1396,6 @@ name\ is\ null=ime je prazno #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() medpomnilnik je premajhne za {0} bajtov do vklju\u010dno znaka {1} - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: interna napaka... kode ni bilo mogo\u010de najti - #: Editor.java:932 serialMenu\ is\ null=serialMenu je prazen @@ -1279,6 +1403,10 @@ serialMenu\ is\ null=serialMenu je prazen #, java-format the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=Izbrana serijska vrata {0} ne obstajajo ali pa plo\u0161\u010dica ni povezana +#: ../../../processing/app/Base.java:389 +#, java-format +!unknown\ option\:\ {0}= + #: Preferences.java:391 upload=Nalo\u017ei @@ -1297,3 +1425,35 @@ upload=Nalo\u017ei #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= + +#: ../../../processing/app/Base.java:476 +#, java-format +!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= + +#: ../../../processing/app/Base.java:509 +#, java-format +!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= + +#: ../../../processing/app/Base.java:507 +#, java-format +!{0}\:\ Invalid\ option\ for\ board\ "{1}"= + +#: ../../../processing/app/Base.java:502 +#, java-format +!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= + +#: ../../../processing/app/Base.java:486 +#, java-format +!{0}\:\ Unknown\ architecture= + +#: ../../../processing/app/Base.java:491 +#, java-format +!{0}\:\ Unknown\ board= + +#: ../../../processing/app/Base.java:481 +#, java-format +!{0}\:\ Unknown\ package= diff --git a/arduino-core/src/processing/app/i18n/Resources_sq.po b/arduino-core/src/processing/app/i18n/Resources_sq.po index 595e74b30..d5a0bff26 100644 --- a/arduino-core/src/processing/app/i18n/Resources_sq.po +++ b/arduino-core/src/processing/app/i18n/Resources_sq.po @@ -33,6 +33,12 @@ msgstr "\"Miu\" perkrahet vetem ne Arduino Leonardo" msgid "(edit only when Arduino is not running)" msgstr "(redaktoni vetem kur Arduino nuk eshte duke ekzekutuar)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -102,6 +108,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "Ndodhi një gabim gjatë enkodimit të rregullimit të dosjes.\nMos e provo ta ruash këtë skicë sepse mund të mbishkruhet\nmbi versionin e vjetër. Përdor Open për të rihapur skicën dhe provoje sërish.\n" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -188,6 +208,10 @@ msgstr "Kerkohet argument per --bordin" msgid "Argument required for --curdir" msgstr "Kerkohet argument per --curdir" +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + #: ../../../processing/app/Base.java:363 msgid "Argument required for --port" msgstr "Kerkohet argument per --porten" @@ -208,6 +232,10 @@ msgstr "Armen" msgid "Asturian" msgstr "Asturian" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "Formatim automatik" @@ -249,6 +277,10 @@ msgstr "Gabim ne rrjesht: {0}" msgid "Bad file selected" msgstr "Zgjedhja e nje skedari te keq" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "Baske" @@ -309,6 +341,16 @@ msgstr "Digj bootloader" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "Duke djegur bootloaderin tek bordi I/O (kjo mund te zgjasi nje minute)..." +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" +msgstr "" + #: ../../../processing/app/Preferences.java:92 msgid "Canadian French" msgstr "Franceze Kadaneze" @@ -322,6 +364,10 @@ msgstr "Anullo" msgid "Cannot Rename" msgstr "Nuk mund te ri emertoj" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "Kthim vlere" @@ -366,11 +412,6 @@ msgstr "Mbylle" msgid "Comment/Uncomment" msgstr "Komento/Ckomento" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "Gabim i kompiluesit , ju lutemi dergoni kete kod tek {0}" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "Duke kompiluar skicen..." @@ -582,6 +623,11 @@ msgstr "Mbaroi se ruajturi." msgid "Done burning bootloader." msgstr "Mbaroi duke djegur bootloaderin." +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "Kompilimi u mbarua" @@ -590,6 +636,10 @@ msgstr "Kompilimi u mbarua" msgid "Done printing." msgstr "Printimi u mbarua." +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "Kompilimi perfundoi." @@ -693,6 +743,10 @@ msgstr "Gabim gjate djegjes se bootloaderit." msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "Gabim ndersa ndizet ngarkuesi i nisjes : mungon parametri konfigurues '{0}" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -702,11 +756,25 @@ msgstr "Gabim gjate ngarkimit te kodit {0}" msgid "Error while printing." msgstr "Gabim gjate printimit." +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "Gabim gjate ngarkimit: mungon '{0}' parametra e konfigurimit" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "Estonez" @@ -779,9 +847,10 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "Per me teper informacion ne instalimin e librarive, shiko http://arduino.cc/en/Guide/Libraries\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " -msgstr "Rifreskim i detyrueshem duke perdorur 1200bps hapje/mbyllje ne porte" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" +msgstr "" #: Preferences.java:95 msgid "French" @@ -929,9 +998,9 @@ msgstr "Libraria u shtua ne librarite tuaja . Kontrolloni menune e \"Importuesit msgid "Lithuaninan" msgstr "Lituanisht" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" -msgstr "Memorie e ulet ne dispozicion; probleme me stabilitetin mund te ndodhin" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." +msgstr "" #: Preferences.java:107 msgid "Marathi" @@ -945,6 +1014,10 @@ msgstr "Mesazh" msgid "Missing the */ from the end of a /* comment */" msgstr "Mungon */ nga fundi i /* komenti */" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "Me shume parapelqime mund te redaktohen drejperdrejt gjate hapjes se skedarit" @@ -953,6 +1026,10 @@ msgstr "Me shume parapelqime mund te redaktohen drejperdrejt gjate hapjes se ske msgid "Moving" msgstr "Sposto" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + #: ../../../processing/app/Base.java:395 msgid "Must specify exactly one sketch file" msgstr "Duhet te specifikoje saktesisht nje skedar skice." @@ -997,6 +1074,10 @@ msgstr "Tabi pasardhes" msgid "No" msgstr "Jo" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "Nuk eshte zgjedhur asnje bord; ju lutem zgjidhni bordin nga Veglat > Menuja e bordit." @@ -1005,6 +1086,10 @@ msgstr "Nuk eshte zgjedhur asnje bord; ju lutem zgjidhni bordin nga Veglat > Men msgid "No changes necessary for Auto Format." msgstr "Jo ndryshime te nevojshme per vete formatim." +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "Asnje dokument nuk u shtua tek skica." @@ -1017,6 +1102,10 @@ msgstr "Nuk ka leshim te mundshem" msgid "No line ending" msgstr "Asnje linje mbyllese" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "Jo seriozisht , koha per pak ajer te fresket per ju" @@ -1026,6 +1115,15 @@ msgstr "Jo seriozisht , koha per pak ajer te fresket per ju" msgid "No reference available for \"{0}\"" msgstr "Asnje reference ne dispozicion per \"{0}\"" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + #: ../../../processing/app/Sketch.java:204 msgid "No valid code files found" msgstr "Asnje kode i sakte nuk u gjet." @@ -1066,6 +1164,10 @@ msgstr "Ne rregull" msgid "One file added to the sketch." msgstr "Nje skedar u shtua tek skica" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "Hap" @@ -1118,6 +1220,11 @@ msgstr "Ju lutem importoni librarine Wire nga menuja Sketch > Import Library." msgid "Please install JDK 1.5 or later" msgstr "Ju lutem instaloni JDK 1.5 ose nje version me te vone" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "Polonisht" @@ -1280,10 +1387,18 @@ msgstr "Ruaj ndrryshimet tek \"{0}\"?" msgid "Save sketch folder as..." msgstr "Ruaj dosjen e skices si ..." +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "Duke ruajtur..." +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "Zgjidh (apo krijo) nje folder te ri per skicat..." @@ -1395,6 +1510,10 @@ msgstr "Dosja e bllokut te skicave eshte zhdukur" msgid "Sketchbook location:" msgstr "Vendodhja e librit te skicave" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "Skica (*.ino, *.pde)" @@ -1445,6 +1564,10 @@ msgstr "Gjuha Tamil" msgid "The 'BYTE' keyword is no longer supported." msgstr "Fjala 'BYTE' nuk suportohet me." +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "Klasa e klientit eshte riemeruar EthernetClient." @@ -1528,6 +1651,12 @@ msgid "" "himself in the third person." msgstr "Skedari i sketchbook nuk egziston me.\nArduino do te kaloje ne vendodhjen e sketchbook-ut\nte parapercaktuar, dhe do te krijoje nje skedar te ri sketchbook-u\nnese eshte e nevojshme. Arduino pastaj do te ndaloje se foluri \nper veten ne veten e trete." +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1845,10 +1974,6 @@ msgstr "mjedisi" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "http://github.com/arduino/Arduino/issues" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1878,17 +2003,6 @@ msgstr "emri eshte bosh" msgid "platforms.html" msgstr "platforma.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "Buffer i readBytesUntil () eshte shume i vogel per {0} byte deri ne char {1}" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "removeCode: gabim i brendshem.. nuk arrin te gjeje kodin" - #: Editor.java:932 msgid "serialMenu is null" msgstr "serialMenu eshte bosh" diff --git a/arduino-core/src/processing/app/i18n/Resources_sq.properties b/arduino-core/src/processing/app/i18n/Resources_sq.properties index d6656d9ed..5397a9bac 100644 --- a/arduino-core/src/processing/app/i18n/Resources_sq.properties +++ b/arduino-core/src/processing/app/i18n/Resources_sq.properties @@ -17,6 +17,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(redaktoni vetem kur Arduino nuk eshte duke ekzekutuar) +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -59,6 +62,17 @@ Albanian=Shqip #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Ndodhi nj\u00eb gabim gjat\u00eb enkodimit t\u00eb rregullimit t\u00eb dosjes.\nMos e provo ta ruash k\u00ebt\u00eb skic\u00eb sepse mund t\u00eb mbishkruhet\nmbi versionin e vjet\u00ebr. P\u00ebrdor Open p\u00ebr t\u00eb rihapur skic\u00ebn dhe provoje s\u00ebrish.\n +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Nje problem i panjohur ndodhi gjate ngarkimit\nte nje platforme-specifike te koduar per paisjen tuaj. @@ -114,6 +128,9 @@ Argument\ required\ for\ --board=Kerkohet argument per --bordin #: ../../../processing/app/Base.java:370 Argument\ required\ for\ --curdir=Kerkohet argument per --curdir +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + #: ../../../processing/app/Base.java:363 Argument\ required\ for\ --port=Kerkohet argument per --porten @@ -129,6 +146,9 @@ Armenian=Armen #: ../../../processing/app/Preferences.java:138 Asturian=Asturian +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 Auto\ Format=Formatim automatik @@ -160,6 +180,9 @@ Bad\ error\ line\:\ {0}=Gabim ne rrjesht\: {0} #: Editor.java:2136 Bad\ file\ selected=Zgjedhja e nje skedari te keq +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + #: ../../../processing/app/Preferences.java:149 Basque=Baske @@ -204,6 +227,14 @@ Burn\ Bootloader=Digj bootloader #: Editor.java:2504 Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Duke djegur bootloaderin tek bordi I/O (kjo mund te zgjasi nje minute)... +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= + #: ../../../processing/app/Preferences.java:92 Canadian\ French=Franceze Kadaneze @@ -214,6 +245,9 @@ Cancel=Anullo #: Sketch.java:455 Cannot\ Rename=Nuk mund te ri emertoj +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 Carriage\ return=Kthim vlere @@ -247,10 +281,6 @@ Close=Mbylle #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=Komento/Ckomento -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Gabim i kompiluesit , ju lutemi dergoni kete kod tek {0} - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=Duke kompiluar skicen... @@ -401,12 +431,19 @@ Done\ Saving.=Mbaroi se ruajturi. #: Editor.java:2510 Done\ burning\ bootloader.=Mbaroi duke djegur bootloaderin. +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=Kompilimi u mbarua #: Editor.java:2564 Done\ printing.=Printimi u mbarua. +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=Kompilimi perfundoi. @@ -485,6 +522,9 @@ Error\ while\ burning\ bootloader.=Gabim gjate djegjes se bootloaderit. #: ../../../processing/app/Editor.java:2555 Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=Gabim ndersa ndizet ngarkuesi i nisjes \: mungon parametri konfigurues '{0} +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=Gabim gjate ngarkimit te kodit {0} @@ -492,10 +532,21 @@ Error\ while\ loading\ code\ {0}=Gabim gjate ngarkimit te kodit {0} #: Editor.java:2567 Error\ while\ printing.=Gabim gjate printimit. +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=Gabim gjate ngarkimit\: mungon '{0}' parametra e konfigurimit +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 Estonian=Estonez @@ -549,8 +600,9 @@ Fix\ Encoding\ &\ Reload=Rregullo kodimin & Rifreskoje #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=Per me teper informacion ne instalimin e librarive, shiko http\://arduino.cc/en/Guide/Libraries\n -#: debug/BasicUploader.java:80 -Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =Rifreskim i detyrueshem duke perdorur 1200bps hapje/mbyllje ne porte +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=Frengjisht @@ -654,8 +706,8 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Libraria u #: Preferences.java:106 Lithuaninan=Lituanisht -#: ../../../processing/app/Sketch.java:1660 -Low\ memory\ available,\ stability\ problems\ may\ occur=Memorie e ulet ne dispozicion; probleme me stabilitetin mund te ndodhin +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 Marathi=Gjuha Marathi @@ -666,12 +718,18 @@ Message=Mesazh #: ../../../processing/app/preproc/PdePreprocessor.java:412 Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Mungon */ nga fundi i /* komenti */ +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Me shume parapelqime mund te redaktohen drejperdrejt gjate hapjes se skedarit #: Editor.java:2156 Moving=Sposto +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + #: ../../../processing/app/Base.java:395 Must\ specify\ exactly\ one\ sketch\ file=Duhet te specifikoje saktesisht nje skedar skice. @@ -705,12 +763,18 @@ Next\ Tab=Tabi pasardhes #: Preferences.java:78 UpdateCheck.java:108 No=Jo +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Nuk eshte zgjedhur asnje bord; ju lutem zgjidhni bordin nga Veglat > Menuja e bordit. #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Jo ndryshime te nevojshme per vete formatim. +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=Asnje dokument nuk u shtua tek skica. @@ -720,6 +784,9 @@ No\ launcher\ available=Nuk ka leshim te mundshem #: SerialMonitor.java:112 No\ line\ ending=Asnje linje mbyllese +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Jo seriozisht , koha per pak ajer te fresket per ju @@ -727,6 +794,13 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Jo seriozisht , koha per pak #, java-format No\ reference\ available\ for\ "{0}"=Asnje reference ne dispozicion per "{0}" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + #: ../../../processing/app/Sketch.java:204 No\ valid\ code\ files\ found=Asnje kode i sakte nuk u gjet. @@ -756,6 +830,9 @@ OK=Ne rregull #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=Nje skedar u shtua tek skica +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=Hap @@ -795,6 +872,10 @@ Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu. #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=Ju lutem instaloni JDK 1.5 ose nje version me te vone +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 Polish=Polonisht @@ -916,9 +997,15 @@ Save\ changes\ to\ "{0}"?\ \ =Ruaj ndrryshimet tek "{0}"? #: Sketch.java:825 Save\ sketch\ folder\ as...=Ruaj dosjen e skices si ... +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=Duke ruajtur... +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=Zgjidh (apo krijo) nje folder te ri per skicat... @@ -997,6 +1084,9 @@ Sketchbook\ folder\ disappeared=Dosja e bllokut te skicave eshte zhdukur #: Preferences.java:315 Sketchbook\ location\:=Vendodhja e librit te skicave +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 Sketches\ (*.ino,\ *.pde)=Skica (*.ino, *.pde) @@ -1031,6 +1121,9 @@ Tamil=Gjuha Tamil #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=Fjala 'BYTE' nuk suportohet me. +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Klasa e klientit eshte riemeruar EthernetClient. @@ -1073,6 +1166,9 @@ The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Skedari i sketchbook nuk egziston me.\nArduino do te kaloje ne vendodhjen e sketchbook-ut\nte parapercaktuar, dhe do te krijoje nje skedar te ri sketchbook-u\nnese eshte e nevojshme. Arduino pastaj do te ndaloje se foluri \nper veten ne veten e trete. +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Kjo dosje \u00ebsht\u00eb kopjuar n\u00eb\nvendndodhjen nga ku po mundohesh ta shtosh.\nVeprimi nuk mund t\u00eb realizohet. @@ -1278,9 +1374,6 @@ environment=mjedisi #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1303,13 +1396,6 @@ name\ is\ null=emri eshte bosh #: Base.java:2090 platforms.html=platforma.html -#: Serial.java:451 -#, java-format -readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=Buffer i readBytesUntil () eshte shume i vogel per {0} byte deri ne char {1} - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: gabim i brendshem.. nuk arrin te gjeje kodin - #: Editor.java:932 serialMenu\ is\ null=serialMenu eshte bosh diff --git a/arduino-core/src/processing/app/i18n/Resources_sv.po b/arduino-core/src/processing/app/i18n/Resources_sv.po index 8fd8b69b1..94a190eed 100644 --- a/arduino-core/src/processing/app/i18n/Resources_sv.po +++ b/arduino-core/src/processing/app/i18n/Resources_sv.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-01-14 17:10+0000\n" -"Last-Translator: Cristian Maglie \n" +"PO-Revision-Date: 2015-01-16 13:54+0000\n" +"Last-Translator: GudenTorson\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/arduino-ide-15/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,12 +27,18 @@ msgstr "'Keyboard' stödjs endast av Adruino Leonardo" #: debug/Compiler.java:450 msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "'Mouse' stödjs endast av Arduino Leonardo" +msgstr "'Mus' stöds endast av Arduino Leonardo" #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(ändra endast när Arduino inte körs)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "verbose, verbose-uppladdning och -verbose-bygg kan endast användas tillsammans med -verifiera eller -ladda upp" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde->.ino" @@ -77,7 +83,7 @@ msgstr "En ny version av Arduino finns tillgänglig,\nvill du besöka Arduinos n msgid "" "A problem occurred while trying to open the\n" "files used to store the console output." -msgstr "" +msgstr "Ett problem uppstod när man skulle öppna\n filerna som används för att lagra konsolutgången." #: Editor.java:1116 msgid "About Arduino" @@ -91,6 +97,10 @@ msgstr "Lägg till fil..." msgid "Add Library..." msgstr "Lägg till bibliotek..." +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "Albanska" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -98,6 +108,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -176,6 +200,30 @@ msgstr "Är du säker att du vill ta bort \"{0}\"?" msgid "Are you sure you want to delete this sketch?" msgstr "Är du säker att du vill ta bort den här sketchen?" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "Armeniska" @@ -184,6 +232,10 @@ msgstr "Armeniska" msgid "Asturian" msgstr "Österrikiska" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "Tillstånd krävs" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "Autoformatera" @@ -225,6 +277,14 @@ msgstr "" msgid "Bad file selected" msgstr "Ogiltig fil har valts" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "Basque" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "Vitryska" @@ -261,6 +321,10 @@ msgstr "Utforska" msgid "Build folder disappeared or could not be written" msgstr "Byggmappen försvann eller kunde inte skrivas till" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Bulgariska" @@ -277,8 +341,14 @@ msgstr "Bränn bootloader" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "Bränner bootloader till I/O kortet (detta kan ta en stund)..." -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" msgstr "" #: ../../../processing/app/Preferences.java:92 @@ -294,6 +364,10 @@ msgstr "Avbryt" msgid "Cannot Rename" msgstr "Kan ej byta namn" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "Vagnretur" @@ -308,11 +382,11 @@ msgstr "Kolla efter uppdateringar vid start" #: ../../../processing/app/Preferences.java:142 msgid "Chinese (China)" -msgstr "" +msgstr "Kinesiska (Kina)" #: ../../../processing/app/Preferences.java:142 msgid "Chinese (Hong Kong)" -msgstr "" +msgstr "Kinesiska (Hong Kong)" #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" @@ -338,11 +412,6 @@ msgstr "Stäng" msgid "Comment/Uncomment" msgstr "Kommentera/Avkommentera" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "Kompilatorfel, skicka gärna koden till {0}" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "Kompilerar sketch..." @@ -402,17 +471,17 @@ msgstr "Kunde ej ta bort {0}" #: ../../../processing/app/debug/TargetPlatform.java:74 #, java-format msgid "Could not find boards.txt in {0}. Is it pre-1.5?" -msgstr "" +msgstr "Kunde inte hitta boards.txt i {0}, Är det pre-1.5?" #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 #, java-format msgid "Could not find tool {0}" -msgstr "" +msgstr "Kunde inte hitta verktyg {0}" #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 #, java-format msgid "Could not find tool {0} from package {1}" -msgstr "" +msgstr "Kunde inte hitta verktyg {0} från paket {1}" #: Base.java:1934 #, java-format @@ -442,7 +511,7 @@ msgstr "Kunde ej spara om sketchen" msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "" +msgstr "Kunde inte läsa färginställningarna för temat.\nDu kommer behöver ominstallera Arduino." #: Preferences.java:219 msgid "" @@ -450,10 +519,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Kunde ej läsa standardinställningarna.\nDu måste installera om Arduino." -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "Kunde ej läsa inställningar från {0}" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "Kunde inte läsa den förra bygg-inställningsfilen, bygger om allt." #: Base.java:2482 #, java-format @@ -482,6 +550,10 @@ msgstr "Kunde ej byta namn på sketchen. (2)" msgid "Could not replace {0}" msgstr "Kunde ej byta ut {0}" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "Kunde inte skriva bygg-inställningsfilen" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Kunde ej arkivera sketch" @@ -499,7 +571,7 @@ msgid "" "Couldn't find a Board on the selected port. Check that you have the correct " "port selected. If it is correct, try pressing the board's reset button " "after initiating the upload." -msgstr "" +msgstr "Kunde inte hitta ett kort på den valda porten. Kontrollera att du har har valt rätt port. Om porten är korrekt, försök trycka kortets återställningsknapp efter påbörjad uppladdning." #: ../../../processing/app/Preferences.java:82 msgid "Croatian" @@ -551,6 +623,11 @@ msgstr "Sparning färdigt." msgid "Done burning bootloader." msgstr "Bränningen av bootloader är klar." +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "Kompilering färdig." + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "Kompilering färdig." @@ -559,6 +636,10 @@ msgstr "Kompilering färdig." msgid "Done printing." msgstr "Utskrift färdig." +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "Uppladdning färdig." + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "Uppladdning färdig." @@ -662,6 +743,10 @@ msgstr "Fel vid bränning av bootloader." msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -671,11 +756,25 @@ msgstr "Fel vid laddning av kod {0}" msgid "Error while printing." msgstr "Fel vid utskrift." +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "Estniska" @@ -696,6 +795,11 @@ msgstr "Exportering avbruten, ändringar måste sparas först." msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "" + #: Editor.java:491 msgid "File" msgstr "Fil" @@ -743,9 +847,10 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "För mer information om att installera bibliotek, gå till http://arduino.cc/en/Guide/Libraries\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " -msgstr "Tvingar återställning genom 1200bps öppning/stängning av port" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" +msgstr "" #: Preferences.java:95 msgid "French" @@ -893,9 +998,9 @@ msgstr "Biblioteket är nu tillagt. Kolla \"Importera bibliotek\" menyn" msgid "Lithuaninan" msgstr "Lituanska" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" -msgstr "Lite minne tillgängligt, problem med stabiliteten kan inträffa" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." +msgstr "" #: Preferences.java:107 msgid "Marathi" @@ -909,6 +1014,10 @@ msgstr "Meddelande" msgid "Missing the */ from the end of a /* comment */" msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "Läge stöds ej" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "Mer egenskaper kan editeras direkt i filen" @@ -917,6 +1026,18 @@ msgstr "Mer egenskaper kan editeras direkt i filen" msgid "Moving" msgstr "Flyttar" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "" + #: Sketch.java:282 msgid "Name for new file:" msgstr "Namn på ny fil:" @@ -953,6 +1074,10 @@ msgstr "Nästa flik" msgid "No" msgstr "Nej" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "Inget kort har valts. Välj ett kort från menyn Verktyg > Kort" @@ -961,6 +1086,10 @@ msgstr "Inget kort har valts. Välj ett kort från menyn Verktyg > Kort" msgid "No changes necessary for Auto Format." msgstr "Inga ändringar behövs för autoformat" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "Inga filer har lagts till i sketchen" @@ -973,6 +1102,10 @@ msgstr "" msgid "No line ending" msgstr "Inget radslut" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "Nej, seriöst, dags för lite frisk luft för dig." @@ -982,6 +1115,19 @@ msgstr "Nej, seriöst, dags för lite frisk luft för dig." msgid "No reference available for \"{0}\"" msgstr "Det saknas inlägg i referensmaterialet för \"{0}\"" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "" @@ -1018,6 +1164,10 @@ msgstr "Ok" msgid "One file added to the sketch." msgstr "En fil lagd till sketchen" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "Öppna" @@ -1054,14 +1204,27 @@ msgstr "Klistra in" msgid "Persian" msgstr "Persiska" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "Var vänlig importera API biblioteket från Skiss > Importera bibliotek menyn." +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "" + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "Var vänlig installera JDK 1.5 eller senare" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "Polska" @@ -1224,10 +1387,18 @@ msgstr "Spara ändringar till \"{0}\"?" msgid "Save sketch folder as..." msgstr "Spara sketchmappen som..." +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "Sparar..." +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "Välj (eller skapa ny) mapp för dina sketcher..." @@ -1260,20 +1431,6 @@ msgstr "Skicka" msgid "Serial Monitor" msgstr "Seriell monitor" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "Serieporten \"{0}\" används redan. Försök att avsluta alla program som kan tänkas använda den." - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "" - #: Serial.java:194 #, java-format msgid "" @@ -1353,6 +1510,10 @@ msgstr "Sketchbookmappen försvann" msgid "Sketchbook location:" msgstr "Sketchbookplats:" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "Sketcher (*.ino, *.pde)" @@ -1389,7 +1550,7 @@ msgstr "Solsken" #: ../../../processing/app/Preferences.java:153 msgid "Swedish" -msgstr "" +msgstr "Svenska" #: Preferences.java:84 msgid "System Default" @@ -1403,6 +1564,10 @@ msgstr "Tamil" msgid "The 'BYTE' keyword is no longer supported." msgstr "Nyckelordet 'BYTE' stödjs ej längre." +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "Klassen Client har döpts om till EthernetClient." @@ -1470,11 +1635,11 @@ msgid "" "but anything besides the code will be lost." msgstr "Sketchmappen har försvunnit.\nFörsöker att spara om på samma plats,\nmen allt förutom koden kommer att försvinna." -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." +"They should also be less than 64 characters long." msgstr "" #: Base.java:259 @@ -1486,6 +1651,12 @@ msgid "" "himself in the third person." msgstr "Sketchbookmappen existerar ej längre. Arduino kommer nu att byta till standardplatsen, och skapa en ny sketchbookmapp om nödvändigt. Arduino kommer sen att sluta referera till sig själv i tredje person." +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1628,6 +1799,13 @@ msgstr "Vietnamesiska" msgid "Visit Arduino.cc" msgstr "Besök Arduino.cc" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "" + #: Base.java:2128 msgid "Warning" msgstr "Varning" @@ -1796,10 +1974,6 @@ msgstr "miljö" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "http://github.com/arduino/Arduino/issues" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1829,17 +2003,6 @@ msgstr "name är null" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "removeCode: internt fel... kunde inte hitta koden" - #: Editor.java:932 msgid "serialMenu is null" msgstr "serialMenu är null" @@ -1850,6 +2013,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "Den valda seriella porten {0} existerar inte eller så är din board inte ansluten." +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "" + #: Preferences.java:391 msgid "upload" msgstr "Ladda upp" @@ -1873,3 +2041,45 @@ msgstr "{0} | Arduino {1}" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "Okänt paket" diff --git a/arduino-core/src/processing/app/i18n/Resources_sv.properties b/arduino-core/src/processing/app/i18n/Resources_sv.properties index c93ab4d69..561323d73 100644 --- a/arduino-core/src/processing/app/i18n/Resources_sv.properties +++ b/arduino-core/src/processing/app/i18n/Resources_sv.properties @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Swedish (http\://www.transifex.com/projects/p/arduino-ide-15/language/sv/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: sv\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-16 13\:54+0000\nLast-Translator\: GudenTorson\nLanguage-Team\: Swedish (http\://www.transifex.com/projects/p/arduino-ide-15/language/sv/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: sv\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(kr\u00e4ver omstart av Arduino) @@ -12,11 +12,14 @@ 'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard' st\u00f6djs endast av Adruino Leonardo #: debug/Compiler.java:450 -'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' st\u00f6djs endast av Arduino Leonardo +'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mus' st\u00f6ds endast av Arduino Leonardo #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(\u00e4ndra endast n\u00e4r Arduino inte k\u00f6rs) +#: ../../../processing/app/Base.java:468 +--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload=verbose, verbose-uppladdning och -verbose-bygg kan endast anv\u00e4ndas tillsammans med -verifiera eller -ladda upp + #: Sketch.java:746 .pde\ ->\ .ino=.pde->.ino @@ -42,7 +45,7 @@ A\ library\ named\ {0}\ already\ exists=Ett bibliotek vid namn {0} existerar red A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=En ny version av Arduino finns tillg\u00e4nglig,\nvill du bes\u00f6ka Arduinos nedladdningssida? #: EditorConsole.java:153 -!A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.= +A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=Ett problem uppstod n\u00e4r man skulle \u00f6ppna\n filerna som anv\u00e4nds f\u00f6r att lagra konsolutg\u00e5ngen. #: Editor.java:1116 About\ Arduino=Om Arduino @@ -53,9 +56,23 @@ Add\ File...=L\u00e4gg till fil... #: Base.java:963 Add\ Library...=L\u00e4gg till bibliotek... +#: ../../../processing/app/Preferences.java:96 +Albanian=Albanska + #: tools/FixEncoding.java:77 !An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n= +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Ett ok\u00e4nt fel uppstod vid inladdning av\nplattformspecifik kod f\u00f6r din maskin. @@ -105,12 +122,33 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u00c4r du s\u00e4ker att du vill #: Sketch.java:587 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u00c4r du s\u00e4ker att du vill ta bort den h\u00e4r sketchen? +#: ../../../processing/app/Base.java:356 +!Argument\ required\ for\ --board= + +#: ../../../processing/app/Base.java:370 +!Argument\ required\ for\ --curdir= + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +!Argument\ required\ for\ --port= + +#: ../../../processing/app/Base.java:377 +!Argument\ required\ for\ --pref= + +#: ../../../processing/app/Base.java:384 +!Argument\ required\ for\ --preferences-file= + #: ../../../processing/app/Preferences.java:137 Armenian=Armeniska #: ../../../processing/app/Preferences.java:138 Asturian=\u00d6sterrikiska +#: ../../../processing/app/debug/Compiler.java:145 +Authorization\ required=Tillst\u00e5nd kr\u00e4vs + #: tools/AutoFormat.java:91 Auto\ Format=Autoformatera @@ -142,6 +180,12 @@ Autoscroll=Autoscrolla #: Editor.java:2136 Bad\ file\ selected=Ogiltig fil har valts +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +Basque=Basque + #: ../../../processing/app/Preferences.java:139 Belarusian=Vitryska @@ -168,6 +212,9 @@ Browse=Utforska #: Sketch.java:1392 Sketch.java:1423 Build\ folder\ disappeared\ or\ could\ not\ be\ written=Byggmappen f\u00f6rsvann eller kunde inte skrivas till +#: ../../../processing/app/Sketch.java:1530 +!Build\ options\ changed,\ rebuilding\ all= + #: ../../../processing/app/Preferences.java:80 Bulgarian=Bulgariska @@ -180,8 +227,13 @@ Burn\ Bootloader=Br\u00e4nn bootloader #: Editor.java:2504 Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Br\u00e4nner bootloader till I/O kortet (detta kan ta en stund)... -#: ../../../processing/app/Base.java:368 -!Can't\ open\ source\ sketch\!= +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 !Canadian\ French= @@ -193,6 +245,9 @@ Cancel=Avbryt #: Sketch.java:455 Cannot\ Rename=Kan ej byta namn +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 Carriage\ return=Vagnretur @@ -203,10 +258,10 @@ Catalan=Katalanska Check\ for\ updates\ on\ startup=Kolla efter uppdateringar vid start #: ../../../processing/app/Preferences.java:142 -!Chinese\ (China)= +Chinese\ (China)=Kinesiska (Kina) #: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= +Chinese\ (Hong\ Kong)=Kinesiska (Hong Kong) #: ../../../processing/app/Preferences.java:144 !Chinese\ (Taiwan)= @@ -226,10 +281,6 @@ Close=St\u00e4ng #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=Kommentera/Avkommentera -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Kompilatorfel, skicka g\u00e4rna koden till {0} - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=Kompilerar sketch... @@ -275,15 +326,15 @@ Could\ not\ delete\ {0}=Kunde ej ta bort {0} #: ../../../processing/app/debug/TargetPlatform.java:74 #, java-format -!Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?= +Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?=Kunde inte hitta boards.txt i {0}, \u00c4r det pre-1.5? #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 #, java-format -!Could\ not\ find\ tool\ {0}= +Could\ not\ find\ tool\ {0}=Kunde inte hitta verktyg {0} #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 #, java-format -!Could\ not\ find\ tool\ {0}\ from\ package\ {1}= +Could\ not\ find\ tool\ {0}\ from\ package\ {1}=Kunde inte hitta verktyg {0} fr\u00e5n paket {1} #: Base.java:1934 #, java-format @@ -300,14 +351,13 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=Kunde ej spara om sketchen #: Theme.java:52 -!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= +Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Kunde inte l\u00e4sa f\u00e4rginst\u00e4llningarna f\u00f6r temat.\nDu kommer beh\u00f6ver ominstallera Arduino. #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Kunde ej l\u00e4sa standardinst\u00e4llningarna.\nDu m\u00e5ste installera om Arduino. -#: Preferences.java:258 -#, java-format -Could\ not\ read\ preferences\ from\ {0}=Kunde ej l\u00e4sa inst\u00e4llningar fr\u00e5n {0} +#: ../../../processing/app/Sketch.java:1525 +Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=Kunde inte l\u00e4sa den f\u00f6rra bygg-inst\u00e4llningsfilen, bygger om allt. #: Base.java:2482 #, java-format @@ -330,6 +380,9 @@ Could\ not\ rename\ the\ sketch.\ (2)=Kunde ej byta namn p\u00e5 sketchen. (2) #, java-format Could\ not\ replace\ {0}=Kunde ej byta ut {0} +#: ../../../processing/app/Sketch.java:1579 +Could\ not\ write\ build\ preferences\ file=Kunde inte skriva bygg-inst\u00e4llningsfilen + #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Kunde ej arkivera sketch @@ -340,7 +393,7 @@ Couldn't\ determine\ program\ size\:\ {0}=Kunde inte avg\u00f6ra skissens bin\u0 Couldn't\ do\ it=Kunde ej g\u00f6ra det #: debug/BasicUploader.java:209 -!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.= +Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=Kunde inte hitta ett kort p\u00e5 den valda porten. Kontrollera att du har har valt r\u00e4tt port. Om porten \u00e4r korrekt, f\u00f6rs\u00f6k trycka kortets \u00e5terst\u00e4llningsknapp efter p\u00e5b\u00f6rjad uppladdning. #: ../../../processing/app/Preferences.java:82 Croatian=Kroatiska @@ -378,12 +431,19 @@ Done\ Saving.=Sparning f\u00e4rdigt. #: Editor.java:2510 Done\ burning\ bootloader.=Br\u00e4nningen av bootloader \u00e4r klar. +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +Done\ compiling=Kompilering f\u00e4rdig. + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=Kompilering f\u00e4rdig. #: Editor.java:2564 Done\ printing.=Utskrift f\u00e4rdig. +#: ../../../processing/app/BaseNoGui.java:514 +Done\ uploading=Uppladdning f\u00e4rdig. + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=Uppladdning f\u00e4rdig. @@ -462,6 +522,9 @@ Error\ while\ burning\ bootloader.=Fel vid br\u00e4nning av bootloader. #: ../../../processing/app/Editor.java:2555 !Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=Fel vid laddning av kod {0} @@ -469,10 +532,21 @@ Error\ while\ loading\ code\ {0}=Fel vid laddning av kod {0} #: Editor.java:2567 Error\ while\ printing.=Fel vid utskrift. +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 !Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 Estonian=Estniska @@ -488,6 +562,10 @@ Export\ canceled,\ changes\ must\ first\ be\ saved.=Exportering avbruten, \u00e4 #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +!Failed\ to\ open\ sketch\:\ "{0}"= + #: Editor.java:491 File=Fil @@ -522,8 +600,9 @@ Fix\ Encoding\ &\ Reload=Fixa teckenkodningen och ladda om #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=F\u00f6r mer information om att installera bibliotek, g\u00e5 till http\://arduino.cc/en/Guide/Libraries\n -#: debug/BasicUploader.java:80 -Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =Tvingar \u00e5terst\u00e4llning genom 1200bps \u00f6ppning/st\u00e4ngning av port +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=Franska @@ -627,8 +706,8 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Biblioteket #: Preferences.java:106 Lithuaninan=Lituanska -#: ../../../processing/app/Sketch.java:1660 -Low\ memory\ available,\ stability\ problems\ may\ occur=Lite minne tillg\u00e4ngligt, problem med stabiliteten kan intr\u00e4ffa +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 Marathi=Marathi @@ -639,12 +718,24 @@ Message=Meddelande #: ../../../processing/app/preproc/PdePreprocessor.java:412 !Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../processing/app/BaseNoGui.java:455 +Mode\ not\ supported=L\u00e4ge st\u00f6ds ej + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Mer egenskaper kan editeras direkt i filen #: Editor.java:2156 Moving=Flyttar +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +!Must\ specify\ exactly\ one\ sketch\ file= + +#: ../../../processing/app/Preferences.java:158 +!N'Ko= + #: Sketch.java:282 Name\ for\ new\ file\:=Namn p\u00e5 ny fil\: @@ -672,12 +763,18 @@ Next\ Tab=N\u00e4sta flik #: Preferences.java:78 UpdateCheck.java:108 No=Nej +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Inget kort har valts. V\u00e4lj ett kort fr\u00e5n menyn Verktyg > Kort #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Inga \u00e4ndringar beh\u00f6vs f\u00f6r autoformat +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=Inga filer har lagts till i sketchen @@ -687,6 +784,9 @@ No\ files\ were\ added\ to\ the\ sketch.=Inga filer har lagts till i sketchen #: SerialMonitor.java:112 No\ line\ ending=Inget radslut +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Nej, seri\u00f6st, dags f\u00f6r lite frisk luft f\u00f6r dig. @@ -694,6 +794,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Nej, seri\u00f6st, dags f\u0 #, java-format No\ reference\ available\ for\ "{0}"=Det saknas inl\u00e4gg i referensmaterialet f\u00f6r "{0}" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +!No\ valid\ code\ files\ found= + #: ../../../processing/app/Base.java:309 !No\ valid\ configured\ cores\ found\!\ Exiting...= @@ -720,6 +830,9 @@ OK=Ok #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=En fil lagd till sketchen +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=\u00d6ppna @@ -747,12 +860,22 @@ Paste=Klistra in #: Preferences.java:109 Persian=Persiska +#: ../../../processing/app/Preferences.java:161 +!Persian\ (Iran)= + #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Var v\u00e4nlig importera API biblioteket fr\u00e5n Skiss > Importera bibliotek menyn. +#: ../../../processing/app/debug/Compiler.java:529 +!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=Var v\u00e4nlig installera JDK 1.5 eller senare +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 Polish=Polska @@ -874,9 +997,15 @@ Save\ changes\ to\ "{0}"?\ \ =Spara \u00e4ndringar till "{0}"? #: Sketch.java:825 Save\ sketch\ folder\ as...=Spara sketchmappen som... +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=Sparar... +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=V\u00e4lj (eller skapa ny) mapp f\u00f6r dina sketcher... @@ -901,14 +1030,6 @@ Send=Skicka #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=Seriell monitor -#: Serial.java:174 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Serieporten "{0}" anv\u00e4nds redan. F\u00f6rs\u00f6k att avsluta alla program som kan t\u00e4nkas anv\u00e4nda den. - -#: Serial.java:121 -#, java-format -!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.= - #: Serial.java:194 #, java-format Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Serieporten ''{0}'' saknas. Valde du r\u00e4tt fr\u00e5n Verktyg > Serieport menyn? @@ -963,6 +1084,9 @@ Sketchbook\ folder\ disappeared=Sketchbookmappen f\u00f6rsvann #: Preferences.java:315 Sketchbook\ location\:=Sketchbookplats\: +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 Sketches\ (*.ino,\ *.pde)=Sketcher (*.ino, *.pde) @@ -986,7 +1110,7 @@ Spanish=Spanska Sunshine=Solsken #: ../../../processing/app/Preferences.java:153 -!Swedish= +Swedish=Svenska #: Preferences.java:84 !System\ Default= @@ -997,6 +1121,9 @@ Tamil=Tamil #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=Nyckelordet 'BYTE' st\u00f6djs ej l\u00e4ngre. +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Klassen Client har d\u00f6pts om till EthernetClient. @@ -1033,12 +1160,15 @@ The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino #: Sketch.java:1755 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Sketchmappen har f\u00f6rsvunnit.\nF\u00f6rs\u00f6ker att spara om p\u00e5 samma plats,\nmen allt f\u00f6rutom koden kommer att f\u00f6rsvinna. -#: Sketch.java:2018 -!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.= +#: ../../../processing/app/Sketch.java:2028 +!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Sketchbookmappen existerar ej l\u00e4ngre. Arduino kommer nu att byta till standardplatsen, och skapa en ny sketchbookmapp om n\u00f6dv\u00e4ndigt. Arduino kommer sen att sluta referera till sig sj\u00e4lv i tredje person. +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 !This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= @@ -1142,6 +1272,10 @@ Vietnamese=Vietnamesiska #: Editor.java:1105 Visit\ Arduino.cc=Bes\u00f6k Arduino.cc +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= + #: Base.java:2128 Warning=Varning @@ -1240,9 +1374,6 @@ environment=milj\u00f6 #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1265,13 +1396,6 @@ name\ is\ null=name \u00e4r null #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -!readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}= - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: internt fel... kunde inte hitta koden - #: Editor.java:932 serialMenu\ is\ null=serialMenu \u00e4r null @@ -1279,6 +1403,10 @@ serialMenu\ is\ null=serialMenu \u00e4r null #, java-format the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=Den valda seriella porten {0} existerar inte eller s\u00e5 \u00e4r din board inte ansluten. +#: ../../../processing/app/Base.java:389 +#, java-format +!unknown\ option\:\ {0}= + #: Preferences.java:391 upload=Ladda upp @@ -1297,3 +1425,35 @@ upload=Ladda upp #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= + +#: ../../../processing/app/Base.java:476 +#, java-format +!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= + +#: ../../../processing/app/Base.java:509 +#, java-format +!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= + +#: ../../../processing/app/Base.java:507 +#, java-format +!{0}\:\ Invalid\ option\ for\ board\ "{1}"= + +#: ../../../processing/app/Base.java:502 +#, java-format +!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= + +#: ../../../processing/app/Base.java:486 +#, java-format +!{0}\:\ Unknown\ architecture= + +#: ../../../processing/app/Base.java:491 +#, java-format +!{0}\:\ Unknown\ board= + +#: ../../../processing/app/Base.java:481 +#, java-format +{0}\:\ Unknown\ package=Ok\u00e4nt paket diff --git a/arduino-core/src/processing/app/i18n/Resources_ta.po b/arduino-core/src/processing/app/i18n/Resources_ta.po index 37e579c00..d29287144 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ta.po +++ b/arduino-core/src/processing/app/i18n/Resources_ta.po @@ -33,6 +33,12 @@ msgstr "" msgid "(edit only when Arduino is not running)" msgstr "(Arduino செயல்படாதபோது மாற்றம் மட்டுமே முடியும்)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -91,6 +97,10 @@ msgstr "கோப்பை சேர்" msgid "Add Library..." msgstr "நூலகத்தை சேர்..." +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -98,6 +108,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "கோப்பு குறியீட்டை சரிசெய்ய முயலும்போது ஒரு பிழை ஏற்பட்டுவிட்டது.\nஇந்திய வரைவை சேமிக்க முயலவேண்டாம். ஏனென்றால், அது பழைய பதிப்பை \nமற்றியமைத்துவிடும். வரைவை மறுபடியும் திறந்து முயற்சித்துப்பார்க்கவும்.\n" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -176,6 +200,30 @@ msgstr "நீங்கள் \"{0}\"ஐ நீக்க வேண்டும msgid "Are you sure you want to delete this sketch?" msgstr "நீங்கள் இந்த வரைவை நீக்க வேண்டும் என்பதில் உறுதியாக இருக்கிறீர்களா?" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "" @@ -184,6 +232,10 @@ msgstr "" msgid "Asturian" msgstr "" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "சுய வடிவம்" @@ -225,6 +277,14 @@ msgstr "பிழையின் வரிசை: {0}" msgid "Bad file selected" msgstr "தவறான கோப்பு தேர்வுசெய்யப்பட்டுள்ளது " +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "" @@ -261,6 +321,10 @@ msgstr "உலவு" msgid "Build folder disappeared or could not be written" msgstr "கட்டுமான கோப்புறையை காணவில்லை (அ) எழுதப்பட்ட முடியவில்லை" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "" @@ -277,8 +341,14 @@ msgstr "துவக்கு நிரல் பதிவேற்று" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "துவக்கு நிரலை உள்ளீடு/வெளியீடு பலகையில் பதிவேற்றப்படுகிறது (இது சில நிமிடங்கள் நடக்கும்)..." -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" msgstr "" #: ../../../processing/app/Preferences.java:92 @@ -294,6 +364,10 @@ msgstr "இரத்து செய்" msgid "Cannot Rename" msgstr "மறுபெயரிட முடியாது" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "புதுவரி திரும்பி" @@ -338,11 +412,6 @@ msgstr "மூடு" msgid "Comment/Uncomment" msgstr "கருத்துரைக/கருத்தை நீக்குக" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "தொகுப்பு பிழை, தயவு செய்து குறியீட்டை {0}க்கு சமர்பிக்கவும்" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "வரைவை தொகுக்கிறது..." @@ -450,10 +519,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "இயல்புநிலை அமைப்புகளை படிக்க முடியவில்லை.\nநீங்கள் Arduinoவை மீண்டும் நிறுவ வேண்டும்." -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "{0}ல் இருந்து விருப்பங்களை படிக்க முடியவில்லை" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "" #: Base.java:2482 #, java-format @@ -482,6 +550,10 @@ msgstr "வரைவை மருபெயரிட முடியவில் msgid "Could not replace {0}" msgstr "{0}வை மாற்ற முடியவில்லை" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "வரைவை ஆவணப்படுத்த முடியவில்லை" @@ -551,6 +623,11 @@ msgstr "செமித்துவிட்டது." msgid "Done burning bootloader." msgstr "துவக்கு நிரலை பதிவேற்றிவிட்டது." +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "தொகுத்துவிட்டது." @@ -559,6 +636,10 @@ msgstr "தொகுத்துவிட்டது." msgid "Done printing." msgstr "அச்சிட்டுவிட்டது." +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "மேலேற்றி முடித்துவிட்டது." @@ -662,6 +743,10 @@ msgstr "துவக்கு நிரலை பதிவேற்றும் msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -671,11 +756,25 @@ msgstr "குறியீடு {0}ஐ மேலேற்றும்போத msgid "Error while printing." msgstr "அச்சிடும்போது பிழை ஏற்பட்டுவிட்டது." +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "" @@ -696,6 +795,11 @@ msgstr "ஏற்றுமதி ரத்து செய்யப்பட் msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "" + #: Editor.java:491 msgid "File" msgstr "கோப்பு" @@ -743,8 +847,9 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" msgstr "" #: Preferences.java:95 @@ -893,8 +998,8 @@ msgstr "" msgid "Lithuaninan" msgstr "" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: Preferences.java:107 @@ -909,6 +1014,10 @@ msgstr "தகவல்" msgid "Missing the */ from the end of a /* comment */" msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "மேலும் விருப்பத்தேர்வுகளை நேரடியாக கோப்பில் திருத்தலாம்" @@ -917,6 +1026,18 @@ msgstr "மேலும் விருப்பத்தேர்வுகள msgid "Moving" msgstr "நகற்றுகிறது" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "" + #: Sketch.java:282 msgid "Name for new file:" msgstr "புதிய கோப்பின் பெயர்:" @@ -953,6 +1074,10 @@ msgstr "அடுத்த தாவல்" msgid "No" msgstr "இல்லை" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "பலகை தேர்வு செய்யப்படவில்லை; ஒரு பலகையை கருவிகள் > பலகை பட்டியலில் தேர்வு செய்யவும்." @@ -961,6 +1086,10 @@ msgstr "பலகை தேர்வு செய்யப்படவில் msgid "No changes necessary for Auto Format." msgstr "சுய வடிவத்திற்கு எந்த மாற்றங்களும் தேவையில்லை." +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "வரைவில் இன்னும் கோப்புகள் சேர்க்கப்படவில்லை." @@ -973,6 +1102,10 @@ msgstr "எந்த ஏவுதிரையும் கிட்டவில msgid "No line ending" msgstr "வரி முடிவு இல்லை" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "இல்லை உண்மையாகவே, இது நீங்கள் புத்துணர்ச்சி பெறவேண்டிய நேரம்." @@ -982,6 +1115,19 @@ msgstr "இல்லை உண்மையாகவே, இது நீங் msgid "No reference available for \"{0}\"" msgstr "\"{0}\" க்கு எந்த குறிப்பும் இல்லை" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "" @@ -1018,6 +1164,10 @@ msgstr "சரி" msgid "One file added to the sketch." msgstr "வரைவில் ஒரு கோப்பு சேர்க்கப்பட்டுள்ளன." +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "திற" @@ -1054,14 +1204,27 @@ msgstr "ஒட்டு" msgid "Persian" msgstr "பர்ஸியன்" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "SPI நூலகத்தை வரைவு > நூலக இறக்குமதி பட்டியலில் இருந்து இறக்குமதி செய்யவும்." +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "" + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "தயவுசெய்து JDK 1.5 (அ) புதியதை நிறுவவும்" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "" @@ -1224,10 +1387,18 @@ msgstr "மாறுதல்களை \"{0}\"? ல் சேமிக்கவ msgid "Save sketch folder as..." msgstr "என வரைவை கொப்புரையில் சேமிக்கவும்..." +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "சேமிக்கிறது..." +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "வரைவுகளுக்கு உறையை தேர்வு செய்யவும் (அல்லது உருவாக்கவும்)..." @@ -1260,20 +1431,6 @@ msgstr "அனுப்பு" msgid "Serial Monitor" msgstr "தொடர்நிலை கண்காணிப்புத்திரை" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "தொடர்நிலை துறை ''{0}'' ஏற்கனவே பயன்பாட்டிலுள்ளது. அதை பயன்படுத்தும் வேறு நிரலை அணைத்துவிட்டு முயற்சிக்கவும்." - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "" - #: Serial.java:194 #, java-format msgid "" @@ -1353,6 +1510,10 @@ msgstr "வரைவுப்புத்தக உறை மறைந்து msgid "Sketchbook location:" msgstr "வரைவுப்புத்தக இடம்:" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "" @@ -1403,6 +1564,10 @@ msgstr "" msgid "The 'BYTE' keyword is no longer supported." msgstr "'BYTE' குறிச்சொல் இனிமேல் உபயோகப்படாது." +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "Client class, EthernetClient என பெயர்மாற்றப்பட்டுள்ளது." @@ -1470,12 +1635,12 @@ msgid "" "but anything besides the code will be lost." msgstr "வரைவு உறை மறைந்துவிட்டது.\n அதே இடத்தில சேமிக்க மறுபடியும் முயற்சிக்கிறேன்,\nஆனால், குறியீட்டை தவிர மற்றவைகளை இழந்துவிடுவீர்கள்." -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." -msgstr "வரைவின் பெயர் மாற்றப்பட்டுள்ளது. வரைவுப்பெயர்கள் ASCII எழுத்துக்கள் \nமற்றும் எண்களை கொண்டிருக்கலாம்(ஆனால் எண்ணில் ஆரம்பமாகக்கூடாது).\nஅவை 64 எழுத்துகளுக்கு மேல் இருக்கக்கூடாது." +"They should also be less than 64 characters long." +msgstr "" #: Base.java:259 msgid "" @@ -1486,6 +1651,12 @@ msgid "" "himself in the third person." msgstr "வரைவுறை இல்லை.\nArduino இயல்பான வரைவுப்புத்தக இடத்திற்கு மாறியபின்,\nதேவைப்பட்டால் புதிய வரைவுப்புத்தக உறையை உருவாக்கும். \nArduino தன்னைபற்றியே மூன்றாவது மனிதன் போல \nபேசுவதை நிறுத்திக்கொள்ளும்." +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1628,6 +1799,13 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "Arduino.cc செல்க" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "" + #: Base.java:2128 msgid "Warning" msgstr "எச்சரிக்கை" @@ -1796,10 +1974,6 @@ msgstr "சுற்றுச்சூழல்" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1829,17 +2003,6 @@ msgstr "பெயர் வெற்றாக உள்ளது" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "readBytesUntil() எண்பிட்டு அணை {0} எண்பிட்டுகளுக்கு மிக குறைவாக உள்ளது char {1} உடன் சேற்று" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "removeCode: உள் பிழை .. குறியீட்டை கண்டுபிடிக்க முடியவில்லை" - #: Editor.java:932 msgid "serialMenu is null" msgstr "தொடர் தெரிவுதிரை வெற்றாக உள்ளது" @@ -1850,6 +2013,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "தேர்வு செய்த தொடர் துறை {0} இல்லை (அ)உங்கள் பலகை இணைக்கப்படவில்லை" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "" + #: Preferences.java:391 msgid "upload" msgstr "பதிவேற்று" @@ -1873,3 +2041,45 @@ msgstr "{0} | Arduino {1}" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "" diff --git a/arduino-core/src/processing/app/i18n/Resources_ta.properties b/arduino-core/src/processing/app/i18n/Resources_ta.properties index 09ee35ee5..51fd2780d 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ta.properties +++ b/arduino-core/src/processing/app/i18n/Resources_ta.properties @@ -17,6 +17,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(Arduino \u0b9a\u0bc6\u0baf\u0bb2\u0bcd\u0baa\u0b9f\u0bbe\u0ba4\u0baa\u0bcb\u0ba4\u0bc1 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bae\u0bcd \u0bae\u0b9f\u0bcd\u0b9f\u0bc1\u0bae\u0bc7 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bc1\u0bae\u0bcd) +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -53,9 +56,23 @@ Add\ File...=\u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc8 \u0b9a\u0bc7\u0bb0\u0bcd #: Base.java:963 Add\ Library...=\u0ba8\u0bc2\u0bb2\u0b95\u0ba4\u0bcd\u0ba4\u0bc8 \u0b9a\u0bc7\u0bb0\u0bcd... +#: ../../../processing/app/Preferences.java:96 +!Albanian= + #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=\u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1 \u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bcd\u0b9f\u0bc8 \u0b9a\u0bb0\u0bbf\u0b9a\u0bc6\u0baf\u0bcd\u0baf \u0bae\u0bc1\u0baf\u0bb2\u0bc1\u0bae\u0bcd\u0baa\u0bcb\u0ba4\u0bc1 \u0b92\u0bb0\u0bc1 \u0baa\u0bbf\u0bb4\u0bc8 \u0b8f\u0bb1\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1.\n\u0b87\u0ba8\u0bcd\u0ba4\u0bbf\u0baf \u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0baf\u0bb2\u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bbe\u0bae\u0bcd. \u0b8f\u0ba9\u0bc6\u0ba9\u0bcd\u0bb1\u0bbe\u0bb2\u0bcd, \u0b85\u0ba4\u0bc1 \u0baa\u0bb4\u0bc8\u0baf \u0baa\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0bc8 \n\u0bae\u0bb1\u0bcd\u0bb1\u0bbf\u0baf\u0bae\u0bc8\u0ba4\u0bcd\u0ba4\u0bc1\u0bb5\u0bbf\u0b9f\u0bc1\u0bae\u0bcd. \u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0bae\u0bb1\u0bc1\u0baa\u0b9f\u0bbf\u0baf\u0bc1\u0bae\u0bcd \u0ba4\u0bbf\u0bb1\u0ba8\u0bcd\u0ba4\u0bc1 \u0bae\u0bc1\u0baf\u0bb1\u0bcd\u0b9a\u0bbf\u0ba4\u0bcd\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbe\u0bb0\u0bcd\u0b95\u0bcd\u0b95\u0bb5\u0bc1\u0bae\u0bcd.\n +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=\u0b89\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b95\u0ba3\u0bbf\u0ba9\u0bbf\u0b95\u0bcd\u0b95\u0bc1 \u0b87\u0baf\u0b99\u0bcd\u0b95\u0bc1\u0ba4\u0bb3\u0bae\u0bcd-\u0b95\u0bc1\u0bb1\u0bbf\u0baa\u0bcd\u0baa\u0bbf\u0b9f\u0bcd\u0b9f \u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bcd\u0b9f\u0bc8 \u0b8f\u0bb1\u0bcd\u0bb1 \n\u0bae\u0bc1\u0baf\u0bb1\u0bcd\u0b9a\u0bbf\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0bcd\u0baa\u0bc7\u0bbe\u0ba4\u0bc1 \u0b92\u0bb0\u0bc1 \u0b85\u0bb1\u0bbf\u0baf\u0baa\u0bcd\u0baa\u0b9f\u0bbe\u0ba4 \u0baa\u0bbf\u0bb4\u0bc8 \u0b8f\u0bb1\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1. @@ -105,12 +122,33 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u0ba8\u0bc0\u0b99\u0bcd\u0b95\u0b #: Sketch.java:587 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u0ba8\u0bc0\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b87\u0ba8\u0bcd\u0ba4 \u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0ba8\u0bc0\u0b95\u0bcd\u0b95 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd \u0b8e\u0ba9\u0bcd\u0baa\u0ba4\u0bbf\u0bb2\u0bcd \u0b89\u0bb1\u0bc1\u0ba4\u0bbf\u0baf\u0bbe\u0b95 \u0b87\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bbf\u0bb1\u0bc0\u0bb0\u0bcd\u0b95\u0bb3\u0bbe? +#: ../../../processing/app/Base.java:356 +!Argument\ required\ for\ --board= + +#: ../../../processing/app/Base.java:370 +!Argument\ required\ for\ --curdir= + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +!Argument\ required\ for\ --port= + +#: ../../../processing/app/Base.java:377 +!Argument\ required\ for\ --pref= + +#: ../../../processing/app/Base.java:384 +!Argument\ required\ for\ --preferences-file= + #: ../../../processing/app/Preferences.java:137 !Armenian= #: ../../../processing/app/Preferences.java:138 !Asturian= +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 Auto\ Format=\u0b9a\u0bc1\u0baf \u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bcd @@ -142,6 +180,12 @@ Bad\ error\ line\:\ {0}=\u0baa\u0bbf\u0bb4\u0bc8\u0baf\u0bbf\u0ba9\u0bcd \u0bb5\ #: Editor.java:2136 Bad\ file\ selected=\u0ba4\u0bb5\u0bb1\u0bbe\u0ba9 \u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1 \u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1\u0b9a\u0bc6\u0baf\u0bcd\u0baf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1 +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +!Basque= + #: ../../../processing/app/Preferences.java:139 !Belarusian= @@ -168,6 +212,9 @@ Browse=\u0b89\u0bb2\u0bb5\u0bc1 #: Sketch.java:1392 Sketch.java:1423 Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u0b95\u0b9f\u0bcd\u0b9f\u0bc1\u0bae\u0bbe\u0ba9 \u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1\u0bb1\u0bc8\u0baf\u0bc8 \u0b95\u0bbe\u0ba3\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8 (\u0b85) \u0b8e\u0bb4\u0bc1\u0ba4\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8 +#: ../../../processing/app/Sketch.java:1530 +!Build\ options\ changed,\ rebuilding\ all= + #: ../../../processing/app/Preferences.java:80 !Bulgarian= @@ -180,8 +227,13 @@ Burn\ Bootloader=\u0ba4\u0bc1\u0bb5\u0b95\u0bcd\u0b95\u0bc1 \u0ba8\u0bbf\u0bb0\u #: Editor.java:2504 Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u0ba4\u0bc1\u0bb5\u0b95\u0bcd\u0b95\u0bc1 \u0ba8\u0bbf\u0bb0\u0bb2\u0bc8 \u0b89\u0bb3\u0bcd\u0bb3\u0bc0\u0b9f\u0bc1/\u0bb5\u0bc6\u0bb3\u0bbf\u0baf\u0bc0\u0b9f\u0bc1 \u0baa\u0bb2\u0b95\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0baa\u0ba4\u0bbf\u0bb5\u0bc7\u0bb1\u0bcd\u0bb1\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1 (\u0b87\u0ba4\u0bc1 \u0b9a\u0bbf\u0bb2 \u0ba8\u0bbf\u0bae\u0bbf\u0b9f\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0ba8\u0b9f\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0bcd)... -#: ../../../processing/app/Base.java:368 -!Can't\ open\ source\ sketch\!= +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 !Canadian\ French= @@ -193,6 +245,9 @@ Cancel=\u0b87\u0bb0\u0ba4\u0bcd\u0ba4\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd #: Sketch.java:455 Cannot\ Rename=\u0bae\u0bb1\u0bc1\u0baa\u0bc6\u0baf\u0bb0\u0bbf\u0b9f \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bbe\u0ba4\u0bc1 +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 Carriage\ return=\u0baa\u0bc1\u0ba4\u0bc1\u0bb5\u0bb0\u0bbf \u0ba4\u0bbf\u0bb0\u0bc1\u0bae\u0bcd\u0baa\u0bbf @@ -226,10 +281,6 @@ Close=\u0bae\u0bc2\u0b9f\u0bc1 #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=\u0b95\u0bb0\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb0\u0bc8\u0b95/\u0b95\u0bb0\u0bc1\u0ba4\u0bcd\u0ba4\u0bc8 \u0ba8\u0bc0\u0b95\u0bcd\u0b95\u0bc1\u0b95 -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=\u0ba4\u0bca\u0b95\u0bc1\u0baa\u0bcd\u0baa\u0bc1 \u0baa\u0bbf\u0bb4\u0bc8, \u0ba4\u0baf\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0ba4\u0bc1 \u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bcd\u0b9f\u0bc8 {0}\u0b95\u0bcd\u0b95\u0bc1 \u0b9a\u0bae\u0bb0\u0bcd\u0baa\u0bbf\u0b95\u0bcd\u0b95\u0bb5\u0bc1\u0bae\u0bcd - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=\u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95\u0bbf\u0bb1\u0ba4\u0bc1... @@ -305,9 +356,8 @@ Could\ not\ re-save\ sketch=\u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0bae\u0bb1\u0bc1\u0 #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u0b87\u0baf\u0bb2\u0bcd\u0baa\u0bc1\u0ba8\u0bbf\u0bb2\u0bc8 \u0b85\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bc8 \u0baa\u0b9f\u0bbf\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8.\n\u0ba8\u0bc0\u0b99\u0bcd\u0b95\u0bb3\u0bcd Arduino\u0bb5\u0bc8 \u0bae\u0bc0\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd \u0ba8\u0bbf\u0bb1\u0bc1\u0bb5 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd. -#: Preferences.java:258 -#, java-format -Could\ not\ read\ preferences\ from\ {0}={0}\u0bb2\u0bcd \u0b87\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1 \u0bb5\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0b99\u0bcd\u0b95\u0bb3\u0bc8 \u0baa\u0b9f\u0bbf\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8 +#: ../../../processing/app/Sketch.java:1525 +!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= #: Base.java:2482 #, java-format @@ -330,6 +380,9 @@ Could\ not\ rename\ the\ sketch.\ (2)=\u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0bae\u0bb #, java-format Could\ not\ replace\ {0}={0}\u0bb5\u0bc8 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8 +#: ../../../processing/app/Sketch.java:1579 +!Could\ not\ write\ build\ preferences\ file= + #: tools/Archiver.java:74 Couldn't\ archive\ sketch=\u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0b86\u0bb5\u0ba3\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8 @@ -378,12 +431,19 @@ Done\ Saving.=\u0b9a\u0bc6\u0bae\u0bbf\u0ba4\u0bcd\u0ba4\u0bc1\u0bb5\u0bbf\u0b9f #: Editor.java:2510 Done\ burning\ bootloader.=\u0ba4\u0bc1\u0bb5\u0b95\u0bcd\u0b95\u0bc1 \u0ba8\u0bbf\u0bb0\u0bb2\u0bc8 \u0baa\u0ba4\u0bbf\u0bb5\u0bc7\u0bb1\u0bcd\u0bb1\u0bbf\u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1. +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=\u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1. #: Editor.java:2564 Done\ printing.=\u0b85\u0b9a\u0bcd\u0b9a\u0bbf\u0b9f\u0bcd\u0b9f\u0bc1\u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1. +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=\u0bae\u0bc7\u0bb2\u0bc7\u0bb1\u0bcd\u0bb1\u0bbf \u0bae\u0bc1\u0b9f\u0bbf\u0ba4\u0bcd\u0ba4\u0bc1\u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1. @@ -462,6 +522,9 @@ Error\ while\ burning\ bootloader.=\u0ba4\u0bc1\u0bb5\u0b95\u0bcd\u0b95\u0bc1 \u #: ../../../processing/app/Editor.java:2555 !Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1 {0}\u0b90 \u0bae\u0bc7\u0bb2\u0bc7\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd\u0baa\u0bcb\u0ba4\u0bc1 \u0baa\u0bbf\u0bb4\u0bc8 \u0b8f\u0bb1\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1 @@ -469,10 +532,21 @@ Error\ while\ loading\ code\ {0}=\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc #: Editor.java:2567 Error\ while\ printing.=\u0b85\u0b9a\u0bcd\u0b9a\u0bbf\u0b9f\u0bc1\u0bae\u0bcd\u0baa\u0bcb\u0ba4\u0bc1 \u0baa\u0bbf\u0bb4\u0bc8 \u0b8f\u0bb1\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1. +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 !Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 !Estonian= @@ -488,6 +562,10 @@ Export\ canceled,\ changes\ must\ first\ be\ saved.=\u0b8f\u0bb1\u0bcd\u0bb1\u0b #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +!Failed\ to\ open\ sketch\:\ "{0}"= + #: Editor.java:491 File=\u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1 @@ -522,8 +600,9 @@ Fix\ Encoding\ &\ Reload=\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bcd\u0b9f\ #: Base.java:1851 !For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n= -#: debug/BasicUploader.java:80 -!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ = +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=\u0baa\u0bbf\u0bb0\u0b9e\u0bcd\u0b9a\u0bc1 @@ -627,8 +706,8 @@ Latvian=\u0bb2\u0bc7\u0b9f\u0bcd\u0bb5\u0bbf\u0baf\u0ba9\u0bcd #: Preferences.java:106 !Lithuaninan= -#: ../../../processing/app/Sketch.java:1660 -!Low\ memory\ available,\ stability\ problems\ may\ occur= +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 !Marathi= @@ -639,12 +718,24 @@ Message=\u0ba4\u0b95\u0bb5\u0bb2\u0bcd #: ../../../processing/app/preproc/PdePreprocessor.java:412 !Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\u0bae\u0bc7\u0bb2\u0bc1\u0bae\u0bcd \u0bb5\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0ba4\u0bcd\u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1\u0b95\u0bb3\u0bc8 \u0ba8\u0bc7\u0bb0\u0b9f\u0bbf\u0baf\u0bbe\u0b95 \u0b95\u0bc7\u0bbe\u0baa\u0bcd\u0baa\u0bbf\u0bb2\u0bcd \u0ba4\u0bbf\u0bb0\u0bc1\u0ba4\u0bcd\u0ba4\u0bb2\u0bbe\u0bae\u0bcd #: Editor.java:2156 Moving=\u0ba8\u0b95\u0bb1\u0bcd\u0bb1\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1 +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +!Must\ specify\ exactly\ one\ sketch\ file= + +#: ../../../processing/app/Preferences.java:158 +!N'Ko= + #: Sketch.java:282 Name\ for\ new\ file\:=\u0baa\u0bc1\u0ba4\u0bbf\u0baf \u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bbf\u0ba9\u0bcd \u0baa\u0bc6\u0baf\u0bb0\u0bcd\: @@ -672,12 +763,18 @@ Next\ Tab=\u0b85\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4 \u0ba4\u0bbe\u0bb5\u0bb2\u0bcd #: Preferences.java:78 UpdateCheck.java:108 No=\u0b87\u0bb2\u0bcd\u0bb2\u0bc8 +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u0baa\u0bb2\u0b95\u0bc8 \u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0baf\u0baa\u0bcd\u0baa\u0b9f\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8; \u0b92\u0bb0\u0bc1 \u0baa\u0bb2\u0b95\u0bc8\u0baf\u0bc8 \u0b95\u0bb0\u0bc1\u0bb5\u0bbf\u0b95\u0bb3\u0bcd > \u0baa\u0bb2\u0b95\u0bc8 \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bbf\u0bb2\u0bcd \u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0baf\u0bb5\u0bc1\u0bae\u0bcd. #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=\u0b9a\u0bc1\u0baf \u0bb5\u0b9f\u0bbf\u0bb5\u0ba4\u0bcd\u0ba4\u0bbf\u0bb1\u0bcd\u0b95\u0bc1 \u0b8e\u0ba8\u0bcd\u0ba4 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0b99\u0bcd\u0b95\u0bb3\u0bc1\u0bae\u0bcd \u0ba4\u0bc7\u0bb5\u0bc8\u0baf\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8. +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=\u0bb5\u0bb0\u0bc8\u0bb5\u0bbf\u0bb2\u0bcd \u0b87\u0ba9\u0bcd\u0ba9\u0bc1\u0bae\u0bcd \u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8. @@ -687,6 +784,9 @@ No\ launcher\ available=\u0b8e\u0ba8\u0bcd\u0ba4 \u0b8f\u0bb5\u0bc1\u0ba4\u0bbf\ #: SerialMonitor.java:112 No\ line\ ending=\u0bb5\u0bb0\u0bbf \u0bae\u0bc1\u0b9f\u0bbf\u0bb5\u0bc1 \u0b87\u0bb2\u0bcd\u0bb2\u0bc8 +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u0b87\u0bb2\u0bcd\u0bb2\u0bc8 \u0b89\u0ba3\u0bcd\u0bae\u0bc8\u0baf\u0bbe\u0b95\u0bb5\u0bc7, \u0b87\u0ba4\u0bc1 \u0ba8\u0bc0\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0baa\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0ba3\u0bb0\u0bcd\u0b9a\u0bcd\u0b9a\u0bbf \u0baa\u0bc6\u0bb1\u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bbf\u0baf \u0ba8\u0bc7\u0bb0\u0bae\u0bcd. @@ -694,6 +794,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u0b87\u0bb2\u0bcd\u0bb2\u0b #, java-format No\ reference\ available\ for\ "{0}"="{0}" \u0b95\u0bcd\u0b95\u0bc1 \u0b8e\u0ba8\u0bcd\u0ba4 \u0b95\u0bc1\u0bb1\u0bbf\u0baa\u0bcd\u0baa\u0bc1\u0bae\u0bcd \u0b87\u0bb2\u0bcd\u0bb2\u0bc8 +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +!No\ valid\ code\ files\ found= + #: ../../../processing/app/Base.java:309 !No\ valid\ configured\ cores\ found\!\ Exiting...= @@ -720,6 +830,9 @@ OK=\u0b9a\u0bb0\u0bbf #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=\u0bb5\u0bb0\u0bc8\u0bb5\u0bbf\u0bb2\u0bcd \u0b92\u0bb0\u0bc1 \u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb3\u0bcd\u0bb3\u0ba9. +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=\u0ba4\u0bbf\u0bb1 @@ -747,12 +860,22 @@ Paste=\u0b92\u0b9f\u0bcd\u0b9f\u0bc1 #: Preferences.java:109 Persian=\u0baa\u0bb0\u0bcd\u0bb8\u0bbf\u0baf\u0ba9\u0bcd +#: ../../../processing/app/Preferences.java:161 +!Persian\ (Iran)= + #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=SPI \u0ba8\u0bc2\u0bb2\u0b95\u0ba4\u0bcd\u0ba4\u0bc8 \u0bb5\u0bb0\u0bc8\u0bb5\u0bc1 > \u0ba8\u0bc2\u0bb2\u0b95 \u0b87\u0bb1\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0ba4\u0bbf \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bbf\u0bb2\u0bcd \u0b87\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1 \u0b87\u0bb1\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0ba4\u0bbf \u0b9a\u0bc6\u0baf\u0bcd\u0baf\u0bb5\u0bc1\u0bae\u0bcd. +#: ../../../processing/app/debug/Compiler.java:529 +!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=\u0ba4\u0baf\u0bb5\u0bc1\u0b9a\u0bc6\u0baf\u0bcd\u0ba4\u0bc1 JDK 1.5 (\u0b85) \u0baa\u0bc1\u0ba4\u0bbf\u0baf\u0ba4\u0bc8 \u0ba8\u0bbf\u0bb1\u0bc1\u0bb5\u0bb5\u0bc1\u0bae\u0bcd +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 !Polish= @@ -874,9 +997,15 @@ Save\ changes\ to\ "{0}"?\ \ =\u0bae\u0bbe\u0bb1\u0bc1\u0ba4\u0bb2\u0bcd\u0b95\u #: Sketch.java:825 Save\ sketch\ folder\ as...=\u0b8e\u0ba9 \u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0b95\u0bca\u0baa\u0bcd\u0baa\u0bc1\u0bb0\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95\u0bb5\u0bc1\u0bae\u0bcd... +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=\u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95\u0bbf\u0bb1\u0ba4\u0bc1... +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=\u0bb5\u0bb0\u0bc8\u0bb5\u0bc1\u0b95\u0bb3\u0bc1\u0b95\u0bcd\u0b95\u0bc1 \u0b89\u0bb1\u0bc8\u0baf\u0bc8 \u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0baf\u0bb5\u0bc1\u0bae\u0bcd (\u0b85\u0bb2\u0bcd\u0bb2\u0ba4\u0bc1 \u0b89\u0bb0\u0bc1\u0bb5\u0bbe\u0b95\u0bcd\u0b95\u0bb5\u0bc1\u0bae\u0bcd)... @@ -901,14 +1030,6 @@ Send=\u0b85\u0ba9\u0bc1\u0baa\u0bcd\u0baa\u0bc1 #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=\u0ba4\u0bca\u0b9f\u0bb0\u0bcd\u0ba8\u0bbf\u0bb2\u0bc8 \u0b95\u0ba3\u0bcd\u0b95\u0bbe\u0ba3\u0bbf\u0baa\u0bcd\u0baa\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0bb0\u0bc8 -#: Serial.java:174 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=\u0ba4\u0bca\u0b9f\u0bb0\u0bcd\u0ba8\u0bbf\u0bb2\u0bc8 \u0ba4\u0bc1\u0bb1\u0bc8 ''{0}'' \u0b8f\u0bb1\u0bcd\u0b95\u0ba9\u0bb5\u0bc7 \u0baa\u0baf\u0ba9\u0bcd\u0baa\u0bbe\u0b9f\u0bcd\u0b9f\u0bbf\u0bb2\u0bc1\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1. \u0b85\u0ba4\u0bc8 \u0baa\u0baf\u0ba9\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bae\u0bcd \u0bb5\u0bc7\u0bb1\u0bc1 \u0ba8\u0bbf\u0bb0\u0bb2\u0bc8 \u0b85\u0ba3\u0bc8\u0ba4\u0bcd\u0ba4\u0bc1\u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0bc1 \u0bae\u0bc1\u0baf\u0bb1\u0bcd\u0b9a\u0bbf\u0b95\u0bcd\u0b95\u0bb5\u0bc1\u0bae\u0bcd. - -#: Serial.java:121 -#, java-format -!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.= - #: Serial.java:194 #, java-format Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=\u0ba4\u0bca\u0b9f\u0bb0\u0bcd\u0ba8\u0bbf\u0bb2\u0bc8 \u0ba4\u0bc1\u0bb1\u0bc8 ''{0}''\u0baf\u0bc8 \u0b95\u0bbe\u0ba3\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8. \u0ba8\u0bc0\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b9a\u0bb0\u0bbf\u0baf\u0bbe\u0ba9\u0ba4\u0bc8 \u0b95\u0bb0\u0bc1\u0bb5\u0bbf\u0b95\u0bb3\u0bcd > \u0ba4\u0bca\u0b9f\u0bb0\u0bcd\u0ba8\u0bbf\u0bb2\u0bc8 \u0ba4\u0bc1\u0bb1\u0bc8 \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bbf\u0bb2\u0bcd \u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0ba4\u0bc0\u0bb0\u0bcd\u0b95\u0bb3\u0bbe? @@ -963,6 +1084,9 @@ Sketchbook\ folder\ disappeared=\u0bb5\u0bb0\u0bc8\u0bb5\u0bc1\u0baa\u0bcd\u0baa #: Preferences.java:315 Sketchbook\ location\:=\u0bb5\u0bb0\u0bc8\u0bb5\u0bc1\u0baa\u0bcd\u0baa\u0bc1\u0ba4\u0bcd\u0ba4\u0b95 \u0b87\u0b9f\u0bae\u0bcd\: +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 !Sketches\ (*.ino,\ *.pde)= @@ -997,6 +1121,9 @@ Sunshine=\u0b9a\u0bc2\u0bb0\u0bcd\u0baf\u0bcb\u0ba4\u0baf\u0bae\u0bcd #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.='BYTE' \u0b95\u0bc1\u0bb1\u0bbf\u0b9a\u0bcd\u0b9a\u0bca\u0bb2\u0bcd \u0b87\u0ba9\u0bbf\u0bae\u0bc7\u0bb2\u0bcd \u0b89\u0baa\u0baf\u0bcb\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bbe\u0ba4\u0bc1. +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Client class, EthernetClient \u0b8e\u0ba9 \u0baa\u0bc6\u0baf\u0bb0\u0bcd\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1. @@ -1033,12 +1160,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=\u0bb5\u0bb0\u0bc8\u0bb5\u0bc1 \u0b89\u0bb1\u0bc8 \u0bae\u0bb1\u0bc8\u0ba8\u0bcd\u0ba4\u0bc1\u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1.\n \u0b85\u0ba4\u0bc7 \u0b87\u0b9f\u0ba4\u0bcd\u0ba4\u0bbf\u0bb2 \u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95 \u0bae\u0bb1\u0bc1\u0baa\u0b9f\u0bbf\u0baf\u0bc1\u0bae\u0bcd \u0bae\u0bc1\u0baf\u0bb1\u0bcd\u0b9a\u0bbf\u0b95\u0bcd\u0b95\u0bbf\u0bb1\u0bc7\u0ba9\u0bcd,\n\u0b86\u0ba9\u0bbe\u0bb2\u0bcd, \u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bcd\u0b9f\u0bc8 \u0ba4\u0bb5\u0bbf\u0bb0 \u0bae\u0bb1\u0bcd\u0bb1\u0bb5\u0bc8\u0b95\u0bb3\u0bc8 \u0b87\u0bb4\u0ba8\u0bcd\u0ba4\u0bc1\u0bb5\u0bbf\u0b9f\u0bc1\u0bb5\u0bc0\u0bb0\u0bcd\u0b95\u0bb3\u0bcd. -#: Sketch.java:2018 -The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=\u0bb5\u0bb0\u0bc8\u0bb5\u0bbf\u0ba9\u0bcd \u0baa\u0bc6\u0baf\u0bb0\u0bcd \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1. \u0bb5\u0bb0\u0bc8\u0bb5\u0bc1\u0baa\u0bcd\u0baa\u0bc6\u0baf\u0bb0\u0bcd\u0b95\u0bb3\u0bcd ASCII \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd \n\u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0b8e\u0ba3\u0bcd\u0b95\u0bb3\u0bc8 \u0b95\u0bca\u0ba3\u0bcd\u0b9f\u0bbf\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bb2\u0bbe\u0bae\u0bcd(\u0b86\u0ba9\u0bbe\u0bb2\u0bcd \u0b8e\u0ba3\u0bcd\u0ba3\u0bbf\u0bb2\u0bcd \u0b86\u0bb0\u0bae\u0bcd\u0baa\u0bae\u0bbe\u0b95\u0b95\u0bcd\u0b95\u0bc2\u0b9f\u0bbe\u0ba4\u0bc1).\n\u0b85\u0bb5\u0bc8 64 \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95\u0bb3\u0bc1\u0b95\u0bcd\u0b95\u0bc1 \u0bae\u0bc7\u0bb2\u0bcd \u0b87\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0b95\u0bcd\u0b95\u0bc2\u0b9f\u0bbe\u0ba4\u0bc1. +#: ../../../processing/app/Sketch.java:2028 +!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=\u0bb5\u0bb0\u0bc8\u0bb5\u0bc1\u0bb1\u0bc8 \u0b87\u0bb2\u0bcd\u0bb2\u0bc8.\nArduino \u0b87\u0baf\u0bb2\u0bcd\u0baa\u0bbe\u0ba9 \u0bb5\u0bb0\u0bc8\u0bb5\u0bc1\u0baa\u0bcd\u0baa\u0bc1\u0ba4\u0bcd\u0ba4\u0b95 \u0b87\u0b9f\u0ba4\u0bcd\u0ba4\u0bbf\u0bb1\u0bcd\u0b95\u0bc1 \u0bae\u0bbe\u0bb1\u0bbf\u0baf\u0baa\u0bbf\u0ba9\u0bcd,\n\u0ba4\u0bc7\u0bb5\u0bc8\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bbe\u0bb2\u0bcd \u0baa\u0bc1\u0ba4\u0bbf\u0baf \u0bb5\u0bb0\u0bc8\u0bb5\u0bc1\u0baa\u0bcd\u0baa\u0bc1\u0ba4\u0bcd\u0ba4\u0b95 \u0b89\u0bb1\u0bc8\u0baf\u0bc8 \u0b89\u0bb0\u0bc1\u0bb5\u0bbe\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0bcd. \nArduino \u0ba4\u0ba9\u0bcd\u0ba9\u0bc8\u0baa\u0bb1\u0bcd\u0bb1\u0bbf\u0baf\u0bc7 \u0bae\u0bc2\u0ba9\u0bcd\u0bb1\u0bbe\u0bb5\u0ba4\u0bc1 \u0bae\u0ba9\u0bbf\u0ba4\u0ba9\u0bcd \u0baa\u0bcb\u0bb2 \n\u0baa\u0bc7\u0b9a\u0bc1\u0bb5\u0ba4\u0bc8 \u0ba8\u0bbf\u0bb1\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0b95\u0bcd\u0b95\u0bca\u0bb3\u0bcd\u0bb3\u0bc1\u0bae\u0bcd. +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u0b87\u0ba8\u0bcd\u0ba4 \u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1 \u0ba8\u0bc0\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0ba8\u0b95\u0bb2\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0baf\u0bb2\u0bc1\u0bae\u0bcd \u0b87\u0b9f\u0ba4\u0bcd\u0ba4\u0bbf\u0bb2\u0bcd \n\u0b8f\u0bb1\u0bcd\u0b95\u0ba9\u0bb5\u0bc7 \u0b9a\u0bc6\u0bb0\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1.\n\u0ba8\u0bbe\u0ba9\u0bcd \u0b8e\u0ba9\u0bcd\u0ba9\u0bbe\u0bb2\u0bcd \u0bae\u0bc1\u0b9f\u0bbf\u0ba8\u0bcd\u0ba4 \u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0b9a\u0bc6\u0baf\u0bcd\u0ba4\u0bc1\u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0bc7\u0ba9\u0bcd. @@ -1142,6 +1272,10 @@ Verify\ code\ after\ upload=\u0baa\u0ba4\u0bbf\u0bb5\u0bc7\u0bb1\u0bcd\u0bb1\u0b #: Editor.java:1105 Visit\ Arduino.cc=Arduino.cc \u0b9a\u0bc6\u0bb2\u0bcd\u0b95 +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= + #: Base.java:2128 Warning=\u0b8e\u0b9a\u0bcd\u0b9a\u0bb0\u0bbf\u0b95\u0bcd\u0b95\u0bc8 @@ -1240,9 +1374,6 @@ environment=\u0b9a\u0bc1\u0bb1\u0bcd\u0bb1\u0bc1\u0b9a\u0bcd\u0b9a\u0bc2\u0bb4\u #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -!http\://github.com/arduino/Arduino/issues= - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1265,13 +1396,6 @@ name\ is\ null=\u0baa\u0bc6\u0baf\u0bb0\u0bcd \u0bb5\u0bc6\u0bb1\u0bcd\u0bb1\u0b #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() \u0b8e\u0ba3\u0bcd\u0baa\u0bbf\u0b9f\u0bcd\u0b9f\u0bc1 \u0b85\u0ba3\u0bc8 {0} \u0b8e\u0ba3\u0bcd\u0baa\u0bbf\u0b9f\u0bcd\u0b9f\u0bc1\u0b95\u0bb3\u0bc1\u0b95\u0bcd\u0b95\u0bc1 \u0bae\u0bbf\u0b95 \u0b95\u0bc1\u0bb1\u0bc8\u0bb5\u0bbe\u0b95 \u0b89\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1 char {1} \u0b89\u0b9f\u0ba9\u0bcd \u0b9a\u0bc7\u0bb1\u0bcd\u0bb1\u0bc1 - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: \u0b89\u0bb3\u0bcd \u0baa\u0bbf\u0bb4\u0bc8 .. \u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bcd\u0b9f\u0bc8 \u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8 - #: Editor.java:932 serialMenu\ is\ null=\u0ba4\u0bca\u0b9f\u0bb0\u0bcd \u0ba4\u0bc6\u0bb0\u0bbf\u0bb5\u0bc1\u0ba4\u0bbf\u0bb0\u0bc8 \u0bb5\u0bc6\u0bb1\u0bcd\u0bb1\u0bbe\u0b95 \u0b89\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1 @@ -1279,6 +1403,10 @@ serialMenu\ is\ null=\u0ba4\u0bca\u0b9f\u0bb0\u0bcd \u0ba4\u0bc6\u0bb0\u0bbf\u0b #, java-format the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=\u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0ba4 \u0ba4\u0bca\u0b9f\u0bb0\u0bcd \u0ba4\u0bc1\u0bb1\u0bc8 {0} \u0b87\u0bb2\u0bcd\u0bb2\u0bc8 (\u0b85)\u0b89\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0baa\u0bb2\u0b95\u0bc8 \u0b87\u0ba3\u0bc8\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8 +#: ../../../processing/app/Base.java:389 +#, java-format +!unknown\ option\:\ {0}= + #: Preferences.java:391 upload=\u0baa\u0ba4\u0bbf\u0bb5\u0bc7\u0bb1\u0bcd\u0bb1\u0bc1 @@ -1297,3 +1425,35 @@ upload=\u0baa\u0ba4\u0bbf\u0bb5\u0bc7\u0bb1\u0bcd\u0bb1\u0bc1 #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= + +#: ../../../processing/app/Base.java:476 +#, java-format +!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= + +#: ../../../processing/app/Base.java:509 +#, java-format +!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= + +#: ../../../processing/app/Base.java:507 +#, java-format +!{0}\:\ Invalid\ option\ for\ board\ "{1}"= + +#: ../../../processing/app/Base.java:502 +#, java-format +!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= + +#: ../../../processing/app/Base.java:486 +#, java-format +!{0}\:\ Unknown\ architecture= + +#: ../../../processing/app/Base.java:491 +#, java-format +!{0}\:\ Unknown\ board= + +#: ../../../processing/app/Base.java:481 +#, java-format +!{0}\:\ Unknown\ package= diff --git a/arduino-core/src/processing/app/i18n/Resources_tr.po b/arduino-core/src/processing/app/i18n/Resources_tr.po index 6905e9831..2c070210c 100644 --- a/arduino-core/src/processing/app/i18n/Resources_tr.po +++ b/arduino-core/src/processing/app/i18n/Resources_tr.po @@ -12,8 +12,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-01-14 17:10+0000\n" -"Last-Translator: Cristian Maglie \n" +"PO-Revision-Date: 2015-01-14 23:05+0000\n" +"Last-Translator: Bircan Cankaya \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/arduino-ide-15/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,6 +37,12 @@ msgstr "'Fare' sadece Arduino Leonardo tarafından desteklenmektedir." msgid "(edit only when Arduino is not running)" msgstr "(sadece Arduino kapalıyken düzenleyin)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -95,6 +101,10 @@ msgstr "Dosya Ekle..." msgid "Add Library..." msgstr "Kütüphane ekle..." +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "Arnavutça" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -102,6 +112,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "Dosya kodlamasını düzeltmeye çalışırken bir hata oluştu.\nEski sürümün üzerine yazma ihtimaline karşı bu taslağı kaydetmeye çalışmayın.\nAç komutunu kullanarak dosyayı yeniden açın ve tekrar deneyin.\n" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "Taslak yüklenirken bir hata oluştu." + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "Taslak doğrulanırken bir hata oluştu" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "Taslak doğrulanırken/yüklenirken bir hata oluştu" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -146,7 +170,7 @@ msgstr "Arduino AVR Kartlar" msgid "" "Arduino can only open its own sketches\n" "and other files ending in .ino or .pde" -msgstr "" +msgstr "Arduino yalnızca kendi taslaklarını açar\nve diğer .pde veya .ino uzantılı dosyaları." #: Base.java:1682 msgid "" @@ -180,6 +204,30 @@ msgstr "\"{0}\" ı silmek istediğinize emin misiniz?" msgid "Are you sure you want to delete this sketch?" msgstr "Bu taslağı silmek istediğinizden emin misiniz?" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "--board için argüman gereklidir" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "--curdir için argüman gereklidir." + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "--port için argüman gereklidir." + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "--pref için argüman gereklidir." + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "Ayarlar dosyası için argüman gerekli" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "Ermenice" @@ -188,6 +236,10 @@ msgstr "Ermenice" msgid "Asturian" msgstr "Asturian" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "Otomatik Düzenle" @@ -229,6 +281,14 @@ msgstr "Hatalı satır: {0}" msgid "Bad file selected" msgstr "Seçilen dosya uygun değil" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "Baskça" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "Belarusça" @@ -265,6 +325,10 @@ msgstr "Gözat" msgid "Build folder disappeared or could not be written" msgstr "Derleme klasörü kayıp yada yazmaya karşı korumalı" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "Derleme seçenekleri değiştirildi, tümü yeniden derleniyor." + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Bulgarca" @@ -281,9 +345,15 @@ msgstr "Önyükleyiciyi Yazdır" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "Önyükleyici I/O kartına yazdırılıyor (biraz zaman alabilir)..." -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" -msgstr "Kaynak dosya açılamıyor" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" +msgstr "" #: ../../../processing/app/Preferences.java:92 msgid "Canadian French" @@ -298,6 +368,10 @@ msgstr "İptal" msgid "Cannot Rename" msgstr "Yeniden Adlandırılamıyor" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "Satır başı" @@ -342,11 +416,6 @@ msgstr "Kapat" msgid "Comment/Uncomment" msgstr "Yorum yap / Yorumu kaldır" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "Delrleyici hatası. Lütfen bu kodu {0}'a gönderin." - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "Çalışma derleniyor..." @@ -454,10 +523,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Öntanımlı ayarlar okunamadı.\\n”\nArduino'yu yeniden kurmanız gerekiyor." -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "Tercihleri {0}'dan okuyamıyor" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "Bir önceki derleme ayarları dosyası okunamadı, tümü yeniden derleniyor" #: Base.java:2482 #, java-format @@ -486,6 +554,10 @@ msgstr "Çalışmanın adı değiştirilemiyor. (2)" msgid "Could not replace {0}" msgstr "{0} değiştirilemedi" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "Derleme ayarları dosyasına yazılamadı" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Çalışma arşivlenemedi." @@ -555,6 +627,11 @@ msgstr "Kaydedildi." msgid "Done burning bootloader." msgstr "Önyükleyicinin yazımı tamamlandı." +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "Derleme tamamlandı." @@ -563,6 +640,10 @@ msgstr "Derleme tamamlandı." msgid "Done printing." msgstr "Yazdırma tamamlandı." +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "Yükleme tamamlandı." @@ -666,6 +747,10 @@ msgstr "Önyükleyici yazdırılırken hata oluştu." msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "Önyükleyici yazdırılırken hata oluştu: Kayıp '{0}' yapılandırma parametresi" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -675,11 +760,25 @@ msgstr "{0} numaralı kodu yüklerken hata oluştu." msgid "Error while printing." msgstr "Yazdırma sırasında hata oluştu." +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "Yükleme sırasında hata: eksik '{0}' yapılandırma parametresi" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "Estonca" @@ -700,6 +799,11 @@ msgstr "Dışa aktarma iptal edildi. Önce değişikliklerin kaydedilmesi gereki msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "Program açılamadı : \"{0}\"" + #: Editor.java:491 msgid "File" msgstr "Dosya" @@ -747,9 +851,10 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "Kütüphanelerin kurulumu ile ilgili daha fazla bilgi için şu adresi ziyaret edin: http://arduino.cc/en/Guide/Libraries\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " -msgstr "Port üzerinde 1200bps aç/kapa yapılarak yeniden başlatılmaya zorlanıyor" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" +msgstr "" #: Preferences.java:95 msgid "French" @@ -897,9 +1002,9 @@ msgstr "Kütüphane, kütüphanelerinize eklendi. \"Kütüphane içe aktarım\" msgid "Lithuaninan" msgstr "Litvanca" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" -msgstr "Uygun olan bellek miktarı çok düşük, kararlılık problemleri oluşabilir." +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." +msgstr "" #: Preferences.java:107 msgid "Marathi" @@ -913,6 +1018,10 @@ msgstr "Mesaj" msgid "Missing the */ from the end of a /* comment */" msgstr "/* yorum */ satırlarının sonunda eksik /* etiketi" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "Dosya içerisinde daha fazla tercih düzenlemesi yapılabilir." @@ -921,6 +1030,18 @@ msgstr "Dosya içerisinde daha fazla tercih düzenlemesi yapılabilir." msgid "Moving" msgstr "Taşınıyor" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "Bir program dosyası belirtilmeli" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "N'Ko" + #: Sketch.java:282 msgid "Name for new file:" msgstr "Yeni dosya için isim:" @@ -957,6 +1078,10 @@ msgstr "Sonraki Sekme" msgid "No" msgstr "Hayır" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "Herhangi bir kart seçilmedi. Lütfen Araçlar > Kart menüsünden bir kart seçin" @@ -965,6 +1090,10 @@ msgstr "Herhangi bir kart seçilmedi. Lütfen Araçlar > Kart menüsünden bir k msgid "No changes necessary for Auto Format." msgstr "Otomatik düzenleme için değişikliğe gerek yok." +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "Çalışmaya hiç bir dosya eklenmedi." @@ -977,6 +1106,10 @@ msgstr "Başlatıcı bulunamadı" msgid "No line ending" msgstr "Satır sonu yok" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "Gerçekten, biraz temiz hava almalısın." @@ -986,6 +1119,19 @@ msgstr "Gerçekten, biraz temiz hava almalısın." msgid "No reference available for \"{0}\"" msgstr "\"{0}\" için kaynak bulunmuyor" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "Geçerli kod dosyası bulunamadı" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "Geçerli bir yapılandırılmış çekirdek bulunamadı! Çıkılıyor..." @@ -1022,6 +1168,10 @@ msgstr "Tamam" msgid "One file added to the sketch." msgstr "Sketch'e bir dosya eklendi." +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "Aç" @@ -1058,14 +1208,27 @@ msgstr "Yapıştır" msgid "Persian" msgstr "Persce" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "İranca" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "Lütfen SPI kütüphanesini, Çalışma>Kütüphane Ekle menüsü altından çalışma dosyasına ekleyin" +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "Lütfen Program > İçeri Aktar menüsünü kullanarak Wire kütüphanesini içeri aktarın." + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "Lütfen JDK'nın 1.5 veya daha yeni bir sürümünü kurun" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "Polonyaca" @@ -1228,10 +1391,18 @@ msgstr "Değişiklikleri {0} konumuna kaydet:?" msgid "Save sketch folder as..." msgstr "Çalışma klasörünü kaydet..." +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "Kaydediliyor..." +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "Taslaklar için bir klasör seç ya da yeni bir klasör yarat" @@ -1264,20 +1435,6 @@ msgstr "Gönder" msgid "Serial Monitor" msgstr "Seri Port Ekranı" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "{0} numaralı seri port başka bir uygulama tarafından kullanılıyor." - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "Seri port\"{0}\" kullanımda. Portu kullanan uygulamayı kapatıp tekrar deneyiniz." - #: Serial.java:194 #, java-format msgid "" @@ -1357,6 +1514,10 @@ msgstr "Çalışma klasörü yok oldu" msgid "Sketchbook location:" msgstr "Taslak defteri konumu:" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "Çalışmalar (*.ino,*.pde)" @@ -1407,6 +1568,10 @@ msgstr "Tamil" msgid "The 'BYTE' keyword is no longer supported." msgstr "'BYTE' terimi artık desteklenmemektedir." +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "Client sınıfı EthernetClient olarak yeniden adlandırılmıştır." @@ -1474,12 +1639,12 @@ msgid "" "but anything besides the code will be lost." msgstr "Taslak klasörü kayboldu.\nAynı konuma tekrar kaydetme denemesi yapılacak,\nfakat onun haricindeki kodlar kaybolacak." -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." -msgstr "Taslak adını düzenlemek zorunda kaldım. Taslak adları sadece\nASCII karakter ve rakamlardan oluşur. (fakat rakam ile başlayamaz)\nAyrıca 64 karakterden az olmalıdır." +"They should also be less than 64 characters long." +msgstr "Program ismi değiştirildi.\nProgram isimleri sadece ASCII karakterlerden ve rakamlardan meydana gelebilir (ancak bir rakam ile başlayamazlar)\nAynı zamanda program isimleri en fazla 64 karakter uzunluğunda olabilir." #: Base.java:259 msgid "" @@ -1490,6 +1655,12 @@ msgid "" "himself in the third person." msgstr "Çalışma klasörü bulunamadı.\nArduino varsayılan çalışma konumuna geçecek ve gerekirse yeni bir çalışma\nklasörü oluşturacaktır. Akabinde Arduino kendi hakkında üçüncü kişi olarak konuşmayı bırakacaktır." +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1632,6 +1803,13 @@ msgstr "Vietnamca" msgid "Visit Arduino.cc" msgstr "Arduino.cc'yi Ziyaret Et" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "UYARI : {0} kütüphanesi çalışmak için {1} mimarisine ihtiyaç duyuyor ve {2} mimarisini kullanan devreniz için uyumsuz olabilir." + #: Base.java:2128 msgid "Warning" msgstr "Uyarı" @@ -1800,10 +1978,6 @@ msgstr "ortam" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "http://github.com/arduino/Arduino/issues" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1833,17 +2007,6 @@ msgstr "name değeri boş" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "readBytesUntil() byte tamponu {1} char'ı dahil {0} byte için çok küçük" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "removeCode: içsel hata.. kod bulunamıyor" - #: Editor.java:932 msgid "serialMenu is null" msgstr "serialMenu değeri boş" @@ -1854,6 +2017,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "Seçilen seri port \"{0}\" bağlı olan kartınızda mevcut değil" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "bilinmeyen seçenek: {0}:" + #: Preferences.java:391 msgid "upload" msgstr "yükle" @@ -1877,3 +2045,45 @@ msgstr "{0} | Arduino {1}" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "{0}: -pref için geçersiz argüman. pref=deger şeklinde olmalı" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "{0}: Geçersiz bir devre kartı adıdır, \"package:arch:board\" veya \"package:arch:board:options\" şeklinde olmalıdır." + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "{0}: {2} kartı için bilinmeyen {1} seçeneği " + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "{0}: {1} kartı için geçersiz seçenek" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "{0}: Geçersiz seçenek. isim=deger şeklinde olmalıdır." + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "{0}: Bilinmeyen mimari" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "{0}: Bilinmeyen kart" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "{0}: Bilinmeyen paket" diff --git a/arduino-core/src/processing/app/i18n/Resources_tr.properties b/arduino-core/src/processing/app/i18n/Resources_tr.properties index 2a7eaa8ed..c73e106b5 100644 --- a/arduino-core/src/processing/app/i18n/Resources_tr.properties +++ b/arduino-core/src/processing/app/i18n/Resources_tr.properties @@ -7,7 +7,7 @@ # , 2012. # , 2012. # \u00dclgen Sar\u0131kavak , 2012. -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie \nLanguage-Team\: Turkish (http\://www.transifex.com/projects/p/arduino-ide-15/language/tr/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: tr\nPlural-Forms\: nplurals\=2; plural\=(n > 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 23\:05+0000\nLast-Translator\: Bircan Cankaya \nLanguage-Team\: Turkish (http\://www.transifex.com/projects/p/arduino-ide-15/language/tr/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: tr\nPlural-Forms\: nplurals\=2; plural\=(n > 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(Arduino'nun yeniden ba\u015flat\u0131lmas\u0131n\u0131 gerektiriyor) @@ -21,6 +21,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(sadece Arduino kapal\u0131yken d\u00fczenleyin) +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -57,9 +60,23 @@ Add\ File...=Dosya Ekle... #: Base.java:963 Add\ Library...=K\u00fct\u00fcphane ekle... +#: ../../../processing/app/Preferences.java:96 +Albanian=Arnavut\u00e7a + #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Dosya kodlamas\u0131n\u0131 d\u00fczeltmeye \u00e7al\u0131\u015f\u0131rken bir hata olu\u015ftu.\nEski s\u00fcr\u00fcm\u00fcn \u00fczerine yazma ihtimaline kar\u015f\u0131 bu tasla\u011f\u0131 kaydetmeye \u00e7al\u0131\u015fmay\u0131n.\nA\u00e7 komutunu kullanarak dosyay\u0131 yeniden a\u00e7\u0131n ve tekrar deneyin.\n +#: ../../../processing/app/BaseNoGui.java:528 +An\ error\ occurred\ while\ uploading\ the\ sketch=Taslak y\u00fcklenirken bir hata olu\u015ftu. + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +An\ error\ occurred\ while\ verifying\ the\ sketch=Taslak do\u011frulan\u0131rken bir hata olu\u015ftu + +#: ../../../processing/app/BaseNoGui.java:521 +An\ error\ occurred\ while\ verifying/uploading\ the\ sketch=Taslak do\u011frulan\u0131rken/y\u00fcklenirken bir hata olu\u015ftu + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Cihaz\u0131n\u0131z\u0131n platformuna \u00f6zel kod y\u00fcklenirken\nbilinmeyen bir hata olu\u015ftu. @@ -88,7 +105,7 @@ Arduino\ ARM\ (32-bits)\ Boards=Arduino ARM (32-bit) Kartlar Arduino\ AVR\ Boards=Arduino AVR Kartlar #: Editor.java:2137 -!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= +Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Arduino yaln\u0131zca kendi taslaklar\u0131n\u0131 a\u00e7ar\nve di\u011fer .pde veya .ino uzant\u0131l\u0131 dosyalar\u0131. #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Ayarlar\u0131n saklanmas\u0131 i\u00e7in dosya \nolu\u015fturulamad\u0131\u011f\u0131ndan Arduino ba\u015flat\u0131lam\u0131yor. @@ -109,12 +126,33 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?="{0}" \u0131 silmek istedi\u011fin #: Sketch.java:587 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Bu tasla\u011f\u0131 silmek istedi\u011finizden emin misiniz? +#: ../../../processing/app/Base.java:356 +Argument\ required\ for\ --board=--board i\u00e7in arg\u00fcman gereklidir + +#: ../../../processing/app/Base.java:370 +Argument\ required\ for\ --curdir=--curdir i\u00e7in arg\u00fcman gereklidir. + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +Argument\ required\ for\ --port=--port i\u00e7in arg\u00fcman gereklidir. + +#: ../../../processing/app/Base.java:377 +Argument\ required\ for\ --pref=--pref i\u00e7in arg\u00fcman gereklidir. + +#: ../../../processing/app/Base.java:384 +Argument\ required\ for\ --preferences-file=Ayarlar dosyas\u0131 i\u00e7in arg\u00fcman gerekli + #: ../../../processing/app/Preferences.java:137 Armenian=Ermenice #: ../../../processing/app/Preferences.java:138 Asturian=Asturian +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 Auto\ Format=Otomatik D\u00fczenle @@ -146,6 +184,12 @@ Bad\ error\ line\:\ {0}=Hatal\u0131 sat\u0131r\: {0} #: Editor.java:2136 Bad\ file\ selected=Se\u00e7ilen dosya uygun de\u011fil +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +Basque=Bask\u00e7a + #: ../../../processing/app/Preferences.java:139 Belarusian=Belarus\u00e7a @@ -172,6 +216,9 @@ Browse=G\u00f6zat #: Sketch.java:1392 Sketch.java:1423 Build\ folder\ disappeared\ or\ could\ not\ be\ written=Derleme klas\u00f6r\u00fc kay\u0131p yada yazmaya kar\u015f\u0131 korumal\u0131 +#: ../../../processing/app/Sketch.java:1530 +Build\ options\ changed,\ rebuilding\ all=Derleme se\u00e7enekleri de\u011fi\u015ftirildi, t\u00fcm\u00fc yeniden derleniyor. + #: ../../../processing/app/Preferences.java:80 Bulgarian=Bulgarca @@ -184,8 +231,13 @@ Burn\ Bootloader=\u00d6ny\u00fckleyiciyi Yazd\u0131r #: Editor.java:2504 Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u00d6ny\u00fckleyici I/O kart\u0131na yazd\u0131r\u0131l\u0131yor (biraz zaman alabilir)... -#: ../../../processing/app/Base.java:368 -Can't\ open\ source\ sketch\!=Kaynak dosya a\u00e7\u0131lam\u0131yor +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 Canadian\ French=Kanada Frans\u0131zcas\u0131 @@ -197,6 +249,9 @@ Cancel=\u0130ptal #: Sketch.java:455 Cannot\ Rename=Yeniden Adland\u0131r\u0131lam\u0131yor +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 Carriage\ return=Sat\u0131r ba\u015f\u0131 @@ -230,10 +285,6 @@ Close=Kapat #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=Yorum yap / Yorumu kald\u0131r -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Delrleyici hatas\u0131. L\u00fctfen bu kodu {0}'a g\u00f6nderin. - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=\u00c7al\u0131\u015fma derleniyor... @@ -309,9 +360,8 @@ Could\ not\ re-save\ sketch=\u00c7al\u0131\u015fma yeniden kaydedilemedi #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u00d6ntan\u0131ml\u0131 ayarlar okunamad\u0131.\\n\u201d\nArduino'yu yeniden kurman\u0131z gerekiyor. -#: Preferences.java:258 -#, java-format -Could\ not\ read\ preferences\ from\ {0}=Tercihleri {0}'dan okuyam\u0131yor +#: ../../../processing/app/Sketch.java:1525 +Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=Bir \u00f6nceki derleme ayarlar\u0131 dosyas\u0131 okunamad\u0131, t\u00fcm\u00fc yeniden derleniyor #: Base.java:2482 #, java-format @@ -334,6 +384,9 @@ Could\ not\ rename\ the\ sketch.\ (2)=\u00c7al\u0131\u015fman\u0131n ad\u0131 de #, java-format Could\ not\ replace\ {0}={0} de\u011fi\u015ftirilemedi +#: ../../../processing/app/Sketch.java:1579 +Could\ not\ write\ build\ preferences\ file=Derleme ayarlar\u0131 dosyas\u0131na yaz\u0131lamad\u0131 + #: tools/Archiver.java:74 Couldn't\ archive\ sketch=\u00c7al\u0131\u015fma ar\u015fivlenemedi. @@ -382,12 +435,19 @@ Done\ Saving.=Kaydedildi. #: Editor.java:2510 Done\ burning\ bootloader.=\u00d6ny\u00fckleyicinin yaz\u0131m\u0131 tamamland\u0131. +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=Derleme tamamland\u0131. #: Editor.java:2564 Done\ printing.=Yazd\u0131rma tamamland\u0131. +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=Y\u00fckleme tamamland\u0131. @@ -466,6 +526,9 @@ Error\ while\ burning\ bootloader.=\u00d6ny\u00fckleyici yazd\u0131r\u0131l\u013 #: ../../../processing/app/Editor.java:2555 Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=\u00d6ny\u00fckleyici yazd\u0131r\u0131l\u0131rken hata olu\u015ftu\: Kay\u0131p '{0}' yap\u0131land\u0131rma parametresi +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}={0} numaral\u0131 kodu y\u00fcklerken hata olu\u015ftu. @@ -473,10 +536,21 @@ Error\ while\ loading\ code\ {0}={0} numaral\u0131 kodu y\u00fcklerken hata olu\ #: Editor.java:2567 Error\ while\ printing.=Yazd\u0131rma s\u0131ras\u0131nda hata olu\u015ftu. +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=Y\u00fckleme s\u0131ras\u0131nda hata\: eksik '{0}' yap\u0131land\u0131rma parametresi +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 Estonian=Estonca @@ -492,6 +566,10 @@ Export\ canceled,\ changes\ must\ first\ be\ saved.=D\u0131\u015fa aktarma iptal #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +Failed\ to\ open\ sketch\:\ "{0}"=Program a\u00e7\u0131lamad\u0131 \: "{0}" + #: Editor.java:491 File=Dosya @@ -526,8 +604,9 @@ Fix\ Encoding\ &\ Reload=Karakter kodlamas\u0131n\u0131 d\u00fczelt & Tekrar y\u #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=K\u00fct\u00fcphanelerin kurulumu ile ilgili daha fazla bilgi i\u00e7in \u015fu adresi ziyaret edin\: http\://arduino.cc/en/Guide/Libraries\n -#: debug/BasicUploader.java:80 -Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =Port \u00fczerinde 1200bps a\u00e7/kapa yap\u0131larak yeniden ba\u015flat\u0131lmaya zorlan\u0131yor +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=Frans\u0131zca @@ -631,8 +710,8 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=K\u00fct\u0 #: Preferences.java:106 Lithuaninan=Litvanca -#: ../../../processing/app/Sketch.java:1660 -Low\ memory\ available,\ stability\ problems\ may\ occur=Uygun olan bellek miktar\u0131 \u00e7ok d\u00fc\u015f\u00fck, kararl\u0131l\u0131k problemleri olu\u015fabilir. +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 Marathi=Marati @@ -643,12 +722,24 @@ Message=Mesaj #: ../../../processing/app/preproc/PdePreprocessor.java:412 Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=/* yorum */ sat\u0131rlar\u0131n\u0131n sonunda eksik /* etiketi +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Dosya i\u00e7erisinde daha fazla tercih d\u00fczenlemesi yap\u0131labilir. #: Editor.java:2156 Moving=Ta\u015f\u0131n\u0131yor +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +Must\ specify\ exactly\ one\ sketch\ file=Bir program dosyas\u0131 belirtilmeli + +#: ../../../processing/app/Preferences.java:158 +N'Ko=N'Ko + #: Sketch.java:282 Name\ for\ new\ file\:=Yeni dosya i\u00e7in isim\: @@ -676,12 +767,18 @@ Next\ Tab=Sonraki Sekme #: Preferences.java:78 UpdateCheck.java:108 No=Hay\u0131r +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Herhangi bir kart se\u00e7ilmedi. L\u00fctfen Ara\u00e7lar > Kart men\u00fcs\u00fcnden bir kart se\u00e7in #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Otomatik d\u00fczenleme i\u00e7in de\u011fi\u015fikli\u011fe gerek yok. +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=\u00c7al\u0131\u015fmaya hi\u00e7 bir dosya eklenmedi. @@ -691,6 +788,9 @@ No\ launcher\ available=Ba\u015flat\u0131c\u0131 bulunamad\u0131 #: SerialMonitor.java:112 No\ line\ ending=Sat\u0131r sonu yok +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Ger\u00e7ekten, biraz temiz hava almal\u0131s\u0131n. @@ -698,6 +798,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Ger\u00e7ekten, biraz temiz #, java-format No\ reference\ available\ for\ "{0}"="{0}" i\u00e7in kaynak bulunmuyor +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +No\ valid\ code\ files\ found=Ge\u00e7erli kod dosyas\u0131 bulunamad\u0131 + #: ../../../processing/app/Base.java:309 No\ valid\ configured\ cores\ found\!\ Exiting...=Ge\u00e7erli bir yap\u0131land\u0131r\u0131lm\u0131\u015f \u00e7ekirdek bulunamad\u0131\! \u00c7\u0131k\u0131l\u0131yor... @@ -724,6 +834,9 @@ OK=Tamam #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=Sketch'e bir dosya eklendi. +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=A\u00e7 @@ -751,12 +864,22 @@ Paste=Yap\u0131\u015ft\u0131r #: Preferences.java:109 Persian=Persce +#: ../../../processing/app/Preferences.java:161 +Persian\ (Iran)=\u0130ranca + #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=L\u00fctfen SPI k\u00fct\u00fcphanesini, \u00c7al\u0131\u015fma>K\u00fct\u00fcphane Ekle men\u00fcs\u00fc alt\u0131ndan \u00e7al\u0131\u015fma dosyas\u0131na ekleyin +#: ../../../processing/app/debug/Compiler.java:529 +Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=L\u00fctfen Program > \u0130\u00e7eri Aktar men\u00fcs\u00fcn\u00fc kullanarak Wire k\u00fct\u00fcphanesini i\u00e7eri aktar\u0131n. + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=L\u00fctfen JDK'n\u0131n 1.5 veya daha yeni bir s\u00fcr\u00fcm\u00fcn\u00fc kurun +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 Polish=Polonyaca @@ -878,9 +1001,15 @@ Save\ changes\ to\ "{0}"?\ \ =De\u011fi\u015fiklikleri {0} konumuna kaydet\:? #: Sketch.java:825 Save\ sketch\ folder\ as...=\u00c7al\u0131\u015fma klas\u00f6r\u00fcn\u00fc kaydet... +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=Kaydediliyor... +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=Taslaklar i\u00e7in bir klas\u00f6r se\u00e7 ya da yeni bir klas\u00f6r yarat @@ -905,14 +1034,6 @@ Send=G\u00f6nder #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=Seri Port Ekran\u0131 -#: Serial.java:174 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.={0} numaral\u0131 seri port ba\u015fka bir uygulama taraf\u0131ndan kullan\u0131l\u0131yor. - -#: Serial.java:121 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=Seri port"{0}" kullan\u0131mda. Portu kullanan uygulamay\u0131 kapat\u0131p tekrar deneyiniz. - #: Serial.java:194 #, java-format Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Seri port "{0}" bulunamad\u0131. Ara\u00e7lar > Seri Port men\u00fcs\u00fcnden do\u011fru portu se\u00e7tiniz mi? @@ -967,6 +1088,9 @@ Sketchbook\ folder\ disappeared=\u00c7al\u0131\u015fma klas\u00f6r\u00fc yok old #: Preferences.java:315 Sketchbook\ location\:=Taslak defteri konumu\: +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 Sketches\ (*.ino,\ *.pde)=\u00c7al\u0131\u015fmalar (*.ino,*.pde) @@ -1001,6 +1125,9 @@ Tamil=Tamil #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.='BYTE' terimi art\u0131k desteklenmemektedir. +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Client s\u0131n\u0131f\u0131 EthernetClient olarak yeniden adland\u0131r\u0131lm\u0131\u015ft\u0131r. @@ -1037,12 +1164,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Taslak klas\u00f6r\u00fc kayboldu.\nAyn\u0131 konuma tekrar kaydetme denemesi yap\u0131lacak,\nfakat onun haricindeki kodlar kaybolacak. -#: Sketch.java:2018 -The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=Taslak ad\u0131n\u0131 d\u00fczenlemek zorunda kald\u0131m. Taslak adlar\u0131 sadece\nASCII karakter ve rakamlardan olu\u015fur. (fakat rakam ile ba\u015flayamaz)\nAyr\u0131ca 64 karakterden az olmal\u0131d\u0131r. +#: ../../../processing/app/Sketch.java:2028 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.=Program ismi de\u011fi\u015ftirildi.\nProgram isimleri sadece ASCII karakterlerden ve rakamlardan meydana gelebilir (ancak bir rakam ile ba\u015flayamazlar)\nAyn\u0131 zamanda program isimleri en fazla 64 karakter uzunlu\u011funda olabilir. #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=\u00c7al\u0131\u015fma klas\u00f6r\u00fc bulunamad\u0131.\nArduino varsay\u0131lan \u00e7al\u0131\u015fma konumuna ge\u00e7ecek ve gerekirse yeni bir \u00e7al\u0131\u015fma\nklas\u00f6r\u00fc olu\u015fturacakt\u0131r. Akabinde Arduino kendi hakk\u0131nda \u00fc\u00e7\u00fcnc\u00fc ki\u015fi olarak konu\u015fmay\u0131 b\u0131rakacakt\u0131r. +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Dosya zaten eklemek istedi\u011finiz \nklas\u00f6re kopyaland\u0131.\nHi\u00e7bir \u015fey yapm\u0131yorum\! @@ -1146,6 +1276,10 @@ Vietnamese=Vietnamca #: Editor.java:1105 Visit\ Arduino.cc=Arduino.cc'yi Ziyaret Et +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=UYARI \: {0} k\u00fct\u00fcphanesi \u00e7al\u0131\u015fmak i\u00e7in {1} mimarisine ihtiya\u00e7 duyuyor ve {2} mimarisini kullanan devreniz i\u00e7in uyumsuz olabilir. + #: Base.java:2128 Warning=Uyar\u0131 @@ -1244,9 +1378,6 @@ environment=ortam #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1269,13 +1400,6 @@ name\ is\ null=name de\u011feri bo\u015f #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() byte tamponu {1} char'\u0131 dahil {0} byte i\u00e7in \u00e7ok k\u00fc\u00e7\u00fck - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: i\u00e7sel hata.. kod bulunam\u0131yor - #: Editor.java:932 serialMenu\ is\ null=serialMenu de\u011feri bo\u015f @@ -1283,6 +1407,10 @@ serialMenu\ is\ null=serialMenu de\u011feri bo\u015f #, java-format the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=Se\u00e7ilen seri port "{0}" ba\u011fl\u0131 olan kart\u0131n\u0131zda mevcut de\u011fil +#: ../../../processing/app/Base.java:389 +#, java-format +unknown\ option\:\ {0}=bilinmeyen se\u00e7enek\: {0}\: + #: Preferences.java:391 upload=y\u00fckle @@ -1301,3 +1429,35 @@ upload=y\u00fckle #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"={0}\: -pref i\u00e7in ge\u00e7ersiz arg\u00fcman. pref\=deger \u015feklinde olmal\u0131 + +#: ../../../processing/app/Base.java:476 +#, java-format +{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"={0}\: Ge\u00e7ersiz bir devre kart\u0131 ad\u0131d\u0131r, "package\:arch\:board" veya "package\:arch\:board\:options" \u015feklinde olmal\u0131d\u0131r. + +#: ../../../processing/app/Base.java:509 +#, java-format +{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"={0}\: {2} kart\u0131 i\u00e7in bilinmeyen {1} se\u00e7ene\u011fi + +#: ../../../processing/app/Base.java:507 +#, java-format +{0}\:\ Invalid\ option\ for\ board\ "{1}"={0}\: {1} kart\u0131 i\u00e7in ge\u00e7ersiz se\u00e7enek + +#: ../../../processing/app/Base.java:502 +#, java-format +{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"={0}\: Ge\u00e7ersiz se\u00e7enek. isim\=deger \u015feklinde olmal\u0131d\u0131r. + +#: ../../../processing/app/Base.java:486 +#, java-format +{0}\:\ Unknown\ architecture={0}\: Bilinmeyen mimari + +#: ../../../processing/app/Base.java:491 +#, java-format +{0}\:\ Unknown\ board={0}\: Bilinmeyen kart + +#: ../../../processing/app/Base.java:481 +#, java-format +{0}\:\ Unknown\ package={0}\: Bilinmeyen paket diff --git a/arduino-core/src/processing/app/i18n/Resources_uk.po b/arduino-core/src/processing/app/i18n/Resources_uk.po index c4c30a8c7..eef06ccaf 100644 --- a/arduino-core/src/processing/app/i18n/Resources_uk.po +++ b/arduino-core/src/processing/app/i18n/Resources_uk.po @@ -33,6 +33,12 @@ msgstr "'Mouse' підтримується тільки в Arduino Leonardo" msgid "(edit only when Arduino is not running)" msgstr "(редагуйте тільки якщо Arduino не запущено)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -91,6 +97,10 @@ msgstr "Додати файл..." msgid "Add Library..." msgstr "Додати бібліотеку" +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -98,6 +108,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "Виникла помилка при спробі виправити кодування.\nНе намагайтеся зберегти цей скетч, оскільки він може\nперезаписати стару версію. Використовуйте 'Відкрити', щоб\nвідкрити скетч заново.\n" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -176,6 +200,30 @@ msgstr "Ви дійсно хочете видалити \"{0}\"?" msgid "Are you sure you want to delete this sketch?" msgstr "Ви дійсно хочете видалити цей скетч?" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "" @@ -184,6 +232,10 @@ msgstr "" msgid "Asturian" msgstr "" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "Автоформатування" @@ -225,6 +277,14 @@ msgstr "Рядок з помилкою: {0}" msgid "Bad file selected" msgstr "Вибрано неправильний файл" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "" @@ -261,6 +321,10 @@ msgstr "Обрати" msgid "Build folder disappeared or could not be written" msgstr "Відсутня або не перезаписується тека збірки" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "" @@ -277,8 +341,14 @@ msgstr "Записати завантажувач" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "Запис завантажувача на плату введення/виводу (хвилиночку)..." -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" msgstr "" #: ../../../processing/app/Preferences.java:92 @@ -294,6 +364,10 @@ msgstr "Скасувати" msgid "Cannot Rename" msgstr "Перейменування неможливе" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "Повернення каретки (CR)" @@ -338,11 +412,6 @@ msgstr "Закрити" msgid "Comment/Uncomment" msgstr "Коментувати/розкоментувати" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "Помилка компілятора, будь ласка, перешліть цей код на {0}" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "Компілювання..." @@ -450,10 +519,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Налаштування за замовчуванням не читаються.\nВам потрібно перевстановити Arduino." -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "Неможливо прочитати налаштування з {0}" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "" #: Base.java:2482 #, java-format @@ -482,6 +550,10 @@ msgstr "Неможливо перейменувати скетч. (2)" msgid "Could not replace {0}" msgstr "Не вдалося замінити {0}" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Скетч не може бути заархівовано" @@ -551,6 +623,11 @@ msgstr "Збереження виконано." msgid "Done burning bootloader." msgstr "Запис завантажувача виконано." +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "Компілювання виконано" @@ -559,6 +636,10 @@ msgstr "Компілювання виконано" msgid "Done printing." msgstr "Друк виконано." +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "Вивантаження виконано." @@ -662,6 +743,10 @@ msgstr "Помилка при записі завантажувача." msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -671,11 +756,25 @@ msgstr "Помилка при завантаженні коду {0}" msgid "Error while printing." msgstr "Помилка під час друку" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "естонська" @@ -696,6 +795,11 @@ msgstr "Експорт скасований, спочатку збережіть msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "" + #: Editor.java:491 msgid "File" msgstr "Файл" @@ -743,9 +847,10 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "Щодо встановлення бібліотек, перегляньте: http://arduino.cc/en/Guide/Libraries\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " -msgstr "Forcing reset using 1200bps open/close on port " +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" +msgstr "" #: Preferences.java:95 msgid "French" @@ -893,8 +998,8 @@ msgstr "Бібліотеку додано до ваших бібліотек. П msgid "Lithuaninan" msgstr "литовська" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: Preferences.java:107 @@ -909,6 +1014,10 @@ msgstr "Повідомлення" msgid "Missing the */ from the end of a /* comment */" msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "Більше властивостей може бути відредаговано прямо у файлі" @@ -917,6 +1026,18 @@ msgstr "Більше властивостей може бути відредаг msgid "Moving" msgstr "Переміщення" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "" + #: Sketch.java:282 msgid "Name for new file:" msgstr "Ім'я для нового файлу:" @@ -953,6 +1074,10 @@ msgstr "Наступна вкладка" msgid "No" msgstr "Ні" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "Не обрана модель плати, будь ласка, виберіть її в меню Сервіс > Плати." @@ -961,6 +1086,10 @@ msgstr "Не обрана модель плати, будь ласка, вибе msgid "No changes necessary for Auto Format." msgstr "Нічого форматувати." +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "Файли не додано." @@ -973,6 +1102,10 @@ msgstr "Немає завантажувача" msgid "No line ending" msgstr "Без закінчення рядка" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "Серйозно, вам просто необхідно піти провітритися." @@ -982,6 +1115,19 @@ msgstr "Серйозно, вам просто необхідно піти про msgid "No reference available for \"{0}\"" msgstr "Немає посилань для \"{0}\"" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "" @@ -1018,6 +1164,10 @@ msgstr "Гаразд" msgid "One file added to the sketch." msgstr "Один файл доданий до скетчу." +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "Відкрити..." @@ -1054,14 +1204,27 @@ msgstr "Вставити" msgid "Persian" msgstr "перська" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "Будь ласка, приєднайте бібліотеку SPI в меню Скетч > Підключити бібліотеку." +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "" + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "Встановіть версію JDK 1.5 або старше." +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "польська" @@ -1224,10 +1387,18 @@ msgstr "Зберегти зміни в \"{0}\"?" msgid "Save sketch folder as..." msgstr "Зберегти теку скетчу як..." +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "Збереження..." +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "Виберіть (або створіть) теку для зберігання скетчів..." @@ -1260,20 +1431,6 @@ msgstr "Надіслати" msgid "Serial Monitor" msgstr "Монітор порту" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "Послідовний порт ''{0}'' зайнято. Закрийте програми, що можуть його використовувати." - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "Послідовний порт ''{0}'' зайнято. Закрийте програми, що можуть його використовувати." - #: Serial.java:194 #, java-format msgid "" @@ -1353,6 +1510,10 @@ msgstr "Тека зі скетчами зникла." msgid "Sketchbook location:" msgstr "Розташування теки зі скетчами:" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "" @@ -1403,6 +1564,10 @@ msgstr "тамільська" msgid "The 'BYTE' keyword is no longer supported." msgstr "Дескриптор 'BYTE' більше не підтримується." +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "Клас Client був перейменований в EternetClient" @@ -1470,12 +1635,12 @@ msgid "" "but anything besides the code will be lost." msgstr "Не вдається знайти теку скетчу.\nБуде виконана спроба перезберегти його в тому ж місці,\nале все, крім коду, буде втрачено." -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." -msgstr "Ім'я скетчу було змінено. Імена скетчів можуть складатися тільки\nз ASCII символів і чисел (але не можуть починатися з чисел).\nТакож вони повинні мати менше 64 символів у довжину." +"They should also be less than 64 characters long." +msgstr "" #: Base.java:259 msgid "" @@ -1486,6 +1651,12 @@ msgid "" "himself in the third person." msgstr "Тека зі скетчами більше не існує.\nArduino переключиться на теку за замовчуванням,\nстворивши її при необхідності. А потім Arduino\nперестане говорити про себе в третій особі." +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1628,6 +1799,13 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "Перейти на Arduino.cc" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "" + #: Base.java:2128 msgid "Warning" msgstr "Попередження" @@ -1796,10 +1974,6 @@ msgstr "середовище розробки" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1829,17 +2003,6 @@ msgstr "немає імені" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "readBytesUntil() байтовий буфер занадто малий для {0} байтів аж до символу {1}" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "removeCode: внутрішня помилка.. неможливо знайти код" - #: Editor.java:932 msgid "serialMenu is null" msgstr "Меню послідовного порту пусто" @@ -1850,6 +2013,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "Обраний послідовний порт {0} не існує або ваша плата не підключена" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "" + #: Preferences.java:391 msgid "upload" msgstr "вивантаженні" @@ -1873,3 +2041,45 @@ msgstr "{0} | Arduino {1}" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "" diff --git a/arduino-core/src/processing/app/i18n/Resources_uk.properties b/arduino-core/src/processing/app/i18n/Resources_uk.properties index 267ba7fcf..c89de6def 100644 --- a/arduino-core/src/processing/app/i18n/Resources_uk.properties +++ b/arduino-core/src/processing/app/i18n/Resources_uk.properties @@ -17,6 +17,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(\u0440\u0435\u0434\u0430\u0433\u0443\u0439\u0442\u0435 \u0442\u0456\u043b\u044c\u043a\u0438 \u044f\u043a\u0449\u043e Arduino \u043d\u0435 \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u043e) +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -53,9 +56,23 @@ Add\ File...=\u0414\u043e\u0434\u0430\u0442\u0438 \u0444\u0430\u0439\u043b... #: Base.java:963 Add\ Library...=\u0414\u043e\u0434\u0430\u0442\u0438 \u0431\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u043a\u0443 +#: ../../../processing/app/Preferences.java:96 +!Albanian= + #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=\u0412\u0438\u043d\u0438\u043a\u043b\u0430 \u043f\u043e\u043c\u0438\u043b\u043a\u0430 \u043f\u0440\u0438 \u0441\u043f\u0440\u043e\u0431\u0456 \u0432\u0438\u043f\u0440\u0430\u0432\u0438\u0442\u0438 \u043a\u043e\u0434\u0443\u0432\u0430\u043d\u043d\u044f.\n\u041d\u0435 \u043d\u0430\u043c\u0430\u0433\u0430\u0439\u0442\u0435\u0441\u044f \u0437\u0431\u0435\u0440\u0435\u0433\u0442\u0438 \u0446\u0435\u0439 \u0441\u043a\u0435\u0442\u0447, \u043e\u0441\u043a\u0456\u043b\u044c\u043a\u0438 \u0432\u0456\u043d \u043c\u043e\u0436\u0435\n\u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0438\u0441\u0430\u0442\u0438 \u0441\u0442\u0430\u0440\u0443 \u0432\u0435\u0440\u0441\u0456\u044e. \u0412\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0439\u0442\u0435 '\u0412\u0456\u0434\u043a\u0440\u0438\u0442\u0438', \u0449\u043e\u0431\n\u0432\u0456\u0434\u043a\u0440\u0438\u0442\u0438 \u0441\u043a\u0435\u0442\u0447 \u0437\u0430\u043d\u043e\u0432\u043e.\n +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=\u0412\u0438\u043d\u0438\u043a\u043b\u0430 \u043d\u0435\u0432\u0456\u0434\u043e\u043c\u0430 \u043f\u043e\u043c\u0438\u043b\u043a\u0430 \u043f\u0440\u0438 \u0441\u043f\u0440\u043e\u0431\u0456\n\u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0438\u0442\u0438 \u043a\u043e\u0434, \u0441\u043f\u0435\u0446\u0438\u0444\u0456\u0447\u043d\u0438\u0439 \u0434\u043b\u044f \u0432\u0430\u0448\u043e\u0457 \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0438. @@ -105,12 +122,33 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u0412\u0438 \u0434\u0456\u0439\u0 #: Sketch.java:587 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u0412\u0438 \u0434\u0456\u0439\u0441\u043d\u043e \u0445\u043e\u0447\u0435\u0442\u0435 \u0432\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0446\u0435\u0439 \u0441\u043a\u0435\u0442\u0447? +#: ../../../processing/app/Base.java:356 +!Argument\ required\ for\ --board= + +#: ../../../processing/app/Base.java:370 +!Argument\ required\ for\ --curdir= + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +!Argument\ required\ for\ --port= + +#: ../../../processing/app/Base.java:377 +!Argument\ required\ for\ --pref= + +#: ../../../processing/app/Base.java:384 +!Argument\ required\ for\ --preferences-file= + #: ../../../processing/app/Preferences.java:137 !Armenian= #: ../../../processing/app/Preferences.java:138 !Asturian= +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 Auto\ Format=\u0410\u0432\u0442\u043e\u0444\u043e\u0440\u043c\u0430\u0442\u0443\u0432\u0430\u043d\u043d\u044f @@ -142,6 +180,12 @@ Bad\ error\ line\:\ {0}=\u0420\u044f\u0434\u043e\u043a \u0437 \u043f\u043e\u043c #: Editor.java:2136 Bad\ file\ selected=\u0412\u0438\u0431\u0440\u0430\u043d\u043e \u043d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u0438\u0439 \u0444\u0430\u0439\u043b +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +!Basque= + #: ../../../processing/app/Preferences.java:139 !Belarusian= @@ -168,6 +212,9 @@ Browse=\u041e\u0431\u0440\u0430\u0442\u0438 #: Sketch.java:1392 Sketch.java:1423 Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u0412\u0456\u0434\u0441\u0443\u0442\u043d\u044f \u0430\u0431\u043e \u043d\u0435 \u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0438\u0441\u0443\u0454\u0442\u044c\u0441\u044f \u0442\u0435\u043a\u0430 \u0437\u0431\u0456\u0440\u043a\u0438 +#: ../../../processing/app/Sketch.java:1530 +!Build\ options\ changed,\ rebuilding\ all= + #: ../../../processing/app/Preferences.java:80 !Bulgarian= @@ -180,8 +227,13 @@ Burn\ Bootloader=\u0417\u0430\u043f\u0438\u0441\u0430\u0442\u0438 \u0437\u0430\u #: Editor.java:2504 Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u0417\u0430\u043f\u0438\u0441 \u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0443\u0432\u0430\u0447\u0430 \u043d\u0430 \u043f\u043b\u0430\u0442\u0443 \u0432\u0432\u0435\u0434\u0435\u043d\u043d\u044f/\u0432\u0438\u0432\u043e\u0434\u0443 (\u0445\u0432\u0438\u043b\u0438\u043d\u043e\u0447\u043a\u0443)... -#: ../../../processing/app/Base.java:368 -!Can't\ open\ source\ sketch\!= +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 !Canadian\ French= @@ -193,6 +245,9 @@ Cancel=\u0421\u043a\u0430\u0441\u0443\u0432\u0430\u0442\u0438 #: Sketch.java:455 Cannot\ Rename=\u041f\u0435\u0440\u0435\u0439\u043c\u0435\u043d\u0443\u0432\u0430\u043d\u043d\u044f \u043d\u0435\u043c\u043e\u0436\u043b\u0438\u0432\u0435 +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 Carriage\ return=\u041f\u043e\u0432\u0435\u0440\u043d\u0435\u043d\u043d\u044f \u043a\u0430\u0440\u0435\u0442\u043a\u0438 (CR) @@ -226,10 +281,6 @@ Close=\u0417\u0430\u043a\u0440\u0438\u0442\u0438 #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=\u041a\u043e\u043c\u0435\u043d\u0442\u0443\u0432\u0430\u0442\u0438/\u0440\u043e\u0437\u043a\u043e\u043c\u0435\u043d\u0442\u0443\u0432\u0430\u0442\u0438 -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=\u041f\u043e\u043c\u0438\u043b\u043a\u0430 \u043a\u043e\u043c\u043f\u0456\u043b\u044f\u0442\u043e\u0440\u0430, \u0431\u0443\u0434\u044c \u043b\u0430\u0441\u043a\u0430, \u043f\u0435\u0440\u0435\u0448\u043b\u0456\u0442\u044c \u0446\u0435\u0439 \u043a\u043e\u0434 \u043d\u0430 {0} - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=\u041a\u043e\u043c\u043f\u0456\u043b\u044e\u0432\u0430\u043d\u043d\u044f... @@ -305,9 +356,8 @@ Could\ not\ re-save\ sketch=\u041d\u0435 \u0432\u0434\u0430\u043b\u043e\u0441\u0 #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u0437\u0430 \u0437\u0430\u043c\u043e\u0432\u0447\u0443\u0432\u0430\u043d\u043d\u044f\u043c \u043d\u0435 \u0447\u0438\u0442\u0430\u044e\u0442\u044c\u0441\u044f.\n\u0412\u0430\u043c \u043f\u043e\u0442\u0440\u0456\u0431\u043d\u043e \u043f\u0435\u0440\u0435\u0432\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0438 Arduino. -#: Preferences.java:258 -#, java-format -Could\ not\ read\ preferences\ from\ {0}=\u041d\u0435\u043c\u043e\u0436\u043b\u0438\u0432\u043e \u043f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u0438 \u043d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u0437 {0} +#: ../../../processing/app/Sketch.java:1525 +!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= #: Base.java:2482 #, java-format @@ -330,6 +380,9 @@ Could\ not\ rename\ the\ sketch.\ (2)=\u041d\u0435\u043c\u043e\u0436\u043b\u0438 #, java-format Could\ not\ replace\ {0}=\u041d\u0435 \u0432\u0434\u0430\u043b\u043e\u0441\u044f \u0437\u0430\u043c\u0456\u043d\u0438\u0442\u0438 {0} +#: ../../../processing/app/Sketch.java:1579 +!Could\ not\ write\ build\ preferences\ file= + #: tools/Archiver.java:74 Couldn't\ archive\ sketch=\u0421\u043a\u0435\u0442\u0447 \u043d\u0435 \u043c\u043e\u0436\u0435 \u0431\u0443\u0442\u0438 \u0437\u0430\u0430\u0440\u0445\u0456\u0432\u043e\u0432\u0430\u043d\u043e @@ -378,12 +431,19 @@ Done\ Saving.=\u0417\u0431\u0435\u0440\u0435\u0436\u0435\u043d\u043d\u044f \u043 #: Editor.java:2510 Done\ burning\ bootloader.=\u0417\u0430\u043f\u0438\u0441 \u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0443\u0432\u0430\u0447\u0430 \u0432\u0438\u043a\u043e\u043d\u0430\u043d\u043e. +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=\u041a\u043e\u043c\u043f\u0456\u043b\u044e\u0432\u0430\u043d\u043d\u044f \u0432\u0438\u043a\u043e\u043d\u0430\u043d\u043e #: Editor.java:2564 Done\ printing.=\u0414\u0440\u0443\u043a \u0432\u0438\u043a\u043e\u043d\u0430\u043d\u043e. +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=\u0412\u0438\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f \u0432\u0438\u043a\u043e\u043d\u0430\u043d\u043e. @@ -462,6 +522,9 @@ Error\ while\ burning\ bootloader.=\u041f\u043e\u043c\u0438\u043b\u043a\u0430 \u #: ../../../processing/app/Editor.java:2555 !Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=\u041f\u043e\u043c\u0438\u043b\u043a\u0430 \u043f\u0440\u0438 \u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u0456 \u043a\u043e\u0434\u0443 {0} @@ -469,10 +532,21 @@ Error\ while\ loading\ code\ {0}=\u041f\u043e\u043c\u0438\u043b\u043a\u0430 \u04 #: Editor.java:2567 Error\ while\ printing.=\u041f\u043e\u043c\u0438\u043b\u043a\u0430 \u043f\u0456\u0434 \u0447\u0430\u0441 \u0434\u0440\u0443\u043a\u0443 +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 !Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 Estonian=\u0435\u0441\u0442\u043e\u043d\u0441\u044c\u043a\u0430 @@ -488,6 +562,10 @@ Export\ canceled,\ changes\ must\ first\ be\ saved.=\u0415\u043a\u0441\u043f\u04 #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +!Failed\ to\ open\ sketch\:\ "{0}"= + #: Editor.java:491 File=\u0424\u0430\u0439\u043b @@ -522,8 +600,9 @@ Fix\ Encoding\ &\ Reload=\u0412\u0438\u043f\u0440\u0430\u0432\u0438\u0442\u0438 #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=\u0429\u043e\u0434\u043e \u0432\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0431\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u043a, \u043f\u0435\u0440\u0435\u0433\u043b\u044f\u043d\u044c\u0442\u0435\: http\://arduino.cc/en/Guide/Libraries\n -#: debug/BasicUploader.java:80 -Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =Forcing reset using 1200bps open/close on port +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=\u0444\u0440\u0430\u043d\u0446\u0443\u0437\u044c\u043a\u0430 @@ -627,8 +706,8 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=\u0411\u045 #: Preferences.java:106 Lithuaninan=\u043b\u0438\u0442\u043e\u0432\u0441\u044c\u043a\u0430 -#: ../../../processing/app/Sketch.java:1660 -!Low\ memory\ available,\ stability\ problems\ may\ occur= +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 Marathi=\u043c\u0430\u0440\u0430\u0442\u0456 @@ -639,12 +718,24 @@ Message=\u041f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f #: ../../../processing/app/preproc/PdePreprocessor.java:412 !Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\u0411\u0456\u043b\u044c\u0448\u0435 \u0432\u043b\u0430\u0441\u0442\u0438\u0432\u043e\u0441\u0442\u0435\u0439 \u043c\u043e\u0436\u0435 \u0431\u0443\u0442\u0438 \u0432\u0456\u0434\u0440\u0435\u0434\u0430\u0433\u043e\u0432\u0430\u043d\u043e \u043f\u0440\u044f\u043c\u043e \u0443 \u0444\u0430\u0439\u043b\u0456 #: Editor.java:2156 Moving=\u041f\u0435\u0440\u0435\u043c\u0456\u0449\u0435\u043d\u043d\u044f +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +!Must\ specify\ exactly\ one\ sketch\ file= + +#: ../../../processing/app/Preferences.java:158 +!N'Ko= + #: Sketch.java:282 Name\ for\ new\ file\:=\u0406\u043c'\u044f \u0434\u043b\u044f \u043d\u043e\u0432\u043e\u0433\u043e \u0444\u0430\u0439\u043b\u0443\: @@ -672,12 +763,18 @@ Next\ Tab=\u041d\u0430\u0441\u0442\u0443\u043f\u043d\u0430 \u0432\u043a\u043b\u0 #: Preferences.java:78 UpdateCheck.java:108 No=\u041d\u0456 +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u041d\u0435 \u043e\u0431\u0440\u0430\u043d\u0430 \u043c\u043e\u0434\u0435\u043b\u044c \u043f\u043b\u0430\u0442\u0438, \u0431\u0443\u0434\u044c \u043b\u0430\u0441\u043a\u0430, \u0432\u0438\u0431\u0435\u0440\u0456\u0442\u044c \u0457\u0457 \u0432 \u043c\u0435\u043d\u044e \u0421\u0435\u0440\u0432\u0456\u0441 > \u041f\u043b\u0430\u0442\u0438. #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=\u041d\u0456\u0447\u043e\u0433\u043e \u0444\u043e\u0440\u043c\u0430\u0442\u0443\u0432\u0430\u0442\u0438. +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=\u0424\u0430\u0439\u043b\u0438 \u043d\u0435 \u0434\u043e\u0434\u0430\u043d\u043e. @@ -687,6 +784,9 @@ No\ launcher\ available=\u041d\u0435\u043c\u0430\u0454 \u0437\u0430\u0432\u0430\ #: SerialMonitor.java:112 No\ line\ ending=\u0411\u0435\u0437 \u0437\u0430\u043a\u0456\u043d\u0447\u0435\u043d\u043d\u044f \u0440\u044f\u0434\u043a\u0430 +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u0421\u0435\u0440\u0439\u043e\u0437\u043d\u043e, \u0432\u0430\u043c \u043f\u0440\u043e\u0441\u0442\u043e \u043d\u0435\u043e\u0431\u0445\u0456\u0434\u043d\u043e \u043f\u0456\u0442\u0438 \u043f\u0440\u043e\u0432\u0456\u0442\u0440\u0438\u0442\u0438\u0441\u044f. @@ -694,6 +794,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u0421\u0435\u0440\u0439\u04 #, java-format No\ reference\ available\ for\ "{0}"=\u041d\u0435\u043c\u0430\u0454 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u044c \u0434\u043b\u044f "{0}" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +!No\ valid\ code\ files\ found= + #: ../../../processing/app/Base.java:309 !No\ valid\ configured\ cores\ found\!\ Exiting...= @@ -720,6 +830,9 @@ OK=\u0413\u0430\u0440\u0430\u0437\u0434 #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=\u041e\u0434\u0438\u043d \u0444\u0430\u0439\u043b \u0434\u043e\u0434\u0430\u043d\u0438\u0439 \u0434\u043e \u0441\u043a\u0435\u0442\u0447\u0443. +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=\u0412\u0456\u0434\u043a\u0440\u0438\u0442\u0438... @@ -747,12 +860,22 @@ Paste=\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 #: Preferences.java:109 Persian=\u043f\u0435\u0440\u0441\u044c\u043a\u0430 +#: ../../../processing/app/Preferences.java:161 +!Persian\ (Iran)= + #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=\u0411\u0443\u0434\u044c \u043b\u0430\u0441\u043a\u0430, \u043f\u0440\u0438\u0454\u0434\u043d\u0430\u0439\u0442\u0435 \u0431\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u043a\u0443 SPI \u0432 \u043c\u0435\u043d\u044e \u0421\u043a\u0435\u0442\u0447 > \u041f\u0456\u0434\u043a\u043b\u044e\u0447\u0438\u0442\u0438 \u0431\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u043a\u0443. +#: ../../../processing/app/debug/Compiler.java:529 +!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=\u0412\u0441\u0442\u0430\u043d\u043e\u0432\u0456\u0442\u044c \u0432\u0435\u0440\u0441\u0456\u044e JDK 1.5 \u0430\u0431\u043e \u0441\u0442\u0430\u0440\u0448\u0435. +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 Polish=\u043f\u043e\u043b\u044c\u0441\u044c\u043a\u0430 @@ -874,9 +997,15 @@ Save\ changes\ to\ "{0}"?\ \ =\u0417\u0431\u0435\u0440\u0435\u0433\u0442\u0438 \ #: Sketch.java:825 Save\ sketch\ folder\ as...=\u0417\u0431\u0435\u0440\u0435\u0433\u0442\u0438 \u0442\u0435\u043a\u0443 \u0441\u043a\u0435\u0442\u0447\u0443 \u044f\u043a... +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=\u0417\u0431\u0435\u0440\u0435\u0436\u0435\u043d\u043d\u044f... +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=\u0412\u0438\u0431\u0435\u0440\u0456\u0442\u044c (\u0430\u0431\u043e \u0441\u0442\u0432\u043e\u0440\u0456\u0442\u044c) \u0442\u0435\u043a\u0443 \u0434\u043b\u044f \u0437\u0431\u0435\u0440\u0456\u0433\u0430\u043d\u043d\u044f \u0441\u043a\u0435\u0442\u0447\u0456\u0432... @@ -901,14 +1030,6 @@ Send=\u041d\u0430\u0434\u0456\u0441\u043b\u0430\u0442\u0438 #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=\u041c\u043e\u043d\u0456\u0442\u043e\u0440 \u043f\u043e\u0440\u0442\u0443 -#: Serial.java:174 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=\u041f\u043e\u0441\u043b\u0456\u0434\u043e\u0432\u043d\u0438\u0439 \u043f\u043e\u0440\u0442 ''{0}'' \u0437\u0430\u0439\u043d\u044f\u0442\u043e. \u0417\u0430\u043a\u0440\u0438\u0439\u0442\u0435 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u0438, \u0449\u043e \u043c\u043e\u0436\u0443\u0442\u044c \u0439\u043e\u0433\u043e \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0432\u0430\u0442\u0438. - -#: Serial.java:121 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=\u041f\u043e\u0441\u043b\u0456\u0434\u043e\u0432\u043d\u0438\u0439 \u043f\u043e\u0440\u0442 ''{0}'' \u0437\u0430\u0439\u043d\u044f\u0442\u043e. \u0417\u0430\u043a\u0440\u0438\u0439\u0442\u0435 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u0438, \u0449\u043e \u043c\u043e\u0436\u0443\u0442\u044c \u0439\u043e\u0433\u043e \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0432\u0430\u0442\u0438. - #: Serial.java:194 #, java-format Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=\u041f\u043e\u0441\u043b\u0456\u0434\u043e\u0432\u043d\u0438\u0439 \u043f\u043e\u0440\u0442 ''{0}'' \u043d\u0435 \u0437\u043d\u0430\u0439\u0434\u0435\u043d\u043e. \u0412\u0438 \u0432\u0438\u0431\u0440\u0430\u043b\u0438 \u043f\u043e\u0442\u0440\u0456\u0431\u043d\u0438\u0439 \u0456\u0437 \u043c\u0435\u043d\u044e \u0421\u0435\u0440\u0432\u0456\u0441 > \u041f\u043e\u0441\u043b\u0456\u0434\u043e\u0432\u043d\u0438\u0439 \u043f\u043e\u0440\u0442? @@ -963,6 +1084,9 @@ Sketchbook\ folder\ disappeared=\u0422\u0435\u043a\u0430 \u0437\u0456 \u0441\u04 #: Preferences.java:315 Sketchbook\ location\:=\u0420\u043e\u0437\u0442\u0430\u0448\u0443\u0432\u0430\u043d\u043d\u044f \u0442\u0435\u043a\u0438 \u0437\u0456 \u0441\u043a\u0435\u0442\u0447\u0430\u043c\u0438\: +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 !Sketches\ (*.ino,\ *.pde)= @@ -997,6 +1121,9 @@ Tamil=\u0442\u0430\u043c\u0456\u043b\u044c\u0441\u044c\u043a\u0430 #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=\u0414\u0435\u0441\u043a\u0440\u0438\u043f\u0442\u043e\u0440 'BYTE' \u0431\u0456\u043b\u044c\u0448\u0435 \u043d\u0435 \u043f\u0456\u0434\u0442\u0440\u0438\u043c\u0443\u0454\u0442\u044c\u0441\u044f. +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=\u041a\u043b\u0430\u0441 Client \u0431\u0443\u0432 \u043f\u0435\u0440\u0435\u0439\u043c\u0435\u043d\u043e\u0432\u0430\u043d\u0438\u0439 \u0432 EternetClient @@ -1033,12 +1160,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=\u041d\u0435 \u0432\u0434\u0430\u0454\u0442\u044c\u0441\u044f \u0437\u043d\u0430\u0439\u0442\u0438 \u0442\u0435\u043a\u0443 \u0441\u043a\u0435\u0442\u0447\u0443.\n\u0411\u0443\u0434\u0435 \u0432\u0438\u043a\u043e\u043d\u0430\u043d\u0430 \u0441\u043f\u0440\u043e\u0431\u0430 \u043f\u0435\u0440\u0435\u0437\u0431\u0435\u0440\u0435\u0433\u0442\u0438 \u0439\u043e\u0433\u043e \u0432 \u0442\u043e\u043c\u0443 \u0436 \u043c\u0456\u0441\u0446\u0456,\n\u0430\u043b\u0435 \u0432\u0441\u0435, \u043a\u0440\u0456\u043c \u043a\u043e\u0434\u0443, \u0431\u0443\u0434\u0435 \u0432\u0442\u0440\u0430\u0447\u0435\u043d\u043e. -#: Sketch.java:2018 -The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=\u0406\u043c'\u044f \u0441\u043a\u0435\u0442\u0447\u0443 \u0431\u0443\u043b\u043e \u0437\u043c\u0456\u043d\u0435\u043d\u043e. \u0406\u043c\u0435\u043d\u0430 \u0441\u043a\u0435\u0442\u0447\u0456\u0432 \u043c\u043e\u0436\u0443\u0442\u044c \u0441\u043a\u043b\u0430\u0434\u0430\u0442\u0438\u0441\u044f \u0442\u0456\u043b\u044c\u043a\u0438\n\u0437 ASCII \u0441\u0438\u043c\u0432\u043e\u043b\u0456\u0432 \u0456 \u0447\u0438\u0441\u0435\u043b (\u0430\u043b\u0435 \u043d\u0435 \u043c\u043e\u0436\u0443\u0442\u044c \u043f\u043e\u0447\u0438\u043d\u0430\u0442\u0438\u0441\u044f \u0437 \u0447\u0438\u0441\u0435\u043b).\n\u0422\u0430\u043a\u043e\u0436 \u0432\u043e\u043d\u0438 \u043f\u043e\u0432\u0438\u043d\u043d\u0456 \u043c\u0430\u0442\u0438 \u043c\u0435\u043d\u0448\u0435 64 \u0441\u0438\u043c\u0432\u043e\u043b\u0456\u0432 \u0443 \u0434\u043e\u0432\u0436\u0438\u043d\u0443. +#: ../../../processing/app/Sketch.java:2028 +!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=\u0422\u0435\u043a\u0430 \u0437\u0456 \u0441\u043a\u0435\u0442\u0447\u0430\u043c\u0438 \u0431\u0456\u043b\u044c\u0448\u0435 \u043d\u0435 \u0456\u0441\u043d\u0443\u0454.\nArduino \u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0438\u0442\u044c\u0441\u044f \u043d\u0430 \u0442\u0435\u043a\u0443 \u0437\u0430 \u0437\u0430\u043c\u043e\u0432\u0447\u0443\u0432\u0430\u043d\u043d\u044f\u043c,\n\u0441\u0442\u0432\u043e\u0440\u0438\u0432\u0448\u0438 \u0457\u0457 \u043f\u0440\u0438 \u043d\u0435\u043e\u0431\u0445\u0456\u0434\u043d\u043e\u0441\u0442\u0456. \u0410 \u043f\u043e\u0442\u0456\u043c Arduino\n\u043f\u0435\u0440\u0435\u0441\u0442\u0430\u043d\u0435 \u0433\u043e\u0432\u043e\u0440\u0438\u0442\u0438 \u043f\u0440\u043e \u0441\u0435\u0431\u0435 \u0432 \u0442\u0440\u0435\u0442\u0456\u0439 \u043e\u0441\u043e\u0431\u0456. +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u0426\u0435\u0439 \u0444\u0430\u0439\u043b \u0432\u0436\u0435 \u0431\u0443\u0432 \u0441\u043a\u043e\u043f\u0456\u0439\u043e\u0432\u0430\u043d\u0438\u0439 \u0432 \u043c\u0456\u0441\u0446\u0435,\n\u0437 \u044f\u043a\u043e\u0433\u043e \u0432\u0438 \u043d\u0430\u043c\u0430\u0433\u0430\u0454\u0442\u0435\u0441\u044f \u0439\u043e\u0433\u043e \u0434\u043e\u0434\u0430\u0442\u0438. @@ -1142,6 +1272,10 @@ Verify\ code\ after\ upload=\u041f\u0435\u0440\u0435\u0432\u0456\u0440\u043a\u04 #: Editor.java:1105 Visit\ Arduino.cc=\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u043d\u0430 Arduino.cc +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= + #: Base.java:2128 Warning=\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u0436\u0435\u043d\u043d\u044f @@ -1240,9 +1374,6 @@ environment=\u0441\u0435\u0440\u0435\u0434\u043e\u0432\u0438\u0449\u0435 \u0440\ #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -!http\://github.com/arduino/Arduino/issues= - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1265,13 +1396,6 @@ name\ is\ null=\u043d\u0435\u043c\u0430\u0454 \u0456\u043c\u0435\u043d\u0456 #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() \u0431\u0430\u0439\u0442\u043e\u0432\u0438\u0439 \u0431\u0443\u0444\u0435\u0440 \u0437\u0430\u043d\u0430\u0434\u0442\u043e \u043c\u0430\u043b\u0438\u0439 \u0434\u043b\u044f {0} \u0431\u0430\u0439\u0442\u0456\u0432 \u0430\u0436 \u0434\u043e \u0441\u0438\u043c\u0432\u043e\u043b\u0443 {1} - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: \u0432\u043d\u0443\u0442\u0440\u0456\u0448\u043d\u044f \u043f\u043e\u043c\u0438\u043b\u043a\u0430.. \u043d\u0435\u043c\u043e\u0436\u043b\u0438\u0432\u043e \u0437\u043d\u0430\u0439\u0442\u0438 \u043a\u043e\u0434 - #: Editor.java:932 serialMenu\ is\ null=\u041c\u0435\u043d\u044e \u043f\u043e\u0441\u043b\u0456\u0434\u043e\u0432\u043d\u043e\u0433\u043e \u043f\u043e\u0440\u0442\u0443 \u043f\u0443\u0441\u0442\u043e @@ -1279,6 +1403,10 @@ serialMenu\ is\ null=\u041c\u0435\u043d\u044e \u043f\u043e\u0441\u043b\u0456\u04 #, java-format the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=\u041e\u0431\u0440\u0430\u043d\u0438\u0439 \u043f\u043e\u0441\u043b\u0456\u0434\u043e\u0432\u043d\u0438\u0439 \u043f\u043e\u0440\u0442 {0} \u043d\u0435 \u0456\u0441\u043d\u0443\u0454 \u0430\u0431\u043e \u0432\u0430\u0448\u0430 \u043f\u043b\u0430\u0442\u0430 \u043d\u0435 \u043f\u0456\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0430 +#: ../../../processing/app/Base.java:389 +#, java-format +!unknown\ option\:\ {0}= + #: Preferences.java:391 upload=\u0432\u0438\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u0456 @@ -1297,3 +1425,35 @@ upload=\u0432\u0438\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u0456 #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= + +#: ../../../processing/app/Base.java:476 +#, java-format +!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= + +#: ../../../processing/app/Base.java:509 +#, java-format +!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= + +#: ../../../processing/app/Base.java:507 +#, java-format +!{0}\:\ Invalid\ option\ for\ board\ "{1}"= + +#: ../../../processing/app/Base.java:502 +#, java-format +!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= + +#: ../../../processing/app/Base.java:486 +#, java-format +!{0}\:\ Unknown\ architecture= + +#: ../../../processing/app/Base.java:491 +#, java-format +!{0}\:\ Unknown\ board= + +#: ../../../processing/app/Base.java:481 +#, java-format +!{0}\:\ Unknown\ package= diff --git a/arduino-core/src/processing/app/i18n/Resources_vi.po b/arduino-core/src/processing/app/i18n/Resources_vi.po index 23ebf2d26..181dcc4a2 100644 --- a/arduino-core/src/processing/app/i18n/Resources_vi.po +++ b/arduino-core/src/processing/app/i18n/Resources_vi.po @@ -33,6 +33,12 @@ msgstr "'Chuột' chỉ được hỗ trợ trong phiên bản Arduino Leonardo" msgid "(edit only when Arduino is not running)" msgstr "(chỉ được chỉnh sửa khi Arduino bị tắt)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -91,6 +97,10 @@ msgstr "Thêm tập tin.." msgid "Add Library..." msgstr "Thêm Thư Viện..." +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -98,6 +108,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "Xảy ra lỗi khi sửa lỗi việc mã hóa tập tin.\nKhông nên cố gắng lưu lại sketch vì có thể gây ra việc chép đè lên dữ liệu\nđối với phiên bản trước đó. Sử dụng lệnh Mở để mở lại sketch và thử lại lần nữa.\n" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -176,6 +200,30 @@ msgstr "Bạn có chắc là bạn muốn xóa \"{0}\" không?" msgid "Are you sure you want to delete this sketch?" msgstr "Bạn có chắc là xóa sketch này không?" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "Armenian" @@ -184,6 +232,10 @@ msgstr "Armenian" msgid "Asturian" msgstr "Asturian" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "Định Dạng Tự Động" @@ -225,6 +277,14 @@ msgstr "Lỗi nghiêm trọng ở dòng: {0}" msgid "Bad file selected" msgstr "Tập tin được chọn bị lỗi" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "Belarusian" @@ -261,6 +321,10 @@ msgstr "Duyệt tìm" msgid "Build folder disappeared or could not be written" msgstr "Hãy tạo một thư mục bỗng dưng biến mất hoặc chấp nhận không thể tạo được" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Bulgarian" @@ -277,9 +341,15 @@ msgstr "Burn Bootloader" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "Burning bootloader vào Bo Mạc I/O (quá trình này có thể kéo dài một phút)..." -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" -msgstr "Không thể mở sketch nguồn!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" +msgstr "" #: ../../../processing/app/Preferences.java:92 msgid "Canadian French" @@ -294,6 +364,10 @@ msgstr "Hủy bỏ" msgid "Cannot Rename" msgstr "Không thể đổi tên" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "Trả về carriage" @@ -338,11 +412,6 @@ msgstr "Đóng lại" msgid "Comment/Uncomment" msgstr "Bình luận/Không bình luận" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "Trình biên dịch bị lỗi, vui lòng gửi mã đến {0}" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "Đang biên dịch sketch..." @@ -450,10 +519,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Không thể tải thiết lập mặc định.\nBạn cần cài đặt lại Arduino." -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "Không thể tải phần tùy biến từ {0}" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "" #: Base.java:2482 #, java-format @@ -482,6 +550,10 @@ msgstr "Không thể đổi tên sketch. (2)" msgid "Could not replace {0}" msgstr "Không thể thay thay thế {0}" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Không thể lưu trữ sketch" @@ -551,6 +623,11 @@ msgstr "Đã hoàn tất việc lưu." msgid "Done burning bootloader." msgstr "Đã hoàn tất quá trình burning bootloader." +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "Đã biên dịch xong." @@ -559,6 +636,10 @@ msgstr "Đã biên dịch xong." msgid "Done printing." msgstr "Đã hoàn tất việc in." +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "Đã hoàn tất việc tải dữ liệu." @@ -662,6 +743,10 @@ msgstr "Lỗi khi đang burning bootloader." msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "Lỗi trong khi đang ghi dữ liệu phần nạp khởi động: thiếu thông số cấu hình '{0}'" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -671,11 +756,25 @@ msgstr "Lỗi khi tải mã lập trình {0}" msgid "Error while printing." msgstr "Lỗi trong khi in." +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "Lỗi khi tải lên dữ liệu: thiếu thông số cấu hình '{0}'" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "Estonian" @@ -696,6 +795,11 @@ msgstr "Quy trình xuất dữ liệu đã bị hủy bỏ, việc trước tiê msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "" + #: Editor.java:491 msgid "File" msgstr "Tập tin" @@ -743,9 +847,10 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "Để biết thêm chi tiết về việc cài đặt các thư viện, vui lòng truy cập: http://arduino.cc/en/Guide/Libraries\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " -msgstr "Bắt buộc thiết lập lại sử dụng 1200bps mở/đóng trên cổng" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" +msgstr "" #: Preferences.java:95 msgid "French" @@ -893,9 +998,9 @@ msgstr "Thư viện mới đã được thêm vào thư viện hệ thống. Hã msgid "Lithuaninan" msgstr "Lithuaninan" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" -msgstr "Hiện bộ nhớ đang rất thấp, các lỗi về sự ổn định có thể xảy ra" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." +msgstr "" #: Preferences.java:107 msgid "Marathi" @@ -909,6 +1014,10 @@ msgstr "Thông báo" msgid "Missing the */ from the end of a /* comment */" msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "Thêm các tùy biến có thể được chỉnh sửa trực tiếp trong tập tin" @@ -917,6 +1026,18 @@ msgstr "Thêm các tùy biến có thể được chỉnh sửa trực tiếp tr msgid "Moving" msgstr "Đang di chuyển" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "" + #: Sketch.java:282 msgid "Name for new file:" msgstr "Tên cho tập tin mới:" @@ -953,6 +1074,10 @@ msgstr "Tab tiếp theo" msgid "No" msgstr "Không đồng ý" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "Không bảng nào được chọn; hãy chọn một bảng từ Công cụ>Bo mạch ở menu." @@ -961,6 +1086,10 @@ msgstr "Không bảng nào được chọn; hãy chọn một bảng từ Công msgid "No changes necessary for Auto Format." msgstr "Không cần thay đổi đối với Định Dạng Tự Động." +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "Không có tập tin nào được thêm vào sketch." @@ -973,6 +1102,10 @@ msgstr "Hiện không có chương trình kích hoạt nào" msgid "No line ending" msgstr "Không kết thúc dòng" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "Không cần thiết lắm đâu, ra ngoài và đón một chút ánh nắng ban ngày nào." @@ -982,6 +1115,19 @@ msgstr "Không cần thiết lắm đâu, ra ngoài và đón một chút ánh n msgid "No reference available for \"{0}\"" msgstr "Hiện không có tham chiếu cho phần \"{0}\"" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "Không có thiết lập nào không hợp lệ được tìm thấy trong cấu trúc cơ sở! Đang thực hiện lệnh thoát..." @@ -1018,6 +1164,10 @@ msgstr "Đồng ý" msgid "One file added to the sketch." msgstr "Chỉ một tập tin được thêm vào sketch." +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "Mở" @@ -1054,14 +1204,27 @@ msgstr "Dán" msgid "Persian" msgstr "Persian" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "Nhập địa chỉ SPI từ Sketch > Nhập thư viện ở menu." +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "" + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "Vui lòng cài đặt JDK phiên bản 1.5 hoặc mới hơn" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "Polish" @@ -1224,10 +1387,18 @@ msgstr "Lưu phần thay đổi đối với \"{0}\"?" msgid "Save sketch folder as..." msgstr "Lưu thư mục sketch dưới dạng..." +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "Đang lưu..." +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "Chọn (hoặc tạo mới) một thư mục cho sketch..." @@ -1260,20 +1431,6 @@ msgstr "Gửi" msgid "Serial Monitor" msgstr "Serial Monitor" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "Cổng có số thứ tự ''{0}'' hiện đang được sử dụng. Hãy đóng lại thử bất kỳ chương trình nào đang sử dụng cổng này." - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "Cổng có số thứ tự ''{0}'' hiện đang được sử dụng. Hãy đóng lại thử bất kỳ chương trình nào đang sử dụng cổng này." - #: Serial.java:194 #, java-format msgid "" @@ -1353,6 +1510,10 @@ msgstr "Thư mục Sketchbook đã biến mất" msgid "Sketchbook location:" msgstr "Địa điểm Sketchbook;" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "Bản mạch (*.ino, *.pde)" @@ -1403,6 +1564,10 @@ msgstr "Tamil" msgid "The 'BYTE' keyword is no longer supported." msgstr "Từ khóa 'BYTE' không còn được hỗ trợ." +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "Lớp Client đã được chuyển tên thành EthernetClient." @@ -1470,12 +1635,12 @@ msgid "" "but anything besides the code will be lost." msgstr "Thư mục sketch đã đi bụi.\nSẽ cố gắng lưu lại lần nữa ở cùng địa chỉ,\nnhưng tất cả mọi thứ ngoại trừ mã nguồn sẽ bị đi bụi theo luôn." -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." -msgstr "Tên của sketch cần được chỉnh sửa. Tên của sketch chỉ chứa\ncác ký tự ASCII chuẩn và số (không bắt đầu với số).\nNên ít hơn 64 ký tự." +"They should also be less than 64 characters long." +msgstr "" #: Base.java:259 msgid "" @@ -1486,6 +1651,12 @@ msgid "" "himself in the third person." msgstr "Thư mục sketchbook không còn hiện hữu trong hệ thống.\nArduino sẽ tự đổng chuyển đến sketchbook mặc định\nvà tạo một thư mục sketchbook mới nếu cần thiết. Arduino sẽ\ndừng lại việc thông báo này với người dùng khác." +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1628,6 +1799,13 @@ msgstr "Việt Nam" msgid "Visit Arduino.cc" msgstr "Truy cập Arduino.cc" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "" + #: Base.java:2128 msgid "Warning" msgstr "Cảnh báo" @@ -1796,10 +1974,6 @@ msgstr "môi trường" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "http://github.com/arduino/Arduino/issues" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1829,17 +2003,6 @@ msgstr "tên bị rỗng" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "readBytesUntil() byte buffer is too small for the {0} bytes up to and including char {1}" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "removeCode: lỗi hệ thống.. không thể tìm thấy đoạn mã lập trình" - #: Editor.java:932 msgid "serialMenu is null" msgstr "serialMenu bị rỗng" @@ -1850,6 +2013,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "cổng được chọn {0} không tồn tại trong bo mạch hoặc không được kết nối" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "" + #: Preferences.java:391 msgid "upload" msgstr "tải lên" @@ -1873,3 +2041,45 @@ msgstr "{0} | Arduino {1}" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "" diff --git a/arduino-core/src/processing/app/i18n/Resources_vi.properties b/arduino-core/src/processing/app/i18n/Resources_vi.properties index a0476c384..12602959e 100644 --- a/arduino-core/src/processing/app/i18n/Resources_vi.properties +++ b/arduino-core/src/processing/app/i18n/Resources_vi.properties @@ -17,6 +17,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(ch\u1ec9 \u0111\u01b0\u1ee3c ch\u1ec9nh s\u1eeda khi Arduino b\u1ecb t\u1eaft) +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -53,9 +56,23 @@ Add\ File...=Th\u00eam t\u1eadp tin.. #: Base.java:963 Add\ Library...=Th\u00eam Th\u01b0 Vi\u1ec7n... +#: ../../../processing/app/Preferences.java:96 +!Albanian= + #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=X\u1ea3y ra l\u1ed7i khi s\u1eeda l\u1ed7i vi\u1ec7c m\u00e3 h\u00f3a t\u1eadp tin.\nKh\u00f4ng n\u00ean c\u1ed1 g\u1eafng l\u01b0u l\u1ea1i sketch v\u00ec c\u00f3 th\u1ec3 g\u00e2y ra vi\u1ec7c ch\u00e9p \u0111\u00e8 l\u00ean d\u1eef li\u1ec7u\n\u0111\u1ed1i v\u1edbi phi\u00ean b\u1ea3n tr\u01b0\u1edbc \u0111\u00f3. S\u1eed d\u1ee5ng l\u1ec7nh M\u1edf \u0111\u1ec3 m\u1edf l\u1ea1i sketch v\u00e0 th\u1eed l\u1ea1i l\u1ea7n n\u1eefa.\n +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=M\u1ed9t l\u1ed7i l\u1ea1 \u0111\u00e3 x\u1ea3y ra khi \u0111ang t\u1ea3i\nm\u00e3 l\u1eadp tr\u00ecnh d\u00e0nh cho n\u1ec1n t\u1ea3ng c\u1ee7a h\u1ec7 th\u1ed1ng m\u00e1y b\u1ea1n \u0111ang t\u01b0\u01a1ng t\u00e1c. @@ -105,12 +122,33 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=B\u1ea1n c\u00f3 ch\u1eafc l\u00e0 #: Sketch.java:587 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=B\u1ea1n c\u00f3 ch\u1eafc l\u00e0 x\u00f3a sketch n\u00e0y kh\u00f4ng? +#: ../../../processing/app/Base.java:356 +!Argument\ required\ for\ --board= + +#: ../../../processing/app/Base.java:370 +!Argument\ required\ for\ --curdir= + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +!Argument\ required\ for\ --port= + +#: ../../../processing/app/Base.java:377 +!Argument\ required\ for\ --pref= + +#: ../../../processing/app/Base.java:384 +!Argument\ required\ for\ --preferences-file= + #: ../../../processing/app/Preferences.java:137 Armenian=Armenian #: ../../../processing/app/Preferences.java:138 Asturian=Asturian +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 Auto\ Format=\u0110\u1ecbnh D\u1ea1ng T\u1ef1 \u0110\u1ed9ng @@ -142,6 +180,12 @@ Bad\ error\ line\:\ {0}=L\u1ed7i nghi\u00eam tr\u1ecdng \u1edf d\u00f2ng\: {0} #: Editor.java:2136 Bad\ file\ selected=T\u1eadp tin \u0111\u01b0\u1ee3c ch\u1ecdn b\u1ecb l\u1ed7i +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +!Basque= + #: ../../../processing/app/Preferences.java:139 Belarusian=Belarusian @@ -168,6 +212,9 @@ Browse=Duy\u1ec7t t\u00ecm #: Sketch.java:1392 Sketch.java:1423 Build\ folder\ disappeared\ or\ could\ not\ be\ written=H\u00e3y t\u1ea1o m\u1ed9t th\u01b0 m\u1ee5c b\u1ed7ng d\u01b0ng bi\u1ebfn m\u1ea5t ho\u1eb7c ch\u1ea5p nh\u1eadn kh\u00f4ng th\u1ec3 t\u1ea1o \u0111\u01b0\u1ee3c +#: ../../../processing/app/Sketch.java:1530 +!Build\ options\ changed,\ rebuilding\ all= + #: ../../../processing/app/Preferences.java:80 Bulgarian=Bulgarian @@ -180,8 +227,13 @@ Burn\ Bootloader=Burn Bootloader #: Editor.java:2504 Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Burning bootloader v\u00e0o Bo M\u1ea1c I/O (qu\u00e1 tr\u00ecnh n\u00e0y c\u00f3 th\u1ec3 k\u00e9o d\u00e0i m\u1ed9t ph\u00fat)... -#: ../../../processing/app/Base.java:368 -Can't\ open\ source\ sketch\!=Kh\u00f4ng th\u1ec3 m\u1edf sketch ngu\u1ed3n\! +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 Canadian\ French=Canadian French @@ -193,6 +245,9 @@ Cancel=H\u1ee7y b\u1ecf #: Sketch.java:455 Cannot\ Rename=Kh\u00f4ng th\u1ec3 \u0111\u1ed5i t\u00ean +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 Carriage\ return=Tr\u1ea3 v\u1ec1 carriage @@ -226,10 +281,6 @@ Close=\u0110\u00f3ng l\u1ea1i #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=B\u00ecnh lu\u1eadn/Kh\u00f4ng b\u00ecnh lu\u1eadn -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Tr\u00ecnh bi\u00ean d\u1ecbch b\u1ecb l\u1ed7i, vui l\u00f2ng g\u1eedi m\u00e3 \u0111\u1ebfn {0} - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=\u0110ang bi\u00ean d\u1ecbch sketch... @@ -305,9 +356,8 @@ Could\ not\ re-save\ sketch=Kh\u00f4ng th\u1ec3 l\u01b0u l\u1ea1i sketch l\u1ea7 #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Kh\u00f4ng th\u1ec3 t\u1ea3i thi\u1ebft l\u1eadp m\u1eb7c \u0111\u1ecbnh.\nB\u1ea1n c\u1ea7n c\u00e0i \u0111\u1eb7t l\u1ea1i Arduino. -#: Preferences.java:258 -#, java-format -Could\ not\ read\ preferences\ from\ {0}=Kh\u00f4ng th\u1ec3 t\u1ea3i ph\u1ea7n t\u00f9y bi\u1ebfn t\u1eeb {0} +#: ../../../processing/app/Sketch.java:1525 +!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= #: Base.java:2482 #, java-format @@ -330,6 +380,9 @@ Could\ not\ rename\ the\ sketch.\ (2)=Kh\u00f4ng th\u1ec3 \u0111\u1ed5i t\u00ean #, java-format Could\ not\ replace\ {0}=Kh\u00f4ng th\u1ec3 thay thay th\u1ebf {0} +#: ../../../processing/app/Sketch.java:1579 +!Could\ not\ write\ build\ preferences\ file= + #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Kh\u00f4ng th\u1ec3 l\u01b0u tr\u1eef sketch @@ -378,12 +431,19 @@ Done\ Saving.=\u0110\u00e3 ho\u00e0n t\u1ea5t vi\u1ec7c l\u01b0u. #: Editor.java:2510 Done\ burning\ bootloader.=\u0110\u00e3 ho\u00e0n t\u1ea5t qu\u00e1 tr\u00ecnh burning bootloader. +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=\u0110\u00e3 bi\u00ean d\u1ecbch xong. #: Editor.java:2564 Done\ printing.=\u0110\u00e3 ho\u00e0n t\u1ea5t vi\u1ec7c in. +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=\u0110\u00e3 ho\u00e0n t\u1ea5t vi\u1ec7c t\u1ea3i d\u1eef li\u1ec7u. @@ -462,6 +522,9 @@ Error\ while\ burning\ bootloader.=L\u1ed7i khi \u0111ang burning bootloader. #: ../../../processing/app/Editor.java:2555 Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=L\u1ed7i trong khi \u0111ang ghi d\u1eef li\u1ec7u ph\u1ea7n n\u1ea1p kh\u1edfi \u0111\u1ed9ng\: thi\u1ebfu th\u00f4ng s\u1ed1 c\u1ea5u h\u00ecnh '{0}' +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=L\u1ed7i khi t\u1ea3i m\u00e3 l\u1eadp tr\u00ecnh {0} @@ -469,10 +532,21 @@ Error\ while\ loading\ code\ {0}=L\u1ed7i khi t\u1ea3i m\u00e3 l\u1eadp tr\u00ec #: Editor.java:2567 Error\ while\ printing.=L\u1ed7i trong khi in. +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=L\u1ed7i khi t\u1ea3i l\u00ean d\u1eef li\u1ec7u\: thi\u1ebfu th\u00f4ng s\u1ed1 c\u1ea5u h\u00ecnh '{0}' +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 Estonian=Estonian @@ -488,6 +562,10 @@ Export\ canceled,\ changes\ must\ first\ be\ saved.=Quy tr\u00ecnh xu\u1ea5t d\u #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +!Failed\ to\ open\ sketch\:\ "{0}"= + #: Editor.java:491 File=T\u1eadp tin @@ -522,8 +600,9 @@ Fix\ Encoding\ &\ Reload=S\u1eeda l\u1ed7i M\u00e3 H\u00f3a & T\u1ea3i l\u1ea1i #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=\u0110\u1ec3 bi\u1ebft th\u00eam chi ti\u1ebft v\u1ec1 vi\u1ec7c c\u00e0i \u0111\u1eb7t c\u00e1c th\u01b0 vi\u1ec7n, vui l\u00f2ng truy c\u1eadp\: http\://arduino.cc/en/Guide/Libraries\n -#: debug/BasicUploader.java:80 -Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =B\u1eaft bu\u1ed9c thi\u1ebft l\u1eadp l\u1ea1i s\u1eed d\u1ee5ng 1200bps m\u1edf/\u0111\u00f3ng tr\u00ean c\u1ed5ng +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=French @@ -627,8 +706,8 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Th\u01b0 vi #: Preferences.java:106 Lithuaninan=Lithuaninan -#: ../../../processing/app/Sketch.java:1660 -Low\ memory\ available,\ stability\ problems\ may\ occur=Hi\u1ec7n b\u1ed9 nh\u1edb \u0111ang r\u1ea5t th\u1ea5p, c\u00e1c l\u1ed7i v\u1ec1 s\u1ef1 \u1ed5n \u0111\u1ecbnh c\u00f3 th\u1ec3 x\u1ea3y ra +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 Marathi=Marathi @@ -639,12 +718,24 @@ Message=Th\u00f4ng b\u00e1o #: ../../../processing/app/preproc/PdePreprocessor.java:412 !Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Th\u00eam c\u00e1c t\u00f9y bi\u1ebfn c\u00f3 th\u1ec3 \u0111\u01b0\u1ee3c ch\u1ec9nh s\u1eeda tr\u1ef1c ti\u1ebfp trong t\u1eadp tin #: Editor.java:2156 Moving=\u0110ang di chuy\u1ec3n +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +!Must\ specify\ exactly\ one\ sketch\ file= + +#: ../../../processing/app/Preferences.java:158 +!N'Ko= + #: Sketch.java:282 Name\ for\ new\ file\:=T\u00ean cho t\u1eadp tin m\u1edbi\: @@ -672,12 +763,18 @@ Next\ Tab=Tab ti\u1ebfp theo #: Preferences.java:78 UpdateCheck.java:108 No=Kh\u00f4ng \u0111\u1ed3ng \u00fd +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Kh\u00f4ng b\u1ea3ng n\u00e0o \u0111\u01b0\u1ee3c ch\u1ecdn; h\u00e3y ch\u1ecdn m\u1ed9t b\u1ea3ng t\u1eeb C\u00f4ng c\u1ee5>Bo m\u1ea1ch \u1edf menu. #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Kh\u00f4ng c\u1ea7n thay \u0111\u1ed5i \u0111\u1ed1i v\u1edbi \u0110\u1ecbnh D\u1ea1ng T\u1ef1 \u0110\u1ed9ng. +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=Kh\u00f4ng c\u00f3 t\u1eadp tin n\u00e0o \u0111\u01b0\u1ee3c th\u00eam v\u00e0o sketch. @@ -687,6 +784,9 @@ No\ launcher\ available=Hi\u1ec7n kh\u00f4ng c\u00f3 ch\u01b0\u01a1ng tr\u00ecnh #: SerialMonitor.java:112 No\ line\ ending=Kh\u00f4ng k\u1ebft th\u00fac d\u00f2ng +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Kh\u00f4ng c\u1ea7n thi\u1ebft l\u1eafm \u0111\u00e2u, ra ngo\u00e0i v\u00e0 \u0111\u00f3n m\u1ed9t ch\u00fat \u00e1nh n\u1eafng ban ng\u00e0y n\u00e0o. @@ -694,6 +794,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Kh\u00f4ng c\u1ea7n thi\u1eb #, java-format No\ reference\ available\ for\ "{0}"=Hi\u1ec7n kh\u00f4ng c\u00f3 tham chi\u1ebfu cho ph\u1ea7n "{0}" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +!No\ valid\ code\ files\ found= + #: ../../../processing/app/Base.java:309 No\ valid\ configured\ cores\ found\!\ Exiting...=Kh\u00f4ng c\u00f3 thi\u1ebft l\u1eadp n\u00e0o kh\u00f4ng h\u1ee3p l\u1ec7 \u0111\u01b0\u1ee3c t\u00ecm th\u1ea5y trong c\u1ea5u tr\u00fac c\u01a1 s\u1edf\! \u0110ang th\u1ef1c hi\u1ec7n l\u1ec7nh tho\u00e1t... @@ -720,6 +830,9 @@ OK=\u0110\u1ed3ng \u00fd #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=Ch\u1ec9 m\u1ed9t t\u1eadp tin \u0111\u01b0\u1ee3c th\u00eam v\u00e0o sketch. +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=M\u1edf @@ -747,12 +860,22 @@ Paste=D\u00e1n #: Preferences.java:109 Persian=Persian +#: ../../../processing/app/Preferences.java:161 +!Persian\ (Iran)= + #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Nh\u1eadp \u0111\u1ecba ch\u1ec9 SPI t\u1eeb Sketch > Nh\u1eadp th\u01b0 vi\u1ec7n \u1edf menu. +#: ../../../processing/app/debug/Compiler.java:529 +!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=Vui l\u00f2ng c\u00e0i \u0111\u1eb7t JDK phi\u00ean b\u1ea3n 1.5 ho\u1eb7c m\u1edbi h\u01a1n +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 Polish=Polish @@ -874,9 +997,15 @@ Save\ changes\ to\ "{0}"?\ \ =L\u01b0u ph\u1ea7n thay \u0111\u1ed5i \u0111\u1ed1 #: Sketch.java:825 Save\ sketch\ folder\ as...=L\u01b0u th\u01b0 m\u1ee5c sketch d\u01b0\u1edbi d\u1ea1ng... +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=\u0110ang l\u01b0u... +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=Ch\u1ecdn (ho\u1eb7c t\u1ea1o m\u1edbi) m\u1ed9t th\u01b0 m\u1ee5c cho sketch... @@ -901,14 +1030,6 @@ Send=G\u1eedi #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=Serial Monitor -#: Serial.java:174 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=C\u1ed5ng c\u00f3 s\u1ed1 th\u1ee9 t\u1ef1 ''{0}'' hi\u1ec7n \u0111ang \u0111\u01b0\u1ee3c s\u1eed d\u1ee5ng. H\u00e3y \u0111\u00f3ng l\u1ea1i th\u1eed b\u1ea5t k\u1ef3 ch\u01b0\u01a1ng tr\u00ecnh n\u00e0o \u0111ang s\u1eed d\u1ee5ng c\u1ed5ng n\u00e0y. - -#: Serial.java:121 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=C\u1ed5ng c\u00f3 s\u1ed1 th\u1ee9 t\u1ef1 ''{0}'' hi\u1ec7n \u0111ang \u0111\u01b0\u1ee3c s\u1eed d\u1ee5ng. H\u00e3y \u0111\u00f3ng l\u1ea1i th\u1eed b\u1ea5t k\u1ef3 ch\u01b0\u01a1ng tr\u00ecnh n\u00e0o \u0111ang s\u1eed d\u1ee5ng c\u1ed5ng n\u00e0y. - #: Serial.java:194 #, java-format Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=C\u1ed5ng c\u00f3 s\u1ed1 th\u1ee9 t\u1ef1 ''{0}'' kh\u00f4ng \u0111\u01b0\u1ee3c t\u00ecm th\u1ea5y. B\u1ea1n \u0111\u00e3 ch\u1ecdn \u0111\u00fang c\u1ed5ng trong ph\u1ea7n menu C\u00f4ng c\u1ee5 > S\u1ed1 th\u1ee9 t\u1ef1 c\u1ed5ng ch\u01b0a? @@ -963,6 +1084,9 @@ Sketchbook\ folder\ disappeared=Th\u01b0 m\u1ee5c Sketchbook \u0111\u00e3 bi\u1e #: Preferences.java:315 Sketchbook\ location\:=\u0110\u1ecba \u0111i\u1ec3m Sketchbook; +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 Sketches\ (*.ino,\ *.pde)=B\u1ea3n m\u1ea1ch (*.ino, *.pde) @@ -997,6 +1121,9 @@ Tamil=Tamil #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=T\u1eeb kh\u00f3a 'BYTE' kh\u00f4ng c\u00f2n \u0111\u01b0\u1ee3c h\u1ed7 tr\u1ee3. +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=L\u1edbp Client \u0111\u00e3 \u0111\u01b0\u1ee3c chuy\u1ec3n t\u00ean th\u00e0nh EthernetClient. @@ -1033,12 +1160,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Th\u01b0 m\u1ee5c sketch \u0111\u00e3 \u0111i b\u1ee5i.\nS\u1ebd c\u1ed1 g\u1eafng l\u01b0u l\u1ea1i l\u1ea7n n\u1eefa \u1edf c\u00f9ng \u0111\u1ecba ch\u1ec9,\nnh\u01b0ng t\u1ea5t c\u1ea3 m\u1ecdi th\u1ee9 ngo\u1ea1i tr\u1eeb m\u00e3 ngu\u1ed3n s\u1ebd b\u1ecb \u0111i b\u1ee5i theo lu\u00f4n. -#: Sketch.java:2018 -The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=T\u00ean c\u1ee7a sketch c\u1ea7n \u0111\u01b0\u1ee3c ch\u1ec9nh s\u1eeda. T\u00ean c\u1ee7a sketch ch\u1ec9 ch\u1ee9a\nc\u00e1c k\u00fd t\u1ef1 ASCII chu\u1ea9n v\u00e0 s\u1ed1 (kh\u00f4ng b\u1eaft \u0111\u1ea7u v\u1edbi s\u1ed1).\nN\u00ean \u00edt h\u01a1n 64 k\u00fd t\u1ef1. +#: ../../../processing/app/Sketch.java:2028 +!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Th\u01b0 m\u1ee5c sketchbook kh\u00f4ng c\u00f2n hi\u1ec7n h\u1eefu trong h\u1ec7 th\u1ed1ng.\nArduino s\u1ebd t\u1ef1 \u0111\u1ed5ng chuy\u1ec3n \u0111\u1ebfn sketchbook m\u1eb7c \u0111\u1ecbnh\nv\u00e0 t\u1ea1o m\u1ed9t th\u01b0 m\u1ee5c sketchbook m\u1edbi n\u1ebfu c\u1ea7n thi\u1ebft. Arduino s\u1ebd\nd\u1eebng l\u1ea1i vi\u1ec7c th\u00f4ng b\u00e1o n\u00e0y v\u1edbi ng\u01b0\u1eddi d\u00f9ng kh\u00e1c. +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=T\u1eadp tin n\u00e0y \u0111\u00e3 \u0111\u01b0\u1ee3c sao ch\u00e9p v\u00e0o\n\u0111\u1ecba \u0111i\u1ec3m m\u00e0 b\u1ea1n \u0111ang c\u1ed1 th\u00eam v\u00e0o.\nN\u00e3y gi\u1edd tui h\u1ebbm c\u00f3 l\u00e0m g\u00ec \u00e0 nhoa. @@ -1142,6 +1272,10 @@ Vietnamese=Vi\u1ec7t Nam #: Editor.java:1105 Visit\ Arduino.cc=Truy c\u1eadp Arduino.cc +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= + #: Base.java:2128 Warning=C\u1ea3nh b\u00e1o @@ -1240,9 +1374,6 @@ environment=m\u00f4i tr\u01b0\u1eddng #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1265,13 +1396,6 @@ name\ is\ null=t\u00ean b\u1ecb r\u1ed7ng #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() byte buffer is too small for the {0} bytes up to and including char {1} - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: l\u1ed7i h\u1ec7 th\u1ed1ng.. kh\u00f4ng th\u1ec3 t\u00ecm th\u1ea5y \u0111o\u1ea1n m\u00e3 l\u1eadp tr\u00ecnh - #: Editor.java:932 serialMenu\ is\ null=serialMenu b\u1ecb r\u1ed7ng @@ -1279,6 +1403,10 @@ serialMenu\ is\ null=serialMenu b\u1ecb r\u1ed7ng #, java-format the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=c\u1ed5ng \u0111\u01b0\u1ee3c ch\u1ecdn {0} kh\u00f4ng t\u1ed3n t\u1ea1i trong bo m\u1ea1ch ho\u1eb7c kh\u00f4ng \u0111\u01b0\u1ee3c k\u1ebft n\u1ed1i +#: ../../../processing/app/Base.java:389 +#, java-format +!unknown\ option\:\ {0}= + #: Preferences.java:391 upload=t\u1ea3i l\u00ean @@ -1297,3 +1425,35 @@ upload=t\u1ea3i l\u00ean #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= + +#: ../../../processing/app/Base.java:476 +#, java-format +!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= + +#: ../../../processing/app/Base.java:509 +#, java-format +!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= + +#: ../../../processing/app/Base.java:507 +#, java-format +!{0}\:\ Invalid\ option\ for\ board\ "{1}"= + +#: ../../../processing/app/Base.java:502 +#, java-format +!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= + +#: ../../../processing/app/Base.java:486 +#, java-format +!{0}\:\ Unknown\ architecture= + +#: ../../../processing/app/Base.java:491 +#, java-format +!{0}\:\ Unknown\ board= + +#: ../../../processing/app/Base.java:481 +#, java-format +!{0}\:\ Unknown\ package= diff --git a/arduino-core/src/processing/app/i18n/Resources_zh_CN.po b/arduino-core/src/processing/app/i18n/Resources_zh_CN.po index 01c800cde..298c51eec 100644 --- a/arduino-core/src/processing/app/i18n/Resources_zh_CN.po +++ b/arduino-core/src/processing/app/i18n/Resources_zh_CN.po @@ -33,6 +33,12 @@ msgstr "'Mouse' 仅在 Arduino Leonardo 上支持" msgid "(edit only when Arduino is not running)" msgstr "(只能在Arduino未运行时进行编辑)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde-> .ino" @@ -91,6 +97,10 @@ msgstr "添加文件..." msgid "Add Library..." msgstr "添加库" +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "阿尔巴尼亚语" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -98,6 +108,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "在修复文件编码时发生一个错误。\n请不要保存这个 sketch 否则可能会覆盖源文件。\n使用“打开”命令重新打开 sketch 再试一次。\n" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -176,6 +200,30 @@ msgstr "确定要删除\"{0}\"?" msgid "Are you sure you want to delete this sketch?" msgstr "确定要删除此草稿码?" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "亚美尼亚语" @@ -184,6 +232,10 @@ msgstr "亚美尼亚语" msgid "Asturian" msgstr "阿斯图里亚斯语" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "自动格式化" @@ -225,6 +277,14 @@ msgstr "" msgid "Bad file selected" msgstr "选择的文件有问题" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "白俄罗斯语" @@ -261,6 +321,10 @@ msgstr "浏览" msgid "Build folder disappeared or could not be written" msgstr "建立的文件夹消失了或者是它不可写" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "保加利亚语" @@ -277,9 +341,15 @@ msgstr "烧录引导程序" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "" -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" -msgstr "无法打开源 sketch!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" +msgstr "" #: ../../../processing/app/Preferences.java:92 msgid "Canadian French" @@ -294,6 +364,10 @@ msgstr "取消" msgid "Cannot Rename" msgstr "无法重命名" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "回车" @@ -338,11 +412,6 @@ msgstr "关闭" msgid "Comment/Uncomment" msgstr "注释/取消注释" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "编译错误,请提交此代码到{0}" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "正在编译 sketch..." @@ -450,10 +519,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "无法读取预设设置。\n你必须重新安装Arduino。" -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "无法从{0}读取首选项" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "" #: Base.java:2482 #, java-format @@ -482,6 +550,10 @@ msgstr "无法重命名草稿码。(2)" msgid "Could not replace {0}" msgstr "无法替换{0}" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "无法归档 sketch" @@ -551,6 +623,11 @@ msgstr "保存完成。" msgid "Done burning bootloader." msgstr "烧录引导程序完成。" +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "编译完成。" @@ -559,6 +636,10 @@ msgstr "编译完成。" msgid "Done printing." msgstr "输出完成。" +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "上传成功。" @@ -662,6 +743,10 @@ msgstr "烧录引导程序出错。" msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -671,11 +756,25 @@ msgstr "载入代码{0}时发生错误" msgid "Error while printing." msgstr "在输出过程中发生错误。" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "爱沙尼亚语" @@ -696,6 +795,11 @@ msgstr "" msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "" + #: Editor.java:491 msgid "File" msgstr "文件" @@ -743,8 +847,9 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "安装库的详细信息,请参阅: http://arduino.cc/en/Guide/Libraries\\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" msgstr "" #: Preferences.java:95 @@ -893,9 +998,9 @@ msgstr "库已经加入,请检查“导入库”菜单" msgid "Lithuaninan" msgstr "立陶宛语" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" -msgstr "可用内存偏低,可能会导致稳定性问题" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." +msgstr "" #: Preferences.java:107 msgid "Marathi" @@ -909,6 +1014,10 @@ msgstr "信息" msgid "Missing the */ from the end of a /* comment */" msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "在首选项中还有更多选项可以直接编辑" @@ -917,6 +1026,18 @@ msgstr "在首选项中还有更多选项可以直接编辑" msgid "Moving" msgstr "移动中" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "" + #: Sketch.java:282 msgid "Name for new file:" msgstr "新文件的名字" @@ -953,6 +1074,10 @@ msgstr "下一个标签" msgid "No" msgstr "否" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "未选择板:请点击“工具>板”菜单选择一个板子。" @@ -961,6 +1086,10 @@ msgstr "未选择板:请点击“工具>板”菜单选择一个板子。" msgid "No changes necessary for Auto Format." msgstr "无需自动格式化。" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "没有文件被添加到 sketch。" @@ -973,6 +1102,10 @@ msgstr "无可用的启动程序" msgid "No line ending" msgstr "没有结束符" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "说真的,你该出去呼吸新鲜空气了。" @@ -982,6 +1115,19 @@ msgstr "说真的,你该出去呼吸新鲜空气了。" msgid "No reference available for \"{0}\"" msgstr "对 \"{0}\" 无可用的参考文件" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "未发现有效的配置核心!退出..." @@ -1018,6 +1164,10 @@ msgstr "好" msgid "One file added to the sketch." msgstr "一个文件被添加到 sketch。" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "打开" @@ -1054,14 +1204,27 @@ msgstr "粘贴" msgid "Persian" msgstr "波斯语" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "请利用 “Sketch>导入库” 菜单导入 SPI 库。" +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "请点击“草稿> 导入库”导入Wire 库。" + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "请安装 JDK 1.5 或更新的版本" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "波兰语" @@ -1224,10 +1387,18 @@ msgstr "保存更改到 \"{0}\"?" msgid "Save sketch folder as..." msgstr "草稿码文件夹另存为" +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "保存中..." +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "为草稿码选取(或新增)文件夹..." @@ -1260,20 +1431,6 @@ msgstr "发送" msgid "Serial Monitor" msgstr "串口监视器" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "" - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "" - #: Serial.java:194 #, java-format msgid "" @@ -1353,6 +1510,10 @@ msgstr "代码草稿箱消失" msgid "Sketchbook location:" msgstr "草稿码位置" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "Sketches (*.ino, *.pde)" @@ -1403,6 +1564,10 @@ msgstr "泰米尔语" msgid "The 'BYTE' keyword is no longer supported." msgstr "不再支持 ‘BYTE’ 关键字。" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "Client class 已改名为 EthernetClient." @@ -1470,12 +1635,12 @@ msgid "" "but anything besides the code will be lost." msgstr "sketch 文件夹消失了,\n是否尝试重新保存在相同位置,\n除代码外所有的东西都会丢失。" -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." -msgstr "sketch 文件名无效,sketch 文件名仅可以包含有\nASCII 支持的字符和数字(不可以以数字开头),\n且支持的最大文件名长度为64字符。" +"They should also be less than 64 characters long." +msgstr "" #: Base.java:259 msgid "" @@ -1486,6 +1651,12 @@ msgid "" "himself in the third person." msgstr "草稿码文件夹已不存在,\nArduino将使用预设的文件夹位置,\n并视需要新增文件夹。\n然后Arduino将停止以第三人称提及自己。" +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1628,6 +1799,13 @@ msgstr "越南语" msgid "Visit Arduino.cc" msgstr "访问Arduino.cc" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "" + #: Base.java:2128 msgid "Warning" msgstr "警告" @@ -1796,10 +1974,6 @@ msgstr "环境" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "http://github.com/arduino/Arduino/issues" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1829,17 +2003,6 @@ msgstr "名称是空的" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "removeCode: 内部错误...找不到代码" - #: Editor.java:932 msgid "serialMenu is null" msgstr "" @@ -1850,6 +2013,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "未知的选项: {0}" + #: Preferences.java:391 msgid "upload" msgstr "上传" @@ -1873,3 +2041,45 @@ msgstr "{0} | Arduino {1}" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "{0}: 未知的结构" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "{0}: 未知的版型" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "{0}: 未知的软件包" diff --git a/arduino-core/src/processing/app/i18n/Resources_zh_CN.properties b/arduino-core/src/processing/app/i18n/Resources_zh_CN.properties index 28ba1319c..8c4859841 100644 --- a/arduino-core/src/processing/app/i18n/Resources_zh_CN.properties +++ b/arduino-core/src/processing/app/i18n/Resources_zh_CN.properties @@ -17,6 +17,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=\uff08\u53ea\u80fd\u5728Arduino\u672a\u8fd0\u884c\u65f6\u8fdb\u884c\u7f16\u8f91\uff09 +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 .pde\ ->\ .ino=.pde-> .ino @@ -53,9 +56,23 @@ Add\ File...=\u6dfb\u52a0\u6587\u4ef6... #: Base.java:963 Add\ Library...=\u6dfb\u52a0\u5e93 +#: ../../../processing/app/Preferences.java:96 +Albanian=\u963f\u5c14\u5df4\u5c3c\u4e9a\u8bed + #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=\u5728\u4fee\u590d\u6587\u4ef6\u7f16\u7801\u65f6\u53d1\u751f\u4e00\u4e2a\u9519\u8bef\u3002\n\u8bf7\u4e0d\u8981\u4fdd\u5b58\u8fd9\u4e2a sketch \u5426\u5219\u53ef\u80fd\u4f1a\u8986\u76d6\u6e90\u6587\u4ef6\u3002\n\u4f7f\u7528\u201c\u6253\u5f00\u201d\u547d\u4ee4\u91cd\u65b0\u6253\u5f00 sketch \u518d\u8bd5\u4e00\u6b21\u3002\n +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=\u8f7d\u5165\u7279\u5b9a\u5e73\u53f0\u4ee3\u7801\u65f6\n\u53d1\u751f\u672a\u77e5\u9519\u8bef\u3002 @@ -105,12 +122,33 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u786e\u5b9a\u8981\u5220\u9664"{0} #: Sketch.java:587 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u786e\u5b9a\u8981\u5220\u9664\u6b64\u8349\u7a3f\u7801\uff1f +#: ../../../processing/app/Base.java:356 +!Argument\ required\ for\ --board= + +#: ../../../processing/app/Base.java:370 +!Argument\ required\ for\ --curdir= + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +!Argument\ required\ for\ --port= + +#: ../../../processing/app/Base.java:377 +!Argument\ required\ for\ --pref= + +#: ../../../processing/app/Base.java:384 +!Argument\ required\ for\ --preferences-file= + #: ../../../processing/app/Preferences.java:137 Armenian=\u4e9a\u7f8e\u5c3c\u4e9a\u8bed #: ../../../processing/app/Preferences.java:138 Asturian=\u963f\u65af\u56fe\u91cc\u4e9a\u65af\u8bed +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 Auto\ Format=\u81ea\u52a8\u683c\u5f0f\u5316 @@ -142,6 +180,12 @@ Autoscroll=\u81ea\u52a8\u6eda\u5c4f #: Editor.java:2136 Bad\ file\ selected=\u9009\u62e9\u7684\u6587\u4ef6\u6709\u95ee\u9898 +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +!Basque= + #: ../../../processing/app/Preferences.java:139 Belarusian=\u767d\u4fc4\u7f57\u65af\u8bed @@ -168,6 +212,9 @@ Browse=\u6d4f\u89c8 #: Sketch.java:1392 Sketch.java:1423 Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u5efa\u7acb\u7684\u6587\u4ef6\u5939\u6d88\u5931\u4e86\u6216\u8005\u662f\u5b83\u4e0d\u53ef\u5199 +#: ../../../processing/app/Sketch.java:1530 +!Build\ options\ changed,\ rebuilding\ all= + #: ../../../processing/app/Preferences.java:80 Bulgarian=\u4fdd\u52a0\u5229\u4e9a\u8bed @@ -180,8 +227,13 @@ Burn\ Bootloader=\u70e7\u5f55\u5f15\u5bfc\u7a0b\u5e8f #: Editor.java:2504 !Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...= -#: ../../../processing/app/Base.java:368 -Can't\ open\ source\ sketch\!=\u65e0\u6cd5\u6253\u5f00\u6e90 sketch\uff01 +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 Canadian\ French=\u52a0\u62ff\u5927\u6cd5\u8bed @@ -193,6 +245,9 @@ Cancel=\u53d6\u6d88 #: Sketch.java:455 Cannot\ Rename=\u65e0\u6cd5\u91cd\u547d\u540d +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 Carriage\ return=\u56de\u8f66 @@ -226,10 +281,6 @@ Close=\u5173\u95ed #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=\u6ce8\u91ca/\u53d6\u6d88\u6ce8\u91ca -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=\u7f16\u8bd1\u9519\u8bef\uff0c\u8bf7\u63d0\u4ea4\u6b64\u4ee3\u7801\u5230{0} - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=\u6b63\u5728\u7f16\u8bd1 sketch... @@ -305,9 +356,8 @@ Could\ not\ re-save\ sketch=\u4e0d\u80fd\u91cd\u65b0\u4fdd\u5b58 sketch #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u65e0\u6cd5\u8bfb\u53d6\u9884\u8bbe\u8bbe\u7f6e\u3002\n\u4f60\u5fc5\u987b\u91cd\u65b0\u5b89\u88c5Arduino\u3002 -#: Preferences.java:258 -#, java-format -Could\ not\ read\ preferences\ from\ {0}=\u65e0\u6cd5\u4ece{0}\u8bfb\u53d6\u9996\u9009\u9879 +#: ../../../processing/app/Sketch.java:1525 +!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= #: Base.java:2482 #, java-format @@ -330,6 +380,9 @@ Could\ not\ rename\ the\ sketch.\ (2)=\u65e0\u6cd5\u91cd\u547d\u540d\u8349\u7a3f #, java-format Could\ not\ replace\ {0}=\u65e0\u6cd5\u66ff\u6362{0} +#: ../../../processing/app/Sketch.java:1579 +!Could\ not\ write\ build\ preferences\ file= + #: tools/Archiver.java:74 Couldn't\ archive\ sketch=\u65e0\u6cd5\u5f52\u6863 sketch @@ -378,12 +431,19 @@ Done\ Saving.=\u4fdd\u5b58\u5b8c\u6210\u3002 #: Editor.java:2510 Done\ burning\ bootloader.=\u70e7\u5f55\u5f15\u5bfc\u7a0b\u5e8f\u5b8c\u6210\u3002 +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=\u7f16\u8bd1\u5b8c\u6210\u3002 #: Editor.java:2564 Done\ printing.=\u8f93\u51fa\u5b8c\u6210\u3002 +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=\u4e0a\u4f20\u6210\u529f\u3002 @@ -462,6 +522,9 @@ Error\ while\ burning\ bootloader.=\u70e7\u5f55\u5f15\u5bfc\u7a0b\u5e8f\u51fa\u9 #: ../../../processing/app/Editor.java:2555 !Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=\u8f7d\u5165\u4ee3\u7801{0}\u65f6\u53d1\u751f\u9519\u8bef @@ -469,10 +532,21 @@ Error\ while\ loading\ code\ {0}=\u8f7d\u5165\u4ee3\u7801{0}\u65f6\u53d1\u751f\u #: Editor.java:2567 Error\ while\ printing.=\u5728\u8f93\u51fa\u8fc7\u7a0b\u4e2d\u53d1\u751f\u9519\u8bef\u3002 +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 !Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 Estonian=\u7231\u6c99\u5c3c\u4e9a\u8bed @@ -488,6 +562,10 @@ Examples=\u793a\u4f8b #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +!Failed\ to\ open\ sketch\:\ "{0}"= + #: Editor.java:491 File=\u6587\u4ef6 @@ -522,8 +600,9 @@ Fix\ Encoding\ &\ Reload=\u7f16\u7801\u4fee\u6b63\u4e0e\u91cd\u8f7d #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=\u5b89\u88c5\u5e93\u7684\u8be6\u7ec6\u4fe1\u606f\uff0c\u8bf7\u53c2\u9605\uff1a http\://arduino.cc/en/Guide/Libraries\\n -#: debug/BasicUploader.java:80 -!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ = +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=\u6cd5\u8bed @@ -627,8 +706,8 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=\u5e93\u5df #: Preferences.java:106 Lithuaninan=\u7acb\u9676\u5b9b\u8bed -#: ../../../processing/app/Sketch.java:1660 -Low\ memory\ available,\ stability\ problems\ may\ occur=\u53ef\u7528\u5185\u5b58\u504f\u4f4e\uff0c\u53ef\u80fd\u4f1a\u5bfc\u81f4\u7a33\u5b9a\u6027\u95ee\u9898 +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 Marathi=\u9a6c\u62c9\u5730\u8bed @@ -639,12 +718,24 @@ Message=\u4fe1\u606f #: ../../../processing/app/preproc/PdePreprocessor.java:412 !Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\u5728\u9996\u9009\u9879\u4e2d\u8fd8\u6709\u66f4\u591a\u9009\u9879\u53ef\u4ee5\u76f4\u63a5\u7f16\u8f91 #: Editor.java:2156 Moving=\u79fb\u52a8\u4e2d +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +!Must\ specify\ exactly\ one\ sketch\ file= + +#: ../../../processing/app/Preferences.java:158 +!N'Ko= + #: Sketch.java:282 Name\ for\ new\ file\:=\u65b0\u6587\u4ef6\u7684\u540d\u5b57 @@ -672,12 +763,18 @@ Next\ Tab=\u4e0b\u4e00\u4e2a\u6807\u7b7e #: Preferences.java:78 UpdateCheck.java:108 No=\u5426 +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u672a\u9009\u62e9\u677f\uff1a\u8bf7\u70b9\u51fb\u201c\u5de5\u5177>\u677f\u201d\u83dc\u5355\u9009\u62e9\u4e00\u4e2a\u677f\u5b50\u3002 #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=\u65e0\u9700\u81ea\u52a8\u683c\u5f0f\u5316\u3002 +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=\u6ca1\u6709\u6587\u4ef6\u88ab\u6dfb\u52a0\u5230 sketch\u3002 @@ -687,6 +784,9 @@ No\ launcher\ available=\u65e0\u53ef\u7528\u7684\u542f\u52a8\u7a0b\u5e8f #: SerialMonitor.java:112 No\ line\ ending=\u6ca1\u6709\u7ed3\u675f\u7b26 +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u8bf4\u771f\u7684\uff0c\u4f60\u8be5\u51fa\u53bb\u547c\u5438\u65b0\u9c9c\u7a7a\u6c14\u4e86\u3002 @@ -694,6 +794,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u8bf4\u771f\u7684\uff0c\u4f #, java-format No\ reference\ available\ for\ "{0}"=\u5bf9 "{0}" \u65e0\u53ef\u7528\u7684\u53c2\u8003\u6587\u4ef6 +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +!No\ valid\ code\ files\ found= + #: ../../../processing/app/Base.java:309 No\ valid\ configured\ cores\ found\!\ Exiting...=\u672a\u53d1\u73b0\u6709\u6548\u7684\u914d\u7f6e\u6838\u5fc3\uff01\u9000\u51fa... @@ -720,6 +830,9 @@ OK=\u597d #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=\u4e00\u4e2a\u6587\u4ef6\u88ab\u6dfb\u52a0\u5230 sketch\u3002 +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=\u6253\u5f00 @@ -747,12 +860,22 @@ Paste=\u7c98\u8d34 #: Preferences.java:109 Persian=\u6ce2\u65af\u8bed +#: ../../../processing/app/Preferences.java:161 +!Persian\ (Iran)= + #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=\u8bf7\u5229\u7528 \u201cSketch>\u5bfc\u5165\u5e93\u201d \u83dc\u5355\u5bfc\u5165 SPI \u5e93\u3002 +#: ../../../processing/app/debug/Compiler.java:529 +Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=\u8bf7\u70b9\u51fb\u201c\u8349\u7a3f> \u5bfc\u5165\u5e93\u201d\u5bfc\u5165Wire \u5e93\u3002 + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=\u8bf7\u5b89\u88c5 JDK 1.5 \u6216\u66f4\u65b0\u7684\u7248\u672c +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 Polish=\u6ce2\u5170\u8bed @@ -874,9 +997,15 @@ Save\ changes\ to\ "{0}"?\ \ =\u4fdd\u5b58\u66f4\u6539\u5230 "{0}"\uff1f #: Sketch.java:825 Save\ sketch\ folder\ as...=\u8349\u7a3f\u7801\u6587\u4ef6\u5939\u53e6\u5b58\u4e3a +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=\u4fdd\u5b58\u4e2d... +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=\u4e3a\u8349\u7a3f\u7801\u9009\u53d6\uff08\u6216\u65b0\u589e\uff09\u6587\u4ef6\u5939... @@ -901,14 +1030,6 @@ Send=\u53d1\u9001 #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=\u4e32\u53e3\u76d1\u89c6\u5668 -#: Serial.java:174 -#, java-format -!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.= - -#: Serial.java:121 -#, java-format -!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.= - #: Serial.java:194 #, java-format !Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?= @@ -963,6 +1084,9 @@ Sketchbook\ folder\ disappeared=\u4ee3\u7801\u8349\u7a3f\u7bb1\u6d88\u5931 #: Preferences.java:315 Sketchbook\ location\:=\u8349\u7a3f\u7801\u4f4d\u7f6e +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 Sketches\ (*.ino,\ *.pde)=Sketches (*.ino, *.pde) @@ -997,6 +1121,9 @@ Tamil=\u6cf0\u7c73\u5c14\u8bed #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=\u4e0d\u518d\u652f\u6301 \u2018BYTE\u2019 \u5173\u952e\u5b57\u3002 +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Client class \u5df2\u6539\u540d\u4e3a EthernetClient. @@ -1033,12 +1160,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=sketch \u6587\u4ef6\u5939\u6d88\u5931\u4e86\uff0c\n\u662f\u5426\u5c1d\u8bd5\u91cd\u65b0\u4fdd\u5b58\u5728\u76f8\u540c\u4f4d\u7f6e\uff0c\n\u9664\u4ee3\u7801\u5916\u6240\u6709\u7684\u4e1c\u897f\u90fd\u4f1a\u4e22\u5931\u3002 -#: Sketch.java:2018 -The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=sketch \u6587\u4ef6\u540d\u65e0\u6548\uff0csketch \u6587\u4ef6\u540d\u4ec5\u53ef\u4ee5\u5305\u542b\u6709\nASCII \u652f\u6301\u7684\u5b57\u7b26\u548c\u6570\u5b57(\u4e0d\u53ef\u4ee5\u4ee5\u6570\u5b57\u5f00\u5934)\uff0c\n\u4e14\u652f\u6301\u7684\u6700\u5927\u6587\u4ef6\u540d\u957f\u5ea6\u4e3a64\u5b57\u7b26\u3002 +#: ../../../processing/app/Sketch.java:2028 +!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=\u8349\u7a3f\u7801\u6587\u4ef6\u5939\u5df2\u4e0d\u5b58\u5728\uff0c\nArduino\u5c06\u4f7f\u7528\u9884\u8bbe\u7684\u6587\u4ef6\u5939\u4f4d\u7f6e\uff0c\n\u5e76\u89c6\u9700\u8981\u65b0\u589e\u6587\u4ef6\u5939\u3002\n\u7136\u540eArduino\u5c06\u505c\u6b62\u4ee5\u7b2c\u4e09\u4eba\u79f0\u63d0\u53ca\u81ea\u5df1\u3002 +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u6b64\u6587\u4ef6\u5df2\u7ecf\u590d\u5236\u5230\u4f60\u60f3\u8981\n\u590d\u5236\u5230\u7684\u5730\u65b9\u4e86\u3002\u6211\u7edd\u5bf9\u4e0d\u4f1a\n\u60f3\u8981\u505a\u4e00\u4e2a\u65e0\u6240\u4e8b\u4e8b\u7684\u4eba\u3002 @@ -1142,6 +1272,10 @@ Vietnamese=\u8d8a\u5357\u8bed #: Editor.java:1105 Visit\ Arduino.cc=\u8bbf\u95eeArduino.cc +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= + #: Base.java:2128 Warning=\u8b66\u544a @@ -1240,9 +1374,6 @@ environment=\u73af\u5883 #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1265,13 +1396,6 @@ name\ is\ null=\u540d\u79f0\u662f\u7a7a\u7684 #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -!readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}= - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: \u5185\u90e8\u9519\u8bef...\u627e\u4e0d\u5230\u4ee3\u7801 - #: Editor.java:932 !serialMenu\ is\ null= @@ -1279,6 +1403,10 @@ removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: \u5185\u90e #, java-format !the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected= +#: ../../../processing/app/Base.java:389 +#, java-format +unknown\ option\:\ {0}=\u672a\u77e5\u7684\u9009\u9879\: {0} + #: Preferences.java:391 upload=\u4e0a\u4f20 @@ -1297,3 +1425,35 @@ upload=\u4e0a\u4f20 #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= + +#: ../../../processing/app/Base.java:476 +#, java-format +!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= + +#: ../../../processing/app/Base.java:509 +#, java-format +!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= + +#: ../../../processing/app/Base.java:507 +#, java-format +!{0}\:\ Invalid\ option\ for\ board\ "{1}"= + +#: ../../../processing/app/Base.java:502 +#, java-format +!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= + +#: ../../../processing/app/Base.java:486 +#, java-format +{0}\:\ Unknown\ architecture={0}\: \u672a\u77e5\u7684\u7ed3\u6784 + +#: ../../../processing/app/Base.java:491 +#, java-format +{0}\:\ Unknown\ board={0}\: \u672a\u77e5\u7684\u7248\u578b + +#: ../../../processing/app/Base.java:481 +#, java-format +{0}\:\ Unknown\ package={0}\: \u672a\u77e5\u7684\u8f6f\u4ef6\u5305 diff --git a/arduino-core/src/processing/app/i18n/Resources_zh_HK.po b/arduino-core/src/processing/app/i18n/Resources_zh_HK.po index d087603f0..5be9e803e 100644 --- a/arduino-core/src/processing/app/i18n/Resources_zh_HK.po +++ b/arduino-core/src/processing/app/i18n/Resources_zh_HK.po @@ -33,6 +33,12 @@ msgstr "" msgid "(edit only when Arduino is not running)" msgstr "" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr "" @@ -91,6 +97,10 @@ msgstr "" msgid "Add Library..." msgstr "" +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -98,6 +108,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -176,6 +200,30 @@ msgstr "" msgid "Are you sure you want to delete this sketch?" msgstr "" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "" @@ -184,6 +232,10 @@ msgstr "" msgid "Asturian" msgstr "" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "" @@ -225,6 +277,14 @@ msgstr "" msgid "Bad file selected" msgstr "" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "" @@ -261,6 +321,10 @@ msgstr "" msgid "Build folder disappeared or could not be written" msgstr "" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "" @@ -277,8 +341,14 @@ msgstr "" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "" -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" msgstr "" #: ../../../processing/app/Preferences.java:92 @@ -294,6 +364,10 @@ msgstr "" msgid "Cannot Rename" msgstr "" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "" @@ -338,11 +412,6 @@ msgstr "" msgid "Comment/Uncomment" msgstr "" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "" @@ -450,9 +519,8 @@ msgid "" "You'll need to reinstall Arduino." msgstr "" -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" msgstr "" #: Base.java:2482 @@ -482,6 +550,10 @@ msgstr "" msgid "Could not replace {0}" msgstr "" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "" @@ -551,6 +623,11 @@ msgstr "" msgid "Done burning bootloader." msgstr "" +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "" @@ -559,6 +636,10 @@ msgstr "" msgid "Done printing." msgstr "" +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "" @@ -662,6 +743,10 @@ msgstr "" msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -671,11 +756,25 @@ msgstr "" msgid "Error while printing." msgstr "" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "" @@ -696,6 +795,11 @@ msgstr "" msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "" + #: Editor.java:491 msgid "File" msgstr "" @@ -743,8 +847,9 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" msgstr "" #: Preferences.java:95 @@ -893,8 +998,8 @@ msgstr "" msgid "Lithuaninan" msgstr "" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: Preferences.java:107 @@ -909,6 +1014,10 @@ msgstr "" msgid "Missing the */ from the end of a /* comment */" msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "" @@ -917,6 +1026,18 @@ msgstr "" msgid "Moving" msgstr "" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "" + #: Sketch.java:282 msgid "Name for new file:" msgstr "" @@ -953,6 +1074,10 @@ msgstr "" msgid "No" msgstr "" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "" @@ -961,6 +1086,10 @@ msgstr "" msgid "No changes necessary for Auto Format." msgstr "" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "" @@ -973,6 +1102,10 @@ msgstr "" msgid "No line ending" msgstr "" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "" @@ -982,6 +1115,19 @@ msgstr "" msgid "No reference available for \"{0}\"" msgstr "" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "" @@ -1018,6 +1164,10 @@ msgstr "" msgid "One file added to the sketch." msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "" @@ -1054,14 +1204,27 @@ msgstr "" msgid "Persian" msgstr "" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "" +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "" + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "" @@ -1224,10 +1387,18 @@ msgstr "" msgid "Save sketch folder as..." msgstr "" +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "" +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "" @@ -1260,20 +1431,6 @@ msgstr "" msgid "Serial Monitor" msgstr "" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "" - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "" - #: Serial.java:194 #, java-format msgid "" @@ -1353,6 +1510,10 @@ msgstr "" msgid "Sketchbook location:" msgstr "" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "" @@ -1403,6 +1564,10 @@ msgstr "" msgid "The 'BYTE' keyword is no longer supported." msgstr "" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "" @@ -1470,11 +1635,11 @@ msgid "" "but anything besides the code will be lost." msgstr "" -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." +"They should also be less than 64 characters long." msgstr "" #: Base.java:259 @@ -1486,6 +1651,12 @@ msgid "" "himself in the third person." msgstr "" +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1628,6 +1799,13 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "" + #: Base.java:2128 msgid "Warning" msgstr "" @@ -1796,10 +1974,6 @@ msgstr "" msgid "http://arduino.cc/" msgstr "" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "" @@ -1829,17 +2003,6 @@ msgstr "" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "" - #: Editor.java:932 msgid "serialMenu is null" msgstr "" @@ -1850,6 +2013,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "" + #: Preferences.java:391 msgid "upload" msgstr "" @@ -1873,3 +2041,45 @@ msgstr "" #, java-format msgid "{0}.html" msgstr "" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "" diff --git a/arduino-core/src/processing/app/i18n/Resources_zh_HK.properties b/arduino-core/src/processing/app/i18n/Resources_zh_HK.properties index 88a444f0e..f0e40907f 100644 --- a/arduino-core/src/processing/app/i18n/Resources_zh_HK.properties +++ b/arduino-core/src/processing/app/i18n/Resources_zh_HK.properties @@ -17,6 +17,9 @@ #: Preferences.java:478 !(edit\ only\ when\ Arduino\ is\ not\ running)= +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 !.pde\ ->\ .ino= @@ -53,9 +56,23 @@ #: Base.java:963 !Add\ Library...= +#: ../../../processing/app/Preferences.java:96 +!Albanian= + #: tools/FixEncoding.java:77 !An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n= +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 !An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.= @@ -105,12 +122,33 @@ #: Sketch.java:587 !Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?= +#: ../../../processing/app/Base.java:356 +!Argument\ required\ for\ --board= + +#: ../../../processing/app/Base.java:370 +!Argument\ required\ for\ --curdir= + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +!Argument\ required\ for\ --port= + +#: ../../../processing/app/Base.java:377 +!Argument\ required\ for\ --pref= + +#: ../../../processing/app/Base.java:384 +!Argument\ required\ for\ --preferences-file= + #: ../../../processing/app/Preferences.java:137 !Armenian= #: ../../../processing/app/Preferences.java:138 !Asturian= +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 !Auto\ Format= @@ -142,6 +180,12 @@ #: Editor.java:2136 !Bad\ file\ selected= +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +!Basque= + #: ../../../processing/app/Preferences.java:139 !Belarusian= @@ -168,6 +212,9 @@ #: Sketch.java:1392 Sketch.java:1423 !Build\ folder\ disappeared\ or\ could\ not\ be\ written= +#: ../../../processing/app/Sketch.java:1530 +!Build\ options\ changed,\ rebuilding\ all= + #: ../../../processing/app/Preferences.java:80 !Bulgarian= @@ -180,8 +227,13 @@ #: Editor.java:2504 !Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...= -#: ../../../processing/app/Base.java:368 -!Can't\ open\ source\ sketch\!= +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 !Canadian\ French= @@ -193,6 +245,9 @@ #: Sketch.java:455 !Cannot\ Rename= +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 !Carriage\ return= @@ -226,10 +281,6 @@ #: Editor.java:1208 Editor.java:2749 !Comment/Uncomment= -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -!Compiler\ error,\ please\ submit\ this\ code\ to\ {0}= - #: Sketch.java:1608 Editor.java:1890 !Compiling\ sketch...= @@ -305,9 +356,8 @@ #: Preferences.java:219 !Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= -#: Preferences.java:258 -#, java-format -!Could\ not\ read\ preferences\ from\ {0}= +#: ../../../processing/app/Sketch.java:1525 +!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= #: Base.java:2482 #, java-format @@ -330,6 +380,9 @@ #, java-format !Could\ not\ replace\ {0}= +#: ../../../processing/app/Sketch.java:1579 +!Could\ not\ write\ build\ preferences\ file= + #: tools/Archiver.java:74 !Couldn't\ archive\ sketch= @@ -378,12 +431,19 @@ #: Editor.java:2510 !Done\ burning\ bootloader.= +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 !Done\ compiling.= #: Editor.java:2564 !Done\ printing.= +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 !Done\ uploading.= @@ -462,6 +522,9 @@ #: ../../../processing/app/Editor.java:2555 !Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format !Error\ while\ loading\ code\ {0}= @@ -469,10 +532,21 @@ #: Editor.java:2567 !Error\ while\ printing.= +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 !Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 !Estonian= @@ -488,6 +562,10 @@ #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +!Failed\ to\ open\ sketch\:\ "{0}"= + #: Editor.java:491 !File= @@ -522,8 +600,9 @@ FAQ.html=FAQ.html #: Base.java:1851 !For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n= -#: debug/BasicUploader.java:80 -!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ = +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 !French= @@ -627,8 +706,8 @@ Guide_Windows.html=Guide_Windows.html #: Preferences.java:106 !Lithuaninan= -#: ../../../processing/app/Sketch.java:1660 -!Low\ memory\ available,\ stability\ problems\ may\ occur= +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 !Marathi= @@ -639,12 +718,24 @@ Guide_Windows.html=Guide_Windows.html #: ../../../processing/app/preproc/PdePreprocessor.java:412 !Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 !More\ preferences\ can\ be\ edited\ directly\ in\ the\ file= #: Editor.java:2156 !Moving= +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +!Must\ specify\ exactly\ one\ sketch\ file= + +#: ../../../processing/app/Preferences.java:158 +!N'Ko= + #: Sketch.java:282 !Name\ for\ new\ file\:= @@ -672,12 +763,18 @@ Guide_Windows.html=Guide_Windows.html #: Preferences.java:78 UpdateCheck.java:108 !No= +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 !No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.= #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 !No\ changes\ necessary\ for\ Auto\ Format.= +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 !No\ files\ were\ added\ to\ the\ sketch.= @@ -687,6 +784,9 @@ Guide_Windows.html=Guide_Windows.html #: SerialMonitor.java:112 !No\ line\ ending= +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 !No\ really,\ time\ for\ some\ fresh\ air\ for\ you.= @@ -694,6 +794,16 @@ Guide_Windows.html=Guide_Windows.html #, java-format !No\ reference\ available\ for\ "{0}"= +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +!No\ valid\ code\ files\ found= + #: ../../../processing/app/Base.java:309 !No\ valid\ configured\ cores\ found\!\ Exiting...= @@ -720,6 +830,9 @@ Guide_Windows.html=Guide_Windows.html #: Sketch.java:992 Editor.java:376 !One\ file\ added\ to\ the\ sketch.= +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 !Open= @@ -747,12 +860,22 @@ Open...=\u958b\u555f... #: Preferences.java:109 !Persian= +#: ../../../processing/app/Preferences.java:161 +!Persian\ (Iran)= + #: debug/Compiler.java:408 !Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= +#: ../../../processing/app/debug/Compiler.java:529 +!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= + #: Base.java:239 !Please\ install\ JDK\ 1.5\ or\ later= +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 !Polish= @@ -874,9 +997,15 @@ Quit=\u95dc\u9589 #: Sketch.java:825 !Save\ sketch\ folder\ as...= +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 !Saving...= +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 !Select\ (or\ create\ new)\ folder\ for\ sketches...= @@ -901,14 +1030,6 @@ Quit=\u95dc\u9589 #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 !Serial\ Monitor= -#: Serial.java:174 -#, java-format -!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.= - -#: Serial.java:121 -#, java-format -!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.= - #: Serial.java:194 #, java-format !Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?= @@ -963,6 +1084,9 @@ Quit=\u95dc\u9589 #: Preferences.java:315 !Sketchbook\ location\:= +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 !Sketches\ (*.ino,\ *.pde)= @@ -997,6 +1121,9 @@ Quit=\u95dc\u9589 #: debug/Compiler.java:414 !The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.= +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 !The\ Client\ class\ has\ been\ renamed\ EthernetClient.= @@ -1033,12 +1160,15 @@ Quit=\u95dc\u9589 #: Sketch.java:1755 !The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.= -#: Sketch.java:2018 -!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.= +#: ../../../processing/app/Sketch.java:2028 +!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= #: Base.java:259 !The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.= +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 !This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= @@ -1142,6 +1272,10 @@ Quit=\u95dc\u9589 #: Editor.java:1105 !Visit\ Arduino.cc= +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= + #: Base.java:2128 !Warning= @@ -1240,9 +1374,6 @@ Quit=\u95dc\u9589 #: Editor.java:1108 !http\://arduino.cc/= -#: ../../../processing/app/debug/Compiler.java:49 -!http\://github.com/arduino/Arduino/issues= - #: UpdateCheck.java:118 !http\://www.arduino.cc/en/Main/Software= @@ -1265,13 +1396,6 @@ index.html=index.html #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -!readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}= - -#: Sketch.java:647 -!removeCode\:\ internal\ error..\ could\ not\ find\ code= - #: Editor.java:932 !serialMenu\ is\ null= @@ -1279,6 +1403,10 @@ platforms.html=platforms.html #, java-format !the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected= +#: ../../../processing/app/Base.java:389 +#, java-format +!unknown\ option\:\ {0}= + #: Preferences.java:391 !upload= @@ -1297,3 +1425,35 @@ platforms.html=platforms.html #: Editor.java:1874 #, java-format !{0}.html= + +#: ../../../processing/app/Base.java:519 +#, java-format +!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= + +#: ../../../processing/app/Base.java:476 +#, java-format +!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= + +#: ../../../processing/app/Base.java:509 +#, java-format +!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= + +#: ../../../processing/app/Base.java:507 +#, java-format +!{0}\:\ Invalid\ option\ for\ board\ "{1}"= + +#: ../../../processing/app/Base.java:502 +#, java-format +!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= + +#: ../../../processing/app/Base.java:486 +#, java-format +!{0}\:\ Unknown\ architecture= + +#: ../../../processing/app/Base.java:491 +#, java-format +!{0}\:\ Unknown\ board= + +#: ../../../processing/app/Base.java:481 +#, java-format +!{0}\:\ Unknown\ package= diff --git a/arduino-core/src/processing/app/i18n/Resources_zh_TW.Big5.po b/arduino-core/src/processing/app/i18n/Resources_zh_TW.Big5.po index 9d9c5db4f..ece94713f 100644 --- a/arduino-core/src/processing/app/i18n/Resources_zh_TW.Big5.po +++ b/arduino-core/src/processing/app/i18n/Resources_zh_TW.Big5.po @@ -33,6 +33,12 @@ msgstr "'Mouse'只被Arduino Leonardo所支援" msgid "(edit only when Arduino is not running)" msgstr "(只能在未執行Arduino時進行編輯)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -91,6 +97,10 @@ msgstr "加入檔案..." msgid "Add Library..." msgstr "匯入程式庫..." +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "阿爾巴尼亞語" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -98,6 +108,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "試著修正檔案編碼時發生錯誤。\n請不要試著儲存此草稿碼,因為可能會蓋掉\n舊版本,請以「開啟」重新開啟草稿碼然後再試一次\n" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -176,6 +200,30 @@ msgstr "你確定想要刪除\"{0}\"嗎?" msgid "Are you sure you want to delete this sketch?" msgstr "你確定想要刪除此草稿碼嗎?" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "亞美尼亞語" @@ -184,6 +232,10 @@ msgstr "亞美尼亞語" msgid "Asturian" msgstr "阿斯圖里亞斯語" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "自動格式化" @@ -225,6 +277,14 @@ msgstr "錯誤行號:{0}" msgid "Bad file selected" msgstr "選擇了不好的檔案" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "巴斯克語" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "白俄羅斯語" @@ -261,6 +321,10 @@ msgstr "瀏覽" msgid "Build folder disappeared or could not be written" msgstr "建置資料夾消失了、或無法被寫入" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "建置選項已變更,重建所有" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "保加利亞語" @@ -277,9 +341,15 @@ msgstr "燒錄Bootloader" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "燒錄bootloader到板子裡(可能需要幾分鐘)..." -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" -msgstr "無法開啟原始草稿碼!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" +msgstr "" #: ../../../processing/app/Preferences.java:92 msgid "Canadian French" @@ -294,6 +364,10 @@ msgstr "取消" msgid "Cannot Rename" msgstr "無法重新命名" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "CR(carriage return)" @@ -338,11 +412,6 @@ msgstr "關閉" msgid "Comment/Uncomment" msgstr "註解∕移除註解" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "編譯器錯誤,請將此程式碼提交到{0}" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "編譯草稿碼中..." @@ -450,10 +519,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "無法讀取預設設定。\n你必須重新安裝Arduino。" -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "無法從{0}讀取偏好設定" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "" #: Base.java:2482 #, java-format @@ -482,6 +550,10 @@ msgstr "無法重新命名草稿碼。(2)" msgid "Could not replace {0}" msgstr "無法取代{0}" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "無法寫入建置的偏好設定檔案" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "無法封存草稿碼" @@ -551,6 +623,11 @@ msgstr "儲存完畢" msgid "Done burning bootloader." msgstr "bootloader燒錄完畢。" +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "編譯完畢。" @@ -559,6 +636,10 @@ msgstr "編譯完畢。" msgid "Done printing." msgstr "列印完畢。" +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "上傳完畢。" @@ -662,6 +743,10 @@ msgstr "燒錄bootloader時發生錯誤。" msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -671,11 +756,25 @@ msgstr "載入程式碼{0}時發生錯誤" msgid "Error while printing." msgstr "列印時發生錯誤。" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "愛沙尼亞語" @@ -696,6 +795,11 @@ msgstr "匯出動作已取消,必須先儲存變更。" msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "無法開啟草稿: \"{0}\"" + #: Editor.java:491 msgid "File" msgstr "檔案" @@ -743,9 +847,10 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "關於安裝程式庫的細節,請見http://arduino.cc/en/Guide/Libraries。\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " -msgstr "強迫重置,1200bps開啟∕關閉傳輸埠" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" +msgstr "" #: Preferences.java:95 msgid "French" @@ -893,9 +998,9 @@ msgstr "程式庫已加入,請檢查「匯入程式庫」選單" msgid "Lithuaninan" msgstr "立陶宛語" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" -msgstr "可用記憶體低下,可能發生穩定性問題" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." +msgstr "" #: Preferences.java:107 msgid "Marathi" @@ -909,6 +1014,10 @@ msgstr "訊息" msgid "Missing the */ from the end of a /* comment */" msgstr "" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "在偏好設定檔裡還有更多設定值可直接編輯" @@ -917,6 +1026,18 @@ msgstr "在偏好設定檔裡還有更多設定值可直接編輯" msgid "Moving" msgstr "移動中" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "" + #: Sketch.java:282 msgid "Name for new file:" msgstr "新檔案的名字:" @@ -953,6 +1074,10 @@ msgstr "下一個標籤" msgid "No" msgstr "否" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "沒有選擇板子;請從「工具>板子」選單裡選擇板子" @@ -961,6 +1086,10 @@ msgstr "沒有選擇板子;請從「工具>板子」選單裡選擇板子" msgid "No changes necessary for Auto Format." msgstr "自動格式化並不需要做出更動" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "沒有檔案被加入草稿碼中。" @@ -973,6 +1102,10 @@ msgstr "無可用的啟動者。" msgid "No line ending" msgstr "沒有行結尾" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "我說真的,該是呼吸新鮮空氣的時候了。" @@ -982,6 +1115,19 @@ msgstr "我說真的,該是呼吸新鮮空氣的時候了。" msgid "No reference available for \"{0}\"" msgstr "關於\"{0}\"並無參考文件" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "找不到有效並設定組態過的核心!離開..." @@ -1018,6 +1164,10 @@ msgstr "好" msgid "One file added to the sketch." msgstr "一支檔案已加入草稿碼。" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "開啟" @@ -1054,14 +1204,27 @@ msgstr "貼上" msgid "Persian" msgstr "波斯語" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "請從選單「草稿碼>匯入程式庫」匯入SPI程式庫。" +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "" + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "請安裝JDK 1.5或更新的版本" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "波蘭語" @@ -1224,10 +1387,18 @@ msgstr "儲存變更到\"{0}\"?" msgid "Save sketch folder as..." msgstr "儲存草稿碼資料夾為..." +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "儲存中..." +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "為草稿碼選取(或新增)資料夾..." @@ -1260,20 +1431,6 @@ msgstr "傳送" msgid "Serial Monitor" msgstr "序列埠監控視窗" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "序列埠''{0}''已被使用。請試著關閉任何可能使用該序列埠的軟體程式。" - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "序列埠''{0}''已處於使用狀態。請試著關閉任何可能使用該序列埠的軟體程式。" - #: Serial.java:194 #, java-format msgid "" @@ -1353,6 +1510,10 @@ msgstr "草稿碼簿資料夾不見了" msgid "Sketchbook location:" msgstr "草稿碼簿的位置:" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "" @@ -1403,6 +1564,10 @@ msgstr "泰米爾語" msgid "The 'BYTE' keyword is no longer supported." msgstr "關鍵字'BYTE'已不被支援" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "類別Client已改名為EthernetClient。" @@ -1470,12 +1635,12 @@ msgid "" "but anything besides the code will be lost." msgstr "草稿碼資料夾消失了。\n將試著在同一位置重新儲存,\n但除了程式碼以外的東西將遺失。" -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." -msgstr "必須修改草稿碼名稱。草稿碼名稱只能含有\nASCII字元與數字(不能以數字開頭)。\n名稱必須少於64個字元。" +"They should also be less than 64 characters long." +msgstr "" #: Base.java:259 msgid "" @@ -1486,6 +1651,12 @@ msgid "" "himself in the third person." msgstr "草稿碼簿資料夾已不存在。\nArduino將轉為使用預設的草稿碼簿位置,\n並且視需要新增資料夾。然後Arduino將\n停止以第三人稱提及自己。" +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1628,6 +1799,13 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "拜訪Arduino.cc" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "" + #: Base.java:2128 msgid "Warning" msgstr "警告" @@ -1796,10 +1974,6 @@ msgstr "開發環境" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "http://github.com/arduino/Arduino/issues" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1829,17 +2003,6 @@ msgstr "名稱是空的" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "對{0} bytes來說,readBytesUntil()緩衝區太小, 直到並包括字元{1}" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "removeCode:內部錯誤...找不到程式碼" - #: Editor.java:932 msgid "serialMenu is null" msgstr "serialMenu是空的" @@ -1850,6 +2013,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "選定的序列埠{0}不存在,或是你還沒連接板子。" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "" + #: Preferences.java:391 msgid "upload" msgstr "上傳" @@ -1873,3 +2041,45 @@ msgstr "{0} | Arduino {1}" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "" diff --git a/arduino-core/src/processing/app/i18n/Resources_zh_TW.Big5.properties b/arduino-core/src/processing/app/i18n/Resources_zh_TW.Big5.properties index 95c4637cd..fbde5aca4 100644 --- a/arduino-core/src/processing/app/i18n/Resources_zh_TW.Big5.properties +++ b/arduino-core/src/processing/app/i18n/Resources_zh_TW.Big5.properties @@ -17,6 +17,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=\uff08\u53ea\u80fd\u5728\u672a\u57f7\u884cArduino\u6642\u9032\u884c\u7de8\u8f2f\uff09 +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -53,9 +56,23 @@ Add\ File...=\u52a0\u5165\u6a94\u6848... #: Base.java:963 Add\ Library...=\u532f\u5165\u7a0b\u5f0f\u5eab... +#: ../../../processing/app/Preferences.java:96 +Albanian=\u963f\u723e\u5df4\u5c3c\u4e9e\u8a9e + #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=\u8a66\u8457\u4fee\u6b63\u6a94\u6848\u7de8\u78bc\u6642\u767c\u751f\u932f\u8aa4\u3002\n\u8acb\u4e0d\u8981\u8a66\u8457\u5132\u5b58\u6b64\u8349\u7a3f\u78bc\uff0c\u56e0\u70ba\u53ef\u80fd\u6703\u84cb\u6389\n\u820a\u7248\u672c\uff0c\u8acb\u4ee5\u300c\u958b\u555f\u300d\u91cd\u65b0\u958b\u555f\u8349\u7a3f\u78bc\u7136\u5f8c\u518d\u8a66\u4e00\u6b21\n +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=\u8a66\u8457\u70ba\u4f60\u7684\u6a5f\u5668\u8f09\u5165\u8207\u5e73\u53f0\u76f8\u95dc\u7684\u7a0b\u5f0f\u78bc\u6642\uff0c\n\u767c\u751f\u4e0d\u660e\u7684\u932f\u8aa4\u3002 @@ -105,12 +122,33 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u4f60\u78ba\u5b9a\u60f3\u8981\u52 #: Sketch.java:587 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u4f60\u78ba\u5b9a\u60f3\u8981\u522a\u9664\u6b64\u8349\u7a3f\u78bc\u55ce\uff1f +#: ../../../processing/app/Base.java:356 +!Argument\ required\ for\ --board= + +#: ../../../processing/app/Base.java:370 +!Argument\ required\ for\ --curdir= + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +!Argument\ required\ for\ --port= + +#: ../../../processing/app/Base.java:377 +!Argument\ required\ for\ --pref= + +#: ../../../processing/app/Base.java:384 +!Argument\ required\ for\ --preferences-file= + #: ../../../processing/app/Preferences.java:137 Armenian=\u4e9e\u7f8e\u5c3c\u4e9e\u8a9e #: ../../../processing/app/Preferences.java:138 Asturian=\u963f\u65af\u5716\u91cc\u4e9e\u65af\u8a9e +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 Auto\ Format=\u81ea\u52d5\u683c\u5f0f\u5316 @@ -142,6 +180,12 @@ Bad\ error\ line\:\ {0}=\u932f\u8aa4\u884c\u865f\uff1a{0} #: Editor.java:2136 Bad\ file\ selected=\u9078\u64c7\u4e86\u4e0d\u597d\u7684\u6a94\u6848 +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +Basque=\u5df4\u65af\u514b\u8a9e + #: ../../../processing/app/Preferences.java:139 Belarusian=\u767d\u4fc4\u7f85\u65af\u8a9e @@ -168,6 +212,9 @@ Browse=\u700f\u89bd #: Sketch.java:1392 Sketch.java:1423 Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u5efa\u7f6e\u8cc7\u6599\u593e\u6d88\u5931\u4e86\u3001\u6216\u7121\u6cd5\u88ab\u5beb\u5165 +#: ../../../processing/app/Sketch.java:1530 +Build\ options\ changed,\ rebuilding\ all=\u5efa\u7f6e\u9078\u9805\u5df2\u8b8a\u66f4\uff0c\u91cd\u5efa\u6240\u6709 + #: ../../../processing/app/Preferences.java:80 Bulgarian=\u4fdd\u52a0\u5229\u4e9e\u8a9e @@ -180,8 +227,13 @@ Burn\ Bootloader=\u71d2\u9304Bootloader #: Editor.java:2504 Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u71d2\u9304bootloader\u5230\u677f\u5b50\u88e1\uff08\u53ef\u80fd\u9700\u8981\u5e7e\u5206\u9418\uff09... -#: ../../../processing/app/Base.java:368 -Can't\ open\ source\ sketch\!=\u7121\u6cd5\u958b\u555f\u539f\u59cb\u8349\u7a3f\u78bc\uff01 +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 Canadian\ French=\u52a0\u62ff\u5927\u6cd5\u8a9e @@ -193,6 +245,9 @@ Cancel=\u53d6\u6d88 #: Sketch.java:455 Cannot\ Rename=\u7121\u6cd5\u91cd\u65b0\u547d\u540d +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 Carriage\ return=CR(carriage return) @@ -226,10 +281,6 @@ Close=\u95dc\u9589 #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=\u8a3b\u89e3\u2215\u79fb\u9664\u8a3b\u89e3 -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=\u7de8\u8b6f\u5668\u932f\u8aa4\uff0c\u8acb\u5c07\u6b64\u7a0b\u5f0f\u78bc\u63d0\u4ea4\u5230{0} - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=\u7de8\u8b6f\u8349\u7a3f\u78bc\u4e2d... @@ -305,9 +356,8 @@ Could\ not\ re-save\ sketch=\u7121\u6cd5\u91cd\u65b0\u5132\u5b58\u8349\u7a3f\u78 #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u7121\u6cd5\u8b80\u53d6\u9810\u8a2d\u8a2d\u5b9a\u3002\n\u4f60\u5fc5\u9808\u91cd\u65b0\u5b89\u88ddArduino\u3002 -#: Preferences.java:258 -#, java-format -Could\ not\ read\ preferences\ from\ {0}=\u7121\u6cd5\u5f9e{0}\u8b80\u53d6\u504f\u597d\u8a2d\u5b9a +#: ../../../processing/app/Sketch.java:1525 +!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= #: Base.java:2482 #, java-format @@ -330,6 +380,9 @@ Could\ not\ rename\ the\ sketch.\ (2)=\u7121\u6cd5\u91cd\u65b0\u547d\u540d\u8349 #, java-format Could\ not\ replace\ {0}=\u7121\u6cd5\u53d6\u4ee3{0} +#: ../../../processing/app/Sketch.java:1579 +Could\ not\ write\ build\ preferences\ file=\u7121\u6cd5\u5beb\u5165\u5efa\u7f6e\u7684\u504f\u597d\u8a2d\u5b9a\u6a94\u6848 + #: tools/Archiver.java:74 Couldn't\ archive\ sketch=\u7121\u6cd5\u5c01\u5b58\u8349\u7a3f\u78bc @@ -378,12 +431,19 @@ Done\ Saving.=\u5132\u5b58\u5b8c\u7562 #: Editor.java:2510 Done\ burning\ bootloader.=bootloader\u71d2\u9304\u5b8c\u7562\u3002 +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=\u7de8\u8b6f\u5b8c\u7562\u3002 #: Editor.java:2564 Done\ printing.=\u5217\u5370\u5b8c\u7562\u3002 +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=\u4e0a\u50b3\u5b8c\u7562\u3002 @@ -462,6 +522,9 @@ Error\ while\ burning\ bootloader.=\u71d2\u9304bootloader\u6642\u767c\u751f\u932 #: ../../../processing/app/Editor.java:2555 !Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=\u8f09\u5165\u7a0b\u5f0f\u78bc{0}\u6642\u767c\u751f\u932f\u8aa4 @@ -469,10 +532,21 @@ Error\ while\ loading\ code\ {0}=\u8f09\u5165\u7a0b\u5f0f\u78bc{0}\u6642\u767c\u #: Editor.java:2567 Error\ while\ printing.=\u5217\u5370\u6642\u767c\u751f\u932f\u8aa4\u3002 +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 !Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 Estonian=\u611b\u6c99\u5c3c\u4e9e\u8a9e @@ -488,6 +562,10 @@ Export\ canceled,\ changes\ must\ first\ be\ saved.=\u532f\u51fa\u52d5\u4f5c\u5d #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +Failed\ to\ open\ sketch\:\ "{0}"=\u7121\u6cd5\u958b\u555f\u8349\u7a3f\: "{0}" + #: Editor.java:491 File=\u6a94\u6848 @@ -522,8 +600,9 @@ Fix\ Encoding\ &\ Reload=\u4fee\u6b63\u7de8\u78bc\u4e26\u91cd\u65b0\u8f09\u5165 #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=\u95dc\u65bc\u5b89\u88dd\u7a0b\u5f0f\u5eab\u7684\u7d30\u7bc0\uff0c\u8acb\u898bhttp\://arduino.cc/en/Guide/Libraries\u3002\n -#: debug/BasicUploader.java:80 -Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =\u5f37\u8feb\u91cd\u7f6e\uff0c1200bps\u958b\u555f\u2215\u95dc\u9589\u50b3\u8f38\u57e0 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=\u6cd5\u8a9e @@ -627,8 +706,8 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=\u7a0b\u5f0 #: Preferences.java:106 Lithuaninan=\u7acb\u9676\u5b9b\u8a9e -#: ../../../processing/app/Sketch.java:1660 -Low\ memory\ available,\ stability\ problems\ may\ occur=\u53ef\u7528\u8a18\u61b6\u9ad4\u4f4e\u4e0b\uff0c\u53ef\u80fd\u767c\u751f\u7a69\u5b9a\u6027\u554f\u984c +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 Marathi=\u99ac\u62c9\u5730\u8a9e @@ -639,12 +718,24 @@ Message=\u8a0a\u606f #: ../../../processing/app/preproc/PdePreprocessor.java:412 !Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\u5728\u504f\u597d\u8a2d\u5b9a\u6a94\u88e1\u9084\u6709\u66f4\u591a\u8a2d\u5b9a\u503c\u53ef\u76f4\u63a5\u7de8\u8f2f #: Editor.java:2156 Moving=\u79fb\u52d5\u4e2d +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +!Must\ specify\ exactly\ one\ sketch\ file= + +#: ../../../processing/app/Preferences.java:158 +!N'Ko= + #: Sketch.java:282 Name\ for\ new\ file\:=\u65b0\u6a94\u6848\u7684\u540d\u5b57\uff1a @@ -672,12 +763,18 @@ Next\ Tab=\u4e0b\u4e00\u500b\u6a19\u7c64 #: Preferences.java:78 UpdateCheck.java:108 No=\u5426 +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u6c92\u6709\u9078\u64c7\u677f\u5b50\uff1b\u8acb\u5f9e\u300c\u5de5\u5177>\u677f\u5b50\u300d\u9078\u55ae\u88e1\u9078\u64c7\u677f\u5b50 #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=\u81ea\u52d5\u683c\u5f0f\u5316\u4e26\u4e0d\u9700\u8981\u505a\u51fa\u66f4\u52d5 +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=\u6c92\u6709\u6a94\u6848\u88ab\u52a0\u5165\u8349\u7a3f\u78bc\u4e2d\u3002 @@ -687,6 +784,9 @@ No\ launcher\ available=\u7121\u53ef\u7528\u7684\u555f\u52d5\u8005\u3002 #: SerialMonitor.java:112 No\ line\ ending=\u6c92\u6709\u884c\u7d50\u5c3e +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u6211\u8aaa\u771f\u7684\uff0c\u8a72\u662f\u547c\u5438\u65b0\u9bae\u7a7a\u6c23\u7684\u6642\u5019\u4e86\u3002 @@ -694,6 +794,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u6211\u8aaa\u771f\u7684\uff #, java-format No\ reference\ available\ for\ "{0}"=\u95dc\u65bc"{0}"\u4e26\u7121\u53c3\u8003\u6587\u4ef6 +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +!No\ valid\ code\ files\ found= + #: ../../../processing/app/Base.java:309 No\ valid\ configured\ cores\ found\!\ Exiting...=\u627e\u4e0d\u5230\u6709\u6548\u4e26\u8a2d\u5b9a\u7d44\u614b\u904e\u7684\u6838\u5fc3\uff01\u96e2\u958b... @@ -720,6 +830,9 @@ OK=\u597d #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=\u4e00\u652f\u6a94\u6848\u5df2\u52a0\u5165\u8349\u7a3f\u78bc\u3002 +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=\u958b\u555f @@ -747,12 +860,22 @@ Paste=\u8cbc\u4e0a #: Preferences.java:109 Persian=\u6ce2\u65af\u8a9e +#: ../../../processing/app/Preferences.java:161 +!Persian\ (Iran)= + #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=\u8acb\u5f9e\u9078\u55ae\u300c\u8349\u7a3f\u78bc>\u532f\u5165\u7a0b\u5f0f\u5eab\u300d\u532f\u5165SPI\u7a0b\u5f0f\u5eab\u3002 +#: ../../../processing/app/debug/Compiler.java:529 +!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=\u8acb\u5b89\u88ddJDK 1.5\u6216\u66f4\u65b0\u7684\u7248\u672c +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 Polish=\u6ce2\u862d\u8a9e @@ -874,9 +997,15 @@ Save\ changes\ to\ "{0}"?\ \ =\u5132\u5b58\u8b8a\u66f4\u5230"{0}"\uff1f #: Sketch.java:825 Save\ sketch\ folder\ as...=\u5132\u5b58\u8349\u7a3f\u78bc\u8cc7\u6599\u593e\u70ba... +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=\u5132\u5b58\u4e2d... +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=\u70ba\u8349\u7a3f\u78bc\u9078\u53d6\uff08\u6216\u65b0\u589e\uff09\u8cc7\u6599\u593e... @@ -901,14 +1030,6 @@ Send=\u50b3\u9001 #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=\u5e8f\u5217\u57e0\u76e3\u63a7\u8996\u7a97 -#: Serial.java:174 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=\u5e8f\u5217\u57e0''{0}''\u5df2\u88ab\u4f7f\u7528\u3002\u8acb\u8a66\u8457\u95dc\u9589\u4efb\u4f55\u53ef\u80fd\u4f7f\u7528\u8a72\u5e8f\u5217\u57e0\u7684\u8edf\u9ad4\u7a0b\u5f0f\u3002 - -#: Serial.java:121 -#, java-format -Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.=\u5e8f\u5217\u57e0''{0}''\u5df2\u8655\u65bc\u4f7f\u7528\u72c0\u614b\u3002\u8acb\u8a66\u8457\u95dc\u9589\u4efb\u4f55\u53ef\u80fd\u4f7f\u7528\u8a72\u5e8f\u5217\u57e0\u7684\u8edf\u9ad4\u7a0b\u5f0f\u3002 - #: Serial.java:194 #, java-format Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=\u627e\u4e0d\u5230\u5e8f\u5217\u57e0''{0}''\u3002\u60a8\u5728\u9078\u55ae\u300c\u5de5\u5177>\u5e8f\u5217\u57e0\u300d\u88e1\u7684\u8a2d\u5b9a\u6b63\u78ba\u55ce\uff1f @@ -963,6 +1084,9 @@ Sketchbook\ folder\ disappeared=\u8349\u7a3f\u78bc\u7c3f\u8cc7\u6599\u593e\u4e0d #: Preferences.java:315 Sketchbook\ location\:=\u8349\u7a3f\u78bc\u7c3f\u7684\u4f4d\u7f6e\uff1a +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 !Sketches\ (*.ino,\ *.pde)= @@ -997,6 +1121,9 @@ Tamil=\u6cf0\u7c73\u723e\u8a9e #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=\u95dc\u9375\u5b57'BYTE'\u5df2\u4e0d\u88ab\u652f\u63f4 +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=\u985e\u5225Client\u5df2\u6539\u540d\u70baEthernetClient\u3002 @@ -1033,12 +1160,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=\u8349\u7a3f\u78bc\u8cc7\u6599\u593e\u6d88\u5931\u4e86\u3002\n\u5c07\u8a66\u8457\u5728\u540c\u4e00\u4f4d\u7f6e\u91cd\u65b0\u5132\u5b58\uff0c\n\u4f46\u9664\u4e86\u7a0b\u5f0f\u78bc\u4ee5\u5916\u7684\u6771\u897f\u5c07\u907a\u5931\u3002 -#: Sketch.java:2018 -The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=\u5fc5\u9808\u4fee\u6539\u8349\u7a3f\u78bc\u540d\u7a31\u3002\u8349\u7a3f\u78bc\u540d\u7a31\u53ea\u80fd\u542b\u6709\nASCII\u5b57\u5143\u8207\u6578\u5b57\uff08\u4e0d\u80fd\u4ee5\u6578\u5b57\u958b\u982d\uff09\u3002\n\u540d\u7a31\u5fc5\u9808\u5c11\u65bc64\u500b\u5b57\u5143\u3002 +#: ../../../processing/app/Sketch.java:2028 +!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=\u8349\u7a3f\u78bc\u7c3f\u8cc7\u6599\u593e\u5df2\u4e0d\u5b58\u5728\u3002\nArduino\u5c07\u8f49\u70ba\u4f7f\u7528\u9810\u8a2d\u7684\u8349\u7a3f\u78bc\u7c3f\u4f4d\u7f6e\uff0c\n\u4e26\u4e14\u8996\u9700\u8981\u65b0\u589e\u8cc7\u6599\u593e\u3002\u7136\u5f8cArduino\u5c07\n\u505c\u6b62\u4ee5\u7b2c\u4e09\u4eba\u7a31\u63d0\u53ca\u81ea\u5df1\u3002 +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u9019\u652f\u6a94\u6848\u5df2\u7d93\u8907\u88fd\u5230\n\u4f60\u60f3\u8981\u52a0\u5165\u7684\u4f4d\u7f6e\u5167\uff0c\n\u6211\u7d55\u5c0d\u4e0d\u6703\u4e0d\u60f3\u8981\u7121\u6240\u4e8b\u4e8b\u3002 @@ -1142,6 +1272,10 @@ Verify\ code\ after\ upload=\u4e0a\u50b3\u5f8c\u9a57\u8b49\u7a0b\u5f0f\u78bc #: Editor.java:1105 Visit\ Arduino.cc=\u62dc\u8a2aArduino.cc +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= + #: Base.java:2128 Warning=\u8b66\u544a @@ -1240,9 +1374,6 @@ environment=\u958b\u767c\u74b0\u5883 #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1265,13 +1396,6 @@ name\ is\ null=\u540d\u7a31\u662f\u7a7a\u7684 #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=\u5c0d{0} bytes\u4f86\u8aaa\uff0creadBytesUntil()\u7de9\u885d\u5340\u592a\u5c0f\uff0c \u76f4\u5230\u4e26\u5305\u62ec\u5b57\u5143{1} - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\uff1a\u5167\u90e8\u932f\u8aa4...\u627e\u4e0d\u5230\u7a0b\u5f0f\u78bc - #: Editor.java:932 serialMenu\ is\ null=serialMenu\u662f\u7a7a\u7684 @@ -1279,6 +1403,10 @@ serialMenu\ is\ null=serialMenu\u662f\u7a7a\u7684 #, java-format the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=\u9078\u5b9a\u7684\u5e8f\u5217\u57e0{0}\u4e0d\u5b58\u5728\uff0c\u6216\u662f\u4f60\u9084\u6c92\u9023\u63a5\u677f\u5b50\u3002 +#: ../../../processing/app/Base.java:389 +#, java-format +!unknown\ option\:\ {0}= + #: Preferences.java:391 upload=\u4e0a\u50b3 @@ -1297,3 +1425,35 @@ upload=\u4e0a\u50b3 #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= + +#: ../../../processing/app/Base.java:476 +#, java-format +!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= + +#: ../../../processing/app/Base.java:509 +#, java-format +!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= + +#: ../../../processing/app/Base.java:507 +#, java-format +!{0}\:\ Invalid\ option\ for\ board\ "{1}"= + +#: ../../../processing/app/Base.java:502 +#, java-format +!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= + +#: ../../../processing/app/Base.java:486 +#, java-format +!{0}\:\ Unknown\ architecture= + +#: ../../../processing/app/Base.java:491 +#, java-format +!{0}\:\ Unknown\ board= + +#: ../../../processing/app/Base.java:481 +#, java-format +!{0}\:\ Unknown\ package= diff --git a/arduino-core/src/processing/app/i18n/Resources_zh_TW.po b/arduino-core/src/processing/app/i18n/Resources_zh_TW.po index 3182ba88d..9f1a24948 100644 --- a/arduino-core/src/processing/app/i18n/Resources_zh_TW.po +++ b/arduino-core/src/processing/app/i18n/Resources_zh_TW.po @@ -33,6 +33,12 @@ msgstr "'Mouse'只被Arduino Leonardo所支援" msgid "(edit only when Arduino is not running)" msgstr "(只能在未執行Arduino時進行編輯)" +#: ../../../processing/app/Base.java:468 +msgid "" +"--verbose, --verbose-upload and --verbose-build can only be used together " +"with --verify or --upload" +msgstr "" + #: Sketch.java:746 msgid ".pde -> .ino" msgstr ".pde -> .ino" @@ -91,6 +97,10 @@ msgstr "加入檔案..." msgid "Add Library..." msgstr "匯入程式庫..." +#: ../../../processing/app/Preferences.java:96 +msgid "Albanian" +msgstr "阿爾巴尼亞語" + #: tools/FixEncoding.java:77 msgid "" "An error occurred while trying to fix the file encoding.\n" @@ -98,6 +108,20 @@ msgid "" "the old version. Use Open to re-open the sketch and try again.\n" msgstr "試著修正檔案編碼時發生錯誤。\n請不要試著儲存此草稿碼,因為可能會蓋掉\n舊版本,請以「開啟」重新開啟草稿碼然後再試一次\n" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "An error occurred while uploading the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "An error occurred while verifying the sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "An error occurred while verifying/uploading the sketch" +msgstr "" + #: Base.java:228 msgid "" "An unknown error occurred while trying to load\n" @@ -176,6 +200,30 @@ msgstr "你確定想要刪除\"{0}\"嗎?" msgid "Are you sure you want to delete this sketch?" msgstr "你確定想要刪除此草稿碼嗎?" +#: ../../../processing/app/Base.java:356 +msgid "Argument required for --board" +msgstr "需要加上參數 --board" + +#: ../../../processing/app/Base.java:370 +msgid "Argument required for --curdir" +msgstr "需要加上參數 --curdir" + +#: ../../../processing/app/Base.java:385 +msgid "Argument required for --get-pref" +msgstr "" + +#: ../../../processing/app/Base.java:363 +msgid "Argument required for --port" +msgstr "需要加上參數 --port" + +#: ../../../processing/app/Base.java:377 +msgid "Argument required for --pref" +msgstr "需要加上參數 --pref" + +#: ../../../processing/app/Base.java:384 +msgid "Argument required for --preferences-file" +msgstr "需要加上參數 --preferences-file" + #: ../../../processing/app/Preferences.java:137 msgid "Armenian" msgstr "亞美尼亞語" @@ -184,6 +232,10 @@ msgstr "亞美尼亞語" msgid "Asturian" msgstr "阿斯圖里亞斯語" +#: ../../../processing/app/debug/Compiler.java:145 +msgid "Authorization required" +msgstr "" + #: tools/AutoFormat.java:91 msgid "Auto Format" msgstr "自動格式化" @@ -225,6 +277,14 @@ msgstr "錯誤行號:{0}" msgid "Bad file selected" msgstr "選擇了不好的檔案" +#: ../../../processing/app/debug/Compiler.java:89 +msgid "Bad sketch primary file or bad sketch directory structure" +msgstr "" + +#: ../../../processing/app/Preferences.java:149 +msgid "Basque" +msgstr "巴斯克語" + #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" msgstr "白俄羅斯語" @@ -261,6 +321,10 @@ msgstr "瀏覽" msgid "Build folder disappeared or could not be written" msgstr "建置資料夾消失了、或無法被寫入" +#: ../../../processing/app/Sketch.java:1530 +msgid "Build options changed, rebuilding all" +msgstr "建置選項已變更,重建所有" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "保加利亞語" @@ -277,8 +341,14 @@ msgstr "燒錄Bootloader" msgid "Burning bootloader to I/O Board (this may take a minute)..." msgstr "燒錄bootloader到板子裡(可能需要幾分鐘)..." -#: ../../../processing/app/Base.java:368 -msgid "Can't open source sketch!" +#: ../../../processing/app/Base.java:379 +#, java-format +msgid "Can only pass one of: {0}" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "Can't find the sketch in the specified path" msgstr "" #: ../../../processing/app/Preferences.java:92 @@ -294,6 +364,10 @@ msgstr "取消" msgid "Cannot Rename" msgstr "無法重新命名" +#: ../../../processing/app/Base.java:465 +msgid "Cannot specify any sketch files" +msgstr "" + #: SerialMonitor.java:112 msgid "Carriage return" msgstr "CR(carriage return)" @@ -338,11 +412,6 @@ msgstr "關閉" msgid "Comment/Uncomment" msgstr "註解∕移除註解" -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -msgid "Compiler error, please submit this code to {0}" -msgstr "編譯器錯誤,請將此程式碼提交到{0}" - #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." msgstr "編譯草稿碼中..." @@ -450,10 +519,9 @@ msgid "" "You'll need to reinstall Arduino." msgstr "無法讀取預設設定。\n你必須重新安裝Arduino。" -#: Preferences.java:258 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "" +#: ../../../processing/app/Sketch.java:1525 +msgid "Could not read prevous build preferences file, rebuilding all" +msgstr "無法讀取以前的偏好設置文件,重建所有" #: Base.java:2482 #, java-format @@ -482,6 +550,10 @@ msgstr "無法重新命名草稿碼。(2)" msgid "Could not replace {0}" msgstr "無法取代{0}" +#: ../../../processing/app/Sketch.java:1579 +msgid "Could not write build preferences file" +msgstr "無法寫入建置的偏好設定檔案" + #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "無法封存草稿碼" @@ -551,6 +623,11 @@ msgstr "儲存完畢" msgid "Done burning bootloader." msgstr "bootloader燒錄完畢。" +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +msgid "Done compiling" +msgstr "" + #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." msgstr "編譯完畢。" @@ -559,6 +636,10 @@ msgstr "編譯完畢。" msgid "Done printing." msgstr "列印完畢。" +#: ../../../processing/app/BaseNoGui.java:514 +msgid "Done uploading" +msgstr "" + #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." msgstr "上傳完畢。" @@ -662,6 +743,10 @@ msgstr "燒錄bootloader時發生錯誤。" msgid "Error while burning bootloader: missing '{0}' configuration parameter" msgstr "燒錄bootloader時發生錯誤:缺少配置參數 '{0}'" +#: ../../../../../app/src/processing/app/Editor.java:1940 +msgid "Error while compiling: missing '{0}' configuration parameter" +msgstr "" + #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" @@ -671,11 +756,25 @@ msgstr "載入程式碼{0}時發生錯誤" msgid "Error while printing." msgstr "列印時發生錯誤。" +#: ../../../processing/app/BaseNoGui.java:528 +msgid "Error while uploading" +msgstr "" + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" msgstr "上傳時發生錯誤:缺少結構參數“{0}”" +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +msgid "Error while verifying" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:521 +msgid "Error while verifying/uploading" +msgstr "" + #: Preferences.java:93 msgid "Estonian" msgstr "愛沙尼亞語" @@ -696,6 +795,11 @@ msgstr "匯出動作已取消,必須先儲存變更。" msgid "FAQ.html" msgstr "FAQ.html" +#: ../../../processing/app/Base.java:416 +#, java-format +msgid "Failed to open sketch: \"{0}\"" +msgstr "無法開啟草稿碼: \"{0}\"" + #: Editor.java:491 msgid "File" msgstr "檔案" @@ -743,9 +847,10 @@ msgid "" "http://arduino.cc/en/Guide/Libraries\n" msgstr "關於安裝程式庫的細節,請見http://arduino.cc/en/Guide/Libraries。\n" -#: debug/BasicUploader.java:80 -msgid "Forcing reset using 1200bps open/close on port " -msgstr "強迫重置,1200bps開啟∕關閉傳輸埠" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +msgid "Forcing reset using 1200bps open/close on port {0}" +msgstr "" #: Preferences.java:95 msgid "French" @@ -893,9 +998,9 @@ msgstr "程式庫已加入,請檢查「匯入程式庫」選單" msgid "Lithuaninan" msgstr "立陶宛語" -#: ../../../processing/app/Sketch.java:1660 -msgid "Low memory available, stability problems may occur" -msgstr "可用記憶體低下,可能發生穩定性問題" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." +msgstr "" #: Preferences.java:107 msgid "Marathi" @@ -909,6 +1014,10 @@ msgstr "訊息" msgid "Missing the */ from the end of a /* comment */" msgstr "註釋結尾缺少*/ " +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Mode not supported" +msgstr "" + #: Preferences.java:449 msgid "More preferences can be edited directly in the file" msgstr "在偏好設定檔裡還有更多設定值可直接編輯" @@ -917,6 +1026,18 @@ msgstr "在偏好設定檔裡還有更多設定值可直接編輯" msgid "Moving" msgstr "移動中" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "Multiple files not supported" +msgstr "" + +#: ../../../processing/app/Base.java:395 +msgid "Must specify exactly one sketch file" +msgstr "必須指定一個草稿碼文件" + +#: ../../../processing/app/Preferences.java:158 +msgid "N'Ko" +msgstr "N'Ko" + #: Sketch.java:282 msgid "Name for new file:" msgstr "新檔案的名字:" @@ -953,6 +1074,10 @@ msgstr "下一個標籤" msgid "No" msgstr "否" +#: ../../../processing/app/debug/Compiler.java:146 +msgid "No athorization data found" +msgstr "" + #: debug/Compiler.java:126 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "沒有選擇板子;請從「工具>板子」選單裡選擇板子" @@ -961,6 +1086,10 @@ msgstr "沒有選擇板子;請從「工具>板子」選單裡選擇板子" msgid "No changes necessary for Auto Format." msgstr "自動格式化並不需要做出更動" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No command line parameters found" +msgstr "" + #: Editor.java:373 msgid "No files were added to the sketch." msgstr "沒有檔案被加入草稿碼中。" @@ -973,6 +1102,10 @@ msgstr "無可用的啟動者。" msgid "No line ending" msgstr "沒有行結尾" +#: ../../../processing/app/BaseNoGui.java:665 +msgid "No parameters" +msgstr "" + #: Base.java:541 msgid "No really, time for some fresh air for you." msgstr "我說真的,該是呼吸新鮮空氣的時候了。" @@ -982,6 +1115,19 @@ msgstr "我說真的,該是呼吸新鮮空氣的時候了。" msgid "No reference available for \"{0}\"" msgstr "關於\"{0}\"並無參考文件" +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +msgid "No sketch" +msgstr "" + +#: ../../../processing/app/BaseNoGui.java:428 +msgid "No sketchbook" +msgstr "" + +#: ../../../processing/app/Sketch.java:204 +msgid "No valid code files found" +msgstr "找不到有效的程式碼文件" + #: ../../../processing/app/Base.java:309 msgid "No valid configured cores found! Exiting..." msgstr "找不到有效並設定組態過的核心!離開..." @@ -1018,6 +1164,10 @@ msgstr "好" msgid "One file added to the sketch." msgstr "一支檔案已加入草稿碼。" +#: ../../../processing/app/BaseNoGui.java:455 +msgid "Only --verify, --upload or --get-pref are supported" +msgstr "" + #: EditorToolbar.java:41 msgid "Open" msgstr "開啟" @@ -1054,14 +1204,27 @@ msgstr "貼上" msgid "Persian" msgstr "波斯語" +#: ../../../processing/app/Preferences.java:161 +msgid "Persian (Iran)" +msgstr "波斯語(伊朗)" + #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "請從選單「草稿碼>匯入程式庫」匯入SPI程式庫。" +#: ../../../processing/app/debug/Compiler.java:529 +msgid "Please import the Wire library from the Sketch > Import Library menu." +msgstr "請導入Wire從 草稿碼>導入函式庫。" + #: Base.java:239 msgid "Please install JDK 1.5 or later" msgstr "請安裝JDK 1.5或更新的版本" +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +msgid "Please select a programmer from Tools->Programmer menu" +msgstr "" + #: Preferences.java:110 msgid "Polish" msgstr "波蘭語" @@ -1224,10 +1387,18 @@ msgstr "儲存變更到\"{0}\"?" msgid "Save sketch folder as..." msgstr "儲存草稿碼資料夾為..." +#: ../../../../../app/src/processing/app/Preferences.java:425 +msgid "Save when verifying or uploading" +msgstr "" + #: Editor.java:2270 Editor.java:2308 msgid "Saving..." msgstr "儲存中..." +#: ../../../processing/app/FindReplace.java:131 +msgid "Search all Sketch Tabs" +msgstr "" + #: Base.java:1909 msgid "Select (or create new) folder for sketches..." msgstr "為草稿碼選取(或新增)資料夾..." @@ -1260,20 +1431,6 @@ msgstr "傳送" msgid "Serial Monitor" msgstr "序列埠監控視窗" -#: Serial.java:174 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quiting any programs that may be " -"using it." -msgstr "" - -#: Serial.java:121 -#, java-format -msgid "" -"Serial port ''{0}'' already in use. Try quitting any programs that may be " -"using it." -msgstr "" - #: Serial.java:194 #, java-format msgid "" @@ -1353,6 +1510,10 @@ msgstr "草稿碼簿資料夾不見了" msgid "Sketchbook location:" msgstr "草稿碼簿的位置:" +#: ../../../processing/app/BaseNoGui.java:428 +msgid "Sketchbook path not defined" +msgstr "" + #: ../../../processing/app/Base.java:785 msgid "Sketches (*.ino, *.pde)" msgstr "草稿碼 (*.ino, *.pde)" @@ -1403,6 +1564,10 @@ msgstr "泰米爾語" msgid "The 'BYTE' keyword is no longer supported." msgstr "關鍵字'BYTE'已不被支援" +#: ../../../processing/app/BaseNoGui.java:484 +msgid "The --upload option supports only one file at a time" +msgstr "" + #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." msgstr "類別Client已改名為EthernetClient。" @@ -1470,12 +1635,12 @@ msgid "" "but anything besides the code will be lost." msgstr "草稿碼資料夾消失了。\n將試著在同一位置重新儲存,\n但除了程式碼以外的東西將遺失。" -#: Sketch.java:2018 +#: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less less than 64 characters long." -msgstr "" +"They should also be less than 64 characters long." +msgstr "草稿碼的名稱必須進行修改。草稿碼名稱只能由\nASCII字符和數字組成(但不能以數字開頭)。\n長度必須少於64個字元。" #: Base.java:259 msgid "" @@ -1486,6 +1651,12 @@ msgid "" "himself in the third person." msgstr "草稿碼簿資料夾已不存在。\nArduino將轉為使用預設的草稿碼簿位置,\n並且視需要新增資料夾。然後Arduino將\n停止以第三人稱提及自己。" +#: ../../../processing/app/debug/Compiler.java:201 +msgid "" +"Third-party platform.txt does not define compiler.path. Please report this " +"to the third-party hardware maintainer." +msgstr "" + #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1628,6 +1799,13 @@ msgstr "越南語" msgid "Visit Arduino.cc" msgstr "拜訪Arduino.cc" +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +msgid "" +"WARNING: library {0} claims to run on {1} architecture(s) and may be " +"incompatible with your current board which runs on {2} architecture(s)." +msgstr "" + #: Base.java:2128 msgid "Warning" msgstr "警告" @@ -1796,10 +1974,6 @@ msgstr "開發環境" msgid "http://arduino.cc/" msgstr "http://arduino.cc/" -#: ../../../processing/app/debug/Compiler.java:49 -msgid "http://github.com/arduino/Arduino/issues" -msgstr "http://github.com/arduino/Arduino/issues" - #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" msgstr "http://www.arduino.cc/en/Main/Software" @@ -1829,17 +2003,6 @@ msgstr "名稱是空的" msgid "platforms.html" msgstr "platforms.html" -#: Serial.java:451 -#, java-format -msgid "" -"readBytesUntil() byte buffer is too small for the {0} bytes up to and " -"including char {1}" -msgstr "對{0} bytes來說,readBytesUntil()緩衝區太小, 直到並包括字元{1}" - -#: Sketch.java:647 -msgid "removeCode: internal error.. could not find code" -msgstr "removeCode:內部錯誤...找不到程式碼" - #: Editor.java:932 msgid "serialMenu is null" msgstr "serialMenu是空的" @@ -1850,6 +2013,11 @@ msgid "" "the selected serial port {0} does not exist or your board is not connected" msgstr "選定的序列埠{0}不存在,或是你還沒連接板子。" +#: ../../../processing/app/Base.java:389 +#, java-format +msgid "unknown option: {0}" +msgstr "不明的選項:{0}" + #: Preferences.java:391 msgid "upload" msgstr "上傳" @@ -1873,3 +2041,45 @@ msgstr "{0} | Arduino {1}" #, java-format msgid "{0}.html" msgstr "{0}.html" + +#: ../../../processing/app/Base.java:519 +#, java-format +msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" +msgstr "{0}:無效的參數 --pref,格式應該是 \"pref=value\"" + +#: ../../../processing/app/Base.java:476 +#, java-format +msgid "" +"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " +"\"package:arch:board:options\"" +msgstr "{0}:無效的版子名稱,格式應該是 \"package:arch:board\" 或 \"package:arch:board:options\"" + +#: ../../../processing/app/Base.java:509 +#, java-format +msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" +msgstr "{0}:無效的選項 “{1}” 於板子 “{2}”" + +#: ../../../processing/app/Base.java:507 +#, java-format +msgid "{0}: Invalid option for board \"{1}\"" +msgstr "{0}:無效的選項於板子 “{1}”" + +#: ../../../processing/app/Base.java:502 +#, java-format +msgid "{0}: Invalid option, should be of the form \"name=value\"" +msgstr "{0}:無效的選項,格式應該是 “name=value”" + +#: ../../../processing/app/Base.java:486 +#, java-format +msgid "{0}: Unknown architecture" +msgstr "{0}:不明的架構" + +#: ../../../processing/app/Base.java:491 +#, java-format +msgid "{0}: Unknown board" +msgstr "{0}:不明的板子" + +#: ../../../processing/app/Base.java:481 +#, java-format +msgid "{0}: Unknown package" +msgstr "{0}:不明的套件" diff --git a/arduino-core/src/processing/app/i18n/Resources_zh_TW.properties b/arduino-core/src/processing/app/i18n/Resources_zh_TW.properties index 9d059ed70..273baf77a 100644 --- a/arduino-core/src/processing/app/i18n/Resources_zh_TW.properties +++ b/arduino-core/src/processing/app/i18n/Resources_zh_TW.properties @@ -17,6 +17,9 @@ #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=\uff08\u53ea\u80fd\u5728\u672a\u57f7\u884cArduino\u6642\u9032\u884c\u7de8\u8f2f\uff09 +#: ../../../processing/app/Base.java:468 +!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= + #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -53,9 +56,23 @@ Add\ File...=\u52a0\u5165\u6a94\u6848... #: Base.java:963 Add\ Library...=\u532f\u5165\u7a0b\u5f0f\u5eab... +#: ../../../processing/app/Preferences.java:96 +Albanian=\u963f\u723e\u5df4\u5c3c\u4e9e\u8a9e + #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=\u8a66\u8457\u4fee\u6b63\u6a94\u6848\u7de8\u78bc\u6642\u767c\u751f\u932f\u8aa4\u3002\n\u8acb\u4e0d\u8981\u8a66\u8457\u5132\u5b58\u6b64\u8349\u7a3f\u78bc\uff0c\u56e0\u70ba\u53ef\u80fd\u6703\u84cb\u6389\n\u820a\u7248\u672c\uff0c\u8acb\u4ee5\u300c\u958b\u555f\u300d\u91cd\u65b0\u958b\u555f\u8349\u7a3f\u78bc\u7136\u5f8c\u518d\u8a66\u4e00\u6b21\n +#: ../../../processing/app/BaseNoGui.java:528 +!An\ error\ occurred\ while\ uploading\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!An\ error\ occurred\ while\ verifying\ the\ sketch= + +#: ../../../processing/app/BaseNoGui.java:521 +!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= + #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=\u8a66\u8457\u70ba\u4f60\u7684\u6a5f\u5668\u8f09\u5165\u8207\u5e73\u53f0\u76f8\u95dc\u7684\u7a0b\u5f0f\u78bc\u6642\uff0c\n\u767c\u751f\u4e0d\u660e\u7684\u932f\u8aa4\u3002 @@ -105,12 +122,33 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u4f60\u78ba\u5b9a\u60f3\u8981\u52 #: Sketch.java:587 Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u4f60\u78ba\u5b9a\u60f3\u8981\u522a\u9664\u6b64\u8349\u7a3f\u78bc\u55ce\uff1f +#: ../../../processing/app/Base.java:356 +Argument\ required\ for\ --board=\u9700\u8981\u52a0\u4e0a\u53c3\u6578 --board + +#: ../../../processing/app/Base.java:370 +Argument\ required\ for\ --curdir=\u9700\u8981\u52a0\u4e0a\u53c3\u6578 --curdir + +#: ../../../processing/app/Base.java:385 +!Argument\ required\ for\ --get-pref= + +#: ../../../processing/app/Base.java:363 +Argument\ required\ for\ --port=\u9700\u8981\u52a0\u4e0a\u53c3\u6578 --port + +#: ../../../processing/app/Base.java:377 +Argument\ required\ for\ --pref=\u9700\u8981\u52a0\u4e0a\u53c3\u6578 --pref + +#: ../../../processing/app/Base.java:384 +Argument\ required\ for\ --preferences-file=\u9700\u8981\u52a0\u4e0a\u53c3\u6578 --preferences-file + #: ../../../processing/app/Preferences.java:137 Armenian=\u4e9e\u7f8e\u5c3c\u4e9e\u8a9e #: ../../../processing/app/Preferences.java:138 Asturian=\u963f\u65af\u5716\u91cc\u4e9e\u65af\u8a9e +#: ../../../processing/app/debug/Compiler.java:145 +!Authorization\ required= + #: tools/AutoFormat.java:91 Auto\ Format=\u81ea\u52d5\u683c\u5f0f\u5316 @@ -142,6 +180,12 @@ Bad\ error\ line\:\ {0}=\u932f\u8aa4\u884c\u865f\uff1a{0} #: Editor.java:2136 Bad\ file\ selected=\u9078\u64c7\u4e86\u4e0d\u597d\u7684\u6a94\u6848 +#: ../../../processing/app/debug/Compiler.java:89 +!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= + +#: ../../../processing/app/Preferences.java:149 +Basque=\u5df4\u65af\u514b\u8a9e + #: ../../../processing/app/Preferences.java:139 Belarusian=\u767d\u4fc4\u7f85\u65af\u8a9e @@ -168,6 +212,9 @@ Browse=\u700f\u89bd #: Sketch.java:1392 Sketch.java:1423 Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u5efa\u7f6e\u8cc7\u6599\u593e\u6d88\u5931\u4e86\u3001\u6216\u7121\u6cd5\u88ab\u5beb\u5165 +#: ../../../processing/app/Sketch.java:1530 +Build\ options\ changed,\ rebuilding\ all=\u5efa\u7f6e\u9078\u9805\u5df2\u8b8a\u66f4\uff0c\u91cd\u5efa\u6240\u6709 + #: ../../../processing/app/Preferences.java:80 Bulgarian=\u4fdd\u52a0\u5229\u4e9e\u8a9e @@ -180,8 +227,13 @@ Burn\ Bootloader=\u71d2\u9304Bootloader #: Editor.java:2504 Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u71d2\u9304bootloader\u5230\u677f\u5b50\u88e1\uff08\u53ef\u80fd\u9700\u8981\u5e7e\u5206\u9418\uff09... -#: ../../../processing/app/Base.java:368 -!Can't\ open\ source\ sketch\!= +#: ../../../processing/app/Base.java:379 +#, java-format +!Can\ only\ pass\ one\ of\:\ {0}= + +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 Canadian\ French=\u52a0\u62ff\u5927\u6cd5\u8a9e @@ -193,6 +245,9 @@ Cancel=\u53d6\u6d88 #: Sketch.java:455 Cannot\ Rename=\u7121\u6cd5\u91cd\u65b0\u547d\u540d +#: ../../../processing/app/Base.java:465 +!Cannot\ specify\ any\ sketch\ files= + #: SerialMonitor.java:112 Carriage\ return=CR(carriage return) @@ -226,10 +281,6 @@ Close=\u95dc\u9589 #: Editor.java:1208 Editor.java:2749 Comment/Uncomment=\u8a3b\u89e3\u2215\u79fb\u9664\u8a3b\u89e3 -#: debug/Compiler.java:49 debug/Uploader.java:45 -#, java-format -Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=\u7de8\u8b6f\u5668\u932f\u8aa4\uff0c\u8acb\u5c07\u6b64\u7a0b\u5f0f\u78bc\u63d0\u4ea4\u5230{0} - #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=\u7de8\u8b6f\u8349\u7a3f\u78bc\u4e2d... @@ -305,9 +356,8 @@ Could\ not\ re-save\ sketch=\u7121\u6cd5\u91cd\u65b0\u5132\u5b58\u8349\u7a3f\u78 #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u7121\u6cd5\u8b80\u53d6\u9810\u8a2d\u8a2d\u5b9a\u3002\n\u4f60\u5fc5\u9808\u91cd\u65b0\u5b89\u88ddArduino\u3002 -#: Preferences.java:258 -#, java-format -!Could\ not\ read\ preferences\ from\ {0}= +#: ../../../processing/app/Sketch.java:1525 +Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=\u7121\u6cd5\u8b80\u53d6\u4ee5\u524d\u7684\u504f\u597d\u8a2d\u7f6e\u6587\u4ef6\uff0c\u91cd\u5efa\u6240\u6709 #: Base.java:2482 #, java-format @@ -330,6 +380,9 @@ Could\ not\ rename\ the\ sketch.\ (2)=\u7121\u6cd5\u91cd\u65b0\u547d\u540d\u8349 #, java-format Could\ not\ replace\ {0}=\u7121\u6cd5\u53d6\u4ee3{0} +#: ../../../processing/app/Sketch.java:1579 +Could\ not\ write\ build\ preferences\ file=\u7121\u6cd5\u5beb\u5165\u5efa\u7f6e\u7684\u504f\u597d\u8a2d\u5b9a\u6a94\u6848 + #: tools/Archiver.java:74 Couldn't\ archive\ sketch=\u7121\u6cd5\u5c01\u5b58\u8349\u7a3f\u78bc @@ -378,12 +431,19 @@ Done\ Saving.=\u5132\u5b58\u5b8c\u7562 #: Editor.java:2510 Done\ burning\ bootloader.=bootloader\u71d2\u9304\u5b8c\u7562\u3002 +#: ../../../processing/app/BaseNoGui.java:507 +#: ../../../processing/app/BaseNoGui.java:552 +!Done\ compiling= + #: Editor.java:1911 Editor.java:1928 Done\ compiling.=\u7de8\u8b6f\u5b8c\u7562\u3002 #: Editor.java:2564 Done\ printing.=\u5217\u5370\u5b8c\u7562\u3002 +#: ../../../processing/app/BaseNoGui.java:514 +!Done\ uploading= + #: Editor.java:2395 Editor.java:2431 Done\ uploading.=\u4e0a\u50b3\u5b8c\u7562\u3002 @@ -462,6 +522,9 @@ Error\ while\ burning\ bootloader.=\u71d2\u9304bootloader\u6642\u767c\u751f\u932 #: ../../../processing/app/Editor.java:2555 Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=\u71d2\u9304bootloader\u6642\u767c\u751f\u932f\u8aa4\uff1a\u7f3a\u5c11\u914d\u7f6e\u53c3\u6578 '{0}' +#: ../../../../../app/src/processing/app/Editor.java:1940 +!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= + #: SketchCode.java:83 #, java-format Error\ while\ loading\ code\ {0}=\u8f09\u5165\u7a0b\u5f0f\u78bc{0}\u6642\u767c\u751f\u932f\u8aa4 @@ -469,10 +532,21 @@ Error\ while\ loading\ code\ {0}=\u8f09\u5165\u7a0b\u5f0f\u78bc{0}\u6642\u767c\u #: Editor.java:2567 Error\ while\ printing.=\u5217\u5370\u6642\u767c\u751f\u932f\u8aa4\u3002 +#: ../../../processing/app/BaseNoGui.java:528 +!Error\ while\ uploading= + #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=\u4e0a\u50b3\u6642\u767c\u751f\u932f\u8aa4\uff1a\u7f3a\u5c11\u7d50\u69cb\u53c3\u6578\u201c{0}\u201d +#: ../../../processing/app/BaseNoGui.java:506 +#: ../../../processing/app/BaseNoGui.java:551 +#: ../../../processing/app/BaseNoGui.java:554 +!Error\ while\ verifying= + +#: ../../../processing/app/BaseNoGui.java:521 +!Error\ while\ verifying/uploading= + #: Preferences.java:93 Estonian=\u611b\u6c99\u5c3c\u4e9e\u8a9e @@ -488,6 +562,10 @@ Export\ canceled,\ changes\ must\ first\ be\ saved.=\u532f\u51fa\u52d5\u4f5c\u5d #: Base.java:2100 FAQ.html=FAQ.html +#: ../../../processing/app/Base.java:416 +#, java-format +Failed\ to\ open\ sketch\:\ "{0}"=\u7121\u6cd5\u958b\u555f\u8349\u7a3f\u78bc\: "{0}" + #: Editor.java:491 File=\u6a94\u6848 @@ -522,8 +600,9 @@ Fix\ Encoding\ &\ Reload=\u4fee\u6b63\u7de8\u78bc\u4e26\u91cd\u65b0\u8f09\u5165 #: Base.java:1851 For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide/Libraries\n=\u95dc\u65bc\u5b89\u88dd\u7a0b\u5f0f\u5eab\u7684\u7d30\u7bc0\uff0c\u8acb\u898bhttp\://arduino.cc/en/Guide/Libraries\u3002\n -#: debug/BasicUploader.java:80 -Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ =\u5f37\u8feb\u91cd\u7f6e\uff0c1200bps\u958b\u555f\u2215\u95dc\u9589\u50b3\u8f38\u57e0 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 +#, java-format +!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 French=\u6cd5\u8a9e @@ -627,8 +706,8 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=\u7a0b\u5f0 #: Preferences.java:106 Lithuaninan=\u7acb\u9676\u5b9b\u8a9e -#: ../../../processing/app/Sketch.java:1660 -Low\ memory\ available,\ stability\ problems\ may\ occur=\u53ef\u7528\u8a18\u61b6\u9ad4\u4f4e\u4e0b\uff0c\u53ef\u80fd\u767c\u751f\u7a69\u5b9a\u6027\u554f\u984c +#: ../../../processing/app/Sketch.java:1684 +!Low\ memory\ available,\ stability\ problems\ may\ occur.= #: Preferences.java:107 Marathi=\u99ac\u62c9\u5730\u8a9e @@ -639,12 +718,24 @@ Message=\u8a0a\u606f #: ../../../processing/app/preproc/PdePreprocessor.java:412 Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=\u8a3b\u91cb\u7d50\u5c3e\u7f3a\u5c11*/ +#: ../../../processing/app/BaseNoGui.java:455 +!Mode\ not\ supported= + #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\u5728\u504f\u597d\u8a2d\u5b9a\u6a94\u88e1\u9084\u6709\u66f4\u591a\u8a2d\u5b9a\u503c\u53ef\u76f4\u63a5\u7de8\u8f2f #: Editor.java:2156 Moving=\u79fb\u52d5\u4e2d +#: ../../../processing/app/BaseNoGui.java:484 +!Multiple\ files\ not\ supported= + +#: ../../../processing/app/Base.java:395 +Must\ specify\ exactly\ one\ sketch\ file=\u5fc5\u9808\u6307\u5b9a\u4e00\u500b\u8349\u7a3f\u78bc\u6587\u4ef6 + +#: ../../../processing/app/Preferences.java:158 +N'Ko=N'Ko + #: Sketch.java:282 Name\ for\ new\ file\:=\u65b0\u6a94\u6848\u7684\u540d\u5b57\uff1a @@ -672,12 +763,18 @@ Next\ Tab=\u4e0b\u4e00\u500b\u6a19\u7c64 #: Preferences.java:78 UpdateCheck.java:108 No=\u5426 +#: ../../../processing/app/debug/Compiler.java:146 +!No\ athorization\ data\ found= + #: debug/Compiler.java:126 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u6c92\u6709\u9078\u64c7\u677f\u5b50\uff1b\u8acb\u5f9e\u300c\u5de5\u5177>\u677f\u5b50\u300d\u9078\u55ae\u88e1\u9078\u64c7\u677f\u5b50 #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=\u81ea\u52d5\u683c\u5f0f\u5316\u4e26\u4e0d\u9700\u8981\u505a\u51fa\u66f4\u52d5 +#: ../../../processing/app/BaseNoGui.java:665 +!No\ command\ line\ parameters\ found= + #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=\u6c92\u6709\u6a94\u6848\u88ab\u52a0\u5165\u8349\u7a3f\u78bc\u4e2d\u3002 @@ -687,6 +784,9 @@ No\ launcher\ available=\u7121\u53ef\u7528\u7684\u555f\u52d5\u8005\u3002 #: SerialMonitor.java:112 No\ line\ ending=\u6c92\u6709\u884c\u7d50\u5c3e +#: ../../../processing/app/BaseNoGui.java:665 +!No\ parameters= + #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u6211\u8aaa\u771f\u7684\uff0c\u8a72\u662f\u547c\u5438\u65b0\u9bae\u7a7a\u6c23\u7684\u6642\u5019\u4e86\u3002 @@ -694,6 +794,16 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u6211\u8aaa\u771f\u7684\uff #, java-format No\ reference\ available\ for\ "{0}"=\u95dc\u65bc"{0}"\u4e26\u7121\u53c3\u8003\u6587\u4ef6 +#: ../../../processing/app/BaseNoGui.java:504 +#: ../../../processing/app/BaseNoGui.java:549 +!No\ sketch= + +#: ../../../processing/app/BaseNoGui.java:428 +!No\ sketchbook= + +#: ../../../processing/app/Sketch.java:204 +No\ valid\ code\ files\ found=\u627e\u4e0d\u5230\u6709\u6548\u7684\u7a0b\u5f0f\u78bc\u6587\u4ef6 + #: ../../../processing/app/Base.java:309 No\ valid\ configured\ cores\ found\!\ Exiting...=\u627e\u4e0d\u5230\u6709\u6548\u4e26\u8a2d\u5b9a\u7d44\u614b\u904e\u7684\u6838\u5fc3\uff01\u96e2\u958b... @@ -720,6 +830,9 @@ OK=\u597d #: Sketch.java:992 Editor.java:376 One\ file\ added\ to\ the\ sketch.=\u4e00\u652f\u6a94\u6848\u5df2\u52a0\u5165\u8349\u7a3f\u78bc\u3002 +#: ../../../processing/app/BaseNoGui.java:455 +!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= + #: EditorToolbar.java:41 Open=\u958b\u555f @@ -747,12 +860,22 @@ Paste=\u8cbc\u4e0a #: Preferences.java:109 Persian=\u6ce2\u65af\u8a9e +#: ../../../processing/app/Preferences.java:161 +Persian\ (Iran)=\u6ce2\u65af\u8a9e(\u4f0a\u6717) + #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=\u8acb\u5f9e\u9078\u55ae\u300c\u8349\u7a3f\u78bc>\u532f\u5165\u7a0b\u5f0f\u5eab\u300d\u532f\u5165SPI\u7a0b\u5f0f\u5eab\u3002 +#: ../../../processing/app/debug/Compiler.java:529 +Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=\u8acb\u5c0e\u5165Wire\u5f9e \u8349\u7a3f\u78bc>\u5c0e\u5165\u51fd\u5f0f\u5eab\u3002 + #: Base.java:239 Please\ install\ JDK\ 1.5\ or\ later=\u8acb\u5b89\u88ddJDK 1.5\u6216\u66f4\u65b0\u7684\u7248\u672c +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 +#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 +!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= + #: Preferences.java:110 Polish=\u6ce2\u862d\u8a9e @@ -874,9 +997,15 @@ Save\ changes\ to\ "{0}"?\ \ =\u5132\u5b58\u8b8a\u66f4\u5230"{0}"\uff1f #: Sketch.java:825 Save\ sketch\ folder\ as...=\u5132\u5b58\u8349\u7a3f\u78bc\u8cc7\u6599\u593e\u70ba... +#: ../../../../../app/src/processing/app/Preferences.java:425 +!Save\ when\ verifying\ or\ uploading= + #: Editor.java:2270 Editor.java:2308 Saving...=\u5132\u5b58\u4e2d... +#: ../../../processing/app/FindReplace.java:131 +!Search\ all\ Sketch\ Tabs= + #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=\u70ba\u8349\u7a3f\u78bc\u9078\u53d6\uff08\u6216\u65b0\u589e\uff09\u8cc7\u6599\u593e... @@ -901,14 +1030,6 @@ Send=\u50b3\u9001 #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=\u5e8f\u5217\u57e0\u76e3\u63a7\u8996\u7a97 -#: Serial.java:174 -#, java-format -!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.= - -#: Serial.java:121 -#, java-format -!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quitting\ any\ programs\ that\ may\ be\ using\ it.= - #: Serial.java:194 #, java-format Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=\u627e\u4e0d\u5230\u5e8f\u5217\u57e0''{0}''\u3002\u60a8\u5728\u9078\u55ae\u300c\u5de5\u5177>\u5e8f\u5217\u57e0\u300d\u88e1\u7684\u8a2d\u5b9a\u6b63\u78ba\u55ce\uff1f @@ -963,6 +1084,9 @@ Sketchbook\ folder\ disappeared=\u8349\u7a3f\u78bc\u7c3f\u8cc7\u6599\u593e\u4e0d #: Preferences.java:315 Sketchbook\ location\:=\u8349\u7a3f\u78bc\u7c3f\u7684\u4f4d\u7f6e\uff1a +#: ../../../processing/app/BaseNoGui.java:428 +!Sketchbook\ path\ not\ defined= + #: ../../../processing/app/Base.java:785 Sketches\ (*.ino,\ *.pde)=\u8349\u7a3f\u78bc (*.ino, *.pde) @@ -997,6 +1121,9 @@ Tamil=\u6cf0\u7c73\u723e\u8a9e #: debug/Compiler.java:414 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=\u95dc\u9375\u5b57'BYTE'\u5df2\u4e0d\u88ab\u652f\u63f4 +#: ../../../processing/app/BaseNoGui.java:484 +!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= + #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=\u985e\u5225Client\u5df2\u6539\u540d\u70baEthernetClient\u3002 @@ -1033,12 +1160,15 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic #: Sketch.java:1755 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=\u8349\u7a3f\u78bc\u8cc7\u6599\u593e\u6d88\u5931\u4e86\u3002\n\u5c07\u8a66\u8457\u5728\u540c\u4e00\u4f4d\u7f6e\u91cd\u65b0\u5132\u5b58\uff0c\n\u4f46\u9664\u4e86\u7a0b\u5f0f\u78bc\u4ee5\u5916\u7684\u6771\u897f\u5c07\u907a\u5931\u3002 -#: Sketch.java:2018 -!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.= +#: ../../../processing/app/Sketch.java:2028 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.=\u8349\u7a3f\u78bc\u7684\u540d\u7a31\u5fc5\u9808\u9032\u884c\u4fee\u6539\u3002\u8349\u7a3f\u78bc\u540d\u7a31\u53ea\u80fd\u7531\nASCII\u5b57\u7b26\u548c\u6578\u5b57\u7d44\u6210(\u4f46\u4e0d\u80fd\u4ee5\u6578\u5b57\u958b\u982d)\u3002\n\u9577\u5ea6\u5fc5\u9808\u5c11\u65bc64\u500b\u5b57\u5143\u3002 #: Base.java:259 The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=\u8349\u7a3f\u78bc\u7c3f\u8cc7\u6599\u593e\u5df2\u4e0d\u5b58\u5728\u3002\nArduino\u5c07\u8f49\u70ba\u4f7f\u7528\u9810\u8a2d\u7684\u8349\u7a3f\u78bc\u7c3f\u4f4d\u7f6e\uff0c\n\u4e26\u4e14\u8996\u9700\u8981\u65b0\u589e\u8cc7\u6599\u593e\u3002\u7136\u5f8cArduino\u5c07\n\u505c\u6b62\u4ee5\u7b2c\u4e09\u4eba\u7a31\u63d0\u53ca\u81ea\u5df1\u3002 +#: ../../../processing/app/debug/Compiler.java:201 +!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= + #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u9019\u652f\u6a94\u6848\u5df2\u7d93\u8907\u88fd\u5230\n\u4f60\u60f3\u8981\u52a0\u5165\u7684\u4f4d\u7f6e\u5167\uff0c\n\u6211\u7d55\u5c0d\u4e0d\u6703\u4e0d\u60f3\u8981\u7121\u6240\u4e8b\u4e8b\u3002 @@ -1142,6 +1272,10 @@ Vietnamese=\u8d8a\u5357\u8a9e #: Editor.java:1105 Visit\ Arduino.cc=\u62dc\u8a2aArduino.cc +#: ../../../processing/app/debug/Compiler.java:115 +#, java-format +!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= + #: Base.java:2128 Warning=\u8b66\u544a @@ -1240,9 +1374,6 @@ environment=\u958b\u767c\u74b0\u5883 #: Editor.java:1108 http\://arduino.cc/=http\://arduino.cc/ -#: ../../../processing/app/debug/Compiler.java:49 -http\://github.com/arduino/Arduino/issues=http\://github.com/arduino/Arduino/issues - #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1265,13 +1396,6 @@ name\ is\ null=\u540d\u7a31\u662f\u7a7a\u7684 #: Base.java:2090 platforms.html=platforms.html -#: Serial.java:451 -#, java-format -readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=\u5c0d{0} bytes\u4f86\u8aaa\uff0creadBytesUntil()\u7de9\u885d\u5340\u592a\u5c0f\uff0c \u76f4\u5230\u4e26\u5305\u62ec\u5b57\u5143{1} - -#: Sketch.java:647 -removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\uff1a\u5167\u90e8\u932f\u8aa4...\u627e\u4e0d\u5230\u7a0b\u5f0f\u78bc - #: Editor.java:932 serialMenu\ is\ null=serialMenu\u662f\u7a7a\u7684 @@ -1279,6 +1403,10 @@ serialMenu\ is\ null=serialMenu\u662f\u7a7a\u7684 #, java-format the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=\u9078\u5b9a\u7684\u5e8f\u5217\u57e0{0}\u4e0d\u5b58\u5728\uff0c\u6216\u662f\u4f60\u9084\u6c92\u9023\u63a5\u677f\u5b50\u3002 +#: ../../../processing/app/Base.java:389 +#, java-format +unknown\ option\:\ {0}=\u4e0d\u660e\u7684\u9078\u9805\uff1a{0} + #: Preferences.java:391 upload=\u4e0a\u50b3 @@ -1297,3 +1425,35 @@ upload=\u4e0a\u50b3 #: Editor.java:1874 #, java-format {0}.html={0}.html + +#: ../../../processing/app/Base.java:519 +#, java-format +{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"={0}\uff1a\u7121\u6548\u7684\u53c3\u6578 --pref\uff0c\u683c\u5f0f\u61c9\u8a72\u662f "pref\=value" + +#: ../../../processing/app/Base.java:476 +#, java-format +{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"={0}\uff1a\u7121\u6548\u7684\u7248\u5b50\u540d\u7a31\uff0c\u683c\u5f0f\u61c9\u8a72\u662f "package\:arch\:board" \u6216 "package\:arch\:board\:options" + +#: ../../../processing/app/Base.java:509 +#, java-format +{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"={0}\uff1a\u7121\u6548\u7684\u9078\u9805 \u201c{1}\u201d \u65bc\u677f\u5b50 \u201c{2}\u201d + +#: ../../../processing/app/Base.java:507 +#, java-format +{0}\:\ Invalid\ option\ for\ board\ "{1}"={0}\uff1a\u7121\u6548\u7684\u9078\u9805\u65bc\u677f\u5b50 \u201c{1}\u201d + +#: ../../../processing/app/Base.java:502 +#, java-format +{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"={0}\uff1a\u7121\u6548\u7684\u9078\u9805\uff0c\u683c\u5f0f\u61c9\u8a72\u662f \u201cname\=value\u201d + +#: ../../../processing/app/Base.java:486 +#, java-format +{0}\:\ Unknown\ architecture={0}\uff1a\u4e0d\u660e\u7684\u67b6\u69cb + +#: ../../../processing/app/Base.java:491 +#, java-format +{0}\:\ Unknown\ board={0}\uff1a\u4e0d\u660e\u7684\u677f\u5b50 + +#: ../../../processing/app/Base.java:481 +#, java-format +{0}\:\ Unknown\ package={0}\uff1a\u4e0d\u660e\u7684\u5957\u4ef6 From 00dfd93726e8bef11f181650b278bc0fae2954a5 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Mon, 19 Jan 2015 23:08:08 +0430 Subject: [PATCH 145/148] Added dependencies for AStylej.dll --- build/build.xml | 2 ++ build/windows/msvcp100.dll | Bin 0 -> 421200 bytes build/windows/msvcr100.dll | Bin 0 -> 770384 bytes 3 files changed, 2 insertions(+) create mode 100644 build/windows/msvcp100.dll create mode 100644 build/windows/msvcr100.dll diff --git a/build/build.xml b/build/build.xml index 6528e5cc9..eb8b7d02a 100644 --- a/build/build.xml +++ b/build/build.xml @@ -721,6 +721,8 @@ + + diff --git a/build/windows/msvcp100.dll b/build/windows/msvcp100.dll new file mode 100644 index 0000000000000000000000000000000000000000..0285593bfcbac64ec9db7522abc34e60825e35d3 GIT binary patch literal 421200 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%0AQ`EL#OUHf*?6YG}JN`Y0K3)Q^%~PNhX2 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%0D5v91zOY_c=3c`=iVGR99FFctcIPv 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 Z-Knq8q=FVf=;p0PohHZUrFR9a~zfEHxf#X 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

    BTdmx(xqx$px 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%0AGJf2q2vW7SjDYt;wTU#V}Z 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 literal 0 HcmV?d00001 From 14fe427050dc8d19e1765cc63fba6caddc7572f9 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Tue, 20 Jan 2015 15:50:13 +0100 Subject: [PATCH 146/148] Updated revision log --- build/shared/revisions.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build/shared/revisions.txt b/build/shared/revisions.txt index da2dcec72..6243c4fb7 100644 --- a/build/shared/revisions.txt +++ b/build/shared/revisions.txt @@ -1,9 +1,10 @@ -ARDUINO 1.6.0 - 2015.01.19 +ARDUINO 1.6.0rc2 - 2015.01.20 [ide] * Reenabled speed of 38400 on serial monitor * Improved Find/Replace dialog layout (Eberhard Fahle) +* Fixed missing .dll error on some Windows box [core] * Arduino "boolean" type is now mapped to "bool" instead of "uint8_t" (Christopher Andrews) From 1f08b5ede49126cfdc8d9700dee99e56cd899f15 Mon Sep 17 00:00:00 2001 From: Arturo Guadalupi Date: Mon, 12 Jan 2015 14:37:50 +0100 Subject: [PATCH 147/148] Cherry picked fix from 87865ac19df2f55e3d073cf5dc7ba08c0de4c584 --- libraries/LiquidCrystal/examples/setCursor/setCursor.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/LiquidCrystal/examples/setCursor/setCursor.ino b/libraries/LiquidCrystal/examples/setCursor/setCursor.ino index 689f3297e..4790b68b8 100644 --- a/libraries/LiquidCrystal/examples/setCursor/setCursor.ino +++ b/libraries/LiquidCrystal/examples/setCursor/setCursor.ino @@ -60,7 +60,7 @@ void loop() { // loop over the rows: for (int thisRow = 0; thisRow < numCols; thisRow++) { // set the cursor position: - lcd.setCursor(thisRow, thisCol); + lcd.setCursor(thisCol, thisRow); // print the letter: lcd.write(thisLetter); delay(200); From 379df90b30a6da6e2d14c13e93e09a0a5b70856d Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Fri, 23 Jan 2015 11:22:40 +0100 Subject: [PATCH 148/148] Update revision log --- build/shared/revisions.txt | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/build/shared/revisions.txt b/build/shared/revisions.txt index 6243c4fb7..2072f9eb6 100644 --- a/build/shared/revisions.txt +++ b/build/shared/revisions.txt @@ -20,7 +20,7 @@ The following changes are included also in the Arduino IDE 1.0.7: [ide] * Mitigated Serial Monitor resource exhaustion when the connected device sends a lot of data (Paul Stoffregen) -ARDUINO 1.6.0rc1 +ARDUINO 1.6.0rc1 - 2014.12.11 * IDE internals have been refactored and sorted out. (Claudio Indellicati) https://github.com/arduino/Arduino/pull/2328 @@ -32,11 +32,10 @@ ARDUINO 1.6.0rc1 * Autosave on sketch Upload/Verify (Fulvio Ieva) * Sketch build process: fixed full rebuild on windows even if not needed * Sketch build process: core.a rebuild only if needed (Matthijs Kooijman) -* Updated AStyle formatter to v2.04: http://astyle.sourceforge.net/notes.html +* Updated AStyle formatter to v2.05: http://astyle.sourceforge.net/notes.html * Improved avrdude verbose upload (Matthijs Kooijman) * (Mac OSX) Add Exported UTI for ino files, allows quick look to view the content of the file and external editors to syntax highlight as C++ (Matt Lloyd) -* Updated libastyle to 2.05 [core] * sam: added -MMD flag to let gcc produce dependency files (full rebuild on Arduino Due is now triggered only if needed)

    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